From ab7c9a5f8356b6f7f9860dba261e8a0c61ef8466 Mon Sep 17 00:00:00 2001 From: Leila Wang Date: Wed, 26 Mar 2025 18:20:26 +0000 Subject: [PATCH 01/10] Validate block hash in circuits. --- l1-contracts/src/core/Rollup.sol | 2 +- l1-contracts/src/core/interfaces/IRollup.sol | 4 - .../src/core/libraries/ConstantsGen.sol | 4 +- l1-contracts/src/core/libraries/Errors.sol | 2 - .../core/libraries/rollup/EpochProofLib.sol | 52 +++------ .../src/core/libraries/rollup/ProposeLib.sol | 8 +- .../src/core/libraries/rollup/STFLib.sol | 7 +- l1-contracts/test/Rollup.t.sol | 100 +----------------- l1-contracts/test/base/DecoderBase.sol | 1 - l1-contracts/test/base/RollupBase.sol | 3 - l1-contracts/test/fees/FeeRollup.t.sol | 6 -- l1-contracts/test/fixtures/empty_block_1.json | 17 ++- l1-contracts/test/fixtures/empty_block_2.json | 19 ++-- l1-contracts/test/fixtures/mixed_block_1.json | 23 ++-- l1-contracts/test/fixtures/mixed_block_2.json | 25 +++-- .../test/fixtures/single_tx_block_1.json | 23 ++-- .../test/fixtures/single_tx_block_2.json | 25 +++-- l1-contracts/test/harnesses/TestConstants.sol | 4 +- .../ValidatorSelection.t.sol | 1 - ...block_root_or_block_merge_public_inputs.nr | 10 -- .../src/abis/block_root_rollup_data.nr | 7 +- .../block_merge/block_merge_rollup_inputs.nr | 11 -- .../block_root/block_root_rollup_inputs.nr | 24 ++++- .../block_root_rollup_inputs_validator.nr | 58 +++++++--- .../block_root_rollup_output_composer.nr | 48 ++++----- .../empty_block_root_rollup_inputs.nr | 16 ++- .../single_tx_block_root_rollup_inputs.nr | 24 ++++- .../crates/rollup-lib/src/components.nr | 4 - .../crates/rollup-lib/src/root/mod.nr | 4 - .../rollup-lib/src/root/root_rollup_inputs.nr | 2 - .../src/root/root_rollup_public_inputs.nr | 5 - .../src/tests/previous_rollup_block_data.nr | 5 - .../src/tests/rollup_fixture_builder.nr | 4 + .../crates/types/src/constants.nr | 6 +- .../archiver/src/archiver/archiver.test.ts | 3 +- yarn-project/aztec/src/cli/cmds/start_node.ts | 4 +- yarn-project/aztec/src/sandbox/sandbox.ts | 8 +- .../cli/src/cmds/l1/deploy_l1_contracts.ts | 3 +- .../cli/src/cmds/l1/deploy_new_rollup.ts | 3 +- yarn-project/cli/src/utils/aztec.ts | 4 - yarn-project/constants/src/constants.gen.ts | 21 ++-- .../composed/integration_l1_publisher.test.ts | 3 - .../src/fixtures/setup_l1_contracts.ts | 3 +- .../src/fixtures/snapshot_manager.ts | 3 +- yarn-project/end-to-end/src/fixtures/utils.ts | 13 +-- .../spartan/upgrade_rollup_version.test.ts | 3 +- .../src/contracts/fee_asset_handler.test.ts | 1 - .../ethereum/src/contracts/forwarder.test.ts | 1 - .../ethereum/src/contracts/governance.test.ts | 1 - .../ethereum/src/contracts/registry.test.ts | 2 - yarn-project/ethereum/src/contracts/rollup.ts | 2 - .../ethereum/src/deploy_l1_contracts.test.ts | 3 - .../ethereum/src/deploy_l1_contracts.ts | 3 - .../src/conversion/server.ts | 7 +- .../src/block_builder/light.test.ts | 19 ++-- .../orchestrator/block-building-helpers.ts | 24 ++--- .../src/orchestrator/block-proving-state.ts | 7 +- .../src/orchestrator/epoch-proving-state.ts | 2 + .../src/orchestrator/orchestrator.ts | 18 +++- .../src/prover-node-publisher.test.ts | 3 - .../prover-node/src/prover-node-publisher.ts | 17 +-- .../src/publisher/sequencer-publisher.ts | 6 -- ...block_root_or_block_merge_public_inputs.ts | 12 --- .../stdlib/src/rollup/block_root_rollup.ts | 6 ++ yarn-project/stdlib/src/rollup/root_rollup.ts | 8 -- yarn-project/stdlib/src/tests/factories.ts | 25 ++--- yarn-project/world-state/src/testing.ts | 9 +- 67 files changed, 293 insertions(+), 508 deletions(-) diff --git a/l1-contracts/src/core/Rollup.sol b/l1-contracts/src/core/Rollup.sol index 87902bfaad7d..6d6e40f71f32 100644 --- a/l1-contracts/src/core/Rollup.sol +++ b/l1-contracts/src/core/Rollup.sol @@ -278,7 +278,7 @@ contract Rollup is IStaking, IValidatorSelection, IRollup, RollupCore { * * @param _start - The start of the epoch (inclusive) * @param _end - The end of the epoch (inclusive) - * @param _args - Array of public inputs to the proof (previousArchive, endArchive, previousBlockHash, endBlockHash, endTimestamp, outHash, proverId) + * @param _args - Array of public inputs to the proof (previousArchive, endArchive, endTimestamp, outHash, proverId) * @param _fees - Array of recipient-value pairs with fees to be distributed for the epoch * @param _aggregationObject - The aggregation object for the proof */ diff --git a/l1-contracts/src/core/interfaces/IRollup.sol b/l1-contracts/src/core/interfaces/IRollup.sol index 6eebd2fff93a..87e52783d701 100644 --- a/l1-contracts/src/core/interfaces/IRollup.sol +++ b/l1-contracts/src/core/interfaces/IRollup.sol @@ -19,8 +19,6 @@ import {IERC20} from "@oz/token/ERC20/IERC20.sol"; struct PublicInputArgs { bytes32 previousArchive; bytes32 endArchive; - bytes32 previousBlockHash; // @todo #8829 Not needed as public input, unconstrained on L1 - bytes32 endBlockHash; // @todo #8829 Not needed as public input, unconstrained on L1 Timestamp endTimestamp; bytes32 outHash; address proverId; @@ -38,7 +36,6 @@ struct SubmitEpochRootProofArgs { struct BlockLog { bytes32 archive; - bytes32 blockHash; Slot slotNumber; } @@ -72,7 +69,6 @@ struct GenesisState { bytes32 vkTreeRoot; bytes32 protocolContractTreeRoot; bytes32 genesisArchiveRoot; - bytes32 genesisBlockHash; } struct RollupConfigInput { diff --git a/l1-contracts/src/core/libraries/ConstantsGen.sol b/l1-contracts/src/core/libraries/ConstantsGen.sol index 71baf008b764..103c64cb7801 100644 --- a/l1-contracts/src/core/libraries/ConstantsGen.sol +++ b/l1-contracts/src/core/libraries/ConstantsGen.sol @@ -217,8 +217,8 @@ library Constants { uint256 internal constant PRIVATE_TO_ROLLUP_KERNEL_CIRCUIT_PUBLIC_INPUTS_LENGTH = 782; uint256 internal constant CONSTANT_ROLLUP_DATA_LENGTH = 13; uint256 internal constant BASE_OR_MERGE_PUBLIC_INPUTS_LENGTH = 52; - uint256 internal constant BLOCK_ROOT_OR_BLOCK_MERGE_PUBLIC_INPUTS_LENGTH = 986; - uint256 internal constant ROOT_ROLLUP_PUBLIC_INPUTS_LENGTH = 972; + uint256 internal constant BLOCK_ROOT_OR_BLOCK_MERGE_PUBLIC_INPUTS_LENGTH = 984; + uint256 internal constant ROOT_ROLLUP_PUBLIC_INPUTS_LENGTH = 970; uint256 internal constant GET_NOTES_ORACLE_RETURN_LENGTH = 674; uint256 internal constant NOTE_HASHES_NUM_BYTES_PER_BASE_ROLLUP = 2048; uint256 internal constant NULLIFIERS_NUM_BYTES_PER_BASE_ROLLUP = 2048; diff --git a/l1-contracts/src/core/libraries/Errors.sol b/l1-contracts/src/core/libraries/Errors.sol index e4f693ba2d4b..0d80a26ac1c7 100644 --- a/l1-contracts/src/core/libraries/Errors.sol +++ b/l1-contracts/src/core/libraries/Errors.sol @@ -50,12 +50,10 @@ library Errors { error Rollup__InsufficientBondAmount(uint256 minimum, uint256 provided); // 0xa165f276 error Rollup__InsufficientFundsInEscrow(uint256 required, uint256 available); // 0xa165f276 error Rollup__InvalidArchive(bytes32 expected, bytes32 actual); // 0xb682a40e - error Rollup__InvalidBlockHash(bytes32 expected, bytes32 actual); error Rollup__InvalidBlockNumber(uint256 expected, uint256 actual); // 0xe5edf847 error Rollup__InvalidChainId(uint256 expected, uint256 actual); // 0x37b5bc12 error Rollup__InvalidInHash(bytes32 expected, bytes32 actual); // 0xcd6f4233 error Rollup__InvalidPreviousArchive(bytes32 expected, bytes32 actual); // 0xb682a40e - error Rollup__InvalidPreviousBlockHash(bytes32 expected, bytes32 actual); error Rollup__InvalidProof(); // 0xa5b2ba17 error Rollup__InvalidProposedArchive(bytes32 expected, bytes32 actual); // 0x32532e73 error Rollup__InvalidTimestamp(Timestamp expected, Timestamp actual); // 0x3132e895 diff --git a/l1-contracts/src/core/libraries/rollup/EpochProofLib.sol b/l1-contracts/src/core/libraries/rollup/EpochProofLib.sol index 9b005d6b6e2c..64fa856227c4 100644 --- a/l1-contracts/src/core/libraries/rollup/EpochProofLib.sol +++ b/l1-contracts/src/core/libraries/rollup/EpochProofLib.sol @@ -61,12 +61,12 @@ library EpochProofLib { * - The archive root of the header does not match the archive root of the proposed block * - The proof is invalid * - * @dev We provide the `_archive` and `_blockHash` even if it could be read from storage itself because it allow for - * better error messages. Without passing it, we would just have a proof verification failure. + * @dev We provide the `_archive`` even if it could be read from storage itself because it allow for better error + * messages. Without passing it, we would just have a proof verification failure. * * @param _args - The arguments to submit the epoch root proof: * _epochSize - The size of the epoch (to be promoted to a constant) - * _args - Array of public inputs to the proof (previousArchive, endArchive, previousBlockHash, endBlockHash, endTimestamp, outHash, proverId) + * _args - Array of public inputs to the proof (previousArchive, endArchive, endTimestamp, outHash, proverId) * _fees - Array of recipient-value pairs with fees to be distributed for the epoch * _blobPublicInputs - The blob public inputs for the proof * _aggregationObject - The aggregation object for the proof @@ -98,7 +98,7 @@ library EpochProofLib { * * @param _start - The start of the epoch (inclusive) * @param _end - The end of the epoch (inclusive) - * @param _args - Array of public inputs to the proof (previousArchive, endArchive, previousBlockHash, endBlockHash, endTimestamp, outHash, proverId) + * @param _args - Array of public inputs to the proof (previousArchive, endArchive, endTimestamp, outHash, proverId) * @param _fees - Array of recipient-value pairs with fees to be distributed for the epoch * @param _blobPublicInputs- The blob public inputs for the proof * @param _aggregationObject - The aggregation object for the proof @@ -115,11 +115,9 @@ library EpochProofLib { // Args are defined as an array because Solidity complains with "stack too deep" otherwise // 0 bytes32 _previousArchive, // 1 bytes32 _endArchive, - // 2 bytes32 _previousBlockHash, - // 3 bytes32 _endBlockHash, - // 4 bytes32 _endTimestamp, - // 5 bytes32 _outHash, - // 6 bytes32 _proverId, + // 2 bytes32 _endTimestamp, + // 3 bytes32 _outHash, + // 4 bytes32 _proverId, // TODO(#7373): Public inputs are not fully verified @@ -140,24 +138,6 @@ library EpochProofLib { Errors.Rollup__InvalidArchive(expectedEndArchive, _args.endArchive) ); } - - { - bytes32 expectedPreviousBlockHash = rollupStore.blocks[_start - 1].blockHash; - require( - expectedPreviousBlockHash == _args.previousBlockHash, - Errors.Rollup__InvalidPreviousBlockHash( - expectedPreviousBlockHash, _args.previousBlockHash - ) - ); - } - - { - bytes32 expectedEndBlockHash = rollupStore.blocks[_end].blockHash; - require( - expectedEndBlockHash == _args.endBlockHash, - Errors.Rollup__InvalidBlockHash(expectedEndBlockHash, _args.endBlockHash) - ); - } } bytes32[] memory publicInputs = new bytes32[]( @@ -169,8 +149,6 @@ library EpochProofLib { // struct RootRollupPublicInputs { // previous_archive: AppendOnlyTreeSnapshot, // end_archive: AppendOnlyTreeSnapshot, - // previous_block_hash: Field, - // end_block_hash: Field, // end_timestamp: u64, // end_block_number: Field, // out_hash: Field, @@ -195,28 +173,22 @@ library EpochProofLib { // end_archive.next_available_leaf_index: the new archive next available index publicInputs[3] = bytes32(_end + 1); - // previous_block_hash: the block hash just preceding this epoch - publicInputs[4] = _args.previousBlockHash; - - // end_block_hash: the last block hash in the epoch - publicInputs[5] = _args.endBlockHash; - // end_timestamp: the timestamp of the last block in the epoch - publicInputs[6] = bytes32(Timestamp.unwrap(_args.endTimestamp)); + publicInputs[4] = bytes32(Timestamp.unwrap(_args.endTimestamp)); // end_block_number: last block number in the epoch - publicInputs[7] = bytes32(_end); + publicInputs[5] = bytes32(_end); // out_hash: root of this epoch's l2 to l1 message tree - publicInputs[8] = _args.outHash; + publicInputs[6] = _args.outHash; } uint256 feesLength = Constants.AZTEC_MAX_EPOCH_DURATION * 2; // fees[9 to (9+feesLength-1)]: array of recipient-value pairs for (uint256 i = 0; i < feesLength; i++) { - publicInputs[9 + i] = _fees[i]; + publicInputs[7 + i] = _fees[i]; } - uint256 offset = 9 + feesLength; + uint256 offset = 7 + feesLength; // vk_tree_root publicInputs[offset] = rollupStore.config.vkTreeRoot; diff --git a/l1-contracts/src/core/libraries/rollup/ProposeLib.sol b/l1-contracts/src/core/libraries/rollup/ProposeLib.sol index 00db58ceccdf..731ef29f5189 100644 --- a/l1-contracts/src/core/libraries/rollup/ProposeLib.sol +++ b/l1-contracts/src/core/libraries/rollup/ProposeLib.sol @@ -23,7 +23,6 @@ import {STFLib} from "./STFLib.sol"; struct ProposeArgs { bytes32 archive; - bytes32 blockHash; OracleInput oracleInput; bytes header; bytes32[] txHashes; @@ -107,11 +106,8 @@ library ProposeLib { RollupStore storage rollupStore = STFLib.getStorage(); uint256 blockNumber = ++rollupStore.tips.pendingBlockNumber; - rollupStore.blocks[blockNumber] = BlockLog({ - archive: _args.archive, - blockHash: _args.blockHash, - slotNumber: header.globalVariables.slotNumber - }); + rollupStore.blocks[blockNumber] = + BlockLog({archive: _args.archive, slotNumber: header.globalVariables.slotNumber}); FeeLib.writeFeeHeader( blockNumber, diff --git a/l1-contracts/src/core/libraries/rollup/STFLib.sol b/l1-contracts/src/core/libraries/rollup/STFLib.sol index 8e0fe5abfc67..92c47761a2ac 100644 --- a/l1-contracts/src/core/libraries/rollup/STFLib.sol +++ b/l1-contracts/src/core/libraries/rollup/STFLib.sol @@ -22,11 +22,8 @@ library STFLib { rollupStore.config.vkTreeRoot = _genesisState.vkTreeRoot; rollupStore.config.protocolContractTreeRoot = _genesisState.protocolContractTreeRoot; - rollupStore.blocks[0] = BlockLog({ - archive: _genesisState.genesisArchiveRoot, - blockHash: _genesisState.genesisBlockHash, - slotNumber: Slot.wrap(0) - }); + rollupStore.blocks[0] = + BlockLog({archive: _genesisState.genesisArchiveRoot, slotNumber: Slot.wrap(0)}); } function prune() internal { diff --git a/l1-contracts/test/Rollup.t.sol b/l1-contracts/test/Rollup.t.sol index b9f240b4a6d0..7db02f583789 100644 --- a/l1-contracts/test/Rollup.t.sol +++ b/l1-contracts/test/Rollup.t.sol @@ -215,7 +215,6 @@ contract RollupTest is RollupBase { ProposeArgs memory args = ProposeArgs({ header: header, archive: data.archive, - blockHash: data.blockHash, oracleInput: OracleInput(0), txHashes: new bytes32[](0) }); @@ -243,7 +242,6 @@ contract RollupTest is RollupBase { ProposeArgs memory args = ProposeArgs({ header: header, archive: data.archive, - blockHash: data.blockHash, oracleInput: OracleInput(0), txHashes: new bytes32[](0) }); @@ -310,7 +308,6 @@ contract RollupTest is RollupBase { ProposeArgs memory args = ProposeArgs({ header: header, archive: data.archive, - blockHash: data.blockHash, oracleInput: OracleInput(0), txHashes: txHashes }); @@ -338,7 +335,6 @@ contract RollupTest is RollupBase { ProposeArgs memory args = ProposeArgs({ header: header, archive: data.archive, - blockHash: data.blockHash, oracleInput: OracleInput(0), txHashes: txHashes }); @@ -413,7 +409,6 @@ contract RollupTest is RollupBase { ProposeArgs memory args = ProposeArgs({ header: header, archive: data.archive, - blockHash: data.blockHash, oracleInput: OracleInput(0), txHashes: new bytes32[](0) }); @@ -445,8 +440,6 @@ contract RollupTest is RollupBase { 1, blockLog.archive, data.archive, - blockLog.blockHash, - data.blockHash, blobPublicInputs, prover, data.decodedHeader.globalVariables.coinbase, @@ -475,8 +468,6 @@ contract RollupTest is RollupBase { 1, blockLog.archive, data.archive, - blockLog.blockHash, - data.blockHash, this.getBlobPublicInputs(data.blobInputs), address(42), data.decodedHeader.globalVariables.coinbase, @@ -582,8 +573,6 @@ contract RollupTest is RollupBase { PublicInputArgs memory args = PublicInputArgs({ previousArchive: blockLog.archive, endArchive: data.archive, - previousBlockHash: blockLog.blockHash, - endBlockHash: data.blockHash, endTimestamp: Timestamp.wrap(0), outHash: bytes32(0), proverId: address(0) @@ -633,16 +622,7 @@ contract RollupTest is RollupBase { this.getBlobPublicInputs(load("mixed_block_1").block.blobInputs), this.getBlobPublicInputs(data.blobInputs) ); - _submitEpochProof( - 1, - 2, - blockLog.archive, - data.archive, - blockLog.blockHash, - data.blockHash, - blobPublicInputs, - address(0) - ); + _submitEpochProof(1, 2, blockLog.archive, data.archive, blobPublicInputs, address(0)); assertEq(rollup.getPendingBlockNumber(), 2, "Invalid pending block number"); assertEq(rollup.getProvenBlockNumber(), 2, "Invalid proven block number"); @@ -704,7 +684,6 @@ contract RollupTest is RollupBase { ProposeArgs memory args = ProposeArgs({ header: header, archive: archive, - blockHash: data.blockHash, oracleInput: OracleInput(0), txHashes: txHashes }); @@ -725,7 +704,6 @@ contract RollupTest is RollupBase { ProposeArgs memory args = ProposeArgs({ header: header, archive: archive, - blockHash: data.blockHash, oracleInput: OracleInput(0), txHashes: txHashes }); @@ -746,7 +724,6 @@ contract RollupTest is RollupBase { ProposeArgs memory args = ProposeArgs({ header: header, archive: archive, - blockHash: data.blockHash, oracleInput: OracleInput(0), txHashes: txHashes }); @@ -772,7 +749,6 @@ contract RollupTest is RollupBase { ProposeArgs memory args = ProposeArgs({ header: header, archive: archive, - blockHash: data.blockHash, oracleInput: OracleInput(0), txHashes: txHashes }); @@ -791,15 +767,7 @@ contract RollupTest is RollupBase { Errors.Rollup__InvalidPreviousArchive.selector, blockLog.archive, wrong ) ); - _submitEpochProof( - 1, 1, wrong, data.archive, blockLog.blockHash, data.blockHash, blobPublicInputs, address(0) - ); - - // TODO: Reenable when we setup proper initial block hash - // vm.expectRevert( - // abi.encodeWithSelector(Errors.Rollup__InvalidPreviousBlockHash.selector, preBlockHash, wrong) - // ); - // _submitEpochProof(rollup, 1, preArchive, data.archive, wrong, data.blockHash, bytes32(0)); + _submitEpochProof(1, 1, wrong, data.archive, blobPublicInputs, address(0)); } function testSubmitProofInvalidArchive() public setUpFor("empty_block_1") { @@ -813,41 +781,7 @@ contract RollupTest is RollupBase { vm.expectRevert( abi.encodeWithSelector(Errors.Rollup__InvalidArchive.selector, data.archive, 0xdeadbeef) ); - _submitEpochProof( - 1, - 1, - blockLog.archive, - wrongArchive, - blockLog.blockHash, - data.blockHash, - blobPublicInputs, - address(0) - ); - } - - function testSubmitProofInvalidBlockHash() public setUpFor("empty_block_1") { - _proposeBlock("empty_block_1", 1); - - DecoderBase.Data memory data = load("empty_block_1").block; - bytes memory blobPublicInputs = this.getBlobPublicInputs(data.blobInputs); - bytes32 wrongBlockHash = bytes32(uint256(0xdeadbeef)); - - BlockLog memory parentBlockLog = rollup.getBlock(0); - vm.expectRevert( - abi.encodeWithSelector( - Errors.Rollup__InvalidBlockHash.selector, data.blockHash, wrongBlockHash - ) - ); - _submitEpochProof( - 1, - 1, - parentBlockLog.archive, - data.archive, - parentBlockLog.blockHash, - wrongBlockHash, - blobPublicInputs, - address(0) - ); + _submitEpochProof(1, 1, blockLog.archive, wrongArchive, blobPublicInputs, address(0)); } function _testSubmitProofInvalidBlobPublicInput() public setUpFor("empty_block_1") { @@ -869,16 +803,7 @@ contract RollupTest is RollupBase { wrongBlobPublicInputsHash ) ); - _submitEpochProof( - 1, - 1, - blockLog.archive, - data.archive, - blockLog.blockHash, - data.blockHash, - blobPublicInputs, - address(0) - ); + _submitEpochProof(1, 1, blockLog.archive, data.archive, blobPublicInputs, address(0)); } function _submitEpochProof( @@ -886,22 +811,11 @@ contract RollupTest is RollupBase { uint256 _end, bytes32 _prevArchive, bytes32 _archive, - bytes32 _prevBlockHash, - bytes32 _blockHash, bytes memory _blobPublicInputs, address _prover ) internal { _submitEpochProofWithFee( - _start, - _end, - _prevArchive, - _archive, - _prevBlockHash, - _blockHash, - _blobPublicInputs, - _prover, - address(0), - 0 + _start, _end, _prevArchive, _archive, _blobPublicInputs, _prover, address(0), 0 ); } @@ -910,8 +824,6 @@ contract RollupTest is RollupBase { uint256 _end, bytes32 _prevArchive, bytes32 _archive, - bytes32 _prevBlockHash, - bytes32 _blockHash, bytes memory _blobPublicInputs, address _prover, address _coinbase, @@ -920,8 +832,6 @@ contract RollupTest is RollupBase { PublicInputArgs memory args = PublicInputArgs({ previousArchive: _prevArchive, endArchive: _archive, - previousBlockHash: _prevBlockHash, - endBlockHash: _blockHash, endTimestamp: Timestamp.wrap(0), outHash: bytes32(0), proverId: _prover diff --git a/l1-contracts/test/base/DecoderBase.sol b/l1-contracts/test/base/DecoderBase.sol index f5792cb97712..840362d591e0 100644 --- a/l1-contracts/test/base/DecoderBase.sol +++ b/l1-contracts/test/base/DecoderBase.sol @@ -35,7 +35,6 @@ contract DecoderBase is TestBase { struct Data { bytes32 archive; bytes blobInputs; - bytes32 blockHash; bytes body; DecodedHeader decodedHeader; bytes header; diff --git a/l1-contracts/test/base/RollupBase.sol b/l1-contracts/test/base/RollupBase.sol index d5186f09c496..43fc08578a4d 100644 --- a/l1-contracts/test/base/RollupBase.sol +++ b/l1-contracts/test/base/RollupBase.sol @@ -68,8 +68,6 @@ contract RollupBase is DecoderBase { PublicInputArgs memory args = PublicInputArgs({ previousArchive: parentBlockLog.archive, endArchive: endFull.block.archive, - previousBlockHash: parentBlockLog.blockHash, - endBlockHash: endFull.block.blockHash, endTimestamp: Timestamp.wrap(0), // WHAT ? outHash: bytes32(0), // WHAT ? proverId: _prover @@ -217,7 +215,6 @@ contract RollupBase is DecoderBase { ProposeArgs memory args = ProposeArgs({ header: header, archive: full.block.archive, - blockHash: full.block.blockHash, oracleInput: OracleInput(0), txHashes: new bytes32[](0) }); diff --git a/l1-contracts/test/fees/FeeRollup.t.sol b/l1-contracts/test/fees/FeeRollup.t.sol index 82ff830f8ed3..fcb11d38e4c4 100644 --- a/l1-contracts/test/fees/FeeRollup.t.sol +++ b/l1-contracts/test/fees/FeeRollup.t.sol @@ -99,7 +99,6 @@ contract FeeRollupTest is FeeModelTestPoints, DecoderBase { struct Block { bytes32 archive; - bytes32 blockHash; bytes header; bytes body; bytes blobInputs; @@ -232,7 +231,6 @@ contract FeeRollupTest is FeeModelTestPoints, DecoderBase { return Block({ archive: archiveRoot, - blockHash: bytes32(Constants.GENESIS_BLOCK_HASH), header: header, body: body, blobInputs: full.block.blobInputs, @@ -259,7 +257,6 @@ contract FeeRollupTest is FeeModelTestPoints, DecoderBase { ProposeArgs({ header: b.header, archive: b.archive, - blockHash: b.blockHash, oracleInput: OracleInput({ feeAssetPriceModifier: point.oracle_input.fee_asset_price_modifier }), @@ -362,7 +359,6 @@ contract FeeRollupTest is FeeModelTestPoints, DecoderBase { ProposeArgs({ header: b.header, archive: b.archive, - blockHash: b.blockHash, oracleInput: OracleInput({ feeAssetPriceModifier: point.oracle_input.fee_asset_price_modifier }), @@ -459,8 +455,6 @@ contract FeeRollupTest is FeeModelTestPoints, DecoderBase { PublicInputArgs memory args = PublicInputArgs({ previousArchive: rollup.getBlock(start).archive, endArchive: rollup.getBlock(start + epochSize - 1).archive, - previousBlockHash: rollup.getBlock(start).blockHash, - endBlockHash: rollup.getBlock(start + epochSize - 1).blockHash, endTimestamp: Timestamp.wrap(0), outHash: bytes32(0), proverId: address(0) diff --git a/l1-contracts/test/fixtures/empty_block_1.json b/l1-contracts/test/fixtures/empty_block_1.json index 3522ecbe5a9e..d92d41437919 100644 --- a/l1-contracts/test/fixtures/empty_block_1.json +++ b/l1-contracts/test/fixtures/empty_block_1.json @@ -25,8 +25,7 @@ "l2ToL1Messages": [] }, "block": { - "archive": "0x19d282bf5387d54a21db424a09ee23196be74da0dfbb4ca28a4939020da2adc4", - "blockHash": "0x0d03dd1cec142b914011e7ebf5375295b8ae9cec88accfb41b6bcbc5cb2e74f1", + "archive": "0x2367b56a44f1cc971a7a48ee0e3fb63854613261bf995e02cf15b80eb7a49e09", "body": "0x00000000", "decodedHeader": { "contentCommitment": { @@ -37,15 +36,15 @@ }, "globalVariables": { "blockNumber": 1, - "slotNumber": "0x000000000000000000000000000000000000000000000000000000000000001b", + "slotNumber": "0x000000000000000000000000000000000000000000000000000000000000001a", "chainId": 31337, - "timestamp": 1736363020, + "timestamp": 1742997649, "version": 1, - "coinbase": "0xb3402d01fb3d2005f49fa063cc2470cd3dcd8cee", - "feeRecipient": "0x1e5f75a4eff0236113040956df38e3ec6b175c9a46e289972a69ffb812506b21", + "coinbase": "0x2d2b1a3e7cece64518bdf12bc2893b3072ded721", + "feeRecipient": "0x24e7c1eb8df59749e6d1005b7dcc23e8c768593e87065c4134a0ce43c94335b3", "gasFees": { "feePerDaGas": 0, - "feePerL2Gas": 54153579570 + "feePerL2Gas": 5425370 } }, "totalFees": "0x0000000000000000000000000000000000000000000000000000000000000000", @@ -75,8 +74,8 @@ } } }, - "header": "0x0237797d6a2c04d20d4fa06b74482bd970ccd51a43d9b05b57e9b91fa1ae1cae000000010000000000000000000000000000000000000000000000000000000000000000001cedbd7ea5309ef9d1d159209835409bf41b6b1802597a52fa70cc82e934d900089a9d421a82c4a25f7acbebe69e638d5b064fa8a60e018793dcb0be53752c00000000000000000000000000000000000000000000000000000000000000002e33ee2008411c04b99c24b313513d097a0d21a5040b6193d1f978b8226892d6000000101fd848aa69e1633722fe249a5b7f53b094f1c9cef9f5c694b073fd1cc5850dfb000000000c499b373a1f0fe1b510a63563546d2d39e206895056a5af0143c5f30d6390730000008023c08a6b1297210c5e24c76b9a936250a1ce2721576c26ea797c7ec35f9e46a9000000800000000000000000000000000000000000000000000000000000000000007a6900000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000001b00000000000000000000000000000000000000000000000000000000677ecc0cb3402d01fb3d2005f49fa063cc2470cd3dcd8cee1e5f75a4eff0236113040956df38e3ec6b175c9a46e289972a69ffb812506b2100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000c9bce0c3200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", - "publicInputsHash": "0x00275dc890b7255d4fa73d97e7ee5711f4bca05e6b8f8240b4c44468ff32f23e", + "header": "0x0237797d6a2c04d20d4fa06b74482bd970ccd51a43d9b05b57e9b91fa1ae1cae000000010000000000000000000000000000000000000000000000000000000000000000001cedbd7ea5309ef9d1d159209835409bf41b6b1802597a52fa70cc82e934d900089a9d421a82c4a25f7acbebe69e638d5b064fa8a60e018793dcb0be53752c00000000000000000000000000000000000000000000000000000000000000002e33ee2008411c04b99c24b313513d097a0d21a5040b6193d1f978b8226892d6000000101fd848aa69e1633722fe249a5b7f53b094f1c9cef9f5c694b073fd1cc5850dfb000000000c499b373a1f0fe1b510a63563546d2d39e206895056a5af0143c5f30d6390730000008023c08a6b1297210c5e24c76b9a936250a1ce2721576c26ea797c7ec35f9e46a9000000800000000000000000000000000000000000000000000000000000000000007a6900000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000001a0000000000000000000000000000000000000000000000000000000067e408912d2b1a3e7cece64518bdf12bc2893b3072ded72124e7c1eb8df59749e6d1005b7dcc23e8c768593e87065c4134a0ce43c94335b30000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000052c8da00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "publicInputsHash": "0x007ba02fdeb67f22a3dd1cfe8baa8d221ad67fbb9fcfafc6e0bc1ebc4d20f100", "blobInputs": "0x01010657f37554c781402a22917dee2f75def7ab966d7b770905398eba3c4440140ac4f3ee53aedc4865073ae7fb664e7401d10eadbe3bbcc266c35059f14826bb0000000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", "numTxs": 0 } diff --git a/l1-contracts/test/fixtures/empty_block_2.json b/l1-contracts/test/fixtures/empty_block_2.json index d1778687ac8b..aaf0075fd476 100644 --- a/l1-contracts/test/fixtures/empty_block_2.json +++ b/l1-contracts/test/fixtures/empty_block_2.json @@ -25,8 +25,7 @@ "l2ToL1Messages": [] }, "block": { - "archive": "0x11506872116eebb48e80d1ceeddbb9a5f0066e702cdb22f522e19b214c1dfa5e", - "blockHash": "0x22dd9b00e308d54f150daabe9321fa6ee4add23548b34312b6cfa97636938a1d", + "archive": "0x277fad8742d641aa1e99af417d082739dc39bab49298997cab17c501996e6171", "body": "0x00000000", "decodedHeader": { "contentCommitment": { @@ -37,22 +36,22 @@ }, "globalVariables": { "blockNumber": 2, - "slotNumber": "0x0000000000000000000000000000000000000000000000000000000000000024", + "slotNumber": "0x0000000000000000000000000000000000000000000000000000000000000023", "chainId": 31337, - "timestamp": 1736363236, + "timestamp": 1742997865, "version": 1, - "coinbase": "0xb3402d01fb3d2005f49fa063cc2470cd3dcd8cee", - "feeRecipient": "0x1e5f75a4eff0236113040956df38e3ec6b175c9a46e289972a69ffb812506b21", + "coinbase": "0x2d2b1a3e7cece64518bdf12bc2893b3072ded721", + "feeRecipient": "0x24e7c1eb8df59749e6d1005b7dcc23e8c768593e87065c4134a0ce43c94335b3", "gasFees": { "feePerDaGas": 0, - "feePerL2Gas": 54153579570 + "feePerL2Gas": 316120 } }, "totalFees": "0x0000000000000000000000000000000000000000000000000000000000000000", "totalManaUsed": "0x0000000000000000000000000000000000000000000000000000000000000000", "lastArchive": { "nextAvailableLeafIndex": 2, - "root": "0x19d282bf5387d54a21db424a09ee23196be74da0dfbb4ca28a4939020da2adc4" + "root": "0x2367b56a44f1cc971a7a48ee0e3fb63854613261bf995e02cf15b80eb7a49e09" }, "stateReference": { "l1ToL2MessageTree": { @@ -75,8 +74,8 @@ } } }, - "header": "0x19d282bf5387d54a21db424a09ee23196be74da0dfbb4ca28a4939020da2adc4000000020000000000000000000000000000000000000000000000000000000000000000001cedbd7ea5309ef9d1d159209835409bf41b6b1802597a52fa70cc82e934d900e1371045bd7d2c3e1f19cba5f536f0e82042ba4bc257d4ba19c146215e82420000000000000000000000000000000000000000000000000000000000000000026efb6c2a517de2448119d0f1255757265dbec7cdd2952df929ede666e10944000000201fd848aa69e1633722fe249a5b7f53b094f1c9cef9f5c694b073fd1cc5850dfb000000000c499b373a1f0fe1b510a63563546d2d39e206895056a5af0143c5f30d6390730000008023c08a6b1297210c5e24c76b9a936250a1ce2721576c26ea797c7ec35f9e46a9000000800000000000000000000000000000000000000000000000000000000000007a6900000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000002400000000000000000000000000000000000000000000000000000000677ecce4b3402d01fb3d2005f49fa063cc2470cd3dcd8cee1e5f75a4eff0236113040956df38e3ec6b175c9a46e289972a69ffb812506b2100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000c9bce0c3200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", - "publicInputsHash": "0x005b1b863296881eae107765d5aa0013f166a3a6c3fac8000f27f1533e34c05f", + "header": "0x2367b56a44f1cc971a7a48ee0e3fb63854613261bf995e02cf15b80eb7a49e09000000020000000000000000000000000000000000000000000000000000000000000000001cedbd7ea5309ef9d1d159209835409bf41b6b1802597a52fa70cc82e934d900e1371045bd7d2c3e1f19cba5f536f0e82042ba4bc257d4ba19c146215e82420000000000000000000000000000000000000000000000000000000000000000026efb6c2a517de2448119d0f1255757265dbec7cdd2952df929ede666e10944000000201fd848aa69e1633722fe249a5b7f53b094f1c9cef9f5c694b073fd1cc5850dfb000000000c499b373a1f0fe1b510a63563546d2d39e206895056a5af0143c5f30d6390730000008023c08a6b1297210c5e24c76b9a936250a1ce2721576c26ea797c7ec35f9e46a9000000800000000000000000000000000000000000000000000000000000000000007a690000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000230000000000000000000000000000000000000000000000000000000067e409692d2b1a3e7cece64518bdf12bc2893b3072ded72124e7c1eb8df59749e6d1005b7dcc23e8c768593e87065c4134a0ce43c94335b30000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004d2d800000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "publicInputsHash": "0x00b31d2b0d772b021222c4de2484f9f4db0fc33837d14312664f0aae6f51c636", "blobInputs": "0x01010657f37554c781402a22917dee2f75def7ab966d7b770905398eba3c4440140ac4f3ee53aedc4865073ae7fb664e7401d10eadbe3bbcc266c35059f14826bb0000000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", "numTxs": 0 } diff --git a/l1-contracts/test/fixtures/mixed_block_1.json b/l1-contracts/test/fixtures/mixed_block_1.json index 5575ca073320..b7fd53ce0914 100644 --- a/l1-contracts/test/fixtures/mixed_block_1.json +++ b/l1-contracts/test/fixtures/mixed_block_1.json @@ -58,27 +58,26 @@ ] }, "block": { - "archive": "0x180cfc8087a03f6b75c2de9c483d3284caa57bd6c56e2bd88e276ba0b9abe1c7", - "blockHash": "0x2b9d4e3e7726ff7a49dbf468c4e60d43cbc17965efeb5a22cce45f5c46b84252", - "body": "0x00000004000000000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000041000000000000000000000000000000000000000000000000000000000000004100100000000000000000000000000000000000000000000000000000000000410020000000000000000000000000000000000000000000000000000000000041003000000000000000000000000000000000000000000000000000000000004100400000000000000000000000000000000000000000000000000000000000410050000000000000000000000000000000000000000000000000000000000041006000000000000000000000000000000000000000000000000000000000004100700000000000000000000000000000000000000000000000000000000000410080000000000000000000000000000000000000000000000000000000000041009000000000000000000000000000000000000000000000000000000000004100a000000000000000000000000000000000000000000000000000000000004100b000000000000000000000000000000000000000000000000000000000004100c000000000000000000000000000000000000000000000000000000000004100d000000000000000000000000000000000000000000000000000000000004100e000000000000000000000000000000000000000000000000000000000004100f0000000000000000000000000000000000000000000000000000000000041010000000000000000000000000000000000000000000000000000000000004101100000000000000000000000000000000000000000000000000000000000410120000000000000000000000000000000000000000000000000000000000041013000000000000000000000000000000000000000000000000000000000004101400000000000000000000000000000000000000000000000000000000000410150000000000000000000000000000000000000000000000000000000000041016000000000000000000000000000000000000000000000000000000000004101700000000000000000000000000000000000000000000000000000000000410180000000000000000000000000000000000000000000000000000000000041019000000000000000000000000000000000000000000000000000000000004101a000000000000000000000000000000000000000000000000000000000004101b000000000000000000000000000000000000000000000000000000000004101c000000000000000000000000000000000000000000000000000000000004101d000000000000000000000000000000000000000000000000000000000004101e000000000000000000000000000000000000000000000000000000000004101f0000000000000000000000000000000000000000000000000000000000041020000000000000000000000000000000000000000000000000000000000004102100000000000000000000000000000000000000000000000000000000000410220000000000000000000000000000000000000000000000000000000000041023000000000000000000000000000000000000000000000000000000000004102400000000000000000000000000000000000000000000000000000000000410250000000000000000000000000000000000000000000000000000000000041026000000000000000000000000000000000000000000000000000000000004102700000000000000000000000000000000000000000000000000000000000410280000000000000000000000000000000000000000000000000000000000041029000000000000000000000000000000000000000000000000000000000004102a000000000000000000000000000000000000000000000000000000000004102b000000000000000000000000000000000000000000000000000000000004102c000000000000000000000000000000000000000000000000000000000004102d000000000000000000000000000000000000000000000000000000000004102e000000000000000000000000000000000000000000000000000000000004102f0000000000000000000000000000000000000000000000000000000000041030000000000000000000000000000000000000000000000000000000000004103100000000000000000000000000000000000000000000000000000000000410320000000000000000000000000000000000000000000000000000000000041033000000000000000000000000000000000000000000000000000000000004103400000000000000000000000000000000000000000000000000000000000410350000000000000000000000000000000000000000000000000000000000041036000000000000000000000000000000000000000000000000000000000004103700000000000000000000000000000000000000000000000000000000000410380000000000000000000000000000000000000000000000000000000000041039000000000000000000000000000000000000000000000000000000000004103a000000000000000000000000000000000000000000000000000000000004103b000000000000000000000000000000000000000000000000000000000004103c000000000000000000000000000000000000000000000000000000000004103d000000000000000000000000000000000000000000000000000000000004103e000000000000000000000000000000000000000000000000000000000004103f4000000000000000000000000000000000000000000000000000000000000400010000000000000000000000000000000000000000000000000000000000041100000000000000000000000000000000000000000000000000000000000004110100000000000000000000000000000000000000000000000000000000000411020000000000000000000000000000000000000000000000000000000000041103000000000000000000000000000000000000000000000000000000000004110400000000000000000000000000000000000000000000000000000000000411050000000000000000000000000000000000000000000000000000000000041106000000000000000000000000000000000000000000000000000000000004110700000000000000000000000000000000000000000000000000000000000411080000000000000000000000000000000000000000000000000000000000041109000000000000000000000000000000000000000000000000000000000004110a000000000000000000000000000000000000000000000000000000000004110b000000000000000000000000000000000000000000000000000000000004110c000000000000000000000000000000000000000000000000000000000004110d000000000000000000000000000000000000000000000000000000000004110e000000000000000000000000000000000000000000000000000000000004110f0000000000000000000000000000000000000000000000000000000000041110000000000000000000000000000000000000000000000000000000000004111100000000000000000000000000000000000000000000000000000000000411120000000000000000000000000000000000000000000000000000000000041113000000000000000000000000000000000000000000000000000000000004111400000000000000000000000000000000000000000000000000000000000411150000000000000000000000000000000000000000000000000000000000041116000000000000000000000000000000000000000000000000000000000004111700000000000000000000000000000000000000000000000000000000000411180000000000000000000000000000000000000000000000000000000000041119000000000000000000000000000000000000000000000000000000000004111a000000000000000000000000000000000000000000000000000000000004111b000000000000000000000000000000000000000000000000000000000004111c000000000000000000000000000000000000000000000000000000000004111d000000000000000000000000000000000000000000000000000000000004111e000000000000000000000000000000000000000000000000000000000004111f0000000000000000000000000000000000000000000000000000000000041120000000000000000000000000000000000000000000000000000000000004112100000000000000000000000000000000000000000000000000000000000411220000000000000000000000000000000000000000000000000000000000041123000000000000000000000000000000000000000000000000000000000004112400000000000000000000000000000000000000000000000000000000000411250000000000000000000000000000000000000000000000000000000000041126000000000000000000000000000000000000000000000000000000000004112700000000000000000000000000000000000000000000000000000000000411280000000000000000000000000000000000000000000000000000000000041129000000000000000000000000000000000000000000000000000000000004112a000000000000000000000000000000000000000000000000000000000004112b000000000000000000000000000000000000000000000000000000000004112c000000000000000000000000000000000000000000000000000000000004112d000000000000000000000000000000000000000000000000000000000004112e000000000000000000000000000000000000000000000000000000000004112f0000000000000000000000000000000000000000000000000000000000041130000000000000000000000000000000000000000000000000000000000004113100000000000000000000000000000000000000000000000000000000000411320000000000000000000000000000000000000000000000000000000000041133000000000000000000000000000000000000000000000000000000000004113400000000000000000000000000000000000000000000000000000000000411350000000000000000000000000000000000000000000000000000000000041136000000000000000000000000000000000000000000000000000000000004113700000000000000000000000000000000000000000000000000000000000411380000000000000000000000000000000000000000000000000000000000041139000000000000000000000000000000000000000000000000000000000004113a000000000000000000000000000000000000000000000000000000000004113b000000000000000000000000000000000000000000000000000000000004113c000000000000000000000000000000000000000000000000000000000004113d000000000000000000000000000000000000000000000000000000000004113e080097a6ec570e9b8e257647c9c74c5ad3edc57ca5ef6ae44d80b3c30d1d99b9b300ce48ec41d1edde0066fab553a456ae2f380d14fa8f956af1fb0217513a598900619ff12eaf97f63aa2a2311de3b6571a7b880a5247cb33b6a74787bf3f9bd5007854a2fad4e1801c6404394bf3d37ab08c135ea38a1974242e39a21273685f000f55796e72957a819e68a22e8602d73c3ba3718a5a4bd92b80b0aa444b182a00788b6e9874fb040ee679a7fae257190099a605229b948334e54a57739535d4004f1658ee3c1a91627e5d72f5a731f0796299df82ab41e72c88eee0c82fa85e003ee802add96628c693ed71afa9908138ba5a6fbf0a5f29a9c74e4e42aba671400000000000000000000000000000000000000000000000000000000000042000000000000000000000000000000000000000000000000000000000000004200a0000000000000000000000000000000000000000000000000000000000042001000000000000000000000000000000000000000000000000000000000004200b0000000000000000000000000000000000000000000000000000000000042002000000000000000000000000000000000000000000000000000000000004200c0000000000000000000000000000000000000000000000000000000000042003000000000000000000000000000000000000000000000000000000000004200d0000000000000000000000000000000000000000000000000000000000042004000000000000000000000000000000000000000000000000000000000004200e0000000000000000000000000000000000000000000000000000000000042005000000000000000000000000000000000000000000000000000000000004200f00000000000000000000000000000000000000000000000000000000000420060000000000000000000000000000000000000000000000000000000000042010000000000000000000000000000000000000000000000000000000000004200700000000000000000000000000000000000000000000000000000000000420110000000000000000000000000000000000000000000000000000000000042008000000000000000000000000000000000000000000000000000000000004201200000000000000000000000000000000000000000000000000000000000420090000000000000000000000000000000000000000000000000000000000042013000000000000000000000000000000000000000000000000000000000004200a0000000000000000000000000000000000000000000000000000000000042014000000000000000000000000000000000000000000000000000000000004200b0000000000000000000000000000000000000000000000000000000000042015000000000000000000000000000000000000000000000000000000000004200c0000000000000000000000000000000000000000000000000000000000042016000000000000000000000000000000000000000000000000000000000004200d0000000000000000000000000000000000000000000000000000000000042017000000000000000000000000000000000000000000000000000000000004200e0000000000000000000000000000000000000000000000000000000000042018000000000000000000000000000000000000000000000000000000000004200f00000000000000000000000000000000000000000000000000000000000420190000000000000000000000000000000000000000000000000000000000042010000000000000000000000000000000000000000000000000000000000004201a0000000000000000000000000000000000000000000000000000000000042011000000000000000000000000000000000000000000000000000000000004201b0000000000000000000000000000000000000000000000000000000000042012000000000000000000000000000000000000000000000000000000000004201c0000000000000000000000000000000000000000000000000000000000042013000000000000000000000000000000000000000000000000000000000004201d0000000000000000000000000000000000000000000000000000000000042014000000000000000000000000000000000000000000000000000000000004201e0000000000000000000000000000000000000000000000000000000000042015000000000000000000000000000000000000000000000000000000000004201f00000000000000000000000000000000000000000000000000000000000420160000000000000000000000000000000000000000000000000000000000042020000000000000000000000000000000000000000000000000000000000004201700000000000000000000000000000000000000000000000000000000000420210000000000000000000000000000000000000000000000000000000000042018000000000000000000000000000000000000000000000000000000000004202200000000000000000000000000000000000000000000000000000000000420190000000000000000000000000000000000000000000000000000000000042023000000000000000000000000000000000000000000000000000000000004201a0000000000000000000000000000000000000000000000000000000000042024000000000000000000000000000000000000000000000000000000000004201b0000000000000000000000000000000000000000000000000000000000042025000000000000000000000000000000000000000000000000000000000004201c0000000000000000000000000000000000000000000000000000000000042026000000000000000000000000000000000000000000000000000000000004201d0000000000000000000000000000000000000000000000000000000000042027000000000000000000000000000000000000000000000000000000000004201e0000000000000000000000000000000000000000000000000000000000042028000000000000000000000000000000000000000000000000000000000004201f00000000000000000000000000000000000000000000000000000000000420290000000000000000000000000000000000000000000000000000000000042020000000000000000000000000000000000000000000000000000000000004202a0000000000000000000000000000000000000000000000000000000000042021000000000000000000000000000000000000000000000000000000000004202b0000000000000000000000000000000000000000000000000000000000042022000000000000000000000000000000000000000000000000000000000004202c0000000000000000000000000000000000000000000000000000000000042023000000000000000000000000000000000000000000000000000000000004202d0000000000000000000000000000000000000000000000000000000000042024000000000000000000000000000000000000000000000000000000000004202e0000000000000000000000000000000000000000000000000000000000042025000000000000000000000000000000000000000000000000000000000004202f00000000000000000000000000000000000000000000000000000000000420260000000000000000000000000000000000000000000000000000000000042030000000000000000000000000000000000000000000000000000000000004202700000000000000000000000000000000000000000000000000000000000420310000000000000000000000000000000000000000000000000000000000042028000000000000000000000000000000000000000000000000000000000004203200000000000000000000000000000000000000000000000000000000000420290000000000000000000000000000000000000000000000000000000000042033000000000000000000000000000000000000000000000000000000000004202a0000000000000000000000000000000000000000000000000000000000042034000000000000000000000000000000000000000000000000000000000004202b0000000000000000000000000000000000000000000000000000000000042035000000000000000000000000000000000000000000000000000000000004202c0000000000000000000000000000000000000000000000000000000000042036000000000000000000000000000000000000000000000000000000000004202d0000000000000000000000000000000000000000000000000000000000042037000000000000000000000000000000000000000000000000000000000004202e0000000000000000000000000000000000000000000000000000000000042038000000000000000000000000000000000000000000000000000000000004202f00000000000000000000000000000000000000000000000000000000000420390000000000000000000000000000000000000000000000000000000000042030000000000000000000000000000000000000000000000000000000000004203a0000000000000000000000000000000000000000000000000000000000042031000000000000000000000000000000000000000000000000000000000004203b0000000000000000000000000000000000000000000000000000000000042032000000000000000000000000000000000000000000000000000000000004203c0000000000000000000000000000000000000000000000000000000000042033000000000000000000000000000000000000000000000000000000000004203d0000000000000000000000000000000000000000000000000000000000042034000000000000000000000000000000000000000000000000000000000004203e0000000000000000000000000000000000000000000000000000000000042035000000000000000000000000000000000000000000000000000000000004203f00000000000000000000000000000000000000000000000000000000000420360000000000000000000000000000000000000000000000000000000000042040000000000000000000000000000000000000000000000000000000000004203700000000000000000000000000000000000000000000000000000000000420410000000000000000000000000000000000000000000000000000000000042038000000000000000000000000000000000000000000000000000000000004204200000000000000000000000000000000000000000000000000000000000420390000000000000000000000000000000000000000000000000000000000042043000000000000000000000000000000000000000000000000000000000004203a0000000000000000000000000000000000000000000000000000000000042044000000000000000000000000000000000000000000000000000000000004203b0000000000000000000000000000000000000000000000000000000000042045000000000000000000000000000000000000000000000000000000000004203c0000000000000000000000000000000000000000000000000000000000042046000000000000000000000000000000000000000000000000000000000004203d0000000000000000000000000000000000000000000000000000000000042047000000000000000000000000000000000000000000000000000000000004203e0000000000000000000000000000000000000000000000000000000000042048000000000000000000000000000000000000000000000000000000000004203f0000000000000000000000000000000000000000000000000000000000042049200000000000000000000000000000000000000000000000000000000000041700000000000000000000000000000000000000000000000000000000000004170100000000000000000000000000000000000000000000000000000000000417020000000000000000000000000000000000000000000000000000000000041703000000000000000000000000000000000000000000000000000000000004170400000000000000000000000000000000000000000000000000000000000417050000000000000000000000000000000000000000000000000000000000041706000000000000000000000000000000000000000000000000000000000004170700000000000000000000000000000000000000000000000000000000000417080000000000000000000000000000000000000000000000000000000000041709000000000000000000000000000000000000000000000000000000000004170a000000000000000000000000000000000000000000000000000000000004170b000000000000000000000000000000000000000000000000000000000004170c000000000000000000000000000000000000000000000000000000000004170d000000000000000000000000000000000000000000000000000000000004170e000000000000000000000000000000000000000000000000000000000004170f00000000000000000000000000000000000000000000000000000000000417100000000000000000000000000000000000000000000000000000000000041711000000000000000000000000000000000000000000000000000000000004170100000000000000000000000000000000000000000000000000000000000417020000000000000000000000000000000000000000000000000000000000041703000000000000000000000000000000000000000000000000000000000004170400000000000000000000000000000000000000000000000000000000000417050000000000000000000000000000000000000000000000000000000000041706000000000000000000000000000000000000000000000000000000000004170700000000000000000000000000000000000000000000000000000000000417080000000000000000000000000000000000000000000000000000000000041709000000000000000000000000000000000000000000000000000000000004170a000000000000000000000000000000000000000000000000000000000004170b000000000000000000000000000000000000000000000000000000000004170c000000000000000000000000000000000000000000000000000000000004170d000000000000000000000000000000000000000000000000000000000004170e000000000000000000000000000000000000000000000000000000000004170f00000000000000000000000000000000000000000000000000000000000417100000000000000000000000000000000000000000000000000000000000041711000000000000000000000000000000000000000000000000000000000004171200000000000000000000000000000000000000000000000000000000000417020000000000000000000000000000000000000000000000000000000000041703000000000000000000000000000000000000000000000000000000000004170400000000000000000000000000000000000000000000000000000000000417050000000000000000000000000000000000000000000000000000000000041706000000000000000000000000000000000000000000000000000000000004170700000000000000000000000000000000000000000000000000000000000417080000000000000000000000000000000000000000000000000000000000041709000000000000000000000000000000000000000000000000000000000004170a000000000000000000000000000000000000000000000000000000000004170b000000000000000000000000000000000000000000000000000000000004170c000000000000000000000000000000000000000000000000000000000004170d000000000000000000000000000000000000000000000000000000000004170e000000000000000000000000000000000000000000000000000000000004170f00000000000000000000000000000000000000000000000000000000000417100000000000000000000000000000000000000000000000000000000000041711000000000000000000000000000000000000000000000000000000000004171200000000000000000000000000000000000000000000000000000000000417130000000000000000000000000000000000000000000000000000000000041703000000000000000000000000000000000000000000000000000000000004170400000000000000000000000000000000000000000000000000000000000417050000000000000000000000000000000000000000000000000000000000041706000000000000000000000000000000000000000000000000000000000004170700000000000000000000000000000000000000000000000000000000000417080000000000000000000000000000000000000000000000000000000000041709000000000000000000000000000000000000000000000000000000000004170a000000000000000000000000000000000000000000000000000000000004170b000000000000000000000000000000000000000000000000000000000004170c000000000000000000000000000000000000000000000000000000000004170d000000000000000000000000000000000000000000000000000000000004170e000000000000000000000000000000000000000000000000000000000004170f00000000000000000000000000000000000000000000000000000000000417100000000000000000000000000000000000000000000000000000000000041711000000000000000000000000000000000000000000000000000000000004171200000000000000000000000000000000000000000000000000000000000417130000000000000000000000000000000000000000000000000000000000041714000000000000000000000000000000000000000000000000000000000004170400000000000000000000000000000000000000000000000000000000000417050000000000000000000000000000000000000000000000000000000000041706000000000000000000000000000000000000000000000000000000000004170700000000000000000000000000000000000000000000000000000000000417080000000000000000000000000000000000000000000000000000000000041709000000000000000000000000000000000000000000000000000000000004170a000000000000000000000000000000000000000000000000000000000004170b000000000000000000000000000000000000000000000000000000000004170c000000000000000000000000000000000000000000000000000000000004170d000000000000000000000000000000000000000000000000000000000004170e000000000000000000000000000000000000000000000000000000000004170f00000000000000000000000000000000000000000000000000000000000417100000000000000000000000000000000000000000000000000000000000041711000000000000000000000000000000000000000000000000000000000004171200000000000000000000000000000000000000000000000000000000000417130000000000000000000000000000000000000000000000000000000000041714000000000000000000000000000000000000000000000000000000000004171500000000000000000000000000000000000000000000000000000000000417050000000000000000000000000000000000000000000000000000000000041706000000000000000000000000000000000000000000000000000000000004170700000000000000000000000000000000000000000000000000000000000417080000000000000000000000000000000000000000000000000000000000041709000000000000000000000000000000000000000000000000000000000004170a000000000000000000000000000000000000000000000000000000000004170b000000000000000000000000000000000000000000000000000000000004170c000000000000000000000000000000000000000000000000000000000004170d000000000000000000000000000000000000000000000000000000000004170e000000000000000000000000000000000000000000000000000000000004170f00000000000000000000000000000000000000000000000000000000000417100000000000000000000000000000000000000000000000000000000000041711000000000000000000000000000000000000000000000000000000000004171200000000000000000000000000000000000000000000000000000000000417130000000000000000000000000000000000000000000000000000000000041714000000000000000000000000000000000000000000000000000000000004171500000000000000000000000000000000000000000000000000000000000417160000000000000000000000000000000000000000000000000000000000041706000000000000000000000000000000000000000000000000000000000004170700000000000000000000000000000000000000000000000000000000000417080000000000000000000000000000000000000000000000000000000000041709000000000000000000000000000000000000000000000000000000000004170a000000000000000000000000000000000000000000000000000000000004170b000000000000000000000000000000000000000000000000000000000004170c000000000000000000000000000000000000000000000000000000000004170d000000000000000000000000000000000000000000000000000000000004170e000000000000000000000000000000000000000000000000000000000004170f00000000000000000000000000000000000000000000000000000000000417100000000000000000000000000000000000000000000000000000000000041711000000000000000000000000000000000000000000000000000000000004171200000000000000000000000000000000000000000000000000000000000417130000000000000000000000000000000000000000000000000000000000041714000000000000000000000000000000000000000000000000000000000004171500000000000000000000000000000000000000000000000000000000000417160000000000000000000000000000000000000000000000000000000000041717000000000000000000000000000000000000000000000000000000000004170700000000000000000000000000000000000000000000000000000000000417080000000000000000000000000000000000000000000000000000000000041709000000000000000000000000000000000000000000000000000000000004170a000000000000000000000000000000000000000000000000000000000004170b000000000000000000000000000000000000000000000000000000000004170c000000000000000000000000000000000000000000000000000000000004170d000000000000000000000000000000000000000000000000000000000004170e000000000000000000000000000000000000000000000000000000000004170f00000000000000000000000000000000000000000000000000000000000417100000000000000000000000000000000000000000000000000000000000041711000000000000000000000000000000000000000000000000000000000004171200000000000000000000000000000000000000000000000000000000000417130000000000000000000000000000000000000000000000000000000000041714000000000000000000000000000000000000000000000000000000000004171500000000000000000000000000000000000000000000000000000000000417160000000000000000000000000000000000000000000000000000000000041717000000000000000000000000000000000000000000000000000000000004171800000000000000000000000000000000000000000000000000000000000417080000000000000000000000000000000000000000000000000000000000041709000000000000000000000000000000000000000000000000000000000004170a000000000000000000000000000000000000000000000000000000000004170b000000000000000000000000000000000000000000000000000000000004170c000000000000000000000000000000000000000000000000000000000004170d000000000000000000000000000000000000000000000000000000000004170e000000000000000000000000000000000000000000000000000000000004170f00000000000000000000000000000000000000000000000000000000000417100000000000000000000000000000000000000000000000000000000000041711000000000000000000000000000000000000000000000000000000000004171200000000000000000000000000000000000000000000000000000000000417130000000000000000000000000000000000000000000000000000000000041714000000000000000000000000000000000000000000000000000000000004171500000000000000000000000000000000000000000000000000000000000417160000000000000000000000000000000000000000000000000000000000041717000000000000000000000000000000000000000000000000000000000004171800000000000000000000000000000000000000000000000000000000000417190000000000000000000000000000000000000000000000000000000000041709000000000000000000000000000000000000000000000000000000000004170a000000000000000000000000000000000000000000000000000000000004170b000000000000000000000000000000000000000000000000000000000004170c000000000000000000000000000000000000000000000000000000000004170d000000000000000000000000000000000000000000000000000000000004170e000000000000000000000000000000000000000000000000000000000004170f0000000000000000000000000000000000000000000000000000000000041710000000000000000000000000000000000000000000000000000000000004171100000000000000000000000000000000000000000000000000000000000417120000000000000000000000000000000000000000000000000000000000041713000000000000000000000000000000000000000000000000000000000004171400000000000000000000000000000000000000000000000000000000000417150000000000000000000000000000000000000000000000000000000000041716000000000000000000000000000000000000000000000000000000000004171700000000000000000000000000000000000000000000000000000000000417180000000000000000000000000000000000000000000000000000000000041719000000000000000000000000000000000000000000000000000000000004171a000000000000000000000000000000000000000000000000000000000004170a000000000000000000000000000000000000000000000000000000000004170b000000000000000000000000000000000000000000000000000000000004170c000000000000000000000000000000000000000000000000000000000004170d000000000000000000000000000000000000000000000000000000000004170e000000000000000000000000000000000000000000000000000000000004170f0000000000000000000000000000000000000000000000000000000000041710000000000000000000000000000000000000000000000000000000000004171100000000000000000000000000000000000000000000000000000000000417120000000000000000000000000000000000000000000000000000000000041713000000000000000000000000000000000000000000000000000000000004171400000000000000000000000000000000000000000000000000000000000417150000000000000000000000000000000000000000000000000000000000041716000000000000000000000000000000000000000000000000000000000004171700000000000000000000000000000000000000000000000000000000000417180000000000000000000000000000000000000000000000000000000000041719000000000000000000000000000000000000000000000000000000000004171a000000000000000000000000000000000000000000000000000000000004171b000000000000000000000000000000000000000000000000000000000004170b000000000000000000000000000000000000000000000000000000000004170c000000000000000000000000000000000000000000000000000000000004170d000000000000000000000000000000000000000000000000000000000004170e000000000000000000000000000000000000000000000000000000000004170f0000000000000000000000000000000000000000000000000000000000041710000000000000000000000000000000000000000000000000000000000004171100000000000000000000000000000000000000000000000000000000000417120000000000000000000000000000000000000000000000000000000000041713000000000000000000000000000000000000000000000000000000000004171400000000000000000000000000000000000000000000000000000000000417150000000000000000000000000000000000000000000000000000000000041716000000000000000000000000000000000000000000000000000000000004171700000000000000000000000000000000000000000000000000000000000417180000000000000000000000000000000000000000000000000000000000041719000000000000000000000000000000000000000000000000000000000004171a000000000000000000000000000000000000000000000000000000000004171b000000000000000000000000000000000000000000000000000000000004171c000000000000000000000000000000000000000000000000000000000004170c000000000000000000000000000000000000000000000000000000000004170d000000000000000000000000000000000000000000000000000000000004170e000000000000000000000000000000000000000000000000000000000004170f0000000000000000000000000000000000000000000000000000000000041710000000000000000000000000000000000000000000000000000000000004171100000000000000000000000000000000000000000000000000000000000417120000000000000000000000000000000000000000000000000000000000041713000000000000000000000000000000000000000000000000000000000004171400000000000000000000000000000000000000000000000000000000000417150000000000000000000000000000000000000000000000000000000000041716000000000000000000000000000000000000000000000000000000000004171700000000000000000000000000000000000000000000000000000000000417180000000000000000000000000000000000000000000000000000000000041719000000000000000000000000000000000000000000000000000000000004171a000000000000000000000000000000000000000000000000000000000004171b000000000000000000000000000000000000000000000000000000000004171c000000000000000000000000000000000000000000000000000000000004171d000000000000000000000000000000000000000000000000000000000004170d000000000000000000000000000000000000000000000000000000000004170e000000000000000000000000000000000000000000000000000000000004170f0000000000000000000000000000000000000000000000000000000000041710000000000000000000000000000000000000000000000000000000000004171100000000000000000000000000000000000000000000000000000000000417120000000000000000000000000000000000000000000000000000000000041713000000000000000000000000000000000000000000000000000000000004171400000000000000000000000000000000000000000000000000000000000417150000000000000000000000000000000000000000000000000000000000041716000000000000000000000000000000000000000000000000000000000004171700000000000000000000000000000000000000000000000000000000000417180000000000000000000000000000000000000000000000000000000000041719000000000000000000000000000000000000000000000000000000000004171a000000000000000000000000000000000000000000000000000000000004171b000000000000000000000000000000000000000000000000000000000004171c000000000000000000000000000000000000000000000000000000000004171d000000000000000000000000000000000000000000000000000000000004171e000000000000000000000000000000000000000000000000000000000004170e000000000000000000000000000000000000000000000000000000000004170f0000000000000000000000000000000000000000000000000000000000041710000000000000000000000000000000000000000000000000000000000004171100000000000000000000000000000000000000000000000000000000000417120000000000000000000000000000000000000000000000000000000000041713000000000000000000000000000000000000000000000000000000000004171400000000000000000000000000000000000000000000000000000000000417150000000000000000000000000000000000000000000000000000000000041716000000000000000000000000000000000000000000000000000000000004171700000000000000000000000000000000000000000000000000000000000417180000000000000000000000000000000000000000000000000000000000041719000000000000000000000000000000000000000000000000000000000004171a000000000000000000000000000000000000000000000000000000000004171b000000000000000000000000000000000000000000000000000000000004171c000000000000000000000000000000000000000000000000000000000004171d000000000000000000000000000000000000000000000000000000000004171e000000000000000000000000000000000000000000000000000000000004171f000000000000000000000000000000000000000000000000000000000004170f0000000000000000000000000000000000000000000000000000000000041710000000000000000000000000000000000000000000000000000000000004171100000000000000000000000000000000000000000000000000000000000417120000000000000000000000000000000000000000000000000000000000041713000000000000000000000000000000000000000000000000000000000004171400000000000000000000000000000000000000000000000000000000000417150000000000000000000000000000000000000000000000000000000000041716000000000000000000000000000000000000000000000000000000000004171700000000000000000000000000000000000000000000000000000000000417180000000000000000000000000000000000000000000000000000000000041719000000000000000000000000000000000000000000000000000000000004171a000000000000000000000000000000000000000000000000000000000004171b000000000000000000000000000000000000000000000000000000000004171c000000000000000000000000000000000000000000000000000000000004171d000000000000000000000000000000000000000000000000000000000004171e000000000000000000000000000000000000000000000000000000000004171f00000000000000000000000000000000000000000000000000000000000417200000000000000000000000000000000000000000000000000000000000041710000000000000000000000000000000000000000000000000000000000004171100000000000000000000000000000000000000000000000000000000000417120000000000000000000000000000000000000000000000000000000000041713000000000000000000000000000000000000000000000000000000000004171400000000000000000000000000000000000000000000000000000000000417150000000000000000000000000000000000000000000000000000000000041716000000000000000000000000000000000000000000000000000000000004171700000000000000000000000000000000000000000000000000000000000417180000000000000000000000000000000000000000000000000000000000041719000000000000000000000000000000000000000000000000000000000004171a000000000000000000000000000000000000000000000000000000000004171b000000000000000000000000000000000000000000000000000000000004171c000000000000000000000000000000000000000000000000000000000004171d000000000000000000000000000000000000000000000000000000000004171e000000000000000000000000000000000000000000000000000000000004171f00000000000000000000000000000000000000000000000000000000000417200000000000000000000000000000000000000000000000000000000000041721000000000000000000000000000000000000000000000000000000000004171100000000000000000000000000000000000000000000000000000000000417120000000000000000000000000000000000000000000000000000000000041713000000000000000000000000000000000000000000000000000000000004171400000000000000000000000000000000000000000000000000000000000417150000000000000000000000000000000000000000000000000000000000041716000000000000000000000000000000000000000000000000000000000004171700000000000000000000000000000000000000000000000000000000000417180000000000000000000000000000000000000000000000000000000000041719000000000000000000000000000000000000000000000000000000000004171a000000000000000000000000000000000000000000000000000000000004171b000000000000000000000000000000000000000000000000000000000004171c000000000000000000000000000000000000000000000000000000000004171d000000000000000000000000000000000000000000000000000000000004171e000000000000000000000000000000000000000000000000000000000004171f00000000000000000000000000000000000000000000000000000000000417200000000000000000000000000000000000000000000000000000000000041721000000000000000000000000000000000000000000000000000000000004172200000000000000000000000000000000000000000000000000000000000417120000000000000000000000000000000000000000000000000000000000041713000000000000000000000000000000000000000000000000000000000004171400000000000000000000000000000000000000000000000000000000000417150000000000000000000000000000000000000000000000000000000000041716000000000000000000000000000000000000000000000000000000000004171700000000000000000000000000000000000000000000000000000000000417180000000000000000000000000000000000000000000000000000000000041719000000000000000000000000000000000000000000000000000000000004171a000000000000000000000000000000000000000000000000000000000004171b000000000000000000000000000000000000000000000000000000000004171c000000000000000000000000000000000000000000000000000000000004171d000000000000000000000000000000000000000000000000000000000004171e000000000000000000000000000000000000000000000000000000000004171f00000000000000000000000000000000000000000000000000000000000417200000000000000000000000000000000000000000000000000000000000041721000000000000000000000000000000000000000000000000000000000004172200000000000000000000000000000000000000000000000000000000000417230000000000000000000000000000000000000000000000000000000000041713000000000000000000000000000000000000000000000000000000000004171400000000000000000000000000000000000000000000000000000000000417150000000000000000000000000000000000000000000000000000000000041716000000000000000000000000000000000000000000000000000000000004171700000000000000000000000000000000000000000000000000000000000417180000000000000000000000000000000000000000000000000000000000041719000000000000000000000000000000000000000000000000000000000004171a000000000000000000000000000000000000000000000000000000000004171b000000000000000000000000000000000000000000000000000000000004171c000000000000000000000000000000000000000000000000000000000004171d000000000000000000000000000000000000000000000000000000000004171e000000000000000000000000000000000000000000000000000000000004171f00000000000000000000000000000000000000000000000000000000000417200000000000000000000000000000000000000000000000000000000000041721000000000000000000000000000000000000000000000000000000000004172200000000000000000000000000000000000000000000000000000000000417230000000000000000000000000000000000000000000000000000000000041724000000000000000000000000000000000000000000000000000000000004171400000000000000000000000000000000000000000000000000000000000417150000000000000000000000000000000000000000000000000000000000041716000000000000000000000000000000000000000000000000000000000004171700000000000000000000000000000000000000000000000000000000000417180000000000000000000000000000000000000000000000000000000000041719000000000000000000000000000000000000000000000000000000000004171a000000000000000000000000000000000000000000000000000000000004171b000000000000000000000000000000000000000000000000000000000004171c000000000000000000000000000000000000000000000000000000000004171d000000000000000000000000000000000000000000000000000000000004171e000000000000000000000000000000000000000000000000000000000004171f00000000000000000000000000000000000000000000000000000000000417200000000000000000000000000000000000000000000000000000000000041721000000000000000000000000000000000000000000000000000000000004172200000000000000000000000000000000000000000000000000000000000417230000000000000000000000000000000000000000000000000000000000041724000000000000000000000000000000000000000000000000000000000004172500000000000000000000000000000000000000000000000000000000000417150000000000000000000000000000000000000000000000000000000000041716000000000000000000000000000000000000000000000000000000000004171700000000000000000000000000000000000000000000000000000000000417180000000000000000000000000000000000000000000000000000000000041719000000000000000000000000000000000000000000000000000000000004171a000000000000000000000000000000000000000000000000000000000004171b000000000000000000000000000000000000000000000000000000000004171c000000000000000000000000000000000000000000000000000000000004171d000000000000000000000000000000000000000000000000000000000004171e000000000000000000000000000000000000000000000000000000000004171f00000000000000000000000000000000000000000000000000000000000417200000000000000000000000000000000000000000000000000000000000041721000000000000000000000000000000000000000000000000000000000004172200000000000000000000000000000000000000000000000000000000000417230000000000000000000000000000000000000000000000000000000000041724000000000000000000000000000000000000000000000000000000000004172500000000000000000000000000000000000000000000000000000000000417260000000000000000000000000000000000000000000000000000000000041716000000000000000000000000000000000000000000000000000000000004171700000000000000000000000000000000000000000000000000000000000417180000000000000000000000000000000000000000000000000000000000041719000000000000000000000000000000000000000000000000000000000004171a000000000000000000000000000000000000000000000000000000000004171b000000000000000000000000000000000000000000000000000000000004171c000000000000000000000000000000000000000000000000000000000004171d000000000000000000000000000000000000000000000000000000000004171e000000000000000000000000000000000000000000000000000000000004171f00000000000000000000000000000000000000000000000000000000000417200000000000000000000000000000000000000000000000000000000000041721000000000000000000000000000000000000000000000000000000000004172200000000000000000000000000000000000000000000000000000000000417230000000000000000000000000000000000000000000000000000000000041724000000000000000000000000000000000000000000000000000000000004172500000000000000000000000000000000000000000000000000000000000417260000000000000000000000000000000000000000000000000000000000041727000000000000000000000000000000000000000000000000000000000004171700000000000000000000000000000000000000000000000000000000000417180000000000000000000000000000000000000000000000000000000000041719000000000000000000000000000000000000000000000000000000000004171a000000000000000000000000000000000000000000000000000000000004171b000000000000000000000000000000000000000000000000000000000004171c000000000000000000000000000000000000000000000000000000000004171d000000000000000000000000000000000000000000000000000000000004171e000000000000000000000000000000000000000000000000000000000004171f00000000000000000000000000000000000000000000000000000000000417200000000000000000000000000000000000000000000000000000000000041721000000000000000000000000000000000000000000000000000000000004172200000000000000000000000000000000000000000000000000000000000417230000000000000000000000000000000000000000000000000000000000041724000000000000000000000000000000000000000000000000000000000004172500000000000000000000000000000000000000000000000000000000000417260000000000000000000000000000000000000000000000000000000000041727000000000000000000000000000000000000000000000000000000000004172800000000000000000000000000000000000000000000000000000000000417180000000000000000000000000000000000000000000000000000000000041719000000000000000000000000000000000000000000000000000000000004171a000000000000000000000000000000000000000000000000000000000004171b000000000000000000000000000000000000000000000000000000000004171c000000000000000000000000000000000000000000000000000000000004171d000000000000000000000000000000000000000000000000000000000004171e000000000000000000000000000000000000000000000000000000000004171f00000000000000000000000000000000000000000000000000000000000417200000000000000000000000000000000000000000000000000000000000041721000000000000000000000000000000000000000000000000000000000004172200000000000000000000000000000000000000000000000000000000000417230000000000000000000000000000000000000000000000000000000000041724000000000000000000000000000000000000000000000000000000000004172500000000000000000000000000000000000000000000000000000000000417260000000000000000000000000000000000000000000000000000000000041727000000000000000000000000000000000000000000000000000000000004172800000000000000000000000000000000000000000000000000000000000417290000000000000000000000000000000000000000000000000000000000041719000000000000000000000000000000000000000000000000000000000004171a000000000000000000000000000000000000000000000000000000000004171b000000000000000000000000000000000000000000000000000000000004171c000000000000000000000000000000000000000000000000000000000004171d000000000000000000000000000000000000000000000000000000000004171e000000000000000000000000000000000000000000000000000000000004171f0000000000000000000000000000000000000000000000000000000000041720000000000000000000000000000000000000000000000000000000000004172100000000000000000000000000000000000000000000000000000000000417220000000000000000000000000000000000000000000000000000000000041723000000000000000000000000000000000000000000000000000000000004172400000000000000000000000000000000000000000000000000000000000417250000000000000000000000000000000000000000000000000000000000041726000000000000000000000000000000000000000000000000000000000004172700000000000000000000000000000000000000000000000000000000000417280000000000000000000000000000000000000000000000000000000000041729000000000000000000000000000000000000000000000000000000000004172a000000000000000000000000000000000000000000000000000000000004171a000000000000000000000000000000000000000000000000000000000004171b000000000000000000000000000000000000000000000000000000000004171c000000000000000000000000000000000000000000000000000000000004171d000000000000000000000000000000000000000000000000000000000004171e000000000000000000000000000000000000000000000000000000000004171f0000000000000000000000000000000000000000000000000000000000041720000000000000000000000000000000000000000000000000000000000004172100000000000000000000000000000000000000000000000000000000000417220000000000000000000000000000000000000000000000000000000000041723000000000000000000000000000000000000000000000000000000000004172400000000000000000000000000000000000000000000000000000000000417250000000000000000000000000000000000000000000000000000000000041726000000000000000000000000000000000000000000000000000000000004172700000000000000000000000000000000000000000000000000000000000417280000000000000000000000000000000000000000000000000000000000041729000000000000000000000000000000000000000000000000000000000004172a000000000000000000000000000000000000000000000000000000000004172b000000000000000000000000000000000000000000000000000000000004171b000000000000000000000000000000000000000000000000000000000004171c000000000000000000000000000000000000000000000000000000000004171d000000000000000000000000000000000000000000000000000000000004171e000000000000000000000000000000000000000000000000000000000004171f0000000000000000000000000000000000000000000000000000000000041720000000000000000000000000000000000000000000000000000000000004172100000000000000000000000000000000000000000000000000000000000417220000000000000000000000000000000000000000000000000000000000041723000000000000000000000000000000000000000000000000000000000004172400000000000000000000000000000000000000000000000000000000000417250000000000000000000000000000000000000000000000000000000000041726000000000000000000000000000000000000000000000000000000000004172700000000000000000000000000000000000000000000000000000000000417280000000000000000000000000000000000000000000000000000000000041729000000000000000000000000000000000000000000000000000000000004172a000000000000000000000000000000000000000000000000000000000004172b000000000000000000000000000000000000000000000000000000000004172c000000000000000000000000000000000000000000000000000000000004171c000000000000000000000000000000000000000000000000000000000004171d000000000000000000000000000000000000000000000000000000000004171e000000000000000000000000000000000000000000000000000000000004171f0000000000000000000000000000000000000000000000000000000000041720000000000000000000000000000000000000000000000000000000000004172100000000000000000000000000000000000000000000000000000000000417220000000000000000000000000000000000000000000000000000000000041723000000000000000000000000000000000000000000000000000000000004172400000000000000000000000000000000000000000000000000000000000417250000000000000000000000000000000000000000000000000000000000041726000000000000000000000000000000000000000000000000000000000004172700000000000000000000000000000000000000000000000000000000000417280000000000000000000000000000000000000000000000000000000000041729000000000000000000000000000000000000000000000000000000000004172a000000000000000000000000000000000000000000000000000000000004172b000000000000000000000000000000000000000000000000000000000004172c000000000000000000000000000000000000000000000000000000000004172d000000000000000000000000000000000000000000000000000000000004171d000000000000000000000000000000000000000000000000000000000004171e000000000000000000000000000000000000000000000000000000000004171f0000000000000000000000000000000000000000000000000000000000041720000000000000000000000000000000000000000000000000000000000004172100000000000000000000000000000000000000000000000000000000000417220000000000000000000000000000000000000000000000000000000000041723000000000000000000000000000000000000000000000000000000000004172400000000000000000000000000000000000000000000000000000000000417250000000000000000000000000000000000000000000000000000000000041726000000000000000000000000000000000000000000000000000000000004172700000000000000000000000000000000000000000000000000000000000417280000000000000000000000000000000000000000000000000000000000041729000000000000000000000000000000000000000000000000000000000004172a000000000000000000000000000000000000000000000000000000000004172b000000000000000000000000000000000000000000000000000000000004172c000000000000000000000000000000000000000000000000000000000004172d000000000000000000000000000000000000000000000000000000000004172e000000000000000000000000000000000000000000000000000000000004171e000000000000000000000000000000000000000000000000000000000004171f0000000000000000000000000000000000000000000000000000000000041720000000000000000000000000000000000000000000000000000000000004172100000000000000000000000000000000000000000000000000000000000417220000000000000000000000000000000000000000000000000000000000041723000000000000000000000000000000000000000000000000000000000004172400000000000000000000000000000000000000000000000000000000000417250000000000000000000000000000000000000000000000000000000000041726000000000000000000000000000000000000000000000000000000000004172700000000000000000000000000000000000000000000000000000000000417280000000000000000000000000000000000000000000000000000000000041729000000000000000000000000000000000000000000000000000000000004172a000000000000000000000000000000000000000000000000000000000004172b000000000000000000000000000000000000000000000000000000000004172c000000000000000000000000000000000000000000000000000000000004172d000000000000000000000000000000000000000000000000000000000004172e000000000000000000000000000000000000000000000000000000000004172f000000000000000000000000000000000000000000000000000000000004171f0000000000000000000000000000000000000000000000000000000000041720000000000000000000000000000000000000000000000000000000000004172100000000000000000000000000000000000000000000000000000000000417220000000000000000000000000000000000000000000000000000000000041723000000000000000000000000000000000000000000000000000000000004172400000000000000000000000000000000000000000000000000000000000417250000000000000000000000000000000000000000000000000000000000041726000000000000000000000000000000000000000000000000000000000004172700000000000000000000000000000000000000000000000000000000000417280000000000000000000000000000000000000000000000000000000000041729000000000000000000000000000000000000000000000000000000000004172a000000000000000000000000000000000000000000000000000000000004172b000000000000000000000000000000000000000000000000000000000004172c000000000000000000000000000000000000000000000000000000000004172d000000000000000000000000000000000000000000000000000000000004172e000000000000000000000000000000000000000000000000000000000004172f0000000000000000000000000000000000000000000000000000000000041730000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000081000000000000000000000000000000000000000000000000000000000000008100100000000000000000000000000000000000000000000000000000000000810020000000000000000000000000000000000000000000000000000000000081003000000000000000000000000000000000000000000000000000000000008100400000000000000000000000000000000000000000000000000000000000810050000000000000000000000000000000000000000000000000000000000081006000000000000000000000000000000000000000000000000000000000008100700000000000000000000000000000000000000000000000000000000000810080000000000000000000000000000000000000000000000000000000000081009000000000000000000000000000000000000000000000000000000000008100a000000000000000000000000000000000000000000000000000000000008100b000000000000000000000000000000000000000000000000000000000008100c000000000000000000000000000000000000000000000000000000000008100d000000000000000000000000000000000000000000000000000000000008100e000000000000000000000000000000000000000000000000000000000008100f0000000000000000000000000000000000000000000000000000000000081010000000000000000000000000000000000000000000000000000000000008101100000000000000000000000000000000000000000000000000000000000810120000000000000000000000000000000000000000000000000000000000081013000000000000000000000000000000000000000000000000000000000008101400000000000000000000000000000000000000000000000000000000000810150000000000000000000000000000000000000000000000000000000000081016000000000000000000000000000000000000000000000000000000000008101700000000000000000000000000000000000000000000000000000000000810180000000000000000000000000000000000000000000000000000000000081019000000000000000000000000000000000000000000000000000000000008101a000000000000000000000000000000000000000000000000000000000008101b000000000000000000000000000000000000000000000000000000000008101c000000000000000000000000000000000000000000000000000000000008101d000000000000000000000000000000000000000000000000000000000008101e000000000000000000000000000000000000000000000000000000000008101f0000000000000000000000000000000000000000000000000000000000081020000000000000000000000000000000000000000000000000000000000008102100000000000000000000000000000000000000000000000000000000000810220000000000000000000000000000000000000000000000000000000000081023000000000000000000000000000000000000000000000000000000000008102400000000000000000000000000000000000000000000000000000000000810250000000000000000000000000000000000000000000000000000000000081026000000000000000000000000000000000000000000000000000000000008102700000000000000000000000000000000000000000000000000000000000810280000000000000000000000000000000000000000000000000000000000081029000000000000000000000000000000000000000000000000000000000008102a000000000000000000000000000000000000000000000000000000000008102b000000000000000000000000000000000000000000000000000000000008102c000000000000000000000000000000000000000000000000000000000008102d000000000000000000000000000000000000000000000000000000000008102e000000000000000000000000000000000000000000000000000000000008102f0000000000000000000000000000000000000000000000000000000000081030000000000000000000000000000000000000000000000000000000000008103100000000000000000000000000000000000000000000000000000000000810320000000000000000000000000000000000000000000000000000000000081033000000000000000000000000000000000000000000000000000000000008103400000000000000000000000000000000000000000000000000000000000810350000000000000000000000000000000000000000000000000000000000081036000000000000000000000000000000000000000000000000000000000008103700000000000000000000000000000000000000000000000000000000000810380000000000000000000000000000000000000000000000000000000000081039000000000000000000000000000000000000000000000000000000000008103a000000000000000000000000000000000000000000000000000000000008103b000000000000000000000000000000000000000000000000000000000008103c000000000000000000000000000000000000000000000000000000000008103d000000000000000000000000000000000000000000000000000000000008103e000000000000000000000000000000000000000000000000000000000008103f4000000000000000000000000000000000000000000000000000000000000800010000000000000000000000000000000000000000000000000000000000081100000000000000000000000000000000000000000000000000000000000008110100000000000000000000000000000000000000000000000000000000000811020000000000000000000000000000000000000000000000000000000000081103000000000000000000000000000000000000000000000000000000000008110400000000000000000000000000000000000000000000000000000000000811050000000000000000000000000000000000000000000000000000000000081106000000000000000000000000000000000000000000000000000000000008110700000000000000000000000000000000000000000000000000000000000811080000000000000000000000000000000000000000000000000000000000081109000000000000000000000000000000000000000000000000000000000008110a000000000000000000000000000000000000000000000000000000000008110b000000000000000000000000000000000000000000000000000000000008110c000000000000000000000000000000000000000000000000000000000008110d000000000000000000000000000000000000000000000000000000000008110e000000000000000000000000000000000000000000000000000000000008110f0000000000000000000000000000000000000000000000000000000000081110000000000000000000000000000000000000000000000000000000000008111100000000000000000000000000000000000000000000000000000000000811120000000000000000000000000000000000000000000000000000000000081113000000000000000000000000000000000000000000000000000000000008111400000000000000000000000000000000000000000000000000000000000811150000000000000000000000000000000000000000000000000000000000081116000000000000000000000000000000000000000000000000000000000008111700000000000000000000000000000000000000000000000000000000000811180000000000000000000000000000000000000000000000000000000000081119000000000000000000000000000000000000000000000000000000000008111a000000000000000000000000000000000000000000000000000000000008111b000000000000000000000000000000000000000000000000000000000008111c000000000000000000000000000000000000000000000000000000000008111d000000000000000000000000000000000000000000000000000000000008111e000000000000000000000000000000000000000000000000000000000008111f0000000000000000000000000000000000000000000000000000000000081120000000000000000000000000000000000000000000000000000000000008112100000000000000000000000000000000000000000000000000000000000811220000000000000000000000000000000000000000000000000000000000081123000000000000000000000000000000000000000000000000000000000008112400000000000000000000000000000000000000000000000000000000000811250000000000000000000000000000000000000000000000000000000000081126000000000000000000000000000000000000000000000000000000000008112700000000000000000000000000000000000000000000000000000000000811280000000000000000000000000000000000000000000000000000000000081129000000000000000000000000000000000000000000000000000000000008112a000000000000000000000000000000000000000000000000000000000008112b000000000000000000000000000000000000000000000000000000000008112c000000000000000000000000000000000000000000000000000000000008112d000000000000000000000000000000000000000000000000000000000008112e000000000000000000000000000000000000000000000000000000000008112f0000000000000000000000000000000000000000000000000000000000081130000000000000000000000000000000000000000000000000000000000008113100000000000000000000000000000000000000000000000000000000000811320000000000000000000000000000000000000000000000000000000000081133000000000000000000000000000000000000000000000000000000000008113400000000000000000000000000000000000000000000000000000000000811350000000000000000000000000000000000000000000000000000000000081136000000000000000000000000000000000000000000000000000000000008113700000000000000000000000000000000000000000000000000000000000811380000000000000000000000000000000000000000000000000000000000081139000000000000000000000000000000000000000000000000000000000008113a000000000000000000000000000000000000000000000000000000000008113b000000000000000000000000000000000000000000000000000000000008113c000000000000000000000000000000000000000000000000000000000008113d000000000000000000000000000000000000000000000000000000000008113e08003c0472260790b0bdfb8ae4dc4d437e7686b73643f2198970d84e1059a5f13500bfd46275a318e438726ff2765ae154b63ab8a0daebcbed668a5f58a0e63dc1007906b9418dc758c6b4f8454c69baa48b7889b6b511d707abe8e2cb8f7c397300aeb60c4d65a44f122e58bf9565dfe2024b3ae654d5cf2e47ecb035d53c927000bf82e8cda20345f37bbb1de3932172324b57f0b98be483392697b168e3bba8000fb4bbad884ef30edf68e45a6cf2733fcf50310c69d7c1432b29af2c0aa8040023e1622d27fee3b4a40ab975ae0eb2e31619ef3dc76eb858f7fddb6a056131004689cd7007daf98dd3218b839b8e6a29f957154347b391fdb376bd0b344be2400000000000000000000000000000000000000000000000000000000000082000000000000000000000000000000000000000000000000000000000000008200a0000000000000000000000000000000000000000000000000000000000082001000000000000000000000000000000000000000000000000000000000008200b0000000000000000000000000000000000000000000000000000000000082002000000000000000000000000000000000000000000000000000000000008200c0000000000000000000000000000000000000000000000000000000000082003000000000000000000000000000000000000000000000000000000000008200d0000000000000000000000000000000000000000000000000000000000082004000000000000000000000000000000000000000000000000000000000008200e0000000000000000000000000000000000000000000000000000000000082005000000000000000000000000000000000000000000000000000000000008200f00000000000000000000000000000000000000000000000000000000000820060000000000000000000000000000000000000000000000000000000000082010000000000000000000000000000000000000000000000000000000000008200700000000000000000000000000000000000000000000000000000000000820110000000000000000000000000000000000000000000000000000000000082008000000000000000000000000000000000000000000000000000000000008201200000000000000000000000000000000000000000000000000000000000820090000000000000000000000000000000000000000000000000000000000082013000000000000000000000000000000000000000000000000000000000008200a0000000000000000000000000000000000000000000000000000000000082014000000000000000000000000000000000000000000000000000000000008200b0000000000000000000000000000000000000000000000000000000000082015000000000000000000000000000000000000000000000000000000000008200c0000000000000000000000000000000000000000000000000000000000082016000000000000000000000000000000000000000000000000000000000008200d0000000000000000000000000000000000000000000000000000000000082017000000000000000000000000000000000000000000000000000000000008200e0000000000000000000000000000000000000000000000000000000000082018000000000000000000000000000000000000000000000000000000000008200f00000000000000000000000000000000000000000000000000000000000820190000000000000000000000000000000000000000000000000000000000082010000000000000000000000000000000000000000000000000000000000008201a0000000000000000000000000000000000000000000000000000000000082011000000000000000000000000000000000000000000000000000000000008201b0000000000000000000000000000000000000000000000000000000000082012000000000000000000000000000000000000000000000000000000000008201c0000000000000000000000000000000000000000000000000000000000082013000000000000000000000000000000000000000000000000000000000008201d0000000000000000000000000000000000000000000000000000000000082014000000000000000000000000000000000000000000000000000000000008201e0000000000000000000000000000000000000000000000000000000000082015000000000000000000000000000000000000000000000000000000000008201f00000000000000000000000000000000000000000000000000000000000820160000000000000000000000000000000000000000000000000000000000082020000000000000000000000000000000000000000000000000000000000008201700000000000000000000000000000000000000000000000000000000000820210000000000000000000000000000000000000000000000000000000000082018000000000000000000000000000000000000000000000000000000000008202200000000000000000000000000000000000000000000000000000000000820190000000000000000000000000000000000000000000000000000000000082023000000000000000000000000000000000000000000000000000000000008201a0000000000000000000000000000000000000000000000000000000000082024000000000000000000000000000000000000000000000000000000000008201b0000000000000000000000000000000000000000000000000000000000082025000000000000000000000000000000000000000000000000000000000008201c0000000000000000000000000000000000000000000000000000000000082026000000000000000000000000000000000000000000000000000000000008201d0000000000000000000000000000000000000000000000000000000000082027000000000000000000000000000000000000000000000000000000000008201e0000000000000000000000000000000000000000000000000000000000082028000000000000000000000000000000000000000000000000000000000008201f00000000000000000000000000000000000000000000000000000000000820290000000000000000000000000000000000000000000000000000000000082020000000000000000000000000000000000000000000000000000000000008202a0000000000000000000000000000000000000000000000000000000000082021000000000000000000000000000000000000000000000000000000000008202b0000000000000000000000000000000000000000000000000000000000082022000000000000000000000000000000000000000000000000000000000008202c0000000000000000000000000000000000000000000000000000000000082023000000000000000000000000000000000000000000000000000000000008202d0000000000000000000000000000000000000000000000000000000000082024000000000000000000000000000000000000000000000000000000000008202e0000000000000000000000000000000000000000000000000000000000082025000000000000000000000000000000000000000000000000000000000008202f00000000000000000000000000000000000000000000000000000000000820260000000000000000000000000000000000000000000000000000000000082030000000000000000000000000000000000000000000000000000000000008202700000000000000000000000000000000000000000000000000000000000820310000000000000000000000000000000000000000000000000000000000082028000000000000000000000000000000000000000000000000000000000008203200000000000000000000000000000000000000000000000000000000000820290000000000000000000000000000000000000000000000000000000000082033000000000000000000000000000000000000000000000000000000000008202a0000000000000000000000000000000000000000000000000000000000082034000000000000000000000000000000000000000000000000000000000008202b0000000000000000000000000000000000000000000000000000000000082035000000000000000000000000000000000000000000000000000000000008202c0000000000000000000000000000000000000000000000000000000000082036000000000000000000000000000000000000000000000000000000000008202d0000000000000000000000000000000000000000000000000000000000082037000000000000000000000000000000000000000000000000000000000008202e0000000000000000000000000000000000000000000000000000000000082038000000000000000000000000000000000000000000000000000000000008202f00000000000000000000000000000000000000000000000000000000000820390000000000000000000000000000000000000000000000000000000000082030000000000000000000000000000000000000000000000000000000000008203a0000000000000000000000000000000000000000000000000000000000082031000000000000000000000000000000000000000000000000000000000008203b0000000000000000000000000000000000000000000000000000000000082032000000000000000000000000000000000000000000000000000000000008203c0000000000000000000000000000000000000000000000000000000000082033000000000000000000000000000000000000000000000000000000000008203d0000000000000000000000000000000000000000000000000000000000082034000000000000000000000000000000000000000000000000000000000008203e0000000000000000000000000000000000000000000000000000000000082035000000000000000000000000000000000000000000000000000000000008203f00000000000000000000000000000000000000000000000000000000000820360000000000000000000000000000000000000000000000000000000000082040000000000000000000000000000000000000000000000000000000000008203700000000000000000000000000000000000000000000000000000000000820410000000000000000000000000000000000000000000000000000000000082038000000000000000000000000000000000000000000000000000000000008204200000000000000000000000000000000000000000000000000000000000820390000000000000000000000000000000000000000000000000000000000082043000000000000000000000000000000000000000000000000000000000008203a0000000000000000000000000000000000000000000000000000000000082044000000000000000000000000000000000000000000000000000000000008203b0000000000000000000000000000000000000000000000000000000000082045000000000000000000000000000000000000000000000000000000000008203c0000000000000000000000000000000000000000000000000000000000082046000000000000000000000000000000000000000000000000000000000008203d0000000000000000000000000000000000000000000000000000000000082047000000000000000000000000000000000000000000000000000000000008203e0000000000000000000000000000000000000000000000000000000000082048000000000000000000000000000000000000000000000000000000000008203f0000000000000000000000000000000000000000000000000000000000082049200000000000000000000000000000000000000000000000000000000000081700000000000000000000000000000000000000000000000000000000000008170100000000000000000000000000000000000000000000000000000000000817020000000000000000000000000000000000000000000000000000000000081703000000000000000000000000000000000000000000000000000000000008170400000000000000000000000000000000000000000000000000000000000817050000000000000000000000000000000000000000000000000000000000081706000000000000000000000000000000000000000000000000000000000008170700000000000000000000000000000000000000000000000000000000000817080000000000000000000000000000000000000000000000000000000000081709000000000000000000000000000000000000000000000000000000000008170a000000000000000000000000000000000000000000000000000000000008170b000000000000000000000000000000000000000000000000000000000008170c000000000000000000000000000000000000000000000000000000000008170d000000000000000000000000000000000000000000000000000000000008170e000000000000000000000000000000000000000000000000000000000008170f00000000000000000000000000000000000000000000000000000000000817100000000000000000000000000000000000000000000000000000000000081711000000000000000000000000000000000000000000000000000000000008170100000000000000000000000000000000000000000000000000000000000817020000000000000000000000000000000000000000000000000000000000081703000000000000000000000000000000000000000000000000000000000008170400000000000000000000000000000000000000000000000000000000000817050000000000000000000000000000000000000000000000000000000000081706000000000000000000000000000000000000000000000000000000000008170700000000000000000000000000000000000000000000000000000000000817080000000000000000000000000000000000000000000000000000000000081709000000000000000000000000000000000000000000000000000000000008170a000000000000000000000000000000000000000000000000000000000008170b000000000000000000000000000000000000000000000000000000000008170c000000000000000000000000000000000000000000000000000000000008170d000000000000000000000000000000000000000000000000000000000008170e000000000000000000000000000000000000000000000000000000000008170f00000000000000000000000000000000000000000000000000000000000817100000000000000000000000000000000000000000000000000000000000081711000000000000000000000000000000000000000000000000000000000008171200000000000000000000000000000000000000000000000000000000000817020000000000000000000000000000000000000000000000000000000000081703000000000000000000000000000000000000000000000000000000000008170400000000000000000000000000000000000000000000000000000000000817050000000000000000000000000000000000000000000000000000000000081706000000000000000000000000000000000000000000000000000000000008170700000000000000000000000000000000000000000000000000000000000817080000000000000000000000000000000000000000000000000000000000081709000000000000000000000000000000000000000000000000000000000008170a000000000000000000000000000000000000000000000000000000000008170b000000000000000000000000000000000000000000000000000000000008170c000000000000000000000000000000000000000000000000000000000008170d000000000000000000000000000000000000000000000000000000000008170e000000000000000000000000000000000000000000000000000000000008170f00000000000000000000000000000000000000000000000000000000000817100000000000000000000000000000000000000000000000000000000000081711000000000000000000000000000000000000000000000000000000000008171200000000000000000000000000000000000000000000000000000000000817130000000000000000000000000000000000000000000000000000000000081703000000000000000000000000000000000000000000000000000000000008170400000000000000000000000000000000000000000000000000000000000817050000000000000000000000000000000000000000000000000000000000081706000000000000000000000000000000000000000000000000000000000008170700000000000000000000000000000000000000000000000000000000000817080000000000000000000000000000000000000000000000000000000000081709000000000000000000000000000000000000000000000000000000000008170a000000000000000000000000000000000000000000000000000000000008170b000000000000000000000000000000000000000000000000000000000008170c000000000000000000000000000000000000000000000000000000000008170d000000000000000000000000000000000000000000000000000000000008170e000000000000000000000000000000000000000000000000000000000008170f00000000000000000000000000000000000000000000000000000000000817100000000000000000000000000000000000000000000000000000000000081711000000000000000000000000000000000000000000000000000000000008171200000000000000000000000000000000000000000000000000000000000817130000000000000000000000000000000000000000000000000000000000081714000000000000000000000000000000000000000000000000000000000008170400000000000000000000000000000000000000000000000000000000000817050000000000000000000000000000000000000000000000000000000000081706000000000000000000000000000000000000000000000000000000000008170700000000000000000000000000000000000000000000000000000000000817080000000000000000000000000000000000000000000000000000000000081709000000000000000000000000000000000000000000000000000000000008170a000000000000000000000000000000000000000000000000000000000008170b000000000000000000000000000000000000000000000000000000000008170c000000000000000000000000000000000000000000000000000000000008170d000000000000000000000000000000000000000000000000000000000008170e000000000000000000000000000000000000000000000000000000000008170f00000000000000000000000000000000000000000000000000000000000817100000000000000000000000000000000000000000000000000000000000081711000000000000000000000000000000000000000000000000000000000008171200000000000000000000000000000000000000000000000000000000000817130000000000000000000000000000000000000000000000000000000000081714000000000000000000000000000000000000000000000000000000000008171500000000000000000000000000000000000000000000000000000000000817050000000000000000000000000000000000000000000000000000000000081706000000000000000000000000000000000000000000000000000000000008170700000000000000000000000000000000000000000000000000000000000817080000000000000000000000000000000000000000000000000000000000081709000000000000000000000000000000000000000000000000000000000008170a000000000000000000000000000000000000000000000000000000000008170b000000000000000000000000000000000000000000000000000000000008170c000000000000000000000000000000000000000000000000000000000008170d000000000000000000000000000000000000000000000000000000000008170e000000000000000000000000000000000000000000000000000000000008170f00000000000000000000000000000000000000000000000000000000000817100000000000000000000000000000000000000000000000000000000000081711000000000000000000000000000000000000000000000000000000000008171200000000000000000000000000000000000000000000000000000000000817130000000000000000000000000000000000000000000000000000000000081714000000000000000000000000000000000000000000000000000000000008171500000000000000000000000000000000000000000000000000000000000817160000000000000000000000000000000000000000000000000000000000081706000000000000000000000000000000000000000000000000000000000008170700000000000000000000000000000000000000000000000000000000000817080000000000000000000000000000000000000000000000000000000000081709000000000000000000000000000000000000000000000000000000000008170a000000000000000000000000000000000000000000000000000000000008170b000000000000000000000000000000000000000000000000000000000008170c000000000000000000000000000000000000000000000000000000000008170d000000000000000000000000000000000000000000000000000000000008170e000000000000000000000000000000000000000000000000000000000008170f00000000000000000000000000000000000000000000000000000000000817100000000000000000000000000000000000000000000000000000000000081711000000000000000000000000000000000000000000000000000000000008171200000000000000000000000000000000000000000000000000000000000817130000000000000000000000000000000000000000000000000000000000081714000000000000000000000000000000000000000000000000000000000008171500000000000000000000000000000000000000000000000000000000000817160000000000000000000000000000000000000000000000000000000000081717000000000000000000000000000000000000000000000000000000000008170700000000000000000000000000000000000000000000000000000000000817080000000000000000000000000000000000000000000000000000000000081709000000000000000000000000000000000000000000000000000000000008170a000000000000000000000000000000000000000000000000000000000008170b000000000000000000000000000000000000000000000000000000000008170c000000000000000000000000000000000000000000000000000000000008170d000000000000000000000000000000000000000000000000000000000008170e000000000000000000000000000000000000000000000000000000000008170f00000000000000000000000000000000000000000000000000000000000817100000000000000000000000000000000000000000000000000000000000081711000000000000000000000000000000000000000000000000000000000008171200000000000000000000000000000000000000000000000000000000000817130000000000000000000000000000000000000000000000000000000000081714000000000000000000000000000000000000000000000000000000000008171500000000000000000000000000000000000000000000000000000000000817160000000000000000000000000000000000000000000000000000000000081717000000000000000000000000000000000000000000000000000000000008171800000000000000000000000000000000000000000000000000000000000817080000000000000000000000000000000000000000000000000000000000081709000000000000000000000000000000000000000000000000000000000008170a000000000000000000000000000000000000000000000000000000000008170b000000000000000000000000000000000000000000000000000000000008170c000000000000000000000000000000000000000000000000000000000008170d000000000000000000000000000000000000000000000000000000000008170e000000000000000000000000000000000000000000000000000000000008170f00000000000000000000000000000000000000000000000000000000000817100000000000000000000000000000000000000000000000000000000000081711000000000000000000000000000000000000000000000000000000000008171200000000000000000000000000000000000000000000000000000000000817130000000000000000000000000000000000000000000000000000000000081714000000000000000000000000000000000000000000000000000000000008171500000000000000000000000000000000000000000000000000000000000817160000000000000000000000000000000000000000000000000000000000081717000000000000000000000000000000000000000000000000000000000008171800000000000000000000000000000000000000000000000000000000000817190000000000000000000000000000000000000000000000000000000000081709000000000000000000000000000000000000000000000000000000000008170a000000000000000000000000000000000000000000000000000000000008170b000000000000000000000000000000000000000000000000000000000008170c000000000000000000000000000000000000000000000000000000000008170d000000000000000000000000000000000000000000000000000000000008170e000000000000000000000000000000000000000000000000000000000008170f0000000000000000000000000000000000000000000000000000000000081710000000000000000000000000000000000000000000000000000000000008171100000000000000000000000000000000000000000000000000000000000817120000000000000000000000000000000000000000000000000000000000081713000000000000000000000000000000000000000000000000000000000008171400000000000000000000000000000000000000000000000000000000000817150000000000000000000000000000000000000000000000000000000000081716000000000000000000000000000000000000000000000000000000000008171700000000000000000000000000000000000000000000000000000000000817180000000000000000000000000000000000000000000000000000000000081719000000000000000000000000000000000000000000000000000000000008171a000000000000000000000000000000000000000000000000000000000008170a000000000000000000000000000000000000000000000000000000000008170b000000000000000000000000000000000000000000000000000000000008170c000000000000000000000000000000000000000000000000000000000008170d000000000000000000000000000000000000000000000000000000000008170e000000000000000000000000000000000000000000000000000000000008170f0000000000000000000000000000000000000000000000000000000000081710000000000000000000000000000000000000000000000000000000000008171100000000000000000000000000000000000000000000000000000000000817120000000000000000000000000000000000000000000000000000000000081713000000000000000000000000000000000000000000000000000000000008171400000000000000000000000000000000000000000000000000000000000817150000000000000000000000000000000000000000000000000000000000081716000000000000000000000000000000000000000000000000000000000008171700000000000000000000000000000000000000000000000000000000000817180000000000000000000000000000000000000000000000000000000000081719000000000000000000000000000000000000000000000000000000000008171a000000000000000000000000000000000000000000000000000000000008171b000000000000000000000000000000000000000000000000000000000008170b000000000000000000000000000000000000000000000000000000000008170c000000000000000000000000000000000000000000000000000000000008170d000000000000000000000000000000000000000000000000000000000008170e000000000000000000000000000000000000000000000000000000000008170f0000000000000000000000000000000000000000000000000000000000081710000000000000000000000000000000000000000000000000000000000008171100000000000000000000000000000000000000000000000000000000000817120000000000000000000000000000000000000000000000000000000000081713000000000000000000000000000000000000000000000000000000000008171400000000000000000000000000000000000000000000000000000000000817150000000000000000000000000000000000000000000000000000000000081716000000000000000000000000000000000000000000000000000000000008171700000000000000000000000000000000000000000000000000000000000817180000000000000000000000000000000000000000000000000000000000081719000000000000000000000000000000000000000000000000000000000008171a000000000000000000000000000000000000000000000000000000000008171b000000000000000000000000000000000000000000000000000000000008171c000000000000000000000000000000000000000000000000000000000008170c000000000000000000000000000000000000000000000000000000000008170d000000000000000000000000000000000000000000000000000000000008170e000000000000000000000000000000000000000000000000000000000008170f0000000000000000000000000000000000000000000000000000000000081710000000000000000000000000000000000000000000000000000000000008171100000000000000000000000000000000000000000000000000000000000817120000000000000000000000000000000000000000000000000000000000081713000000000000000000000000000000000000000000000000000000000008171400000000000000000000000000000000000000000000000000000000000817150000000000000000000000000000000000000000000000000000000000081716000000000000000000000000000000000000000000000000000000000008171700000000000000000000000000000000000000000000000000000000000817180000000000000000000000000000000000000000000000000000000000081719000000000000000000000000000000000000000000000000000000000008171a000000000000000000000000000000000000000000000000000000000008171b000000000000000000000000000000000000000000000000000000000008171c000000000000000000000000000000000000000000000000000000000008171d000000000000000000000000000000000000000000000000000000000008170d000000000000000000000000000000000000000000000000000000000008170e000000000000000000000000000000000000000000000000000000000008170f0000000000000000000000000000000000000000000000000000000000081710000000000000000000000000000000000000000000000000000000000008171100000000000000000000000000000000000000000000000000000000000817120000000000000000000000000000000000000000000000000000000000081713000000000000000000000000000000000000000000000000000000000008171400000000000000000000000000000000000000000000000000000000000817150000000000000000000000000000000000000000000000000000000000081716000000000000000000000000000000000000000000000000000000000008171700000000000000000000000000000000000000000000000000000000000817180000000000000000000000000000000000000000000000000000000000081719000000000000000000000000000000000000000000000000000000000008171a000000000000000000000000000000000000000000000000000000000008171b000000000000000000000000000000000000000000000000000000000008171c000000000000000000000000000000000000000000000000000000000008171d000000000000000000000000000000000000000000000000000000000008171e000000000000000000000000000000000000000000000000000000000008170e000000000000000000000000000000000000000000000000000000000008170f0000000000000000000000000000000000000000000000000000000000081710000000000000000000000000000000000000000000000000000000000008171100000000000000000000000000000000000000000000000000000000000817120000000000000000000000000000000000000000000000000000000000081713000000000000000000000000000000000000000000000000000000000008171400000000000000000000000000000000000000000000000000000000000817150000000000000000000000000000000000000000000000000000000000081716000000000000000000000000000000000000000000000000000000000008171700000000000000000000000000000000000000000000000000000000000817180000000000000000000000000000000000000000000000000000000000081719000000000000000000000000000000000000000000000000000000000008171a000000000000000000000000000000000000000000000000000000000008171b000000000000000000000000000000000000000000000000000000000008171c000000000000000000000000000000000000000000000000000000000008171d000000000000000000000000000000000000000000000000000000000008171e000000000000000000000000000000000000000000000000000000000008171f000000000000000000000000000000000000000000000000000000000008170f0000000000000000000000000000000000000000000000000000000000081710000000000000000000000000000000000000000000000000000000000008171100000000000000000000000000000000000000000000000000000000000817120000000000000000000000000000000000000000000000000000000000081713000000000000000000000000000000000000000000000000000000000008171400000000000000000000000000000000000000000000000000000000000817150000000000000000000000000000000000000000000000000000000000081716000000000000000000000000000000000000000000000000000000000008171700000000000000000000000000000000000000000000000000000000000817180000000000000000000000000000000000000000000000000000000000081719000000000000000000000000000000000000000000000000000000000008171a000000000000000000000000000000000000000000000000000000000008171b000000000000000000000000000000000000000000000000000000000008171c000000000000000000000000000000000000000000000000000000000008171d000000000000000000000000000000000000000000000000000000000008171e000000000000000000000000000000000000000000000000000000000008171f00000000000000000000000000000000000000000000000000000000000817200000000000000000000000000000000000000000000000000000000000081710000000000000000000000000000000000000000000000000000000000008171100000000000000000000000000000000000000000000000000000000000817120000000000000000000000000000000000000000000000000000000000081713000000000000000000000000000000000000000000000000000000000008171400000000000000000000000000000000000000000000000000000000000817150000000000000000000000000000000000000000000000000000000000081716000000000000000000000000000000000000000000000000000000000008171700000000000000000000000000000000000000000000000000000000000817180000000000000000000000000000000000000000000000000000000000081719000000000000000000000000000000000000000000000000000000000008171a000000000000000000000000000000000000000000000000000000000008171b000000000000000000000000000000000000000000000000000000000008171c000000000000000000000000000000000000000000000000000000000008171d000000000000000000000000000000000000000000000000000000000008171e000000000000000000000000000000000000000000000000000000000008171f00000000000000000000000000000000000000000000000000000000000817200000000000000000000000000000000000000000000000000000000000081721000000000000000000000000000000000000000000000000000000000008171100000000000000000000000000000000000000000000000000000000000817120000000000000000000000000000000000000000000000000000000000081713000000000000000000000000000000000000000000000000000000000008171400000000000000000000000000000000000000000000000000000000000817150000000000000000000000000000000000000000000000000000000000081716000000000000000000000000000000000000000000000000000000000008171700000000000000000000000000000000000000000000000000000000000817180000000000000000000000000000000000000000000000000000000000081719000000000000000000000000000000000000000000000000000000000008171a000000000000000000000000000000000000000000000000000000000008171b000000000000000000000000000000000000000000000000000000000008171c000000000000000000000000000000000000000000000000000000000008171d000000000000000000000000000000000000000000000000000000000008171e000000000000000000000000000000000000000000000000000000000008171f00000000000000000000000000000000000000000000000000000000000817200000000000000000000000000000000000000000000000000000000000081721000000000000000000000000000000000000000000000000000000000008172200000000000000000000000000000000000000000000000000000000000817120000000000000000000000000000000000000000000000000000000000081713000000000000000000000000000000000000000000000000000000000008171400000000000000000000000000000000000000000000000000000000000817150000000000000000000000000000000000000000000000000000000000081716000000000000000000000000000000000000000000000000000000000008171700000000000000000000000000000000000000000000000000000000000817180000000000000000000000000000000000000000000000000000000000081719000000000000000000000000000000000000000000000000000000000008171a000000000000000000000000000000000000000000000000000000000008171b000000000000000000000000000000000000000000000000000000000008171c000000000000000000000000000000000000000000000000000000000008171d000000000000000000000000000000000000000000000000000000000008171e000000000000000000000000000000000000000000000000000000000008171f00000000000000000000000000000000000000000000000000000000000817200000000000000000000000000000000000000000000000000000000000081721000000000000000000000000000000000000000000000000000000000008172200000000000000000000000000000000000000000000000000000000000817230000000000000000000000000000000000000000000000000000000000081713000000000000000000000000000000000000000000000000000000000008171400000000000000000000000000000000000000000000000000000000000817150000000000000000000000000000000000000000000000000000000000081716000000000000000000000000000000000000000000000000000000000008171700000000000000000000000000000000000000000000000000000000000817180000000000000000000000000000000000000000000000000000000000081719000000000000000000000000000000000000000000000000000000000008171a000000000000000000000000000000000000000000000000000000000008171b000000000000000000000000000000000000000000000000000000000008171c000000000000000000000000000000000000000000000000000000000008171d000000000000000000000000000000000000000000000000000000000008171e000000000000000000000000000000000000000000000000000000000008171f00000000000000000000000000000000000000000000000000000000000817200000000000000000000000000000000000000000000000000000000000081721000000000000000000000000000000000000000000000000000000000008172200000000000000000000000000000000000000000000000000000000000817230000000000000000000000000000000000000000000000000000000000081724000000000000000000000000000000000000000000000000000000000008171400000000000000000000000000000000000000000000000000000000000817150000000000000000000000000000000000000000000000000000000000081716000000000000000000000000000000000000000000000000000000000008171700000000000000000000000000000000000000000000000000000000000817180000000000000000000000000000000000000000000000000000000000081719000000000000000000000000000000000000000000000000000000000008171a000000000000000000000000000000000000000000000000000000000008171b000000000000000000000000000000000000000000000000000000000008171c000000000000000000000000000000000000000000000000000000000008171d000000000000000000000000000000000000000000000000000000000008171e000000000000000000000000000000000000000000000000000000000008171f00000000000000000000000000000000000000000000000000000000000817200000000000000000000000000000000000000000000000000000000000081721000000000000000000000000000000000000000000000000000000000008172200000000000000000000000000000000000000000000000000000000000817230000000000000000000000000000000000000000000000000000000000081724000000000000000000000000000000000000000000000000000000000008172500000000000000000000000000000000000000000000000000000000000817150000000000000000000000000000000000000000000000000000000000081716000000000000000000000000000000000000000000000000000000000008171700000000000000000000000000000000000000000000000000000000000817180000000000000000000000000000000000000000000000000000000000081719000000000000000000000000000000000000000000000000000000000008171a000000000000000000000000000000000000000000000000000000000008171b000000000000000000000000000000000000000000000000000000000008171c000000000000000000000000000000000000000000000000000000000008171d000000000000000000000000000000000000000000000000000000000008171e000000000000000000000000000000000000000000000000000000000008171f00000000000000000000000000000000000000000000000000000000000817200000000000000000000000000000000000000000000000000000000000081721000000000000000000000000000000000000000000000000000000000008172200000000000000000000000000000000000000000000000000000000000817230000000000000000000000000000000000000000000000000000000000081724000000000000000000000000000000000000000000000000000000000008172500000000000000000000000000000000000000000000000000000000000817260000000000000000000000000000000000000000000000000000000000081716000000000000000000000000000000000000000000000000000000000008171700000000000000000000000000000000000000000000000000000000000817180000000000000000000000000000000000000000000000000000000000081719000000000000000000000000000000000000000000000000000000000008171a000000000000000000000000000000000000000000000000000000000008171b000000000000000000000000000000000000000000000000000000000008171c000000000000000000000000000000000000000000000000000000000008171d000000000000000000000000000000000000000000000000000000000008171e000000000000000000000000000000000000000000000000000000000008171f00000000000000000000000000000000000000000000000000000000000817200000000000000000000000000000000000000000000000000000000000081721000000000000000000000000000000000000000000000000000000000008172200000000000000000000000000000000000000000000000000000000000817230000000000000000000000000000000000000000000000000000000000081724000000000000000000000000000000000000000000000000000000000008172500000000000000000000000000000000000000000000000000000000000817260000000000000000000000000000000000000000000000000000000000081727000000000000000000000000000000000000000000000000000000000008171700000000000000000000000000000000000000000000000000000000000817180000000000000000000000000000000000000000000000000000000000081719000000000000000000000000000000000000000000000000000000000008171a000000000000000000000000000000000000000000000000000000000008171b000000000000000000000000000000000000000000000000000000000008171c000000000000000000000000000000000000000000000000000000000008171d000000000000000000000000000000000000000000000000000000000008171e000000000000000000000000000000000000000000000000000000000008171f00000000000000000000000000000000000000000000000000000000000817200000000000000000000000000000000000000000000000000000000000081721000000000000000000000000000000000000000000000000000000000008172200000000000000000000000000000000000000000000000000000000000817230000000000000000000000000000000000000000000000000000000000081724000000000000000000000000000000000000000000000000000000000008172500000000000000000000000000000000000000000000000000000000000817260000000000000000000000000000000000000000000000000000000000081727000000000000000000000000000000000000000000000000000000000008172800000000000000000000000000000000000000000000000000000000000817180000000000000000000000000000000000000000000000000000000000081719000000000000000000000000000000000000000000000000000000000008171a000000000000000000000000000000000000000000000000000000000008171b000000000000000000000000000000000000000000000000000000000008171c000000000000000000000000000000000000000000000000000000000008171d000000000000000000000000000000000000000000000000000000000008171e000000000000000000000000000000000000000000000000000000000008171f00000000000000000000000000000000000000000000000000000000000817200000000000000000000000000000000000000000000000000000000000081721000000000000000000000000000000000000000000000000000000000008172200000000000000000000000000000000000000000000000000000000000817230000000000000000000000000000000000000000000000000000000000081724000000000000000000000000000000000000000000000000000000000008172500000000000000000000000000000000000000000000000000000000000817260000000000000000000000000000000000000000000000000000000000081727000000000000000000000000000000000000000000000000000000000008172800000000000000000000000000000000000000000000000000000000000817290000000000000000000000000000000000000000000000000000000000081719000000000000000000000000000000000000000000000000000000000008171a000000000000000000000000000000000000000000000000000000000008171b000000000000000000000000000000000000000000000000000000000008171c000000000000000000000000000000000000000000000000000000000008171d000000000000000000000000000000000000000000000000000000000008171e000000000000000000000000000000000000000000000000000000000008171f0000000000000000000000000000000000000000000000000000000000081720000000000000000000000000000000000000000000000000000000000008172100000000000000000000000000000000000000000000000000000000000817220000000000000000000000000000000000000000000000000000000000081723000000000000000000000000000000000000000000000000000000000008172400000000000000000000000000000000000000000000000000000000000817250000000000000000000000000000000000000000000000000000000000081726000000000000000000000000000000000000000000000000000000000008172700000000000000000000000000000000000000000000000000000000000817280000000000000000000000000000000000000000000000000000000000081729000000000000000000000000000000000000000000000000000000000008172a000000000000000000000000000000000000000000000000000000000008171a000000000000000000000000000000000000000000000000000000000008171b000000000000000000000000000000000000000000000000000000000008171c000000000000000000000000000000000000000000000000000000000008171d000000000000000000000000000000000000000000000000000000000008171e000000000000000000000000000000000000000000000000000000000008171f0000000000000000000000000000000000000000000000000000000000081720000000000000000000000000000000000000000000000000000000000008172100000000000000000000000000000000000000000000000000000000000817220000000000000000000000000000000000000000000000000000000000081723000000000000000000000000000000000000000000000000000000000008172400000000000000000000000000000000000000000000000000000000000817250000000000000000000000000000000000000000000000000000000000081726000000000000000000000000000000000000000000000000000000000008172700000000000000000000000000000000000000000000000000000000000817280000000000000000000000000000000000000000000000000000000000081729000000000000000000000000000000000000000000000000000000000008172a000000000000000000000000000000000000000000000000000000000008172b000000000000000000000000000000000000000000000000000000000008171b000000000000000000000000000000000000000000000000000000000008171c000000000000000000000000000000000000000000000000000000000008171d000000000000000000000000000000000000000000000000000000000008171e000000000000000000000000000000000000000000000000000000000008171f0000000000000000000000000000000000000000000000000000000000081720000000000000000000000000000000000000000000000000000000000008172100000000000000000000000000000000000000000000000000000000000817220000000000000000000000000000000000000000000000000000000000081723000000000000000000000000000000000000000000000000000000000008172400000000000000000000000000000000000000000000000000000000000817250000000000000000000000000000000000000000000000000000000000081726000000000000000000000000000000000000000000000000000000000008172700000000000000000000000000000000000000000000000000000000000817280000000000000000000000000000000000000000000000000000000000081729000000000000000000000000000000000000000000000000000000000008172a000000000000000000000000000000000000000000000000000000000008172b000000000000000000000000000000000000000000000000000000000008172c000000000000000000000000000000000000000000000000000000000008171c000000000000000000000000000000000000000000000000000000000008171d000000000000000000000000000000000000000000000000000000000008171e000000000000000000000000000000000000000000000000000000000008171f0000000000000000000000000000000000000000000000000000000000081720000000000000000000000000000000000000000000000000000000000008172100000000000000000000000000000000000000000000000000000000000817220000000000000000000000000000000000000000000000000000000000081723000000000000000000000000000000000000000000000000000000000008172400000000000000000000000000000000000000000000000000000000000817250000000000000000000000000000000000000000000000000000000000081726000000000000000000000000000000000000000000000000000000000008172700000000000000000000000000000000000000000000000000000000000817280000000000000000000000000000000000000000000000000000000000081729000000000000000000000000000000000000000000000000000000000008172a000000000000000000000000000000000000000000000000000000000008172b000000000000000000000000000000000000000000000000000000000008172c000000000000000000000000000000000000000000000000000000000008172d000000000000000000000000000000000000000000000000000000000008171d000000000000000000000000000000000000000000000000000000000008171e000000000000000000000000000000000000000000000000000000000008171f0000000000000000000000000000000000000000000000000000000000081720000000000000000000000000000000000000000000000000000000000008172100000000000000000000000000000000000000000000000000000000000817220000000000000000000000000000000000000000000000000000000000081723000000000000000000000000000000000000000000000000000000000008172400000000000000000000000000000000000000000000000000000000000817250000000000000000000000000000000000000000000000000000000000081726000000000000000000000000000000000000000000000000000000000008172700000000000000000000000000000000000000000000000000000000000817280000000000000000000000000000000000000000000000000000000000081729000000000000000000000000000000000000000000000000000000000008172a000000000000000000000000000000000000000000000000000000000008172b000000000000000000000000000000000000000000000000000000000008172c000000000000000000000000000000000000000000000000000000000008172d000000000000000000000000000000000000000000000000000000000008172e000000000000000000000000000000000000000000000000000000000008171e000000000000000000000000000000000000000000000000000000000008171f0000000000000000000000000000000000000000000000000000000000081720000000000000000000000000000000000000000000000000000000000008172100000000000000000000000000000000000000000000000000000000000817220000000000000000000000000000000000000000000000000000000000081723000000000000000000000000000000000000000000000000000000000008172400000000000000000000000000000000000000000000000000000000000817250000000000000000000000000000000000000000000000000000000000081726000000000000000000000000000000000000000000000000000000000008172700000000000000000000000000000000000000000000000000000000000817280000000000000000000000000000000000000000000000000000000000081729000000000000000000000000000000000000000000000000000000000008172a000000000000000000000000000000000000000000000000000000000008172b000000000000000000000000000000000000000000000000000000000008172c000000000000000000000000000000000000000000000000000000000008172d000000000000000000000000000000000000000000000000000000000008172e000000000000000000000000000000000000000000000000000000000008172f000000000000000000000000000000000000000000000000000000000008171f0000000000000000000000000000000000000000000000000000000000081720000000000000000000000000000000000000000000000000000000000008172100000000000000000000000000000000000000000000000000000000000817220000000000000000000000000000000000000000000000000000000000081723000000000000000000000000000000000000000000000000000000000008172400000000000000000000000000000000000000000000000000000000000817250000000000000000000000000000000000000000000000000000000000081726000000000000000000000000000000000000000000000000000000000008172700000000000000000000000000000000000000000000000000000000000817280000000000000000000000000000000000000000000000000000000000081729000000000000000000000000000000000000000000000000000000000008172a000000000000000000000000000000000000000000000000000000000008172b000000000000000000000000000000000000000000000000000000000008172c000000000000000000000000000000000000000000000000000000000008172d000000000000000000000000000000000000000000000000000000000008172e000000000000000000000000000000000000000000000000000000000008172f00000000000000000000000000000000000000000000000000000000000817300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000c100000000000000000000000000000000000000000000000000000000000000c100100000000000000000000000000000000000000000000000000000000000c100200000000000000000000000000000000000000000000000000000000000c100300000000000000000000000000000000000000000000000000000000000c100400000000000000000000000000000000000000000000000000000000000c100500000000000000000000000000000000000000000000000000000000000c100600000000000000000000000000000000000000000000000000000000000c100700000000000000000000000000000000000000000000000000000000000c100800000000000000000000000000000000000000000000000000000000000c100900000000000000000000000000000000000000000000000000000000000c100a00000000000000000000000000000000000000000000000000000000000c100b00000000000000000000000000000000000000000000000000000000000c100c00000000000000000000000000000000000000000000000000000000000c100d00000000000000000000000000000000000000000000000000000000000c100e00000000000000000000000000000000000000000000000000000000000c100f00000000000000000000000000000000000000000000000000000000000c101000000000000000000000000000000000000000000000000000000000000c101100000000000000000000000000000000000000000000000000000000000c101200000000000000000000000000000000000000000000000000000000000c101300000000000000000000000000000000000000000000000000000000000c101400000000000000000000000000000000000000000000000000000000000c101500000000000000000000000000000000000000000000000000000000000c101600000000000000000000000000000000000000000000000000000000000c101700000000000000000000000000000000000000000000000000000000000c101800000000000000000000000000000000000000000000000000000000000c101900000000000000000000000000000000000000000000000000000000000c101a00000000000000000000000000000000000000000000000000000000000c101b00000000000000000000000000000000000000000000000000000000000c101c00000000000000000000000000000000000000000000000000000000000c101d00000000000000000000000000000000000000000000000000000000000c101e00000000000000000000000000000000000000000000000000000000000c101f00000000000000000000000000000000000000000000000000000000000c102000000000000000000000000000000000000000000000000000000000000c102100000000000000000000000000000000000000000000000000000000000c102200000000000000000000000000000000000000000000000000000000000c102300000000000000000000000000000000000000000000000000000000000c102400000000000000000000000000000000000000000000000000000000000c102500000000000000000000000000000000000000000000000000000000000c102600000000000000000000000000000000000000000000000000000000000c102700000000000000000000000000000000000000000000000000000000000c102800000000000000000000000000000000000000000000000000000000000c102900000000000000000000000000000000000000000000000000000000000c102a00000000000000000000000000000000000000000000000000000000000c102b00000000000000000000000000000000000000000000000000000000000c102c00000000000000000000000000000000000000000000000000000000000c102d00000000000000000000000000000000000000000000000000000000000c102e00000000000000000000000000000000000000000000000000000000000c102f00000000000000000000000000000000000000000000000000000000000c103000000000000000000000000000000000000000000000000000000000000c103100000000000000000000000000000000000000000000000000000000000c103200000000000000000000000000000000000000000000000000000000000c103300000000000000000000000000000000000000000000000000000000000c103400000000000000000000000000000000000000000000000000000000000c103500000000000000000000000000000000000000000000000000000000000c103600000000000000000000000000000000000000000000000000000000000c103700000000000000000000000000000000000000000000000000000000000c103800000000000000000000000000000000000000000000000000000000000c103900000000000000000000000000000000000000000000000000000000000c103a00000000000000000000000000000000000000000000000000000000000c103b00000000000000000000000000000000000000000000000000000000000c103c00000000000000000000000000000000000000000000000000000000000c103d00000000000000000000000000000000000000000000000000000000000c103e00000000000000000000000000000000000000000000000000000000000c103f4000000000000000000000000000000000000000000000000000000000000c000100000000000000000000000000000000000000000000000000000000000c110000000000000000000000000000000000000000000000000000000000000c110100000000000000000000000000000000000000000000000000000000000c110200000000000000000000000000000000000000000000000000000000000c110300000000000000000000000000000000000000000000000000000000000c110400000000000000000000000000000000000000000000000000000000000c110500000000000000000000000000000000000000000000000000000000000c110600000000000000000000000000000000000000000000000000000000000c110700000000000000000000000000000000000000000000000000000000000c110800000000000000000000000000000000000000000000000000000000000c110900000000000000000000000000000000000000000000000000000000000c110a00000000000000000000000000000000000000000000000000000000000c110b00000000000000000000000000000000000000000000000000000000000c110c00000000000000000000000000000000000000000000000000000000000c110d00000000000000000000000000000000000000000000000000000000000c110e00000000000000000000000000000000000000000000000000000000000c110f00000000000000000000000000000000000000000000000000000000000c111000000000000000000000000000000000000000000000000000000000000c111100000000000000000000000000000000000000000000000000000000000c111200000000000000000000000000000000000000000000000000000000000c111300000000000000000000000000000000000000000000000000000000000c111400000000000000000000000000000000000000000000000000000000000c111500000000000000000000000000000000000000000000000000000000000c111600000000000000000000000000000000000000000000000000000000000c111700000000000000000000000000000000000000000000000000000000000c111800000000000000000000000000000000000000000000000000000000000c111900000000000000000000000000000000000000000000000000000000000c111a00000000000000000000000000000000000000000000000000000000000c111b00000000000000000000000000000000000000000000000000000000000c111c00000000000000000000000000000000000000000000000000000000000c111d00000000000000000000000000000000000000000000000000000000000c111e00000000000000000000000000000000000000000000000000000000000c111f00000000000000000000000000000000000000000000000000000000000c112000000000000000000000000000000000000000000000000000000000000c112100000000000000000000000000000000000000000000000000000000000c112200000000000000000000000000000000000000000000000000000000000c112300000000000000000000000000000000000000000000000000000000000c112400000000000000000000000000000000000000000000000000000000000c112500000000000000000000000000000000000000000000000000000000000c112600000000000000000000000000000000000000000000000000000000000c112700000000000000000000000000000000000000000000000000000000000c112800000000000000000000000000000000000000000000000000000000000c112900000000000000000000000000000000000000000000000000000000000c112a00000000000000000000000000000000000000000000000000000000000c112b00000000000000000000000000000000000000000000000000000000000c112c00000000000000000000000000000000000000000000000000000000000c112d00000000000000000000000000000000000000000000000000000000000c112e00000000000000000000000000000000000000000000000000000000000c112f00000000000000000000000000000000000000000000000000000000000c113000000000000000000000000000000000000000000000000000000000000c113100000000000000000000000000000000000000000000000000000000000c113200000000000000000000000000000000000000000000000000000000000c113300000000000000000000000000000000000000000000000000000000000c113400000000000000000000000000000000000000000000000000000000000c113500000000000000000000000000000000000000000000000000000000000c113600000000000000000000000000000000000000000000000000000000000c113700000000000000000000000000000000000000000000000000000000000c113800000000000000000000000000000000000000000000000000000000000c113900000000000000000000000000000000000000000000000000000000000c113a00000000000000000000000000000000000000000000000000000000000c113b00000000000000000000000000000000000000000000000000000000000c113c00000000000000000000000000000000000000000000000000000000000c113d00000000000000000000000000000000000000000000000000000000000c113e0800f8029be42ec3f25204907ca981fb71e5b357093eb5db10fc01ca98a4e4154c0030e13d351a5bf1d5a040e82a163ca57017f39162693f85c571e441e36d702d00a550ae0f39f977d9473d6de1be3232fc68ed0c4a601d53542148695102cfc9005580bc65e4bff9c8fffa64db02c0fa6af14d9d26fd962f4c5904cbd3ddec2500758c4a0d43dfec788b2f580877c4f473adec8f168ea24424f2600e4eb4916f00342602bf90d10f8ca8e582a894dcc4c02bb89fe458532e0c632b53bae54b4d00ca43ab78ab834337e9964d84a0674c9adabdca140539c5a6bc96e0ba9a51f6004ffbfd91be292a7c6a0e255e50caa156ac2d628b40ad2128c4ab63a92d8a1c4000000000000000000000000000000000000000000000000000000000000c200000000000000000000000000000000000000000000000000000000000000c200a00000000000000000000000000000000000000000000000000000000000c200100000000000000000000000000000000000000000000000000000000000c200b00000000000000000000000000000000000000000000000000000000000c200200000000000000000000000000000000000000000000000000000000000c200c00000000000000000000000000000000000000000000000000000000000c200300000000000000000000000000000000000000000000000000000000000c200d00000000000000000000000000000000000000000000000000000000000c200400000000000000000000000000000000000000000000000000000000000c200e00000000000000000000000000000000000000000000000000000000000c200500000000000000000000000000000000000000000000000000000000000c200f00000000000000000000000000000000000000000000000000000000000c200600000000000000000000000000000000000000000000000000000000000c201000000000000000000000000000000000000000000000000000000000000c200700000000000000000000000000000000000000000000000000000000000c201100000000000000000000000000000000000000000000000000000000000c200800000000000000000000000000000000000000000000000000000000000c201200000000000000000000000000000000000000000000000000000000000c200900000000000000000000000000000000000000000000000000000000000c201300000000000000000000000000000000000000000000000000000000000c200a00000000000000000000000000000000000000000000000000000000000c201400000000000000000000000000000000000000000000000000000000000c200b00000000000000000000000000000000000000000000000000000000000c201500000000000000000000000000000000000000000000000000000000000c200c00000000000000000000000000000000000000000000000000000000000c201600000000000000000000000000000000000000000000000000000000000c200d00000000000000000000000000000000000000000000000000000000000c201700000000000000000000000000000000000000000000000000000000000c200e00000000000000000000000000000000000000000000000000000000000c201800000000000000000000000000000000000000000000000000000000000c200f00000000000000000000000000000000000000000000000000000000000c201900000000000000000000000000000000000000000000000000000000000c201000000000000000000000000000000000000000000000000000000000000c201a00000000000000000000000000000000000000000000000000000000000c201100000000000000000000000000000000000000000000000000000000000c201b00000000000000000000000000000000000000000000000000000000000c201200000000000000000000000000000000000000000000000000000000000c201c00000000000000000000000000000000000000000000000000000000000c201300000000000000000000000000000000000000000000000000000000000c201d00000000000000000000000000000000000000000000000000000000000c201400000000000000000000000000000000000000000000000000000000000c201e00000000000000000000000000000000000000000000000000000000000c201500000000000000000000000000000000000000000000000000000000000c201f00000000000000000000000000000000000000000000000000000000000c201600000000000000000000000000000000000000000000000000000000000c202000000000000000000000000000000000000000000000000000000000000c201700000000000000000000000000000000000000000000000000000000000c202100000000000000000000000000000000000000000000000000000000000c201800000000000000000000000000000000000000000000000000000000000c202200000000000000000000000000000000000000000000000000000000000c201900000000000000000000000000000000000000000000000000000000000c202300000000000000000000000000000000000000000000000000000000000c201a00000000000000000000000000000000000000000000000000000000000c202400000000000000000000000000000000000000000000000000000000000c201b00000000000000000000000000000000000000000000000000000000000c202500000000000000000000000000000000000000000000000000000000000c201c00000000000000000000000000000000000000000000000000000000000c202600000000000000000000000000000000000000000000000000000000000c201d00000000000000000000000000000000000000000000000000000000000c202700000000000000000000000000000000000000000000000000000000000c201e00000000000000000000000000000000000000000000000000000000000c202800000000000000000000000000000000000000000000000000000000000c201f00000000000000000000000000000000000000000000000000000000000c202900000000000000000000000000000000000000000000000000000000000c202000000000000000000000000000000000000000000000000000000000000c202a00000000000000000000000000000000000000000000000000000000000c202100000000000000000000000000000000000000000000000000000000000c202b00000000000000000000000000000000000000000000000000000000000c202200000000000000000000000000000000000000000000000000000000000c202c00000000000000000000000000000000000000000000000000000000000c202300000000000000000000000000000000000000000000000000000000000c202d00000000000000000000000000000000000000000000000000000000000c202400000000000000000000000000000000000000000000000000000000000c202e00000000000000000000000000000000000000000000000000000000000c202500000000000000000000000000000000000000000000000000000000000c202f00000000000000000000000000000000000000000000000000000000000c202600000000000000000000000000000000000000000000000000000000000c203000000000000000000000000000000000000000000000000000000000000c202700000000000000000000000000000000000000000000000000000000000c203100000000000000000000000000000000000000000000000000000000000c202800000000000000000000000000000000000000000000000000000000000c203200000000000000000000000000000000000000000000000000000000000c202900000000000000000000000000000000000000000000000000000000000c203300000000000000000000000000000000000000000000000000000000000c202a00000000000000000000000000000000000000000000000000000000000c203400000000000000000000000000000000000000000000000000000000000c202b00000000000000000000000000000000000000000000000000000000000c203500000000000000000000000000000000000000000000000000000000000c202c00000000000000000000000000000000000000000000000000000000000c203600000000000000000000000000000000000000000000000000000000000c202d00000000000000000000000000000000000000000000000000000000000c203700000000000000000000000000000000000000000000000000000000000c202e00000000000000000000000000000000000000000000000000000000000c203800000000000000000000000000000000000000000000000000000000000c202f00000000000000000000000000000000000000000000000000000000000c203900000000000000000000000000000000000000000000000000000000000c203000000000000000000000000000000000000000000000000000000000000c203a00000000000000000000000000000000000000000000000000000000000c203100000000000000000000000000000000000000000000000000000000000c203b00000000000000000000000000000000000000000000000000000000000c203200000000000000000000000000000000000000000000000000000000000c203c00000000000000000000000000000000000000000000000000000000000c203300000000000000000000000000000000000000000000000000000000000c203d00000000000000000000000000000000000000000000000000000000000c203400000000000000000000000000000000000000000000000000000000000c203e00000000000000000000000000000000000000000000000000000000000c203500000000000000000000000000000000000000000000000000000000000c203f00000000000000000000000000000000000000000000000000000000000c203600000000000000000000000000000000000000000000000000000000000c204000000000000000000000000000000000000000000000000000000000000c203700000000000000000000000000000000000000000000000000000000000c204100000000000000000000000000000000000000000000000000000000000c203800000000000000000000000000000000000000000000000000000000000c204200000000000000000000000000000000000000000000000000000000000c203900000000000000000000000000000000000000000000000000000000000c204300000000000000000000000000000000000000000000000000000000000c203a00000000000000000000000000000000000000000000000000000000000c204400000000000000000000000000000000000000000000000000000000000c203b00000000000000000000000000000000000000000000000000000000000c204500000000000000000000000000000000000000000000000000000000000c203c00000000000000000000000000000000000000000000000000000000000c204600000000000000000000000000000000000000000000000000000000000c203d00000000000000000000000000000000000000000000000000000000000c204700000000000000000000000000000000000000000000000000000000000c203e00000000000000000000000000000000000000000000000000000000000c204800000000000000000000000000000000000000000000000000000000000c203f00000000000000000000000000000000000000000000000000000000000c20492000000000000000000000000000000000000000000000000000000000000c170000000000000000000000000000000000000000000000000000000000000c170100000000000000000000000000000000000000000000000000000000000c170200000000000000000000000000000000000000000000000000000000000c170300000000000000000000000000000000000000000000000000000000000c170400000000000000000000000000000000000000000000000000000000000c170500000000000000000000000000000000000000000000000000000000000c170600000000000000000000000000000000000000000000000000000000000c170700000000000000000000000000000000000000000000000000000000000c170800000000000000000000000000000000000000000000000000000000000c170900000000000000000000000000000000000000000000000000000000000c170a00000000000000000000000000000000000000000000000000000000000c170b00000000000000000000000000000000000000000000000000000000000c170c00000000000000000000000000000000000000000000000000000000000c170d00000000000000000000000000000000000000000000000000000000000c170e00000000000000000000000000000000000000000000000000000000000c170f00000000000000000000000000000000000000000000000000000000000c171000000000000000000000000000000000000000000000000000000000000c171100000000000000000000000000000000000000000000000000000000000c170100000000000000000000000000000000000000000000000000000000000c170200000000000000000000000000000000000000000000000000000000000c170300000000000000000000000000000000000000000000000000000000000c170400000000000000000000000000000000000000000000000000000000000c170500000000000000000000000000000000000000000000000000000000000c170600000000000000000000000000000000000000000000000000000000000c170700000000000000000000000000000000000000000000000000000000000c170800000000000000000000000000000000000000000000000000000000000c170900000000000000000000000000000000000000000000000000000000000c170a00000000000000000000000000000000000000000000000000000000000c170b00000000000000000000000000000000000000000000000000000000000c170c00000000000000000000000000000000000000000000000000000000000c170d00000000000000000000000000000000000000000000000000000000000c170e00000000000000000000000000000000000000000000000000000000000c170f00000000000000000000000000000000000000000000000000000000000c171000000000000000000000000000000000000000000000000000000000000c171100000000000000000000000000000000000000000000000000000000000c171200000000000000000000000000000000000000000000000000000000000c170200000000000000000000000000000000000000000000000000000000000c170300000000000000000000000000000000000000000000000000000000000c170400000000000000000000000000000000000000000000000000000000000c170500000000000000000000000000000000000000000000000000000000000c170600000000000000000000000000000000000000000000000000000000000c170700000000000000000000000000000000000000000000000000000000000c170800000000000000000000000000000000000000000000000000000000000c170900000000000000000000000000000000000000000000000000000000000c170a00000000000000000000000000000000000000000000000000000000000c170b00000000000000000000000000000000000000000000000000000000000c170c00000000000000000000000000000000000000000000000000000000000c170d00000000000000000000000000000000000000000000000000000000000c170e00000000000000000000000000000000000000000000000000000000000c170f00000000000000000000000000000000000000000000000000000000000c171000000000000000000000000000000000000000000000000000000000000c171100000000000000000000000000000000000000000000000000000000000c171200000000000000000000000000000000000000000000000000000000000c171300000000000000000000000000000000000000000000000000000000000c170300000000000000000000000000000000000000000000000000000000000c170400000000000000000000000000000000000000000000000000000000000c170500000000000000000000000000000000000000000000000000000000000c170600000000000000000000000000000000000000000000000000000000000c170700000000000000000000000000000000000000000000000000000000000c170800000000000000000000000000000000000000000000000000000000000c170900000000000000000000000000000000000000000000000000000000000c170a00000000000000000000000000000000000000000000000000000000000c170b00000000000000000000000000000000000000000000000000000000000c170c00000000000000000000000000000000000000000000000000000000000c170d00000000000000000000000000000000000000000000000000000000000c170e00000000000000000000000000000000000000000000000000000000000c170f00000000000000000000000000000000000000000000000000000000000c171000000000000000000000000000000000000000000000000000000000000c171100000000000000000000000000000000000000000000000000000000000c171200000000000000000000000000000000000000000000000000000000000c171300000000000000000000000000000000000000000000000000000000000c171400000000000000000000000000000000000000000000000000000000000c170400000000000000000000000000000000000000000000000000000000000c170500000000000000000000000000000000000000000000000000000000000c170600000000000000000000000000000000000000000000000000000000000c170700000000000000000000000000000000000000000000000000000000000c170800000000000000000000000000000000000000000000000000000000000c170900000000000000000000000000000000000000000000000000000000000c170a00000000000000000000000000000000000000000000000000000000000c170b00000000000000000000000000000000000000000000000000000000000c170c00000000000000000000000000000000000000000000000000000000000c170d00000000000000000000000000000000000000000000000000000000000c170e00000000000000000000000000000000000000000000000000000000000c170f00000000000000000000000000000000000000000000000000000000000c171000000000000000000000000000000000000000000000000000000000000c171100000000000000000000000000000000000000000000000000000000000c171200000000000000000000000000000000000000000000000000000000000c171300000000000000000000000000000000000000000000000000000000000c171400000000000000000000000000000000000000000000000000000000000c171500000000000000000000000000000000000000000000000000000000000c170500000000000000000000000000000000000000000000000000000000000c170600000000000000000000000000000000000000000000000000000000000c170700000000000000000000000000000000000000000000000000000000000c170800000000000000000000000000000000000000000000000000000000000c170900000000000000000000000000000000000000000000000000000000000c170a00000000000000000000000000000000000000000000000000000000000c170b00000000000000000000000000000000000000000000000000000000000c170c00000000000000000000000000000000000000000000000000000000000c170d00000000000000000000000000000000000000000000000000000000000c170e00000000000000000000000000000000000000000000000000000000000c170f00000000000000000000000000000000000000000000000000000000000c171000000000000000000000000000000000000000000000000000000000000c171100000000000000000000000000000000000000000000000000000000000c171200000000000000000000000000000000000000000000000000000000000c171300000000000000000000000000000000000000000000000000000000000c171400000000000000000000000000000000000000000000000000000000000c171500000000000000000000000000000000000000000000000000000000000c171600000000000000000000000000000000000000000000000000000000000c170600000000000000000000000000000000000000000000000000000000000c170700000000000000000000000000000000000000000000000000000000000c170800000000000000000000000000000000000000000000000000000000000c170900000000000000000000000000000000000000000000000000000000000c170a00000000000000000000000000000000000000000000000000000000000c170b00000000000000000000000000000000000000000000000000000000000c170c00000000000000000000000000000000000000000000000000000000000c170d00000000000000000000000000000000000000000000000000000000000c170e00000000000000000000000000000000000000000000000000000000000c170f00000000000000000000000000000000000000000000000000000000000c171000000000000000000000000000000000000000000000000000000000000c171100000000000000000000000000000000000000000000000000000000000c171200000000000000000000000000000000000000000000000000000000000c171300000000000000000000000000000000000000000000000000000000000c171400000000000000000000000000000000000000000000000000000000000c171500000000000000000000000000000000000000000000000000000000000c171600000000000000000000000000000000000000000000000000000000000c171700000000000000000000000000000000000000000000000000000000000c170700000000000000000000000000000000000000000000000000000000000c170800000000000000000000000000000000000000000000000000000000000c170900000000000000000000000000000000000000000000000000000000000c170a00000000000000000000000000000000000000000000000000000000000c170b00000000000000000000000000000000000000000000000000000000000c170c00000000000000000000000000000000000000000000000000000000000c170d00000000000000000000000000000000000000000000000000000000000c170e00000000000000000000000000000000000000000000000000000000000c170f00000000000000000000000000000000000000000000000000000000000c171000000000000000000000000000000000000000000000000000000000000c171100000000000000000000000000000000000000000000000000000000000c171200000000000000000000000000000000000000000000000000000000000c171300000000000000000000000000000000000000000000000000000000000c171400000000000000000000000000000000000000000000000000000000000c171500000000000000000000000000000000000000000000000000000000000c171600000000000000000000000000000000000000000000000000000000000c171700000000000000000000000000000000000000000000000000000000000c171800000000000000000000000000000000000000000000000000000000000c170800000000000000000000000000000000000000000000000000000000000c170900000000000000000000000000000000000000000000000000000000000c170a00000000000000000000000000000000000000000000000000000000000c170b00000000000000000000000000000000000000000000000000000000000c170c00000000000000000000000000000000000000000000000000000000000c170d00000000000000000000000000000000000000000000000000000000000c170e00000000000000000000000000000000000000000000000000000000000c170f00000000000000000000000000000000000000000000000000000000000c171000000000000000000000000000000000000000000000000000000000000c171100000000000000000000000000000000000000000000000000000000000c171200000000000000000000000000000000000000000000000000000000000c171300000000000000000000000000000000000000000000000000000000000c171400000000000000000000000000000000000000000000000000000000000c171500000000000000000000000000000000000000000000000000000000000c171600000000000000000000000000000000000000000000000000000000000c171700000000000000000000000000000000000000000000000000000000000c171800000000000000000000000000000000000000000000000000000000000c171900000000000000000000000000000000000000000000000000000000000c170900000000000000000000000000000000000000000000000000000000000c170a00000000000000000000000000000000000000000000000000000000000c170b00000000000000000000000000000000000000000000000000000000000c170c00000000000000000000000000000000000000000000000000000000000c170d00000000000000000000000000000000000000000000000000000000000c170e00000000000000000000000000000000000000000000000000000000000c170f00000000000000000000000000000000000000000000000000000000000c171000000000000000000000000000000000000000000000000000000000000c171100000000000000000000000000000000000000000000000000000000000c171200000000000000000000000000000000000000000000000000000000000c171300000000000000000000000000000000000000000000000000000000000c171400000000000000000000000000000000000000000000000000000000000c171500000000000000000000000000000000000000000000000000000000000c171600000000000000000000000000000000000000000000000000000000000c171700000000000000000000000000000000000000000000000000000000000c171800000000000000000000000000000000000000000000000000000000000c171900000000000000000000000000000000000000000000000000000000000c171a00000000000000000000000000000000000000000000000000000000000c170a00000000000000000000000000000000000000000000000000000000000c170b00000000000000000000000000000000000000000000000000000000000c170c00000000000000000000000000000000000000000000000000000000000c170d00000000000000000000000000000000000000000000000000000000000c170e00000000000000000000000000000000000000000000000000000000000c170f00000000000000000000000000000000000000000000000000000000000c171000000000000000000000000000000000000000000000000000000000000c171100000000000000000000000000000000000000000000000000000000000c171200000000000000000000000000000000000000000000000000000000000c171300000000000000000000000000000000000000000000000000000000000c171400000000000000000000000000000000000000000000000000000000000c171500000000000000000000000000000000000000000000000000000000000c171600000000000000000000000000000000000000000000000000000000000c171700000000000000000000000000000000000000000000000000000000000c171800000000000000000000000000000000000000000000000000000000000c171900000000000000000000000000000000000000000000000000000000000c171a00000000000000000000000000000000000000000000000000000000000c171b00000000000000000000000000000000000000000000000000000000000c170b00000000000000000000000000000000000000000000000000000000000c170c00000000000000000000000000000000000000000000000000000000000c170d00000000000000000000000000000000000000000000000000000000000c170e00000000000000000000000000000000000000000000000000000000000c170f00000000000000000000000000000000000000000000000000000000000c171000000000000000000000000000000000000000000000000000000000000c171100000000000000000000000000000000000000000000000000000000000c171200000000000000000000000000000000000000000000000000000000000c171300000000000000000000000000000000000000000000000000000000000c171400000000000000000000000000000000000000000000000000000000000c171500000000000000000000000000000000000000000000000000000000000c171600000000000000000000000000000000000000000000000000000000000c171700000000000000000000000000000000000000000000000000000000000c171800000000000000000000000000000000000000000000000000000000000c171900000000000000000000000000000000000000000000000000000000000c171a00000000000000000000000000000000000000000000000000000000000c171b00000000000000000000000000000000000000000000000000000000000c171c00000000000000000000000000000000000000000000000000000000000c170c00000000000000000000000000000000000000000000000000000000000c170d00000000000000000000000000000000000000000000000000000000000c170e00000000000000000000000000000000000000000000000000000000000c170f00000000000000000000000000000000000000000000000000000000000c171000000000000000000000000000000000000000000000000000000000000c171100000000000000000000000000000000000000000000000000000000000c171200000000000000000000000000000000000000000000000000000000000c171300000000000000000000000000000000000000000000000000000000000c171400000000000000000000000000000000000000000000000000000000000c171500000000000000000000000000000000000000000000000000000000000c171600000000000000000000000000000000000000000000000000000000000c171700000000000000000000000000000000000000000000000000000000000c171800000000000000000000000000000000000000000000000000000000000c171900000000000000000000000000000000000000000000000000000000000c171a00000000000000000000000000000000000000000000000000000000000c171b00000000000000000000000000000000000000000000000000000000000c171c00000000000000000000000000000000000000000000000000000000000c171d00000000000000000000000000000000000000000000000000000000000c170d00000000000000000000000000000000000000000000000000000000000c170e00000000000000000000000000000000000000000000000000000000000c170f00000000000000000000000000000000000000000000000000000000000c171000000000000000000000000000000000000000000000000000000000000c171100000000000000000000000000000000000000000000000000000000000c171200000000000000000000000000000000000000000000000000000000000c171300000000000000000000000000000000000000000000000000000000000c171400000000000000000000000000000000000000000000000000000000000c171500000000000000000000000000000000000000000000000000000000000c171600000000000000000000000000000000000000000000000000000000000c171700000000000000000000000000000000000000000000000000000000000c171800000000000000000000000000000000000000000000000000000000000c171900000000000000000000000000000000000000000000000000000000000c171a00000000000000000000000000000000000000000000000000000000000c171b00000000000000000000000000000000000000000000000000000000000c171c00000000000000000000000000000000000000000000000000000000000c171d00000000000000000000000000000000000000000000000000000000000c171e00000000000000000000000000000000000000000000000000000000000c170e00000000000000000000000000000000000000000000000000000000000c170f00000000000000000000000000000000000000000000000000000000000c171000000000000000000000000000000000000000000000000000000000000c171100000000000000000000000000000000000000000000000000000000000c171200000000000000000000000000000000000000000000000000000000000c171300000000000000000000000000000000000000000000000000000000000c171400000000000000000000000000000000000000000000000000000000000c171500000000000000000000000000000000000000000000000000000000000c171600000000000000000000000000000000000000000000000000000000000c171700000000000000000000000000000000000000000000000000000000000c171800000000000000000000000000000000000000000000000000000000000c171900000000000000000000000000000000000000000000000000000000000c171a00000000000000000000000000000000000000000000000000000000000c171b00000000000000000000000000000000000000000000000000000000000c171c00000000000000000000000000000000000000000000000000000000000c171d00000000000000000000000000000000000000000000000000000000000c171e00000000000000000000000000000000000000000000000000000000000c171f00000000000000000000000000000000000000000000000000000000000c170f00000000000000000000000000000000000000000000000000000000000c171000000000000000000000000000000000000000000000000000000000000c171100000000000000000000000000000000000000000000000000000000000c171200000000000000000000000000000000000000000000000000000000000c171300000000000000000000000000000000000000000000000000000000000c171400000000000000000000000000000000000000000000000000000000000c171500000000000000000000000000000000000000000000000000000000000c171600000000000000000000000000000000000000000000000000000000000c171700000000000000000000000000000000000000000000000000000000000c171800000000000000000000000000000000000000000000000000000000000c171900000000000000000000000000000000000000000000000000000000000c171a00000000000000000000000000000000000000000000000000000000000c171b00000000000000000000000000000000000000000000000000000000000c171c00000000000000000000000000000000000000000000000000000000000c171d00000000000000000000000000000000000000000000000000000000000c171e00000000000000000000000000000000000000000000000000000000000c171f00000000000000000000000000000000000000000000000000000000000c172000000000000000000000000000000000000000000000000000000000000c171000000000000000000000000000000000000000000000000000000000000c171100000000000000000000000000000000000000000000000000000000000c171200000000000000000000000000000000000000000000000000000000000c171300000000000000000000000000000000000000000000000000000000000c171400000000000000000000000000000000000000000000000000000000000c171500000000000000000000000000000000000000000000000000000000000c171600000000000000000000000000000000000000000000000000000000000c171700000000000000000000000000000000000000000000000000000000000c171800000000000000000000000000000000000000000000000000000000000c171900000000000000000000000000000000000000000000000000000000000c171a00000000000000000000000000000000000000000000000000000000000c171b00000000000000000000000000000000000000000000000000000000000c171c00000000000000000000000000000000000000000000000000000000000c171d00000000000000000000000000000000000000000000000000000000000c171e00000000000000000000000000000000000000000000000000000000000c171f00000000000000000000000000000000000000000000000000000000000c172000000000000000000000000000000000000000000000000000000000000c172100000000000000000000000000000000000000000000000000000000000c171100000000000000000000000000000000000000000000000000000000000c171200000000000000000000000000000000000000000000000000000000000c171300000000000000000000000000000000000000000000000000000000000c171400000000000000000000000000000000000000000000000000000000000c171500000000000000000000000000000000000000000000000000000000000c171600000000000000000000000000000000000000000000000000000000000c171700000000000000000000000000000000000000000000000000000000000c171800000000000000000000000000000000000000000000000000000000000c171900000000000000000000000000000000000000000000000000000000000c171a00000000000000000000000000000000000000000000000000000000000c171b00000000000000000000000000000000000000000000000000000000000c171c00000000000000000000000000000000000000000000000000000000000c171d00000000000000000000000000000000000000000000000000000000000c171e00000000000000000000000000000000000000000000000000000000000c171f00000000000000000000000000000000000000000000000000000000000c172000000000000000000000000000000000000000000000000000000000000c172100000000000000000000000000000000000000000000000000000000000c172200000000000000000000000000000000000000000000000000000000000c171200000000000000000000000000000000000000000000000000000000000c171300000000000000000000000000000000000000000000000000000000000c171400000000000000000000000000000000000000000000000000000000000c171500000000000000000000000000000000000000000000000000000000000c171600000000000000000000000000000000000000000000000000000000000c171700000000000000000000000000000000000000000000000000000000000c171800000000000000000000000000000000000000000000000000000000000c171900000000000000000000000000000000000000000000000000000000000c171a00000000000000000000000000000000000000000000000000000000000c171b00000000000000000000000000000000000000000000000000000000000c171c00000000000000000000000000000000000000000000000000000000000c171d00000000000000000000000000000000000000000000000000000000000c171e00000000000000000000000000000000000000000000000000000000000c171f00000000000000000000000000000000000000000000000000000000000c172000000000000000000000000000000000000000000000000000000000000c172100000000000000000000000000000000000000000000000000000000000c172200000000000000000000000000000000000000000000000000000000000c172300000000000000000000000000000000000000000000000000000000000c171300000000000000000000000000000000000000000000000000000000000c171400000000000000000000000000000000000000000000000000000000000c171500000000000000000000000000000000000000000000000000000000000c171600000000000000000000000000000000000000000000000000000000000c171700000000000000000000000000000000000000000000000000000000000c171800000000000000000000000000000000000000000000000000000000000c171900000000000000000000000000000000000000000000000000000000000c171a00000000000000000000000000000000000000000000000000000000000c171b00000000000000000000000000000000000000000000000000000000000c171c00000000000000000000000000000000000000000000000000000000000c171d00000000000000000000000000000000000000000000000000000000000c171e00000000000000000000000000000000000000000000000000000000000c171f00000000000000000000000000000000000000000000000000000000000c172000000000000000000000000000000000000000000000000000000000000c172100000000000000000000000000000000000000000000000000000000000c172200000000000000000000000000000000000000000000000000000000000c172300000000000000000000000000000000000000000000000000000000000c172400000000000000000000000000000000000000000000000000000000000c171400000000000000000000000000000000000000000000000000000000000c171500000000000000000000000000000000000000000000000000000000000c171600000000000000000000000000000000000000000000000000000000000c171700000000000000000000000000000000000000000000000000000000000c171800000000000000000000000000000000000000000000000000000000000c171900000000000000000000000000000000000000000000000000000000000c171a00000000000000000000000000000000000000000000000000000000000c171b00000000000000000000000000000000000000000000000000000000000c171c00000000000000000000000000000000000000000000000000000000000c171d00000000000000000000000000000000000000000000000000000000000c171e00000000000000000000000000000000000000000000000000000000000c171f00000000000000000000000000000000000000000000000000000000000c172000000000000000000000000000000000000000000000000000000000000c172100000000000000000000000000000000000000000000000000000000000c172200000000000000000000000000000000000000000000000000000000000c172300000000000000000000000000000000000000000000000000000000000c172400000000000000000000000000000000000000000000000000000000000c172500000000000000000000000000000000000000000000000000000000000c171500000000000000000000000000000000000000000000000000000000000c171600000000000000000000000000000000000000000000000000000000000c171700000000000000000000000000000000000000000000000000000000000c171800000000000000000000000000000000000000000000000000000000000c171900000000000000000000000000000000000000000000000000000000000c171a00000000000000000000000000000000000000000000000000000000000c171b00000000000000000000000000000000000000000000000000000000000c171c00000000000000000000000000000000000000000000000000000000000c171d00000000000000000000000000000000000000000000000000000000000c171e00000000000000000000000000000000000000000000000000000000000c171f00000000000000000000000000000000000000000000000000000000000c172000000000000000000000000000000000000000000000000000000000000c172100000000000000000000000000000000000000000000000000000000000c172200000000000000000000000000000000000000000000000000000000000c172300000000000000000000000000000000000000000000000000000000000c172400000000000000000000000000000000000000000000000000000000000c172500000000000000000000000000000000000000000000000000000000000c172600000000000000000000000000000000000000000000000000000000000c171600000000000000000000000000000000000000000000000000000000000c171700000000000000000000000000000000000000000000000000000000000c171800000000000000000000000000000000000000000000000000000000000c171900000000000000000000000000000000000000000000000000000000000c171a00000000000000000000000000000000000000000000000000000000000c171b00000000000000000000000000000000000000000000000000000000000c171c00000000000000000000000000000000000000000000000000000000000c171d00000000000000000000000000000000000000000000000000000000000c171e00000000000000000000000000000000000000000000000000000000000c171f00000000000000000000000000000000000000000000000000000000000c172000000000000000000000000000000000000000000000000000000000000c172100000000000000000000000000000000000000000000000000000000000c172200000000000000000000000000000000000000000000000000000000000c172300000000000000000000000000000000000000000000000000000000000c172400000000000000000000000000000000000000000000000000000000000c172500000000000000000000000000000000000000000000000000000000000c172600000000000000000000000000000000000000000000000000000000000c172700000000000000000000000000000000000000000000000000000000000c171700000000000000000000000000000000000000000000000000000000000c171800000000000000000000000000000000000000000000000000000000000c171900000000000000000000000000000000000000000000000000000000000c171a00000000000000000000000000000000000000000000000000000000000c171b00000000000000000000000000000000000000000000000000000000000c171c00000000000000000000000000000000000000000000000000000000000c171d00000000000000000000000000000000000000000000000000000000000c171e00000000000000000000000000000000000000000000000000000000000c171f00000000000000000000000000000000000000000000000000000000000c172000000000000000000000000000000000000000000000000000000000000c172100000000000000000000000000000000000000000000000000000000000c172200000000000000000000000000000000000000000000000000000000000c172300000000000000000000000000000000000000000000000000000000000c172400000000000000000000000000000000000000000000000000000000000c172500000000000000000000000000000000000000000000000000000000000c172600000000000000000000000000000000000000000000000000000000000c172700000000000000000000000000000000000000000000000000000000000c172800000000000000000000000000000000000000000000000000000000000c171800000000000000000000000000000000000000000000000000000000000c171900000000000000000000000000000000000000000000000000000000000c171a00000000000000000000000000000000000000000000000000000000000c171b00000000000000000000000000000000000000000000000000000000000c171c00000000000000000000000000000000000000000000000000000000000c171d00000000000000000000000000000000000000000000000000000000000c171e00000000000000000000000000000000000000000000000000000000000c171f00000000000000000000000000000000000000000000000000000000000c172000000000000000000000000000000000000000000000000000000000000c172100000000000000000000000000000000000000000000000000000000000c172200000000000000000000000000000000000000000000000000000000000c172300000000000000000000000000000000000000000000000000000000000c172400000000000000000000000000000000000000000000000000000000000c172500000000000000000000000000000000000000000000000000000000000c172600000000000000000000000000000000000000000000000000000000000c172700000000000000000000000000000000000000000000000000000000000c172800000000000000000000000000000000000000000000000000000000000c172900000000000000000000000000000000000000000000000000000000000c171900000000000000000000000000000000000000000000000000000000000c171a00000000000000000000000000000000000000000000000000000000000c171b00000000000000000000000000000000000000000000000000000000000c171c00000000000000000000000000000000000000000000000000000000000c171d00000000000000000000000000000000000000000000000000000000000c171e00000000000000000000000000000000000000000000000000000000000c171f00000000000000000000000000000000000000000000000000000000000c172000000000000000000000000000000000000000000000000000000000000c172100000000000000000000000000000000000000000000000000000000000c172200000000000000000000000000000000000000000000000000000000000c172300000000000000000000000000000000000000000000000000000000000c172400000000000000000000000000000000000000000000000000000000000c172500000000000000000000000000000000000000000000000000000000000c172600000000000000000000000000000000000000000000000000000000000c172700000000000000000000000000000000000000000000000000000000000c172800000000000000000000000000000000000000000000000000000000000c172900000000000000000000000000000000000000000000000000000000000c172a00000000000000000000000000000000000000000000000000000000000c171a00000000000000000000000000000000000000000000000000000000000c171b00000000000000000000000000000000000000000000000000000000000c171c00000000000000000000000000000000000000000000000000000000000c171d00000000000000000000000000000000000000000000000000000000000c171e00000000000000000000000000000000000000000000000000000000000c171f00000000000000000000000000000000000000000000000000000000000c172000000000000000000000000000000000000000000000000000000000000c172100000000000000000000000000000000000000000000000000000000000c172200000000000000000000000000000000000000000000000000000000000c172300000000000000000000000000000000000000000000000000000000000c172400000000000000000000000000000000000000000000000000000000000c172500000000000000000000000000000000000000000000000000000000000c172600000000000000000000000000000000000000000000000000000000000c172700000000000000000000000000000000000000000000000000000000000c172800000000000000000000000000000000000000000000000000000000000c172900000000000000000000000000000000000000000000000000000000000c172a00000000000000000000000000000000000000000000000000000000000c172b00000000000000000000000000000000000000000000000000000000000c171b00000000000000000000000000000000000000000000000000000000000c171c00000000000000000000000000000000000000000000000000000000000c171d00000000000000000000000000000000000000000000000000000000000c171e00000000000000000000000000000000000000000000000000000000000c171f00000000000000000000000000000000000000000000000000000000000c172000000000000000000000000000000000000000000000000000000000000c172100000000000000000000000000000000000000000000000000000000000c172200000000000000000000000000000000000000000000000000000000000c172300000000000000000000000000000000000000000000000000000000000c172400000000000000000000000000000000000000000000000000000000000c172500000000000000000000000000000000000000000000000000000000000c172600000000000000000000000000000000000000000000000000000000000c172700000000000000000000000000000000000000000000000000000000000c172800000000000000000000000000000000000000000000000000000000000c172900000000000000000000000000000000000000000000000000000000000c172a00000000000000000000000000000000000000000000000000000000000c172b00000000000000000000000000000000000000000000000000000000000c172c00000000000000000000000000000000000000000000000000000000000c171c00000000000000000000000000000000000000000000000000000000000c171d00000000000000000000000000000000000000000000000000000000000c171e00000000000000000000000000000000000000000000000000000000000c171f00000000000000000000000000000000000000000000000000000000000c172000000000000000000000000000000000000000000000000000000000000c172100000000000000000000000000000000000000000000000000000000000c172200000000000000000000000000000000000000000000000000000000000c172300000000000000000000000000000000000000000000000000000000000c172400000000000000000000000000000000000000000000000000000000000c172500000000000000000000000000000000000000000000000000000000000c172600000000000000000000000000000000000000000000000000000000000c172700000000000000000000000000000000000000000000000000000000000c172800000000000000000000000000000000000000000000000000000000000c172900000000000000000000000000000000000000000000000000000000000c172a00000000000000000000000000000000000000000000000000000000000c172b00000000000000000000000000000000000000000000000000000000000c172c00000000000000000000000000000000000000000000000000000000000c172d00000000000000000000000000000000000000000000000000000000000c171d00000000000000000000000000000000000000000000000000000000000c171e00000000000000000000000000000000000000000000000000000000000c171f00000000000000000000000000000000000000000000000000000000000c172000000000000000000000000000000000000000000000000000000000000c172100000000000000000000000000000000000000000000000000000000000c172200000000000000000000000000000000000000000000000000000000000c172300000000000000000000000000000000000000000000000000000000000c172400000000000000000000000000000000000000000000000000000000000c172500000000000000000000000000000000000000000000000000000000000c172600000000000000000000000000000000000000000000000000000000000c172700000000000000000000000000000000000000000000000000000000000c172800000000000000000000000000000000000000000000000000000000000c172900000000000000000000000000000000000000000000000000000000000c172a00000000000000000000000000000000000000000000000000000000000c172b00000000000000000000000000000000000000000000000000000000000c172c00000000000000000000000000000000000000000000000000000000000c172d00000000000000000000000000000000000000000000000000000000000c172e00000000000000000000000000000000000000000000000000000000000c171e00000000000000000000000000000000000000000000000000000000000c171f00000000000000000000000000000000000000000000000000000000000c172000000000000000000000000000000000000000000000000000000000000c172100000000000000000000000000000000000000000000000000000000000c172200000000000000000000000000000000000000000000000000000000000c172300000000000000000000000000000000000000000000000000000000000c172400000000000000000000000000000000000000000000000000000000000c172500000000000000000000000000000000000000000000000000000000000c172600000000000000000000000000000000000000000000000000000000000c172700000000000000000000000000000000000000000000000000000000000c172800000000000000000000000000000000000000000000000000000000000c172900000000000000000000000000000000000000000000000000000000000c172a00000000000000000000000000000000000000000000000000000000000c172b00000000000000000000000000000000000000000000000000000000000c172c00000000000000000000000000000000000000000000000000000000000c172d00000000000000000000000000000000000000000000000000000000000c172e00000000000000000000000000000000000000000000000000000000000c172f00000000000000000000000000000000000000000000000000000000000c171f00000000000000000000000000000000000000000000000000000000000c172000000000000000000000000000000000000000000000000000000000000c172100000000000000000000000000000000000000000000000000000000000c172200000000000000000000000000000000000000000000000000000000000c172300000000000000000000000000000000000000000000000000000000000c172400000000000000000000000000000000000000000000000000000000000c172500000000000000000000000000000000000000000000000000000000000c172600000000000000000000000000000000000000000000000000000000000c172700000000000000000000000000000000000000000000000000000000000c172800000000000000000000000000000000000000000000000000000000000c172900000000000000000000000000000000000000000000000000000000000c172a00000000000000000000000000000000000000000000000000000000000c172b00000000000000000000000000000000000000000000000000000000000c172c00000000000000000000000000000000000000000000000000000000000c172d00000000000000000000000000000000000000000000000000000000000c172e00000000000000000000000000000000000000000000000000000000000c172f00000000000000000000000000000000000000000000000000000000000c1730000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000101000000000000000000000000000000000000000000000000000000000000010100100000000000000000000000000000000000000000000000000000000001010020000000000000000000000000000000000000000000000000000000000101003000000000000000000000000000000000000000000000000000000000010100400000000000000000000000000000000000000000000000000000000001010050000000000000000000000000000000000000000000000000000000000101006000000000000000000000000000000000000000000000000000000000010100700000000000000000000000000000000000000000000000000000000001010080000000000000000000000000000000000000000000000000000000000101009000000000000000000000000000000000000000000000000000000000010100a000000000000000000000000000000000000000000000000000000000010100b000000000000000000000000000000000000000000000000000000000010100c000000000000000000000000000000000000000000000000000000000010100d000000000000000000000000000000000000000000000000000000000010100e000000000000000000000000000000000000000000000000000000000010100f0000000000000000000000000000000000000000000000000000000000101010000000000000000000000000000000000000000000000000000000000010101100000000000000000000000000000000000000000000000000000000001010120000000000000000000000000000000000000000000000000000000000101013000000000000000000000000000000000000000000000000000000000010101400000000000000000000000000000000000000000000000000000000001010150000000000000000000000000000000000000000000000000000000000101016000000000000000000000000000000000000000000000000000000000010101700000000000000000000000000000000000000000000000000000000001010180000000000000000000000000000000000000000000000000000000000101019000000000000000000000000000000000000000000000000000000000010101a000000000000000000000000000000000000000000000000000000000010101b000000000000000000000000000000000000000000000000000000000010101c000000000000000000000000000000000000000000000000000000000010101d000000000000000000000000000000000000000000000000000000000010101e000000000000000000000000000000000000000000000000000000000010101f0000000000000000000000000000000000000000000000000000000000101020000000000000000000000000000000000000000000000000000000000010102100000000000000000000000000000000000000000000000000000000001010220000000000000000000000000000000000000000000000000000000000101023000000000000000000000000000000000000000000000000000000000010102400000000000000000000000000000000000000000000000000000000001010250000000000000000000000000000000000000000000000000000000000101026000000000000000000000000000000000000000000000000000000000010102700000000000000000000000000000000000000000000000000000000001010280000000000000000000000000000000000000000000000000000000000101029000000000000000000000000000000000000000000000000000000000010102a000000000000000000000000000000000000000000000000000000000010102b000000000000000000000000000000000000000000000000000000000010102c000000000000000000000000000000000000000000000000000000000010102d000000000000000000000000000000000000000000000000000000000010102e000000000000000000000000000000000000000000000000000000000010102f0000000000000000000000000000000000000000000000000000000000101030000000000000000000000000000000000000000000000000000000000010103100000000000000000000000000000000000000000000000000000000001010320000000000000000000000000000000000000000000000000000000000101033000000000000000000000000000000000000000000000000000000000010103400000000000000000000000000000000000000000000000000000000001010350000000000000000000000000000000000000000000000000000000000101036000000000000000000000000000000000000000000000000000000000010103700000000000000000000000000000000000000000000000000000000001010380000000000000000000000000000000000000000000000000000000000101039000000000000000000000000000000000000000000000000000000000010103a000000000000000000000000000000000000000000000000000000000010103b000000000000000000000000000000000000000000000000000000000010103c000000000000000000000000000000000000000000000000000000000010103d000000000000000000000000000000000000000000000000000000000010103e000000000000000000000000000000000000000000000000000000000010103f4000000000000000000000000000000000000000000000000000000000001000010000000000000000000000000000000000000000000000000000000000101100000000000000000000000000000000000000000000000000000000000010110100000000000000000000000000000000000000000000000000000000001011020000000000000000000000000000000000000000000000000000000000101103000000000000000000000000000000000000000000000000000000000010110400000000000000000000000000000000000000000000000000000000001011050000000000000000000000000000000000000000000000000000000000101106000000000000000000000000000000000000000000000000000000000010110700000000000000000000000000000000000000000000000000000000001011080000000000000000000000000000000000000000000000000000000000101109000000000000000000000000000000000000000000000000000000000010110a000000000000000000000000000000000000000000000000000000000010110b000000000000000000000000000000000000000000000000000000000010110c000000000000000000000000000000000000000000000000000000000010110d000000000000000000000000000000000000000000000000000000000010110e000000000000000000000000000000000000000000000000000000000010110f0000000000000000000000000000000000000000000000000000000000101110000000000000000000000000000000000000000000000000000000000010111100000000000000000000000000000000000000000000000000000000001011120000000000000000000000000000000000000000000000000000000000101113000000000000000000000000000000000000000000000000000000000010111400000000000000000000000000000000000000000000000000000000001011150000000000000000000000000000000000000000000000000000000000101116000000000000000000000000000000000000000000000000000000000010111700000000000000000000000000000000000000000000000000000000001011180000000000000000000000000000000000000000000000000000000000101119000000000000000000000000000000000000000000000000000000000010111a000000000000000000000000000000000000000000000000000000000010111b000000000000000000000000000000000000000000000000000000000010111c000000000000000000000000000000000000000000000000000000000010111d000000000000000000000000000000000000000000000000000000000010111e000000000000000000000000000000000000000000000000000000000010111f0000000000000000000000000000000000000000000000000000000000101120000000000000000000000000000000000000000000000000000000000010112100000000000000000000000000000000000000000000000000000000001011220000000000000000000000000000000000000000000000000000000000101123000000000000000000000000000000000000000000000000000000000010112400000000000000000000000000000000000000000000000000000000001011250000000000000000000000000000000000000000000000000000000000101126000000000000000000000000000000000000000000000000000000000010112700000000000000000000000000000000000000000000000000000000001011280000000000000000000000000000000000000000000000000000000000101129000000000000000000000000000000000000000000000000000000000010112a000000000000000000000000000000000000000000000000000000000010112b000000000000000000000000000000000000000000000000000000000010112c000000000000000000000000000000000000000000000000000000000010112d000000000000000000000000000000000000000000000000000000000010112e000000000000000000000000000000000000000000000000000000000010112f0000000000000000000000000000000000000000000000000000000000101130000000000000000000000000000000000000000000000000000000000010113100000000000000000000000000000000000000000000000000000000001011320000000000000000000000000000000000000000000000000000000000101133000000000000000000000000000000000000000000000000000000000010113400000000000000000000000000000000000000000000000000000000001011350000000000000000000000000000000000000000000000000000000000101136000000000000000000000000000000000000000000000000000000000010113700000000000000000000000000000000000000000000000000000000001011380000000000000000000000000000000000000000000000000000000000101139000000000000000000000000000000000000000000000000000000000010113a000000000000000000000000000000000000000000000000000000000010113b000000000000000000000000000000000000000000000000000000000010113c000000000000000000000000000000000000000000000000000000000010113d000000000000000000000000000000000000000000000000000000000010113e080099145b6c0d32753835121f8b271186d01236948a4622ce78a98347fcfc98390085277a27c6acbd5ffc4c19cd65fc30056999e9bec36998f753132db0ff8e2300f3cf77a7261759ebd5f4149f6ad56746f4499cfcd4adf27a1d373f77da64d5009bc6e0e994a23cde8c95b90c1acc1b4a480c6599d1df2c3f9f6e76f3d1aff200d7a1c4a2700dacaaf07f1f0ff33837bdbabcf0b9ace17efabe0761708c4bb900dbeb8e96d14f21e57d5786b6d6ae7e5ddb1bb35935c0fb246d4bdbca62e02c00fbf12b5e0df6223b801088798e4e04d2a92ffe9a11639b7f0ce314e3412a8000d796e0724de03b796ba77069fcd6cf921e566f3aed15eb3e77258add74e9ff400000000000000000000000000000000000000000000000000000000000102000000000000000000000000000000000000000000000000000000000000010200a0000000000000000000000000000000000000000000000000000000000102001000000000000000000000000000000000000000000000000000000000010200b0000000000000000000000000000000000000000000000000000000000102002000000000000000000000000000000000000000000000000000000000010200c0000000000000000000000000000000000000000000000000000000000102003000000000000000000000000000000000000000000000000000000000010200d0000000000000000000000000000000000000000000000000000000000102004000000000000000000000000000000000000000000000000000000000010200e0000000000000000000000000000000000000000000000000000000000102005000000000000000000000000000000000000000000000000000000000010200f00000000000000000000000000000000000000000000000000000000001020060000000000000000000000000000000000000000000000000000000000102010000000000000000000000000000000000000000000000000000000000010200700000000000000000000000000000000000000000000000000000000001020110000000000000000000000000000000000000000000000000000000000102008000000000000000000000000000000000000000000000000000000000010201200000000000000000000000000000000000000000000000000000000001020090000000000000000000000000000000000000000000000000000000000102013000000000000000000000000000000000000000000000000000000000010200a0000000000000000000000000000000000000000000000000000000000102014000000000000000000000000000000000000000000000000000000000010200b0000000000000000000000000000000000000000000000000000000000102015000000000000000000000000000000000000000000000000000000000010200c0000000000000000000000000000000000000000000000000000000000102016000000000000000000000000000000000000000000000000000000000010200d0000000000000000000000000000000000000000000000000000000000102017000000000000000000000000000000000000000000000000000000000010200e0000000000000000000000000000000000000000000000000000000000102018000000000000000000000000000000000000000000000000000000000010200f00000000000000000000000000000000000000000000000000000000001020190000000000000000000000000000000000000000000000000000000000102010000000000000000000000000000000000000000000000000000000000010201a0000000000000000000000000000000000000000000000000000000000102011000000000000000000000000000000000000000000000000000000000010201b0000000000000000000000000000000000000000000000000000000000102012000000000000000000000000000000000000000000000000000000000010201c0000000000000000000000000000000000000000000000000000000000102013000000000000000000000000000000000000000000000000000000000010201d0000000000000000000000000000000000000000000000000000000000102014000000000000000000000000000000000000000000000000000000000010201e0000000000000000000000000000000000000000000000000000000000102015000000000000000000000000000000000000000000000000000000000010201f00000000000000000000000000000000000000000000000000000000001020160000000000000000000000000000000000000000000000000000000000102020000000000000000000000000000000000000000000000000000000000010201700000000000000000000000000000000000000000000000000000000001020210000000000000000000000000000000000000000000000000000000000102018000000000000000000000000000000000000000000000000000000000010202200000000000000000000000000000000000000000000000000000000001020190000000000000000000000000000000000000000000000000000000000102023000000000000000000000000000000000000000000000000000000000010201a0000000000000000000000000000000000000000000000000000000000102024000000000000000000000000000000000000000000000000000000000010201b0000000000000000000000000000000000000000000000000000000000102025000000000000000000000000000000000000000000000000000000000010201c0000000000000000000000000000000000000000000000000000000000102026000000000000000000000000000000000000000000000000000000000010201d0000000000000000000000000000000000000000000000000000000000102027000000000000000000000000000000000000000000000000000000000010201e0000000000000000000000000000000000000000000000000000000000102028000000000000000000000000000000000000000000000000000000000010201f00000000000000000000000000000000000000000000000000000000001020290000000000000000000000000000000000000000000000000000000000102020000000000000000000000000000000000000000000000000000000000010202a0000000000000000000000000000000000000000000000000000000000102021000000000000000000000000000000000000000000000000000000000010202b0000000000000000000000000000000000000000000000000000000000102022000000000000000000000000000000000000000000000000000000000010202c0000000000000000000000000000000000000000000000000000000000102023000000000000000000000000000000000000000000000000000000000010202d0000000000000000000000000000000000000000000000000000000000102024000000000000000000000000000000000000000000000000000000000010202e0000000000000000000000000000000000000000000000000000000000102025000000000000000000000000000000000000000000000000000000000010202f00000000000000000000000000000000000000000000000000000000001020260000000000000000000000000000000000000000000000000000000000102030000000000000000000000000000000000000000000000000000000000010202700000000000000000000000000000000000000000000000000000000001020310000000000000000000000000000000000000000000000000000000000102028000000000000000000000000000000000000000000000000000000000010203200000000000000000000000000000000000000000000000000000000001020290000000000000000000000000000000000000000000000000000000000102033000000000000000000000000000000000000000000000000000000000010202a0000000000000000000000000000000000000000000000000000000000102034000000000000000000000000000000000000000000000000000000000010202b0000000000000000000000000000000000000000000000000000000000102035000000000000000000000000000000000000000000000000000000000010202c0000000000000000000000000000000000000000000000000000000000102036000000000000000000000000000000000000000000000000000000000010202d0000000000000000000000000000000000000000000000000000000000102037000000000000000000000000000000000000000000000000000000000010202e0000000000000000000000000000000000000000000000000000000000102038000000000000000000000000000000000000000000000000000000000010202f00000000000000000000000000000000000000000000000000000000001020390000000000000000000000000000000000000000000000000000000000102030000000000000000000000000000000000000000000000000000000000010203a0000000000000000000000000000000000000000000000000000000000102031000000000000000000000000000000000000000000000000000000000010203b0000000000000000000000000000000000000000000000000000000000102032000000000000000000000000000000000000000000000000000000000010203c0000000000000000000000000000000000000000000000000000000000102033000000000000000000000000000000000000000000000000000000000010203d0000000000000000000000000000000000000000000000000000000000102034000000000000000000000000000000000000000000000000000000000010203e0000000000000000000000000000000000000000000000000000000000102035000000000000000000000000000000000000000000000000000000000010203f00000000000000000000000000000000000000000000000000000000001020360000000000000000000000000000000000000000000000000000000000102040000000000000000000000000000000000000000000000000000000000010203700000000000000000000000000000000000000000000000000000000001020410000000000000000000000000000000000000000000000000000000000102038000000000000000000000000000000000000000000000000000000000010204200000000000000000000000000000000000000000000000000000000001020390000000000000000000000000000000000000000000000000000000000102043000000000000000000000000000000000000000000000000000000000010203a0000000000000000000000000000000000000000000000000000000000102044000000000000000000000000000000000000000000000000000000000010203b0000000000000000000000000000000000000000000000000000000000102045000000000000000000000000000000000000000000000000000000000010203c0000000000000000000000000000000000000000000000000000000000102046000000000000000000000000000000000000000000000000000000000010203d0000000000000000000000000000000000000000000000000000000000102047000000000000000000000000000000000000000000000000000000000010203e0000000000000000000000000000000000000000000000000000000000102048000000000000000000000000000000000000000000000000000000000010203f0000000000000000000000000000000000000000000000000000000000102049200000000000000000000000000000000000000000000000000000000000101700000000000000000000000000000000000000000000000000000000000010170100000000000000000000000000000000000000000000000000000000001017020000000000000000000000000000000000000000000000000000000000101703000000000000000000000000000000000000000000000000000000000010170400000000000000000000000000000000000000000000000000000000001017050000000000000000000000000000000000000000000000000000000000101706000000000000000000000000000000000000000000000000000000000010170700000000000000000000000000000000000000000000000000000000001017080000000000000000000000000000000000000000000000000000000000101709000000000000000000000000000000000000000000000000000000000010170a000000000000000000000000000000000000000000000000000000000010170b000000000000000000000000000000000000000000000000000000000010170c000000000000000000000000000000000000000000000000000000000010170d000000000000000000000000000000000000000000000000000000000010170e000000000000000000000000000000000000000000000000000000000010170f00000000000000000000000000000000000000000000000000000000001017100000000000000000000000000000000000000000000000000000000000101711000000000000000000000000000000000000000000000000000000000010170100000000000000000000000000000000000000000000000000000000001017020000000000000000000000000000000000000000000000000000000000101703000000000000000000000000000000000000000000000000000000000010170400000000000000000000000000000000000000000000000000000000001017050000000000000000000000000000000000000000000000000000000000101706000000000000000000000000000000000000000000000000000000000010170700000000000000000000000000000000000000000000000000000000001017080000000000000000000000000000000000000000000000000000000000101709000000000000000000000000000000000000000000000000000000000010170a000000000000000000000000000000000000000000000000000000000010170b000000000000000000000000000000000000000000000000000000000010170c000000000000000000000000000000000000000000000000000000000010170d000000000000000000000000000000000000000000000000000000000010170e000000000000000000000000000000000000000000000000000000000010170f00000000000000000000000000000000000000000000000000000000001017100000000000000000000000000000000000000000000000000000000000101711000000000000000000000000000000000000000000000000000000000010171200000000000000000000000000000000000000000000000000000000001017020000000000000000000000000000000000000000000000000000000000101703000000000000000000000000000000000000000000000000000000000010170400000000000000000000000000000000000000000000000000000000001017050000000000000000000000000000000000000000000000000000000000101706000000000000000000000000000000000000000000000000000000000010170700000000000000000000000000000000000000000000000000000000001017080000000000000000000000000000000000000000000000000000000000101709000000000000000000000000000000000000000000000000000000000010170a000000000000000000000000000000000000000000000000000000000010170b000000000000000000000000000000000000000000000000000000000010170c000000000000000000000000000000000000000000000000000000000010170d000000000000000000000000000000000000000000000000000000000010170e000000000000000000000000000000000000000000000000000000000010170f00000000000000000000000000000000000000000000000000000000001017100000000000000000000000000000000000000000000000000000000000101711000000000000000000000000000000000000000000000000000000000010171200000000000000000000000000000000000000000000000000000000001017130000000000000000000000000000000000000000000000000000000000101703000000000000000000000000000000000000000000000000000000000010170400000000000000000000000000000000000000000000000000000000001017050000000000000000000000000000000000000000000000000000000000101706000000000000000000000000000000000000000000000000000000000010170700000000000000000000000000000000000000000000000000000000001017080000000000000000000000000000000000000000000000000000000000101709000000000000000000000000000000000000000000000000000000000010170a000000000000000000000000000000000000000000000000000000000010170b000000000000000000000000000000000000000000000000000000000010170c000000000000000000000000000000000000000000000000000000000010170d000000000000000000000000000000000000000000000000000000000010170e000000000000000000000000000000000000000000000000000000000010170f00000000000000000000000000000000000000000000000000000000001017100000000000000000000000000000000000000000000000000000000000101711000000000000000000000000000000000000000000000000000000000010171200000000000000000000000000000000000000000000000000000000001017130000000000000000000000000000000000000000000000000000000000101714000000000000000000000000000000000000000000000000000000000010170400000000000000000000000000000000000000000000000000000000001017050000000000000000000000000000000000000000000000000000000000101706000000000000000000000000000000000000000000000000000000000010170700000000000000000000000000000000000000000000000000000000001017080000000000000000000000000000000000000000000000000000000000101709000000000000000000000000000000000000000000000000000000000010170a000000000000000000000000000000000000000000000000000000000010170b000000000000000000000000000000000000000000000000000000000010170c000000000000000000000000000000000000000000000000000000000010170d000000000000000000000000000000000000000000000000000000000010170e000000000000000000000000000000000000000000000000000000000010170f00000000000000000000000000000000000000000000000000000000001017100000000000000000000000000000000000000000000000000000000000101711000000000000000000000000000000000000000000000000000000000010171200000000000000000000000000000000000000000000000000000000001017130000000000000000000000000000000000000000000000000000000000101714000000000000000000000000000000000000000000000000000000000010171500000000000000000000000000000000000000000000000000000000001017050000000000000000000000000000000000000000000000000000000000101706000000000000000000000000000000000000000000000000000000000010170700000000000000000000000000000000000000000000000000000000001017080000000000000000000000000000000000000000000000000000000000101709000000000000000000000000000000000000000000000000000000000010170a000000000000000000000000000000000000000000000000000000000010170b000000000000000000000000000000000000000000000000000000000010170c000000000000000000000000000000000000000000000000000000000010170d000000000000000000000000000000000000000000000000000000000010170e000000000000000000000000000000000000000000000000000000000010170f00000000000000000000000000000000000000000000000000000000001017100000000000000000000000000000000000000000000000000000000000101711000000000000000000000000000000000000000000000000000000000010171200000000000000000000000000000000000000000000000000000000001017130000000000000000000000000000000000000000000000000000000000101714000000000000000000000000000000000000000000000000000000000010171500000000000000000000000000000000000000000000000000000000001017160000000000000000000000000000000000000000000000000000000000101706000000000000000000000000000000000000000000000000000000000010170700000000000000000000000000000000000000000000000000000000001017080000000000000000000000000000000000000000000000000000000000101709000000000000000000000000000000000000000000000000000000000010170a000000000000000000000000000000000000000000000000000000000010170b000000000000000000000000000000000000000000000000000000000010170c000000000000000000000000000000000000000000000000000000000010170d000000000000000000000000000000000000000000000000000000000010170e000000000000000000000000000000000000000000000000000000000010170f00000000000000000000000000000000000000000000000000000000001017100000000000000000000000000000000000000000000000000000000000101711000000000000000000000000000000000000000000000000000000000010171200000000000000000000000000000000000000000000000000000000001017130000000000000000000000000000000000000000000000000000000000101714000000000000000000000000000000000000000000000000000000000010171500000000000000000000000000000000000000000000000000000000001017160000000000000000000000000000000000000000000000000000000000101717000000000000000000000000000000000000000000000000000000000010170700000000000000000000000000000000000000000000000000000000001017080000000000000000000000000000000000000000000000000000000000101709000000000000000000000000000000000000000000000000000000000010170a000000000000000000000000000000000000000000000000000000000010170b000000000000000000000000000000000000000000000000000000000010170c000000000000000000000000000000000000000000000000000000000010170d000000000000000000000000000000000000000000000000000000000010170e000000000000000000000000000000000000000000000000000000000010170f00000000000000000000000000000000000000000000000000000000001017100000000000000000000000000000000000000000000000000000000000101711000000000000000000000000000000000000000000000000000000000010171200000000000000000000000000000000000000000000000000000000001017130000000000000000000000000000000000000000000000000000000000101714000000000000000000000000000000000000000000000000000000000010171500000000000000000000000000000000000000000000000000000000001017160000000000000000000000000000000000000000000000000000000000101717000000000000000000000000000000000000000000000000000000000010171800000000000000000000000000000000000000000000000000000000001017080000000000000000000000000000000000000000000000000000000000101709000000000000000000000000000000000000000000000000000000000010170a000000000000000000000000000000000000000000000000000000000010170b000000000000000000000000000000000000000000000000000000000010170c000000000000000000000000000000000000000000000000000000000010170d000000000000000000000000000000000000000000000000000000000010170e000000000000000000000000000000000000000000000000000000000010170f00000000000000000000000000000000000000000000000000000000001017100000000000000000000000000000000000000000000000000000000000101711000000000000000000000000000000000000000000000000000000000010171200000000000000000000000000000000000000000000000000000000001017130000000000000000000000000000000000000000000000000000000000101714000000000000000000000000000000000000000000000000000000000010171500000000000000000000000000000000000000000000000000000000001017160000000000000000000000000000000000000000000000000000000000101717000000000000000000000000000000000000000000000000000000000010171800000000000000000000000000000000000000000000000000000000001017190000000000000000000000000000000000000000000000000000000000101709000000000000000000000000000000000000000000000000000000000010170a000000000000000000000000000000000000000000000000000000000010170b000000000000000000000000000000000000000000000000000000000010170c000000000000000000000000000000000000000000000000000000000010170d000000000000000000000000000000000000000000000000000000000010170e000000000000000000000000000000000000000000000000000000000010170f0000000000000000000000000000000000000000000000000000000000101710000000000000000000000000000000000000000000000000000000000010171100000000000000000000000000000000000000000000000000000000001017120000000000000000000000000000000000000000000000000000000000101713000000000000000000000000000000000000000000000000000000000010171400000000000000000000000000000000000000000000000000000000001017150000000000000000000000000000000000000000000000000000000000101716000000000000000000000000000000000000000000000000000000000010171700000000000000000000000000000000000000000000000000000000001017180000000000000000000000000000000000000000000000000000000000101719000000000000000000000000000000000000000000000000000000000010171a000000000000000000000000000000000000000000000000000000000010170a000000000000000000000000000000000000000000000000000000000010170b000000000000000000000000000000000000000000000000000000000010170c000000000000000000000000000000000000000000000000000000000010170d000000000000000000000000000000000000000000000000000000000010170e000000000000000000000000000000000000000000000000000000000010170f0000000000000000000000000000000000000000000000000000000000101710000000000000000000000000000000000000000000000000000000000010171100000000000000000000000000000000000000000000000000000000001017120000000000000000000000000000000000000000000000000000000000101713000000000000000000000000000000000000000000000000000000000010171400000000000000000000000000000000000000000000000000000000001017150000000000000000000000000000000000000000000000000000000000101716000000000000000000000000000000000000000000000000000000000010171700000000000000000000000000000000000000000000000000000000001017180000000000000000000000000000000000000000000000000000000000101719000000000000000000000000000000000000000000000000000000000010171a000000000000000000000000000000000000000000000000000000000010171b000000000000000000000000000000000000000000000000000000000010170b000000000000000000000000000000000000000000000000000000000010170c000000000000000000000000000000000000000000000000000000000010170d000000000000000000000000000000000000000000000000000000000010170e000000000000000000000000000000000000000000000000000000000010170f0000000000000000000000000000000000000000000000000000000000101710000000000000000000000000000000000000000000000000000000000010171100000000000000000000000000000000000000000000000000000000001017120000000000000000000000000000000000000000000000000000000000101713000000000000000000000000000000000000000000000000000000000010171400000000000000000000000000000000000000000000000000000000001017150000000000000000000000000000000000000000000000000000000000101716000000000000000000000000000000000000000000000000000000000010171700000000000000000000000000000000000000000000000000000000001017180000000000000000000000000000000000000000000000000000000000101719000000000000000000000000000000000000000000000000000000000010171a000000000000000000000000000000000000000000000000000000000010171b000000000000000000000000000000000000000000000000000000000010171c000000000000000000000000000000000000000000000000000000000010170c000000000000000000000000000000000000000000000000000000000010170d000000000000000000000000000000000000000000000000000000000010170e000000000000000000000000000000000000000000000000000000000010170f0000000000000000000000000000000000000000000000000000000000101710000000000000000000000000000000000000000000000000000000000010171100000000000000000000000000000000000000000000000000000000001017120000000000000000000000000000000000000000000000000000000000101713000000000000000000000000000000000000000000000000000000000010171400000000000000000000000000000000000000000000000000000000001017150000000000000000000000000000000000000000000000000000000000101716000000000000000000000000000000000000000000000000000000000010171700000000000000000000000000000000000000000000000000000000001017180000000000000000000000000000000000000000000000000000000000101719000000000000000000000000000000000000000000000000000000000010171a000000000000000000000000000000000000000000000000000000000010171b000000000000000000000000000000000000000000000000000000000010171c000000000000000000000000000000000000000000000000000000000010171d000000000000000000000000000000000000000000000000000000000010170d000000000000000000000000000000000000000000000000000000000010170e000000000000000000000000000000000000000000000000000000000010170f0000000000000000000000000000000000000000000000000000000000101710000000000000000000000000000000000000000000000000000000000010171100000000000000000000000000000000000000000000000000000000001017120000000000000000000000000000000000000000000000000000000000101713000000000000000000000000000000000000000000000000000000000010171400000000000000000000000000000000000000000000000000000000001017150000000000000000000000000000000000000000000000000000000000101716000000000000000000000000000000000000000000000000000000000010171700000000000000000000000000000000000000000000000000000000001017180000000000000000000000000000000000000000000000000000000000101719000000000000000000000000000000000000000000000000000000000010171a000000000000000000000000000000000000000000000000000000000010171b000000000000000000000000000000000000000000000000000000000010171c000000000000000000000000000000000000000000000000000000000010171d000000000000000000000000000000000000000000000000000000000010171e000000000000000000000000000000000000000000000000000000000010170e000000000000000000000000000000000000000000000000000000000010170f0000000000000000000000000000000000000000000000000000000000101710000000000000000000000000000000000000000000000000000000000010171100000000000000000000000000000000000000000000000000000000001017120000000000000000000000000000000000000000000000000000000000101713000000000000000000000000000000000000000000000000000000000010171400000000000000000000000000000000000000000000000000000000001017150000000000000000000000000000000000000000000000000000000000101716000000000000000000000000000000000000000000000000000000000010171700000000000000000000000000000000000000000000000000000000001017180000000000000000000000000000000000000000000000000000000000101719000000000000000000000000000000000000000000000000000000000010171a000000000000000000000000000000000000000000000000000000000010171b000000000000000000000000000000000000000000000000000000000010171c000000000000000000000000000000000000000000000000000000000010171d000000000000000000000000000000000000000000000000000000000010171e000000000000000000000000000000000000000000000000000000000010171f000000000000000000000000000000000000000000000000000000000010170f0000000000000000000000000000000000000000000000000000000000101710000000000000000000000000000000000000000000000000000000000010171100000000000000000000000000000000000000000000000000000000001017120000000000000000000000000000000000000000000000000000000000101713000000000000000000000000000000000000000000000000000000000010171400000000000000000000000000000000000000000000000000000000001017150000000000000000000000000000000000000000000000000000000000101716000000000000000000000000000000000000000000000000000000000010171700000000000000000000000000000000000000000000000000000000001017180000000000000000000000000000000000000000000000000000000000101719000000000000000000000000000000000000000000000000000000000010171a000000000000000000000000000000000000000000000000000000000010171b000000000000000000000000000000000000000000000000000000000010171c000000000000000000000000000000000000000000000000000000000010171d000000000000000000000000000000000000000000000000000000000010171e000000000000000000000000000000000000000000000000000000000010171f00000000000000000000000000000000000000000000000000000000001017200000000000000000000000000000000000000000000000000000000000101710000000000000000000000000000000000000000000000000000000000010171100000000000000000000000000000000000000000000000000000000001017120000000000000000000000000000000000000000000000000000000000101713000000000000000000000000000000000000000000000000000000000010171400000000000000000000000000000000000000000000000000000000001017150000000000000000000000000000000000000000000000000000000000101716000000000000000000000000000000000000000000000000000000000010171700000000000000000000000000000000000000000000000000000000001017180000000000000000000000000000000000000000000000000000000000101719000000000000000000000000000000000000000000000000000000000010171a000000000000000000000000000000000000000000000000000000000010171b000000000000000000000000000000000000000000000000000000000010171c000000000000000000000000000000000000000000000000000000000010171d000000000000000000000000000000000000000000000000000000000010171e000000000000000000000000000000000000000000000000000000000010171f00000000000000000000000000000000000000000000000000000000001017200000000000000000000000000000000000000000000000000000000000101721000000000000000000000000000000000000000000000000000000000010171100000000000000000000000000000000000000000000000000000000001017120000000000000000000000000000000000000000000000000000000000101713000000000000000000000000000000000000000000000000000000000010171400000000000000000000000000000000000000000000000000000000001017150000000000000000000000000000000000000000000000000000000000101716000000000000000000000000000000000000000000000000000000000010171700000000000000000000000000000000000000000000000000000000001017180000000000000000000000000000000000000000000000000000000000101719000000000000000000000000000000000000000000000000000000000010171a000000000000000000000000000000000000000000000000000000000010171b000000000000000000000000000000000000000000000000000000000010171c000000000000000000000000000000000000000000000000000000000010171d000000000000000000000000000000000000000000000000000000000010171e000000000000000000000000000000000000000000000000000000000010171f00000000000000000000000000000000000000000000000000000000001017200000000000000000000000000000000000000000000000000000000000101721000000000000000000000000000000000000000000000000000000000010172200000000000000000000000000000000000000000000000000000000001017120000000000000000000000000000000000000000000000000000000000101713000000000000000000000000000000000000000000000000000000000010171400000000000000000000000000000000000000000000000000000000001017150000000000000000000000000000000000000000000000000000000000101716000000000000000000000000000000000000000000000000000000000010171700000000000000000000000000000000000000000000000000000000001017180000000000000000000000000000000000000000000000000000000000101719000000000000000000000000000000000000000000000000000000000010171a000000000000000000000000000000000000000000000000000000000010171b000000000000000000000000000000000000000000000000000000000010171c000000000000000000000000000000000000000000000000000000000010171d000000000000000000000000000000000000000000000000000000000010171e000000000000000000000000000000000000000000000000000000000010171f00000000000000000000000000000000000000000000000000000000001017200000000000000000000000000000000000000000000000000000000000101721000000000000000000000000000000000000000000000000000000000010172200000000000000000000000000000000000000000000000000000000001017230000000000000000000000000000000000000000000000000000000000101713000000000000000000000000000000000000000000000000000000000010171400000000000000000000000000000000000000000000000000000000001017150000000000000000000000000000000000000000000000000000000000101716000000000000000000000000000000000000000000000000000000000010171700000000000000000000000000000000000000000000000000000000001017180000000000000000000000000000000000000000000000000000000000101719000000000000000000000000000000000000000000000000000000000010171a000000000000000000000000000000000000000000000000000000000010171b000000000000000000000000000000000000000000000000000000000010171c000000000000000000000000000000000000000000000000000000000010171d000000000000000000000000000000000000000000000000000000000010171e000000000000000000000000000000000000000000000000000000000010171f00000000000000000000000000000000000000000000000000000000001017200000000000000000000000000000000000000000000000000000000000101721000000000000000000000000000000000000000000000000000000000010172200000000000000000000000000000000000000000000000000000000001017230000000000000000000000000000000000000000000000000000000000101724000000000000000000000000000000000000000000000000000000000010171400000000000000000000000000000000000000000000000000000000001017150000000000000000000000000000000000000000000000000000000000101716000000000000000000000000000000000000000000000000000000000010171700000000000000000000000000000000000000000000000000000000001017180000000000000000000000000000000000000000000000000000000000101719000000000000000000000000000000000000000000000000000000000010171a000000000000000000000000000000000000000000000000000000000010171b000000000000000000000000000000000000000000000000000000000010171c000000000000000000000000000000000000000000000000000000000010171d000000000000000000000000000000000000000000000000000000000010171e000000000000000000000000000000000000000000000000000000000010171f00000000000000000000000000000000000000000000000000000000001017200000000000000000000000000000000000000000000000000000000000101721000000000000000000000000000000000000000000000000000000000010172200000000000000000000000000000000000000000000000000000000001017230000000000000000000000000000000000000000000000000000000000101724000000000000000000000000000000000000000000000000000000000010172500000000000000000000000000000000000000000000000000000000001017150000000000000000000000000000000000000000000000000000000000101716000000000000000000000000000000000000000000000000000000000010171700000000000000000000000000000000000000000000000000000000001017180000000000000000000000000000000000000000000000000000000000101719000000000000000000000000000000000000000000000000000000000010171a000000000000000000000000000000000000000000000000000000000010171b000000000000000000000000000000000000000000000000000000000010171c000000000000000000000000000000000000000000000000000000000010171d000000000000000000000000000000000000000000000000000000000010171e000000000000000000000000000000000000000000000000000000000010171f00000000000000000000000000000000000000000000000000000000001017200000000000000000000000000000000000000000000000000000000000101721000000000000000000000000000000000000000000000000000000000010172200000000000000000000000000000000000000000000000000000000001017230000000000000000000000000000000000000000000000000000000000101724000000000000000000000000000000000000000000000000000000000010172500000000000000000000000000000000000000000000000000000000001017260000000000000000000000000000000000000000000000000000000000101716000000000000000000000000000000000000000000000000000000000010171700000000000000000000000000000000000000000000000000000000001017180000000000000000000000000000000000000000000000000000000000101719000000000000000000000000000000000000000000000000000000000010171a000000000000000000000000000000000000000000000000000000000010171b000000000000000000000000000000000000000000000000000000000010171c000000000000000000000000000000000000000000000000000000000010171d000000000000000000000000000000000000000000000000000000000010171e000000000000000000000000000000000000000000000000000000000010171f00000000000000000000000000000000000000000000000000000000001017200000000000000000000000000000000000000000000000000000000000101721000000000000000000000000000000000000000000000000000000000010172200000000000000000000000000000000000000000000000000000000001017230000000000000000000000000000000000000000000000000000000000101724000000000000000000000000000000000000000000000000000000000010172500000000000000000000000000000000000000000000000000000000001017260000000000000000000000000000000000000000000000000000000000101727000000000000000000000000000000000000000000000000000000000010171700000000000000000000000000000000000000000000000000000000001017180000000000000000000000000000000000000000000000000000000000101719000000000000000000000000000000000000000000000000000000000010171a000000000000000000000000000000000000000000000000000000000010171b000000000000000000000000000000000000000000000000000000000010171c000000000000000000000000000000000000000000000000000000000010171d000000000000000000000000000000000000000000000000000000000010171e000000000000000000000000000000000000000000000000000000000010171f00000000000000000000000000000000000000000000000000000000001017200000000000000000000000000000000000000000000000000000000000101721000000000000000000000000000000000000000000000000000000000010172200000000000000000000000000000000000000000000000000000000001017230000000000000000000000000000000000000000000000000000000000101724000000000000000000000000000000000000000000000000000000000010172500000000000000000000000000000000000000000000000000000000001017260000000000000000000000000000000000000000000000000000000000101727000000000000000000000000000000000000000000000000000000000010172800000000000000000000000000000000000000000000000000000000001017180000000000000000000000000000000000000000000000000000000000101719000000000000000000000000000000000000000000000000000000000010171a000000000000000000000000000000000000000000000000000000000010171b000000000000000000000000000000000000000000000000000000000010171c000000000000000000000000000000000000000000000000000000000010171d000000000000000000000000000000000000000000000000000000000010171e000000000000000000000000000000000000000000000000000000000010171f00000000000000000000000000000000000000000000000000000000001017200000000000000000000000000000000000000000000000000000000000101721000000000000000000000000000000000000000000000000000000000010172200000000000000000000000000000000000000000000000000000000001017230000000000000000000000000000000000000000000000000000000000101724000000000000000000000000000000000000000000000000000000000010172500000000000000000000000000000000000000000000000000000000001017260000000000000000000000000000000000000000000000000000000000101727000000000000000000000000000000000000000000000000000000000010172800000000000000000000000000000000000000000000000000000000001017290000000000000000000000000000000000000000000000000000000000101719000000000000000000000000000000000000000000000000000000000010171a000000000000000000000000000000000000000000000000000000000010171b000000000000000000000000000000000000000000000000000000000010171c000000000000000000000000000000000000000000000000000000000010171d000000000000000000000000000000000000000000000000000000000010171e000000000000000000000000000000000000000000000000000000000010171f0000000000000000000000000000000000000000000000000000000000101720000000000000000000000000000000000000000000000000000000000010172100000000000000000000000000000000000000000000000000000000001017220000000000000000000000000000000000000000000000000000000000101723000000000000000000000000000000000000000000000000000000000010172400000000000000000000000000000000000000000000000000000000001017250000000000000000000000000000000000000000000000000000000000101726000000000000000000000000000000000000000000000000000000000010172700000000000000000000000000000000000000000000000000000000001017280000000000000000000000000000000000000000000000000000000000101729000000000000000000000000000000000000000000000000000000000010172a000000000000000000000000000000000000000000000000000000000010171a000000000000000000000000000000000000000000000000000000000010171b000000000000000000000000000000000000000000000000000000000010171c000000000000000000000000000000000000000000000000000000000010171d000000000000000000000000000000000000000000000000000000000010171e000000000000000000000000000000000000000000000000000000000010171f0000000000000000000000000000000000000000000000000000000000101720000000000000000000000000000000000000000000000000000000000010172100000000000000000000000000000000000000000000000000000000001017220000000000000000000000000000000000000000000000000000000000101723000000000000000000000000000000000000000000000000000000000010172400000000000000000000000000000000000000000000000000000000001017250000000000000000000000000000000000000000000000000000000000101726000000000000000000000000000000000000000000000000000000000010172700000000000000000000000000000000000000000000000000000000001017280000000000000000000000000000000000000000000000000000000000101729000000000000000000000000000000000000000000000000000000000010172a000000000000000000000000000000000000000000000000000000000010172b000000000000000000000000000000000000000000000000000000000010171b000000000000000000000000000000000000000000000000000000000010171c000000000000000000000000000000000000000000000000000000000010171d000000000000000000000000000000000000000000000000000000000010171e000000000000000000000000000000000000000000000000000000000010171f0000000000000000000000000000000000000000000000000000000000101720000000000000000000000000000000000000000000000000000000000010172100000000000000000000000000000000000000000000000000000000001017220000000000000000000000000000000000000000000000000000000000101723000000000000000000000000000000000000000000000000000000000010172400000000000000000000000000000000000000000000000000000000001017250000000000000000000000000000000000000000000000000000000000101726000000000000000000000000000000000000000000000000000000000010172700000000000000000000000000000000000000000000000000000000001017280000000000000000000000000000000000000000000000000000000000101729000000000000000000000000000000000000000000000000000000000010172a000000000000000000000000000000000000000000000000000000000010172b000000000000000000000000000000000000000000000000000000000010172c000000000000000000000000000000000000000000000000000000000010171c000000000000000000000000000000000000000000000000000000000010171d000000000000000000000000000000000000000000000000000000000010171e000000000000000000000000000000000000000000000000000000000010171f0000000000000000000000000000000000000000000000000000000000101720000000000000000000000000000000000000000000000000000000000010172100000000000000000000000000000000000000000000000000000000001017220000000000000000000000000000000000000000000000000000000000101723000000000000000000000000000000000000000000000000000000000010172400000000000000000000000000000000000000000000000000000000001017250000000000000000000000000000000000000000000000000000000000101726000000000000000000000000000000000000000000000000000000000010172700000000000000000000000000000000000000000000000000000000001017280000000000000000000000000000000000000000000000000000000000101729000000000000000000000000000000000000000000000000000000000010172a000000000000000000000000000000000000000000000000000000000010172b000000000000000000000000000000000000000000000000000000000010172c000000000000000000000000000000000000000000000000000000000010172d000000000000000000000000000000000000000000000000000000000010171d000000000000000000000000000000000000000000000000000000000010171e000000000000000000000000000000000000000000000000000000000010171f0000000000000000000000000000000000000000000000000000000000101720000000000000000000000000000000000000000000000000000000000010172100000000000000000000000000000000000000000000000000000000001017220000000000000000000000000000000000000000000000000000000000101723000000000000000000000000000000000000000000000000000000000010172400000000000000000000000000000000000000000000000000000000001017250000000000000000000000000000000000000000000000000000000000101726000000000000000000000000000000000000000000000000000000000010172700000000000000000000000000000000000000000000000000000000001017280000000000000000000000000000000000000000000000000000000000101729000000000000000000000000000000000000000000000000000000000010172a000000000000000000000000000000000000000000000000000000000010172b000000000000000000000000000000000000000000000000000000000010172c000000000000000000000000000000000000000000000000000000000010172d000000000000000000000000000000000000000000000000000000000010172e000000000000000000000000000000000000000000000000000000000010171e000000000000000000000000000000000000000000000000000000000010171f0000000000000000000000000000000000000000000000000000000000101720000000000000000000000000000000000000000000000000000000000010172100000000000000000000000000000000000000000000000000000000001017220000000000000000000000000000000000000000000000000000000000101723000000000000000000000000000000000000000000000000000000000010172400000000000000000000000000000000000000000000000000000000001017250000000000000000000000000000000000000000000000000000000000101726000000000000000000000000000000000000000000000000000000000010172700000000000000000000000000000000000000000000000000000000001017280000000000000000000000000000000000000000000000000000000000101729000000000000000000000000000000000000000000000000000000000010172a000000000000000000000000000000000000000000000000000000000010172b000000000000000000000000000000000000000000000000000000000010172c000000000000000000000000000000000000000000000000000000000010172d000000000000000000000000000000000000000000000000000000000010172e000000000000000000000000000000000000000000000000000000000010172f000000000000000000000000000000000000000000000000000000000010171f0000000000000000000000000000000000000000000000000000000000101720000000000000000000000000000000000000000000000000000000000010172100000000000000000000000000000000000000000000000000000000001017220000000000000000000000000000000000000000000000000000000000101723000000000000000000000000000000000000000000000000000000000010172400000000000000000000000000000000000000000000000000000000001017250000000000000000000000000000000000000000000000000000000000101726000000000000000000000000000000000000000000000000000000000010172700000000000000000000000000000000000000000000000000000000001017280000000000000000000000000000000000000000000000000000000000101729000000000000000000000000000000000000000000000000000000000010172a000000000000000000000000000000000000000000000000000000000010172b000000000000000000000000000000000000000000000000000000000010172c000000000000000000000000000000000000000000000000000000000010172d000000000000000000000000000000000000000000000000000000000010172e000000000000000000000000000000000000000000000000000000000010172f0000000000000000000000000000000000000000000000000000000000101730000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "archive": "0x155210fd3188716162b2f6c650aa5874466280eb49e68f21f392d746919f6e1b", + "body": "0x00000004002ee9a34a76ae91c500b535381d94cd682504bb86d504c62a5f8d11dd24679ee70000000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000041000000000000000000000000000000000000000000000000000000000000004100100000000000000000000000000000000000000000000000000000000000410020000000000000000000000000000000000000000000000000000000000041003000000000000000000000000000000000000000000000000000000000004100400000000000000000000000000000000000000000000000000000000000410050000000000000000000000000000000000000000000000000000000000041006000000000000000000000000000000000000000000000000000000000004100700000000000000000000000000000000000000000000000000000000000410080000000000000000000000000000000000000000000000000000000000041009000000000000000000000000000000000000000000000000000000000004100a000000000000000000000000000000000000000000000000000000000004100b000000000000000000000000000000000000000000000000000000000004100c000000000000000000000000000000000000000000000000000000000004100d000000000000000000000000000000000000000000000000000000000004100e000000000000000000000000000000000000000000000000000000000004100f0000000000000000000000000000000000000000000000000000000000041010000000000000000000000000000000000000000000000000000000000004101100000000000000000000000000000000000000000000000000000000000410120000000000000000000000000000000000000000000000000000000000041013000000000000000000000000000000000000000000000000000000000004101400000000000000000000000000000000000000000000000000000000000410150000000000000000000000000000000000000000000000000000000000041016000000000000000000000000000000000000000000000000000000000004101700000000000000000000000000000000000000000000000000000000000410180000000000000000000000000000000000000000000000000000000000041019000000000000000000000000000000000000000000000000000000000004101a000000000000000000000000000000000000000000000000000000000004101b000000000000000000000000000000000000000000000000000000000004101c000000000000000000000000000000000000000000000000000000000004101d000000000000000000000000000000000000000000000000000000000004101e000000000000000000000000000000000000000000000000000000000004101f0000000000000000000000000000000000000000000000000000000000041020000000000000000000000000000000000000000000000000000000000004102100000000000000000000000000000000000000000000000000000000000410220000000000000000000000000000000000000000000000000000000000041023000000000000000000000000000000000000000000000000000000000004102400000000000000000000000000000000000000000000000000000000000410250000000000000000000000000000000000000000000000000000000000041026000000000000000000000000000000000000000000000000000000000004102700000000000000000000000000000000000000000000000000000000000410280000000000000000000000000000000000000000000000000000000000041029000000000000000000000000000000000000000000000000000000000004102a000000000000000000000000000000000000000000000000000000000004102b000000000000000000000000000000000000000000000000000000000004102c000000000000000000000000000000000000000000000000000000000004102d000000000000000000000000000000000000000000000000000000000004102e000000000000000000000000000000000000000000000000000000000004102f0000000000000000000000000000000000000000000000000000000000041030000000000000000000000000000000000000000000000000000000000004103100000000000000000000000000000000000000000000000000000000000410320000000000000000000000000000000000000000000000000000000000041033000000000000000000000000000000000000000000000000000000000004103400000000000000000000000000000000000000000000000000000000000410350000000000000000000000000000000000000000000000000000000000041036000000000000000000000000000000000000000000000000000000000004103700000000000000000000000000000000000000000000000000000000000410380000000000000000000000000000000000000000000000000000000000041039000000000000000000000000000000000000000000000000000000000004103a000000000000000000000000000000000000000000000000000000000004103b000000000000000000000000000000000000000000000000000000000004103c000000000000000000000000000000000000000000000000000000000004103d000000000000000000000000000000000000000000000000000000000004103e000000000000000000000000000000000000000000000000000000000004103f4000000000000000000000000000000000000000000000000000000000000400010000000000000000000000000000000000000000000000000000000000041100000000000000000000000000000000000000000000000000000000000004110100000000000000000000000000000000000000000000000000000000000411020000000000000000000000000000000000000000000000000000000000041103000000000000000000000000000000000000000000000000000000000004110400000000000000000000000000000000000000000000000000000000000411050000000000000000000000000000000000000000000000000000000000041106000000000000000000000000000000000000000000000000000000000004110700000000000000000000000000000000000000000000000000000000000411080000000000000000000000000000000000000000000000000000000000041109000000000000000000000000000000000000000000000000000000000004110a000000000000000000000000000000000000000000000000000000000004110b000000000000000000000000000000000000000000000000000000000004110c000000000000000000000000000000000000000000000000000000000004110d000000000000000000000000000000000000000000000000000000000004110e000000000000000000000000000000000000000000000000000000000004110f0000000000000000000000000000000000000000000000000000000000041110000000000000000000000000000000000000000000000000000000000004111100000000000000000000000000000000000000000000000000000000000411120000000000000000000000000000000000000000000000000000000000041113000000000000000000000000000000000000000000000000000000000004111400000000000000000000000000000000000000000000000000000000000411150000000000000000000000000000000000000000000000000000000000041116000000000000000000000000000000000000000000000000000000000004111700000000000000000000000000000000000000000000000000000000000411180000000000000000000000000000000000000000000000000000000000041119000000000000000000000000000000000000000000000000000000000004111a000000000000000000000000000000000000000000000000000000000004111b000000000000000000000000000000000000000000000000000000000004111c000000000000000000000000000000000000000000000000000000000004111d000000000000000000000000000000000000000000000000000000000004111e000000000000000000000000000000000000000000000000000000000004111f0000000000000000000000000000000000000000000000000000000000041120000000000000000000000000000000000000000000000000000000000004112100000000000000000000000000000000000000000000000000000000000411220000000000000000000000000000000000000000000000000000000000041123000000000000000000000000000000000000000000000000000000000004112400000000000000000000000000000000000000000000000000000000000411250000000000000000000000000000000000000000000000000000000000041126000000000000000000000000000000000000000000000000000000000004112700000000000000000000000000000000000000000000000000000000000411280000000000000000000000000000000000000000000000000000000000041129000000000000000000000000000000000000000000000000000000000004112a000000000000000000000000000000000000000000000000000000000004112b000000000000000000000000000000000000000000000000000000000004112c000000000000000000000000000000000000000000000000000000000004112d000000000000000000000000000000000000000000000000000000000004112e000000000000000000000000000000000000000000000000000000000004112f0000000000000000000000000000000000000000000000000000000000041130000000000000000000000000000000000000000000000000000000000004113100000000000000000000000000000000000000000000000000000000000411320000000000000000000000000000000000000000000000000000000000041133000000000000000000000000000000000000000000000000000000000004113400000000000000000000000000000000000000000000000000000000000411350000000000000000000000000000000000000000000000000000000000041136000000000000000000000000000000000000000000000000000000000004113700000000000000000000000000000000000000000000000000000000000411380000000000000000000000000000000000000000000000000000000000041139000000000000000000000000000000000000000000000000000000000004113a000000000000000000000000000000000000000000000000000000000004113b000000000000000000000000000000000000000000000000000000000004113c000000000000000000000000000000000000000000000000000000000004113d000000000000000000000000000000000000000000000000000000000004113e080097a6ec570e9b8e257647c9c74c5ad3edc57ca5ef6ae44d80b3c30d1d99b9b300ce48ec41d1edde0066fab553a456ae2f380d14fa8f956af1fb0217513a598900619ff12eaf97f63aa2a2311de3b6571a7b880a5247cb33b6a74787bf3f9bd5007854a2fad4e1801c6404394bf3d37ab08c135ea38a1974242e39a21273685f000f55796e72957a819e68a22e8602d73c3ba3718a5a4bd92b80b0aa444b182a00788b6e9874fb040ee679a7fae257190099a605229b948334e54a57739535d4004f1658ee3c1a91627e5d72f5a731f0796299df82ab41e72c88eee0c82fa85e003ee802add96628c693ed71afa9908138ba5a6fbf0a5f29a9c74e4e42aba671400000000000000000000000000000000000000000000000000000000000042000000000000000000000000000000000000000000000000000000000000004200a0000000000000000000000000000000000000000000000000000000000042001000000000000000000000000000000000000000000000000000000000004200b0000000000000000000000000000000000000000000000000000000000042002000000000000000000000000000000000000000000000000000000000004200c0000000000000000000000000000000000000000000000000000000000042003000000000000000000000000000000000000000000000000000000000004200d0000000000000000000000000000000000000000000000000000000000042004000000000000000000000000000000000000000000000000000000000004200e0000000000000000000000000000000000000000000000000000000000042005000000000000000000000000000000000000000000000000000000000004200f00000000000000000000000000000000000000000000000000000000000420060000000000000000000000000000000000000000000000000000000000042010000000000000000000000000000000000000000000000000000000000004200700000000000000000000000000000000000000000000000000000000000420110000000000000000000000000000000000000000000000000000000000042008000000000000000000000000000000000000000000000000000000000004201200000000000000000000000000000000000000000000000000000000000420090000000000000000000000000000000000000000000000000000000000042013000000000000000000000000000000000000000000000000000000000004200a0000000000000000000000000000000000000000000000000000000000042014000000000000000000000000000000000000000000000000000000000004200b0000000000000000000000000000000000000000000000000000000000042015000000000000000000000000000000000000000000000000000000000004200c0000000000000000000000000000000000000000000000000000000000042016000000000000000000000000000000000000000000000000000000000004200d0000000000000000000000000000000000000000000000000000000000042017000000000000000000000000000000000000000000000000000000000004200e0000000000000000000000000000000000000000000000000000000000042018000000000000000000000000000000000000000000000000000000000004200f00000000000000000000000000000000000000000000000000000000000420190000000000000000000000000000000000000000000000000000000000042010000000000000000000000000000000000000000000000000000000000004201a0000000000000000000000000000000000000000000000000000000000042011000000000000000000000000000000000000000000000000000000000004201b0000000000000000000000000000000000000000000000000000000000042012000000000000000000000000000000000000000000000000000000000004201c0000000000000000000000000000000000000000000000000000000000042013000000000000000000000000000000000000000000000000000000000004201d0000000000000000000000000000000000000000000000000000000000042014000000000000000000000000000000000000000000000000000000000004201e0000000000000000000000000000000000000000000000000000000000042015000000000000000000000000000000000000000000000000000000000004201f00000000000000000000000000000000000000000000000000000000000420160000000000000000000000000000000000000000000000000000000000042020000000000000000000000000000000000000000000000000000000000004201700000000000000000000000000000000000000000000000000000000000420210000000000000000000000000000000000000000000000000000000000042018000000000000000000000000000000000000000000000000000000000004202200000000000000000000000000000000000000000000000000000000000420190000000000000000000000000000000000000000000000000000000000042023000000000000000000000000000000000000000000000000000000000004201a0000000000000000000000000000000000000000000000000000000000042024000000000000000000000000000000000000000000000000000000000004201b0000000000000000000000000000000000000000000000000000000000042025000000000000000000000000000000000000000000000000000000000004201c0000000000000000000000000000000000000000000000000000000000042026000000000000000000000000000000000000000000000000000000000004201d0000000000000000000000000000000000000000000000000000000000042027000000000000000000000000000000000000000000000000000000000004201e0000000000000000000000000000000000000000000000000000000000042028000000000000000000000000000000000000000000000000000000000004201f00000000000000000000000000000000000000000000000000000000000420290000000000000000000000000000000000000000000000000000000000042020000000000000000000000000000000000000000000000000000000000004202a0000000000000000000000000000000000000000000000000000000000042021000000000000000000000000000000000000000000000000000000000004202b0000000000000000000000000000000000000000000000000000000000042022000000000000000000000000000000000000000000000000000000000004202c0000000000000000000000000000000000000000000000000000000000042023000000000000000000000000000000000000000000000000000000000004202d0000000000000000000000000000000000000000000000000000000000042024000000000000000000000000000000000000000000000000000000000004202e0000000000000000000000000000000000000000000000000000000000042025000000000000000000000000000000000000000000000000000000000004202f00000000000000000000000000000000000000000000000000000000000420260000000000000000000000000000000000000000000000000000000000042030000000000000000000000000000000000000000000000000000000000004202700000000000000000000000000000000000000000000000000000000000420310000000000000000000000000000000000000000000000000000000000042028000000000000000000000000000000000000000000000000000000000004203200000000000000000000000000000000000000000000000000000000000420290000000000000000000000000000000000000000000000000000000000042033000000000000000000000000000000000000000000000000000000000004202a0000000000000000000000000000000000000000000000000000000000042034000000000000000000000000000000000000000000000000000000000004202b0000000000000000000000000000000000000000000000000000000000042035000000000000000000000000000000000000000000000000000000000004202c0000000000000000000000000000000000000000000000000000000000042036000000000000000000000000000000000000000000000000000000000004202d0000000000000000000000000000000000000000000000000000000000042037000000000000000000000000000000000000000000000000000000000004202e0000000000000000000000000000000000000000000000000000000000042038000000000000000000000000000000000000000000000000000000000004202f00000000000000000000000000000000000000000000000000000000000420390000000000000000000000000000000000000000000000000000000000042030000000000000000000000000000000000000000000000000000000000004203a0000000000000000000000000000000000000000000000000000000000042031000000000000000000000000000000000000000000000000000000000004203b0000000000000000000000000000000000000000000000000000000000042032000000000000000000000000000000000000000000000000000000000004203c0000000000000000000000000000000000000000000000000000000000042033000000000000000000000000000000000000000000000000000000000004203d0000000000000000000000000000000000000000000000000000000000042034000000000000000000000000000000000000000000000000000000000004203e0000000000000000000000000000000000000000000000000000000000042035000000000000000000000000000000000000000000000000000000000004203f00000000000000000000000000000000000000000000000000000000000420360000000000000000000000000000000000000000000000000000000000042040000000000000000000000000000000000000000000000000000000000004203700000000000000000000000000000000000000000000000000000000000420410000000000000000000000000000000000000000000000000000000000042038000000000000000000000000000000000000000000000000000000000004204200000000000000000000000000000000000000000000000000000000000420390000000000000000000000000000000000000000000000000000000000042043000000000000000000000000000000000000000000000000000000000004203a0000000000000000000000000000000000000000000000000000000000042044000000000000000000000000000000000000000000000000000000000004203b0000000000000000000000000000000000000000000000000000000000042045000000000000000000000000000000000000000000000000000000000004203c0000000000000000000000000000000000000000000000000000000000042046000000000000000000000000000000000000000000000000000000000004203d0000000000000000000000000000000000000000000000000000000000042047000000000000000000000000000000000000000000000000000000000004203e0000000000000000000000000000000000000000000000000000000000042048000000000000000000000000000000000000000000000000000000000004203f0000000000000000000000000000000000000000000000000000000000042049200000000000000000000000000000000000000000000000000000000000041700000000000000000000000000000000000000000000000000000000000004170100000000000000000000000000000000000000000000000000000000000417020000000000000000000000000000000000000000000000000000000000041703000000000000000000000000000000000000000000000000000000000004170400000000000000000000000000000000000000000000000000000000000417050000000000000000000000000000000000000000000000000000000000041706000000000000000000000000000000000000000000000000000000000004170700000000000000000000000000000000000000000000000000000000000417080000000000000000000000000000000000000000000000000000000000041709000000000000000000000000000000000000000000000000000000000004170a000000000000000000000000000000000000000000000000000000000004170b000000000000000000000000000000000000000000000000000000000004170c000000000000000000000000000000000000000000000000000000000004170d000000000000000000000000000000000000000000000000000000000004170e000000000000000000000000000000000000000000000000000000000004170f00000000000000000000000000000000000000000000000000000000000417100000000000000000000000000000000000000000000000000000000000041711000000000000000000000000000000000000000000000000000000000004170100000000000000000000000000000000000000000000000000000000000417020000000000000000000000000000000000000000000000000000000000041703000000000000000000000000000000000000000000000000000000000004170400000000000000000000000000000000000000000000000000000000000417050000000000000000000000000000000000000000000000000000000000041706000000000000000000000000000000000000000000000000000000000004170700000000000000000000000000000000000000000000000000000000000417080000000000000000000000000000000000000000000000000000000000041709000000000000000000000000000000000000000000000000000000000004170a000000000000000000000000000000000000000000000000000000000004170b000000000000000000000000000000000000000000000000000000000004170c000000000000000000000000000000000000000000000000000000000004170d000000000000000000000000000000000000000000000000000000000004170e000000000000000000000000000000000000000000000000000000000004170f00000000000000000000000000000000000000000000000000000000000417100000000000000000000000000000000000000000000000000000000000041711000000000000000000000000000000000000000000000000000000000004171200000000000000000000000000000000000000000000000000000000000417020000000000000000000000000000000000000000000000000000000000041703000000000000000000000000000000000000000000000000000000000004170400000000000000000000000000000000000000000000000000000000000417050000000000000000000000000000000000000000000000000000000000041706000000000000000000000000000000000000000000000000000000000004170700000000000000000000000000000000000000000000000000000000000417080000000000000000000000000000000000000000000000000000000000041709000000000000000000000000000000000000000000000000000000000004170a000000000000000000000000000000000000000000000000000000000004170b000000000000000000000000000000000000000000000000000000000004170c000000000000000000000000000000000000000000000000000000000004170d000000000000000000000000000000000000000000000000000000000004170e000000000000000000000000000000000000000000000000000000000004170f00000000000000000000000000000000000000000000000000000000000417100000000000000000000000000000000000000000000000000000000000041711000000000000000000000000000000000000000000000000000000000004171200000000000000000000000000000000000000000000000000000000000417130000000000000000000000000000000000000000000000000000000000041703000000000000000000000000000000000000000000000000000000000004170400000000000000000000000000000000000000000000000000000000000417050000000000000000000000000000000000000000000000000000000000041706000000000000000000000000000000000000000000000000000000000004170700000000000000000000000000000000000000000000000000000000000417080000000000000000000000000000000000000000000000000000000000041709000000000000000000000000000000000000000000000000000000000004170a000000000000000000000000000000000000000000000000000000000004170b000000000000000000000000000000000000000000000000000000000004170c000000000000000000000000000000000000000000000000000000000004170d000000000000000000000000000000000000000000000000000000000004170e000000000000000000000000000000000000000000000000000000000004170f00000000000000000000000000000000000000000000000000000000000417100000000000000000000000000000000000000000000000000000000000041711000000000000000000000000000000000000000000000000000000000004171200000000000000000000000000000000000000000000000000000000000417130000000000000000000000000000000000000000000000000000000000041714000000000000000000000000000000000000000000000000000000000004170400000000000000000000000000000000000000000000000000000000000417050000000000000000000000000000000000000000000000000000000000041706000000000000000000000000000000000000000000000000000000000004170700000000000000000000000000000000000000000000000000000000000417080000000000000000000000000000000000000000000000000000000000041709000000000000000000000000000000000000000000000000000000000004170a000000000000000000000000000000000000000000000000000000000004170b000000000000000000000000000000000000000000000000000000000004170c000000000000000000000000000000000000000000000000000000000004170d000000000000000000000000000000000000000000000000000000000004170e000000000000000000000000000000000000000000000000000000000004170f00000000000000000000000000000000000000000000000000000000000417100000000000000000000000000000000000000000000000000000000000041711000000000000000000000000000000000000000000000000000000000004171200000000000000000000000000000000000000000000000000000000000417130000000000000000000000000000000000000000000000000000000000041714000000000000000000000000000000000000000000000000000000000004171500000000000000000000000000000000000000000000000000000000000417050000000000000000000000000000000000000000000000000000000000041706000000000000000000000000000000000000000000000000000000000004170700000000000000000000000000000000000000000000000000000000000417080000000000000000000000000000000000000000000000000000000000041709000000000000000000000000000000000000000000000000000000000004170a000000000000000000000000000000000000000000000000000000000004170b000000000000000000000000000000000000000000000000000000000004170c000000000000000000000000000000000000000000000000000000000004170d000000000000000000000000000000000000000000000000000000000004170e000000000000000000000000000000000000000000000000000000000004170f00000000000000000000000000000000000000000000000000000000000417100000000000000000000000000000000000000000000000000000000000041711000000000000000000000000000000000000000000000000000000000004171200000000000000000000000000000000000000000000000000000000000417130000000000000000000000000000000000000000000000000000000000041714000000000000000000000000000000000000000000000000000000000004171500000000000000000000000000000000000000000000000000000000000417160000000000000000000000000000000000000000000000000000000000041706000000000000000000000000000000000000000000000000000000000004170700000000000000000000000000000000000000000000000000000000000417080000000000000000000000000000000000000000000000000000000000041709000000000000000000000000000000000000000000000000000000000004170a000000000000000000000000000000000000000000000000000000000004170b000000000000000000000000000000000000000000000000000000000004170c000000000000000000000000000000000000000000000000000000000004170d000000000000000000000000000000000000000000000000000000000004170e000000000000000000000000000000000000000000000000000000000004170f00000000000000000000000000000000000000000000000000000000000417100000000000000000000000000000000000000000000000000000000000041711000000000000000000000000000000000000000000000000000000000004171200000000000000000000000000000000000000000000000000000000000417130000000000000000000000000000000000000000000000000000000000041714000000000000000000000000000000000000000000000000000000000004171500000000000000000000000000000000000000000000000000000000000417160000000000000000000000000000000000000000000000000000000000041717000000000000000000000000000000000000000000000000000000000004170700000000000000000000000000000000000000000000000000000000000417080000000000000000000000000000000000000000000000000000000000041709000000000000000000000000000000000000000000000000000000000004170a000000000000000000000000000000000000000000000000000000000004170b000000000000000000000000000000000000000000000000000000000004170c000000000000000000000000000000000000000000000000000000000004170d000000000000000000000000000000000000000000000000000000000004170e000000000000000000000000000000000000000000000000000000000004170f00000000000000000000000000000000000000000000000000000000000417100000000000000000000000000000000000000000000000000000000000041711000000000000000000000000000000000000000000000000000000000004171200000000000000000000000000000000000000000000000000000000000417130000000000000000000000000000000000000000000000000000000000041714000000000000000000000000000000000000000000000000000000000004171500000000000000000000000000000000000000000000000000000000000417160000000000000000000000000000000000000000000000000000000000041717000000000000000000000000000000000000000000000000000000000004171800000000000000000000000000000000000000000000000000000000000417080000000000000000000000000000000000000000000000000000000000041709000000000000000000000000000000000000000000000000000000000004170a000000000000000000000000000000000000000000000000000000000004170b000000000000000000000000000000000000000000000000000000000004170c000000000000000000000000000000000000000000000000000000000004170d000000000000000000000000000000000000000000000000000000000004170e000000000000000000000000000000000000000000000000000000000004170f00000000000000000000000000000000000000000000000000000000000417100000000000000000000000000000000000000000000000000000000000041711000000000000000000000000000000000000000000000000000000000004171200000000000000000000000000000000000000000000000000000000000417130000000000000000000000000000000000000000000000000000000000041714000000000000000000000000000000000000000000000000000000000004171500000000000000000000000000000000000000000000000000000000000417160000000000000000000000000000000000000000000000000000000000041717000000000000000000000000000000000000000000000000000000000004171800000000000000000000000000000000000000000000000000000000000417190000000000000000000000000000000000000000000000000000000000041709000000000000000000000000000000000000000000000000000000000004170a000000000000000000000000000000000000000000000000000000000004170b000000000000000000000000000000000000000000000000000000000004170c000000000000000000000000000000000000000000000000000000000004170d000000000000000000000000000000000000000000000000000000000004170e000000000000000000000000000000000000000000000000000000000004170f0000000000000000000000000000000000000000000000000000000000041710000000000000000000000000000000000000000000000000000000000004171100000000000000000000000000000000000000000000000000000000000417120000000000000000000000000000000000000000000000000000000000041713000000000000000000000000000000000000000000000000000000000004171400000000000000000000000000000000000000000000000000000000000417150000000000000000000000000000000000000000000000000000000000041716000000000000000000000000000000000000000000000000000000000004171700000000000000000000000000000000000000000000000000000000000417180000000000000000000000000000000000000000000000000000000000041719000000000000000000000000000000000000000000000000000000000004171a000000000000000000000000000000000000000000000000000000000004170a000000000000000000000000000000000000000000000000000000000004170b000000000000000000000000000000000000000000000000000000000004170c000000000000000000000000000000000000000000000000000000000004170d000000000000000000000000000000000000000000000000000000000004170e000000000000000000000000000000000000000000000000000000000004170f0000000000000000000000000000000000000000000000000000000000041710000000000000000000000000000000000000000000000000000000000004171100000000000000000000000000000000000000000000000000000000000417120000000000000000000000000000000000000000000000000000000000041713000000000000000000000000000000000000000000000000000000000004171400000000000000000000000000000000000000000000000000000000000417150000000000000000000000000000000000000000000000000000000000041716000000000000000000000000000000000000000000000000000000000004171700000000000000000000000000000000000000000000000000000000000417180000000000000000000000000000000000000000000000000000000000041719000000000000000000000000000000000000000000000000000000000004171a000000000000000000000000000000000000000000000000000000000004171b000000000000000000000000000000000000000000000000000000000004170b000000000000000000000000000000000000000000000000000000000004170c000000000000000000000000000000000000000000000000000000000004170d000000000000000000000000000000000000000000000000000000000004170e000000000000000000000000000000000000000000000000000000000004170f0000000000000000000000000000000000000000000000000000000000041710000000000000000000000000000000000000000000000000000000000004171100000000000000000000000000000000000000000000000000000000000417120000000000000000000000000000000000000000000000000000000000041713000000000000000000000000000000000000000000000000000000000004171400000000000000000000000000000000000000000000000000000000000417150000000000000000000000000000000000000000000000000000000000041716000000000000000000000000000000000000000000000000000000000004171700000000000000000000000000000000000000000000000000000000000417180000000000000000000000000000000000000000000000000000000000041719000000000000000000000000000000000000000000000000000000000004171a000000000000000000000000000000000000000000000000000000000004171b000000000000000000000000000000000000000000000000000000000004171c000000000000000000000000000000000000000000000000000000000004170c000000000000000000000000000000000000000000000000000000000004170d000000000000000000000000000000000000000000000000000000000004170e000000000000000000000000000000000000000000000000000000000004170f0000000000000000000000000000000000000000000000000000000000041710000000000000000000000000000000000000000000000000000000000004171100000000000000000000000000000000000000000000000000000000000417120000000000000000000000000000000000000000000000000000000000041713000000000000000000000000000000000000000000000000000000000004171400000000000000000000000000000000000000000000000000000000000417150000000000000000000000000000000000000000000000000000000000041716000000000000000000000000000000000000000000000000000000000004171700000000000000000000000000000000000000000000000000000000000417180000000000000000000000000000000000000000000000000000000000041719000000000000000000000000000000000000000000000000000000000004171a000000000000000000000000000000000000000000000000000000000004171b000000000000000000000000000000000000000000000000000000000004171c000000000000000000000000000000000000000000000000000000000004171d000000000000000000000000000000000000000000000000000000000004170d000000000000000000000000000000000000000000000000000000000004170e000000000000000000000000000000000000000000000000000000000004170f0000000000000000000000000000000000000000000000000000000000041710000000000000000000000000000000000000000000000000000000000004171100000000000000000000000000000000000000000000000000000000000417120000000000000000000000000000000000000000000000000000000000041713000000000000000000000000000000000000000000000000000000000004171400000000000000000000000000000000000000000000000000000000000417150000000000000000000000000000000000000000000000000000000000041716000000000000000000000000000000000000000000000000000000000004171700000000000000000000000000000000000000000000000000000000000417180000000000000000000000000000000000000000000000000000000000041719000000000000000000000000000000000000000000000000000000000004171a000000000000000000000000000000000000000000000000000000000004171b000000000000000000000000000000000000000000000000000000000004171c000000000000000000000000000000000000000000000000000000000004171d000000000000000000000000000000000000000000000000000000000004171e000000000000000000000000000000000000000000000000000000000004170e000000000000000000000000000000000000000000000000000000000004170f0000000000000000000000000000000000000000000000000000000000041710000000000000000000000000000000000000000000000000000000000004171100000000000000000000000000000000000000000000000000000000000417120000000000000000000000000000000000000000000000000000000000041713000000000000000000000000000000000000000000000000000000000004171400000000000000000000000000000000000000000000000000000000000417150000000000000000000000000000000000000000000000000000000000041716000000000000000000000000000000000000000000000000000000000004171700000000000000000000000000000000000000000000000000000000000417180000000000000000000000000000000000000000000000000000000000041719000000000000000000000000000000000000000000000000000000000004171a000000000000000000000000000000000000000000000000000000000004171b000000000000000000000000000000000000000000000000000000000004171c000000000000000000000000000000000000000000000000000000000004171d000000000000000000000000000000000000000000000000000000000004171e000000000000000000000000000000000000000000000000000000000004171f000000000000000000000000000000000000000000000000000000000004170f0000000000000000000000000000000000000000000000000000000000041710000000000000000000000000000000000000000000000000000000000004171100000000000000000000000000000000000000000000000000000000000417120000000000000000000000000000000000000000000000000000000000041713000000000000000000000000000000000000000000000000000000000004171400000000000000000000000000000000000000000000000000000000000417150000000000000000000000000000000000000000000000000000000000041716000000000000000000000000000000000000000000000000000000000004171700000000000000000000000000000000000000000000000000000000000417180000000000000000000000000000000000000000000000000000000000041719000000000000000000000000000000000000000000000000000000000004171a000000000000000000000000000000000000000000000000000000000004171b000000000000000000000000000000000000000000000000000000000004171c000000000000000000000000000000000000000000000000000000000004171d000000000000000000000000000000000000000000000000000000000004171e000000000000000000000000000000000000000000000000000000000004171f00000000000000000000000000000000000000000000000000000000000417200000000000000000000000000000000000000000000000000000000000041710000000000000000000000000000000000000000000000000000000000004171100000000000000000000000000000000000000000000000000000000000417120000000000000000000000000000000000000000000000000000000000041713000000000000000000000000000000000000000000000000000000000004171400000000000000000000000000000000000000000000000000000000000417150000000000000000000000000000000000000000000000000000000000041716000000000000000000000000000000000000000000000000000000000004171700000000000000000000000000000000000000000000000000000000000417180000000000000000000000000000000000000000000000000000000000041719000000000000000000000000000000000000000000000000000000000004171a000000000000000000000000000000000000000000000000000000000004171b000000000000000000000000000000000000000000000000000000000004171c000000000000000000000000000000000000000000000000000000000004171d000000000000000000000000000000000000000000000000000000000004171e000000000000000000000000000000000000000000000000000000000004171f00000000000000000000000000000000000000000000000000000000000417200000000000000000000000000000000000000000000000000000000000041721000000000000000000000000000000000000000000000000000000000004171100000000000000000000000000000000000000000000000000000000000417120000000000000000000000000000000000000000000000000000000000041713000000000000000000000000000000000000000000000000000000000004171400000000000000000000000000000000000000000000000000000000000417150000000000000000000000000000000000000000000000000000000000041716000000000000000000000000000000000000000000000000000000000004171700000000000000000000000000000000000000000000000000000000000417180000000000000000000000000000000000000000000000000000000000041719000000000000000000000000000000000000000000000000000000000004171a000000000000000000000000000000000000000000000000000000000004171b000000000000000000000000000000000000000000000000000000000004171c000000000000000000000000000000000000000000000000000000000004171d000000000000000000000000000000000000000000000000000000000004171e000000000000000000000000000000000000000000000000000000000004171f00000000000000000000000000000000000000000000000000000000000417200000000000000000000000000000000000000000000000000000000000041721000000000000000000000000000000000000000000000000000000000004172200000000000000000000000000000000000000000000000000000000000417120000000000000000000000000000000000000000000000000000000000041713000000000000000000000000000000000000000000000000000000000004171400000000000000000000000000000000000000000000000000000000000417150000000000000000000000000000000000000000000000000000000000041716000000000000000000000000000000000000000000000000000000000004171700000000000000000000000000000000000000000000000000000000000417180000000000000000000000000000000000000000000000000000000000041719000000000000000000000000000000000000000000000000000000000004171a000000000000000000000000000000000000000000000000000000000004171b000000000000000000000000000000000000000000000000000000000004171c000000000000000000000000000000000000000000000000000000000004171d000000000000000000000000000000000000000000000000000000000004171e000000000000000000000000000000000000000000000000000000000004171f00000000000000000000000000000000000000000000000000000000000417200000000000000000000000000000000000000000000000000000000000041721000000000000000000000000000000000000000000000000000000000004172200000000000000000000000000000000000000000000000000000000000417230000000000000000000000000000000000000000000000000000000000041713000000000000000000000000000000000000000000000000000000000004171400000000000000000000000000000000000000000000000000000000000417150000000000000000000000000000000000000000000000000000000000041716000000000000000000000000000000000000000000000000000000000004171700000000000000000000000000000000000000000000000000000000000417180000000000000000000000000000000000000000000000000000000000041719000000000000000000000000000000000000000000000000000000000004171a000000000000000000000000000000000000000000000000000000000004171b000000000000000000000000000000000000000000000000000000000004171c000000000000000000000000000000000000000000000000000000000004171d000000000000000000000000000000000000000000000000000000000004171e000000000000000000000000000000000000000000000000000000000004171f00000000000000000000000000000000000000000000000000000000000417200000000000000000000000000000000000000000000000000000000000041721000000000000000000000000000000000000000000000000000000000004172200000000000000000000000000000000000000000000000000000000000417230000000000000000000000000000000000000000000000000000000000041724000000000000000000000000000000000000000000000000000000000004171400000000000000000000000000000000000000000000000000000000000417150000000000000000000000000000000000000000000000000000000000041716000000000000000000000000000000000000000000000000000000000004171700000000000000000000000000000000000000000000000000000000000417180000000000000000000000000000000000000000000000000000000000041719000000000000000000000000000000000000000000000000000000000004171a000000000000000000000000000000000000000000000000000000000004171b000000000000000000000000000000000000000000000000000000000004171c000000000000000000000000000000000000000000000000000000000004171d000000000000000000000000000000000000000000000000000000000004171e000000000000000000000000000000000000000000000000000000000004171f00000000000000000000000000000000000000000000000000000000000417200000000000000000000000000000000000000000000000000000000000041721000000000000000000000000000000000000000000000000000000000004172200000000000000000000000000000000000000000000000000000000000417230000000000000000000000000000000000000000000000000000000000041724000000000000000000000000000000000000000000000000000000000004172500000000000000000000000000000000000000000000000000000000000417150000000000000000000000000000000000000000000000000000000000041716000000000000000000000000000000000000000000000000000000000004171700000000000000000000000000000000000000000000000000000000000417180000000000000000000000000000000000000000000000000000000000041719000000000000000000000000000000000000000000000000000000000004171a000000000000000000000000000000000000000000000000000000000004171b000000000000000000000000000000000000000000000000000000000004171c000000000000000000000000000000000000000000000000000000000004171d000000000000000000000000000000000000000000000000000000000004171e000000000000000000000000000000000000000000000000000000000004171f00000000000000000000000000000000000000000000000000000000000417200000000000000000000000000000000000000000000000000000000000041721000000000000000000000000000000000000000000000000000000000004172200000000000000000000000000000000000000000000000000000000000417230000000000000000000000000000000000000000000000000000000000041724000000000000000000000000000000000000000000000000000000000004172500000000000000000000000000000000000000000000000000000000000417260000000000000000000000000000000000000000000000000000000000041716000000000000000000000000000000000000000000000000000000000004171700000000000000000000000000000000000000000000000000000000000417180000000000000000000000000000000000000000000000000000000000041719000000000000000000000000000000000000000000000000000000000004171a000000000000000000000000000000000000000000000000000000000004171b000000000000000000000000000000000000000000000000000000000004171c000000000000000000000000000000000000000000000000000000000004171d000000000000000000000000000000000000000000000000000000000004171e000000000000000000000000000000000000000000000000000000000004171f00000000000000000000000000000000000000000000000000000000000417200000000000000000000000000000000000000000000000000000000000041721000000000000000000000000000000000000000000000000000000000004172200000000000000000000000000000000000000000000000000000000000417230000000000000000000000000000000000000000000000000000000000041724000000000000000000000000000000000000000000000000000000000004172500000000000000000000000000000000000000000000000000000000000417260000000000000000000000000000000000000000000000000000000000041727000000000000000000000000000000000000000000000000000000000004171700000000000000000000000000000000000000000000000000000000000417180000000000000000000000000000000000000000000000000000000000041719000000000000000000000000000000000000000000000000000000000004171a000000000000000000000000000000000000000000000000000000000004171b000000000000000000000000000000000000000000000000000000000004171c000000000000000000000000000000000000000000000000000000000004171d000000000000000000000000000000000000000000000000000000000004171e000000000000000000000000000000000000000000000000000000000004171f00000000000000000000000000000000000000000000000000000000000417200000000000000000000000000000000000000000000000000000000000041721000000000000000000000000000000000000000000000000000000000004172200000000000000000000000000000000000000000000000000000000000417230000000000000000000000000000000000000000000000000000000000041724000000000000000000000000000000000000000000000000000000000004172500000000000000000000000000000000000000000000000000000000000417260000000000000000000000000000000000000000000000000000000000041727000000000000000000000000000000000000000000000000000000000004172800000000000000000000000000000000000000000000000000000000000417180000000000000000000000000000000000000000000000000000000000041719000000000000000000000000000000000000000000000000000000000004171a000000000000000000000000000000000000000000000000000000000004171b000000000000000000000000000000000000000000000000000000000004171c000000000000000000000000000000000000000000000000000000000004171d000000000000000000000000000000000000000000000000000000000004171e000000000000000000000000000000000000000000000000000000000004171f00000000000000000000000000000000000000000000000000000000000417200000000000000000000000000000000000000000000000000000000000041721000000000000000000000000000000000000000000000000000000000004172200000000000000000000000000000000000000000000000000000000000417230000000000000000000000000000000000000000000000000000000000041724000000000000000000000000000000000000000000000000000000000004172500000000000000000000000000000000000000000000000000000000000417260000000000000000000000000000000000000000000000000000000000041727000000000000000000000000000000000000000000000000000000000004172800000000000000000000000000000000000000000000000000000000000417290000000000000000000000000000000000000000000000000000000000041719000000000000000000000000000000000000000000000000000000000004171a000000000000000000000000000000000000000000000000000000000004171b000000000000000000000000000000000000000000000000000000000004171c000000000000000000000000000000000000000000000000000000000004171d000000000000000000000000000000000000000000000000000000000004171e000000000000000000000000000000000000000000000000000000000004171f0000000000000000000000000000000000000000000000000000000000041720000000000000000000000000000000000000000000000000000000000004172100000000000000000000000000000000000000000000000000000000000417220000000000000000000000000000000000000000000000000000000000041723000000000000000000000000000000000000000000000000000000000004172400000000000000000000000000000000000000000000000000000000000417250000000000000000000000000000000000000000000000000000000000041726000000000000000000000000000000000000000000000000000000000004172700000000000000000000000000000000000000000000000000000000000417280000000000000000000000000000000000000000000000000000000000041729000000000000000000000000000000000000000000000000000000000004172a000000000000000000000000000000000000000000000000000000000004171a000000000000000000000000000000000000000000000000000000000004171b000000000000000000000000000000000000000000000000000000000004171c000000000000000000000000000000000000000000000000000000000004171d000000000000000000000000000000000000000000000000000000000004171e000000000000000000000000000000000000000000000000000000000004171f0000000000000000000000000000000000000000000000000000000000041720000000000000000000000000000000000000000000000000000000000004172100000000000000000000000000000000000000000000000000000000000417220000000000000000000000000000000000000000000000000000000000041723000000000000000000000000000000000000000000000000000000000004172400000000000000000000000000000000000000000000000000000000000417250000000000000000000000000000000000000000000000000000000000041726000000000000000000000000000000000000000000000000000000000004172700000000000000000000000000000000000000000000000000000000000417280000000000000000000000000000000000000000000000000000000000041729000000000000000000000000000000000000000000000000000000000004172a000000000000000000000000000000000000000000000000000000000004172b000000000000000000000000000000000000000000000000000000000004171b000000000000000000000000000000000000000000000000000000000004171c000000000000000000000000000000000000000000000000000000000004171d000000000000000000000000000000000000000000000000000000000004171e000000000000000000000000000000000000000000000000000000000004171f0000000000000000000000000000000000000000000000000000000000041720000000000000000000000000000000000000000000000000000000000004172100000000000000000000000000000000000000000000000000000000000417220000000000000000000000000000000000000000000000000000000000041723000000000000000000000000000000000000000000000000000000000004172400000000000000000000000000000000000000000000000000000000000417250000000000000000000000000000000000000000000000000000000000041726000000000000000000000000000000000000000000000000000000000004172700000000000000000000000000000000000000000000000000000000000417280000000000000000000000000000000000000000000000000000000000041729000000000000000000000000000000000000000000000000000000000004172a000000000000000000000000000000000000000000000000000000000004172b000000000000000000000000000000000000000000000000000000000004172c000000000000000000000000000000000000000000000000000000000004171c000000000000000000000000000000000000000000000000000000000004171d000000000000000000000000000000000000000000000000000000000004171e000000000000000000000000000000000000000000000000000000000004171f0000000000000000000000000000000000000000000000000000000000041720000000000000000000000000000000000000000000000000000000000004172100000000000000000000000000000000000000000000000000000000000417220000000000000000000000000000000000000000000000000000000000041723000000000000000000000000000000000000000000000000000000000004172400000000000000000000000000000000000000000000000000000000000417250000000000000000000000000000000000000000000000000000000000041726000000000000000000000000000000000000000000000000000000000004172700000000000000000000000000000000000000000000000000000000000417280000000000000000000000000000000000000000000000000000000000041729000000000000000000000000000000000000000000000000000000000004172a000000000000000000000000000000000000000000000000000000000004172b000000000000000000000000000000000000000000000000000000000004172c000000000000000000000000000000000000000000000000000000000004172d000000000000000000000000000000000000000000000000000000000004171d000000000000000000000000000000000000000000000000000000000004171e000000000000000000000000000000000000000000000000000000000004171f0000000000000000000000000000000000000000000000000000000000041720000000000000000000000000000000000000000000000000000000000004172100000000000000000000000000000000000000000000000000000000000417220000000000000000000000000000000000000000000000000000000000041723000000000000000000000000000000000000000000000000000000000004172400000000000000000000000000000000000000000000000000000000000417250000000000000000000000000000000000000000000000000000000000041726000000000000000000000000000000000000000000000000000000000004172700000000000000000000000000000000000000000000000000000000000417280000000000000000000000000000000000000000000000000000000000041729000000000000000000000000000000000000000000000000000000000004172a000000000000000000000000000000000000000000000000000000000004172b000000000000000000000000000000000000000000000000000000000004172c000000000000000000000000000000000000000000000000000000000004172d000000000000000000000000000000000000000000000000000000000004172e000000000000000000000000000000000000000000000000000000000004171e000000000000000000000000000000000000000000000000000000000004171f0000000000000000000000000000000000000000000000000000000000041720000000000000000000000000000000000000000000000000000000000004172100000000000000000000000000000000000000000000000000000000000417220000000000000000000000000000000000000000000000000000000000041723000000000000000000000000000000000000000000000000000000000004172400000000000000000000000000000000000000000000000000000000000417250000000000000000000000000000000000000000000000000000000000041726000000000000000000000000000000000000000000000000000000000004172700000000000000000000000000000000000000000000000000000000000417280000000000000000000000000000000000000000000000000000000000041729000000000000000000000000000000000000000000000000000000000004172a000000000000000000000000000000000000000000000000000000000004172b000000000000000000000000000000000000000000000000000000000004172c000000000000000000000000000000000000000000000000000000000004172d000000000000000000000000000000000000000000000000000000000004172e000000000000000000000000000000000000000000000000000000000004172f000000000000000000000000000000000000000000000000000000000004171f0000000000000000000000000000000000000000000000000000000000041720000000000000000000000000000000000000000000000000000000000004172100000000000000000000000000000000000000000000000000000000000417220000000000000000000000000000000000000000000000000000000000041723000000000000000000000000000000000000000000000000000000000004172400000000000000000000000000000000000000000000000000000000000417250000000000000000000000000000000000000000000000000000000000041726000000000000000000000000000000000000000000000000000000000004172700000000000000000000000000000000000000000000000000000000000417280000000000000000000000000000000000000000000000000000000000041729000000000000000000000000000000000000000000000000000000000004172a000000000000000000000000000000000000000000000000000000000004172b000000000000000000000000000000000000000000000000000000000004172c000000000000000000000000000000000000000000000000000000000004172d000000000000000000000000000000000000000000000000000000000004172e000000000000000000000000000000000000000000000000000000000004172f00000000000000000000000000000000000000000000000000000000000417300000001c54bdc3dcd0023e7fdbc6452a4773ea79ca38e6e3fabba71fc84cb41966979b0000000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000081000000000000000000000000000000000000000000000000000000000000008100100000000000000000000000000000000000000000000000000000000000810020000000000000000000000000000000000000000000000000000000000081003000000000000000000000000000000000000000000000000000000000008100400000000000000000000000000000000000000000000000000000000000810050000000000000000000000000000000000000000000000000000000000081006000000000000000000000000000000000000000000000000000000000008100700000000000000000000000000000000000000000000000000000000000810080000000000000000000000000000000000000000000000000000000000081009000000000000000000000000000000000000000000000000000000000008100a000000000000000000000000000000000000000000000000000000000008100b000000000000000000000000000000000000000000000000000000000008100c000000000000000000000000000000000000000000000000000000000008100d000000000000000000000000000000000000000000000000000000000008100e000000000000000000000000000000000000000000000000000000000008100f0000000000000000000000000000000000000000000000000000000000081010000000000000000000000000000000000000000000000000000000000008101100000000000000000000000000000000000000000000000000000000000810120000000000000000000000000000000000000000000000000000000000081013000000000000000000000000000000000000000000000000000000000008101400000000000000000000000000000000000000000000000000000000000810150000000000000000000000000000000000000000000000000000000000081016000000000000000000000000000000000000000000000000000000000008101700000000000000000000000000000000000000000000000000000000000810180000000000000000000000000000000000000000000000000000000000081019000000000000000000000000000000000000000000000000000000000008101a000000000000000000000000000000000000000000000000000000000008101b000000000000000000000000000000000000000000000000000000000008101c000000000000000000000000000000000000000000000000000000000008101d000000000000000000000000000000000000000000000000000000000008101e000000000000000000000000000000000000000000000000000000000008101f0000000000000000000000000000000000000000000000000000000000081020000000000000000000000000000000000000000000000000000000000008102100000000000000000000000000000000000000000000000000000000000810220000000000000000000000000000000000000000000000000000000000081023000000000000000000000000000000000000000000000000000000000008102400000000000000000000000000000000000000000000000000000000000810250000000000000000000000000000000000000000000000000000000000081026000000000000000000000000000000000000000000000000000000000008102700000000000000000000000000000000000000000000000000000000000810280000000000000000000000000000000000000000000000000000000000081029000000000000000000000000000000000000000000000000000000000008102a000000000000000000000000000000000000000000000000000000000008102b000000000000000000000000000000000000000000000000000000000008102c000000000000000000000000000000000000000000000000000000000008102d000000000000000000000000000000000000000000000000000000000008102e000000000000000000000000000000000000000000000000000000000008102f0000000000000000000000000000000000000000000000000000000000081030000000000000000000000000000000000000000000000000000000000008103100000000000000000000000000000000000000000000000000000000000810320000000000000000000000000000000000000000000000000000000000081033000000000000000000000000000000000000000000000000000000000008103400000000000000000000000000000000000000000000000000000000000810350000000000000000000000000000000000000000000000000000000000081036000000000000000000000000000000000000000000000000000000000008103700000000000000000000000000000000000000000000000000000000000810380000000000000000000000000000000000000000000000000000000000081039000000000000000000000000000000000000000000000000000000000008103a000000000000000000000000000000000000000000000000000000000008103b000000000000000000000000000000000000000000000000000000000008103c000000000000000000000000000000000000000000000000000000000008103d000000000000000000000000000000000000000000000000000000000008103e000000000000000000000000000000000000000000000000000000000008103f4000000000000000000000000000000000000000000000000000000000000800010000000000000000000000000000000000000000000000000000000000081100000000000000000000000000000000000000000000000000000000000008110100000000000000000000000000000000000000000000000000000000000811020000000000000000000000000000000000000000000000000000000000081103000000000000000000000000000000000000000000000000000000000008110400000000000000000000000000000000000000000000000000000000000811050000000000000000000000000000000000000000000000000000000000081106000000000000000000000000000000000000000000000000000000000008110700000000000000000000000000000000000000000000000000000000000811080000000000000000000000000000000000000000000000000000000000081109000000000000000000000000000000000000000000000000000000000008110a000000000000000000000000000000000000000000000000000000000008110b000000000000000000000000000000000000000000000000000000000008110c000000000000000000000000000000000000000000000000000000000008110d000000000000000000000000000000000000000000000000000000000008110e000000000000000000000000000000000000000000000000000000000008110f0000000000000000000000000000000000000000000000000000000000081110000000000000000000000000000000000000000000000000000000000008111100000000000000000000000000000000000000000000000000000000000811120000000000000000000000000000000000000000000000000000000000081113000000000000000000000000000000000000000000000000000000000008111400000000000000000000000000000000000000000000000000000000000811150000000000000000000000000000000000000000000000000000000000081116000000000000000000000000000000000000000000000000000000000008111700000000000000000000000000000000000000000000000000000000000811180000000000000000000000000000000000000000000000000000000000081119000000000000000000000000000000000000000000000000000000000008111a000000000000000000000000000000000000000000000000000000000008111b000000000000000000000000000000000000000000000000000000000008111c000000000000000000000000000000000000000000000000000000000008111d000000000000000000000000000000000000000000000000000000000008111e000000000000000000000000000000000000000000000000000000000008111f0000000000000000000000000000000000000000000000000000000000081120000000000000000000000000000000000000000000000000000000000008112100000000000000000000000000000000000000000000000000000000000811220000000000000000000000000000000000000000000000000000000000081123000000000000000000000000000000000000000000000000000000000008112400000000000000000000000000000000000000000000000000000000000811250000000000000000000000000000000000000000000000000000000000081126000000000000000000000000000000000000000000000000000000000008112700000000000000000000000000000000000000000000000000000000000811280000000000000000000000000000000000000000000000000000000000081129000000000000000000000000000000000000000000000000000000000008112a000000000000000000000000000000000000000000000000000000000008112b000000000000000000000000000000000000000000000000000000000008112c000000000000000000000000000000000000000000000000000000000008112d000000000000000000000000000000000000000000000000000000000008112e000000000000000000000000000000000000000000000000000000000008112f0000000000000000000000000000000000000000000000000000000000081130000000000000000000000000000000000000000000000000000000000008113100000000000000000000000000000000000000000000000000000000000811320000000000000000000000000000000000000000000000000000000000081133000000000000000000000000000000000000000000000000000000000008113400000000000000000000000000000000000000000000000000000000000811350000000000000000000000000000000000000000000000000000000000081136000000000000000000000000000000000000000000000000000000000008113700000000000000000000000000000000000000000000000000000000000811380000000000000000000000000000000000000000000000000000000000081139000000000000000000000000000000000000000000000000000000000008113a000000000000000000000000000000000000000000000000000000000008113b000000000000000000000000000000000000000000000000000000000008113c000000000000000000000000000000000000000000000000000000000008113d000000000000000000000000000000000000000000000000000000000008113e08003c0472260790b0bdfb8ae4dc4d437e7686b73643f2198970d84e1059a5f13500bfd46275a318e438726ff2765ae154b63ab8a0daebcbed668a5f58a0e63dc1007906b9418dc758c6b4f8454c69baa48b7889b6b511d707abe8e2cb8f7c397300aeb60c4d65a44f122e58bf9565dfe2024b3ae654d5cf2e47ecb035d53c927000bf82e8cda20345f37bbb1de3932172324b57f0b98be483392697b168e3bba8000fb4bbad884ef30edf68e45a6cf2733fcf50310c69d7c1432b29af2c0aa8040023e1622d27fee3b4a40ab975ae0eb2e31619ef3dc76eb858f7fddb6a056131004689cd7007daf98dd3218b839b8e6a29f957154347b391fdb376bd0b344be2400000000000000000000000000000000000000000000000000000000000082000000000000000000000000000000000000000000000000000000000000008200a0000000000000000000000000000000000000000000000000000000000082001000000000000000000000000000000000000000000000000000000000008200b0000000000000000000000000000000000000000000000000000000000082002000000000000000000000000000000000000000000000000000000000008200c0000000000000000000000000000000000000000000000000000000000082003000000000000000000000000000000000000000000000000000000000008200d0000000000000000000000000000000000000000000000000000000000082004000000000000000000000000000000000000000000000000000000000008200e0000000000000000000000000000000000000000000000000000000000082005000000000000000000000000000000000000000000000000000000000008200f00000000000000000000000000000000000000000000000000000000000820060000000000000000000000000000000000000000000000000000000000082010000000000000000000000000000000000000000000000000000000000008200700000000000000000000000000000000000000000000000000000000000820110000000000000000000000000000000000000000000000000000000000082008000000000000000000000000000000000000000000000000000000000008201200000000000000000000000000000000000000000000000000000000000820090000000000000000000000000000000000000000000000000000000000082013000000000000000000000000000000000000000000000000000000000008200a0000000000000000000000000000000000000000000000000000000000082014000000000000000000000000000000000000000000000000000000000008200b0000000000000000000000000000000000000000000000000000000000082015000000000000000000000000000000000000000000000000000000000008200c0000000000000000000000000000000000000000000000000000000000082016000000000000000000000000000000000000000000000000000000000008200d0000000000000000000000000000000000000000000000000000000000082017000000000000000000000000000000000000000000000000000000000008200e0000000000000000000000000000000000000000000000000000000000082018000000000000000000000000000000000000000000000000000000000008200f00000000000000000000000000000000000000000000000000000000000820190000000000000000000000000000000000000000000000000000000000082010000000000000000000000000000000000000000000000000000000000008201a0000000000000000000000000000000000000000000000000000000000082011000000000000000000000000000000000000000000000000000000000008201b0000000000000000000000000000000000000000000000000000000000082012000000000000000000000000000000000000000000000000000000000008201c0000000000000000000000000000000000000000000000000000000000082013000000000000000000000000000000000000000000000000000000000008201d0000000000000000000000000000000000000000000000000000000000082014000000000000000000000000000000000000000000000000000000000008201e0000000000000000000000000000000000000000000000000000000000082015000000000000000000000000000000000000000000000000000000000008201f00000000000000000000000000000000000000000000000000000000000820160000000000000000000000000000000000000000000000000000000000082020000000000000000000000000000000000000000000000000000000000008201700000000000000000000000000000000000000000000000000000000000820210000000000000000000000000000000000000000000000000000000000082018000000000000000000000000000000000000000000000000000000000008202200000000000000000000000000000000000000000000000000000000000820190000000000000000000000000000000000000000000000000000000000082023000000000000000000000000000000000000000000000000000000000008201a0000000000000000000000000000000000000000000000000000000000082024000000000000000000000000000000000000000000000000000000000008201b0000000000000000000000000000000000000000000000000000000000082025000000000000000000000000000000000000000000000000000000000008201c0000000000000000000000000000000000000000000000000000000000082026000000000000000000000000000000000000000000000000000000000008201d0000000000000000000000000000000000000000000000000000000000082027000000000000000000000000000000000000000000000000000000000008201e0000000000000000000000000000000000000000000000000000000000082028000000000000000000000000000000000000000000000000000000000008201f00000000000000000000000000000000000000000000000000000000000820290000000000000000000000000000000000000000000000000000000000082020000000000000000000000000000000000000000000000000000000000008202a0000000000000000000000000000000000000000000000000000000000082021000000000000000000000000000000000000000000000000000000000008202b0000000000000000000000000000000000000000000000000000000000082022000000000000000000000000000000000000000000000000000000000008202c0000000000000000000000000000000000000000000000000000000000082023000000000000000000000000000000000000000000000000000000000008202d0000000000000000000000000000000000000000000000000000000000082024000000000000000000000000000000000000000000000000000000000008202e0000000000000000000000000000000000000000000000000000000000082025000000000000000000000000000000000000000000000000000000000008202f00000000000000000000000000000000000000000000000000000000000820260000000000000000000000000000000000000000000000000000000000082030000000000000000000000000000000000000000000000000000000000008202700000000000000000000000000000000000000000000000000000000000820310000000000000000000000000000000000000000000000000000000000082028000000000000000000000000000000000000000000000000000000000008203200000000000000000000000000000000000000000000000000000000000820290000000000000000000000000000000000000000000000000000000000082033000000000000000000000000000000000000000000000000000000000008202a0000000000000000000000000000000000000000000000000000000000082034000000000000000000000000000000000000000000000000000000000008202b0000000000000000000000000000000000000000000000000000000000082035000000000000000000000000000000000000000000000000000000000008202c0000000000000000000000000000000000000000000000000000000000082036000000000000000000000000000000000000000000000000000000000008202d0000000000000000000000000000000000000000000000000000000000082037000000000000000000000000000000000000000000000000000000000008202e0000000000000000000000000000000000000000000000000000000000082038000000000000000000000000000000000000000000000000000000000008202f00000000000000000000000000000000000000000000000000000000000820390000000000000000000000000000000000000000000000000000000000082030000000000000000000000000000000000000000000000000000000000008203a0000000000000000000000000000000000000000000000000000000000082031000000000000000000000000000000000000000000000000000000000008203b0000000000000000000000000000000000000000000000000000000000082032000000000000000000000000000000000000000000000000000000000008203c0000000000000000000000000000000000000000000000000000000000082033000000000000000000000000000000000000000000000000000000000008203d0000000000000000000000000000000000000000000000000000000000082034000000000000000000000000000000000000000000000000000000000008203e0000000000000000000000000000000000000000000000000000000000082035000000000000000000000000000000000000000000000000000000000008203f00000000000000000000000000000000000000000000000000000000000820360000000000000000000000000000000000000000000000000000000000082040000000000000000000000000000000000000000000000000000000000008203700000000000000000000000000000000000000000000000000000000000820410000000000000000000000000000000000000000000000000000000000082038000000000000000000000000000000000000000000000000000000000008204200000000000000000000000000000000000000000000000000000000000820390000000000000000000000000000000000000000000000000000000000082043000000000000000000000000000000000000000000000000000000000008203a0000000000000000000000000000000000000000000000000000000000082044000000000000000000000000000000000000000000000000000000000008203b0000000000000000000000000000000000000000000000000000000000082045000000000000000000000000000000000000000000000000000000000008203c0000000000000000000000000000000000000000000000000000000000082046000000000000000000000000000000000000000000000000000000000008203d0000000000000000000000000000000000000000000000000000000000082047000000000000000000000000000000000000000000000000000000000008203e0000000000000000000000000000000000000000000000000000000000082048000000000000000000000000000000000000000000000000000000000008203f0000000000000000000000000000000000000000000000000000000000082049200000000000000000000000000000000000000000000000000000000000081700000000000000000000000000000000000000000000000000000000000008170100000000000000000000000000000000000000000000000000000000000817020000000000000000000000000000000000000000000000000000000000081703000000000000000000000000000000000000000000000000000000000008170400000000000000000000000000000000000000000000000000000000000817050000000000000000000000000000000000000000000000000000000000081706000000000000000000000000000000000000000000000000000000000008170700000000000000000000000000000000000000000000000000000000000817080000000000000000000000000000000000000000000000000000000000081709000000000000000000000000000000000000000000000000000000000008170a000000000000000000000000000000000000000000000000000000000008170b000000000000000000000000000000000000000000000000000000000008170c000000000000000000000000000000000000000000000000000000000008170d000000000000000000000000000000000000000000000000000000000008170e000000000000000000000000000000000000000000000000000000000008170f00000000000000000000000000000000000000000000000000000000000817100000000000000000000000000000000000000000000000000000000000081711000000000000000000000000000000000000000000000000000000000008170100000000000000000000000000000000000000000000000000000000000817020000000000000000000000000000000000000000000000000000000000081703000000000000000000000000000000000000000000000000000000000008170400000000000000000000000000000000000000000000000000000000000817050000000000000000000000000000000000000000000000000000000000081706000000000000000000000000000000000000000000000000000000000008170700000000000000000000000000000000000000000000000000000000000817080000000000000000000000000000000000000000000000000000000000081709000000000000000000000000000000000000000000000000000000000008170a000000000000000000000000000000000000000000000000000000000008170b000000000000000000000000000000000000000000000000000000000008170c000000000000000000000000000000000000000000000000000000000008170d000000000000000000000000000000000000000000000000000000000008170e000000000000000000000000000000000000000000000000000000000008170f00000000000000000000000000000000000000000000000000000000000817100000000000000000000000000000000000000000000000000000000000081711000000000000000000000000000000000000000000000000000000000008171200000000000000000000000000000000000000000000000000000000000817020000000000000000000000000000000000000000000000000000000000081703000000000000000000000000000000000000000000000000000000000008170400000000000000000000000000000000000000000000000000000000000817050000000000000000000000000000000000000000000000000000000000081706000000000000000000000000000000000000000000000000000000000008170700000000000000000000000000000000000000000000000000000000000817080000000000000000000000000000000000000000000000000000000000081709000000000000000000000000000000000000000000000000000000000008170a000000000000000000000000000000000000000000000000000000000008170b000000000000000000000000000000000000000000000000000000000008170c000000000000000000000000000000000000000000000000000000000008170d000000000000000000000000000000000000000000000000000000000008170e000000000000000000000000000000000000000000000000000000000008170f00000000000000000000000000000000000000000000000000000000000817100000000000000000000000000000000000000000000000000000000000081711000000000000000000000000000000000000000000000000000000000008171200000000000000000000000000000000000000000000000000000000000817130000000000000000000000000000000000000000000000000000000000081703000000000000000000000000000000000000000000000000000000000008170400000000000000000000000000000000000000000000000000000000000817050000000000000000000000000000000000000000000000000000000000081706000000000000000000000000000000000000000000000000000000000008170700000000000000000000000000000000000000000000000000000000000817080000000000000000000000000000000000000000000000000000000000081709000000000000000000000000000000000000000000000000000000000008170a000000000000000000000000000000000000000000000000000000000008170b000000000000000000000000000000000000000000000000000000000008170c000000000000000000000000000000000000000000000000000000000008170d000000000000000000000000000000000000000000000000000000000008170e000000000000000000000000000000000000000000000000000000000008170f00000000000000000000000000000000000000000000000000000000000817100000000000000000000000000000000000000000000000000000000000081711000000000000000000000000000000000000000000000000000000000008171200000000000000000000000000000000000000000000000000000000000817130000000000000000000000000000000000000000000000000000000000081714000000000000000000000000000000000000000000000000000000000008170400000000000000000000000000000000000000000000000000000000000817050000000000000000000000000000000000000000000000000000000000081706000000000000000000000000000000000000000000000000000000000008170700000000000000000000000000000000000000000000000000000000000817080000000000000000000000000000000000000000000000000000000000081709000000000000000000000000000000000000000000000000000000000008170a000000000000000000000000000000000000000000000000000000000008170b000000000000000000000000000000000000000000000000000000000008170c000000000000000000000000000000000000000000000000000000000008170d000000000000000000000000000000000000000000000000000000000008170e000000000000000000000000000000000000000000000000000000000008170f00000000000000000000000000000000000000000000000000000000000817100000000000000000000000000000000000000000000000000000000000081711000000000000000000000000000000000000000000000000000000000008171200000000000000000000000000000000000000000000000000000000000817130000000000000000000000000000000000000000000000000000000000081714000000000000000000000000000000000000000000000000000000000008171500000000000000000000000000000000000000000000000000000000000817050000000000000000000000000000000000000000000000000000000000081706000000000000000000000000000000000000000000000000000000000008170700000000000000000000000000000000000000000000000000000000000817080000000000000000000000000000000000000000000000000000000000081709000000000000000000000000000000000000000000000000000000000008170a000000000000000000000000000000000000000000000000000000000008170b000000000000000000000000000000000000000000000000000000000008170c000000000000000000000000000000000000000000000000000000000008170d000000000000000000000000000000000000000000000000000000000008170e000000000000000000000000000000000000000000000000000000000008170f00000000000000000000000000000000000000000000000000000000000817100000000000000000000000000000000000000000000000000000000000081711000000000000000000000000000000000000000000000000000000000008171200000000000000000000000000000000000000000000000000000000000817130000000000000000000000000000000000000000000000000000000000081714000000000000000000000000000000000000000000000000000000000008171500000000000000000000000000000000000000000000000000000000000817160000000000000000000000000000000000000000000000000000000000081706000000000000000000000000000000000000000000000000000000000008170700000000000000000000000000000000000000000000000000000000000817080000000000000000000000000000000000000000000000000000000000081709000000000000000000000000000000000000000000000000000000000008170a000000000000000000000000000000000000000000000000000000000008170b000000000000000000000000000000000000000000000000000000000008170c000000000000000000000000000000000000000000000000000000000008170d000000000000000000000000000000000000000000000000000000000008170e000000000000000000000000000000000000000000000000000000000008170f00000000000000000000000000000000000000000000000000000000000817100000000000000000000000000000000000000000000000000000000000081711000000000000000000000000000000000000000000000000000000000008171200000000000000000000000000000000000000000000000000000000000817130000000000000000000000000000000000000000000000000000000000081714000000000000000000000000000000000000000000000000000000000008171500000000000000000000000000000000000000000000000000000000000817160000000000000000000000000000000000000000000000000000000000081717000000000000000000000000000000000000000000000000000000000008170700000000000000000000000000000000000000000000000000000000000817080000000000000000000000000000000000000000000000000000000000081709000000000000000000000000000000000000000000000000000000000008170a000000000000000000000000000000000000000000000000000000000008170b000000000000000000000000000000000000000000000000000000000008170c000000000000000000000000000000000000000000000000000000000008170d000000000000000000000000000000000000000000000000000000000008170e000000000000000000000000000000000000000000000000000000000008170f00000000000000000000000000000000000000000000000000000000000817100000000000000000000000000000000000000000000000000000000000081711000000000000000000000000000000000000000000000000000000000008171200000000000000000000000000000000000000000000000000000000000817130000000000000000000000000000000000000000000000000000000000081714000000000000000000000000000000000000000000000000000000000008171500000000000000000000000000000000000000000000000000000000000817160000000000000000000000000000000000000000000000000000000000081717000000000000000000000000000000000000000000000000000000000008171800000000000000000000000000000000000000000000000000000000000817080000000000000000000000000000000000000000000000000000000000081709000000000000000000000000000000000000000000000000000000000008170a000000000000000000000000000000000000000000000000000000000008170b000000000000000000000000000000000000000000000000000000000008170c000000000000000000000000000000000000000000000000000000000008170d000000000000000000000000000000000000000000000000000000000008170e000000000000000000000000000000000000000000000000000000000008170f00000000000000000000000000000000000000000000000000000000000817100000000000000000000000000000000000000000000000000000000000081711000000000000000000000000000000000000000000000000000000000008171200000000000000000000000000000000000000000000000000000000000817130000000000000000000000000000000000000000000000000000000000081714000000000000000000000000000000000000000000000000000000000008171500000000000000000000000000000000000000000000000000000000000817160000000000000000000000000000000000000000000000000000000000081717000000000000000000000000000000000000000000000000000000000008171800000000000000000000000000000000000000000000000000000000000817190000000000000000000000000000000000000000000000000000000000081709000000000000000000000000000000000000000000000000000000000008170a000000000000000000000000000000000000000000000000000000000008170b000000000000000000000000000000000000000000000000000000000008170c000000000000000000000000000000000000000000000000000000000008170d000000000000000000000000000000000000000000000000000000000008170e000000000000000000000000000000000000000000000000000000000008170f0000000000000000000000000000000000000000000000000000000000081710000000000000000000000000000000000000000000000000000000000008171100000000000000000000000000000000000000000000000000000000000817120000000000000000000000000000000000000000000000000000000000081713000000000000000000000000000000000000000000000000000000000008171400000000000000000000000000000000000000000000000000000000000817150000000000000000000000000000000000000000000000000000000000081716000000000000000000000000000000000000000000000000000000000008171700000000000000000000000000000000000000000000000000000000000817180000000000000000000000000000000000000000000000000000000000081719000000000000000000000000000000000000000000000000000000000008171a000000000000000000000000000000000000000000000000000000000008170a000000000000000000000000000000000000000000000000000000000008170b000000000000000000000000000000000000000000000000000000000008170c000000000000000000000000000000000000000000000000000000000008170d000000000000000000000000000000000000000000000000000000000008170e000000000000000000000000000000000000000000000000000000000008170f0000000000000000000000000000000000000000000000000000000000081710000000000000000000000000000000000000000000000000000000000008171100000000000000000000000000000000000000000000000000000000000817120000000000000000000000000000000000000000000000000000000000081713000000000000000000000000000000000000000000000000000000000008171400000000000000000000000000000000000000000000000000000000000817150000000000000000000000000000000000000000000000000000000000081716000000000000000000000000000000000000000000000000000000000008171700000000000000000000000000000000000000000000000000000000000817180000000000000000000000000000000000000000000000000000000000081719000000000000000000000000000000000000000000000000000000000008171a000000000000000000000000000000000000000000000000000000000008171b000000000000000000000000000000000000000000000000000000000008170b000000000000000000000000000000000000000000000000000000000008170c000000000000000000000000000000000000000000000000000000000008170d000000000000000000000000000000000000000000000000000000000008170e000000000000000000000000000000000000000000000000000000000008170f0000000000000000000000000000000000000000000000000000000000081710000000000000000000000000000000000000000000000000000000000008171100000000000000000000000000000000000000000000000000000000000817120000000000000000000000000000000000000000000000000000000000081713000000000000000000000000000000000000000000000000000000000008171400000000000000000000000000000000000000000000000000000000000817150000000000000000000000000000000000000000000000000000000000081716000000000000000000000000000000000000000000000000000000000008171700000000000000000000000000000000000000000000000000000000000817180000000000000000000000000000000000000000000000000000000000081719000000000000000000000000000000000000000000000000000000000008171a000000000000000000000000000000000000000000000000000000000008171b000000000000000000000000000000000000000000000000000000000008171c000000000000000000000000000000000000000000000000000000000008170c000000000000000000000000000000000000000000000000000000000008170d000000000000000000000000000000000000000000000000000000000008170e000000000000000000000000000000000000000000000000000000000008170f0000000000000000000000000000000000000000000000000000000000081710000000000000000000000000000000000000000000000000000000000008171100000000000000000000000000000000000000000000000000000000000817120000000000000000000000000000000000000000000000000000000000081713000000000000000000000000000000000000000000000000000000000008171400000000000000000000000000000000000000000000000000000000000817150000000000000000000000000000000000000000000000000000000000081716000000000000000000000000000000000000000000000000000000000008171700000000000000000000000000000000000000000000000000000000000817180000000000000000000000000000000000000000000000000000000000081719000000000000000000000000000000000000000000000000000000000008171a000000000000000000000000000000000000000000000000000000000008171b000000000000000000000000000000000000000000000000000000000008171c000000000000000000000000000000000000000000000000000000000008171d000000000000000000000000000000000000000000000000000000000008170d000000000000000000000000000000000000000000000000000000000008170e000000000000000000000000000000000000000000000000000000000008170f0000000000000000000000000000000000000000000000000000000000081710000000000000000000000000000000000000000000000000000000000008171100000000000000000000000000000000000000000000000000000000000817120000000000000000000000000000000000000000000000000000000000081713000000000000000000000000000000000000000000000000000000000008171400000000000000000000000000000000000000000000000000000000000817150000000000000000000000000000000000000000000000000000000000081716000000000000000000000000000000000000000000000000000000000008171700000000000000000000000000000000000000000000000000000000000817180000000000000000000000000000000000000000000000000000000000081719000000000000000000000000000000000000000000000000000000000008171a000000000000000000000000000000000000000000000000000000000008171b000000000000000000000000000000000000000000000000000000000008171c000000000000000000000000000000000000000000000000000000000008171d000000000000000000000000000000000000000000000000000000000008171e000000000000000000000000000000000000000000000000000000000008170e000000000000000000000000000000000000000000000000000000000008170f0000000000000000000000000000000000000000000000000000000000081710000000000000000000000000000000000000000000000000000000000008171100000000000000000000000000000000000000000000000000000000000817120000000000000000000000000000000000000000000000000000000000081713000000000000000000000000000000000000000000000000000000000008171400000000000000000000000000000000000000000000000000000000000817150000000000000000000000000000000000000000000000000000000000081716000000000000000000000000000000000000000000000000000000000008171700000000000000000000000000000000000000000000000000000000000817180000000000000000000000000000000000000000000000000000000000081719000000000000000000000000000000000000000000000000000000000008171a000000000000000000000000000000000000000000000000000000000008171b000000000000000000000000000000000000000000000000000000000008171c000000000000000000000000000000000000000000000000000000000008171d000000000000000000000000000000000000000000000000000000000008171e000000000000000000000000000000000000000000000000000000000008171f000000000000000000000000000000000000000000000000000000000008170f0000000000000000000000000000000000000000000000000000000000081710000000000000000000000000000000000000000000000000000000000008171100000000000000000000000000000000000000000000000000000000000817120000000000000000000000000000000000000000000000000000000000081713000000000000000000000000000000000000000000000000000000000008171400000000000000000000000000000000000000000000000000000000000817150000000000000000000000000000000000000000000000000000000000081716000000000000000000000000000000000000000000000000000000000008171700000000000000000000000000000000000000000000000000000000000817180000000000000000000000000000000000000000000000000000000000081719000000000000000000000000000000000000000000000000000000000008171a000000000000000000000000000000000000000000000000000000000008171b000000000000000000000000000000000000000000000000000000000008171c000000000000000000000000000000000000000000000000000000000008171d000000000000000000000000000000000000000000000000000000000008171e000000000000000000000000000000000000000000000000000000000008171f00000000000000000000000000000000000000000000000000000000000817200000000000000000000000000000000000000000000000000000000000081710000000000000000000000000000000000000000000000000000000000008171100000000000000000000000000000000000000000000000000000000000817120000000000000000000000000000000000000000000000000000000000081713000000000000000000000000000000000000000000000000000000000008171400000000000000000000000000000000000000000000000000000000000817150000000000000000000000000000000000000000000000000000000000081716000000000000000000000000000000000000000000000000000000000008171700000000000000000000000000000000000000000000000000000000000817180000000000000000000000000000000000000000000000000000000000081719000000000000000000000000000000000000000000000000000000000008171a000000000000000000000000000000000000000000000000000000000008171b000000000000000000000000000000000000000000000000000000000008171c000000000000000000000000000000000000000000000000000000000008171d000000000000000000000000000000000000000000000000000000000008171e000000000000000000000000000000000000000000000000000000000008171f00000000000000000000000000000000000000000000000000000000000817200000000000000000000000000000000000000000000000000000000000081721000000000000000000000000000000000000000000000000000000000008171100000000000000000000000000000000000000000000000000000000000817120000000000000000000000000000000000000000000000000000000000081713000000000000000000000000000000000000000000000000000000000008171400000000000000000000000000000000000000000000000000000000000817150000000000000000000000000000000000000000000000000000000000081716000000000000000000000000000000000000000000000000000000000008171700000000000000000000000000000000000000000000000000000000000817180000000000000000000000000000000000000000000000000000000000081719000000000000000000000000000000000000000000000000000000000008171a000000000000000000000000000000000000000000000000000000000008171b000000000000000000000000000000000000000000000000000000000008171c000000000000000000000000000000000000000000000000000000000008171d000000000000000000000000000000000000000000000000000000000008171e000000000000000000000000000000000000000000000000000000000008171f00000000000000000000000000000000000000000000000000000000000817200000000000000000000000000000000000000000000000000000000000081721000000000000000000000000000000000000000000000000000000000008172200000000000000000000000000000000000000000000000000000000000817120000000000000000000000000000000000000000000000000000000000081713000000000000000000000000000000000000000000000000000000000008171400000000000000000000000000000000000000000000000000000000000817150000000000000000000000000000000000000000000000000000000000081716000000000000000000000000000000000000000000000000000000000008171700000000000000000000000000000000000000000000000000000000000817180000000000000000000000000000000000000000000000000000000000081719000000000000000000000000000000000000000000000000000000000008171a000000000000000000000000000000000000000000000000000000000008171b000000000000000000000000000000000000000000000000000000000008171c000000000000000000000000000000000000000000000000000000000008171d000000000000000000000000000000000000000000000000000000000008171e000000000000000000000000000000000000000000000000000000000008171f00000000000000000000000000000000000000000000000000000000000817200000000000000000000000000000000000000000000000000000000000081721000000000000000000000000000000000000000000000000000000000008172200000000000000000000000000000000000000000000000000000000000817230000000000000000000000000000000000000000000000000000000000081713000000000000000000000000000000000000000000000000000000000008171400000000000000000000000000000000000000000000000000000000000817150000000000000000000000000000000000000000000000000000000000081716000000000000000000000000000000000000000000000000000000000008171700000000000000000000000000000000000000000000000000000000000817180000000000000000000000000000000000000000000000000000000000081719000000000000000000000000000000000000000000000000000000000008171a000000000000000000000000000000000000000000000000000000000008171b000000000000000000000000000000000000000000000000000000000008171c000000000000000000000000000000000000000000000000000000000008171d000000000000000000000000000000000000000000000000000000000008171e000000000000000000000000000000000000000000000000000000000008171f00000000000000000000000000000000000000000000000000000000000817200000000000000000000000000000000000000000000000000000000000081721000000000000000000000000000000000000000000000000000000000008172200000000000000000000000000000000000000000000000000000000000817230000000000000000000000000000000000000000000000000000000000081724000000000000000000000000000000000000000000000000000000000008171400000000000000000000000000000000000000000000000000000000000817150000000000000000000000000000000000000000000000000000000000081716000000000000000000000000000000000000000000000000000000000008171700000000000000000000000000000000000000000000000000000000000817180000000000000000000000000000000000000000000000000000000000081719000000000000000000000000000000000000000000000000000000000008171a000000000000000000000000000000000000000000000000000000000008171b000000000000000000000000000000000000000000000000000000000008171c000000000000000000000000000000000000000000000000000000000008171d000000000000000000000000000000000000000000000000000000000008171e000000000000000000000000000000000000000000000000000000000008171f00000000000000000000000000000000000000000000000000000000000817200000000000000000000000000000000000000000000000000000000000081721000000000000000000000000000000000000000000000000000000000008172200000000000000000000000000000000000000000000000000000000000817230000000000000000000000000000000000000000000000000000000000081724000000000000000000000000000000000000000000000000000000000008172500000000000000000000000000000000000000000000000000000000000817150000000000000000000000000000000000000000000000000000000000081716000000000000000000000000000000000000000000000000000000000008171700000000000000000000000000000000000000000000000000000000000817180000000000000000000000000000000000000000000000000000000000081719000000000000000000000000000000000000000000000000000000000008171a000000000000000000000000000000000000000000000000000000000008171b000000000000000000000000000000000000000000000000000000000008171c000000000000000000000000000000000000000000000000000000000008171d000000000000000000000000000000000000000000000000000000000008171e000000000000000000000000000000000000000000000000000000000008171f00000000000000000000000000000000000000000000000000000000000817200000000000000000000000000000000000000000000000000000000000081721000000000000000000000000000000000000000000000000000000000008172200000000000000000000000000000000000000000000000000000000000817230000000000000000000000000000000000000000000000000000000000081724000000000000000000000000000000000000000000000000000000000008172500000000000000000000000000000000000000000000000000000000000817260000000000000000000000000000000000000000000000000000000000081716000000000000000000000000000000000000000000000000000000000008171700000000000000000000000000000000000000000000000000000000000817180000000000000000000000000000000000000000000000000000000000081719000000000000000000000000000000000000000000000000000000000008171a000000000000000000000000000000000000000000000000000000000008171b000000000000000000000000000000000000000000000000000000000008171c000000000000000000000000000000000000000000000000000000000008171d000000000000000000000000000000000000000000000000000000000008171e000000000000000000000000000000000000000000000000000000000008171f00000000000000000000000000000000000000000000000000000000000817200000000000000000000000000000000000000000000000000000000000081721000000000000000000000000000000000000000000000000000000000008172200000000000000000000000000000000000000000000000000000000000817230000000000000000000000000000000000000000000000000000000000081724000000000000000000000000000000000000000000000000000000000008172500000000000000000000000000000000000000000000000000000000000817260000000000000000000000000000000000000000000000000000000000081727000000000000000000000000000000000000000000000000000000000008171700000000000000000000000000000000000000000000000000000000000817180000000000000000000000000000000000000000000000000000000000081719000000000000000000000000000000000000000000000000000000000008171a000000000000000000000000000000000000000000000000000000000008171b000000000000000000000000000000000000000000000000000000000008171c000000000000000000000000000000000000000000000000000000000008171d000000000000000000000000000000000000000000000000000000000008171e000000000000000000000000000000000000000000000000000000000008171f00000000000000000000000000000000000000000000000000000000000817200000000000000000000000000000000000000000000000000000000000081721000000000000000000000000000000000000000000000000000000000008172200000000000000000000000000000000000000000000000000000000000817230000000000000000000000000000000000000000000000000000000000081724000000000000000000000000000000000000000000000000000000000008172500000000000000000000000000000000000000000000000000000000000817260000000000000000000000000000000000000000000000000000000000081727000000000000000000000000000000000000000000000000000000000008172800000000000000000000000000000000000000000000000000000000000817180000000000000000000000000000000000000000000000000000000000081719000000000000000000000000000000000000000000000000000000000008171a000000000000000000000000000000000000000000000000000000000008171b000000000000000000000000000000000000000000000000000000000008171c000000000000000000000000000000000000000000000000000000000008171d000000000000000000000000000000000000000000000000000000000008171e000000000000000000000000000000000000000000000000000000000008171f00000000000000000000000000000000000000000000000000000000000817200000000000000000000000000000000000000000000000000000000000081721000000000000000000000000000000000000000000000000000000000008172200000000000000000000000000000000000000000000000000000000000817230000000000000000000000000000000000000000000000000000000000081724000000000000000000000000000000000000000000000000000000000008172500000000000000000000000000000000000000000000000000000000000817260000000000000000000000000000000000000000000000000000000000081727000000000000000000000000000000000000000000000000000000000008172800000000000000000000000000000000000000000000000000000000000817290000000000000000000000000000000000000000000000000000000000081719000000000000000000000000000000000000000000000000000000000008171a000000000000000000000000000000000000000000000000000000000008171b000000000000000000000000000000000000000000000000000000000008171c000000000000000000000000000000000000000000000000000000000008171d000000000000000000000000000000000000000000000000000000000008171e000000000000000000000000000000000000000000000000000000000008171f0000000000000000000000000000000000000000000000000000000000081720000000000000000000000000000000000000000000000000000000000008172100000000000000000000000000000000000000000000000000000000000817220000000000000000000000000000000000000000000000000000000000081723000000000000000000000000000000000000000000000000000000000008172400000000000000000000000000000000000000000000000000000000000817250000000000000000000000000000000000000000000000000000000000081726000000000000000000000000000000000000000000000000000000000008172700000000000000000000000000000000000000000000000000000000000817280000000000000000000000000000000000000000000000000000000000081729000000000000000000000000000000000000000000000000000000000008172a000000000000000000000000000000000000000000000000000000000008171a000000000000000000000000000000000000000000000000000000000008171b000000000000000000000000000000000000000000000000000000000008171c000000000000000000000000000000000000000000000000000000000008171d000000000000000000000000000000000000000000000000000000000008171e000000000000000000000000000000000000000000000000000000000008171f0000000000000000000000000000000000000000000000000000000000081720000000000000000000000000000000000000000000000000000000000008172100000000000000000000000000000000000000000000000000000000000817220000000000000000000000000000000000000000000000000000000000081723000000000000000000000000000000000000000000000000000000000008172400000000000000000000000000000000000000000000000000000000000817250000000000000000000000000000000000000000000000000000000000081726000000000000000000000000000000000000000000000000000000000008172700000000000000000000000000000000000000000000000000000000000817280000000000000000000000000000000000000000000000000000000000081729000000000000000000000000000000000000000000000000000000000008172a000000000000000000000000000000000000000000000000000000000008172b000000000000000000000000000000000000000000000000000000000008171b000000000000000000000000000000000000000000000000000000000008171c000000000000000000000000000000000000000000000000000000000008171d000000000000000000000000000000000000000000000000000000000008171e000000000000000000000000000000000000000000000000000000000008171f0000000000000000000000000000000000000000000000000000000000081720000000000000000000000000000000000000000000000000000000000008172100000000000000000000000000000000000000000000000000000000000817220000000000000000000000000000000000000000000000000000000000081723000000000000000000000000000000000000000000000000000000000008172400000000000000000000000000000000000000000000000000000000000817250000000000000000000000000000000000000000000000000000000000081726000000000000000000000000000000000000000000000000000000000008172700000000000000000000000000000000000000000000000000000000000817280000000000000000000000000000000000000000000000000000000000081729000000000000000000000000000000000000000000000000000000000008172a000000000000000000000000000000000000000000000000000000000008172b000000000000000000000000000000000000000000000000000000000008172c000000000000000000000000000000000000000000000000000000000008171c000000000000000000000000000000000000000000000000000000000008171d000000000000000000000000000000000000000000000000000000000008171e000000000000000000000000000000000000000000000000000000000008171f0000000000000000000000000000000000000000000000000000000000081720000000000000000000000000000000000000000000000000000000000008172100000000000000000000000000000000000000000000000000000000000817220000000000000000000000000000000000000000000000000000000000081723000000000000000000000000000000000000000000000000000000000008172400000000000000000000000000000000000000000000000000000000000817250000000000000000000000000000000000000000000000000000000000081726000000000000000000000000000000000000000000000000000000000008172700000000000000000000000000000000000000000000000000000000000817280000000000000000000000000000000000000000000000000000000000081729000000000000000000000000000000000000000000000000000000000008172a000000000000000000000000000000000000000000000000000000000008172b000000000000000000000000000000000000000000000000000000000008172c000000000000000000000000000000000000000000000000000000000008172d000000000000000000000000000000000000000000000000000000000008171d000000000000000000000000000000000000000000000000000000000008171e000000000000000000000000000000000000000000000000000000000008171f0000000000000000000000000000000000000000000000000000000000081720000000000000000000000000000000000000000000000000000000000008172100000000000000000000000000000000000000000000000000000000000817220000000000000000000000000000000000000000000000000000000000081723000000000000000000000000000000000000000000000000000000000008172400000000000000000000000000000000000000000000000000000000000817250000000000000000000000000000000000000000000000000000000000081726000000000000000000000000000000000000000000000000000000000008172700000000000000000000000000000000000000000000000000000000000817280000000000000000000000000000000000000000000000000000000000081729000000000000000000000000000000000000000000000000000000000008172a000000000000000000000000000000000000000000000000000000000008172b000000000000000000000000000000000000000000000000000000000008172c000000000000000000000000000000000000000000000000000000000008172d000000000000000000000000000000000000000000000000000000000008172e000000000000000000000000000000000000000000000000000000000008171e000000000000000000000000000000000000000000000000000000000008171f0000000000000000000000000000000000000000000000000000000000081720000000000000000000000000000000000000000000000000000000000008172100000000000000000000000000000000000000000000000000000000000817220000000000000000000000000000000000000000000000000000000000081723000000000000000000000000000000000000000000000000000000000008172400000000000000000000000000000000000000000000000000000000000817250000000000000000000000000000000000000000000000000000000000081726000000000000000000000000000000000000000000000000000000000008172700000000000000000000000000000000000000000000000000000000000817280000000000000000000000000000000000000000000000000000000000081729000000000000000000000000000000000000000000000000000000000008172a000000000000000000000000000000000000000000000000000000000008172b000000000000000000000000000000000000000000000000000000000008172c000000000000000000000000000000000000000000000000000000000008172d000000000000000000000000000000000000000000000000000000000008172e000000000000000000000000000000000000000000000000000000000008172f000000000000000000000000000000000000000000000000000000000008171f0000000000000000000000000000000000000000000000000000000000081720000000000000000000000000000000000000000000000000000000000008172100000000000000000000000000000000000000000000000000000000000817220000000000000000000000000000000000000000000000000000000000081723000000000000000000000000000000000000000000000000000000000008172400000000000000000000000000000000000000000000000000000000000817250000000000000000000000000000000000000000000000000000000000081726000000000000000000000000000000000000000000000000000000000008172700000000000000000000000000000000000000000000000000000000000817280000000000000000000000000000000000000000000000000000000000081729000000000000000000000000000000000000000000000000000000000008172a000000000000000000000000000000000000000000000000000000000008172b000000000000000000000000000000000000000000000000000000000008172c000000000000000000000000000000000000000000000000000000000008172d000000000000000000000000000000000000000000000000000000000008172e000000000000000000000000000000000000000000000000000000000008172f00000000000000000000000000000000000000000000000000000000000817300000002717ddb5ec8c3552b92ddb9a27ae393189d19d282f4271d5b03089835d77834100000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000c100000000000000000000000000000000000000000000000000000000000000c100100000000000000000000000000000000000000000000000000000000000c100200000000000000000000000000000000000000000000000000000000000c100300000000000000000000000000000000000000000000000000000000000c100400000000000000000000000000000000000000000000000000000000000c100500000000000000000000000000000000000000000000000000000000000c100600000000000000000000000000000000000000000000000000000000000c100700000000000000000000000000000000000000000000000000000000000c100800000000000000000000000000000000000000000000000000000000000c100900000000000000000000000000000000000000000000000000000000000c100a00000000000000000000000000000000000000000000000000000000000c100b00000000000000000000000000000000000000000000000000000000000c100c00000000000000000000000000000000000000000000000000000000000c100d00000000000000000000000000000000000000000000000000000000000c100e00000000000000000000000000000000000000000000000000000000000c100f00000000000000000000000000000000000000000000000000000000000c101000000000000000000000000000000000000000000000000000000000000c101100000000000000000000000000000000000000000000000000000000000c101200000000000000000000000000000000000000000000000000000000000c101300000000000000000000000000000000000000000000000000000000000c101400000000000000000000000000000000000000000000000000000000000c101500000000000000000000000000000000000000000000000000000000000c101600000000000000000000000000000000000000000000000000000000000c101700000000000000000000000000000000000000000000000000000000000c101800000000000000000000000000000000000000000000000000000000000c101900000000000000000000000000000000000000000000000000000000000c101a00000000000000000000000000000000000000000000000000000000000c101b00000000000000000000000000000000000000000000000000000000000c101c00000000000000000000000000000000000000000000000000000000000c101d00000000000000000000000000000000000000000000000000000000000c101e00000000000000000000000000000000000000000000000000000000000c101f00000000000000000000000000000000000000000000000000000000000c102000000000000000000000000000000000000000000000000000000000000c102100000000000000000000000000000000000000000000000000000000000c102200000000000000000000000000000000000000000000000000000000000c102300000000000000000000000000000000000000000000000000000000000c102400000000000000000000000000000000000000000000000000000000000c102500000000000000000000000000000000000000000000000000000000000c102600000000000000000000000000000000000000000000000000000000000c102700000000000000000000000000000000000000000000000000000000000c102800000000000000000000000000000000000000000000000000000000000c102900000000000000000000000000000000000000000000000000000000000c102a00000000000000000000000000000000000000000000000000000000000c102b00000000000000000000000000000000000000000000000000000000000c102c00000000000000000000000000000000000000000000000000000000000c102d00000000000000000000000000000000000000000000000000000000000c102e00000000000000000000000000000000000000000000000000000000000c102f00000000000000000000000000000000000000000000000000000000000c103000000000000000000000000000000000000000000000000000000000000c103100000000000000000000000000000000000000000000000000000000000c103200000000000000000000000000000000000000000000000000000000000c103300000000000000000000000000000000000000000000000000000000000c103400000000000000000000000000000000000000000000000000000000000c103500000000000000000000000000000000000000000000000000000000000c103600000000000000000000000000000000000000000000000000000000000c103700000000000000000000000000000000000000000000000000000000000c103800000000000000000000000000000000000000000000000000000000000c103900000000000000000000000000000000000000000000000000000000000c103a00000000000000000000000000000000000000000000000000000000000c103b00000000000000000000000000000000000000000000000000000000000c103c00000000000000000000000000000000000000000000000000000000000c103d00000000000000000000000000000000000000000000000000000000000c103e00000000000000000000000000000000000000000000000000000000000c103f4000000000000000000000000000000000000000000000000000000000000c000100000000000000000000000000000000000000000000000000000000000c110000000000000000000000000000000000000000000000000000000000000c110100000000000000000000000000000000000000000000000000000000000c110200000000000000000000000000000000000000000000000000000000000c110300000000000000000000000000000000000000000000000000000000000c110400000000000000000000000000000000000000000000000000000000000c110500000000000000000000000000000000000000000000000000000000000c110600000000000000000000000000000000000000000000000000000000000c110700000000000000000000000000000000000000000000000000000000000c110800000000000000000000000000000000000000000000000000000000000c110900000000000000000000000000000000000000000000000000000000000c110a00000000000000000000000000000000000000000000000000000000000c110b00000000000000000000000000000000000000000000000000000000000c110c00000000000000000000000000000000000000000000000000000000000c110d00000000000000000000000000000000000000000000000000000000000c110e00000000000000000000000000000000000000000000000000000000000c110f00000000000000000000000000000000000000000000000000000000000c111000000000000000000000000000000000000000000000000000000000000c111100000000000000000000000000000000000000000000000000000000000c111200000000000000000000000000000000000000000000000000000000000c111300000000000000000000000000000000000000000000000000000000000c111400000000000000000000000000000000000000000000000000000000000c111500000000000000000000000000000000000000000000000000000000000c111600000000000000000000000000000000000000000000000000000000000c111700000000000000000000000000000000000000000000000000000000000c111800000000000000000000000000000000000000000000000000000000000c111900000000000000000000000000000000000000000000000000000000000c111a00000000000000000000000000000000000000000000000000000000000c111b00000000000000000000000000000000000000000000000000000000000c111c00000000000000000000000000000000000000000000000000000000000c111d00000000000000000000000000000000000000000000000000000000000c111e00000000000000000000000000000000000000000000000000000000000c111f00000000000000000000000000000000000000000000000000000000000c112000000000000000000000000000000000000000000000000000000000000c112100000000000000000000000000000000000000000000000000000000000c112200000000000000000000000000000000000000000000000000000000000c112300000000000000000000000000000000000000000000000000000000000c112400000000000000000000000000000000000000000000000000000000000c112500000000000000000000000000000000000000000000000000000000000c112600000000000000000000000000000000000000000000000000000000000c112700000000000000000000000000000000000000000000000000000000000c112800000000000000000000000000000000000000000000000000000000000c112900000000000000000000000000000000000000000000000000000000000c112a00000000000000000000000000000000000000000000000000000000000c112b00000000000000000000000000000000000000000000000000000000000c112c00000000000000000000000000000000000000000000000000000000000c112d00000000000000000000000000000000000000000000000000000000000c112e00000000000000000000000000000000000000000000000000000000000c112f00000000000000000000000000000000000000000000000000000000000c113000000000000000000000000000000000000000000000000000000000000c113100000000000000000000000000000000000000000000000000000000000c113200000000000000000000000000000000000000000000000000000000000c113300000000000000000000000000000000000000000000000000000000000c113400000000000000000000000000000000000000000000000000000000000c113500000000000000000000000000000000000000000000000000000000000c113600000000000000000000000000000000000000000000000000000000000c113700000000000000000000000000000000000000000000000000000000000c113800000000000000000000000000000000000000000000000000000000000c113900000000000000000000000000000000000000000000000000000000000c113a00000000000000000000000000000000000000000000000000000000000c113b00000000000000000000000000000000000000000000000000000000000c113c00000000000000000000000000000000000000000000000000000000000c113d00000000000000000000000000000000000000000000000000000000000c113e0800f8029be42ec3f25204907ca981fb71e5b357093eb5db10fc01ca98a4e4154c0030e13d351a5bf1d5a040e82a163ca57017f39162693f85c571e441e36d702d00a550ae0f39f977d9473d6de1be3232fc68ed0c4a601d53542148695102cfc9005580bc65e4bff9c8fffa64db02c0fa6af14d9d26fd962f4c5904cbd3ddec2500758c4a0d43dfec788b2f580877c4f473adec8f168ea24424f2600e4eb4916f00342602bf90d10f8ca8e582a894dcc4c02bb89fe458532e0c632b53bae54b4d00ca43ab78ab834337e9964d84a0674c9adabdca140539c5a6bc96e0ba9a51f6004ffbfd91be292a7c6a0e255e50caa156ac2d628b40ad2128c4ab63a92d8a1c4000000000000000000000000000000000000000000000000000000000000c200000000000000000000000000000000000000000000000000000000000000c200a00000000000000000000000000000000000000000000000000000000000c200100000000000000000000000000000000000000000000000000000000000c200b00000000000000000000000000000000000000000000000000000000000c200200000000000000000000000000000000000000000000000000000000000c200c00000000000000000000000000000000000000000000000000000000000c200300000000000000000000000000000000000000000000000000000000000c200d00000000000000000000000000000000000000000000000000000000000c200400000000000000000000000000000000000000000000000000000000000c200e00000000000000000000000000000000000000000000000000000000000c200500000000000000000000000000000000000000000000000000000000000c200f00000000000000000000000000000000000000000000000000000000000c200600000000000000000000000000000000000000000000000000000000000c201000000000000000000000000000000000000000000000000000000000000c200700000000000000000000000000000000000000000000000000000000000c201100000000000000000000000000000000000000000000000000000000000c200800000000000000000000000000000000000000000000000000000000000c201200000000000000000000000000000000000000000000000000000000000c200900000000000000000000000000000000000000000000000000000000000c201300000000000000000000000000000000000000000000000000000000000c200a00000000000000000000000000000000000000000000000000000000000c201400000000000000000000000000000000000000000000000000000000000c200b00000000000000000000000000000000000000000000000000000000000c201500000000000000000000000000000000000000000000000000000000000c200c00000000000000000000000000000000000000000000000000000000000c201600000000000000000000000000000000000000000000000000000000000c200d00000000000000000000000000000000000000000000000000000000000c201700000000000000000000000000000000000000000000000000000000000c200e00000000000000000000000000000000000000000000000000000000000c201800000000000000000000000000000000000000000000000000000000000c200f00000000000000000000000000000000000000000000000000000000000c201900000000000000000000000000000000000000000000000000000000000c201000000000000000000000000000000000000000000000000000000000000c201a00000000000000000000000000000000000000000000000000000000000c201100000000000000000000000000000000000000000000000000000000000c201b00000000000000000000000000000000000000000000000000000000000c201200000000000000000000000000000000000000000000000000000000000c201c00000000000000000000000000000000000000000000000000000000000c201300000000000000000000000000000000000000000000000000000000000c201d00000000000000000000000000000000000000000000000000000000000c201400000000000000000000000000000000000000000000000000000000000c201e00000000000000000000000000000000000000000000000000000000000c201500000000000000000000000000000000000000000000000000000000000c201f00000000000000000000000000000000000000000000000000000000000c201600000000000000000000000000000000000000000000000000000000000c202000000000000000000000000000000000000000000000000000000000000c201700000000000000000000000000000000000000000000000000000000000c202100000000000000000000000000000000000000000000000000000000000c201800000000000000000000000000000000000000000000000000000000000c202200000000000000000000000000000000000000000000000000000000000c201900000000000000000000000000000000000000000000000000000000000c202300000000000000000000000000000000000000000000000000000000000c201a00000000000000000000000000000000000000000000000000000000000c202400000000000000000000000000000000000000000000000000000000000c201b00000000000000000000000000000000000000000000000000000000000c202500000000000000000000000000000000000000000000000000000000000c201c00000000000000000000000000000000000000000000000000000000000c202600000000000000000000000000000000000000000000000000000000000c201d00000000000000000000000000000000000000000000000000000000000c202700000000000000000000000000000000000000000000000000000000000c201e00000000000000000000000000000000000000000000000000000000000c202800000000000000000000000000000000000000000000000000000000000c201f00000000000000000000000000000000000000000000000000000000000c202900000000000000000000000000000000000000000000000000000000000c202000000000000000000000000000000000000000000000000000000000000c202a00000000000000000000000000000000000000000000000000000000000c202100000000000000000000000000000000000000000000000000000000000c202b00000000000000000000000000000000000000000000000000000000000c202200000000000000000000000000000000000000000000000000000000000c202c00000000000000000000000000000000000000000000000000000000000c202300000000000000000000000000000000000000000000000000000000000c202d00000000000000000000000000000000000000000000000000000000000c202400000000000000000000000000000000000000000000000000000000000c202e00000000000000000000000000000000000000000000000000000000000c202500000000000000000000000000000000000000000000000000000000000c202f00000000000000000000000000000000000000000000000000000000000c202600000000000000000000000000000000000000000000000000000000000c203000000000000000000000000000000000000000000000000000000000000c202700000000000000000000000000000000000000000000000000000000000c203100000000000000000000000000000000000000000000000000000000000c202800000000000000000000000000000000000000000000000000000000000c203200000000000000000000000000000000000000000000000000000000000c202900000000000000000000000000000000000000000000000000000000000c203300000000000000000000000000000000000000000000000000000000000c202a00000000000000000000000000000000000000000000000000000000000c203400000000000000000000000000000000000000000000000000000000000c202b00000000000000000000000000000000000000000000000000000000000c203500000000000000000000000000000000000000000000000000000000000c202c00000000000000000000000000000000000000000000000000000000000c203600000000000000000000000000000000000000000000000000000000000c202d00000000000000000000000000000000000000000000000000000000000c203700000000000000000000000000000000000000000000000000000000000c202e00000000000000000000000000000000000000000000000000000000000c203800000000000000000000000000000000000000000000000000000000000c202f00000000000000000000000000000000000000000000000000000000000c203900000000000000000000000000000000000000000000000000000000000c203000000000000000000000000000000000000000000000000000000000000c203a00000000000000000000000000000000000000000000000000000000000c203100000000000000000000000000000000000000000000000000000000000c203b00000000000000000000000000000000000000000000000000000000000c203200000000000000000000000000000000000000000000000000000000000c203c00000000000000000000000000000000000000000000000000000000000c203300000000000000000000000000000000000000000000000000000000000c203d00000000000000000000000000000000000000000000000000000000000c203400000000000000000000000000000000000000000000000000000000000c203e00000000000000000000000000000000000000000000000000000000000c203500000000000000000000000000000000000000000000000000000000000c203f00000000000000000000000000000000000000000000000000000000000c203600000000000000000000000000000000000000000000000000000000000c204000000000000000000000000000000000000000000000000000000000000c203700000000000000000000000000000000000000000000000000000000000c204100000000000000000000000000000000000000000000000000000000000c203800000000000000000000000000000000000000000000000000000000000c204200000000000000000000000000000000000000000000000000000000000c203900000000000000000000000000000000000000000000000000000000000c204300000000000000000000000000000000000000000000000000000000000c203a00000000000000000000000000000000000000000000000000000000000c204400000000000000000000000000000000000000000000000000000000000c203b00000000000000000000000000000000000000000000000000000000000c204500000000000000000000000000000000000000000000000000000000000c203c00000000000000000000000000000000000000000000000000000000000c204600000000000000000000000000000000000000000000000000000000000c203d00000000000000000000000000000000000000000000000000000000000c204700000000000000000000000000000000000000000000000000000000000c203e00000000000000000000000000000000000000000000000000000000000c204800000000000000000000000000000000000000000000000000000000000c203f00000000000000000000000000000000000000000000000000000000000c20492000000000000000000000000000000000000000000000000000000000000c170000000000000000000000000000000000000000000000000000000000000c170100000000000000000000000000000000000000000000000000000000000c170200000000000000000000000000000000000000000000000000000000000c170300000000000000000000000000000000000000000000000000000000000c170400000000000000000000000000000000000000000000000000000000000c170500000000000000000000000000000000000000000000000000000000000c170600000000000000000000000000000000000000000000000000000000000c170700000000000000000000000000000000000000000000000000000000000c170800000000000000000000000000000000000000000000000000000000000c170900000000000000000000000000000000000000000000000000000000000c170a00000000000000000000000000000000000000000000000000000000000c170b00000000000000000000000000000000000000000000000000000000000c170c00000000000000000000000000000000000000000000000000000000000c170d00000000000000000000000000000000000000000000000000000000000c170e00000000000000000000000000000000000000000000000000000000000c170f00000000000000000000000000000000000000000000000000000000000c171000000000000000000000000000000000000000000000000000000000000c171100000000000000000000000000000000000000000000000000000000000c170100000000000000000000000000000000000000000000000000000000000c170200000000000000000000000000000000000000000000000000000000000c170300000000000000000000000000000000000000000000000000000000000c170400000000000000000000000000000000000000000000000000000000000c170500000000000000000000000000000000000000000000000000000000000c170600000000000000000000000000000000000000000000000000000000000c170700000000000000000000000000000000000000000000000000000000000c170800000000000000000000000000000000000000000000000000000000000c170900000000000000000000000000000000000000000000000000000000000c170a00000000000000000000000000000000000000000000000000000000000c170b00000000000000000000000000000000000000000000000000000000000c170c00000000000000000000000000000000000000000000000000000000000c170d00000000000000000000000000000000000000000000000000000000000c170e00000000000000000000000000000000000000000000000000000000000c170f00000000000000000000000000000000000000000000000000000000000c171000000000000000000000000000000000000000000000000000000000000c171100000000000000000000000000000000000000000000000000000000000c171200000000000000000000000000000000000000000000000000000000000c170200000000000000000000000000000000000000000000000000000000000c170300000000000000000000000000000000000000000000000000000000000c170400000000000000000000000000000000000000000000000000000000000c170500000000000000000000000000000000000000000000000000000000000c170600000000000000000000000000000000000000000000000000000000000c170700000000000000000000000000000000000000000000000000000000000c170800000000000000000000000000000000000000000000000000000000000c170900000000000000000000000000000000000000000000000000000000000c170a00000000000000000000000000000000000000000000000000000000000c170b00000000000000000000000000000000000000000000000000000000000c170c00000000000000000000000000000000000000000000000000000000000c170d00000000000000000000000000000000000000000000000000000000000c170e00000000000000000000000000000000000000000000000000000000000c170f00000000000000000000000000000000000000000000000000000000000c171000000000000000000000000000000000000000000000000000000000000c171100000000000000000000000000000000000000000000000000000000000c171200000000000000000000000000000000000000000000000000000000000c171300000000000000000000000000000000000000000000000000000000000c170300000000000000000000000000000000000000000000000000000000000c170400000000000000000000000000000000000000000000000000000000000c170500000000000000000000000000000000000000000000000000000000000c170600000000000000000000000000000000000000000000000000000000000c170700000000000000000000000000000000000000000000000000000000000c170800000000000000000000000000000000000000000000000000000000000c170900000000000000000000000000000000000000000000000000000000000c170a00000000000000000000000000000000000000000000000000000000000c170b00000000000000000000000000000000000000000000000000000000000c170c00000000000000000000000000000000000000000000000000000000000c170d00000000000000000000000000000000000000000000000000000000000c170e00000000000000000000000000000000000000000000000000000000000c170f00000000000000000000000000000000000000000000000000000000000c171000000000000000000000000000000000000000000000000000000000000c171100000000000000000000000000000000000000000000000000000000000c171200000000000000000000000000000000000000000000000000000000000c171300000000000000000000000000000000000000000000000000000000000c171400000000000000000000000000000000000000000000000000000000000c170400000000000000000000000000000000000000000000000000000000000c170500000000000000000000000000000000000000000000000000000000000c170600000000000000000000000000000000000000000000000000000000000c170700000000000000000000000000000000000000000000000000000000000c170800000000000000000000000000000000000000000000000000000000000c170900000000000000000000000000000000000000000000000000000000000c170a00000000000000000000000000000000000000000000000000000000000c170b00000000000000000000000000000000000000000000000000000000000c170c00000000000000000000000000000000000000000000000000000000000c170d00000000000000000000000000000000000000000000000000000000000c170e00000000000000000000000000000000000000000000000000000000000c170f00000000000000000000000000000000000000000000000000000000000c171000000000000000000000000000000000000000000000000000000000000c171100000000000000000000000000000000000000000000000000000000000c171200000000000000000000000000000000000000000000000000000000000c171300000000000000000000000000000000000000000000000000000000000c171400000000000000000000000000000000000000000000000000000000000c171500000000000000000000000000000000000000000000000000000000000c170500000000000000000000000000000000000000000000000000000000000c170600000000000000000000000000000000000000000000000000000000000c170700000000000000000000000000000000000000000000000000000000000c170800000000000000000000000000000000000000000000000000000000000c170900000000000000000000000000000000000000000000000000000000000c170a00000000000000000000000000000000000000000000000000000000000c170b00000000000000000000000000000000000000000000000000000000000c170c00000000000000000000000000000000000000000000000000000000000c170d00000000000000000000000000000000000000000000000000000000000c170e00000000000000000000000000000000000000000000000000000000000c170f00000000000000000000000000000000000000000000000000000000000c171000000000000000000000000000000000000000000000000000000000000c171100000000000000000000000000000000000000000000000000000000000c171200000000000000000000000000000000000000000000000000000000000c171300000000000000000000000000000000000000000000000000000000000c171400000000000000000000000000000000000000000000000000000000000c171500000000000000000000000000000000000000000000000000000000000c171600000000000000000000000000000000000000000000000000000000000c170600000000000000000000000000000000000000000000000000000000000c170700000000000000000000000000000000000000000000000000000000000c170800000000000000000000000000000000000000000000000000000000000c170900000000000000000000000000000000000000000000000000000000000c170a00000000000000000000000000000000000000000000000000000000000c170b00000000000000000000000000000000000000000000000000000000000c170c00000000000000000000000000000000000000000000000000000000000c170d00000000000000000000000000000000000000000000000000000000000c170e00000000000000000000000000000000000000000000000000000000000c170f00000000000000000000000000000000000000000000000000000000000c171000000000000000000000000000000000000000000000000000000000000c171100000000000000000000000000000000000000000000000000000000000c171200000000000000000000000000000000000000000000000000000000000c171300000000000000000000000000000000000000000000000000000000000c171400000000000000000000000000000000000000000000000000000000000c171500000000000000000000000000000000000000000000000000000000000c171600000000000000000000000000000000000000000000000000000000000c171700000000000000000000000000000000000000000000000000000000000c170700000000000000000000000000000000000000000000000000000000000c170800000000000000000000000000000000000000000000000000000000000c170900000000000000000000000000000000000000000000000000000000000c170a00000000000000000000000000000000000000000000000000000000000c170b00000000000000000000000000000000000000000000000000000000000c170c00000000000000000000000000000000000000000000000000000000000c170d00000000000000000000000000000000000000000000000000000000000c170e00000000000000000000000000000000000000000000000000000000000c170f00000000000000000000000000000000000000000000000000000000000c171000000000000000000000000000000000000000000000000000000000000c171100000000000000000000000000000000000000000000000000000000000c171200000000000000000000000000000000000000000000000000000000000c171300000000000000000000000000000000000000000000000000000000000c171400000000000000000000000000000000000000000000000000000000000c171500000000000000000000000000000000000000000000000000000000000c171600000000000000000000000000000000000000000000000000000000000c171700000000000000000000000000000000000000000000000000000000000c171800000000000000000000000000000000000000000000000000000000000c170800000000000000000000000000000000000000000000000000000000000c170900000000000000000000000000000000000000000000000000000000000c170a00000000000000000000000000000000000000000000000000000000000c170b00000000000000000000000000000000000000000000000000000000000c170c00000000000000000000000000000000000000000000000000000000000c170d00000000000000000000000000000000000000000000000000000000000c170e00000000000000000000000000000000000000000000000000000000000c170f00000000000000000000000000000000000000000000000000000000000c171000000000000000000000000000000000000000000000000000000000000c171100000000000000000000000000000000000000000000000000000000000c171200000000000000000000000000000000000000000000000000000000000c171300000000000000000000000000000000000000000000000000000000000c171400000000000000000000000000000000000000000000000000000000000c171500000000000000000000000000000000000000000000000000000000000c171600000000000000000000000000000000000000000000000000000000000c171700000000000000000000000000000000000000000000000000000000000c171800000000000000000000000000000000000000000000000000000000000c171900000000000000000000000000000000000000000000000000000000000c170900000000000000000000000000000000000000000000000000000000000c170a00000000000000000000000000000000000000000000000000000000000c170b00000000000000000000000000000000000000000000000000000000000c170c00000000000000000000000000000000000000000000000000000000000c170d00000000000000000000000000000000000000000000000000000000000c170e00000000000000000000000000000000000000000000000000000000000c170f00000000000000000000000000000000000000000000000000000000000c171000000000000000000000000000000000000000000000000000000000000c171100000000000000000000000000000000000000000000000000000000000c171200000000000000000000000000000000000000000000000000000000000c171300000000000000000000000000000000000000000000000000000000000c171400000000000000000000000000000000000000000000000000000000000c171500000000000000000000000000000000000000000000000000000000000c171600000000000000000000000000000000000000000000000000000000000c171700000000000000000000000000000000000000000000000000000000000c171800000000000000000000000000000000000000000000000000000000000c171900000000000000000000000000000000000000000000000000000000000c171a00000000000000000000000000000000000000000000000000000000000c170a00000000000000000000000000000000000000000000000000000000000c170b00000000000000000000000000000000000000000000000000000000000c170c00000000000000000000000000000000000000000000000000000000000c170d00000000000000000000000000000000000000000000000000000000000c170e00000000000000000000000000000000000000000000000000000000000c170f00000000000000000000000000000000000000000000000000000000000c171000000000000000000000000000000000000000000000000000000000000c171100000000000000000000000000000000000000000000000000000000000c171200000000000000000000000000000000000000000000000000000000000c171300000000000000000000000000000000000000000000000000000000000c171400000000000000000000000000000000000000000000000000000000000c171500000000000000000000000000000000000000000000000000000000000c171600000000000000000000000000000000000000000000000000000000000c171700000000000000000000000000000000000000000000000000000000000c171800000000000000000000000000000000000000000000000000000000000c171900000000000000000000000000000000000000000000000000000000000c171a00000000000000000000000000000000000000000000000000000000000c171b00000000000000000000000000000000000000000000000000000000000c170b00000000000000000000000000000000000000000000000000000000000c170c00000000000000000000000000000000000000000000000000000000000c170d00000000000000000000000000000000000000000000000000000000000c170e00000000000000000000000000000000000000000000000000000000000c170f00000000000000000000000000000000000000000000000000000000000c171000000000000000000000000000000000000000000000000000000000000c171100000000000000000000000000000000000000000000000000000000000c171200000000000000000000000000000000000000000000000000000000000c171300000000000000000000000000000000000000000000000000000000000c171400000000000000000000000000000000000000000000000000000000000c171500000000000000000000000000000000000000000000000000000000000c171600000000000000000000000000000000000000000000000000000000000c171700000000000000000000000000000000000000000000000000000000000c171800000000000000000000000000000000000000000000000000000000000c171900000000000000000000000000000000000000000000000000000000000c171a00000000000000000000000000000000000000000000000000000000000c171b00000000000000000000000000000000000000000000000000000000000c171c00000000000000000000000000000000000000000000000000000000000c170c00000000000000000000000000000000000000000000000000000000000c170d00000000000000000000000000000000000000000000000000000000000c170e00000000000000000000000000000000000000000000000000000000000c170f00000000000000000000000000000000000000000000000000000000000c171000000000000000000000000000000000000000000000000000000000000c171100000000000000000000000000000000000000000000000000000000000c171200000000000000000000000000000000000000000000000000000000000c171300000000000000000000000000000000000000000000000000000000000c171400000000000000000000000000000000000000000000000000000000000c171500000000000000000000000000000000000000000000000000000000000c171600000000000000000000000000000000000000000000000000000000000c171700000000000000000000000000000000000000000000000000000000000c171800000000000000000000000000000000000000000000000000000000000c171900000000000000000000000000000000000000000000000000000000000c171a00000000000000000000000000000000000000000000000000000000000c171b00000000000000000000000000000000000000000000000000000000000c171c00000000000000000000000000000000000000000000000000000000000c171d00000000000000000000000000000000000000000000000000000000000c170d00000000000000000000000000000000000000000000000000000000000c170e00000000000000000000000000000000000000000000000000000000000c170f00000000000000000000000000000000000000000000000000000000000c171000000000000000000000000000000000000000000000000000000000000c171100000000000000000000000000000000000000000000000000000000000c171200000000000000000000000000000000000000000000000000000000000c171300000000000000000000000000000000000000000000000000000000000c171400000000000000000000000000000000000000000000000000000000000c171500000000000000000000000000000000000000000000000000000000000c171600000000000000000000000000000000000000000000000000000000000c171700000000000000000000000000000000000000000000000000000000000c171800000000000000000000000000000000000000000000000000000000000c171900000000000000000000000000000000000000000000000000000000000c171a00000000000000000000000000000000000000000000000000000000000c171b00000000000000000000000000000000000000000000000000000000000c171c00000000000000000000000000000000000000000000000000000000000c171d00000000000000000000000000000000000000000000000000000000000c171e00000000000000000000000000000000000000000000000000000000000c170e00000000000000000000000000000000000000000000000000000000000c170f00000000000000000000000000000000000000000000000000000000000c171000000000000000000000000000000000000000000000000000000000000c171100000000000000000000000000000000000000000000000000000000000c171200000000000000000000000000000000000000000000000000000000000c171300000000000000000000000000000000000000000000000000000000000c171400000000000000000000000000000000000000000000000000000000000c171500000000000000000000000000000000000000000000000000000000000c171600000000000000000000000000000000000000000000000000000000000c171700000000000000000000000000000000000000000000000000000000000c171800000000000000000000000000000000000000000000000000000000000c171900000000000000000000000000000000000000000000000000000000000c171a00000000000000000000000000000000000000000000000000000000000c171b00000000000000000000000000000000000000000000000000000000000c171c00000000000000000000000000000000000000000000000000000000000c171d00000000000000000000000000000000000000000000000000000000000c171e00000000000000000000000000000000000000000000000000000000000c171f00000000000000000000000000000000000000000000000000000000000c170f00000000000000000000000000000000000000000000000000000000000c171000000000000000000000000000000000000000000000000000000000000c171100000000000000000000000000000000000000000000000000000000000c171200000000000000000000000000000000000000000000000000000000000c171300000000000000000000000000000000000000000000000000000000000c171400000000000000000000000000000000000000000000000000000000000c171500000000000000000000000000000000000000000000000000000000000c171600000000000000000000000000000000000000000000000000000000000c171700000000000000000000000000000000000000000000000000000000000c171800000000000000000000000000000000000000000000000000000000000c171900000000000000000000000000000000000000000000000000000000000c171a00000000000000000000000000000000000000000000000000000000000c171b00000000000000000000000000000000000000000000000000000000000c171c00000000000000000000000000000000000000000000000000000000000c171d00000000000000000000000000000000000000000000000000000000000c171e00000000000000000000000000000000000000000000000000000000000c171f00000000000000000000000000000000000000000000000000000000000c172000000000000000000000000000000000000000000000000000000000000c171000000000000000000000000000000000000000000000000000000000000c171100000000000000000000000000000000000000000000000000000000000c171200000000000000000000000000000000000000000000000000000000000c171300000000000000000000000000000000000000000000000000000000000c171400000000000000000000000000000000000000000000000000000000000c171500000000000000000000000000000000000000000000000000000000000c171600000000000000000000000000000000000000000000000000000000000c171700000000000000000000000000000000000000000000000000000000000c171800000000000000000000000000000000000000000000000000000000000c171900000000000000000000000000000000000000000000000000000000000c171a00000000000000000000000000000000000000000000000000000000000c171b00000000000000000000000000000000000000000000000000000000000c171c00000000000000000000000000000000000000000000000000000000000c171d00000000000000000000000000000000000000000000000000000000000c171e00000000000000000000000000000000000000000000000000000000000c171f00000000000000000000000000000000000000000000000000000000000c172000000000000000000000000000000000000000000000000000000000000c172100000000000000000000000000000000000000000000000000000000000c171100000000000000000000000000000000000000000000000000000000000c171200000000000000000000000000000000000000000000000000000000000c171300000000000000000000000000000000000000000000000000000000000c171400000000000000000000000000000000000000000000000000000000000c171500000000000000000000000000000000000000000000000000000000000c171600000000000000000000000000000000000000000000000000000000000c171700000000000000000000000000000000000000000000000000000000000c171800000000000000000000000000000000000000000000000000000000000c171900000000000000000000000000000000000000000000000000000000000c171a00000000000000000000000000000000000000000000000000000000000c171b00000000000000000000000000000000000000000000000000000000000c171c00000000000000000000000000000000000000000000000000000000000c171d00000000000000000000000000000000000000000000000000000000000c171e00000000000000000000000000000000000000000000000000000000000c171f00000000000000000000000000000000000000000000000000000000000c172000000000000000000000000000000000000000000000000000000000000c172100000000000000000000000000000000000000000000000000000000000c172200000000000000000000000000000000000000000000000000000000000c171200000000000000000000000000000000000000000000000000000000000c171300000000000000000000000000000000000000000000000000000000000c171400000000000000000000000000000000000000000000000000000000000c171500000000000000000000000000000000000000000000000000000000000c171600000000000000000000000000000000000000000000000000000000000c171700000000000000000000000000000000000000000000000000000000000c171800000000000000000000000000000000000000000000000000000000000c171900000000000000000000000000000000000000000000000000000000000c171a00000000000000000000000000000000000000000000000000000000000c171b00000000000000000000000000000000000000000000000000000000000c171c00000000000000000000000000000000000000000000000000000000000c171d00000000000000000000000000000000000000000000000000000000000c171e00000000000000000000000000000000000000000000000000000000000c171f00000000000000000000000000000000000000000000000000000000000c172000000000000000000000000000000000000000000000000000000000000c172100000000000000000000000000000000000000000000000000000000000c172200000000000000000000000000000000000000000000000000000000000c172300000000000000000000000000000000000000000000000000000000000c171300000000000000000000000000000000000000000000000000000000000c171400000000000000000000000000000000000000000000000000000000000c171500000000000000000000000000000000000000000000000000000000000c171600000000000000000000000000000000000000000000000000000000000c171700000000000000000000000000000000000000000000000000000000000c171800000000000000000000000000000000000000000000000000000000000c171900000000000000000000000000000000000000000000000000000000000c171a00000000000000000000000000000000000000000000000000000000000c171b00000000000000000000000000000000000000000000000000000000000c171c00000000000000000000000000000000000000000000000000000000000c171d00000000000000000000000000000000000000000000000000000000000c171e00000000000000000000000000000000000000000000000000000000000c171f00000000000000000000000000000000000000000000000000000000000c172000000000000000000000000000000000000000000000000000000000000c172100000000000000000000000000000000000000000000000000000000000c172200000000000000000000000000000000000000000000000000000000000c172300000000000000000000000000000000000000000000000000000000000c172400000000000000000000000000000000000000000000000000000000000c171400000000000000000000000000000000000000000000000000000000000c171500000000000000000000000000000000000000000000000000000000000c171600000000000000000000000000000000000000000000000000000000000c171700000000000000000000000000000000000000000000000000000000000c171800000000000000000000000000000000000000000000000000000000000c171900000000000000000000000000000000000000000000000000000000000c171a00000000000000000000000000000000000000000000000000000000000c171b00000000000000000000000000000000000000000000000000000000000c171c00000000000000000000000000000000000000000000000000000000000c171d00000000000000000000000000000000000000000000000000000000000c171e00000000000000000000000000000000000000000000000000000000000c171f00000000000000000000000000000000000000000000000000000000000c172000000000000000000000000000000000000000000000000000000000000c172100000000000000000000000000000000000000000000000000000000000c172200000000000000000000000000000000000000000000000000000000000c172300000000000000000000000000000000000000000000000000000000000c172400000000000000000000000000000000000000000000000000000000000c172500000000000000000000000000000000000000000000000000000000000c171500000000000000000000000000000000000000000000000000000000000c171600000000000000000000000000000000000000000000000000000000000c171700000000000000000000000000000000000000000000000000000000000c171800000000000000000000000000000000000000000000000000000000000c171900000000000000000000000000000000000000000000000000000000000c171a00000000000000000000000000000000000000000000000000000000000c171b00000000000000000000000000000000000000000000000000000000000c171c00000000000000000000000000000000000000000000000000000000000c171d00000000000000000000000000000000000000000000000000000000000c171e00000000000000000000000000000000000000000000000000000000000c171f00000000000000000000000000000000000000000000000000000000000c172000000000000000000000000000000000000000000000000000000000000c172100000000000000000000000000000000000000000000000000000000000c172200000000000000000000000000000000000000000000000000000000000c172300000000000000000000000000000000000000000000000000000000000c172400000000000000000000000000000000000000000000000000000000000c172500000000000000000000000000000000000000000000000000000000000c172600000000000000000000000000000000000000000000000000000000000c171600000000000000000000000000000000000000000000000000000000000c171700000000000000000000000000000000000000000000000000000000000c171800000000000000000000000000000000000000000000000000000000000c171900000000000000000000000000000000000000000000000000000000000c171a00000000000000000000000000000000000000000000000000000000000c171b00000000000000000000000000000000000000000000000000000000000c171c00000000000000000000000000000000000000000000000000000000000c171d00000000000000000000000000000000000000000000000000000000000c171e00000000000000000000000000000000000000000000000000000000000c171f00000000000000000000000000000000000000000000000000000000000c172000000000000000000000000000000000000000000000000000000000000c172100000000000000000000000000000000000000000000000000000000000c172200000000000000000000000000000000000000000000000000000000000c172300000000000000000000000000000000000000000000000000000000000c172400000000000000000000000000000000000000000000000000000000000c172500000000000000000000000000000000000000000000000000000000000c172600000000000000000000000000000000000000000000000000000000000c172700000000000000000000000000000000000000000000000000000000000c171700000000000000000000000000000000000000000000000000000000000c171800000000000000000000000000000000000000000000000000000000000c171900000000000000000000000000000000000000000000000000000000000c171a00000000000000000000000000000000000000000000000000000000000c171b00000000000000000000000000000000000000000000000000000000000c171c00000000000000000000000000000000000000000000000000000000000c171d00000000000000000000000000000000000000000000000000000000000c171e00000000000000000000000000000000000000000000000000000000000c171f00000000000000000000000000000000000000000000000000000000000c172000000000000000000000000000000000000000000000000000000000000c172100000000000000000000000000000000000000000000000000000000000c172200000000000000000000000000000000000000000000000000000000000c172300000000000000000000000000000000000000000000000000000000000c172400000000000000000000000000000000000000000000000000000000000c172500000000000000000000000000000000000000000000000000000000000c172600000000000000000000000000000000000000000000000000000000000c172700000000000000000000000000000000000000000000000000000000000c172800000000000000000000000000000000000000000000000000000000000c171800000000000000000000000000000000000000000000000000000000000c171900000000000000000000000000000000000000000000000000000000000c171a00000000000000000000000000000000000000000000000000000000000c171b00000000000000000000000000000000000000000000000000000000000c171c00000000000000000000000000000000000000000000000000000000000c171d00000000000000000000000000000000000000000000000000000000000c171e00000000000000000000000000000000000000000000000000000000000c171f00000000000000000000000000000000000000000000000000000000000c172000000000000000000000000000000000000000000000000000000000000c172100000000000000000000000000000000000000000000000000000000000c172200000000000000000000000000000000000000000000000000000000000c172300000000000000000000000000000000000000000000000000000000000c172400000000000000000000000000000000000000000000000000000000000c172500000000000000000000000000000000000000000000000000000000000c172600000000000000000000000000000000000000000000000000000000000c172700000000000000000000000000000000000000000000000000000000000c172800000000000000000000000000000000000000000000000000000000000c172900000000000000000000000000000000000000000000000000000000000c171900000000000000000000000000000000000000000000000000000000000c171a00000000000000000000000000000000000000000000000000000000000c171b00000000000000000000000000000000000000000000000000000000000c171c00000000000000000000000000000000000000000000000000000000000c171d00000000000000000000000000000000000000000000000000000000000c171e00000000000000000000000000000000000000000000000000000000000c171f00000000000000000000000000000000000000000000000000000000000c172000000000000000000000000000000000000000000000000000000000000c172100000000000000000000000000000000000000000000000000000000000c172200000000000000000000000000000000000000000000000000000000000c172300000000000000000000000000000000000000000000000000000000000c172400000000000000000000000000000000000000000000000000000000000c172500000000000000000000000000000000000000000000000000000000000c172600000000000000000000000000000000000000000000000000000000000c172700000000000000000000000000000000000000000000000000000000000c172800000000000000000000000000000000000000000000000000000000000c172900000000000000000000000000000000000000000000000000000000000c172a00000000000000000000000000000000000000000000000000000000000c171a00000000000000000000000000000000000000000000000000000000000c171b00000000000000000000000000000000000000000000000000000000000c171c00000000000000000000000000000000000000000000000000000000000c171d00000000000000000000000000000000000000000000000000000000000c171e00000000000000000000000000000000000000000000000000000000000c171f00000000000000000000000000000000000000000000000000000000000c172000000000000000000000000000000000000000000000000000000000000c172100000000000000000000000000000000000000000000000000000000000c172200000000000000000000000000000000000000000000000000000000000c172300000000000000000000000000000000000000000000000000000000000c172400000000000000000000000000000000000000000000000000000000000c172500000000000000000000000000000000000000000000000000000000000c172600000000000000000000000000000000000000000000000000000000000c172700000000000000000000000000000000000000000000000000000000000c172800000000000000000000000000000000000000000000000000000000000c172900000000000000000000000000000000000000000000000000000000000c172a00000000000000000000000000000000000000000000000000000000000c172b00000000000000000000000000000000000000000000000000000000000c171b00000000000000000000000000000000000000000000000000000000000c171c00000000000000000000000000000000000000000000000000000000000c171d00000000000000000000000000000000000000000000000000000000000c171e00000000000000000000000000000000000000000000000000000000000c171f00000000000000000000000000000000000000000000000000000000000c172000000000000000000000000000000000000000000000000000000000000c172100000000000000000000000000000000000000000000000000000000000c172200000000000000000000000000000000000000000000000000000000000c172300000000000000000000000000000000000000000000000000000000000c172400000000000000000000000000000000000000000000000000000000000c172500000000000000000000000000000000000000000000000000000000000c172600000000000000000000000000000000000000000000000000000000000c172700000000000000000000000000000000000000000000000000000000000c172800000000000000000000000000000000000000000000000000000000000c172900000000000000000000000000000000000000000000000000000000000c172a00000000000000000000000000000000000000000000000000000000000c172b00000000000000000000000000000000000000000000000000000000000c172c00000000000000000000000000000000000000000000000000000000000c171c00000000000000000000000000000000000000000000000000000000000c171d00000000000000000000000000000000000000000000000000000000000c171e00000000000000000000000000000000000000000000000000000000000c171f00000000000000000000000000000000000000000000000000000000000c172000000000000000000000000000000000000000000000000000000000000c172100000000000000000000000000000000000000000000000000000000000c172200000000000000000000000000000000000000000000000000000000000c172300000000000000000000000000000000000000000000000000000000000c172400000000000000000000000000000000000000000000000000000000000c172500000000000000000000000000000000000000000000000000000000000c172600000000000000000000000000000000000000000000000000000000000c172700000000000000000000000000000000000000000000000000000000000c172800000000000000000000000000000000000000000000000000000000000c172900000000000000000000000000000000000000000000000000000000000c172a00000000000000000000000000000000000000000000000000000000000c172b00000000000000000000000000000000000000000000000000000000000c172c00000000000000000000000000000000000000000000000000000000000c172d00000000000000000000000000000000000000000000000000000000000c171d00000000000000000000000000000000000000000000000000000000000c171e00000000000000000000000000000000000000000000000000000000000c171f00000000000000000000000000000000000000000000000000000000000c172000000000000000000000000000000000000000000000000000000000000c172100000000000000000000000000000000000000000000000000000000000c172200000000000000000000000000000000000000000000000000000000000c172300000000000000000000000000000000000000000000000000000000000c172400000000000000000000000000000000000000000000000000000000000c172500000000000000000000000000000000000000000000000000000000000c172600000000000000000000000000000000000000000000000000000000000c172700000000000000000000000000000000000000000000000000000000000c172800000000000000000000000000000000000000000000000000000000000c172900000000000000000000000000000000000000000000000000000000000c172a00000000000000000000000000000000000000000000000000000000000c172b00000000000000000000000000000000000000000000000000000000000c172c00000000000000000000000000000000000000000000000000000000000c172d00000000000000000000000000000000000000000000000000000000000c172e00000000000000000000000000000000000000000000000000000000000c171e00000000000000000000000000000000000000000000000000000000000c171f00000000000000000000000000000000000000000000000000000000000c172000000000000000000000000000000000000000000000000000000000000c172100000000000000000000000000000000000000000000000000000000000c172200000000000000000000000000000000000000000000000000000000000c172300000000000000000000000000000000000000000000000000000000000c172400000000000000000000000000000000000000000000000000000000000c172500000000000000000000000000000000000000000000000000000000000c172600000000000000000000000000000000000000000000000000000000000c172700000000000000000000000000000000000000000000000000000000000c172800000000000000000000000000000000000000000000000000000000000c172900000000000000000000000000000000000000000000000000000000000c172a00000000000000000000000000000000000000000000000000000000000c172b00000000000000000000000000000000000000000000000000000000000c172c00000000000000000000000000000000000000000000000000000000000c172d00000000000000000000000000000000000000000000000000000000000c172e00000000000000000000000000000000000000000000000000000000000c172f00000000000000000000000000000000000000000000000000000000000c171f00000000000000000000000000000000000000000000000000000000000c172000000000000000000000000000000000000000000000000000000000000c172100000000000000000000000000000000000000000000000000000000000c172200000000000000000000000000000000000000000000000000000000000c172300000000000000000000000000000000000000000000000000000000000c172400000000000000000000000000000000000000000000000000000000000c172500000000000000000000000000000000000000000000000000000000000c172600000000000000000000000000000000000000000000000000000000000c172700000000000000000000000000000000000000000000000000000000000c172800000000000000000000000000000000000000000000000000000000000c172900000000000000000000000000000000000000000000000000000000000c172a00000000000000000000000000000000000000000000000000000000000c172b00000000000000000000000000000000000000000000000000000000000c172c00000000000000000000000000000000000000000000000000000000000c172d00000000000000000000000000000000000000000000000000000000000c172e00000000000000000000000000000000000000000000000000000000000c172f00000000000000000000000000000000000000000000000000000000000c17300000002b65cba4233828c7bacee67c1cbb6db457c7f63d8709bca45f0a50811f2782400000000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000101000000000000000000000000000000000000000000000000000000000000010100100000000000000000000000000000000000000000000000000000000001010020000000000000000000000000000000000000000000000000000000000101003000000000000000000000000000000000000000000000000000000000010100400000000000000000000000000000000000000000000000000000000001010050000000000000000000000000000000000000000000000000000000000101006000000000000000000000000000000000000000000000000000000000010100700000000000000000000000000000000000000000000000000000000001010080000000000000000000000000000000000000000000000000000000000101009000000000000000000000000000000000000000000000000000000000010100a000000000000000000000000000000000000000000000000000000000010100b000000000000000000000000000000000000000000000000000000000010100c000000000000000000000000000000000000000000000000000000000010100d000000000000000000000000000000000000000000000000000000000010100e000000000000000000000000000000000000000000000000000000000010100f0000000000000000000000000000000000000000000000000000000000101010000000000000000000000000000000000000000000000000000000000010101100000000000000000000000000000000000000000000000000000000001010120000000000000000000000000000000000000000000000000000000000101013000000000000000000000000000000000000000000000000000000000010101400000000000000000000000000000000000000000000000000000000001010150000000000000000000000000000000000000000000000000000000000101016000000000000000000000000000000000000000000000000000000000010101700000000000000000000000000000000000000000000000000000000001010180000000000000000000000000000000000000000000000000000000000101019000000000000000000000000000000000000000000000000000000000010101a000000000000000000000000000000000000000000000000000000000010101b000000000000000000000000000000000000000000000000000000000010101c000000000000000000000000000000000000000000000000000000000010101d000000000000000000000000000000000000000000000000000000000010101e000000000000000000000000000000000000000000000000000000000010101f0000000000000000000000000000000000000000000000000000000000101020000000000000000000000000000000000000000000000000000000000010102100000000000000000000000000000000000000000000000000000000001010220000000000000000000000000000000000000000000000000000000000101023000000000000000000000000000000000000000000000000000000000010102400000000000000000000000000000000000000000000000000000000001010250000000000000000000000000000000000000000000000000000000000101026000000000000000000000000000000000000000000000000000000000010102700000000000000000000000000000000000000000000000000000000001010280000000000000000000000000000000000000000000000000000000000101029000000000000000000000000000000000000000000000000000000000010102a000000000000000000000000000000000000000000000000000000000010102b000000000000000000000000000000000000000000000000000000000010102c000000000000000000000000000000000000000000000000000000000010102d000000000000000000000000000000000000000000000000000000000010102e000000000000000000000000000000000000000000000000000000000010102f0000000000000000000000000000000000000000000000000000000000101030000000000000000000000000000000000000000000000000000000000010103100000000000000000000000000000000000000000000000000000000001010320000000000000000000000000000000000000000000000000000000000101033000000000000000000000000000000000000000000000000000000000010103400000000000000000000000000000000000000000000000000000000001010350000000000000000000000000000000000000000000000000000000000101036000000000000000000000000000000000000000000000000000000000010103700000000000000000000000000000000000000000000000000000000001010380000000000000000000000000000000000000000000000000000000000101039000000000000000000000000000000000000000000000000000000000010103a000000000000000000000000000000000000000000000000000000000010103b000000000000000000000000000000000000000000000000000000000010103c000000000000000000000000000000000000000000000000000000000010103d000000000000000000000000000000000000000000000000000000000010103e000000000000000000000000000000000000000000000000000000000010103f4000000000000000000000000000000000000000000000000000000000001000010000000000000000000000000000000000000000000000000000000000101100000000000000000000000000000000000000000000000000000000000010110100000000000000000000000000000000000000000000000000000000001011020000000000000000000000000000000000000000000000000000000000101103000000000000000000000000000000000000000000000000000000000010110400000000000000000000000000000000000000000000000000000000001011050000000000000000000000000000000000000000000000000000000000101106000000000000000000000000000000000000000000000000000000000010110700000000000000000000000000000000000000000000000000000000001011080000000000000000000000000000000000000000000000000000000000101109000000000000000000000000000000000000000000000000000000000010110a000000000000000000000000000000000000000000000000000000000010110b000000000000000000000000000000000000000000000000000000000010110c000000000000000000000000000000000000000000000000000000000010110d000000000000000000000000000000000000000000000000000000000010110e000000000000000000000000000000000000000000000000000000000010110f0000000000000000000000000000000000000000000000000000000000101110000000000000000000000000000000000000000000000000000000000010111100000000000000000000000000000000000000000000000000000000001011120000000000000000000000000000000000000000000000000000000000101113000000000000000000000000000000000000000000000000000000000010111400000000000000000000000000000000000000000000000000000000001011150000000000000000000000000000000000000000000000000000000000101116000000000000000000000000000000000000000000000000000000000010111700000000000000000000000000000000000000000000000000000000001011180000000000000000000000000000000000000000000000000000000000101119000000000000000000000000000000000000000000000000000000000010111a000000000000000000000000000000000000000000000000000000000010111b000000000000000000000000000000000000000000000000000000000010111c000000000000000000000000000000000000000000000000000000000010111d000000000000000000000000000000000000000000000000000000000010111e000000000000000000000000000000000000000000000000000000000010111f0000000000000000000000000000000000000000000000000000000000101120000000000000000000000000000000000000000000000000000000000010112100000000000000000000000000000000000000000000000000000000001011220000000000000000000000000000000000000000000000000000000000101123000000000000000000000000000000000000000000000000000000000010112400000000000000000000000000000000000000000000000000000000001011250000000000000000000000000000000000000000000000000000000000101126000000000000000000000000000000000000000000000000000000000010112700000000000000000000000000000000000000000000000000000000001011280000000000000000000000000000000000000000000000000000000000101129000000000000000000000000000000000000000000000000000000000010112a000000000000000000000000000000000000000000000000000000000010112b000000000000000000000000000000000000000000000000000000000010112c000000000000000000000000000000000000000000000000000000000010112d000000000000000000000000000000000000000000000000000000000010112e000000000000000000000000000000000000000000000000000000000010112f0000000000000000000000000000000000000000000000000000000000101130000000000000000000000000000000000000000000000000000000000010113100000000000000000000000000000000000000000000000000000000001011320000000000000000000000000000000000000000000000000000000000101133000000000000000000000000000000000000000000000000000000000010113400000000000000000000000000000000000000000000000000000000001011350000000000000000000000000000000000000000000000000000000000101136000000000000000000000000000000000000000000000000000000000010113700000000000000000000000000000000000000000000000000000000001011380000000000000000000000000000000000000000000000000000000000101139000000000000000000000000000000000000000000000000000000000010113a000000000000000000000000000000000000000000000000000000000010113b000000000000000000000000000000000000000000000000000000000010113c000000000000000000000000000000000000000000000000000000000010113d000000000000000000000000000000000000000000000000000000000010113e080099145b6c0d32753835121f8b271186d01236948a4622ce78a98347fcfc98390085277a27c6acbd5ffc4c19cd65fc30056999e9bec36998f753132db0ff8e2300f3cf77a7261759ebd5f4149f6ad56746f4499cfcd4adf27a1d373f77da64d5009bc6e0e994a23cde8c95b90c1acc1b4a480c6599d1df2c3f9f6e76f3d1aff200d7a1c4a2700dacaaf07f1f0ff33837bdbabcf0b9ace17efabe0761708c4bb900dbeb8e96d14f21e57d5786b6d6ae7e5ddb1bb35935c0fb246d4bdbca62e02c00fbf12b5e0df6223b801088798e4e04d2a92ffe9a11639b7f0ce314e3412a8000d796e0724de03b796ba77069fcd6cf921e566f3aed15eb3e77258add74e9ff400000000000000000000000000000000000000000000000000000000000102000000000000000000000000000000000000000000000000000000000000010200a0000000000000000000000000000000000000000000000000000000000102001000000000000000000000000000000000000000000000000000000000010200b0000000000000000000000000000000000000000000000000000000000102002000000000000000000000000000000000000000000000000000000000010200c0000000000000000000000000000000000000000000000000000000000102003000000000000000000000000000000000000000000000000000000000010200d0000000000000000000000000000000000000000000000000000000000102004000000000000000000000000000000000000000000000000000000000010200e0000000000000000000000000000000000000000000000000000000000102005000000000000000000000000000000000000000000000000000000000010200f00000000000000000000000000000000000000000000000000000000001020060000000000000000000000000000000000000000000000000000000000102010000000000000000000000000000000000000000000000000000000000010200700000000000000000000000000000000000000000000000000000000001020110000000000000000000000000000000000000000000000000000000000102008000000000000000000000000000000000000000000000000000000000010201200000000000000000000000000000000000000000000000000000000001020090000000000000000000000000000000000000000000000000000000000102013000000000000000000000000000000000000000000000000000000000010200a0000000000000000000000000000000000000000000000000000000000102014000000000000000000000000000000000000000000000000000000000010200b0000000000000000000000000000000000000000000000000000000000102015000000000000000000000000000000000000000000000000000000000010200c0000000000000000000000000000000000000000000000000000000000102016000000000000000000000000000000000000000000000000000000000010200d0000000000000000000000000000000000000000000000000000000000102017000000000000000000000000000000000000000000000000000000000010200e0000000000000000000000000000000000000000000000000000000000102018000000000000000000000000000000000000000000000000000000000010200f00000000000000000000000000000000000000000000000000000000001020190000000000000000000000000000000000000000000000000000000000102010000000000000000000000000000000000000000000000000000000000010201a0000000000000000000000000000000000000000000000000000000000102011000000000000000000000000000000000000000000000000000000000010201b0000000000000000000000000000000000000000000000000000000000102012000000000000000000000000000000000000000000000000000000000010201c0000000000000000000000000000000000000000000000000000000000102013000000000000000000000000000000000000000000000000000000000010201d0000000000000000000000000000000000000000000000000000000000102014000000000000000000000000000000000000000000000000000000000010201e0000000000000000000000000000000000000000000000000000000000102015000000000000000000000000000000000000000000000000000000000010201f00000000000000000000000000000000000000000000000000000000001020160000000000000000000000000000000000000000000000000000000000102020000000000000000000000000000000000000000000000000000000000010201700000000000000000000000000000000000000000000000000000000001020210000000000000000000000000000000000000000000000000000000000102018000000000000000000000000000000000000000000000000000000000010202200000000000000000000000000000000000000000000000000000000001020190000000000000000000000000000000000000000000000000000000000102023000000000000000000000000000000000000000000000000000000000010201a0000000000000000000000000000000000000000000000000000000000102024000000000000000000000000000000000000000000000000000000000010201b0000000000000000000000000000000000000000000000000000000000102025000000000000000000000000000000000000000000000000000000000010201c0000000000000000000000000000000000000000000000000000000000102026000000000000000000000000000000000000000000000000000000000010201d0000000000000000000000000000000000000000000000000000000000102027000000000000000000000000000000000000000000000000000000000010201e0000000000000000000000000000000000000000000000000000000000102028000000000000000000000000000000000000000000000000000000000010201f00000000000000000000000000000000000000000000000000000000001020290000000000000000000000000000000000000000000000000000000000102020000000000000000000000000000000000000000000000000000000000010202a0000000000000000000000000000000000000000000000000000000000102021000000000000000000000000000000000000000000000000000000000010202b0000000000000000000000000000000000000000000000000000000000102022000000000000000000000000000000000000000000000000000000000010202c0000000000000000000000000000000000000000000000000000000000102023000000000000000000000000000000000000000000000000000000000010202d0000000000000000000000000000000000000000000000000000000000102024000000000000000000000000000000000000000000000000000000000010202e0000000000000000000000000000000000000000000000000000000000102025000000000000000000000000000000000000000000000000000000000010202f00000000000000000000000000000000000000000000000000000000001020260000000000000000000000000000000000000000000000000000000000102030000000000000000000000000000000000000000000000000000000000010202700000000000000000000000000000000000000000000000000000000001020310000000000000000000000000000000000000000000000000000000000102028000000000000000000000000000000000000000000000000000000000010203200000000000000000000000000000000000000000000000000000000001020290000000000000000000000000000000000000000000000000000000000102033000000000000000000000000000000000000000000000000000000000010202a0000000000000000000000000000000000000000000000000000000000102034000000000000000000000000000000000000000000000000000000000010202b0000000000000000000000000000000000000000000000000000000000102035000000000000000000000000000000000000000000000000000000000010202c0000000000000000000000000000000000000000000000000000000000102036000000000000000000000000000000000000000000000000000000000010202d0000000000000000000000000000000000000000000000000000000000102037000000000000000000000000000000000000000000000000000000000010202e0000000000000000000000000000000000000000000000000000000000102038000000000000000000000000000000000000000000000000000000000010202f00000000000000000000000000000000000000000000000000000000001020390000000000000000000000000000000000000000000000000000000000102030000000000000000000000000000000000000000000000000000000000010203a0000000000000000000000000000000000000000000000000000000000102031000000000000000000000000000000000000000000000000000000000010203b0000000000000000000000000000000000000000000000000000000000102032000000000000000000000000000000000000000000000000000000000010203c0000000000000000000000000000000000000000000000000000000000102033000000000000000000000000000000000000000000000000000000000010203d0000000000000000000000000000000000000000000000000000000000102034000000000000000000000000000000000000000000000000000000000010203e0000000000000000000000000000000000000000000000000000000000102035000000000000000000000000000000000000000000000000000000000010203f00000000000000000000000000000000000000000000000000000000001020360000000000000000000000000000000000000000000000000000000000102040000000000000000000000000000000000000000000000000000000000010203700000000000000000000000000000000000000000000000000000000001020410000000000000000000000000000000000000000000000000000000000102038000000000000000000000000000000000000000000000000000000000010204200000000000000000000000000000000000000000000000000000000001020390000000000000000000000000000000000000000000000000000000000102043000000000000000000000000000000000000000000000000000000000010203a0000000000000000000000000000000000000000000000000000000000102044000000000000000000000000000000000000000000000000000000000010203b0000000000000000000000000000000000000000000000000000000000102045000000000000000000000000000000000000000000000000000000000010203c0000000000000000000000000000000000000000000000000000000000102046000000000000000000000000000000000000000000000000000000000010203d0000000000000000000000000000000000000000000000000000000000102047000000000000000000000000000000000000000000000000000000000010203e0000000000000000000000000000000000000000000000000000000000102048000000000000000000000000000000000000000000000000000000000010203f0000000000000000000000000000000000000000000000000000000000102049200000000000000000000000000000000000000000000000000000000000101700000000000000000000000000000000000000000000000000000000000010170100000000000000000000000000000000000000000000000000000000001017020000000000000000000000000000000000000000000000000000000000101703000000000000000000000000000000000000000000000000000000000010170400000000000000000000000000000000000000000000000000000000001017050000000000000000000000000000000000000000000000000000000000101706000000000000000000000000000000000000000000000000000000000010170700000000000000000000000000000000000000000000000000000000001017080000000000000000000000000000000000000000000000000000000000101709000000000000000000000000000000000000000000000000000000000010170a000000000000000000000000000000000000000000000000000000000010170b000000000000000000000000000000000000000000000000000000000010170c000000000000000000000000000000000000000000000000000000000010170d000000000000000000000000000000000000000000000000000000000010170e000000000000000000000000000000000000000000000000000000000010170f00000000000000000000000000000000000000000000000000000000001017100000000000000000000000000000000000000000000000000000000000101711000000000000000000000000000000000000000000000000000000000010170100000000000000000000000000000000000000000000000000000000001017020000000000000000000000000000000000000000000000000000000000101703000000000000000000000000000000000000000000000000000000000010170400000000000000000000000000000000000000000000000000000000001017050000000000000000000000000000000000000000000000000000000000101706000000000000000000000000000000000000000000000000000000000010170700000000000000000000000000000000000000000000000000000000001017080000000000000000000000000000000000000000000000000000000000101709000000000000000000000000000000000000000000000000000000000010170a000000000000000000000000000000000000000000000000000000000010170b000000000000000000000000000000000000000000000000000000000010170c000000000000000000000000000000000000000000000000000000000010170d000000000000000000000000000000000000000000000000000000000010170e000000000000000000000000000000000000000000000000000000000010170f00000000000000000000000000000000000000000000000000000000001017100000000000000000000000000000000000000000000000000000000000101711000000000000000000000000000000000000000000000000000000000010171200000000000000000000000000000000000000000000000000000000001017020000000000000000000000000000000000000000000000000000000000101703000000000000000000000000000000000000000000000000000000000010170400000000000000000000000000000000000000000000000000000000001017050000000000000000000000000000000000000000000000000000000000101706000000000000000000000000000000000000000000000000000000000010170700000000000000000000000000000000000000000000000000000000001017080000000000000000000000000000000000000000000000000000000000101709000000000000000000000000000000000000000000000000000000000010170a000000000000000000000000000000000000000000000000000000000010170b000000000000000000000000000000000000000000000000000000000010170c000000000000000000000000000000000000000000000000000000000010170d000000000000000000000000000000000000000000000000000000000010170e000000000000000000000000000000000000000000000000000000000010170f00000000000000000000000000000000000000000000000000000000001017100000000000000000000000000000000000000000000000000000000000101711000000000000000000000000000000000000000000000000000000000010171200000000000000000000000000000000000000000000000000000000001017130000000000000000000000000000000000000000000000000000000000101703000000000000000000000000000000000000000000000000000000000010170400000000000000000000000000000000000000000000000000000000001017050000000000000000000000000000000000000000000000000000000000101706000000000000000000000000000000000000000000000000000000000010170700000000000000000000000000000000000000000000000000000000001017080000000000000000000000000000000000000000000000000000000000101709000000000000000000000000000000000000000000000000000000000010170a000000000000000000000000000000000000000000000000000000000010170b000000000000000000000000000000000000000000000000000000000010170c000000000000000000000000000000000000000000000000000000000010170d000000000000000000000000000000000000000000000000000000000010170e000000000000000000000000000000000000000000000000000000000010170f00000000000000000000000000000000000000000000000000000000001017100000000000000000000000000000000000000000000000000000000000101711000000000000000000000000000000000000000000000000000000000010171200000000000000000000000000000000000000000000000000000000001017130000000000000000000000000000000000000000000000000000000000101714000000000000000000000000000000000000000000000000000000000010170400000000000000000000000000000000000000000000000000000000001017050000000000000000000000000000000000000000000000000000000000101706000000000000000000000000000000000000000000000000000000000010170700000000000000000000000000000000000000000000000000000000001017080000000000000000000000000000000000000000000000000000000000101709000000000000000000000000000000000000000000000000000000000010170a000000000000000000000000000000000000000000000000000000000010170b000000000000000000000000000000000000000000000000000000000010170c000000000000000000000000000000000000000000000000000000000010170d000000000000000000000000000000000000000000000000000000000010170e000000000000000000000000000000000000000000000000000000000010170f00000000000000000000000000000000000000000000000000000000001017100000000000000000000000000000000000000000000000000000000000101711000000000000000000000000000000000000000000000000000000000010171200000000000000000000000000000000000000000000000000000000001017130000000000000000000000000000000000000000000000000000000000101714000000000000000000000000000000000000000000000000000000000010171500000000000000000000000000000000000000000000000000000000001017050000000000000000000000000000000000000000000000000000000000101706000000000000000000000000000000000000000000000000000000000010170700000000000000000000000000000000000000000000000000000000001017080000000000000000000000000000000000000000000000000000000000101709000000000000000000000000000000000000000000000000000000000010170a000000000000000000000000000000000000000000000000000000000010170b000000000000000000000000000000000000000000000000000000000010170c000000000000000000000000000000000000000000000000000000000010170d000000000000000000000000000000000000000000000000000000000010170e000000000000000000000000000000000000000000000000000000000010170f00000000000000000000000000000000000000000000000000000000001017100000000000000000000000000000000000000000000000000000000000101711000000000000000000000000000000000000000000000000000000000010171200000000000000000000000000000000000000000000000000000000001017130000000000000000000000000000000000000000000000000000000000101714000000000000000000000000000000000000000000000000000000000010171500000000000000000000000000000000000000000000000000000000001017160000000000000000000000000000000000000000000000000000000000101706000000000000000000000000000000000000000000000000000000000010170700000000000000000000000000000000000000000000000000000000001017080000000000000000000000000000000000000000000000000000000000101709000000000000000000000000000000000000000000000000000000000010170a000000000000000000000000000000000000000000000000000000000010170b000000000000000000000000000000000000000000000000000000000010170c000000000000000000000000000000000000000000000000000000000010170d000000000000000000000000000000000000000000000000000000000010170e000000000000000000000000000000000000000000000000000000000010170f00000000000000000000000000000000000000000000000000000000001017100000000000000000000000000000000000000000000000000000000000101711000000000000000000000000000000000000000000000000000000000010171200000000000000000000000000000000000000000000000000000000001017130000000000000000000000000000000000000000000000000000000000101714000000000000000000000000000000000000000000000000000000000010171500000000000000000000000000000000000000000000000000000000001017160000000000000000000000000000000000000000000000000000000000101717000000000000000000000000000000000000000000000000000000000010170700000000000000000000000000000000000000000000000000000000001017080000000000000000000000000000000000000000000000000000000000101709000000000000000000000000000000000000000000000000000000000010170a000000000000000000000000000000000000000000000000000000000010170b000000000000000000000000000000000000000000000000000000000010170c000000000000000000000000000000000000000000000000000000000010170d000000000000000000000000000000000000000000000000000000000010170e000000000000000000000000000000000000000000000000000000000010170f00000000000000000000000000000000000000000000000000000000001017100000000000000000000000000000000000000000000000000000000000101711000000000000000000000000000000000000000000000000000000000010171200000000000000000000000000000000000000000000000000000000001017130000000000000000000000000000000000000000000000000000000000101714000000000000000000000000000000000000000000000000000000000010171500000000000000000000000000000000000000000000000000000000001017160000000000000000000000000000000000000000000000000000000000101717000000000000000000000000000000000000000000000000000000000010171800000000000000000000000000000000000000000000000000000000001017080000000000000000000000000000000000000000000000000000000000101709000000000000000000000000000000000000000000000000000000000010170a000000000000000000000000000000000000000000000000000000000010170b000000000000000000000000000000000000000000000000000000000010170c000000000000000000000000000000000000000000000000000000000010170d000000000000000000000000000000000000000000000000000000000010170e000000000000000000000000000000000000000000000000000000000010170f00000000000000000000000000000000000000000000000000000000001017100000000000000000000000000000000000000000000000000000000000101711000000000000000000000000000000000000000000000000000000000010171200000000000000000000000000000000000000000000000000000000001017130000000000000000000000000000000000000000000000000000000000101714000000000000000000000000000000000000000000000000000000000010171500000000000000000000000000000000000000000000000000000000001017160000000000000000000000000000000000000000000000000000000000101717000000000000000000000000000000000000000000000000000000000010171800000000000000000000000000000000000000000000000000000000001017190000000000000000000000000000000000000000000000000000000000101709000000000000000000000000000000000000000000000000000000000010170a000000000000000000000000000000000000000000000000000000000010170b000000000000000000000000000000000000000000000000000000000010170c000000000000000000000000000000000000000000000000000000000010170d000000000000000000000000000000000000000000000000000000000010170e000000000000000000000000000000000000000000000000000000000010170f0000000000000000000000000000000000000000000000000000000000101710000000000000000000000000000000000000000000000000000000000010171100000000000000000000000000000000000000000000000000000000001017120000000000000000000000000000000000000000000000000000000000101713000000000000000000000000000000000000000000000000000000000010171400000000000000000000000000000000000000000000000000000000001017150000000000000000000000000000000000000000000000000000000000101716000000000000000000000000000000000000000000000000000000000010171700000000000000000000000000000000000000000000000000000000001017180000000000000000000000000000000000000000000000000000000000101719000000000000000000000000000000000000000000000000000000000010171a000000000000000000000000000000000000000000000000000000000010170a000000000000000000000000000000000000000000000000000000000010170b000000000000000000000000000000000000000000000000000000000010170c000000000000000000000000000000000000000000000000000000000010170d000000000000000000000000000000000000000000000000000000000010170e000000000000000000000000000000000000000000000000000000000010170f0000000000000000000000000000000000000000000000000000000000101710000000000000000000000000000000000000000000000000000000000010171100000000000000000000000000000000000000000000000000000000001017120000000000000000000000000000000000000000000000000000000000101713000000000000000000000000000000000000000000000000000000000010171400000000000000000000000000000000000000000000000000000000001017150000000000000000000000000000000000000000000000000000000000101716000000000000000000000000000000000000000000000000000000000010171700000000000000000000000000000000000000000000000000000000001017180000000000000000000000000000000000000000000000000000000000101719000000000000000000000000000000000000000000000000000000000010171a000000000000000000000000000000000000000000000000000000000010171b000000000000000000000000000000000000000000000000000000000010170b000000000000000000000000000000000000000000000000000000000010170c000000000000000000000000000000000000000000000000000000000010170d000000000000000000000000000000000000000000000000000000000010170e000000000000000000000000000000000000000000000000000000000010170f0000000000000000000000000000000000000000000000000000000000101710000000000000000000000000000000000000000000000000000000000010171100000000000000000000000000000000000000000000000000000000001017120000000000000000000000000000000000000000000000000000000000101713000000000000000000000000000000000000000000000000000000000010171400000000000000000000000000000000000000000000000000000000001017150000000000000000000000000000000000000000000000000000000000101716000000000000000000000000000000000000000000000000000000000010171700000000000000000000000000000000000000000000000000000000001017180000000000000000000000000000000000000000000000000000000000101719000000000000000000000000000000000000000000000000000000000010171a000000000000000000000000000000000000000000000000000000000010171b000000000000000000000000000000000000000000000000000000000010171c000000000000000000000000000000000000000000000000000000000010170c000000000000000000000000000000000000000000000000000000000010170d000000000000000000000000000000000000000000000000000000000010170e000000000000000000000000000000000000000000000000000000000010170f0000000000000000000000000000000000000000000000000000000000101710000000000000000000000000000000000000000000000000000000000010171100000000000000000000000000000000000000000000000000000000001017120000000000000000000000000000000000000000000000000000000000101713000000000000000000000000000000000000000000000000000000000010171400000000000000000000000000000000000000000000000000000000001017150000000000000000000000000000000000000000000000000000000000101716000000000000000000000000000000000000000000000000000000000010171700000000000000000000000000000000000000000000000000000000001017180000000000000000000000000000000000000000000000000000000000101719000000000000000000000000000000000000000000000000000000000010171a000000000000000000000000000000000000000000000000000000000010171b000000000000000000000000000000000000000000000000000000000010171c000000000000000000000000000000000000000000000000000000000010171d000000000000000000000000000000000000000000000000000000000010170d000000000000000000000000000000000000000000000000000000000010170e000000000000000000000000000000000000000000000000000000000010170f0000000000000000000000000000000000000000000000000000000000101710000000000000000000000000000000000000000000000000000000000010171100000000000000000000000000000000000000000000000000000000001017120000000000000000000000000000000000000000000000000000000000101713000000000000000000000000000000000000000000000000000000000010171400000000000000000000000000000000000000000000000000000000001017150000000000000000000000000000000000000000000000000000000000101716000000000000000000000000000000000000000000000000000000000010171700000000000000000000000000000000000000000000000000000000001017180000000000000000000000000000000000000000000000000000000000101719000000000000000000000000000000000000000000000000000000000010171a000000000000000000000000000000000000000000000000000000000010171b000000000000000000000000000000000000000000000000000000000010171c000000000000000000000000000000000000000000000000000000000010171d000000000000000000000000000000000000000000000000000000000010171e000000000000000000000000000000000000000000000000000000000010170e000000000000000000000000000000000000000000000000000000000010170f0000000000000000000000000000000000000000000000000000000000101710000000000000000000000000000000000000000000000000000000000010171100000000000000000000000000000000000000000000000000000000001017120000000000000000000000000000000000000000000000000000000000101713000000000000000000000000000000000000000000000000000000000010171400000000000000000000000000000000000000000000000000000000001017150000000000000000000000000000000000000000000000000000000000101716000000000000000000000000000000000000000000000000000000000010171700000000000000000000000000000000000000000000000000000000001017180000000000000000000000000000000000000000000000000000000000101719000000000000000000000000000000000000000000000000000000000010171a000000000000000000000000000000000000000000000000000000000010171b000000000000000000000000000000000000000000000000000000000010171c000000000000000000000000000000000000000000000000000000000010171d000000000000000000000000000000000000000000000000000000000010171e000000000000000000000000000000000000000000000000000000000010171f000000000000000000000000000000000000000000000000000000000010170f0000000000000000000000000000000000000000000000000000000000101710000000000000000000000000000000000000000000000000000000000010171100000000000000000000000000000000000000000000000000000000001017120000000000000000000000000000000000000000000000000000000000101713000000000000000000000000000000000000000000000000000000000010171400000000000000000000000000000000000000000000000000000000001017150000000000000000000000000000000000000000000000000000000000101716000000000000000000000000000000000000000000000000000000000010171700000000000000000000000000000000000000000000000000000000001017180000000000000000000000000000000000000000000000000000000000101719000000000000000000000000000000000000000000000000000000000010171a000000000000000000000000000000000000000000000000000000000010171b000000000000000000000000000000000000000000000000000000000010171c000000000000000000000000000000000000000000000000000000000010171d000000000000000000000000000000000000000000000000000000000010171e000000000000000000000000000000000000000000000000000000000010171f00000000000000000000000000000000000000000000000000000000001017200000000000000000000000000000000000000000000000000000000000101710000000000000000000000000000000000000000000000000000000000010171100000000000000000000000000000000000000000000000000000000001017120000000000000000000000000000000000000000000000000000000000101713000000000000000000000000000000000000000000000000000000000010171400000000000000000000000000000000000000000000000000000000001017150000000000000000000000000000000000000000000000000000000000101716000000000000000000000000000000000000000000000000000000000010171700000000000000000000000000000000000000000000000000000000001017180000000000000000000000000000000000000000000000000000000000101719000000000000000000000000000000000000000000000000000000000010171a000000000000000000000000000000000000000000000000000000000010171b000000000000000000000000000000000000000000000000000000000010171c000000000000000000000000000000000000000000000000000000000010171d000000000000000000000000000000000000000000000000000000000010171e000000000000000000000000000000000000000000000000000000000010171f00000000000000000000000000000000000000000000000000000000001017200000000000000000000000000000000000000000000000000000000000101721000000000000000000000000000000000000000000000000000000000010171100000000000000000000000000000000000000000000000000000000001017120000000000000000000000000000000000000000000000000000000000101713000000000000000000000000000000000000000000000000000000000010171400000000000000000000000000000000000000000000000000000000001017150000000000000000000000000000000000000000000000000000000000101716000000000000000000000000000000000000000000000000000000000010171700000000000000000000000000000000000000000000000000000000001017180000000000000000000000000000000000000000000000000000000000101719000000000000000000000000000000000000000000000000000000000010171a000000000000000000000000000000000000000000000000000000000010171b000000000000000000000000000000000000000000000000000000000010171c000000000000000000000000000000000000000000000000000000000010171d000000000000000000000000000000000000000000000000000000000010171e000000000000000000000000000000000000000000000000000000000010171f00000000000000000000000000000000000000000000000000000000001017200000000000000000000000000000000000000000000000000000000000101721000000000000000000000000000000000000000000000000000000000010172200000000000000000000000000000000000000000000000000000000001017120000000000000000000000000000000000000000000000000000000000101713000000000000000000000000000000000000000000000000000000000010171400000000000000000000000000000000000000000000000000000000001017150000000000000000000000000000000000000000000000000000000000101716000000000000000000000000000000000000000000000000000000000010171700000000000000000000000000000000000000000000000000000000001017180000000000000000000000000000000000000000000000000000000000101719000000000000000000000000000000000000000000000000000000000010171a000000000000000000000000000000000000000000000000000000000010171b000000000000000000000000000000000000000000000000000000000010171c000000000000000000000000000000000000000000000000000000000010171d000000000000000000000000000000000000000000000000000000000010171e000000000000000000000000000000000000000000000000000000000010171f00000000000000000000000000000000000000000000000000000000001017200000000000000000000000000000000000000000000000000000000000101721000000000000000000000000000000000000000000000000000000000010172200000000000000000000000000000000000000000000000000000000001017230000000000000000000000000000000000000000000000000000000000101713000000000000000000000000000000000000000000000000000000000010171400000000000000000000000000000000000000000000000000000000001017150000000000000000000000000000000000000000000000000000000000101716000000000000000000000000000000000000000000000000000000000010171700000000000000000000000000000000000000000000000000000000001017180000000000000000000000000000000000000000000000000000000000101719000000000000000000000000000000000000000000000000000000000010171a000000000000000000000000000000000000000000000000000000000010171b000000000000000000000000000000000000000000000000000000000010171c000000000000000000000000000000000000000000000000000000000010171d000000000000000000000000000000000000000000000000000000000010171e000000000000000000000000000000000000000000000000000000000010171f00000000000000000000000000000000000000000000000000000000001017200000000000000000000000000000000000000000000000000000000000101721000000000000000000000000000000000000000000000000000000000010172200000000000000000000000000000000000000000000000000000000001017230000000000000000000000000000000000000000000000000000000000101724000000000000000000000000000000000000000000000000000000000010171400000000000000000000000000000000000000000000000000000000001017150000000000000000000000000000000000000000000000000000000000101716000000000000000000000000000000000000000000000000000000000010171700000000000000000000000000000000000000000000000000000000001017180000000000000000000000000000000000000000000000000000000000101719000000000000000000000000000000000000000000000000000000000010171a000000000000000000000000000000000000000000000000000000000010171b000000000000000000000000000000000000000000000000000000000010171c000000000000000000000000000000000000000000000000000000000010171d000000000000000000000000000000000000000000000000000000000010171e000000000000000000000000000000000000000000000000000000000010171f00000000000000000000000000000000000000000000000000000000001017200000000000000000000000000000000000000000000000000000000000101721000000000000000000000000000000000000000000000000000000000010172200000000000000000000000000000000000000000000000000000000001017230000000000000000000000000000000000000000000000000000000000101724000000000000000000000000000000000000000000000000000000000010172500000000000000000000000000000000000000000000000000000000001017150000000000000000000000000000000000000000000000000000000000101716000000000000000000000000000000000000000000000000000000000010171700000000000000000000000000000000000000000000000000000000001017180000000000000000000000000000000000000000000000000000000000101719000000000000000000000000000000000000000000000000000000000010171a000000000000000000000000000000000000000000000000000000000010171b000000000000000000000000000000000000000000000000000000000010171c000000000000000000000000000000000000000000000000000000000010171d000000000000000000000000000000000000000000000000000000000010171e000000000000000000000000000000000000000000000000000000000010171f00000000000000000000000000000000000000000000000000000000001017200000000000000000000000000000000000000000000000000000000000101721000000000000000000000000000000000000000000000000000000000010172200000000000000000000000000000000000000000000000000000000001017230000000000000000000000000000000000000000000000000000000000101724000000000000000000000000000000000000000000000000000000000010172500000000000000000000000000000000000000000000000000000000001017260000000000000000000000000000000000000000000000000000000000101716000000000000000000000000000000000000000000000000000000000010171700000000000000000000000000000000000000000000000000000000001017180000000000000000000000000000000000000000000000000000000000101719000000000000000000000000000000000000000000000000000000000010171a000000000000000000000000000000000000000000000000000000000010171b000000000000000000000000000000000000000000000000000000000010171c000000000000000000000000000000000000000000000000000000000010171d000000000000000000000000000000000000000000000000000000000010171e000000000000000000000000000000000000000000000000000000000010171f00000000000000000000000000000000000000000000000000000000001017200000000000000000000000000000000000000000000000000000000000101721000000000000000000000000000000000000000000000000000000000010172200000000000000000000000000000000000000000000000000000000001017230000000000000000000000000000000000000000000000000000000000101724000000000000000000000000000000000000000000000000000000000010172500000000000000000000000000000000000000000000000000000000001017260000000000000000000000000000000000000000000000000000000000101727000000000000000000000000000000000000000000000000000000000010171700000000000000000000000000000000000000000000000000000000001017180000000000000000000000000000000000000000000000000000000000101719000000000000000000000000000000000000000000000000000000000010171a000000000000000000000000000000000000000000000000000000000010171b000000000000000000000000000000000000000000000000000000000010171c000000000000000000000000000000000000000000000000000000000010171d000000000000000000000000000000000000000000000000000000000010171e000000000000000000000000000000000000000000000000000000000010171f00000000000000000000000000000000000000000000000000000000001017200000000000000000000000000000000000000000000000000000000000101721000000000000000000000000000000000000000000000000000000000010172200000000000000000000000000000000000000000000000000000000001017230000000000000000000000000000000000000000000000000000000000101724000000000000000000000000000000000000000000000000000000000010172500000000000000000000000000000000000000000000000000000000001017260000000000000000000000000000000000000000000000000000000000101727000000000000000000000000000000000000000000000000000000000010172800000000000000000000000000000000000000000000000000000000001017180000000000000000000000000000000000000000000000000000000000101719000000000000000000000000000000000000000000000000000000000010171a000000000000000000000000000000000000000000000000000000000010171b000000000000000000000000000000000000000000000000000000000010171c000000000000000000000000000000000000000000000000000000000010171d000000000000000000000000000000000000000000000000000000000010171e000000000000000000000000000000000000000000000000000000000010171f00000000000000000000000000000000000000000000000000000000001017200000000000000000000000000000000000000000000000000000000000101721000000000000000000000000000000000000000000000000000000000010172200000000000000000000000000000000000000000000000000000000001017230000000000000000000000000000000000000000000000000000000000101724000000000000000000000000000000000000000000000000000000000010172500000000000000000000000000000000000000000000000000000000001017260000000000000000000000000000000000000000000000000000000000101727000000000000000000000000000000000000000000000000000000000010172800000000000000000000000000000000000000000000000000000000001017290000000000000000000000000000000000000000000000000000000000101719000000000000000000000000000000000000000000000000000000000010171a000000000000000000000000000000000000000000000000000000000010171b000000000000000000000000000000000000000000000000000000000010171c000000000000000000000000000000000000000000000000000000000010171d000000000000000000000000000000000000000000000000000000000010171e000000000000000000000000000000000000000000000000000000000010171f0000000000000000000000000000000000000000000000000000000000101720000000000000000000000000000000000000000000000000000000000010172100000000000000000000000000000000000000000000000000000000001017220000000000000000000000000000000000000000000000000000000000101723000000000000000000000000000000000000000000000000000000000010172400000000000000000000000000000000000000000000000000000000001017250000000000000000000000000000000000000000000000000000000000101726000000000000000000000000000000000000000000000000000000000010172700000000000000000000000000000000000000000000000000000000001017280000000000000000000000000000000000000000000000000000000000101729000000000000000000000000000000000000000000000000000000000010172a000000000000000000000000000000000000000000000000000000000010171a000000000000000000000000000000000000000000000000000000000010171b000000000000000000000000000000000000000000000000000000000010171c000000000000000000000000000000000000000000000000000000000010171d000000000000000000000000000000000000000000000000000000000010171e000000000000000000000000000000000000000000000000000000000010171f0000000000000000000000000000000000000000000000000000000000101720000000000000000000000000000000000000000000000000000000000010172100000000000000000000000000000000000000000000000000000000001017220000000000000000000000000000000000000000000000000000000000101723000000000000000000000000000000000000000000000000000000000010172400000000000000000000000000000000000000000000000000000000001017250000000000000000000000000000000000000000000000000000000000101726000000000000000000000000000000000000000000000000000000000010172700000000000000000000000000000000000000000000000000000000001017280000000000000000000000000000000000000000000000000000000000101729000000000000000000000000000000000000000000000000000000000010172a000000000000000000000000000000000000000000000000000000000010172b000000000000000000000000000000000000000000000000000000000010171b000000000000000000000000000000000000000000000000000000000010171c000000000000000000000000000000000000000000000000000000000010171d000000000000000000000000000000000000000000000000000000000010171e000000000000000000000000000000000000000000000000000000000010171f0000000000000000000000000000000000000000000000000000000000101720000000000000000000000000000000000000000000000000000000000010172100000000000000000000000000000000000000000000000000000000001017220000000000000000000000000000000000000000000000000000000000101723000000000000000000000000000000000000000000000000000000000010172400000000000000000000000000000000000000000000000000000000001017250000000000000000000000000000000000000000000000000000000000101726000000000000000000000000000000000000000000000000000000000010172700000000000000000000000000000000000000000000000000000000001017280000000000000000000000000000000000000000000000000000000000101729000000000000000000000000000000000000000000000000000000000010172a000000000000000000000000000000000000000000000000000000000010172b000000000000000000000000000000000000000000000000000000000010172c000000000000000000000000000000000000000000000000000000000010171c000000000000000000000000000000000000000000000000000000000010171d000000000000000000000000000000000000000000000000000000000010171e000000000000000000000000000000000000000000000000000000000010171f0000000000000000000000000000000000000000000000000000000000101720000000000000000000000000000000000000000000000000000000000010172100000000000000000000000000000000000000000000000000000000001017220000000000000000000000000000000000000000000000000000000000101723000000000000000000000000000000000000000000000000000000000010172400000000000000000000000000000000000000000000000000000000001017250000000000000000000000000000000000000000000000000000000000101726000000000000000000000000000000000000000000000000000000000010172700000000000000000000000000000000000000000000000000000000001017280000000000000000000000000000000000000000000000000000000000101729000000000000000000000000000000000000000000000000000000000010172a000000000000000000000000000000000000000000000000000000000010172b000000000000000000000000000000000000000000000000000000000010172c000000000000000000000000000000000000000000000000000000000010172d000000000000000000000000000000000000000000000000000000000010171d000000000000000000000000000000000000000000000000000000000010171e000000000000000000000000000000000000000000000000000000000010171f0000000000000000000000000000000000000000000000000000000000101720000000000000000000000000000000000000000000000000000000000010172100000000000000000000000000000000000000000000000000000000001017220000000000000000000000000000000000000000000000000000000000101723000000000000000000000000000000000000000000000000000000000010172400000000000000000000000000000000000000000000000000000000001017250000000000000000000000000000000000000000000000000000000000101726000000000000000000000000000000000000000000000000000000000010172700000000000000000000000000000000000000000000000000000000001017280000000000000000000000000000000000000000000000000000000000101729000000000000000000000000000000000000000000000000000000000010172a000000000000000000000000000000000000000000000000000000000010172b000000000000000000000000000000000000000000000000000000000010172c000000000000000000000000000000000000000000000000000000000010172d000000000000000000000000000000000000000000000000000000000010172e000000000000000000000000000000000000000000000000000000000010171e000000000000000000000000000000000000000000000000000000000010171f0000000000000000000000000000000000000000000000000000000000101720000000000000000000000000000000000000000000000000000000000010172100000000000000000000000000000000000000000000000000000000001017220000000000000000000000000000000000000000000000000000000000101723000000000000000000000000000000000000000000000000000000000010172400000000000000000000000000000000000000000000000000000000001017250000000000000000000000000000000000000000000000000000000000101726000000000000000000000000000000000000000000000000000000000010172700000000000000000000000000000000000000000000000000000000001017280000000000000000000000000000000000000000000000000000000000101729000000000000000000000000000000000000000000000000000000000010172a000000000000000000000000000000000000000000000000000000000010172b000000000000000000000000000000000000000000000000000000000010172c000000000000000000000000000000000000000000000000000000000010172d000000000000000000000000000000000000000000000000000000000010172e000000000000000000000000000000000000000000000000000000000010172f000000000000000000000000000000000000000000000000000000000010171f0000000000000000000000000000000000000000000000000000000000101720000000000000000000000000000000000000000000000000000000000010172100000000000000000000000000000000000000000000000000000000001017220000000000000000000000000000000000000000000000000000000000101723000000000000000000000000000000000000000000000000000000000010172400000000000000000000000000000000000000000000000000000000001017250000000000000000000000000000000000000000000000000000000000101726000000000000000000000000000000000000000000000000000000000010172700000000000000000000000000000000000000000000000000000000001017280000000000000000000000000000000000000000000000000000000000101729000000000000000000000000000000000000000000000000000000000010172a000000000000000000000000000000000000000000000000000000000010172b000000000000000000000000000000000000000000000000000000000010172c000000000000000000000000000000000000000000000000000000000010172d000000000000000000000000000000000000000000000000000000000010172e000000000000000000000000000000000000000000000000000000000010172f00000000000000000000000000000000000000000000000000000000001017300000", "decodedHeader": { "contentCommitment": { - "blobsHash": "0x008bca7ca4b7a8e50b8c6668f22a085bc22db8c07a6bd6cc556c2bc6bb4c619c", + "blobsHash": "0x001710ef5972afe6e206225f18e63f9764829144c34e8b9ebfc23de47dc52c3e", "inHash": "0x00089a9d421a82c4a25f7acbebe69e638d5b064fa8a60e018793dcb0be53752c", "outHash": "0x000ca4a4610ad22c97c9161cedcf01faa3619f1b85457f1627d09627b71903a6", "numTxs": 4 }, "globalVariables": { "blockNumber": 1, - "slotNumber": "0x000000000000000000000000000000000000000000000000000000000000001b", + "slotNumber": "0x0000000000000000000000000000000000000000000000000000000000000019", "chainId": 31337, - "timestamp": 1736365060, + "timestamp": 1742999713, "version": 1, - "coinbase": "0x47a5c7b19f878b54220ac956fb944fcfb5f6b2e6", - "feeRecipient": "0x0ffa0bf0720b8a60f9ff8083ccc832d2667594435c2a611ee678c145019d282e", + "coinbase": "0xd000439d68f416a72188f6c91df9835e23d1619d", + "feeRecipient": "0x27f4b7fbf6f8db148d464396089d97cb994ababc3e1923d24b1e6076b0431b00", "gasFees": { "feePerDaGas": 0, - "feePerL2Gas": 54153579570 + "feePerL2Gas": 1020 } }, "totalFees": "0x0000000000000000000000000000000000000000000000000000000000000000", @@ -108,9 +107,9 @@ } } }, - "header": "0x0237797d6a2c04d20d4fa06b74482bd970ccd51a43d9b05b57e9b91fa1ae1cae000000010000000000000000000000000000000000000000000000000000000000000004008bca7ca4b7a8e50b8c6668f22a085bc22db8c07a6bd6cc556c2bc6bb4c619c00089a9d421a82c4a25f7acbebe69e638d5b064fa8a60e018793dcb0be53752c000ca4a4610ad22c97c9161cedcf01faa3619f1b85457f1627d09627b71903a62e33ee2008411c04b99c24b313513d097a0d21a5040b6193d1f978b8226892d60000001000553ea03210e12bf95ed15f0105108f39db784d318cfe9b52cba413618711ce000001000627376bc9d9804095498d2fe262c2dceeb5ecfc696966496eaee65f1798fed5000001802ded0a11981f5a48076e10c1cf9c4d0676488ed8eab842d8864facb270a02bae000001800000000000000000000000000000000000000000000000000000000000007a6900000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000001b00000000000000000000000000000000000000000000000000000000677ed40447a5c7b19f878b54220ac956fb944fcfb5f6b2e60ffa0bf0720b8a60f9ff8083ccc832d2667594435c2a611ee678c145019d282e00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000c9bce0c3200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", - "publicInputsHash": "0x0024ae2f3aaaf1d9958045c221cf68e6b42c7cfe6c014941deb02332d0d1ac60", - "blobInputs": "0x010113d536ef349476f9a5112623449dd1cf574b8213bc6fe33c1edd63bf83289007aff2e4e0cf034a567292731f00b399caf9363aa6885f736b8a1c5c8da3f6f841298f6b0fcd5d6cee2ed721062ef4073eccd62587ff8c39fc91a0661b1a84c2aeb181a091e4f2b84b310211a799750debedff7cd99ade96f11a8b7e21a59f8da25d7077fae92bd1c8234f36a81311e49852d0733109a1b38a5d14bba0f88598f4319dd61a17a5c2d84c63715500c6f2bbbcb6541d22ff3e74830ba760b00615", + "header": "0x0237797d6a2c04d20d4fa06b74482bd970ccd51a43d9b05b57e9b91fa1ae1cae000000010000000000000000000000000000000000000000000000000000000000000004001710ef5972afe6e206225f18e63f9764829144c34e8b9ebfc23de47dc52c3e00089a9d421a82c4a25f7acbebe69e638d5b064fa8a60e018793dcb0be53752c000ca4a4610ad22c97c9161cedcf01faa3619f1b85457f1627d09627b71903a62e33ee2008411c04b99c24b313513d097a0d21a5040b6193d1f978b8226892d60000001000553ea03210e12bf95ed15f0105108f39db784d318cfe9b52cba413618711ce000001000627376bc9d9804095498d2fe262c2dceeb5ecfc696966496eaee65f1798fed5000001802ded0a11981f5a48076e10c1cf9c4d0676488ed8eab842d8864facb270a02bae000001800000000000000000000000000000000000000000000000000000000000007a690000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000190000000000000000000000000000000000000000000000000000000067e410a1d000439d68f416a72188f6c91df9835e23d1619d27f4b7fbf6f8db148d464396089d97cb994ababc3e1923d24b1e6076b0431b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003fc00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "publicInputsHash": "0x00f49a17357aca8d4daee46a18d9ea65d4fdcc77060fcd86bbd3f8b007e7baa8", + "blobInputs": "0x0101790d1572a5d851a4cceb4cff4f4ba5fb61408a534c888934360a45fc0e3a1401b4c42e36e09814cad53c703f91c130628e44c7371ec2aa2a1715e26c5f850127aba05f8e5daf4233628e74eedbc03169e05d016d457d9da9de21827686e3af9495352ad63141535bd3f4c2037b5baf0c5d8a5f8f05336b110d714e17282004e99cdd47f0ea63180d892578595339d6a50ef46c6447c438311fb7afd9556323905589f07ea2f1231f66d156bc2e271850ec3450360a38b3d21f042439038b4b", "numTxs": 4 } } \ No newline at end of file diff --git a/l1-contracts/test/fixtures/mixed_block_2.json b/l1-contracts/test/fixtures/mixed_block_2.json index 03c373e902e2..5b5ddc5918bd 100644 --- a/l1-contracts/test/fixtures/mixed_block_2.json +++ b/l1-contracts/test/fixtures/mixed_block_2.json @@ -58,34 +58,33 @@ ] }, "block": { - "archive": "0x04a0194c1e95ce312e2a8bacb859826ade4d022ae8cc7623f1072b03939dda29", - "blockHash": "0x29944b4b73aa8fd8c56e90f8d8f068eae31474204147cc9c75c1b6c3f2c3b6b8", - "body": "0x00000004000000000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000141000000000000000000000000000000000000000000000000000000000000014100100000000000000000000000000000000000000000000000000000000001410020000000000000000000000000000000000000000000000000000000000141003000000000000000000000000000000000000000000000000000000000014100400000000000000000000000000000000000000000000000000000000001410050000000000000000000000000000000000000000000000000000000000141006000000000000000000000000000000000000000000000000000000000014100700000000000000000000000000000000000000000000000000000000001410080000000000000000000000000000000000000000000000000000000000141009000000000000000000000000000000000000000000000000000000000014100a000000000000000000000000000000000000000000000000000000000014100b000000000000000000000000000000000000000000000000000000000014100c000000000000000000000000000000000000000000000000000000000014100d000000000000000000000000000000000000000000000000000000000014100e000000000000000000000000000000000000000000000000000000000014100f0000000000000000000000000000000000000000000000000000000000141010000000000000000000000000000000000000000000000000000000000014101100000000000000000000000000000000000000000000000000000000001410120000000000000000000000000000000000000000000000000000000000141013000000000000000000000000000000000000000000000000000000000014101400000000000000000000000000000000000000000000000000000000001410150000000000000000000000000000000000000000000000000000000000141016000000000000000000000000000000000000000000000000000000000014101700000000000000000000000000000000000000000000000000000000001410180000000000000000000000000000000000000000000000000000000000141019000000000000000000000000000000000000000000000000000000000014101a000000000000000000000000000000000000000000000000000000000014101b000000000000000000000000000000000000000000000000000000000014101c000000000000000000000000000000000000000000000000000000000014101d000000000000000000000000000000000000000000000000000000000014101e000000000000000000000000000000000000000000000000000000000014101f0000000000000000000000000000000000000000000000000000000000141020000000000000000000000000000000000000000000000000000000000014102100000000000000000000000000000000000000000000000000000000001410220000000000000000000000000000000000000000000000000000000000141023000000000000000000000000000000000000000000000000000000000014102400000000000000000000000000000000000000000000000000000000001410250000000000000000000000000000000000000000000000000000000000141026000000000000000000000000000000000000000000000000000000000014102700000000000000000000000000000000000000000000000000000000001410280000000000000000000000000000000000000000000000000000000000141029000000000000000000000000000000000000000000000000000000000014102a000000000000000000000000000000000000000000000000000000000014102b000000000000000000000000000000000000000000000000000000000014102c000000000000000000000000000000000000000000000000000000000014102d000000000000000000000000000000000000000000000000000000000014102e000000000000000000000000000000000000000000000000000000000014102f0000000000000000000000000000000000000000000000000000000000141030000000000000000000000000000000000000000000000000000000000014103100000000000000000000000000000000000000000000000000000000001410320000000000000000000000000000000000000000000000000000000000141033000000000000000000000000000000000000000000000000000000000014103400000000000000000000000000000000000000000000000000000000001410350000000000000000000000000000000000000000000000000000000000141036000000000000000000000000000000000000000000000000000000000014103700000000000000000000000000000000000000000000000000000000001410380000000000000000000000000000000000000000000000000000000000141039000000000000000000000000000000000000000000000000000000000014103a000000000000000000000000000000000000000000000000000000000014103b000000000000000000000000000000000000000000000000000000000014103c000000000000000000000000000000000000000000000000000000000014103d000000000000000000000000000000000000000000000000000000000014103e000000000000000000000000000000000000000000000000000000000014103f4000000000000000000000000000000000000000000000000000000000001400010000000000000000000000000000000000000000000000000000000000141100000000000000000000000000000000000000000000000000000000000014110100000000000000000000000000000000000000000000000000000000001411020000000000000000000000000000000000000000000000000000000000141103000000000000000000000000000000000000000000000000000000000014110400000000000000000000000000000000000000000000000000000000001411050000000000000000000000000000000000000000000000000000000000141106000000000000000000000000000000000000000000000000000000000014110700000000000000000000000000000000000000000000000000000000001411080000000000000000000000000000000000000000000000000000000000141109000000000000000000000000000000000000000000000000000000000014110a000000000000000000000000000000000000000000000000000000000014110b000000000000000000000000000000000000000000000000000000000014110c000000000000000000000000000000000000000000000000000000000014110d000000000000000000000000000000000000000000000000000000000014110e000000000000000000000000000000000000000000000000000000000014110f0000000000000000000000000000000000000000000000000000000000141110000000000000000000000000000000000000000000000000000000000014111100000000000000000000000000000000000000000000000000000000001411120000000000000000000000000000000000000000000000000000000000141113000000000000000000000000000000000000000000000000000000000014111400000000000000000000000000000000000000000000000000000000001411150000000000000000000000000000000000000000000000000000000000141116000000000000000000000000000000000000000000000000000000000014111700000000000000000000000000000000000000000000000000000000001411180000000000000000000000000000000000000000000000000000000000141119000000000000000000000000000000000000000000000000000000000014111a000000000000000000000000000000000000000000000000000000000014111b000000000000000000000000000000000000000000000000000000000014111c000000000000000000000000000000000000000000000000000000000014111d000000000000000000000000000000000000000000000000000000000014111e000000000000000000000000000000000000000000000000000000000014111f0000000000000000000000000000000000000000000000000000000000141120000000000000000000000000000000000000000000000000000000000014112100000000000000000000000000000000000000000000000000000000001411220000000000000000000000000000000000000000000000000000000000141123000000000000000000000000000000000000000000000000000000000014112400000000000000000000000000000000000000000000000000000000001411250000000000000000000000000000000000000000000000000000000000141126000000000000000000000000000000000000000000000000000000000014112700000000000000000000000000000000000000000000000000000000001411280000000000000000000000000000000000000000000000000000000000141129000000000000000000000000000000000000000000000000000000000014112a000000000000000000000000000000000000000000000000000000000014112b000000000000000000000000000000000000000000000000000000000014112c000000000000000000000000000000000000000000000000000000000014112d000000000000000000000000000000000000000000000000000000000014112e000000000000000000000000000000000000000000000000000000000014112f0000000000000000000000000000000000000000000000000000000000141130000000000000000000000000000000000000000000000000000000000014113100000000000000000000000000000000000000000000000000000000001411320000000000000000000000000000000000000000000000000000000000141133000000000000000000000000000000000000000000000000000000000014113400000000000000000000000000000000000000000000000000000000001411350000000000000000000000000000000000000000000000000000000000141136000000000000000000000000000000000000000000000000000000000014113700000000000000000000000000000000000000000000000000000000001411380000000000000000000000000000000000000000000000000000000000141139000000000000000000000000000000000000000000000000000000000014113a000000000000000000000000000000000000000000000000000000000014113b000000000000000000000000000000000000000000000000000000000014113c000000000000000000000000000000000000000000000000000000000014113d000000000000000000000000000000000000000000000000000000000014113e08005c015113cb57d67dd6c0febd596819ac0298b6a23fc80aba17d445d540059a00f20b7d1308051fe7b68031a7c336b0b4b56738928b6510133aff1b818d5a9a0063eec1883a4f95f4933f9275e850d84b3d035f5061ed986c437a07331fd30e00d3a32d6bbc4fd843686fd0c5e118a73b847529977dca5b9e0e81f6604f22ca00c2f4f5133d9194d41e853e5e951e16690babce8461f25342c0bad20f2aa1e3000a6bf4739e7eb387913d955dc2e8f14f8cce27696b9d2e128b6acefafb80ee005763f7e0648f958b559677622a648f318fc79ebc0cb539170d49c26456e69200302e2b8a92cda941e9af8761b89899a58a587656d9710594e1d865b1652299400000000000000000000000000000000000000000000000000000000000142000000000000000000000000000000000000000000000000000000000000014200a0000000000000000000000000000000000000000000000000000000000142001000000000000000000000000000000000000000000000000000000000014200b0000000000000000000000000000000000000000000000000000000000142002000000000000000000000000000000000000000000000000000000000014200c0000000000000000000000000000000000000000000000000000000000142003000000000000000000000000000000000000000000000000000000000014200d0000000000000000000000000000000000000000000000000000000000142004000000000000000000000000000000000000000000000000000000000014200e0000000000000000000000000000000000000000000000000000000000142005000000000000000000000000000000000000000000000000000000000014200f00000000000000000000000000000000000000000000000000000000001420060000000000000000000000000000000000000000000000000000000000142010000000000000000000000000000000000000000000000000000000000014200700000000000000000000000000000000000000000000000000000000001420110000000000000000000000000000000000000000000000000000000000142008000000000000000000000000000000000000000000000000000000000014201200000000000000000000000000000000000000000000000000000000001420090000000000000000000000000000000000000000000000000000000000142013000000000000000000000000000000000000000000000000000000000014200a0000000000000000000000000000000000000000000000000000000000142014000000000000000000000000000000000000000000000000000000000014200b0000000000000000000000000000000000000000000000000000000000142015000000000000000000000000000000000000000000000000000000000014200c0000000000000000000000000000000000000000000000000000000000142016000000000000000000000000000000000000000000000000000000000014200d0000000000000000000000000000000000000000000000000000000000142017000000000000000000000000000000000000000000000000000000000014200e0000000000000000000000000000000000000000000000000000000000142018000000000000000000000000000000000000000000000000000000000014200f00000000000000000000000000000000000000000000000000000000001420190000000000000000000000000000000000000000000000000000000000142010000000000000000000000000000000000000000000000000000000000014201a0000000000000000000000000000000000000000000000000000000000142011000000000000000000000000000000000000000000000000000000000014201b0000000000000000000000000000000000000000000000000000000000142012000000000000000000000000000000000000000000000000000000000014201c0000000000000000000000000000000000000000000000000000000000142013000000000000000000000000000000000000000000000000000000000014201d0000000000000000000000000000000000000000000000000000000000142014000000000000000000000000000000000000000000000000000000000014201e0000000000000000000000000000000000000000000000000000000000142015000000000000000000000000000000000000000000000000000000000014201f00000000000000000000000000000000000000000000000000000000001420160000000000000000000000000000000000000000000000000000000000142020000000000000000000000000000000000000000000000000000000000014201700000000000000000000000000000000000000000000000000000000001420210000000000000000000000000000000000000000000000000000000000142018000000000000000000000000000000000000000000000000000000000014202200000000000000000000000000000000000000000000000000000000001420190000000000000000000000000000000000000000000000000000000000142023000000000000000000000000000000000000000000000000000000000014201a0000000000000000000000000000000000000000000000000000000000142024000000000000000000000000000000000000000000000000000000000014201b0000000000000000000000000000000000000000000000000000000000142025000000000000000000000000000000000000000000000000000000000014201c0000000000000000000000000000000000000000000000000000000000142026000000000000000000000000000000000000000000000000000000000014201d0000000000000000000000000000000000000000000000000000000000142027000000000000000000000000000000000000000000000000000000000014201e0000000000000000000000000000000000000000000000000000000000142028000000000000000000000000000000000000000000000000000000000014201f00000000000000000000000000000000000000000000000000000000001420290000000000000000000000000000000000000000000000000000000000142020000000000000000000000000000000000000000000000000000000000014202a0000000000000000000000000000000000000000000000000000000000142021000000000000000000000000000000000000000000000000000000000014202b0000000000000000000000000000000000000000000000000000000000142022000000000000000000000000000000000000000000000000000000000014202c0000000000000000000000000000000000000000000000000000000000142023000000000000000000000000000000000000000000000000000000000014202d0000000000000000000000000000000000000000000000000000000000142024000000000000000000000000000000000000000000000000000000000014202e0000000000000000000000000000000000000000000000000000000000142025000000000000000000000000000000000000000000000000000000000014202f00000000000000000000000000000000000000000000000000000000001420260000000000000000000000000000000000000000000000000000000000142030000000000000000000000000000000000000000000000000000000000014202700000000000000000000000000000000000000000000000000000000001420310000000000000000000000000000000000000000000000000000000000142028000000000000000000000000000000000000000000000000000000000014203200000000000000000000000000000000000000000000000000000000001420290000000000000000000000000000000000000000000000000000000000142033000000000000000000000000000000000000000000000000000000000014202a0000000000000000000000000000000000000000000000000000000000142034000000000000000000000000000000000000000000000000000000000014202b0000000000000000000000000000000000000000000000000000000000142035000000000000000000000000000000000000000000000000000000000014202c0000000000000000000000000000000000000000000000000000000000142036000000000000000000000000000000000000000000000000000000000014202d0000000000000000000000000000000000000000000000000000000000142037000000000000000000000000000000000000000000000000000000000014202e0000000000000000000000000000000000000000000000000000000000142038000000000000000000000000000000000000000000000000000000000014202f00000000000000000000000000000000000000000000000000000000001420390000000000000000000000000000000000000000000000000000000000142030000000000000000000000000000000000000000000000000000000000014203a0000000000000000000000000000000000000000000000000000000000142031000000000000000000000000000000000000000000000000000000000014203b0000000000000000000000000000000000000000000000000000000000142032000000000000000000000000000000000000000000000000000000000014203c0000000000000000000000000000000000000000000000000000000000142033000000000000000000000000000000000000000000000000000000000014203d0000000000000000000000000000000000000000000000000000000000142034000000000000000000000000000000000000000000000000000000000014203e0000000000000000000000000000000000000000000000000000000000142035000000000000000000000000000000000000000000000000000000000014203f00000000000000000000000000000000000000000000000000000000001420360000000000000000000000000000000000000000000000000000000000142040000000000000000000000000000000000000000000000000000000000014203700000000000000000000000000000000000000000000000000000000001420410000000000000000000000000000000000000000000000000000000000142038000000000000000000000000000000000000000000000000000000000014204200000000000000000000000000000000000000000000000000000000001420390000000000000000000000000000000000000000000000000000000000142043000000000000000000000000000000000000000000000000000000000014203a0000000000000000000000000000000000000000000000000000000000142044000000000000000000000000000000000000000000000000000000000014203b0000000000000000000000000000000000000000000000000000000000142045000000000000000000000000000000000000000000000000000000000014203c0000000000000000000000000000000000000000000000000000000000142046000000000000000000000000000000000000000000000000000000000014203d0000000000000000000000000000000000000000000000000000000000142047000000000000000000000000000000000000000000000000000000000014203e0000000000000000000000000000000000000000000000000000000000142048000000000000000000000000000000000000000000000000000000000014203f0000000000000000000000000000000000000000000000000000000000142049200000000000000000000000000000000000000000000000000000000000141700000000000000000000000000000000000000000000000000000000000014170100000000000000000000000000000000000000000000000000000000001417020000000000000000000000000000000000000000000000000000000000141703000000000000000000000000000000000000000000000000000000000014170400000000000000000000000000000000000000000000000000000000001417050000000000000000000000000000000000000000000000000000000000141706000000000000000000000000000000000000000000000000000000000014170700000000000000000000000000000000000000000000000000000000001417080000000000000000000000000000000000000000000000000000000000141709000000000000000000000000000000000000000000000000000000000014170a000000000000000000000000000000000000000000000000000000000014170b000000000000000000000000000000000000000000000000000000000014170c000000000000000000000000000000000000000000000000000000000014170d000000000000000000000000000000000000000000000000000000000014170e000000000000000000000000000000000000000000000000000000000014170f00000000000000000000000000000000000000000000000000000000001417100000000000000000000000000000000000000000000000000000000000141711000000000000000000000000000000000000000000000000000000000014170100000000000000000000000000000000000000000000000000000000001417020000000000000000000000000000000000000000000000000000000000141703000000000000000000000000000000000000000000000000000000000014170400000000000000000000000000000000000000000000000000000000001417050000000000000000000000000000000000000000000000000000000000141706000000000000000000000000000000000000000000000000000000000014170700000000000000000000000000000000000000000000000000000000001417080000000000000000000000000000000000000000000000000000000000141709000000000000000000000000000000000000000000000000000000000014170a000000000000000000000000000000000000000000000000000000000014170b000000000000000000000000000000000000000000000000000000000014170c000000000000000000000000000000000000000000000000000000000014170d000000000000000000000000000000000000000000000000000000000014170e000000000000000000000000000000000000000000000000000000000014170f00000000000000000000000000000000000000000000000000000000001417100000000000000000000000000000000000000000000000000000000000141711000000000000000000000000000000000000000000000000000000000014171200000000000000000000000000000000000000000000000000000000001417020000000000000000000000000000000000000000000000000000000000141703000000000000000000000000000000000000000000000000000000000014170400000000000000000000000000000000000000000000000000000000001417050000000000000000000000000000000000000000000000000000000000141706000000000000000000000000000000000000000000000000000000000014170700000000000000000000000000000000000000000000000000000000001417080000000000000000000000000000000000000000000000000000000000141709000000000000000000000000000000000000000000000000000000000014170a000000000000000000000000000000000000000000000000000000000014170b000000000000000000000000000000000000000000000000000000000014170c000000000000000000000000000000000000000000000000000000000014170d000000000000000000000000000000000000000000000000000000000014170e000000000000000000000000000000000000000000000000000000000014170f00000000000000000000000000000000000000000000000000000000001417100000000000000000000000000000000000000000000000000000000000141711000000000000000000000000000000000000000000000000000000000014171200000000000000000000000000000000000000000000000000000000001417130000000000000000000000000000000000000000000000000000000000141703000000000000000000000000000000000000000000000000000000000014170400000000000000000000000000000000000000000000000000000000001417050000000000000000000000000000000000000000000000000000000000141706000000000000000000000000000000000000000000000000000000000014170700000000000000000000000000000000000000000000000000000000001417080000000000000000000000000000000000000000000000000000000000141709000000000000000000000000000000000000000000000000000000000014170a000000000000000000000000000000000000000000000000000000000014170b000000000000000000000000000000000000000000000000000000000014170c000000000000000000000000000000000000000000000000000000000014170d000000000000000000000000000000000000000000000000000000000014170e000000000000000000000000000000000000000000000000000000000014170f00000000000000000000000000000000000000000000000000000000001417100000000000000000000000000000000000000000000000000000000000141711000000000000000000000000000000000000000000000000000000000014171200000000000000000000000000000000000000000000000000000000001417130000000000000000000000000000000000000000000000000000000000141714000000000000000000000000000000000000000000000000000000000014170400000000000000000000000000000000000000000000000000000000001417050000000000000000000000000000000000000000000000000000000000141706000000000000000000000000000000000000000000000000000000000014170700000000000000000000000000000000000000000000000000000000001417080000000000000000000000000000000000000000000000000000000000141709000000000000000000000000000000000000000000000000000000000014170a000000000000000000000000000000000000000000000000000000000014170b000000000000000000000000000000000000000000000000000000000014170c000000000000000000000000000000000000000000000000000000000014170d000000000000000000000000000000000000000000000000000000000014170e000000000000000000000000000000000000000000000000000000000014170f00000000000000000000000000000000000000000000000000000000001417100000000000000000000000000000000000000000000000000000000000141711000000000000000000000000000000000000000000000000000000000014171200000000000000000000000000000000000000000000000000000000001417130000000000000000000000000000000000000000000000000000000000141714000000000000000000000000000000000000000000000000000000000014171500000000000000000000000000000000000000000000000000000000001417050000000000000000000000000000000000000000000000000000000000141706000000000000000000000000000000000000000000000000000000000014170700000000000000000000000000000000000000000000000000000000001417080000000000000000000000000000000000000000000000000000000000141709000000000000000000000000000000000000000000000000000000000014170a000000000000000000000000000000000000000000000000000000000014170b000000000000000000000000000000000000000000000000000000000014170c000000000000000000000000000000000000000000000000000000000014170d000000000000000000000000000000000000000000000000000000000014170e000000000000000000000000000000000000000000000000000000000014170f00000000000000000000000000000000000000000000000000000000001417100000000000000000000000000000000000000000000000000000000000141711000000000000000000000000000000000000000000000000000000000014171200000000000000000000000000000000000000000000000000000000001417130000000000000000000000000000000000000000000000000000000000141714000000000000000000000000000000000000000000000000000000000014171500000000000000000000000000000000000000000000000000000000001417160000000000000000000000000000000000000000000000000000000000141706000000000000000000000000000000000000000000000000000000000014170700000000000000000000000000000000000000000000000000000000001417080000000000000000000000000000000000000000000000000000000000141709000000000000000000000000000000000000000000000000000000000014170a000000000000000000000000000000000000000000000000000000000014170b000000000000000000000000000000000000000000000000000000000014170c000000000000000000000000000000000000000000000000000000000014170d000000000000000000000000000000000000000000000000000000000014170e000000000000000000000000000000000000000000000000000000000014170f00000000000000000000000000000000000000000000000000000000001417100000000000000000000000000000000000000000000000000000000000141711000000000000000000000000000000000000000000000000000000000014171200000000000000000000000000000000000000000000000000000000001417130000000000000000000000000000000000000000000000000000000000141714000000000000000000000000000000000000000000000000000000000014171500000000000000000000000000000000000000000000000000000000001417160000000000000000000000000000000000000000000000000000000000141717000000000000000000000000000000000000000000000000000000000014170700000000000000000000000000000000000000000000000000000000001417080000000000000000000000000000000000000000000000000000000000141709000000000000000000000000000000000000000000000000000000000014170a000000000000000000000000000000000000000000000000000000000014170b000000000000000000000000000000000000000000000000000000000014170c000000000000000000000000000000000000000000000000000000000014170d000000000000000000000000000000000000000000000000000000000014170e000000000000000000000000000000000000000000000000000000000014170f00000000000000000000000000000000000000000000000000000000001417100000000000000000000000000000000000000000000000000000000000141711000000000000000000000000000000000000000000000000000000000014171200000000000000000000000000000000000000000000000000000000001417130000000000000000000000000000000000000000000000000000000000141714000000000000000000000000000000000000000000000000000000000014171500000000000000000000000000000000000000000000000000000000001417160000000000000000000000000000000000000000000000000000000000141717000000000000000000000000000000000000000000000000000000000014171800000000000000000000000000000000000000000000000000000000001417080000000000000000000000000000000000000000000000000000000000141709000000000000000000000000000000000000000000000000000000000014170a000000000000000000000000000000000000000000000000000000000014170b000000000000000000000000000000000000000000000000000000000014170c000000000000000000000000000000000000000000000000000000000014170d000000000000000000000000000000000000000000000000000000000014170e000000000000000000000000000000000000000000000000000000000014170f00000000000000000000000000000000000000000000000000000000001417100000000000000000000000000000000000000000000000000000000000141711000000000000000000000000000000000000000000000000000000000014171200000000000000000000000000000000000000000000000000000000001417130000000000000000000000000000000000000000000000000000000000141714000000000000000000000000000000000000000000000000000000000014171500000000000000000000000000000000000000000000000000000000001417160000000000000000000000000000000000000000000000000000000000141717000000000000000000000000000000000000000000000000000000000014171800000000000000000000000000000000000000000000000000000000001417190000000000000000000000000000000000000000000000000000000000141709000000000000000000000000000000000000000000000000000000000014170a000000000000000000000000000000000000000000000000000000000014170b000000000000000000000000000000000000000000000000000000000014170c000000000000000000000000000000000000000000000000000000000014170d000000000000000000000000000000000000000000000000000000000014170e000000000000000000000000000000000000000000000000000000000014170f0000000000000000000000000000000000000000000000000000000000141710000000000000000000000000000000000000000000000000000000000014171100000000000000000000000000000000000000000000000000000000001417120000000000000000000000000000000000000000000000000000000000141713000000000000000000000000000000000000000000000000000000000014171400000000000000000000000000000000000000000000000000000000001417150000000000000000000000000000000000000000000000000000000000141716000000000000000000000000000000000000000000000000000000000014171700000000000000000000000000000000000000000000000000000000001417180000000000000000000000000000000000000000000000000000000000141719000000000000000000000000000000000000000000000000000000000014171a000000000000000000000000000000000000000000000000000000000014170a000000000000000000000000000000000000000000000000000000000014170b000000000000000000000000000000000000000000000000000000000014170c000000000000000000000000000000000000000000000000000000000014170d000000000000000000000000000000000000000000000000000000000014170e000000000000000000000000000000000000000000000000000000000014170f0000000000000000000000000000000000000000000000000000000000141710000000000000000000000000000000000000000000000000000000000014171100000000000000000000000000000000000000000000000000000000001417120000000000000000000000000000000000000000000000000000000000141713000000000000000000000000000000000000000000000000000000000014171400000000000000000000000000000000000000000000000000000000001417150000000000000000000000000000000000000000000000000000000000141716000000000000000000000000000000000000000000000000000000000014171700000000000000000000000000000000000000000000000000000000001417180000000000000000000000000000000000000000000000000000000000141719000000000000000000000000000000000000000000000000000000000014171a000000000000000000000000000000000000000000000000000000000014171b000000000000000000000000000000000000000000000000000000000014170b000000000000000000000000000000000000000000000000000000000014170c000000000000000000000000000000000000000000000000000000000014170d000000000000000000000000000000000000000000000000000000000014170e000000000000000000000000000000000000000000000000000000000014170f0000000000000000000000000000000000000000000000000000000000141710000000000000000000000000000000000000000000000000000000000014171100000000000000000000000000000000000000000000000000000000001417120000000000000000000000000000000000000000000000000000000000141713000000000000000000000000000000000000000000000000000000000014171400000000000000000000000000000000000000000000000000000000001417150000000000000000000000000000000000000000000000000000000000141716000000000000000000000000000000000000000000000000000000000014171700000000000000000000000000000000000000000000000000000000001417180000000000000000000000000000000000000000000000000000000000141719000000000000000000000000000000000000000000000000000000000014171a000000000000000000000000000000000000000000000000000000000014171b000000000000000000000000000000000000000000000000000000000014171c000000000000000000000000000000000000000000000000000000000014170c000000000000000000000000000000000000000000000000000000000014170d000000000000000000000000000000000000000000000000000000000014170e000000000000000000000000000000000000000000000000000000000014170f0000000000000000000000000000000000000000000000000000000000141710000000000000000000000000000000000000000000000000000000000014171100000000000000000000000000000000000000000000000000000000001417120000000000000000000000000000000000000000000000000000000000141713000000000000000000000000000000000000000000000000000000000014171400000000000000000000000000000000000000000000000000000000001417150000000000000000000000000000000000000000000000000000000000141716000000000000000000000000000000000000000000000000000000000014171700000000000000000000000000000000000000000000000000000000001417180000000000000000000000000000000000000000000000000000000000141719000000000000000000000000000000000000000000000000000000000014171a000000000000000000000000000000000000000000000000000000000014171b000000000000000000000000000000000000000000000000000000000014171c000000000000000000000000000000000000000000000000000000000014171d000000000000000000000000000000000000000000000000000000000014170d000000000000000000000000000000000000000000000000000000000014170e000000000000000000000000000000000000000000000000000000000014170f0000000000000000000000000000000000000000000000000000000000141710000000000000000000000000000000000000000000000000000000000014171100000000000000000000000000000000000000000000000000000000001417120000000000000000000000000000000000000000000000000000000000141713000000000000000000000000000000000000000000000000000000000014171400000000000000000000000000000000000000000000000000000000001417150000000000000000000000000000000000000000000000000000000000141716000000000000000000000000000000000000000000000000000000000014171700000000000000000000000000000000000000000000000000000000001417180000000000000000000000000000000000000000000000000000000000141719000000000000000000000000000000000000000000000000000000000014171a000000000000000000000000000000000000000000000000000000000014171b000000000000000000000000000000000000000000000000000000000014171c000000000000000000000000000000000000000000000000000000000014171d000000000000000000000000000000000000000000000000000000000014171e000000000000000000000000000000000000000000000000000000000014170e000000000000000000000000000000000000000000000000000000000014170f0000000000000000000000000000000000000000000000000000000000141710000000000000000000000000000000000000000000000000000000000014171100000000000000000000000000000000000000000000000000000000001417120000000000000000000000000000000000000000000000000000000000141713000000000000000000000000000000000000000000000000000000000014171400000000000000000000000000000000000000000000000000000000001417150000000000000000000000000000000000000000000000000000000000141716000000000000000000000000000000000000000000000000000000000014171700000000000000000000000000000000000000000000000000000000001417180000000000000000000000000000000000000000000000000000000000141719000000000000000000000000000000000000000000000000000000000014171a000000000000000000000000000000000000000000000000000000000014171b000000000000000000000000000000000000000000000000000000000014171c000000000000000000000000000000000000000000000000000000000014171d000000000000000000000000000000000000000000000000000000000014171e000000000000000000000000000000000000000000000000000000000014171f000000000000000000000000000000000000000000000000000000000014170f0000000000000000000000000000000000000000000000000000000000141710000000000000000000000000000000000000000000000000000000000014171100000000000000000000000000000000000000000000000000000000001417120000000000000000000000000000000000000000000000000000000000141713000000000000000000000000000000000000000000000000000000000014171400000000000000000000000000000000000000000000000000000000001417150000000000000000000000000000000000000000000000000000000000141716000000000000000000000000000000000000000000000000000000000014171700000000000000000000000000000000000000000000000000000000001417180000000000000000000000000000000000000000000000000000000000141719000000000000000000000000000000000000000000000000000000000014171a000000000000000000000000000000000000000000000000000000000014171b000000000000000000000000000000000000000000000000000000000014171c000000000000000000000000000000000000000000000000000000000014171d000000000000000000000000000000000000000000000000000000000014171e000000000000000000000000000000000000000000000000000000000014171f00000000000000000000000000000000000000000000000000000000001417200000000000000000000000000000000000000000000000000000000000141710000000000000000000000000000000000000000000000000000000000014171100000000000000000000000000000000000000000000000000000000001417120000000000000000000000000000000000000000000000000000000000141713000000000000000000000000000000000000000000000000000000000014171400000000000000000000000000000000000000000000000000000000001417150000000000000000000000000000000000000000000000000000000000141716000000000000000000000000000000000000000000000000000000000014171700000000000000000000000000000000000000000000000000000000001417180000000000000000000000000000000000000000000000000000000000141719000000000000000000000000000000000000000000000000000000000014171a000000000000000000000000000000000000000000000000000000000014171b000000000000000000000000000000000000000000000000000000000014171c000000000000000000000000000000000000000000000000000000000014171d000000000000000000000000000000000000000000000000000000000014171e000000000000000000000000000000000000000000000000000000000014171f00000000000000000000000000000000000000000000000000000000001417200000000000000000000000000000000000000000000000000000000000141721000000000000000000000000000000000000000000000000000000000014171100000000000000000000000000000000000000000000000000000000001417120000000000000000000000000000000000000000000000000000000000141713000000000000000000000000000000000000000000000000000000000014171400000000000000000000000000000000000000000000000000000000001417150000000000000000000000000000000000000000000000000000000000141716000000000000000000000000000000000000000000000000000000000014171700000000000000000000000000000000000000000000000000000000001417180000000000000000000000000000000000000000000000000000000000141719000000000000000000000000000000000000000000000000000000000014171a000000000000000000000000000000000000000000000000000000000014171b000000000000000000000000000000000000000000000000000000000014171c000000000000000000000000000000000000000000000000000000000014171d000000000000000000000000000000000000000000000000000000000014171e000000000000000000000000000000000000000000000000000000000014171f00000000000000000000000000000000000000000000000000000000001417200000000000000000000000000000000000000000000000000000000000141721000000000000000000000000000000000000000000000000000000000014172200000000000000000000000000000000000000000000000000000000001417120000000000000000000000000000000000000000000000000000000000141713000000000000000000000000000000000000000000000000000000000014171400000000000000000000000000000000000000000000000000000000001417150000000000000000000000000000000000000000000000000000000000141716000000000000000000000000000000000000000000000000000000000014171700000000000000000000000000000000000000000000000000000000001417180000000000000000000000000000000000000000000000000000000000141719000000000000000000000000000000000000000000000000000000000014171a000000000000000000000000000000000000000000000000000000000014171b000000000000000000000000000000000000000000000000000000000014171c000000000000000000000000000000000000000000000000000000000014171d000000000000000000000000000000000000000000000000000000000014171e000000000000000000000000000000000000000000000000000000000014171f00000000000000000000000000000000000000000000000000000000001417200000000000000000000000000000000000000000000000000000000000141721000000000000000000000000000000000000000000000000000000000014172200000000000000000000000000000000000000000000000000000000001417230000000000000000000000000000000000000000000000000000000000141713000000000000000000000000000000000000000000000000000000000014171400000000000000000000000000000000000000000000000000000000001417150000000000000000000000000000000000000000000000000000000000141716000000000000000000000000000000000000000000000000000000000014171700000000000000000000000000000000000000000000000000000000001417180000000000000000000000000000000000000000000000000000000000141719000000000000000000000000000000000000000000000000000000000014171a000000000000000000000000000000000000000000000000000000000014171b000000000000000000000000000000000000000000000000000000000014171c000000000000000000000000000000000000000000000000000000000014171d000000000000000000000000000000000000000000000000000000000014171e000000000000000000000000000000000000000000000000000000000014171f00000000000000000000000000000000000000000000000000000000001417200000000000000000000000000000000000000000000000000000000000141721000000000000000000000000000000000000000000000000000000000014172200000000000000000000000000000000000000000000000000000000001417230000000000000000000000000000000000000000000000000000000000141724000000000000000000000000000000000000000000000000000000000014171400000000000000000000000000000000000000000000000000000000001417150000000000000000000000000000000000000000000000000000000000141716000000000000000000000000000000000000000000000000000000000014171700000000000000000000000000000000000000000000000000000000001417180000000000000000000000000000000000000000000000000000000000141719000000000000000000000000000000000000000000000000000000000014171a000000000000000000000000000000000000000000000000000000000014171b000000000000000000000000000000000000000000000000000000000014171c000000000000000000000000000000000000000000000000000000000014171d000000000000000000000000000000000000000000000000000000000014171e000000000000000000000000000000000000000000000000000000000014171f00000000000000000000000000000000000000000000000000000000001417200000000000000000000000000000000000000000000000000000000000141721000000000000000000000000000000000000000000000000000000000014172200000000000000000000000000000000000000000000000000000000001417230000000000000000000000000000000000000000000000000000000000141724000000000000000000000000000000000000000000000000000000000014172500000000000000000000000000000000000000000000000000000000001417150000000000000000000000000000000000000000000000000000000000141716000000000000000000000000000000000000000000000000000000000014171700000000000000000000000000000000000000000000000000000000001417180000000000000000000000000000000000000000000000000000000000141719000000000000000000000000000000000000000000000000000000000014171a000000000000000000000000000000000000000000000000000000000014171b000000000000000000000000000000000000000000000000000000000014171c000000000000000000000000000000000000000000000000000000000014171d000000000000000000000000000000000000000000000000000000000014171e000000000000000000000000000000000000000000000000000000000014171f00000000000000000000000000000000000000000000000000000000001417200000000000000000000000000000000000000000000000000000000000141721000000000000000000000000000000000000000000000000000000000014172200000000000000000000000000000000000000000000000000000000001417230000000000000000000000000000000000000000000000000000000000141724000000000000000000000000000000000000000000000000000000000014172500000000000000000000000000000000000000000000000000000000001417260000000000000000000000000000000000000000000000000000000000141716000000000000000000000000000000000000000000000000000000000014171700000000000000000000000000000000000000000000000000000000001417180000000000000000000000000000000000000000000000000000000000141719000000000000000000000000000000000000000000000000000000000014171a000000000000000000000000000000000000000000000000000000000014171b000000000000000000000000000000000000000000000000000000000014171c000000000000000000000000000000000000000000000000000000000014171d000000000000000000000000000000000000000000000000000000000014171e000000000000000000000000000000000000000000000000000000000014171f00000000000000000000000000000000000000000000000000000000001417200000000000000000000000000000000000000000000000000000000000141721000000000000000000000000000000000000000000000000000000000014172200000000000000000000000000000000000000000000000000000000001417230000000000000000000000000000000000000000000000000000000000141724000000000000000000000000000000000000000000000000000000000014172500000000000000000000000000000000000000000000000000000000001417260000000000000000000000000000000000000000000000000000000000141727000000000000000000000000000000000000000000000000000000000014171700000000000000000000000000000000000000000000000000000000001417180000000000000000000000000000000000000000000000000000000000141719000000000000000000000000000000000000000000000000000000000014171a000000000000000000000000000000000000000000000000000000000014171b000000000000000000000000000000000000000000000000000000000014171c000000000000000000000000000000000000000000000000000000000014171d000000000000000000000000000000000000000000000000000000000014171e000000000000000000000000000000000000000000000000000000000014171f00000000000000000000000000000000000000000000000000000000001417200000000000000000000000000000000000000000000000000000000000141721000000000000000000000000000000000000000000000000000000000014172200000000000000000000000000000000000000000000000000000000001417230000000000000000000000000000000000000000000000000000000000141724000000000000000000000000000000000000000000000000000000000014172500000000000000000000000000000000000000000000000000000000001417260000000000000000000000000000000000000000000000000000000000141727000000000000000000000000000000000000000000000000000000000014172800000000000000000000000000000000000000000000000000000000001417180000000000000000000000000000000000000000000000000000000000141719000000000000000000000000000000000000000000000000000000000014171a000000000000000000000000000000000000000000000000000000000014171b000000000000000000000000000000000000000000000000000000000014171c000000000000000000000000000000000000000000000000000000000014171d000000000000000000000000000000000000000000000000000000000014171e000000000000000000000000000000000000000000000000000000000014171f00000000000000000000000000000000000000000000000000000000001417200000000000000000000000000000000000000000000000000000000000141721000000000000000000000000000000000000000000000000000000000014172200000000000000000000000000000000000000000000000000000000001417230000000000000000000000000000000000000000000000000000000000141724000000000000000000000000000000000000000000000000000000000014172500000000000000000000000000000000000000000000000000000000001417260000000000000000000000000000000000000000000000000000000000141727000000000000000000000000000000000000000000000000000000000014172800000000000000000000000000000000000000000000000000000000001417290000000000000000000000000000000000000000000000000000000000141719000000000000000000000000000000000000000000000000000000000014171a000000000000000000000000000000000000000000000000000000000014171b000000000000000000000000000000000000000000000000000000000014171c000000000000000000000000000000000000000000000000000000000014171d000000000000000000000000000000000000000000000000000000000014171e000000000000000000000000000000000000000000000000000000000014171f0000000000000000000000000000000000000000000000000000000000141720000000000000000000000000000000000000000000000000000000000014172100000000000000000000000000000000000000000000000000000000001417220000000000000000000000000000000000000000000000000000000000141723000000000000000000000000000000000000000000000000000000000014172400000000000000000000000000000000000000000000000000000000001417250000000000000000000000000000000000000000000000000000000000141726000000000000000000000000000000000000000000000000000000000014172700000000000000000000000000000000000000000000000000000000001417280000000000000000000000000000000000000000000000000000000000141729000000000000000000000000000000000000000000000000000000000014172a000000000000000000000000000000000000000000000000000000000014171a000000000000000000000000000000000000000000000000000000000014171b000000000000000000000000000000000000000000000000000000000014171c000000000000000000000000000000000000000000000000000000000014171d000000000000000000000000000000000000000000000000000000000014171e000000000000000000000000000000000000000000000000000000000014171f0000000000000000000000000000000000000000000000000000000000141720000000000000000000000000000000000000000000000000000000000014172100000000000000000000000000000000000000000000000000000000001417220000000000000000000000000000000000000000000000000000000000141723000000000000000000000000000000000000000000000000000000000014172400000000000000000000000000000000000000000000000000000000001417250000000000000000000000000000000000000000000000000000000000141726000000000000000000000000000000000000000000000000000000000014172700000000000000000000000000000000000000000000000000000000001417280000000000000000000000000000000000000000000000000000000000141729000000000000000000000000000000000000000000000000000000000014172a000000000000000000000000000000000000000000000000000000000014172b000000000000000000000000000000000000000000000000000000000014171b000000000000000000000000000000000000000000000000000000000014171c000000000000000000000000000000000000000000000000000000000014171d000000000000000000000000000000000000000000000000000000000014171e000000000000000000000000000000000000000000000000000000000014171f0000000000000000000000000000000000000000000000000000000000141720000000000000000000000000000000000000000000000000000000000014172100000000000000000000000000000000000000000000000000000000001417220000000000000000000000000000000000000000000000000000000000141723000000000000000000000000000000000000000000000000000000000014172400000000000000000000000000000000000000000000000000000000001417250000000000000000000000000000000000000000000000000000000000141726000000000000000000000000000000000000000000000000000000000014172700000000000000000000000000000000000000000000000000000000001417280000000000000000000000000000000000000000000000000000000000141729000000000000000000000000000000000000000000000000000000000014172a000000000000000000000000000000000000000000000000000000000014172b000000000000000000000000000000000000000000000000000000000014172c000000000000000000000000000000000000000000000000000000000014171c000000000000000000000000000000000000000000000000000000000014171d000000000000000000000000000000000000000000000000000000000014171e000000000000000000000000000000000000000000000000000000000014171f0000000000000000000000000000000000000000000000000000000000141720000000000000000000000000000000000000000000000000000000000014172100000000000000000000000000000000000000000000000000000000001417220000000000000000000000000000000000000000000000000000000000141723000000000000000000000000000000000000000000000000000000000014172400000000000000000000000000000000000000000000000000000000001417250000000000000000000000000000000000000000000000000000000000141726000000000000000000000000000000000000000000000000000000000014172700000000000000000000000000000000000000000000000000000000001417280000000000000000000000000000000000000000000000000000000000141729000000000000000000000000000000000000000000000000000000000014172a000000000000000000000000000000000000000000000000000000000014172b000000000000000000000000000000000000000000000000000000000014172c000000000000000000000000000000000000000000000000000000000014172d000000000000000000000000000000000000000000000000000000000014171d000000000000000000000000000000000000000000000000000000000014171e000000000000000000000000000000000000000000000000000000000014171f0000000000000000000000000000000000000000000000000000000000141720000000000000000000000000000000000000000000000000000000000014172100000000000000000000000000000000000000000000000000000000001417220000000000000000000000000000000000000000000000000000000000141723000000000000000000000000000000000000000000000000000000000014172400000000000000000000000000000000000000000000000000000000001417250000000000000000000000000000000000000000000000000000000000141726000000000000000000000000000000000000000000000000000000000014172700000000000000000000000000000000000000000000000000000000001417280000000000000000000000000000000000000000000000000000000000141729000000000000000000000000000000000000000000000000000000000014172a000000000000000000000000000000000000000000000000000000000014172b000000000000000000000000000000000000000000000000000000000014172c000000000000000000000000000000000000000000000000000000000014172d000000000000000000000000000000000000000000000000000000000014172e000000000000000000000000000000000000000000000000000000000014171e000000000000000000000000000000000000000000000000000000000014171f0000000000000000000000000000000000000000000000000000000000141720000000000000000000000000000000000000000000000000000000000014172100000000000000000000000000000000000000000000000000000000001417220000000000000000000000000000000000000000000000000000000000141723000000000000000000000000000000000000000000000000000000000014172400000000000000000000000000000000000000000000000000000000001417250000000000000000000000000000000000000000000000000000000000141726000000000000000000000000000000000000000000000000000000000014172700000000000000000000000000000000000000000000000000000000001417280000000000000000000000000000000000000000000000000000000000141729000000000000000000000000000000000000000000000000000000000014172a000000000000000000000000000000000000000000000000000000000014172b000000000000000000000000000000000000000000000000000000000014172c000000000000000000000000000000000000000000000000000000000014172d000000000000000000000000000000000000000000000000000000000014172e000000000000000000000000000000000000000000000000000000000014172f000000000000000000000000000000000000000000000000000000000014171f0000000000000000000000000000000000000000000000000000000000141720000000000000000000000000000000000000000000000000000000000014172100000000000000000000000000000000000000000000000000000000001417220000000000000000000000000000000000000000000000000000000000141723000000000000000000000000000000000000000000000000000000000014172400000000000000000000000000000000000000000000000000000000001417250000000000000000000000000000000000000000000000000000000000141726000000000000000000000000000000000000000000000000000000000014172700000000000000000000000000000000000000000000000000000000001417280000000000000000000000000000000000000000000000000000000000141729000000000000000000000000000000000000000000000000000000000014172a000000000000000000000000000000000000000000000000000000000014172b000000000000000000000000000000000000000000000000000000000014172c000000000000000000000000000000000000000000000000000000000014172d000000000000000000000000000000000000000000000000000000000014172e000000000000000000000000000000000000000000000000000000000014172f0000000000000000000000000000000000000000000000000000000000141730000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000181000000000000000000000000000000000000000000000000000000000000018100100000000000000000000000000000000000000000000000000000000001810020000000000000000000000000000000000000000000000000000000000181003000000000000000000000000000000000000000000000000000000000018100400000000000000000000000000000000000000000000000000000000001810050000000000000000000000000000000000000000000000000000000000181006000000000000000000000000000000000000000000000000000000000018100700000000000000000000000000000000000000000000000000000000001810080000000000000000000000000000000000000000000000000000000000181009000000000000000000000000000000000000000000000000000000000018100a000000000000000000000000000000000000000000000000000000000018100b000000000000000000000000000000000000000000000000000000000018100c000000000000000000000000000000000000000000000000000000000018100d000000000000000000000000000000000000000000000000000000000018100e000000000000000000000000000000000000000000000000000000000018100f0000000000000000000000000000000000000000000000000000000000181010000000000000000000000000000000000000000000000000000000000018101100000000000000000000000000000000000000000000000000000000001810120000000000000000000000000000000000000000000000000000000000181013000000000000000000000000000000000000000000000000000000000018101400000000000000000000000000000000000000000000000000000000001810150000000000000000000000000000000000000000000000000000000000181016000000000000000000000000000000000000000000000000000000000018101700000000000000000000000000000000000000000000000000000000001810180000000000000000000000000000000000000000000000000000000000181019000000000000000000000000000000000000000000000000000000000018101a000000000000000000000000000000000000000000000000000000000018101b000000000000000000000000000000000000000000000000000000000018101c000000000000000000000000000000000000000000000000000000000018101d000000000000000000000000000000000000000000000000000000000018101e000000000000000000000000000000000000000000000000000000000018101f0000000000000000000000000000000000000000000000000000000000181020000000000000000000000000000000000000000000000000000000000018102100000000000000000000000000000000000000000000000000000000001810220000000000000000000000000000000000000000000000000000000000181023000000000000000000000000000000000000000000000000000000000018102400000000000000000000000000000000000000000000000000000000001810250000000000000000000000000000000000000000000000000000000000181026000000000000000000000000000000000000000000000000000000000018102700000000000000000000000000000000000000000000000000000000001810280000000000000000000000000000000000000000000000000000000000181029000000000000000000000000000000000000000000000000000000000018102a000000000000000000000000000000000000000000000000000000000018102b000000000000000000000000000000000000000000000000000000000018102c000000000000000000000000000000000000000000000000000000000018102d000000000000000000000000000000000000000000000000000000000018102e000000000000000000000000000000000000000000000000000000000018102f0000000000000000000000000000000000000000000000000000000000181030000000000000000000000000000000000000000000000000000000000018103100000000000000000000000000000000000000000000000000000000001810320000000000000000000000000000000000000000000000000000000000181033000000000000000000000000000000000000000000000000000000000018103400000000000000000000000000000000000000000000000000000000001810350000000000000000000000000000000000000000000000000000000000181036000000000000000000000000000000000000000000000000000000000018103700000000000000000000000000000000000000000000000000000000001810380000000000000000000000000000000000000000000000000000000000181039000000000000000000000000000000000000000000000000000000000018103a000000000000000000000000000000000000000000000000000000000018103b000000000000000000000000000000000000000000000000000000000018103c000000000000000000000000000000000000000000000000000000000018103d000000000000000000000000000000000000000000000000000000000018103e000000000000000000000000000000000000000000000000000000000018103f4000000000000000000000000000000000000000000000000000000000001800010000000000000000000000000000000000000000000000000000000000181100000000000000000000000000000000000000000000000000000000000018110100000000000000000000000000000000000000000000000000000000001811020000000000000000000000000000000000000000000000000000000000181103000000000000000000000000000000000000000000000000000000000018110400000000000000000000000000000000000000000000000000000000001811050000000000000000000000000000000000000000000000000000000000181106000000000000000000000000000000000000000000000000000000000018110700000000000000000000000000000000000000000000000000000000001811080000000000000000000000000000000000000000000000000000000000181109000000000000000000000000000000000000000000000000000000000018110a000000000000000000000000000000000000000000000000000000000018110b000000000000000000000000000000000000000000000000000000000018110c000000000000000000000000000000000000000000000000000000000018110d000000000000000000000000000000000000000000000000000000000018110e000000000000000000000000000000000000000000000000000000000018110f0000000000000000000000000000000000000000000000000000000000181110000000000000000000000000000000000000000000000000000000000018111100000000000000000000000000000000000000000000000000000000001811120000000000000000000000000000000000000000000000000000000000181113000000000000000000000000000000000000000000000000000000000018111400000000000000000000000000000000000000000000000000000000001811150000000000000000000000000000000000000000000000000000000000181116000000000000000000000000000000000000000000000000000000000018111700000000000000000000000000000000000000000000000000000000001811180000000000000000000000000000000000000000000000000000000000181119000000000000000000000000000000000000000000000000000000000018111a000000000000000000000000000000000000000000000000000000000018111b000000000000000000000000000000000000000000000000000000000018111c000000000000000000000000000000000000000000000000000000000018111d000000000000000000000000000000000000000000000000000000000018111e000000000000000000000000000000000000000000000000000000000018111f0000000000000000000000000000000000000000000000000000000000181120000000000000000000000000000000000000000000000000000000000018112100000000000000000000000000000000000000000000000000000000001811220000000000000000000000000000000000000000000000000000000000181123000000000000000000000000000000000000000000000000000000000018112400000000000000000000000000000000000000000000000000000000001811250000000000000000000000000000000000000000000000000000000000181126000000000000000000000000000000000000000000000000000000000018112700000000000000000000000000000000000000000000000000000000001811280000000000000000000000000000000000000000000000000000000000181129000000000000000000000000000000000000000000000000000000000018112a000000000000000000000000000000000000000000000000000000000018112b000000000000000000000000000000000000000000000000000000000018112c000000000000000000000000000000000000000000000000000000000018112d000000000000000000000000000000000000000000000000000000000018112e000000000000000000000000000000000000000000000000000000000018112f0000000000000000000000000000000000000000000000000000000000181130000000000000000000000000000000000000000000000000000000000018113100000000000000000000000000000000000000000000000000000000001811320000000000000000000000000000000000000000000000000000000000181133000000000000000000000000000000000000000000000000000000000018113400000000000000000000000000000000000000000000000000000000001811350000000000000000000000000000000000000000000000000000000000181136000000000000000000000000000000000000000000000000000000000018113700000000000000000000000000000000000000000000000000000000001811380000000000000000000000000000000000000000000000000000000000181139000000000000000000000000000000000000000000000000000000000018113a000000000000000000000000000000000000000000000000000000000018113b000000000000000000000000000000000000000000000000000000000018113c000000000000000000000000000000000000000000000000000000000018113d000000000000000000000000000000000000000000000000000000000018113e0800f872eb9653f03af10f331da1361fa1524d3cd958cb72dacea1d424f19df3af00ffc548a17cd6ba1f2d228f30e4ddb19ecc46ad3b609977d52bb0f49e1206410032f8058bd779c520eabae2743b02ec4f71670428506fcceb2d4b69f26fb11800c0283e15fbf74ffa4eafb984030394f3c2ea6733cc0eacb0431a9475eff28f00b7f55314bfd9d441c1c624e241908228fe4da3d3a0a7fbd56814e1c8cd5d3e00f430f33a786675271736fd728c7bf7428b8c24ac948d7faf76ddb8783a496c0048fc235ead8d4b9d44929662a6384074fc4e5076bec5b7deb34f612393684300fd9b61cb1ad9b4b28f58399906e73933e3cccee8fc98a393f0eedb95b13ee6400000000000000000000000000000000000000000000000000000000000182000000000000000000000000000000000000000000000000000000000000018200a0000000000000000000000000000000000000000000000000000000000182001000000000000000000000000000000000000000000000000000000000018200b0000000000000000000000000000000000000000000000000000000000182002000000000000000000000000000000000000000000000000000000000018200c0000000000000000000000000000000000000000000000000000000000182003000000000000000000000000000000000000000000000000000000000018200d0000000000000000000000000000000000000000000000000000000000182004000000000000000000000000000000000000000000000000000000000018200e0000000000000000000000000000000000000000000000000000000000182005000000000000000000000000000000000000000000000000000000000018200f00000000000000000000000000000000000000000000000000000000001820060000000000000000000000000000000000000000000000000000000000182010000000000000000000000000000000000000000000000000000000000018200700000000000000000000000000000000000000000000000000000000001820110000000000000000000000000000000000000000000000000000000000182008000000000000000000000000000000000000000000000000000000000018201200000000000000000000000000000000000000000000000000000000001820090000000000000000000000000000000000000000000000000000000000182013000000000000000000000000000000000000000000000000000000000018200a0000000000000000000000000000000000000000000000000000000000182014000000000000000000000000000000000000000000000000000000000018200b0000000000000000000000000000000000000000000000000000000000182015000000000000000000000000000000000000000000000000000000000018200c0000000000000000000000000000000000000000000000000000000000182016000000000000000000000000000000000000000000000000000000000018200d0000000000000000000000000000000000000000000000000000000000182017000000000000000000000000000000000000000000000000000000000018200e0000000000000000000000000000000000000000000000000000000000182018000000000000000000000000000000000000000000000000000000000018200f00000000000000000000000000000000000000000000000000000000001820190000000000000000000000000000000000000000000000000000000000182010000000000000000000000000000000000000000000000000000000000018201a0000000000000000000000000000000000000000000000000000000000182011000000000000000000000000000000000000000000000000000000000018201b0000000000000000000000000000000000000000000000000000000000182012000000000000000000000000000000000000000000000000000000000018201c0000000000000000000000000000000000000000000000000000000000182013000000000000000000000000000000000000000000000000000000000018201d0000000000000000000000000000000000000000000000000000000000182014000000000000000000000000000000000000000000000000000000000018201e0000000000000000000000000000000000000000000000000000000000182015000000000000000000000000000000000000000000000000000000000018201f00000000000000000000000000000000000000000000000000000000001820160000000000000000000000000000000000000000000000000000000000182020000000000000000000000000000000000000000000000000000000000018201700000000000000000000000000000000000000000000000000000000001820210000000000000000000000000000000000000000000000000000000000182018000000000000000000000000000000000000000000000000000000000018202200000000000000000000000000000000000000000000000000000000001820190000000000000000000000000000000000000000000000000000000000182023000000000000000000000000000000000000000000000000000000000018201a0000000000000000000000000000000000000000000000000000000000182024000000000000000000000000000000000000000000000000000000000018201b0000000000000000000000000000000000000000000000000000000000182025000000000000000000000000000000000000000000000000000000000018201c0000000000000000000000000000000000000000000000000000000000182026000000000000000000000000000000000000000000000000000000000018201d0000000000000000000000000000000000000000000000000000000000182027000000000000000000000000000000000000000000000000000000000018201e0000000000000000000000000000000000000000000000000000000000182028000000000000000000000000000000000000000000000000000000000018201f00000000000000000000000000000000000000000000000000000000001820290000000000000000000000000000000000000000000000000000000000182020000000000000000000000000000000000000000000000000000000000018202a0000000000000000000000000000000000000000000000000000000000182021000000000000000000000000000000000000000000000000000000000018202b0000000000000000000000000000000000000000000000000000000000182022000000000000000000000000000000000000000000000000000000000018202c0000000000000000000000000000000000000000000000000000000000182023000000000000000000000000000000000000000000000000000000000018202d0000000000000000000000000000000000000000000000000000000000182024000000000000000000000000000000000000000000000000000000000018202e0000000000000000000000000000000000000000000000000000000000182025000000000000000000000000000000000000000000000000000000000018202f00000000000000000000000000000000000000000000000000000000001820260000000000000000000000000000000000000000000000000000000000182030000000000000000000000000000000000000000000000000000000000018202700000000000000000000000000000000000000000000000000000000001820310000000000000000000000000000000000000000000000000000000000182028000000000000000000000000000000000000000000000000000000000018203200000000000000000000000000000000000000000000000000000000001820290000000000000000000000000000000000000000000000000000000000182033000000000000000000000000000000000000000000000000000000000018202a0000000000000000000000000000000000000000000000000000000000182034000000000000000000000000000000000000000000000000000000000018202b0000000000000000000000000000000000000000000000000000000000182035000000000000000000000000000000000000000000000000000000000018202c0000000000000000000000000000000000000000000000000000000000182036000000000000000000000000000000000000000000000000000000000018202d0000000000000000000000000000000000000000000000000000000000182037000000000000000000000000000000000000000000000000000000000018202e0000000000000000000000000000000000000000000000000000000000182038000000000000000000000000000000000000000000000000000000000018202f00000000000000000000000000000000000000000000000000000000001820390000000000000000000000000000000000000000000000000000000000182030000000000000000000000000000000000000000000000000000000000018203a0000000000000000000000000000000000000000000000000000000000182031000000000000000000000000000000000000000000000000000000000018203b0000000000000000000000000000000000000000000000000000000000182032000000000000000000000000000000000000000000000000000000000018203c0000000000000000000000000000000000000000000000000000000000182033000000000000000000000000000000000000000000000000000000000018203d0000000000000000000000000000000000000000000000000000000000182034000000000000000000000000000000000000000000000000000000000018203e0000000000000000000000000000000000000000000000000000000000182035000000000000000000000000000000000000000000000000000000000018203f00000000000000000000000000000000000000000000000000000000001820360000000000000000000000000000000000000000000000000000000000182040000000000000000000000000000000000000000000000000000000000018203700000000000000000000000000000000000000000000000000000000001820410000000000000000000000000000000000000000000000000000000000182038000000000000000000000000000000000000000000000000000000000018204200000000000000000000000000000000000000000000000000000000001820390000000000000000000000000000000000000000000000000000000000182043000000000000000000000000000000000000000000000000000000000018203a0000000000000000000000000000000000000000000000000000000000182044000000000000000000000000000000000000000000000000000000000018203b0000000000000000000000000000000000000000000000000000000000182045000000000000000000000000000000000000000000000000000000000018203c0000000000000000000000000000000000000000000000000000000000182046000000000000000000000000000000000000000000000000000000000018203d0000000000000000000000000000000000000000000000000000000000182047000000000000000000000000000000000000000000000000000000000018203e0000000000000000000000000000000000000000000000000000000000182048000000000000000000000000000000000000000000000000000000000018203f0000000000000000000000000000000000000000000000000000000000182049200000000000000000000000000000000000000000000000000000000000181700000000000000000000000000000000000000000000000000000000000018170100000000000000000000000000000000000000000000000000000000001817020000000000000000000000000000000000000000000000000000000000181703000000000000000000000000000000000000000000000000000000000018170400000000000000000000000000000000000000000000000000000000001817050000000000000000000000000000000000000000000000000000000000181706000000000000000000000000000000000000000000000000000000000018170700000000000000000000000000000000000000000000000000000000001817080000000000000000000000000000000000000000000000000000000000181709000000000000000000000000000000000000000000000000000000000018170a000000000000000000000000000000000000000000000000000000000018170b000000000000000000000000000000000000000000000000000000000018170c000000000000000000000000000000000000000000000000000000000018170d000000000000000000000000000000000000000000000000000000000018170e000000000000000000000000000000000000000000000000000000000018170f00000000000000000000000000000000000000000000000000000000001817100000000000000000000000000000000000000000000000000000000000181711000000000000000000000000000000000000000000000000000000000018170100000000000000000000000000000000000000000000000000000000001817020000000000000000000000000000000000000000000000000000000000181703000000000000000000000000000000000000000000000000000000000018170400000000000000000000000000000000000000000000000000000000001817050000000000000000000000000000000000000000000000000000000000181706000000000000000000000000000000000000000000000000000000000018170700000000000000000000000000000000000000000000000000000000001817080000000000000000000000000000000000000000000000000000000000181709000000000000000000000000000000000000000000000000000000000018170a000000000000000000000000000000000000000000000000000000000018170b000000000000000000000000000000000000000000000000000000000018170c000000000000000000000000000000000000000000000000000000000018170d000000000000000000000000000000000000000000000000000000000018170e000000000000000000000000000000000000000000000000000000000018170f00000000000000000000000000000000000000000000000000000000001817100000000000000000000000000000000000000000000000000000000000181711000000000000000000000000000000000000000000000000000000000018171200000000000000000000000000000000000000000000000000000000001817020000000000000000000000000000000000000000000000000000000000181703000000000000000000000000000000000000000000000000000000000018170400000000000000000000000000000000000000000000000000000000001817050000000000000000000000000000000000000000000000000000000000181706000000000000000000000000000000000000000000000000000000000018170700000000000000000000000000000000000000000000000000000000001817080000000000000000000000000000000000000000000000000000000000181709000000000000000000000000000000000000000000000000000000000018170a000000000000000000000000000000000000000000000000000000000018170b000000000000000000000000000000000000000000000000000000000018170c000000000000000000000000000000000000000000000000000000000018170d000000000000000000000000000000000000000000000000000000000018170e000000000000000000000000000000000000000000000000000000000018170f00000000000000000000000000000000000000000000000000000000001817100000000000000000000000000000000000000000000000000000000000181711000000000000000000000000000000000000000000000000000000000018171200000000000000000000000000000000000000000000000000000000001817130000000000000000000000000000000000000000000000000000000000181703000000000000000000000000000000000000000000000000000000000018170400000000000000000000000000000000000000000000000000000000001817050000000000000000000000000000000000000000000000000000000000181706000000000000000000000000000000000000000000000000000000000018170700000000000000000000000000000000000000000000000000000000001817080000000000000000000000000000000000000000000000000000000000181709000000000000000000000000000000000000000000000000000000000018170a000000000000000000000000000000000000000000000000000000000018170b000000000000000000000000000000000000000000000000000000000018170c000000000000000000000000000000000000000000000000000000000018170d000000000000000000000000000000000000000000000000000000000018170e000000000000000000000000000000000000000000000000000000000018170f00000000000000000000000000000000000000000000000000000000001817100000000000000000000000000000000000000000000000000000000000181711000000000000000000000000000000000000000000000000000000000018171200000000000000000000000000000000000000000000000000000000001817130000000000000000000000000000000000000000000000000000000000181714000000000000000000000000000000000000000000000000000000000018170400000000000000000000000000000000000000000000000000000000001817050000000000000000000000000000000000000000000000000000000000181706000000000000000000000000000000000000000000000000000000000018170700000000000000000000000000000000000000000000000000000000001817080000000000000000000000000000000000000000000000000000000000181709000000000000000000000000000000000000000000000000000000000018170a000000000000000000000000000000000000000000000000000000000018170b000000000000000000000000000000000000000000000000000000000018170c000000000000000000000000000000000000000000000000000000000018170d000000000000000000000000000000000000000000000000000000000018170e000000000000000000000000000000000000000000000000000000000018170f00000000000000000000000000000000000000000000000000000000001817100000000000000000000000000000000000000000000000000000000000181711000000000000000000000000000000000000000000000000000000000018171200000000000000000000000000000000000000000000000000000000001817130000000000000000000000000000000000000000000000000000000000181714000000000000000000000000000000000000000000000000000000000018171500000000000000000000000000000000000000000000000000000000001817050000000000000000000000000000000000000000000000000000000000181706000000000000000000000000000000000000000000000000000000000018170700000000000000000000000000000000000000000000000000000000001817080000000000000000000000000000000000000000000000000000000000181709000000000000000000000000000000000000000000000000000000000018170a000000000000000000000000000000000000000000000000000000000018170b000000000000000000000000000000000000000000000000000000000018170c000000000000000000000000000000000000000000000000000000000018170d000000000000000000000000000000000000000000000000000000000018170e000000000000000000000000000000000000000000000000000000000018170f00000000000000000000000000000000000000000000000000000000001817100000000000000000000000000000000000000000000000000000000000181711000000000000000000000000000000000000000000000000000000000018171200000000000000000000000000000000000000000000000000000000001817130000000000000000000000000000000000000000000000000000000000181714000000000000000000000000000000000000000000000000000000000018171500000000000000000000000000000000000000000000000000000000001817160000000000000000000000000000000000000000000000000000000000181706000000000000000000000000000000000000000000000000000000000018170700000000000000000000000000000000000000000000000000000000001817080000000000000000000000000000000000000000000000000000000000181709000000000000000000000000000000000000000000000000000000000018170a000000000000000000000000000000000000000000000000000000000018170b000000000000000000000000000000000000000000000000000000000018170c000000000000000000000000000000000000000000000000000000000018170d000000000000000000000000000000000000000000000000000000000018170e000000000000000000000000000000000000000000000000000000000018170f00000000000000000000000000000000000000000000000000000000001817100000000000000000000000000000000000000000000000000000000000181711000000000000000000000000000000000000000000000000000000000018171200000000000000000000000000000000000000000000000000000000001817130000000000000000000000000000000000000000000000000000000000181714000000000000000000000000000000000000000000000000000000000018171500000000000000000000000000000000000000000000000000000000001817160000000000000000000000000000000000000000000000000000000000181717000000000000000000000000000000000000000000000000000000000018170700000000000000000000000000000000000000000000000000000000001817080000000000000000000000000000000000000000000000000000000000181709000000000000000000000000000000000000000000000000000000000018170a000000000000000000000000000000000000000000000000000000000018170b000000000000000000000000000000000000000000000000000000000018170c000000000000000000000000000000000000000000000000000000000018170d000000000000000000000000000000000000000000000000000000000018170e000000000000000000000000000000000000000000000000000000000018170f00000000000000000000000000000000000000000000000000000000001817100000000000000000000000000000000000000000000000000000000000181711000000000000000000000000000000000000000000000000000000000018171200000000000000000000000000000000000000000000000000000000001817130000000000000000000000000000000000000000000000000000000000181714000000000000000000000000000000000000000000000000000000000018171500000000000000000000000000000000000000000000000000000000001817160000000000000000000000000000000000000000000000000000000000181717000000000000000000000000000000000000000000000000000000000018171800000000000000000000000000000000000000000000000000000000001817080000000000000000000000000000000000000000000000000000000000181709000000000000000000000000000000000000000000000000000000000018170a000000000000000000000000000000000000000000000000000000000018170b000000000000000000000000000000000000000000000000000000000018170c000000000000000000000000000000000000000000000000000000000018170d000000000000000000000000000000000000000000000000000000000018170e000000000000000000000000000000000000000000000000000000000018170f00000000000000000000000000000000000000000000000000000000001817100000000000000000000000000000000000000000000000000000000000181711000000000000000000000000000000000000000000000000000000000018171200000000000000000000000000000000000000000000000000000000001817130000000000000000000000000000000000000000000000000000000000181714000000000000000000000000000000000000000000000000000000000018171500000000000000000000000000000000000000000000000000000000001817160000000000000000000000000000000000000000000000000000000000181717000000000000000000000000000000000000000000000000000000000018171800000000000000000000000000000000000000000000000000000000001817190000000000000000000000000000000000000000000000000000000000181709000000000000000000000000000000000000000000000000000000000018170a000000000000000000000000000000000000000000000000000000000018170b000000000000000000000000000000000000000000000000000000000018170c000000000000000000000000000000000000000000000000000000000018170d000000000000000000000000000000000000000000000000000000000018170e000000000000000000000000000000000000000000000000000000000018170f0000000000000000000000000000000000000000000000000000000000181710000000000000000000000000000000000000000000000000000000000018171100000000000000000000000000000000000000000000000000000000001817120000000000000000000000000000000000000000000000000000000000181713000000000000000000000000000000000000000000000000000000000018171400000000000000000000000000000000000000000000000000000000001817150000000000000000000000000000000000000000000000000000000000181716000000000000000000000000000000000000000000000000000000000018171700000000000000000000000000000000000000000000000000000000001817180000000000000000000000000000000000000000000000000000000000181719000000000000000000000000000000000000000000000000000000000018171a000000000000000000000000000000000000000000000000000000000018170a000000000000000000000000000000000000000000000000000000000018170b000000000000000000000000000000000000000000000000000000000018170c000000000000000000000000000000000000000000000000000000000018170d000000000000000000000000000000000000000000000000000000000018170e000000000000000000000000000000000000000000000000000000000018170f0000000000000000000000000000000000000000000000000000000000181710000000000000000000000000000000000000000000000000000000000018171100000000000000000000000000000000000000000000000000000000001817120000000000000000000000000000000000000000000000000000000000181713000000000000000000000000000000000000000000000000000000000018171400000000000000000000000000000000000000000000000000000000001817150000000000000000000000000000000000000000000000000000000000181716000000000000000000000000000000000000000000000000000000000018171700000000000000000000000000000000000000000000000000000000001817180000000000000000000000000000000000000000000000000000000000181719000000000000000000000000000000000000000000000000000000000018171a000000000000000000000000000000000000000000000000000000000018171b000000000000000000000000000000000000000000000000000000000018170b000000000000000000000000000000000000000000000000000000000018170c000000000000000000000000000000000000000000000000000000000018170d000000000000000000000000000000000000000000000000000000000018170e000000000000000000000000000000000000000000000000000000000018170f0000000000000000000000000000000000000000000000000000000000181710000000000000000000000000000000000000000000000000000000000018171100000000000000000000000000000000000000000000000000000000001817120000000000000000000000000000000000000000000000000000000000181713000000000000000000000000000000000000000000000000000000000018171400000000000000000000000000000000000000000000000000000000001817150000000000000000000000000000000000000000000000000000000000181716000000000000000000000000000000000000000000000000000000000018171700000000000000000000000000000000000000000000000000000000001817180000000000000000000000000000000000000000000000000000000000181719000000000000000000000000000000000000000000000000000000000018171a000000000000000000000000000000000000000000000000000000000018171b000000000000000000000000000000000000000000000000000000000018171c000000000000000000000000000000000000000000000000000000000018170c000000000000000000000000000000000000000000000000000000000018170d000000000000000000000000000000000000000000000000000000000018170e000000000000000000000000000000000000000000000000000000000018170f0000000000000000000000000000000000000000000000000000000000181710000000000000000000000000000000000000000000000000000000000018171100000000000000000000000000000000000000000000000000000000001817120000000000000000000000000000000000000000000000000000000000181713000000000000000000000000000000000000000000000000000000000018171400000000000000000000000000000000000000000000000000000000001817150000000000000000000000000000000000000000000000000000000000181716000000000000000000000000000000000000000000000000000000000018171700000000000000000000000000000000000000000000000000000000001817180000000000000000000000000000000000000000000000000000000000181719000000000000000000000000000000000000000000000000000000000018171a000000000000000000000000000000000000000000000000000000000018171b000000000000000000000000000000000000000000000000000000000018171c000000000000000000000000000000000000000000000000000000000018171d000000000000000000000000000000000000000000000000000000000018170d000000000000000000000000000000000000000000000000000000000018170e000000000000000000000000000000000000000000000000000000000018170f0000000000000000000000000000000000000000000000000000000000181710000000000000000000000000000000000000000000000000000000000018171100000000000000000000000000000000000000000000000000000000001817120000000000000000000000000000000000000000000000000000000000181713000000000000000000000000000000000000000000000000000000000018171400000000000000000000000000000000000000000000000000000000001817150000000000000000000000000000000000000000000000000000000000181716000000000000000000000000000000000000000000000000000000000018171700000000000000000000000000000000000000000000000000000000001817180000000000000000000000000000000000000000000000000000000000181719000000000000000000000000000000000000000000000000000000000018171a000000000000000000000000000000000000000000000000000000000018171b000000000000000000000000000000000000000000000000000000000018171c000000000000000000000000000000000000000000000000000000000018171d000000000000000000000000000000000000000000000000000000000018171e000000000000000000000000000000000000000000000000000000000018170e000000000000000000000000000000000000000000000000000000000018170f0000000000000000000000000000000000000000000000000000000000181710000000000000000000000000000000000000000000000000000000000018171100000000000000000000000000000000000000000000000000000000001817120000000000000000000000000000000000000000000000000000000000181713000000000000000000000000000000000000000000000000000000000018171400000000000000000000000000000000000000000000000000000000001817150000000000000000000000000000000000000000000000000000000000181716000000000000000000000000000000000000000000000000000000000018171700000000000000000000000000000000000000000000000000000000001817180000000000000000000000000000000000000000000000000000000000181719000000000000000000000000000000000000000000000000000000000018171a000000000000000000000000000000000000000000000000000000000018171b000000000000000000000000000000000000000000000000000000000018171c000000000000000000000000000000000000000000000000000000000018171d000000000000000000000000000000000000000000000000000000000018171e000000000000000000000000000000000000000000000000000000000018171f000000000000000000000000000000000000000000000000000000000018170f0000000000000000000000000000000000000000000000000000000000181710000000000000000000000000000000000000000000000000000000000018171100000000000000000000000000000000000000000000000000000000001817120000000000000000000000000000000000000000000000000000000000181713000000000000000000000000000000000000000000000000000000000018171400000000000000000000000000000000000000000000000000000000001817150000000000000000000000000000000000000000000000000000000000181716000000000000000000000000000000000000000000000000000000000018171700000000000000000000000000000000000000000000000000000000001817180000000000000000000000000000000000000000000000000000000000181719000000000000000000000000000000000000000000000000000000000018171a000000000000000000000000000000000000000000000000000000000018171b000000000000000000000000000000000000000000000000000000000018171c000000000000000000000000000000000000000000000000000000000018171d000000000000000000000000000000000000000000000000000000000018171e000000000000000000000000000000000000000000000000000000000018171f00000000000000000000000000000000000000000000000000000000001817200000000000000000000000000000000000000000000000000000000000181710000000000000000000000000000000000000000000000000000000000018171100000000000000000000000000000000000000000000000000000000001817120000000000000000000000000000000000000000000000000000000000181713000000000000000000000000000000000000000000000000000000000018171400000000000000000000000000000000000000000000000000000000001817150000000000000000000000000000000000000000000000000000000000181716000000000000000000000000000000000000000000000000000000000018171700000000000000000000000000000000000000000000000000000000001817180000000000000000000000000000000000000000000000000000000000181719000000000000000000000000000000000000000000000000000000000018171a000000000000000000000000000000000000000000000000000000000018171b000000000000000000000000000000000000000000000000000000000018171c000000000000000000000000000000000000000000000000000000000018171d000000000000000000000000000000000000000000000000000000000018171e000000000000000000000000000000000000000000000000000000000018171f00000000000000000000000000000000000000000000000000000000001817200000000000000000000000000000000000000000000000000000000000181721000000000000000000000000000000000000000000000000000000000018171100000000000000000000000000000000000000000000000000000000001817120000000000000000000000000000000000000000000000000000000000181713000000000000000000000000000000000000000000000000000000000018171400000000000000000000000000000000000000000000000000000000001817150000000000000000000000000000000000000000000000000000000000181716000000000000000000000000000000000000000000000000000000000018171700000000000000000000000000000000000000000000000000000000001817180000000000000000000000000000000000000000000000000000000000181719000000000000000000000000000000000000000000000000000000000018171a000000000000000000000000000000000000000000000000000000000018171b000000000000000000000000000000000000000000000000000000000018171c000000000000000000000000000000000000000000000000000000000018171d000000000000000000000000000000000000000000000000000000000018171e000000000000000000000000000000000000000000000000000000000018171f00000000000000000000000000000000000000000000000000000000001817200000000000000000000000000000000000000000000000000000000000181721000000000000000000000000000000000000000000000000000000000018172200000000000000000000000000000000000000000000000000000000001817120000000000000000000000000000000000000000000000000000000000181713000000000000000000000000000000000000000000000000000000000018171400000000000000000000000000000000000000000000000000000000001817150000000000000000000000000000000000000000000000000000000000181716000000000000000000000000000000000000000000000000000000000018171700000000000000000000000000000000000000000000000000000000001817180000000000000000000000000000000000000000000000000000000000181719000000000000000000000000000000000000000000000000000000000018171a000000000000000000000000000000000000000000000000000000000018171b000000000000000000000000000000000000000000000000000000000018171c000000000000000000000000000000000000000000000000000000000018171d000000000000000000000000000000000000000000000000000000000018171e000000000000000000000000000000000000000000000000000000000018171f00000000000000000000000000000000000000000000000000000000001817200000000000000000000000000000000000000000000000000000000000181721000000000000000000000000000000000000000000000000000000000018172200000000000000000000000000000000000000000000000000000000001817230000000000000000000000000000000000000000000000000000000000181713000000000000000000000000000000000000000000000000000000000018171400000000000000000000000000000000000000000000000000000000001817150000000000000000000000000000000000000000000000000000000000181716000000000000000000000000000000000000000000000000000000000018171700000000000000000000000000000000000000000000000000000000001817180000000000000000000000000000000000000000000000000000000000181719000000000000000000000000000000000000000000000000000000000018171a000000000000000000000000000000000000000000000000000000000018171b000000000000000000000000000000000000000000000000000000000018171c000000000000000000000000000000000000000000000000000000000018171d000000000000000000000000000000000000000000000000000000000018171e000000000000000000000000000000000000000000000000000000000018171f00000000000000000000000000000000000000000000000000000000001817200000000000000000000000000000000000000000000000000000000000181721000000000000000000000000000000000000000000000000000000000018172200000000000000000000000000000000000000000000000000000000001817230000000000000000000000000000000000000000000000000000000000181724000000000000000000000000000000000000000000000000000000000018171400000000000000000000000000000000000000000000000000000000001817150000000000000000000000000000000000000000000000000000000000181716000000000000000000000000000000000000000000000000000000000018171700000000000000000000000000000000000000000000000000000000001817180000000000000000000000000000000000000000000000000000000000181719000000000000000000000000000000000000000000000000000000000018171a000000000000000000000000000000000000000000000000000000000018171b000000000000000000000000000000000000000000000000000000000018171c000000000000000000000000000000000000000000000000000000000018171d000000000000000000000000000000000000000000000000000000000018171e000000000000000000000000000000000000000000000000000000000018171f00000000000000000000000000000000000000000000000000000000001817200000000000000000000000000000000000000000000000000000000000181721000000000000000000000000000000000000000000000000000000000018172200000000000000000000000000000000000000000000000000000000001817230000000000000000000000000000000000000000000000000000000000181724000000000000000000000000000000000000000000000000000000000018172500000000000000000000000000000000000000000000000000000000001817150000000000000000000000000000000000000000000000000000000000181716000000000000000000000000000000000000000000000000000000000018171700000000000000000000000000000000000000000000000000000000001817180000000000000000000000000000000000000000000000000000000000181719000000000000000000000000000000000000000000000000000000000018171a000000000000000000000000000000000000000000000000000000000018171b000000000000000000000000000000000000000000000000000000000018171c000000000000000000000000000000000000000000000000000000000018171d000000000000000000000000000000000000000000000000000000000018171e000000000000000000000000000000000000000000000000000000000018171f00000000000000000000000000000000000000000000000000000000001817200000000000000000000000000000000000000000000000000000000000181721000000000000000000000000000000000000000000000000000000000018172200000000000000000000000000000000000000000000000000000000001817230000000000000000000000000000000000000000000000000000000000181724000000000000000000000000000000000000000000000000000000000018172500000000000000000000000000000000000000000000000000000000001817260000000000000000000000000000000000000000000000000000000000181716000000000000000000000000000000000000000000000000000000000018171700000000000000000000000000000000000000000000000000000000001817180000000000000000000000000000000000000000000000000000000000181719000000000000000000000000000000000000000000000000000000000018171a000000000000000000000000000000000000000000000000000000000018171b000000000000000000000000000000000000000000000000000000000018171c000000000000000000000000000000000000000000000000000000000018171d000000000000000000000000000000000000000000000000000000000018171e000000000000000000000000000000000000000000000000000000000018171f00000000000000000000000000000000000000000000000000000000001817200000000000000000000000000000000000000000000000000000000000181721000000000000000000000000000000000000000000000000000000000018172200000000000000000000000000000000000000000000000000000000001817230000000000000000000000000000000000000000000000000000000000181724000000000000000000000000000000000000000000000000000000000018172500000000000000000000000000000000000000000000000000000000001817260000000000000000000000000000000000000000000000000000000000181727000000000000000000000000000000000000000000000000000000000018171700000000000000000000000000000000000000000000000000000000001817180000000000000000000000000000000000000000000000000000000000181719000000000000000000000000000000000000000000000000000000000018171a000000000000000000000000000000000000000000000000000000000018171b000000000000000000000000000000000000000000000000000000000018171c000000000000000000000000000000000000000000000000000000000018171d000000000000000000000000000000000000000000000000000000000018171e000000000000000000000000000000000000000000000000000000000018171f00000000000000000000000000000000000000000000000000000000001817200000000000000000000000000000000000000000000000000000000000181721000000000000000000000000000000000000000000000000000000000018172200000000000000000000000000000000000000000000000000000000001817230000000000000000000000000000000000000000000000000000000000181724000000000000000000000000000000000000000000000000000000000018172500000000000000000000000000000000000000000000000000000000001817260000000000000000000000000000000000000000000000000000000000181727000000000000000000000000000000000000000000000000000000000018172800000000000000000000000000000000000000000000000000000000001817180000000000000000000000000000000000000000000000000000000000181719000000000000000000000000000000000000000000000000000000000018171a000000000000000000000000000000000000000000000000000000000018171b000000000000000000000000000000000000000000000000000000000018171c000000000000000000000000000000000000000000000000000000000018171d000000000000000000000000000000000000000000000000000000000018171e000000000000000000000000000000000000000000000000000000000018171f00000000000000000000000000000000000000000000000000000000001817200000000000000000000000000000000000000000000000000000000000181721000000000000000000000000000000000000000000000000000000000018172200000000000000000000000000000000000000000000000000000000001817230000000000000000000000000000000000000000000000000000000000181724000000000000000000000000000000000000000000000000000000000018172500000000000000000000000000000000000000000000000000000000001817260000000000000000000000000000000000000000000000000000000000181727000000000000000000000000000000000000000000000000000000000018172800000000000000000000000000000000000000000000000000000000001817290000000000000000000000000000000000000000000000000000000000181719000000000000000000000000000000000000000000000000000000000018171a000000000000000000000000000000000000000000000000000000000018171b000000000000000000000000000000000000000000000000000000000018171c000000000000000000000000000000000000000000000000000000000018171d000000000000000000000000000000000000000000000000000000000018171e000000000000000000000000000000000000000000000000000000000018171f0000000000000000000000000000000000000000000000000000000000181720000000000000000000000000000000000000000000000000000000000018172100000000000000000000000000000000000000000000000000000000001817220000000000000000000000000000000000000000000000000000000000181723000000000000000000000000000000000000000000000000000000000018172400000000000000000000000000000000000000000000000000000000001817250000000000000000000000000000000000000000000000000000000000181726000000000000000000000000000000000000000000000000000000000018172700000000000000000000000000000000000000000000000000000000001817280000000000000000000000000000000000000000000000000000000000181729000000000000000000000000000000000000000000000000000000000018172a000000000000000000000000000000000000000000000000000000000018171a000000000000000000000000000000000000000000000000000000000018171b000000000000000000000000000000000000000000000000000000000018171c000000000000000000000000000000000000000000000000000000000018171d000000000000000000000000000000000000000000000000000000000018171e000000000000000000000000000000000000000000000000000000000018171f0000000000000000000000000000000000000000000000000000000000181720000000000000000000000000000000000000000000000000000000000018172100000000000000000000000000000000000000000000000000000000001817220000000000000000000000000000000000000000000000000000000000181723000000000000000000000000000000000000000000000000000000000018172400000000000000000000000000000000000000000000000000000000001817250000000000000000000000000000000000000000000000000000000000181726000000000000000000000000000000000000000000000000000000000018172700000000000000000000000000000000000000000000000000000000001817280000000000000000000000000000000000000000000000000000000000181729000000000000000000000000000000000000000000000000000000000018172a000000000000000000000000000000000000000000000000000000000018172b000000000000000000000000000000000000000000000000000000000018171b000000000000000000000000000000000000000000000000000000000018171c000000000000000000000000000000000000000000000000000000000018171d000000000000000000000000000000000000000000000000000000000018171e000000000000000000000000000000000000000000000000000000000018171f0000000000000000000000000000000000000000000000000000000000181720000000000000000000000000000000000000000000000000000000000018172100000000000000000000000000000000000000000000000000000000001817220000000000000000000000000000000000000000000000000000000000181723000000000000000000000000000000000000000000000000000000000018172400000000000000000000000000000000000000000000000000000000001817250000000000000000000000000000000000000000000000000000000000181726000000000000000000000000000000000000000000000000000000000018172700000000000000000000000000000000000000000000000000000000001817280000000000000000000000000000000000000000000000000000000000181729000000000000000000000000000000000000000000000000000000000018172a000000000000000000000000000000000000000000000000000000000018172b000000000000000000000000000000000000000000000000000000000018172c000000000000000000000000000000000000000000000000000000000018171c000000000000000000000000000000000000000000000000000000000018171d000000000000000000000000000000000000000000000000000000000018171e000000000000000000000000000000000000000000000000000000000018171f0000000000000000000000000000000000000000000000000000000000181720000000000000000000000000000000000000000000000000000000000018172100000000000000000000000000000000000000000000000000000000001817220000000000000000000000000000000000000000000000000000000000181723000000000000000000000000000000000000000000000000000000000018172400000000000000000000000000000000000000000000000000000000001817250000000000000000000000000000000000000000000000000000000000181726000000000000000000000000000000000000000000000000000000000018172700000000000000000000000000000000000000000000000000000000001817280000000000000000000000000000000000000000000000000000000000181729000000000000000000000000000000000000000000000000000000000018172a000000000000000000000000000000000000000000000000000000000018172b000000000000000000000000000000000000000000000000000000000018172c000000000000000000000000000000000000000000000000000000000018172d000000000000000000000000000000000000000000000000000000000018171d000000000000000000000000000000000000000000000000000000000018171e000000000000000000000000000000000000000000000000000000000018171f0000000000000000000000000000000000000000000000000000000000181720000000000000000000000000000000000000000000000000000000000018172100000000000000000000000000000000000000000000000000000000001817220000000000000000000000000000000000000000000000000000000000181723000000000000000000000000000000000000000000000000000000000018172400000000000000000000000000000000000000000000000000000000001817250000000000000000000000000000000000000000000000000000000000181726000000000000000000000000000000000000000000000000000000000018172700000000000000000000000000000000000000000000000000000000001817280000000000000000000000000000000000000000000000000000000000181729000000000000000000000000000000000000000000000000000000000018172a000000000000000000000000000000000000000000000000000000000018172b000000000000000000000000000000000000000000000000000000000018172c000000000000000000000000000000000000000000000000000000000018172d000000000000000000000000000000000000000000000000000000000018172e000000000000000000000000000000000000000000000000000000000018171e000000000000000000000000000000000000000000000000000000000018171f0000000000000000000000000000000000000000000000000000000000181720000000000000000000000000000000000000000000000000000000000018172100000000000000000000000000000000000000000000000000000000001817220000000000000000000000000000000000000000000000000000000000181723000000000000000000000000000000000000000000000000000000000018172400000000000000000000000000000000000000000000000000000000001817250000000000000000000000000000000000000000000000000000000000181726000000000000000000000000000000000000000000000000000000000018172700000000000000000000000000000000000000000000000000000000001817280000000000000000000000000000000000000000000000000000000000181729000000000000000000000000000000000000000000000000000000000018172a000000000000000000000000000000000000000000000000000000000018172b000000000000000000000000000000000000000000000000000000000018172c000000000000000000000000000000000000000000000000000000000018172d000000000000000000000000000000000000000000000000000000000018172e000000000000000000000000000000000000000000000000000000000018172f000000000000000000000000000000000000000000000000000000000018171f0000000000000000000000000000000000000000000000000000000000181720000000000000000000000000000000000000000000000000000000000018172100000000000000000000000000000000000000000000000000000000001817220000000000000000000000000000000000000000000000000000000000181723000000000000000000000000000000000000000000000000000000000018172400000000000000000000000000000000000000000000000000000000001817250000000000000000000000000000000000000000000000000000000000181726000000000000000000000000000000000000000000000000000000000018172700000000000000000000000000000000000000000000000000000000001817280000000000000000000000000000000000000000000000000000000000181729000000000000000000000000000000000000000000000000000000000018172a000000000000000000000000000000000000000000000000000000000018172b000000000000000000000000000000000000000000000000000000000018172c000000000000000000000000000000000000000000000000000000000018172d000000000000000000000000000000000000000000000000000000000018172e000000000000000000000000000000000000000000000000000000000018172f00000000000000000000000000000000000000000000000000000000001817300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000001c100000000000000000000000000000000000000000000000000000000000001c100100000000000000000000000000000000000000000000000000000000001c100200000000000000000000000000000000000000000000000000000000001c100300000000000000000000000000000000000000000000000000000000001c100400000000000000000000000000000000000000000000000000000000001c100500000000000000000000000000000000000000000000000000000000001c100600000000000000000000000000000000000000000000000000000000001c100700000000000000000000000000000000000000000000000000000000001c100800000000000000000000000000000000000000000000000000000000001c100900000000000000000000000000000000000000000000000000000000001c100a00000000000000000000000000000000000000000000000000000000001c100b00000000000000000000000000000000000000000000000000000000001c100c00000000000000000000000000000000000000000000000000000000001c100d00000000000000000000000000000000000000000000000000000000001c100e00000000000000000000000000000000000000000000000000000000001c100f00000000000000000000000000000000000000000000000000000000001c101000000000000000000000000000000000000000000000000000000000001c101100000000000000000000000000000000000000000000000000000000001c101200000000000000000000000000000000000000000000000000000000001c101300000000000000000000000000000000000000000000000000000000001c101400000000000000000000000000000000000000000000000000000000001c101500000000000000000000000000000000000000000000000000000000001c101600000000000000000000000000000000000000000000000000000000001c101700000000000000000000000000000000000000000000000000000000001c101800000000000000000000000000000000000000000000000000000000001c101900000000000000000000000000000000000000000000000000000000001c101a00000000000000000000000000000000000000000000000000000000001c101b00000000000000000000000000000000000000000000000000000000001c101c00000000000000000000000000000000000000000000000000000000001c101d00000000000000000000000000000000000000000000000000000000001c101e00000000000000000000000000000000000000000000000000000000001c101f00000000000000000000000000000000000000000000000000000000001c102000000000000000000000000000000000000000000000000000000000001c102100000000000000000000000000000000000000000000000000000000001c102200000000000000000000000000000000000000000000000000000000001c102300000000000000000000000000000000000000000000000000000000001c102400000000000000000000000000000000000000000000000000000000001c102500000000000000000000000000000000000000000000000000000000001c102600000000000000000000000000000000000000000000000000000000001c102700000000000000000000000000000000000000000000000000000000001c102800000000000000000000000000000000000000000000000000000000001c102900000000000000000000000000000000000000000000000000000000001c102a00000000000000000000000000000000000000000000000000000000001c102b00000000000000000000000000000000000000000000000000000000001c102c00000000000000000000000000000000000000000000000000000000001c102d00000000000000000000000000000000000000000000000000000000001c102e00000000000000000000000000000000000000000000000000000000001c102f00000000000000000000000000000000000000000000000000000000001c103000000000000000000000000000000000000000000000000000000000001c103100000000000000000000000000000000000000000000000000000000001c103200000000000000000000000000000000000000000000000000000000001c103300000000000000000000000000000000000000000000000000000000001c103400000000000000000000000000000000000000000000000000000000001c103500000000000000000000000000000000000000000000000000000000001c103600000000000000000000000000000000000000000000000000000000001c103700000000000000000000000000000000000000000000000000000000001c103800000000000000000000000000000000000000000000000000000000001c103900000000000000000000000000000000000000000000000000000000001c103a00000000000000000000000000000000000000000000000000000000001c103b00000000000000000000000000000000000000000000000000000000001c103c00000000000000000000000000000000000000000000000000000000001c103d00000000000000000000000000000000000000000000000000000000001c103e00000000000000000000000000000000000000000000000000000000001c103f4000000000000000000000000000000000000000000000000000000000001c000100000000000000000000000000000000000000000000000000000000001c110000000000000000000000000000000000000000000000000000000000001c110100000000000000000000000000000000000000000000000000000000001c110200000000000000000000000000000000000000000000000000000000001c110300000000000000000000000000000000000000000000000000000000001c110400000000000000000000000000000000000000000000000000000000001c110500000000000000000000000000000000000000000000000000000000001c110600000000000000000000000000000000000000000000000000000000001c110700000000000000000000000000000000000000000000000000000000001c110800000000000000000000000000000000000000000000000000000000001c110900000000000000000000000000000000000000000000000000000000001c110a00000000000000000000000000000000000000000000000000000000001c110b00000000000000000000000000000000000000000000000000000000001c110c00000000000000000000000000000000000000000000000000000000001c110d00000000000000000000000000000000000000000000000000000000001c110e00000000000000000000000000000000000000000000000000000000001c110f00000000000000000000000000000000000000000000000000000000001c111000000000000000000000000000000000000000000000000000000000001c111100000000000000000000000000000000000000000000000000000000001c111200000000000000000000000000000000000000000000000000000000001c111300000000000000000000000000000000000000000000000000000000001c111400000000000000000000000000000000000000000000000000000000001c111500000000000000000000000000000000000000000000000000000000001c111600000000000000000000000000000000000000000000000000000000001c111700000000000000000000000000000000000000000000000000000000001c111800000000000000000000000000000000000000000000000000000000001c111900000000000000000000000000000000000000000000000000000000001c111a00000000000000000000000000000000000000000000000000000000001c111b00000000000000000000000000000000000000000000000000000000001c111c00000000000000000000000000000000000000000000000000000000001c111d00000000000000000000000000000000000000000000000000000000001c111e00000000000000000000000000000000000000000000000000000000001c111f00000000000000000000000000000000000000000000000000000000001c112000000000000000000000000000000000000000000000000000000000001c112100000000000000000000000000000000000000000000000000000000001c112200000000000000000000000000000000000000000000000000000000001c112300000000000000000000000000000000000000000000000000000000001c112400000000000000000000000000000000000000000000000000000000001c112500000000000000000000000000000000000000000000000000000000001c112600000000000000000000000000000000000000000000000000000000001c112700000000000000000000000000000000000000000000000000000000001c112800000000000000000000000000000000000000000000000000000000001c112900000000000000000000000000000000000000000000000000000000001c112a00000000000000000000000000000000000000000000000000000000001c112b00000000000000000000000000000000000000000000000000000000001c112c00000000000000000000000000000000000000000000000000000000001c112d00000000000000000000000000000000000000000000000000000000001c112e00000000000000000000000000000000000000000000000000000000001c112f00000000000000000000000000000000000000000000000000000000001c113000000000000000000000000000000000000000000000000000000000001c113100000000000000000000000000000000000000000000000000000000001c113200000000000000000000000000000000000000000000000000000000001c113300000000000000000000000000000000000000000000000000000000001c113400000000000000000000000000000000000000000000000000000000001c113500000000000000000000000000000000000000000000000000000000001c113600000000000000000000000000000000000000000000000000000000001c113700000000000000000000000000000000000000000000000000000000001c113800000000000000000000000000000000000000000000000000000000001c113900000000000000000000000000000000000000000000000000000000001c113a00000000000000000000000000000000000000000000000000000000001c113b00000000000000000000000000000000000000000000000000000000001c113c00000000000000000000000000000000000000000000000000000000001c113d00000000000000000000000000000000000000000000000000000000001c113e08006838aa99533bea0d4204cad17cb3c147e99c2f9089e54a4289d54733eeada2002ab314bd11ace2494a3fb0970d276da39f0fe7da19c9a2438b9c7c334d32470071703d79d8425a7eca52006df6a8f9728508a83639e3e1c2ebae2b853a087c00c9501ac04a78ac5413c9131b08708064ed2c2515b8893f12c2d1cda15a44f100a0955f93e109778d26f9e5b0d46e45c539e59b0941517bfa888eb2d7d2d8a6005adc3be9406cc5f102c6adb44746e8529a256e2396353a8659344cc3e914c4007a5fe572cf6af804f472dabf095c5eb6b30efc5fd627ad3245a8ef0f3f578c003dcaa91dfc9fdad7ba8da68a48fc662dfc0a995cbb0c1bc62099c8257d240d4000000000000000000000000000000000000000000000000000000000001c200000000000000000000000000000000000000000000000000000000000001c200a00000000000000000000000000000000000000000000000000000000001c200100000000000000000000000000000000000000000000000000000000001c200b00000000000000000000000000000000000000000000000000000000001c200200000000000000000000000000000000000000000000000000000000001c200c00000000000000000000000000000000000000000000000000000000001c200300000000000000000000000000000000000000000000000000000000001c200d00000000000000000000000000000000000000000000000000000000001c200400000000000000000000000000000000000000000000000000000000001c200e00000000000000000000000000000000000000000000000000000000001c200500000000000000000000000000000000000000000000000000000000001c200f00000000000000000000000000000000000000000000000000000000001c200600000000000000000000000000000000000000000000000000000000001c201000000000000000000000000000000000000000000000000000000000001c200700000000000000000000000000000000000000000000000000000000001c201100000000000000000000000000000000000000000000000000000000001c200800000000000000000000000000000000000000000000000000000000001c201200000000000000000000000000000000000000000000000000000000001c200900000000000000000000000000000000000000000000000000000000001c201300000000000000000000000000000000000000000000000000000000001c200a00000000000000000000000000000000000000000000000000000000001c201400000000000000000000000000000000000000000000000000000000001c200b00000000000000000000000000000000000000000000000000000000001c201500000000000000000000000000000000000000000000000000000000001c200c00000000000000000000000000000000000000000000000000000000001c201600000000000000000000000000000000000000000000000000000000001c200d00000000000000000000000000000000000000000000000000000000001c201700000000000000000000000000000000000000000000000000000000001c200e00000000000000000000000000000000000000000000000000000000001c201800000000000000000000000000000000000000000000000000000000001c200f00000000000000000000000000000000000000000000000000000000001c201900000000000000000000000000000000000000000000000000000000001c201000000000000000000000000000000000000000000000000000000000001c201a00000000000000000000000000000000000000000000000000000000001c201100000000000000000000000000000000000000000000000000000000001c201b00000000000000000000000000000000000000000000000000000000001c201200000000000000000000000000000000000000000000000000000000001c201c00000000000000000000000000000000000000000000000000000000001c201300000000000000000000000000000000000000000000000000000000001c201d00000000000000000000000000000000000000000000000000000000001c201400000000000000000000000000000000000000000000000000000000001c201e00000000000000000000000000000000000000000000000000000000001c201500000000000000000000000000000000000000000000000000000000001c201f00000000000000000000000000000000000000000000000000000000001c201600000000000000000000000000000000000000000000000000000000001c202000000000000000000000000000000000000000000000000000000000001c201700000000000000000000000000000000000000000000000000000000001c202100000000000000000000000000000000000000000000000000000000001c201800000000000000000000000000000000000000000000000000000000001c202200000000000000000000000000000000000000000000000000000000001c201900000000000000000000000000000000000000000000000000000000001c202300000000000000000000000000000000000000000000000000000000001c201a00000000000000000000000000000000000000000000000000000000001c202400000000000000000000000000000000000000000000000000000000001c201b00000000000000000000000000000000000000000000000000000000001c202500000000000000000000000000000000000000000000000000000000001c201c00000000000000000000000000000000000000000000000000000000001c202600000000000000000000000000000000000000000000000000000000001c201d00000000000000000000000000000000000000000000000000000000001c202700000000000000000000000000000000000000000000000000000000001c201e00000000000000000000000000000000000000000000000000000000001c202800000000000000000000000000000000000000000000000000000000001c201f00000000000000000000000000000000000000000000000000000000001c202900000000000000000000000000000000000000000000000000000000001c202000000000000000000000000000000000000000000000000000000000001c202a00000000000000000000000000000000000000000000000000000000001c202100000000000000000000000000000000000000000000000000000000001c202b00000000000000000000000000000000000000000000000000000000001c202200000000000000000000000000000000000000000000000000000000001c202c00000000000000000000000000000000000000000000000000000000001c202300000000000000000000000000000000000000000000000000000000001c202d00000000000000000000000000000000000000000000000000000000001c202400000000000000000000000000000000000000000000000000000000001c202e00000000000000000000000000000000000000000000000000000000001c202500000000000000000000000000000000000000000000000000000000001c202f00000000000000000000000000000000000000000000000000000000001c202600000000000000000000000000000000000000000000000000000000001c203000000000000000000000000000000000000000000000000000000000001c202700000000000000000000000000000000000000000000000000000000001c203100000000000000000000000000000000000000000000000000000000001c202800000000000000000000000000000000000000000000000000000000001c203200000000000000000000000000000000000000000000000000000000001c202900000000000000000000000000000000000000000000000000000000001c203300000000000000000000000000000000000000000000000000000000001c202a00000000000000000000000000000000000000000000000000000000001c203400000000000000000000000000000000000000000000000000000000001c202b00000000000000000000000000000000000000000000000000000000001c203500000000000000000000000000000000000000000000000000000000001c202c00000000000000000000000000000000000000000000000000000000001c203600000000000000000000000000000000000000000000000000000000001c202d00000000000000000000000000000000000000000000000000000000001c203700000000000000000000000000000000000000000000000000000000001c202e00000000000000000000000000000000000000000000000000000000001c203800000000000000000000000000000000000000000000000000000000001c202f00000000000000000000000000000000000000000000000000000000001c203900000000000000000000000000000000000000000000000000000000001c203000000000000000000000000000000000000000000000000000000000001c203a00000000000000000000000000000000000000000000000000000000001c203100000000000000000000000000000000000000000000000000000000001c203b00000000000000000000000000000000000000000000000000000000001c203200000000000000000000000000000000000000000000000000000000001c203c00000000000000000000000000000000000000000000000000000000001c203300000000000000000000000000000000000000000000000000000000001c203d00000000000000000000000000000000000000000000000000000000001c203400000000000000000000000000000000000000000000000000000000001c203e00000000000000000000000000000000000000000000000000000000001c203500000000000000000000000000000000000000000000000000000000001c203f00000000000000000000000000000000000000000000000000000000001c203600000000000000000000000000000000000000000000000000000000001c204000000000000000000000000000000000000000000000000000000000001c203700000000000000000000000000000000000000000000000000000000001c204100000000000000000000000000000000000000000000000000000000001c203800000000000000000000000000000000000000000000000000000000001c204200000000000000000000000000000000000000000000000000000000001c203900000000000000000000000000000000000000000000000000000000001c204300000000000000000000000000000000000000000000000000000000001c203a00000000000000000000000000000000000000000000000000000000001c204400000000000000000000000000000000000000000000000000000000001c203b00000000000000000000000000000000000000000000000000000000001c204500000000000000000000000000000000000000000000000000000000001c203c00000000000000000000000000000000000000000000000000000000001c204600000000000000000000000000000000000000000000000000000000001c203d00000000000000000000000000000000000000000000000000000000001c204700000000000000000000000000000000000000000000000000000000001c203e00000000000000000000000000000000000000000000000000000000001c204800000000000000000000000000000000000000000000000000000000001c203f00000000000000000000000000000000000000000000000000000000001c20492000000000000000000000000000000000000000000000000000000000001c170000000000000000000000000000000000000000000000000000000000001c170100000000000000000000000000000000000000000000000000000000001c170200000000000000000000000000000000000000000000000000000000001c170300000000000000000000000000000000000000000000000000000000001c170400000000000000000000000000000000000000000000000000000000001c170500000000000000000000000000000000000000000000000000000000001c170600000000000000000000000000000000000000000000000000000000001c170700000000000000000000000000000000000000000000000000000000001c170800000000000000000000000000000000000000000000000000000000001c170900000000000000000000000000000000000000000000000000000000001c170a00000000000000000000000000000000000000000000000000000000001c170b00000000000000000000000000000000000000000000000000000000001c170c00000000000000000000000000000000000000000000000000000000001c170d00000000000000000000000000000000000000000000000000000000001c170e00000000000000000000000000000000000000000000000000000000001c170f00000000000000000000000000000000000000000000000000000000001c171000000000000000000000000000000000000000000000000000000000001c171100000000000000000000000000000000000000000000000000000000001c170100000000000000000000000000000000000000000000000000000000001c170200000000000000000000000000000000000000000000000000000000001c170300000000000000000000000000000000000000000000000000000000001c170400000000000000000000000000000000000000000000000000000000001c170500000000000000000000000000000000000000000000000000000000001c170600000000000000000000000000000000000000000000000000000000001c170700000000000000000000000000000000000000000000000000000000001c170800000000000000000000000000000000000000000000000000000000001c170900000000000000000000000000000000000000000000000000000000001c170a00000000000000000000000000000000000000000000000000000000001c170b00000000000000000000000000000000000000000000000000000000001c170c00000000000000000000000000000000000000000000000000000000001c170d00000000000000000000000000000000000000000000000000000000001c170e00000000000000000000000000000000000000000000000000000000001c170f00000000000000000000000000000000000000000000000000000000001c171000000000000000000000000000000000000000000000000000000000001c171100000000000000000000000000000000000000000000000000000000001c171200000000000000000000000000000000000000000000000000000000001c170200000000000000000000000000000000000000000000000000000000001c170300000000000000000000000000000000000000000000000000000000001c170400000000000000000000000000000000000000000000000000000000001c170500000000000000000000000000000000000000000000000000000000001c170600000000000000000000000000000000000000000000000000000000001c170700000000000000000000000000000000000000000000000000000000001c170800000000000000000000000000000000000000000000000000000000001c170900000000000000000000000000000000000000000000000000000000001c170a00000000000000000000000000000000000000000000000000000000001c170b00000000000000000000000000000000000000000000000000000000001c170c00000000000000000000000000000000000000000000000000000000001c170d00000000000000000000000000000000000000000000000000000000001c170e00000000000000000000000000000000000000000000000000000000001c170f00000000000000000000000000000000000000000000000000000000001c171000000000000000000000000000000000000000000000000000000000001c171100000000000000000000000000000000000000000000000000000000001c171200000000000000000000000000000000000000000000000000000000001c171300000000000000000000000000000000000000000000000000000000001c170300000000000000000000000000000000000000000000000000000000001c170400000000000000000000000000000000000000000000000000000000001c170500000000000000000000000000000000000000000000000000000000001c170600000000000000000000000000000000000000000000000000000000001c170700000000000000000000000000000000000000000000000000000000001c170800000000000000000000000000000000000000000000000000000000001c170900000000000000000000000000000000000000000000000000000000001c170a00000000000000000000000000000000000000000000000000000000001c170b00000000000000000000000000000000000000000000000000000000001c170c00000000000000000000000000000000000000000000000000000000001c170d00000000000000000000000000000000000000000000000000000000001c170e00000000000000000000000000000000000000000000000000000000001c170f00000000000000000000000000000000000000000000000000000000001c171000000000000000000000000000000000000000000000000000000000001c171100000000000000000000000000000000000000000000000000000000001c171200000000000000000000000000000000000000000000000000000000001c171300000000000000000000000000000000000000000000000000000000001c171400000000000000000000000000000000000000000000000000000000001c170400000000000000000000000000000000000000000000000000000000001c170500000000000000000000000000000000000000000000000000000000001c170600000000000000000000000000000000000000000000000000000000001c170700000000000000000000000000000000000000000000000000000000001c170800000000000000000000000000000000000000000000000000000000001c170900000000000000000000000000000000000000000000000000000000001c170a00000000000000000000000000000000000000000000000000000000001c170b00000000000000000000000000000000000000000000000000000000001c170c00000000000000000000000000000000000000000000000000000000001c170d00000000000000000000000000000000000000000000000000000000001c170e00000000000000000000000000000000000000000000000000000000001c170f00000000000000000000000000000000000000000000000000000000001c171000000000000000000000000000000000000000000000000000000000001c171100000000000000000000000000000000000000000000000000000000001c171200000000000000000000000000000000000000000000000000000000001c171300000000000000000000000000000000000000000000000000000000001c171400000000000000000000000000000000000000000000000000000000001c171500000000000000000000000000000000000000000000000000000000001c170500000000000000000000000000000000000000000000000000000000001c170600000000000000000000000000000000000000000000000000000000001c170700000000000000000000000000000000000000000000000000000000001c170800000000000000000000000000000000000000000000000000000000001c170900000000000000000000000000000000000000000000000000000000001c170a00000000000000000000000000000000000000000000000000000000001c170b00000000000000000000000000000000000000000000000000000000001c170c00000000000000000000000000000000000000000000000000000000001c170d00000000000000000000000000000000000000000000000000000000001c170e00000000000000000000000000000000000000000000000000000000001c170f00000000000000000000000000000000000000000000000000000000001c171000000000000000000000000000000000000000000000000000000000001c171100000000000000000000000000000000000000000000000000000000001c171200000000000000000000000000000000000000000000000000000000001c171300000000000000000000000000000000000000000000000000000000001c171400000000000000000000000000000000000000000000000000000000001c171500000000000000000000000000000000000000000000000000000000001c171600000000000000000000000000000000000000000000000000000000001c170600000000000000000000000000000000000000000000000000000000001c170700000000000000000000000000000000000000000000000000000000001c170800000000000000000000000000000000000000000000000000000000001c170900000000000000000000000000000000000000000000000000000000001c170a00000000000000000000000000000000000000000000000000000000001c170b00000000000000000000000000000000000000000000000000000000001c170c00000000000000000000000000000000000000000000000000000000001c170d00000000000000000000000000000000000000000000000000000000001c170e00000000000000000000000000000000000000000000000000000000001c170f00000000000000000000000000000000000000000000000000000000001c171000000000000000000000000000000000000000000000000000000000001c171100000000000000000000000000000000000000000000000000000000001c171200000000000000000000000000000000000000000000000000000000001c171300000000000000000000000000000000000000000000000000000000001c171400000000000000000000000000000000000000000000000000000000001c171500000000000000000000000000000000000000000000000000000000001c171600000000000000000000000000000000000000000000000000000000001c171700000000000000000000000000000000000000000000000000000000001c170700000000000000000000000000000000000000000000000000000000001c170800000000000000000000000000000000000000000000000000000000001c170900000000000000000000000000000000000000000000000000000000001c170a00000000000000000000000000000000000000000000000000000000001c170b00000000000000000000000000000000000000000000000000000000001c170c00000000000000000000000000000000000000000000000000000000001c170d00000000000000000000000000000000000000000000000000000000001c170e00000000000000000000000000000000000000000000000000000000001c170f00000000000000000000000000000000000000000000000000000000001c171000000000000000000000000000000000000000000000000000000000001c171100000000000000000000000000000000000000000000000000000000001c171200000000000000000000000000000000000000000000000000000000001c171300000000000000000000000000000000000000000000000000000000001c171400000000000000000000000000000000000000000000000000000000001c171500000000000000000000000000000000000000000000000000000000001c171600000000000000000000000000000000000000000000000000000000001c171700000000000000000000000000000000000000000000000000000000001c171800000000000000000000000000000000000000000000000000000000001c170800000000000000000000000000000000000000000000000000000000001c170900000000000000000000000000000000000000000000000000000000001c170a00000000000000000000000000000000000000000000000000000000001c170b00000000000000000000000000000000000000000000000000000000001c170c00000000000000000000000000000000000000000000000000000000001c170d00000000000000000000000000000000000000000000000000000000001c170e00000000000000000000000000000000000000000000000000000000001c170f00000000000000000000000000000000000000000000000000000000001c171000000000000000000000000000000000000000000000000000000000001c171100000000000000000000000000000000000000000000000000000000001c171200000000000000000000000000000000000000000000000000000000001c171300000000000000000000000000000000000000000000000000000000001c171400000000000000000000000000000000000000000000000000000000001c171500000000000000000000000000000000000000000000000000000000001c171600000000000000000000000000000000000000000000000000000000001c171700000000000000000000000000000000000000000000000000000000001c171800000000000000000000000000000000000000000000000000000000001c171900000000000000000000000000000000000000000000000000000000001c170900000000000000000000000000000000000000000000000000000000001c170a00000000000000000000000000000000000000000000000000000000001c170b00000000000000000000000000000000000000000000000000000000001c170c00000000000000000000000000000000000000000000000000000000001c170d00000000000000000000000000000000000000000000000000000000001c170e00000000000000000000000000000000000000000000000000000000001c170f00000000000000000000000000000000000000000000000000000000001c171000000000000000000000000000000000000000000000000000000000001c171100000000000000000000000000000000000000000000000000000000001c171200000000000000000000000000000000000000000000000000000000001c171300000000000000000000000000000000000000000000000000000000001c171400000000000000000000000000000000000000000000000000000000001c171500000000000000000000000000000000000000000000000000000000001c171600000000000000000000000000000000000000000000000000000000001c171700000000000000000000000000000000000000000000000000000000001c171800000000000000000000000000000000000000000000000000000000001c171900000000000000000000000000000000000000000000000000000000001c171a00000000000000000000000000000000000000000000000000000000001c170a00000000000000000000000000000000000000000000000000000000001c170b00000000000000000000000000000000000000000000000000000000001c170c00000000000000000000000000000000000000000000000000000000001c170d00000000000000000000000000000000000000000000000000000000001c170e00000000000000000000000000000000000000000000000000000000001c170f00000000000000000000000000000000000000000000000000000000001c171000000000000000000000000000000000000000000000000000000000001c171100000000000000000000000000000000000000000000000000000000001c171200000000000000000000000000000000000000000000000000000000001c171300000000000000000000000000000000000000000000000000000000001c171400000000000000000000000000000000000000000000000000000000001c171500000000000000000000000000000000000000000000000000000000001c171600000000000000000000000000000000000000000000000000000000001c171700000000000000000000000000000000000000000000000000000000001c171800000000000000000000000000000000000000000000000000000000001c171900000000000000000000000000000000000000000000000000000000001c171a00000000000000000000000000000000000000000000000000000000001c171b00000000000000000000000000000000000000000000000000000000001c170b00000000000000000000000000000000000000000000000000000000001c170c00000000000000000000000000000000000000000000000000000000001c170d00000000000000000000000000000000000000000000000000000000001c170e00000000000000000000000000000000000000000000000000000000001c170f00000000000000000000000000000000000000000000000000000000001c171000000000000000000000000000000000000000000000000000000000001c171100000000000000000000000000000000000000000000000000000000001c171200000000000000000000000000000000000000000000000000000000001c171300000000000000000000000000000000000000000000000000000000001c171400000000000000000000000000000000000000000000000000000000001c171500000000000000000000000000000000000000000000000000000000001c171600000000000000000000000000000000000000000000000000000000001c171700000000000000000000000000000000000000000000000000000000001c171800000000000000000000000000000000000000000000000000000000001c171900000000000000000000000000000000000000000000000000000000001c171a00000000000000000000000000000000000000000000000000000000001c171b00000000000000000000000000000000000000000000000000000000001c171c00000000000000000000000000000000000000000000000000000000001c170c00000000000000000000000000000000000000000000000000000000001c170d00000000000000000000000000000000000000000000000000000000001c170e00000000000000000000000000000000000000000000000000000000001c170f00000000000000000000000000000000000000000000000000000000001c171000000000000000000000000000000000000000000000000000000000001c171100000000000000000000000000000000000000000000000000000000001c171200000000000000000000000000000000000000000000000000000000001c171300000000000000000000000000000000000000000000000000000000001c171400000000000000000000000000000000000000000000000000000000001c171500000000000000000000000000000000000000000000000000000000001c171600000000000000000000000000000000000000000000000000000000001c171700000000000000000000000000000000000000000000000000000000001c171800000000000000000000000000000000000000000000000000000000001c171900000000000000000000000000000000000000000000000000000000001c171a00000000000000000000000000000000000000000000000000000000001c171b00000000000000000000000000000000000000000000000000000000001c171c00000000000000000000000000000000000000000000000000000000001c171d00000000000000000000000000000000000000000000000000000000001c170d00000000000000000000000000000000000000000000000000000000001c170e00000000000000000000000000000000000000000000000000000000001c170f00000000000000000000000000000000000000000000000000000000001c171000000000000000000000000000000000000000000000000000000000001c171100000000000000000000000000000000000000000000000000000000001c171200000000000000000000000000000000000000000000000000000000001c171300000000000000000000000000000000000000000000000000000000001c171400000000000000000000000000000000000000000000000000000000001c171500000000000000000000000000000000000000000000000000000000001c171600000000000000000000000000000000000000000000000000000000001c171700000000000000000000000000000000000000000000000000000000001c171800000000000000000000000000000000000000000000000000000000001c171900000000000000000000000000000000000000000000000000000000001c171a00000000000000000000000000000000000000000000000000000000001c171b00000000000000000000000000000000000000000000000000000000001c171c00000000000000000000000000000000000000000000000000000000001c171d00000000000000000000000000000000000000000000000000000000001c171e00000000000000000000000000000000000000000000000000000000001c170e00000000000000000000000000000000000000000000000000000000001c170f00000000000000000000000000000000000000000000000000000000001c171000000000000000000000000000000000000000000000000000000000001c171100000000000000000000000000000000000000000000000000000000001c171200000000000000000000000000000000000000000000000000000000001c171300000000000000000000000000000000000000000000000000000000001c171400000000000000000000000000000000000000000000000000000000001c171500000000000000000000000000000000000000000000000000000000001c171600000000000000000000000000000000000000000000000000000000001c171700000000000000000000000000000000000000000000000000000000001c171800000000000000000000000000000000000000000000000000000000001c171900000000000000000000000000000000000000000000000000000000001c171a00000000000000000000000000000000000000000000000000000000001c171b00000000000000000000000000000000000000000000000000000000001c171c00000000000000000000000000000000000000000000000000000000001c171d00000000000000000000000000000000000000000000000000000000001c171e00000000000000000000000000000000000000000000000000000000001c171f00000000000000000000000000000000000000000000000000000000001c170f00000000000000000000000000000000000000000000000000000000001c171000000000000000000000000000000000000000000000000000000000001c171100000000000000000000000000000000000000000000000000000000001c171200000000000000000000000000000000000000000000000000000000001c171300000000000000000000000000000000000000000000000000000000001c171400000000000000000000000000000000000000000000000000000000001c171500000000000000000000000000000000000000000000000000000000001c171600000000000000000000000000000000000000000000000000000000001c171700000000000000000000000000000000000000000000000000000000001c171800000000000000000000000000000000000000000000000000000000001c171900000000000000000000000000000000000000000000000000000000001c171a00000000000000000000000000000000000000000000000000000000001c171b00000000000000000000000000000000000000000000000000000000001c171c00000000000000000000000000000000000000000000000000000000001c171d00000000000000000000000000000000000000000000000000000000001c171e00000000000000000000000000000000000000000000000000000000001c171f00000000000000000000000000000000000000000000000000000000001c172000000000000000000000000000000000000000000000000000000000001c171000000000000000000000000000000000000000000000000000000000001c171100000000000000000000000000000000000000000000000000000000001c171200000000000000000000000000000000000000000000000000000000001c171300000000000000000000000000000000000000000000000000000000001c171400000000000000000000000000000000000000000000000000000000001c171500000000000000000000000000000000000000000000000000000000001c171600000000000000000000000000000000000000000000000000000000001c171700000000000000000000000000000000000000000000000000000000001c171800000000000000000000000000000000000000000000000000000000001c171900000000000000000000000000000000000000000000000000000000001c171a00000000000000000000000000000000000000000000000000000000001c171b00000000000000000000000000000000000000000000000000000000001c171c00000000000000000000000000000000000000000000000000000000001c171d00000000000000000000000000000000000000000000000000000000001c171e00000000000000000000000000000000000000000000000000000000001c171f00000000000000000000000000000000000000000000000000000000001c172000000000000000000000000000000000000000000000000000000000001c172100000000000000000000000000000000000000000000000000000000001c171100000000000000000000000000000000000000000000000000000000001c171200000000000000000000000000000000000000000000000000000000001c171300000000000000000000000000000000000000000000000000000000001c171400000000000000000000000000000000000000000000000000000000001c171500000000000000000000000000000000000000000000000000000000001c171600000000000000000000000000000000000000000000000000000000001c171700000000000000000000000000000000000000000000000000000000001c171800000000000000000000000000000000000000000000000000000000001c171900000000000000000000000000000000000000000000000000000000001c171a00000000000000000000000000000000000000000000000000000000001c171b00000000000000000000000000000000000000000000000000000000001c171c00000000000000000000000000000000000000000000000000000000001c171d00000000000000000000000000000000000000000000000000000000001c171e00000000000000000000000000000000000000000000000000000000001c171f00000000000000000000000000000000000000000000000000000000001c172000000000000000000000000000000000000000000000000000000000001c172100000000000000000000000000000000000000000000000000000000001c172200000000000000000000000000000000000000000000000000000000001c171200000000000000000000000000000000000000000000000000000000001c171300000000000000000000000000000000000000000000000000000000001c171400000000000000000000000000000000000000000000000000000000001c171500000000000000000000000000000000000000000000000000000000001c171600000000000000000000000000000000000000000000000000000000001c171700000000000000000000000000000000000000000000000000000000001c171800000000000000000000000000000000000000000000000000000000001c171900000000000000000000000000000000000000000000000000000000001c171a00000000000000000000000000000000000000000000000000000000001c171b00000000000000000000000000000000000000000000000000000000001c171c00000000000000000000000000000000000000000000000000000000001c171d00000000000000000000000000000000000000000000000000000000001c171e00000000000000000000000000000000000000000000000000000000001c171f00000000000000000000000000000000000000000000000000000000001c172000000000000000000000000000000000000000000000000000000000001c172100000000000000000000000000000000000000000000000000000000001c172200000000000000000000000000000000000000000000000000000000001c172300000000000000000000000000000000000000000000000000000000001c171300000000000000000000000000000000000000000000000000000000001c171400000000000000000000000000000000000000000000000000000000001c171500000000000000000000000000000000000000000000000000000000001c171600000000000000000000000000000000000000000000000000000000001c171700000000000000000000000000000000000000000000000000000000001c171800000000000000000000000000000000000000000000000000000000001c171900000000000000000000000000000000000000000000000000000000001c171a00000000000000000000000000000000000000000000000000000000001c171b00000000000000000000000000000000000000000000000000000000001c171c00000000000000000000000000000000000000000000000000000000001c171d00000000000000000000000000000000000000000000000000000000001c171e00000000000000000000000000000000000000000000000000000000001c171f00000000000000000000000000000000000000000000000000000000001c172000000000000000000000000000000000000000000000000000000000001c172100000000000000000000000000000000000000000000000000000000001c172200000000000000000000000000000000000000000000000000000000001c172300000000000000000000000000000000000000000000000000000000001c172400000000000000000000000000000000000000000000000000000000001c171400000000000000000000000000000000000000000000000000000000001c171500000000000000000000000000000000000000000000000000000000001c171600000000000000000000000000000000000000000000000000000000001c171700000000000000000000000000000000000000000000000000000000001c171800000000000000000000000000000000000000000000000000000000001c171900000000000000000000000000000000000000000000000000000000001c171a00000000000000000000000000000000000000000000000000000000001c171b00000000000000000000000000000000000000000000000000000000001c171c00000000000000000000000000000000000000000000000000000000001c171d00000000000000000000000000000000000000000000000000000000001c171e00000000000000000000000000000000000000000000000000000000001c171f00000000000000000000000000000000000000000000000000000000001c172000000000000000000000000000000000000000000000000000000000001c172100000000000000000000000000000000000000000000000000000000001c172200000000000000000000000000000000000000000000000000000000001c172300000000000000000000000000000000000000000000000000000000001c172400000000000000000000000000000000000000000000000000000000001c172500000000000000000000000000000000000000000000000000000000001c171500000000000000000000000000000000000000000000000000000000001c171600000000000000000000000000000000000000000000000000000000001c171700000000000000000000000000000000000000000000000000000000001c171800000000000000000000000000000000000000000000000000000000001c171900000000000000000000000000000000000000000000000000000000001c171a00000000000000000000000000000000000000000000000000000000001c171b00000000000000000000000000000000000000000000000000000000001c171c00000000000000000000000000000000000000000000000000000000001c171d00000000000000000000000000000000000000000000000000000000001c171e00000000000000000000000000000000000000000000000000000000001c171f00000000000000000000000000000000000000000000000000000000001c172000000000000000000000000000000000000000000000000000000000001c172100000000000000000000000000000000000000000000000000000000001c172200000000000000000000000000000000000000000000000000000000001c172300000000000000000000000000000000000000000000000000000000001c172400000000000000000000000000000000000000000000000000000000001c172500000000000000000000000000000000000000000000000000000000001c172600000000000000000000000000000000000000000000000000000000001c171600000000000000000000000000000000000000000000000000000000001c171700000000000000000000000000000000000000000000000000000000001c171800000000000000000000000000000000000000000000000000000000001c171900000000000000000000000000000000000000000000000000000000001c171a00000000000000000000000000000000000000000000000000000000001c171b00000000000000000000000000000000000000000000000000000000001c171c00000000000000000000000000000000000000000000000000000000001c171d00000000000000000000000000000000000000000000000000000000001c171e00000000000000000000000000000000000000000000000000000000001c171f00000000000000000000000000000000000000000000000000000000001c172000000000000000000000000000000000000000000000000000000000001c172100000000000000000000000000000000000000000000000000000000001c172200000000000000000000000000000000000000000000000000000000001c172300000000000000000000000000000000000000000000000000000000001c172400000000000000000000000000000000000000000000000000000000001c172500000000000000000000000000000000000000000000000000000000001c172600000000000000000000000000000000000000000000000000000000001c172700000000000000000000000000000000000000000000000000000000001c171700000000000000000000000000000000000000000000000000000000001c171800000000000000000000000000000000000000000000000000000000001c171900000000000000000000000000000000000000000000000000000000001c171a00000000000000000000000000000000000000000000000000000000001c171b00000000000000000000000000000000000000000000000000000000001c171c00000000000000000000000000000000000000000000000000000000001c171d00000000000000000000000000000000000000000000000000000000001c171e00000000000000000000000000000000000000000000000000000000001c171f00000000000000000000000000000000000000000000000000000000001c172000000000000000000000000000000000000000000000000000000000001c172100000000000000000000000000000000000000000000000000000000001c172200000000000000000000000000000000000000000000000000000000001c172300000000000000000000000000000000000000000000000000000000001c172400000000000000000000000000000000000000000000000000000000001c172500000000000000000000000000000000000000000000000000000000001c172600000000000000000000000000000000000000000000000000000000001c172700000000000000000000000000000000000000000000000000000000001c172800000000000000000000000000000000000000000000000000000000001c171800000000000000000000000000000000000000000000000000000000001c171900000000000000000000000000000000000000000000000000000000001c171a00000000000000000000000000000000000000000000000000000000001c171b00000000000000000000000000000000000000000000000000000000001c171c00000000000000000000000000000000000000000000000000000000001c171d00000000000000000000000000000000000000000000000000000000001c171e00000000000000000000000000000000000000000000000000000000001c171f00000000000000000000000000000000000000000000000000000000001c172000000000000000000000000000000000000000000000000000000000001c172100000000000000000000000000000000000000000000000000000000001c172200000000000000000000000000000000000000000000000000000000001c172300000000000000000000000000000000000000000000000000000000001c172400000000000000000000000000000000000000000000000000000000001c172500000000000000000000000000000000000000000000000000000000001c172600000000000000000000000000000000000000000000000000000000001c172700000000000000000000000000000000000000000000000000000000001c172800000000000000000000000000000000000000000000000000000000001c172900000000000000000000000000000000000000000000000000000000001c171900000000000000000000000000000000000000000000000000000000001c171a00000000000000000000000000000000000000000000000000000000001c171b00000000000000000000000000000000000000000000000000000000001c171c00000000000000000000000000000000000000000000000000000000001c171d00000000000000000000000000000000000000000000000000000000001c171e00000000000000000000000000000000000000000000000000000000001c171f00000000000000000000000000000000000000000000000000000000001c172000000000000000000000000000000000000000000000000000000000001c172100000000000000000000000000000000000000000000000000000000001c172200000000000000000000000000000000000000000000000000000000001c172300000000000000000000000000000000000000000000000000000000001c172400000000000000000000000000000000000000000000000000000000001c172500000000000000000000000000000000000000000000000000000000001c172600000000000000000000000000000000000000000000000000000000001c172700000000000000000000000000000000000000000000000000000000001c172800000000000000000000000000000000000000000000000000000000001c172900000000000000000000000000000000000000000000000000000000001c172a00000000000000000000000000000000000000000000000000000000001c171a00000000000000000000000000000000000000000000000000000000001c171b00000000000000000000000000000000000000000000000000000000001c171c00000000000000000000000000000000000000000000000000000000001c171d00000000000000000000000000000000000000000000000000000000001c171e00000000000000000000000000000000000000000000000000000000001c171f00000000000000000000000000000000000000000000000000000000001c172000000000000000000000000000000000000000000000000000000000001c172100000000000000000000000000000000000000000000000000000000001c172200000000000000000000000000000000000000000000000000000000001c172300000000000000000000000000000000000000000000000000000000001c172400000000000000000000000000000000000000000000000000000000001c172500000000000000000000000000000000000000000000000000000000001c172600000000000000000000000000000000000000000000000000000000001c172700000000000000000000000000000000000000000000000000000000001c172800000000000000000000000000000000000000000000000000000000001c172900000000000000000000000000000000000000000000000000000000001c172a00000000000000000000000000000000000000000000000000000000001c172b00000000000000000000000000000000000000000000000000000000001c171b00000000000000000000000000000000000000000000000000000000001c171c00000000000000000000000000000000000000000000000000000000001c171d00000000000000000000000000000000000000000000000000000000001c171e00000000000000000000000000000000000000000000000000000000001c171f00000000000000000000000000000000000000000000000000000000001c172000000000000000000000000000000000000000000000000000000000001c172100000000000000000000000000000000000000000000000000000000001c172200000000000000000000000000000000000000000000000000000000001c172300000000000000000000000000000000000000000000000000000000001c172400000000000000000000000000000000000000000000000000000000001c172500000000000000000000000000000000000000000000000000000000001c172600000000000000000000000000000000000000000000000000000000001c172700000000000000000000000000000000000000000000000000000000001c172800000000000000000000000000000000000000000000000000000000001c172900000000000000000000000000000000000000000000000000000000001c172a00000000000000000000000000000000000000000000000000000000001c172b00000000000000000000000000000000000000000000000000000000001c172c00000000000000000000000000000000000000000000000000000000001c171c00000000000000000000000000000000000000000000000000000000001c171d00000000000000000000000000000000000000000000000000000000001c171e00000000000000000000000000000000000000000000000000000000001c171f00000000000000000000000000000000000000000000000000000000001c172000000000000000000000000000000000000000000000000000000000001c172100000000000000000000000000000000000000000000000000000000001c172200000000000000000000000000000000000000000000000000000000001c172300000000000000000000000000000000000000000000000000000000001c172400000000000000000000000000000000000000000000000000000000001c172500000000000000000000000000000000000000000000000000000000001c172600000000000000000000000000000000000000000000000000000000001c172700000000000000000000000000000000000000000000000000000000001c172800000000000000000000000000000000000000000000000000000000001c172900000000000000000000000000000000000000000000000000000000001c172a00000000000000000000000000000000000000000000000000000000001c172b00000000000000000000000000000000000000000000000000000000001c172c00000000000000000000000000000000000000000000000000000000001c172d00000000000000000000000000000000000000000000000000000000001c171d00000000000000000000000000000000000000000000000000000000001c171e00000000000000000000000000000000000000000000000000000000001c171f00000000000000000000000000000000000000000000000000000000001c172000000000000000000000000000000000000000000000000000000000001c172100000000000000000000000000000000000000000000000000000000001c172200000000000000000000000000000000000000000000000000000000001c172300000000000000000000000000000000000000000000000000000000001c172400000000000000000000000000000000000000000000000000000000001c172500000000000000000000000000000000000000000000000000000000001c172600000000000000000000000000000000000000000000000000000000001c172700000000000000000000000000000000000000000000000000000000001c172800000000000000000000000000000000000000000000000000000000001c172900000000000000000000000000000000000000000000000000000000001c172a00000000000000000000000000000000000000000000000000000000001c172b00000000000000000000000000000000000000000000000000000000001c172c00000000000000000000000000000000000000000000000000000000001c172d00000000000000000000000000000000000000000000000000000000001c172e00000000000000000000000000000000000000000000000000000000001c171e00000000000000000000000000000000000000000000000000000000001c171f00000000000000000000000000000000000000000000000000000000001c172000000000000000000000000000000000000000000000000000000000001c172100000000000000000000000000000000000000000000000000000000001c172200000000000000000000000000000000000000000000000000000000001c172300000000000000000000000000000000000000000000000000000000001c172400000000000000000000000000000000000000000000000000000000001c172500000000000000000000000000000000000000000000000000000000001c172600000000000000000000000000000000000000000000000000000000001c172700000000000000000000000000000000000000000000000000000000001c172800000000000000000000000000000000000000000000000000000000001c172900000000000000000000000000000000000000000000000000000000001c172a00000000000000000000000000000000000000000000000000000000001c172b00000000000000000000000000000000000000000000000000000000001c172c00000000000000000000000000000000000000000000000000000000001c172d00000000000000000000000000000000000000000000000000000000001c172e00000000000000000000000000000000000000000000000000000000001c172f00000000000000000000000000000000000000000000000000000000001c171f00000000000000000000000000000000000000000000000000000000001c172000000000000000000000000000000000000000000000000000000000001c172100000000000000000000000000000000000000000000000000000000001c172200000000000000000000000000000000000000000000000000000000001c172300000000000000000000000000000000000000000000000000000000001c172400000000000000000000000000000000000000000000000000000000001c172500000000000000000000000000000000000000000000000000000000001c172600000000000000000000000000000000000000000000000000000000001c172700000000000000000000000000000000000000000000000000000000001c172800000000000000000000000000000000000000000000000000000000001c172900000000000000000000000000000000000000000000000000000000001c172a00000000000000000000000000000000000000000000000000000000001c172b00000000000000000000000000000000000000000000000000000000001c172c00000000000000000000000000000000000000000000000000000000001c172d00000000000000000000000000000000000000000000000000000000001c172e00000000000000000000000000000000000000000000000000000000001c172f00000000000000000000000000000000000000000000000000000000001c1730000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000201000000000000000000000000000000000000000000000000000000000000020100100000000000000000000000000000000000000000000000000000000002010020000000000000000000000000000000000000000000000000000000000201003000000000000000000000000000000000000000000000000000000000020100400000000000000000000000000000000000000000000000000000000002010050000000000000000000000000000000000000000000000000000000000201006000000000000000000000000000000000000000000000000000000000020100700000000000000000000000000000000000000000000000000000000002010080000000000000000000000000000000000000000000000000000000000201009000000000000000000000000000000000000000000000000000000000020100a000000000000000000000000000000000000000000000000000000000020100b000000000000000000000000000000000000000000000000000000000020100c000000000000000000000000000000000000000000000000000000000020100d000000000000000000000000000000000000000000000000000000000020100e000000000000000000000000000000000000000000000000000000000020100f0000000000000000000000000000000000000000000000000000000000201010000000000000000000000000000000000000000000000000000000000020101100000000000000000000000000000000000000000000000000000000002010120000000000000000000000000000000000000000000000000000000000201013000000000000000000000000000000000000000000000000000000000020101400000000000000000000000000000000000000000000000000000000002010150000000000000000000000000000000000000000000000000000000000201016000000000000000000000000000000000000000000000000000000000020101700000000000000000000000000000000000000000000000000000000002010180000000000000000000000000000000000000000000000000000000000201019000000000000000000000000000000000000000000000000000000000020101a000000000000000000000000000000000000000000000000000000000020101b000000000000000000000000000000000000000000000000000000000020101c000000000000000000000000000000000000000000000000000000000020101d000000000000000000000000000000000000000000000000000000000020101e000000000000000000000000000000000000000000000000000000000020101f0000000000000000000000000000000000000000000000000000000000201020000000000000000000000000000000000000000000000000000000000020102100000000000000000000000000000000000000000000000000000000002010220000000000000000000000000000000000000000000000000000000000201023000000000000000000000000000000000000000000000000000000000020102400000000000000000000000000000000000000000000000000000000002010250000000000000000000000000000000000000000000000000000000000201026000000000000000000000000000000000000000000000000000000000020102700000000000000000000000000000000000000000000000000000000002010280000000000000000000000000000000000000000000000000000000000201029000000000000000000000000000000000000000000000000000000000020102a000000000000000000000000000000000000000000000000000000000020102b000000000000000000000000000000000000000000000000000000000020102c000000000000000000000000000000000000000000000000000000000020102d000000000000000000000000000000000000000000000000000000000020102e000000000000000000000000000000000000000000000000000000000020102f0000000000000000000000000000000000000000000000000000000000201030000000000000000000000000000000000000000000000000000000000020103100000000000000000000000000000000000000000000000000000000002010320000000000000000000000000000000000000000000000000000000000201033000000000000000000000000000000000000000000000000000000000020103400000000000000000000000000000000000000000000000000000000002010350000000000000000000000000000000000000000000000000000000000201036000000000000000000000000000000000000000000000000000000000020103700000000000000000000000000000000000000000000000000000000002010380000000000000000000000000000000000000000000000000000000000201039000000000000000000000000000000000000000000000000000000000020103a000000000000000000000000000000000000000000000000000000000020103b000000000000000000000000000000000000000000000000000000000020103c000000000000000000000000000000000000000000000000000000000020103d000000000000000000000000000000000000000000000000000000000020103e000000000000000000000000000000000000000000000000000000000020103f4000000000000000000000000000000000000000000000000000000000002000010000000000000000000000000000000000000000000000000000000000201100000000000000000000000000000000000000000000000000000000000020110100000000000000000000000000000000000000000000000000000000002011020000000000000000000000000000000000000000000000000000000000201103000000000000000000000000000000000000000000000000000000000020110400000000000000000000000000000000000000000000000000000000002011050000000000000000000000000000000000000000000000000000000000201106000000000000000000000000000000000000000000000000000000000020110700000000000000000000000000000000000000000000000000000000002011080000000000000000000000000000000000000000000000000000000000201109000000000000000000000000000000000000000000000000000000000020110a000000000000000000000000000000000000000000000000000000000020110b000000000000000000000000000000000000000000000000000000000020110c000000000000000000000000000000000000000000000000000000000020110d000000000000000000000000000000000000000000000000000000000020110e000000000000000000000000000000000000000000000000000000000020110f0000000000000000000000000000000000000000000000000000000000201110000000000000000000000000000000000000000000000000000000000020111100000000000000000000000000000000000000000000000000000000002011120000000000000000000000000000000000000000000000000000000000201113000000000000000000000000000000000000000000000000000000000020111400000000000000000000000000000000000000000000000000000000002011150000000000000000000000000000000000000000000000000000000000201116000000000000000000000000000000000000000000000000000000000020111700000000000000000000000000000000000000000000000000000000002011180000000000000000000000000000000000000000000000000000000000201119000000000000000000000000000000000000000000000000000000000020111a000000000000000000000000000000000000000000000000000000000020111b000000000000000000000000000000000000000000000000000000000020111c000000000000000000000000000000000000000000000000000000000020111d000000000000000000000000000000000000000000000000000000000020111e000000000000000000000000000000000000000000000000000000000020111f0000000000000000000000000000000000000000000000000000000000201120000000000000000000000000000000000000000000000000000000000020112100000000000000000000000000000000000000000000000000000000002011220000000000000000000000000000000000000000000000000000000000201123000000000000000000000000000000000000000000000000000000000020112400000000000000000000000000000000000000000000000000000000002011250000000000000000000000000000000000000000000000000000000000201126000000000000000000000000000000000000000000000000000000000020112700000000000000000000000000000000000000000000000000000000002011280000000000000000000000000000000000000000000000000000000000201129000000000000000000000000000000000000000000000000000000000020112a000000000000000000000000000000000000000000000000000000000020112b000000000000000000000000000000000000000000000000000000000020112c000000000000000000000000000000000000000000000000000000000020112d000000000000000000000000000000000000000000000000000000000020112e000000000000000000000000000000000000000000000000000000000020112f0000000000000000000000000000000000000000000000000000000000201130000000000000000000000000000000000000000000000000000000000020113100000000000000000000000000000000000000000000000000000000002011320000000000000000000000000000000000000000000000000000000000201133000000000000000000000000000000000000000000000000000000000020113400000000000000000000000000000000000000000000000000000000002011350000000000000000000000000000000000000000000000000000000000201136000000000000000000000000000000000000000000000000000000000020113700000000000000000000000000000000000000000000000000000000002011380000000000000000000000000000000000000000000000000000000000201139000000000000000000000000000000000000000000000000000000000020113a000000000000000000000000000000000000000000000000000000000020113b000000000000000000000000000000000000000000000000000000000020113c000000000000000000000000000000000000000000000000000000000020113d000000000000000000000000000000000000000000000000000000000020113e0800e9805e8a4faa87fc419af08a6d956f18976c46ea694bbd4cf6946e6d02033200e0925a6b172b4b01bb76eb1d3f7dd2ced118bca70d223a6d61afa1b75915ae00383590492d2f99a0283d1de57015b4b6b0759a8023af2c68fb4929dee2f303007ed57100dd77e2b6405f780503ef61b7b53e13f344b6e6a6eff3e3c13de0d0001ab1b0c348c46184dbc86ff79f248e7da1b09d3f9c6a986e98fe45389f060d0023d134bc68d7efa25e255001069827dc0bee766c08c988d6300071ed27fe6c0031cbb780b07f632cbaf767dc80608cc0a8e1d1df3ecd6f5d8bc0ca6703e4f4002c7dc9e731fc5f6456b2a70b4e636ac17d5e0cd36d3a591116a9e124f73586400000000000000000000000000000000000000000000000000000000000202000000000000000000000000000000000000000000000000000000000000020200a0000000000000000000000000000000000000000000000000000000000202001000000000000000000000000000000000000000000000000000000000020200b0000000000000000000000000000000000000000000000000000000000202002000000000000000000000000000000000000000000000000000000000020200c0000000000000000000000000000000000000000000000000000000000202003000000000000000000000000000000000000000000000000000000000020200d0000000000000000000000000000000000000000000000000000000000202004000000000000000000000000000000000000000000000000000000000020200e0000000000000000000000000000000000000000000000000000000000202005000000000000000000000000000000000000000000000000000000000020200f00000000000000000000000000000000000000000000000000000000002020060000000000000000000000000000000000000000000000000000000000202010000000000000000000000000000000000000000000000000000000000020200700000000000000000000000000000000000000000000000000000000002020110000000000000000000000000000000000000000000000000000000000202008000000000000000000000000000000000000000000000000000000000020201200000000000000000000000000000000000000000000000000000000002020090000000000000000000000000000000000000000000000000000000000202013000000000000000000000000000000000000000000000000000000000020200a0000000000000000000000000000000000000000000000000000000000202014000000000000000000000000000000000000000000000000000000000020200b0000000000000000000000000000000000000000000000000000000000202015000000000000000000000000000000000000000000000000000000000020200c0000000000000000000000000000000000000000000000000000000000202016000000000000000000000000000000000000000000000000000000000020200d0000000000000000000000000000000000000000000000000000000000202017000000000000000000000000000000000000000000000000000000000020200e0000000000000000000000000000000000000000000000000000000000202018000000000000000000000000000000000000000000000000000000000020200f00000000000000000000000000000000000000000000000000000000002020190000000000000000000000000000000000000000000000000000000000202010000000000000000000000000000000000000000000000000000000000020201a0000000000000000000000000000000000000000000000000000000000202011000000000000000000000000000000000000000000000000000000000020201b0000000000000000000000000000000000000000000000000000000000202012000000000000000000000000000000000000000000000000000000000020201c0000000000000000000000000000000000000000000000000000000000202013000000000000000000000000000000000000000000000000000000000020201d0000000000000000000000000000000000000000000000000000000000202014000000000000000000000000000000000000000000000000000000000020201e0000000000000000000000000000000000000000000000000000000000202015000000000000000000000000000000000000000000000000000000000020201f00000000000000000000000000000000000000000000000000000000002020160000000000000000000000000000000000000000000000000000000000202020000000000000000000000000000000000000000000000000000000000020201700000000000000000000000000000000000000000000000000000000002020210000000000000000000000000000000000000000000000000000000000202018000000000000000000000000000000000000000000000000000000000020202200000000000000000000000000000000000000000000000000000000002020190000000000000000000000000000000000000000000000000000000000202023000000000000000000000000000000000000000000000000000000000020201a0000000000000000000000000000000000000000000000000000000000202024000000000000000000000000000000000000000000000000000000000020201b0000000000000000000000000000000000000000000000000000000000202025000000000000000000000000000000000000000000000000000000000020201c0000000000000000000000000000000000000000000000000000000000202026000000000000000000000000000000000000000000000000000000000020201d0000000000000000000000000000000000000000000000000000000000202027000000000000000000000000000000000000000000000000000000000020201e0000000000000000000000000000000000000000000000000000000000202028000000000000000000000000000000000000000000000000000000000020201f00000000000000000000000000000000000000000000000000000000002020290000000000000000000000000000000000000000000000000000000000202020000000000000000000000000000000000000000000000000000000000020202a0000000000000000000000000000000000000000000000000000000000202021000000000000000000000000000000000000000000000000000000000020202b0000000000000000000000000000000000000000000000000000000000202022000000000000000000000000000000000000000000000000000000000020202c0000000000000000000000000000000000000000000000000000000000202023000000000000000000000000000000000000000000000000000000000020202d0000000000000000000000000000000000000000000000000000000000202024000000000000000000000000000000000000000000000000000000000020202e0000000000000000000000000000000000000000000000000000000000202025000000000000000000000000000000000000000000000000000000000020202f00000000000000000000000000000000000000000000000000000000002020260000000000000000000000000000000000000000000000000000000000202030000000000000000000000000000000000000000000000000000000000020202700000000000000000000000000000000000000000000000000000000002020310000000000000000000000000000000000000000000000000000000000202028000000000000000000000000000000000000000000000000000000000020203200000000000000000000000000000000000000000000000000000000002020290000000000000000000000000000000000000000000000000000000000202033000000000000000000000000000000000000000000000000000000000020202a0000000000000000000000000000000000000000000000000000000000202034000000000000000000000000000000000000000000000000000000000020202b0000000000000000000000000000000000000000000000000000000000202035000000000000000000000000000000000000000000000000000000000020202c0000000000000000000000000000000000000000000000000000000000202036000000000000000000000000000000000000000000000000000000000020202d0000000000000000000000000000000000000000000000000000000000202037000000000000000000000000000000000000000000000000000000000020202e0000000000000000000000000000000000000000000000000000000000202038000000000000000000000000000000000000000000000000000000000020202f00000000000000000000000000000000000000000000000000000000002020390000000000000000000000000000000000000000000000000000000000202030000000000000000000000000000000000000000000000000000000000020203a0000000000000000000000000000000000000000000000000000000000202031000000000000000000000000000000000000000000000000000000000020203b0000000000000000000000000000000000000000000000000000000000202032000000000000000000000000000000000000000000000000000000000020203c0000000000000000000000000000000000000000000000000000000000202033000000000000000000000000000000000000000000000000000000000020203d0000000000000000000000000000000000000000000000000000000000202034000000000000000000000000000000000000000000000000000000000020203e0000000000000000000000000000000000000000000000000000000000202035000000000000000000000000000000000000000000000000000000000020203f00000000000000000000000000000000000000000000000000000000002020360000000000000000000000000000000000000000000000000000000000202040000000000000000000000000000000000000000000000000000000000020203700000000000000000000000000000000000000000000000000000000002020410000000000000000000000000000000000000000000000000000000000202038000000000000000000000000000000000000000000000000000000000020204200000000000000000000000000000000000000000000000000000000002020390000000000000000000000000000000000000000000000000000000000202043000000000000000000000000000000000000000000000000000000000020203a0000000000000000000000000000000000000000000000000000000000202044000000000000000000000000000000000000000000000000000000000020203b0000000000000000000000000000000000000000000000000000000000202045000000000000000000000000000000000000000000000000000000000020203c0000000000000000000000000000000000000000000000000000000000202046000000000000000000000000000000000000000000000000000000000020203d0000000000000000000000000000000000000000000000000000000000202047000000000000000000000000000000000000000000000000000000000020203e0000000000000000000000000000000000000000000000000000000000202048000000000000000000000000000000000000000000000000000000000020203f0000000000000000000000000000000000000000000000000000000000202049200000000000000000000000000000000000000000000000000000000000201700000000000000000000000000000000000000000000000000000000000020170100000000000000000000000000000000000000000000000000000000002017020000000000000000000000000000000000000000000000000000000000201703000000000000000000000000000000000000000000000000000000000020170400000000000000000000000000000000000000000000000000000000002017050000000000000000000000000000000000000000000000000000000000201706000000000000000000000000000000000000000000000000000000000020170700000000000000000000000000000000000000000000000000000000002017080000000000000000000000000000000000000000000000000000000000201709000000000000000000000000000000000000000000000000000000000020170a000000000000000000000000000000000000000000000000000000000020170b000000000000000000000000000000000000000000000000000000000020170c000000000000000000000000000000000000000000000000000000000020170d000000000000000000000000000000000000000000000000000000000020170e000000000000000000000000000000000000000000000000000000000020170f00000000000000000000000000000000000000000000000000000000002017100000000000000000000000000000000000000000000000000000000000201711000000000000000000000000000000000000000000000000000000000020170100000000000000000000000000000000000000000000000000000000002017020000000000000000000000000000000000000000000000000000000000201703000000000000000000000000000000000000000000000000000000000020170400000000000000000000000000000000000000000000000000000000002017050000000000000000000000000000000000000000000000000000000000201706000000000000000000000000000000000000000000000000000000000020170700000000000000000000000000000000000000000000000000000000002017080000000000000000000000000000000000000000000000000000000000201709000000000000000000000000000000000000000000000000000000000020170a000000000000000000000000000000000000000000000000000000000020170b000000000000000000000000000000000000000000000000000000000020170c000000000000000000000000000000000000000000000000000000000020170d000000000000000000000000000000000000000000000000000000000020170e000000000000000000000000000000000000000000000000000000000020170f00000000000000000000000000000000000000000000000000000000002017100000000000000000000000000000000000000000000000000000000000201711000000000000000000000000000000000000000000000000000000000020171200000000000000000000000000000000000000000000000000000000002017020000000000000000000000000000000000000000000000000000000000201703000000000000000000000000000000000000000000000000000000000020170400000000000000000000000000000000000000000000000000000000002017050000000000000000000000000000000000000000000000000000000000201706000000000000000000000000000000000000000000000000000000000020170700000000000000000000000000000000000000000000000000000000002017080000000000000000000000000000000000000000000000000000000000201709000000000000000000000000000000000000000000000000000000000020170a000000000000000000000000000000000000000000000000000000000020170b000000000000000000000000000000000000000000000000000000000020170c000000000000000000000000000000000000000000000000000000000020170d000000000000000000000000000000000000000000000000000000000020170e000000000000000000000000000000000000000000000000000000000020170f00000000000000000000000000000000000000000000000000000000002017100000000000000000000000000000000000000000000000000000000000201711000000000000000000000000000000000000000000000000000000000020171200000000000000000000000000000000000000000000000000000000002017130000000000000000000000000000000000000000000000000000000000201703000000000000000000000000000000000000000000000000000000000020170400000000000000000000000000000000000000000000000000000000002017050000000000000000000000000000000000000000000000000000000000201706000000000000000000000000000000000000000000000000000000000020170700000000000000000000000000000000000000000000000000000000002017080000000000000000000000000000000000000000000000000000000000201709000000000000000000000000000000000000000000000000000000000020170a000000000000000000000000000000000000000000000000000000000020170b000000000000000000000000000000000000000000000000000000000020170c000000000000000000000000000000000000000000000000000000000020170d000000000000000000000000000000000000000000000000000000000020170e000000000000000000000000000000000000000000000000000000000020170f00000000000000000000000000000000000000000000000000000000002017100000000000000000000000000000000000000000000000000000000000201711000000000000000000000000000000000000000000000000000000000020171200000000000000000000000000000000000000000000000000000000002017130000000000000000000000000000000000000000000000000000000000201714000000000000000000000000000000000000000000000000000000000020170400000000000000000000000000000000000000000000000000000000002017050000000000000000000000000000000000000000000000000000000000201706000000000000000000000000000000000000000000000000000000000020170700000000000000000000000000000000000000000000000000000000002017080000000000000000000000000000000000000000000000000000000000201709000000000000000000000000000000000000000000000000000000000020170a000000000000000000000000000000000000000000000000000000000020170b000000000000000000000000000000000000000000000000000000000020170c000000000000000000000000000000000000000000000000000000000020170d000000000000000000000000000000000000000000000000000000000020170e000000000000000000000000000000000000000000000000000000000020170f00000000000000000000000000000000000000000000000000000000002017100000000000000000000000000000000000000000000000000000000000201711000000000000000000000000000000000000000000000000000000000020171200000000000000000000000000000000000000000000000000000000002017130000000000000000000000000000000000000000000000000000000000201714000000000000000000000000000000000000000000000000000000000020171500000000000000000000000000000000000000000000000000000000002017050000000000000000000000000000000000000000000000000000000000201706000000000000000000000000000000000000000000000000000000000020170700000000000000000000000000000000000000000000000000000000002017080000000000000000000000000000000000000000000000000000000000201709000000000000000000000000000000000000000000000000000000000020170a000000000000000000000000000000000000000000000000000000000020170b000000000000000000000000000000000000000000000000000000000020170c000000000000000000000000000000000000000000000000000000000020170d000000000000000000000000000000000000000000000000000000000020170e000000000000000000000000000000000000000000000000000000000020170f00000000000000000000000000000000000000000000000000000000002017100000000000000000000000000000000000000000000000000000000000201711000000000000000000000000000000000000000000000000000000000020171200000000000000000000000000000000000000000000000000000000002017130000000000000000000000000000000000000000000000000000000000201714000000000000000000000000000000000000000000000000000000000020171500000000000000000000000000000000000000000000000000000000002017160000000000000000000000000000000000000000000000000000000000201706000000000000000000000000000000000000000000000000000000000020170700000000000000000000000000000000000000000000000000000000002017080000000000000000000000000000000000000000000000000000000000201709000000000000000000000000000000000000000000000000000000000020170a000000000000000000000000000000000000000000000000000000000020170b000000000000000000000000000000000000000000000000000000000020170c000000000000000000000000000000000000000000000000000000000020170d000000000000000000000000000000000000000000000000000000000020170e000000000000000000000000000000000000000000000000000000000020170f00000000000000000000000000000000000000000000000000000000002017100000000000000000000000000000000000000000000000000000000000201711000000000000000000000000000000000000000000000000000000000020171200000000000000000000000000000000000000000000000000000000002017130000000000000000000000000000000000000000000000000000000000201714000000000000000000000000000000000000000000000000000000000020171500000000000000000000000000000000000000000000000000000000002017160000000000000000000000000000000000000000000000000000000000201717000000000000000000000000000000000000000000000000000000000020170700000000000000000000000000000000000000000000000000000000002017080000000000000000000000000000000000000000000000000000000000201709000000000000000000000000000000000000000000000000000000000020170a000000000000000000000000000000000000000000000000000000000020170b000000000000000000000000000000000000000000000000000000000020170c000000000000000000000000000000000000000000000000000000000020170d000000000000000000000000000000000000000000000000000000000020170e000000000000000000000000000000000000000000000000000000000020170f00000000000000000000000000000000000000000000000000000000002017100000000000000000000000000000000000000000000000000000000000201711000000000000000000000000000000000000000000000000000000000020171200000000000000000000000000000000000000000000000000000000002017130000000000000000000000000000000000000000000000000000000000201714000000000000000000000000000000000000000000000000000000000020171500000000000000000000000000000000000000000000000000000000002017160000000000000000000000000000000000000000000000000000000000201717000000000000000000000000000000000000000000000000000000000020171800000000000000000000000000000000000000000000000000000000002017080000000000000000000000000000000000000000000000000000000000201709000000000000000000000000000000000000000000000000000000000020170a000000000000000000000000000000000000000000000000000000000020170b000000000000000000000000000000000000000000000000000000000020170c000000000000000000000000000000000000000000000000000000000020170d000000000000000000000000000000000000000000000000000000000020170e000000000000000000000000000000000000000000000000000000000020170f00000000000000000000000000000000000000000000000000000000002017100000000000000000000000000000000000000000000000000000000000201711000000000000000000000000000000000000000000000000000000000020171200000000000000000000000000000000000000000000000000000000002017130000000000000000000000000000000000000000000000000000000000201714000000000000000000000000000000000000000000000000000000000020171500000000000000000000000000000000000000000000000000000000002017160000000000000000000000000000000000000000000000000000000000201717000000000000000000000000000000000000000000000000000000000020171800000000000000000000000000000000000000000000000000000000002017190000000000000000000000000000000000000000000000000000000000201709000000000000000000000000000000000000000000000000000000000020170a000000000000000000000000000000000000000000000000000000000020170b000000000000000000000000000000000000000000000000000000000020170c000000000000000000000000000000000000000000000000000000000020170d000000000000000000000000000000000000000000000000000000000020170e000000000000000000000000000000000000000000000000000000000020170f0000000000000000000000000000000000000000000000000000000000201710000000000000000000000000000000000000000000000000000000000020171100000000000000000000000000000000000000000000000000000000002017120000000000000000000000000000000000000000000000000000000000201713000000000000000000000000000000000000000000000000000000000020171400000000000000000000000000000000000000000000000000000000002017150000000000000000000000000000000000000000000000000000000000201716000000000000000000000000000000000000000000000000000000000020171700000000000000000000000000000000000000000000000000000000002017180000000000000000000000000000000000000000000000000000000000201719000000000000000000000000000000000000000000000000000000000020171a000000000000000000000000000000000000000000000000000000000020170a000000000000000000000000000000000000000000000000000000000020170b000000000000000000000000000000000000000000000000000000000020170c000000000000000000000000000000000000000000000000000000000020170d000000000000000000000000000000000000000000000000000000000020170e000000000000000000000000000000000000000000000000000000000020170f0000000000000000000000000000000000000000000000000000000000201710000000000000000000000000000000000000000000000000000000000020171100000000000000000000000000000000000000000000000000000000002017120000000000000000000000000000000000000000000000000000000000201713000000000000000000000000000000000000000000000000000000000020171400000000000000000000000000000000000000000000000000000000002017150000000000000000000000000000000000000000000000000000000000201716000000000000000000000000000000000000000000000000000000000020171700000000000000000000000000000000000000000000000000000000002017180000000000000000000000000000000000000000000000000000000000201719000000000000000000000000000000000000000000000000000000000020171a000000000000000000000000000000000000000000000000000000000020171b000000000000000000000000000000000000000000000000000000000020170b000000000000000000000000000000000000000000000000000000000020170c000000000000000000000000000000000000000000000000000000000020170d000000000000000000000000000000000000000000000000000000000020170e000000000000000000000000000000000000000000000000000000000020170f0000000000000000000000000000000000000000000000000000000000201710000000000000000000000000000000000000000000000000000000000020171100000000000000000000000000000000000000000000000000000000002017120000000000000000000000000000000000000000000000000000000000201713000000000000000000000000000000000000000000000000000000000020171400000000000000000000000000000000000000000000000000000000002017150000000000000000000000000000000000000000000000000000000000201716000000000000000000000000000000000000000000000000000000000020171700000000000000000000000000000000000000000000000000000000002017180000000000000000000000000000000000000000000000000000000000201719000000000000000000000000000000000000000000000000000000000020171a000000000000000000000000000000000000000000000000000000000020171b000000000000000000000000000000000000000000000000000000000020171c000000000000000000000000000000000000000000000000000000000020170c000000000000000000000000000000000000000000000000000000000020170d000000000000000000000000000000000000000000000000000000000020170e000000000000000000000000000000000000000000000000000000000020170f0000000000000000000000000000000000000000000000000000000000201710000000000000000000000000000000000000000000000000000000000020171100000000000000000000000000000000000000000000000000000000002017120000000000000000000000000000000000000000000000000000000000201713000000000000000000000000000000000000000000000000000000000020171400000000000000000000000000000000000000000000000000000000002017150000000000000000000000000000000000000000000000000000000000201716000000000000000000000000000000000000000000000000000000000020171700000000000000000000000000000000000000000000000000000000002017180000000000000000000000000000000000000000000000000000000000201719000000000000000000000000000000000000000000000000000000000020171a000000000000000000000000000000000000000000000000000000000020171b000000000000000000000000000000000000000000000000000000000020171c000000000000000000000000000000000000000000000000000000000020171d000000000000000000000000000000000000000000000000000000000020170d000000000000000000000000000000000000000000000000000000000020170e000000000000000000000000000000000000000000000000000000000020170f0000000000000000000000000000000000000000000000000000000000201710000000000000000000000000000000000000000000000000000000000020171100000000000000000000000000000000000000000000000000000000002017120000000000000000000000000000000000000000000000000000000000201713000000000000000000000000000000000000000000000000000000000020171400000000000000000000000000000000000000000000000000000000002017150000000000000000000000000000000000000000000000000000000000201716000000000000000000000000000000000000000000000000000000000020171700000000000000000000000000000000000000000000000000000000002017180000000000000000000000000000000000000000000000000000000000201719000000000000000000000000000000000000000000000000000000000020171a000000000000000000000000000000000000000000000000000000000020171b000000000000000000000000000000000000000000000000000000000020171c000000000000000000000000000000000000000000000000000000000020171d000000000000000000000000000000000000000000000000000000000020171e000000000000000000000000000000000000000000000000000000000020170e000000000000000000000000000000000000000000000000000000000020170f0000000000000000000000000000000000000000000000000000000000201710000000000000000000000000000000000000000000000000000000000020171100000000000000000000000000000000000000000000000000000000002017120000000000000000000000000000000000000000000000000000000000201713000000000000000000000000000000000000000000000000000000000020171400000000000000000000000000000000000000000000000000000000002017150000000000000000000000000000000000000000000000000000000000201716000000000000000000000000000000000000000000000000000000000020171700000000000000000000000000000000000000000000000000000000002017180000000000000000000000000000000000000000000000000000000000201719000000000000000000000000000000000000000000000000000000000020171a000000000000000000000000000000000000000000000000000000000020171b000000000000000000000000000000000000000000000000000000000020171c000000000000000000000000000000000000000000000000000000000020171d000000000000000000000000000000000000000000000000000000000020171e000000000000000000000000000000000000000000000000000000000020171f000000000000000000000000000000000000000000000000000000000020170f0000000000000000000000000000000000000000000000000000000000201710000000000000000000000000000000000000000000000000000000000020171100000000000000000000000000000000000000000000000000000000002017120000000000000000000000000000000000000000000000000000000000201713000000000000000000000000000000000000000000000000000000000020171400000000000000000000000000000000000000000000000000000000002017150000000000000000000000000000000000000000000000000000000000201716000000000000000000000000000000000000000000000000000000000020171700000000000000000000000000000000000000000000000000000000002017180000000000000000000000000000000000000000000000000000000000201719000000000000000000000000000000000000000000000000000000000020171a000000000000000000000000000000000000000000000000000000000020171b000000000000000000000000000000000000000000000000000000000020171c000000000000000000000000000000000000000000000000000000000020171d000000000000000000000000000000000000000000000000000000000020171e000000000000000000000000000000000000000000000000000000000020171f00000000000000000000000000000000000000000000000000000000002017200000000000000000000000000000000000000000000000000000000000201710000000000000000000000000000000000000000000000000000000000020171100000000000000000000000000000000000000000000000000000000002017120000000000000000000000000000000000000000000000000000000000201713000000000000000000000000000000000000000000000000000000000020171400000000000000000000000000000000000000000000000000000000002017150000000000000000000000000000000000000000000000000000000000201716000000000000000000000000000000000000000000000000000000000020171700000000000000000000000000000000000000000000000000000000002017180000000000000000000000000000000000000000000000000000000000201719000000000000000000000000000000000000000000000000000000000020171a000000000000000000000000000000000000000000000000000000000020171b000000000000000000000000000000000000000000000000000000000020171c000000000000000000000000000000000000000000000000000000000020171d000000000000000000000000000000000000000000000000000000000020171e000000000000000000000000000000000000000000000000000000000020171f00000000000000000000000000000000000000000000000000000000002017200000000000000000000000000000000000000000000000000000000000201721000000000000000000000000000000000000000000000000000000000020171100000000000000000000000000000000000000000000000000000000002017120000000000000000000000000000000000000000000000000000000000201713000000000000000000000000000000000000000000000000000000000020171400000000000000000000000000000000000000000000000000000000002017150000000000000000000000000000000000000000000000000000000000201716000000000000000000000000000000000000000000000000000000000020171700000000000000000000000000000000000000000000000000000000002017180000000000000000000000000000000000000000000000000000000000201719000000000000000000000000000000000000000000000000000000000020171a000000000000000000000000000000000000000000000000000000000020171b000000000000000000000000000000000000000000000000000000000020171c000000000000000000000000000000000000000000000000000000000020171d000000000000000000000000000000000000000000000000000000000020171e000000000000000000000000000000000000000000000000000000000020171f00000000000000000000000000000000000000000000000000000000002017200000000000000000000000000000000000000000000000000000000000201721000000000000000000000000000000000000000000000000000000000020172200000000000000000000000000000000000000000000000000000000002017120000000000000000000000000000000000000000000000000000000000201713000000000000000000000000000000000000000000000000000000000020171400000000000000000000000000000000000000000000000000000000002017150000000000000000000000000000000000000000000000000000000000201716000000000000000000000000000000000000000000000000000000000020171700000000000000000000000000000000000000000000000000000000002017180000000000000000000000000000000000000000000000000000000000201719000000000000000000000000000000000000000000000000000000000020171a000000000000000000000000000000000000000000000000000000000020171b000000000000000000000000000000000000000000000000000000000020171c000000000000000000000000000000000000000000000000000000000020171d000000000000000000000000000000000000000000000000000000000020171e000000000000000000000000000000000000000000000000000000000020171f00000000000000000000000000000000000000000000000000000000002017200000000000000000000000000000000000000000000000000000000000201721000000000000000000000000000000000000000000000000000000000020172200000000000000000000000000000000000000000000000000000000002017230000000000000000000000000000000000000000000000000000000000201713000000000000000000000000000000000000000000000000000000000020171400000000000000000000000000000000000000000000000000000000002017150000000000000000000000000000000000000000000000000000000000201716000000000000000000000000000000000000000000000000000000000020171700000000000000000000000000000000000000000000000000000000002017180000000000000000000000000000000000000000000000000000000000201719000000000000000000000000000000000000000000000000000000000020171a000000000000000000000000000000000000000000000000000000000020171b000000000000000000000000000000000000000000000000000000000020171c000000000000000000000000000000000000000000000000000000000020171d000000000000000000000000000000000000000000000000000000000020171e000000000000000000000000000000000000000000000000000000000020171f00000000000000000000000000000000000000000000000000000000002017200000000000000000000000000000000000000000000000000000000000201721000000000000000000000000000000000000000000000000000000000020172200000000000000000000000000000000000000000000000000000000002017230000000000000000000000000000000000000000000000000000000000201724000000000000000000000000000000000000000000000000000000000020171400000000000000000000000000000000000000000000000000000000002017150000000000000000000000000000000000000000000000000000000000201716000000000000000000000000000000000000000000000000000000000020171700000000000000000000000000000000000000000000000000000000002017180000000000000000000000000000000000000000000000000000000000201719000000000000000000000000000000000000000000000000000000000020171a000000000000000000000000000000000000000000000000000000000020171b000000000000000000000000000000000000000000000000000000000020171c000000000000000000000000000000000000000000000000000000000020171d000000000000000000000000000000000000000000000000000000000020171e000000000000000000000000000000000000000000000000000000000020171f00000000000000000000000000000000000000000000000000000000002017200000000000000000000000000000000000000000000000000000000000201721000000000000000000000000000000000000000000000000000000000020172200000000000000000000000000000000000000000000000000000000002017230000000000000000000000000000000000000000000000000000000000201724000000000000000000000000000000000000000000000000000000000020172500000000000000000000000000000000000000000000000000000000002017150000000000000000000000000000000000000000000000000000000000201716000000000000000000000000000000000000000000000000000000000020171700000000000000000000000000000000000000000000000000000000002017180000000000000000000000000000000000000000000000000000000000201719000000000000000000000000000000000000000000000000000000000020171a000000000000000000000000000000000000000000000000000000000020171b000000000000000000000000000000000000000000000000000000000020171c000000000000000000000000000000000000000000000000000000000020171d000000000000000000000000000000000000000000000000000000000020171e000000000000000000000000000000000000000000000000000000000020171f00000000000000000000000000000000000000000000000000000000002017200000000000000000000000000000000000000000000000000000000000201721000000000000000000000000000000000000000000000000000000000020172200000000000000000000000000000000000000000000000000000000002017230000000000000000000000000000000000000000000000000000000000201724000000000000000000000000000000000000000000000000000000000020172500000000000000000000000000000000000000000000000000000000002017260000000000000000000000000000000000000000000000000000000000201716000000000000000000000000000000000000000000000000000000000020171700000000000000000000000000000000000000000000000000000000002017180000000000000000000000000000000000000000000000000000000000201719000000000000000000000000000000000000000000000000000000000020171a000000000000000000000000000000000000000000000000000000000020171b000000000000000000000000000000000000000000000000000000000020171c000000000000000000000000000000000000000000000000000000000020171d000000000000000000000000000000000000000000000000000000000020171e000000000000000000000000000000000000000000000000000000000020171f00000000000000000000000000000000000000000000000000000000002017200000000000000000000000000000000000000000000000000000000000201721000000000000000000000000000000000000000000000000000000000020172200000000000000000000000000000000000000000000000000000000002017230000000000000000000000000000000000000000000000000000000000201724000000000000000000000000000000000000000000000000000000000020172500000000000000000000000000000000000000000000000000000000002017260000000000000000000000000000000000000000000000000000000000201727000000000000000000000000000000000000000000000000000000000020171700000000000000000000000000000000000000000000000000000000002017180000000000000000000000000000000000000000000000000000000000201719000000000000000000000000000000000000000000000000000000000020171a000000000000000000000000000000000000000000000000000000000020171b000000000000000000000000000000000000000000000000000000000020171c000000000000000000000000000000000000000000000000000000000020171d000000000000000000000000000000000000000000000000000000000020171e000000000000000000000000000000000000000000000000000000000020171f00000000000000000000000000000000000000000000000000000000002017200000000000000000000000000000000000000000000000000000000000201721000000000000000000000000000000000000000000000000000000000020172200000000000000000000000000000000000000000000000000000000002017230000000000000000000000000000000000000000000000000000000000201724000000000000000000000000000000000000000000000000000000000020172500000000000000000000000000000000000000000000000000000000002017260000000000000000000000000000000000000000000000000000000000201727000000000000000000000000000000000000000000000000000000000020172800000000000000000000000000000000000000000000000000000000002017180000000000000000000000000000000000000000000000000000000000201719000000000000000000000000000000000000000000000000000000000020171a000000000000000000000000000000000000000000000000000000000020171b000000000000000000000000000000000000000000000000000000000020171c000000000000000000000000000000000000000000000000000000000020171d000000000000000000000000000000000000000000000000000000000020171e000000000000000000000000000000000000000000000000000000000020171f00000000000000000000000000000000000000000000000000000000002017200000000000000000000000000000000000000000000000000000000000201721000000000000000000000000000000000000000000000000000000000020172200000000000000000000000000000000000000000000000000000000002017230000000000000000000000000000000000000000000000000000000000201724000000000000000000000000000000000000000000000000000000000020172500000000000000000000000000000000000000000000000000000000002017260000000000000000000000000000000000000000000000000000000000201727000000000000000000000000000000000000000000000000000000000020172800000000000000000000000000000000000000000000000000000000002017290000000000000000000000000000000000000000000000000000000000201719000000000000000000000000000000000000000000000000000000000020171a000000000000000000000000000000000000000000000000000000000020171b000000000000000000000000000000000000000000000000000000000020171c000000000000000000000000000000000000000000000000000000000020171d000000000000000000000000000000000000000000000000000000000020171e000000000000000000000000000000000000000000000000000000000020171f0000000000000000000000000000000000000000000000000000000000201720000000000000000000000000000000000000000000000000000000000020172100000000000000000000000000000000000000000000000000000000002017220000000000000000000000000000000000000000000000000000000000201723000000000000000000000000000000000000000000000000000000000020172400000000000000000000000000000000000000000000000000000000002017250000000000000000000000000000000000000000000000000000000000201726000000000000000000000000000000000000000000000000000000000020172700000000000000000000000000000000000000000000000000000000002017280000000000000000000000000000000000000000000000000000000000201729000000000000000000000000000000000000000000000000000000000020172a000000000000000000000000000000000000000000000000000000000020171a000000000000000000000000000000000000000000000000000000000020171b000000000000000000000000000000000000000000000000000000000020171c000000000000000000000000000000000000000000000000000000000020171d000000000000000000000000000000000000000000000000000000000020171e000000000000000000000000000000000000000000000000000000000020171f0000000000000000000000000000000000000000000000000000000000201720000000000000000000000000000000000000000000000000000000000020172100000000000000000000000000000000000000000000000000000000002017220000000000000000000000000000000000000000000000000000000000201723000000000000000000000000000000000000000000000000000000000020172400000000000000000000000000000000000000000000000000000000002017250000000000000000000000000000000000000000000000000000000000201726000000000000000000000000000000000000000000000000000000000020172700000000000000000000000000000000000000000000000000000000002017280000000000000000000000000000000000000000000000000000000000201729000000000000000000000000000000000000000000000000000000000020172a000000000000000000000000000000000000000000000000000000000020172b000000000000000000000000000000000000000000000000000000000020171b000000000000000000000000000000000000000000000000000000000020171c000000000000000000000000000000000000000000000000000000000020171d000000000000000000000000000000000000000000000000000000000020171e000000000000000000000000000000000000000000000000000000000020171f0000000000000000000000000000000000000000000000000000000000201720000000000000000000000000000000000000000000000000000000000020172100000000000000000000000000000000000000000000000000000000002017220000000000000000000000000000000000000000000000000000000000201723000000000000000000000000000000000000000000000000000000000020172400000000000000000000000000000000000000000000000000000000002017250000000000000000000000000000000000000000000000000000000000201726000000000000000000000000000000000000000000000000000000000020172700000000000000000000000000000000000000000000000000000000002017280000000000000000000000000000000000000000000000000000000000201729000000000000000000000000000000000000000000000000000000000020172a000000000000000000000000000000000000000000000000000000000020172b000000000000000000000000000000000000000000000000000000000020172c000000000000000000000000000000000000000000000000000000000020171c000000000000000000000000000000000000000000000000000000000020171d000000000000000000000000000000000000000000000000000000000020171e000000000000000000000000000000000000000000000000000000000020171f0000000000000000000000000000000000000000000000000000000000201720000000000000000000000000000000000000000000000000000000000020172100000000000000000000000000000000000000000000000000000000002017220000000000000000000000000000000000000000000000000000000000201723000000000000000000000000000000000000000000000000000000000020172400000000000000000000000000000000000000000000000000000000002017250000000000000000000000000000000000000000000000000000000000201726000000000000000000000000000000000000000000000000000000000020172700000000000000000000000000000000000000000000000000000000002017280000000000000000000000000000000000000000000000000000000000201729000000000000000000000000000000000000000000000000000000000020172a000000000000000000000000000000000000000000000000000000000020172b000000000000000000000000000000000000000000000000000000000020172c000000000000000000000000000000000000000000000000000000000020172d000000000000000000000000000000000000000000000000000000000020171d000000000000000000000000000000000000000000000000000000000020171e000000000000000000000000000000000000000000000000000000000020171f0000000000000000000000000000000000000000000000000000000000201720000000000000000000000000000000000000000000000000000000000020172100000000000000000000000000000000000000000000000000000000002017220000000000000000000000000000000000000000000000000000000000201723000000000000000000000000000000000000000000000000000000000020172400000000000000000000000000000000000000000000000000000000002017250000000000000000000000000000000000000000000000000000000000201726000000000000000000000000000000000000000000000000000000000020172700000000000000000000000000000000000000000000000000000000002017280000000000000000000000000000000000000000000000000000000000201729000000000000000000000000000000000000000000000000000000000020172a000000000000000000000000000000000000000000000000000000000020172b000000000000000000000000000000000000000000000000000000000020172c000000000000000000000000000000000000000000000000000000000020172d000000000000000000000000000000000000000000000000000000000020172e000000000000000000000000000000000000000000000000000000000020171e000000000000000000000000000000000000000000000000000000000020171f0000000000000000000000000000000000000000000000000000000000201720000000000000000000000000000000000000000000000000000000000020172100000000000000000000000000000000000000000000000000000000002017220000000000000000000000000000000000000000000000000000000000201723000000000000000000000000000000000000000000000000000000000020172400000000000000000000000000000000000000000000000000000000002017250000000000000000000000000000000000000000000000000000000000201726000000000000000000000000000000000000000000000000000000000020172700000000000000000000000000000000000000000000000000000000002017280000000000000000000000000000000000000000000000000000000000201729000000000000000000000000000000000000000000000000000000000020172a000000000000000000000000000000000000000000000000000000000020172b000000000000000000000000000000000000000000000000000000000020172c000000000000000000000000000000000000000000000000000000000020172d000000000000000000000000000000000000000000000000000000000020172e000000000000000000000000000000000000000000000000000000000020172f000000000000000000000000000000000000000000000000000000000020171f0000000000000000000000000000000000000000000000000000000000201720000000000000000000000000000000000000000000000000000000000020172100000000000000000000000000000000000000000000000000000000002017220000000000000000000000000000000000000000000000000000000000201723000000000000000000000000000000000000000000000000000000000020172400000000000000000000000000000000000000000000000000000000002017250000000000000000000000000000000000000000000000000000000000201726000000000000000000000000000000000000000000000000000000000020172700000000000000000000000000000000000000000000000000000000002017280000000000000000000000000000000000000000000000000000000000201729000000000000000000000000000000000000000000000000000000000020172a000000000000000000000000000000000000000000000000000000000020172b000000000000000000000000000000000000000000000000000000000020172c000000000000000000000000000000000000000000000000000000000020172d000000000000000000000000000000000000000000000000000000000020172e000000000000000000000000000000000000000000000000000000000020172f0000000000000000000000000000000000000000000000000000000000201730000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "archive": "0x16ebef361e14615000aa7b4e06a3f3cca4822966a7eba8f86cd95e22fd8863c7", + "body": "0x0000000400132efbbfb18630ccfb96cb80ccf9c1d3b08bae51812be6e78f1aa72439a00b800000000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000141000000000000000000000000000000000000000000000000000000000000014100100000000000000000000000000000000000000000000000000000000001410020000000000000000000000000000000000000000000000000000000000141003000000000000000000000000000000000000000000000000000000000014100400000000000000000000000000000000000000000000000000000000001410050000000000000000000000000000000000000000000000000000000000141006000000000000000000000000000000000000000000000000000000000014100700000000000000000000000000000000000000000000000000000000001410080000000000000000000000000000000000000000000000000000000000141009000000000000000000000000000000000000000000000000000000000014100a000000000000000000000000000000000000000000000000000000000014100b000000000000000000000000000000000000000000000000000000000014100c000000000000000000000000000000000000000000000000000000000014100d000000000000000000000000000000000000000000000000000000000014100e000000000000000000000000000000000000000000000000000000000014100f0000000000000000000000000000000000000000000000000000000000141010000000000000000000000000000000000000000000000000000000000014101100000000000000000000000000000000000000000000000000000000001410120000000000000000000000000000000000000000000000000000000000141013000000000000000000000000000000000000000000000000000000000014101400000000000000000000000000000000000000000000000000000000001410150000000000000000000000000000000000000000000000000000000000141016000000000000000000000000000000000000000000000000000000000014101700000000000000000000000000000000000000000000000000000000001410180000000000000000000000000000000000000000000000000000000000141019000000000000000000000000000000000000000000000000000000000014101a000000000000000000000000000000000000000000000000000000000014101b000000000000000000000000000000000000000000000000000000000014101c000000000000000000000000000000000000000000000000000000000014101d000000000000000000000000000000000000000000000000000000000014101e000000000000000000000000000000000000000000000000000000000014101f0000000000000000000000000000000000000000000000000000000000141020000000000000000000000000000000000000000000000000000000000014102100000000000000000000000000000000000000000000000000000000001410220000000000000000000000000000000000000000000000000000000000141023000000000000000000000000000000000000000000000000000000000014102400000000000000000000000000000000000000000000000000000000001410250000000000000000000000000000000000000000000000000000000000141026000000000000000000000000000000000000000000000000000000000014102700000000000000000000000000000000000000000000000000000000001410280000000000000000000000000000000000000000000000000000000000141029000000000000000000000000000000000000000000000000000000000014102a000000000000000000000000000000000000000000000000000000000014102b000000000000000000000000000000000000000000000000000000000014102c000000000000000000000000000000000000000000000000000000000014102d000000000000000000000000000000000000000000000000000000000014102e000000000000000000000000000000000000000000000000000000000014102f0000000000000000000000000000000000000000000000000000000000141030000000000000000000000000000000000000000000000000000000000014103100000000000000000000000000000000000000000000000000000000001410320000000000000000000000000000000000000000000000000000000000141033000000000000000000000000000000000000000000000000000000000014103400000000000000000000000000000000000000000000000000000000001410350000000000000000000000000000000000000000000000000000000000141036000000000000000000000000000000000000000000000000000000000014103700000000000000000000000000000000000000000000000000000000001410380000000000000000000000000000000000000000000000000000000000141039000000000000000000000000000000000000000000000000000000000014103a000000000000000000000000000000000000000000000000000000000014103b000000000000000000000000000000000000000000000000000000000014103c000000000000000000000000000000000000000000000000000000000014103d000000000000000000000000000000000000000000000000000000000014103e000000000000000000000000000000000000000000000000000000000014103f4000000000000000000000000000000000000000000000000000000000001400010000000000000000000000000000000000000000000000000000000000141100000000000000000000000000000000000000000000000000000000000014110100000000000000000000000000000000000000000000000000000000001411020000000000000000000000000000000000000000000000000000000000141103000000000000000000000000000000000000000000000000000000000014110400000000000000000000000000000000000000000000000000000000001411050000000000000000000000000000000000000000000000000000000000141106000000000000000000000000000000000000000000000000000000000014110700000000000000000000000000000000000000000000000000000000001411080000000000000000000000000000000000000000000000000000000000141109000000000000000000000000000000000000000000000000000000000014110a000000000000000000000000000000000000000000000000000000000014110b000000000000000000000000000000000000000000000000000000000014110c000000000000000000000000000000000000000000000000000000000014110d000000000000000000000000000000000000000000000000000000000014110e000000000000000000000000000000000000000000000000000000000014110f0000000000000000000000000000000000000000000000000000000000141110000000000000000000000000000000000000000000000000000000000014111100000000000000000000000000000000000000000000000000000000001411120000000000000000000000000000000000000000000000000000000000141113000000000000000000000000000000000000000000000000000000000014111400000000000000000000000000000000000000000000000000000000001411150000000000000000000000000000000000000000000000000000000000141116000000000000000000000000000000000000000000000000000000000014111700000000000000000000000000000000000000000000000000000000001411180000000000000000000000000000000000000000000000000000000000141119000000000000000000000000000000000000000000000000000000000014111a000000000000000000000000000000000000000000000000000000000014111b000000000000000000000000000000000000000000000000000000000014111c000000000000000000000000000000000000000000000000000000000014111d000000000000000000000000000000000000000000000000000000000014111e000000000000000000000000000000000000000000000000000000000014111f0000000000000000000000000000000000000000000000000000000000141120000000000000000000000000000000000000000000000000000000000014112100000000000000000000000000000000000000000000000000000000001411220000000000000000000000000000000000000000000000000000000000141123000000000000000000000000000000000000000000000000000000000014112400000000000000000000000000000000000000000000000000000000001411250000000000000000000000000000000000000000000000000000000000141126000000000000000000000000000000000000000000000000000000000014112700000000000000000000000000000000000000000000000000000000001411280000000000000000000000000000000000000000000000000000000000141129000000000000000000000000000000000000000000000000000000000014112a000000000000000000000000000000000000000000000000000000000014112b000000000000000000000000000000000000000000000000000000000014112c000000000000000000000000000000000000000000000000000000000014112d000000000000000000000000000000000000000000000000000000000014112e000000000000000000000000000000000000000000000000000000000014112f0000000000000000000000000000000000000000000000000000000000141130000000000000000000000000000000000000000000000000000000000014113100000000000000000000000000000000000000000000000000000000001411320000000000000000000000000000000000000000000000000000000000141133000000000000000000000000000000000000000000000000000000000014113400000000000000000000000000000000000000000000000000000000001411350000000000000000000000000000000000000000000000000000000000141136000000000000000000000000000000000000000000000000000000000014113700000000000000000000000000000000000000000000000000000000001411380000000000000000000000000000000000000000000000000000000000141139000000000000000000000000000000000000000000000000000000000014113a000000000000000000000000000000000000000000000000000000000014113b000000000000000000000000000000000000000000000000000000000014113c000000000000000000000000000000000000000000000000000000000014113d000000000000000000000000000000000000000000000000000000000014113e08005c015113cb57d67dd6c0febd596819ac0298b6a23fc80aba17d445d540059a00f20b7d1308051fe7b68031a7c336b0b4b56738928b6510133aff1b818d5a9a0063eec1883a4f95f4933f9275e850d84b3d035f5061ed986c437a07331fd30e00d3a32d6bbc4fd843686fd0c5e118a73b847529977dca5b9e0e81f6604f22ca00c2f4f5133d9194d41e853e5e951e16690babce8461f25342c0bad20f2aa1e3000a6bf4739e7eb387913d955dc2e8f14f8cce27696b9d2e128b6acefafb80ee005763f7e0648f958b559677622a648f318fc79ebc0cb539170d49c26456e69200302e2b8a92cda941e9af8761b89899a58a587656d9710594e1d865b1652299400000000000000000000000000000000000000000000000000000000000142000000000000000000000000000000000000000000000000000000000000014200a0000000000000000000000000000000000000000000000000000000000142001000000000000000000000000000000000000000000000000000000000014200b0000000000000000000000000000000000000000000000000000000000142002000000000000000000000000000000000000000000000000000000000014200c0000000000000000000000000000000000000000000000000000000000142003000000000000000000000000000000000000000000000000000000000014200d0000000000000000000000000000000000000000000000000000000000142004000000000000000000000000000000000000000000000000000000000014200e0000000000000000000000000000000000000000000000000000000000142005000000000000000000000000000000000000000000000000000000000014200f00000000000000000000000000000000000000000000000000000000001420060000000000000000000000000000000000000000000000000000000000142010000000000000000000000000000000000000000000000000000000000014200700000000000000000000000000000000000000000000000000000000001420110000000000000000000000000000000000000000000000000000000000142008000000000000000000000000000000000000000000000000000000000014201200000000000000000000000000000000000000000000000000000000001420090000000000000000000000000000000000000000000000000000000000142013000000000000000000000000000000000000000000000000000000000014200a0000000000000000000000000000000000000000000000000000000000142014000000000000000000000000000000000000000000000000000000000014200b0000000000000000000000000000000000000000000000000000000000142015000000000000000000000000000000000000000000000000000000000014200c0000000000000000000000000000000000000000000000000000000000142016000000000000000000000000000000000000000000000000000000000014200d0000000000000000000000000000000000000000000000000000000000142017000000000000000000000000000000000000000000000000000000000014200e0000000000000000000000000000000000000000000000000000000000142018000000000000000000000000000000000000000000000000000000000014200f00000000000000000000000000000000000000000000000000000000001420190000000000000000000000000000000000000000000000000000000000142010000000000000000000000000000000000000000000000000000000000014201a0000000000000000000000000000000000000000000000000000000000142011000000000000000000000000000000000000000000000000000000000014201b0000000000000000000000000000000000000000000000000000000000142012000000000000000000000000000000000000000000000000000000000014201c0000000000000000000000000000000000000000000000000000000000142013000000000000000000000000000000000000000000000000000000000014201d0000000000000000000000000000000000000000000000000000000000142014000000000000000000000000000000000000000000000000000000000014201e0000000000000000000000000000000000000000000000000000000000142015000000000000000000000000000000000000000000000000000000000014201f00000000000000000000000000000000000000000000000000000000001420160000000000000000000000000000000000000000000000000000000000142020000000000000000000000000000000000000000000000000000000000014201700000000000000000000000000000000000000000000000000000000001420210000000000000000000000000000000000000000000000000000000000142018000000000000000000000000000000000000000000000000000000000014202200000000000000000000000000000000000000000000000000000000001420190000000000000000000000000000000000000000000000000000000000142023000000000000000000000000000000000000000000000000000000000014201a0000000000000000000000000000000000000000000000000000000000142024000000000000000000000000000000000000000000000000000000000014201b0000000000000000000000000000000000000000000000000000000000142025000000000000000000000000000000000000000000000000000000000014201c0000000000000000000000000000000000000000000000000000000000142026000000000000000000000000000000000000000000000000000000000014201d0000000000000000000000000000000000000000000000000000000000142027000000000000000000000000000000000000000000000000000000000014201e0000000000000000000000000000000000000000000000000000000000142028000000000000000000000000000000000000000000000000000000000014201f00000000000000000000000000000000000000000000000000000000001420290000000000000000000000000000000000000000000000000000000000142020000000000000000000000000000000000000000000000000000000000014202a0000000000000000000000000000000000000000000000000000000000142021000000000000000000000000000000000000000000000000000000000014202b0000000000000000000000000000000000000000000000000000000000142022000000000000000000000000000000000000000000000000000000000014202c0000000000000000000000000000000000000000000000000000000000142023000000000000000000000000000000000000000000000000000000000014202d0000000000000000000000000000000000000000000000000000000000142024000000000000000000000000000000000000000000000000000000000014202e0000000000000000000000000000000000000000000000000000000000142025000000000000000000000000000000000000000000000000000000000014202f00000000000000000000000000000000000000000000000000000000001420260000000000000000000000000000000000000000000000000000000000142030000000000000000000000000000000000000000000000000000000000014202700000000000000000000000000000000000000000000000000000000001420310000000000000000000000000000000000000000000000000000000000142028000000000000000000000000000000000000000000000000000000000014203200000000000000000000000000000000000000000000000000000000001420290000000000000000000000000000000000000000000000000000000000142033000000000000000000000000000000000000000000000000000000000014202a0000000000000000000000000000000000000000000000000000000000142034000000000000000000000000000000000000000000000000000000000014202b0000000000000000000000000000000000000000000000000000000000142035000000000000000000000000000000000000000000000000000000000014202c0000000000000000000000000000000000000000000000000000000000142036000000000000000000000000000000000000000000000000000000000014202d0000000000000000000000000000000000000000000000000000000000142037000000000000000000000000000000000000000000000000000000000014202e0000000000000000000000000000000000000000000000000000000000142038000000000000000000000000000000000000000000000000000000000014202f00000000000000000000000000000000000000000000000000000000001420390000000000000000000000000000000000000000000000000000000000142030000000000000000000000000000000000000000000000000000000000014203a0000000000000000000000000000000000000000000000000000000000142031000000000000000000000000000000000000000000000000000000000014203b0000000000000000000000000000000000000000000000000000000000142032000000000000000000000000000000000000000000000000000000000014203c0000000000000000000000000000000000000000000000000000000000142033000000000000000000000000000000000000000000000000000000000014203d0000000000000000000000000000000000000000000000000000000000142034000000000000000000000000000000000000000000000000000000000014203e0000000000000000000000000000000000000000000000000000000000142035000000000000000000000000000000000000000000000000000000000014203f00000000000000000000000000000000000000000000000000000000001420360000000000000000000000000000000000000000000000000000000000142040000000000000000000000000000000000000000000000000000000000014203700000000000000000000000000000000000000000000000000000000001420410000000000000000000000000000000000000000000000000000000000142038000000000000000000000000000000000000000000000000000000000014204200000000000000000000000000000000000000000000000000000000001420390000000000000000000000000000000000000000000000000000000000142043000000000000000000000000000000000000000000000000000000000014203a0000000000000000000000000000000000000000000000000000000000142044000000000000000000000000000000000000000000000000000000000014203b0000000000000000000000000000000000000000000000000000000000142045000000000000000000000000000000000000000000000000000000000014203c0000000000000000000000000000000000000000000000000000000000142046000000000000000000000000000000000000000000000000000000000014203d0000000000000000000000000000000000000000000000000000000000142047000000000000000000000000000000000000000000000000000000000014203e0000000000000000000000000000000000000000000000000000000000142048000000000000000000000000000000000000000000000000000000000014203f0000000000000000000000000000000000000000000000000000000000142049200000000000000000000000000000000000000000000000000000000000141700000000000000000000000000000000000000000000000000000000000014170100000000000000000000000000000000000000000000000000000000001417020000000000000000000000000000000000000000000000000000000000141703000000000000000000000000000000000000000000000000000000000014170400000000000000000000000000000000000000000000000000000000001417050000000000000000000000000000000000000000000000000000000000141706000000000000000000000000000000000000000000000000000000000014170700000000000000000000000000000000000000000000000000000000001417080000000000000000000000000000000000000000000000000000000000141709000000000000000000000000000000000000000000000000000000000014170a000000000000000000000000000000000000000000000000000000000014170b000000000000000000000000000000000000000000000000000000000014170c000000000000000000000000000000000000000000000000000000000014170d000000000000000000000000000000000000000000000000000000000014170e000000000000000000000000000000000000000000000000000000000014170f00000000000000000000000000000000000000000000000000000000001417100000000000000000000000000000000000000000000000000000000000141711000000000000000000000000000000000000000000000000000000000014170100000000000000000000000000000000000000000000000000000000001417020000000000000000000000000000000000000000000000000000000000141703000000000000000000000000000000000000000000000000000000000014170400000000000000000000000000000000000000000000000000000000001417050000000000000000000000000000000000000000000000000000000000141706000000000000000000000000000000000000000000000000000000000014170700000000000000000000000000000000000000000000000000000000001417080000000000000000000000000000000000000000000000000000000000141709000000000000000000000000000000000000000000000000000000000014170a000000000000000000000000000000000000000000000000000000000014170b000000000000000000000000000000000000000000000000000000000014170c000000000000000000000000000000000000000000000000000000000014170d000000000000000000000000000000000000000000000000000000000014170e000000000000000000000000000000000000000000000000000000000014170f00000000000000000000000000000000000000000000000000000000001417100000000000000000000000000000000000000000000000000000000000141711000000000000000000000000000000000000000000000000000000000014171200000000000000000000000000000000000000000000000000000000001417020000000000000000000000000000000000000000000000000000000000141703000000000000000000000000000000000000000000000000000000000014170400000000000000000000000000000000000000000000000000000000001417050000000000000000000000000000000000000000000000000000000000141706000000000000000000000000000000000000000000000000000000000014170700000000000000000000000000000000000000000000000000000000001417080000000000000000000000000000000000000000000000000000000000141709000000000000000000000000000000000000000000000000000000000014170a000000000000000000000000000000000000000000000000000000000014170b000000000000000000000000000000000000000000000000000000000014170c000000000000000000000000000000000000000000000000000000000014170d000000000000000000000000000000000000000000000000000000000014170e000000000000000000000000000000000000000000000000000000000014170f00000000000000000000000000000000000000000000000000000000001417100000000000000000000000000000000000000000000000000000000000141711000000000000000000000000000000000000000000000000000000000014171200000000000000000000000000000000000000000000000000000000001417130000000000000000000000000000000000000000000000000000000000141703000000000000000000000000000000000000000000000000000000000014170400000000000000000000000000000000000000000000000000000000001417050000000000000000000000000000000000000000000000000000000000141706000000000000000000000000000000000000000000000000000000000014170700000000000000000000000000000000000000000000000000000000001417080000000000000000000000000000000000000000000000000000000000141709000000000000000000000000000000000000000000000000000000000014170a000000000000000000000000000000000000000000000000000000000014170b000000000000000000000000000000000000000000000000000000000014170c000000000000000000000000000000000000000000000000000000000014170d000000000000000000000000000000000000000000000000000000000014170e000000000000000000000000000000000000000000000000000000000014170f00000000000000000000000000000000000000000000000000000000001417100000000000000000000000000000000000000000000000000000000000141711000000000000000000000000000000000000000000000000000000000014171200000000000000000000000000000000000000000000000000000000001417130000000000000000000000000000000000000000000000000000000000141714000000000000000000000000000000000000000000000000000000000014170400000000000000000000000000000000000000000000000000000000001417050000000000000000000000000000000000000000000000000000000000141706000000000000000000000000000000000000000000000000000000000014170700000000000000000000000000000000000000000000000000000000001417080000000000000000000000000000000000000000000000000000000000141709000000000000000000000000000000000000000000000000000000000014170a000000000000000000000000000000000000000000000000000000000014170b000000000000000000000000000000000000000000000000000000000014170c000000000000000000000000000000000000000000000000000000000014170d000000000000000000000000000000000000000000000000000000000014170e000000000000000000000000000000000000000000000000000000000014170f00000000000000000000000000000000000000000000000000000000001417100000000000000000000000000000000000000000000000000000000000141711000000000000000000000000000000000000000000000000000000000014171200000000000000000000000000000000000000000000000000000000001417130000000000000000000000000000000000000000000000000000000000141714000000000000000000000000000000000000000000000000000000000014171500000000000000000000000000000000000000000000000000000000001417050000000000000000000000000000000000000000000000000000000000141706000000000000000000000000000000000000000000000000000000000014170700000000000000000000000000000000000000000000000000000000001417080000000000000000000000000000000000000000000000000000000000141709000000000000000000000000000000000000000000000000000000000014170a000000000000000000000000000000000000000000000000000000000014170b000000000000000000000000000000000000000000000000000000000014170c000000000000000000000000000000000000000000000000000000000014170d000000000000000000000000000000000000000000000000000000000014170e000000000000000000000000000000000000000000000000000000000014170f00000000000000000000000000000000000000000000000000000000001417100000000000000000000000000000000000000000000000000000000000141711000000000000000000000000000000000000000000000000000000000014171200000000000000000000000000000000000000000000000000000000001417130000000000000000000000000000000000000000000000000000000000141714000000000000000000000000000000000000000000000000000000000014171500000000000000000000000000000000000000000000000000000000001417160000000000000000000000000000000000000000000000000000000000141706000000000000000000000000000000000000000000000000000000000014170700000000000000000000000000000000000000000000000000000000001417080000000000000000000000000000000000000000000000000000000000141709000000000000000000000000000000000000000000000000000000000014170a000000000000000000000000000000000000000000000000000000000014170b000000000000000000000000000000000000000000000000000000000014170c000000000000000000000000000000000000000000000000000000000014170d000000000000000000000000000000000000000000000000000000000014170e000000000000000000000000000000000000000000000000000000000014170f00000000000000000000000000000000000000000000000000000000001417100000000000000000000000000000000000000000000000000000000000141711000000000000000000000000000000000000000000000000000000000014171200000000000000000000000000000000000000000000000000000000001417130000000000000000000000000000000000000000000000000000000000141714000000000000000000000000000000000000000000000000000000000014171500000000000000000000000000000000000000000000000000000000001417160000000000000000000000000000000000000000000000000000000000141717000000000000000000000000000000000000000000000000000000000014170700000000000000000000000000000000000000000000000000000000001417080000000000000000000000000000000000000000000000000000000000141709000000000000000000000000000000000000000000000000000000000014170a000000000000000000000000000000000000000000000000000000000014170b000000000000000000000000000000000000000000000000000000000014170c000000000000000000000000000000000000000000000000000000000014170d000000000000000000000000000000000000000000000000000000000014170e000000000000000000000000000000000000000000000000000000000014170f00000000000000000000000000000000000000000000000000000000001417100000000000000000000000000000000000000000000000000000000000141711000000000000000000000000000000000000000000000000000000000014171200000000000000000000000000000000000000000000000000000000001417130000000000000000000000000000000000000000000000000000000000141714000000000000000000000000000000000000000000000000000000000014171500000000000000000000000000000000000000000000000000000000001417160000000000000000000000000000000000000000000000000000000000141717000000000000000000000000000000000000000000000000000000000014171800000000000000000000000000000000000000000000000000000000001417080000000000000000000000000000000000000000000000000000000000141709000000000000000000000000000000000000000000000000000000000014170a000000000000000000000000000000000000000000000000000000000014170b000000000000000000000000000000000000000000000000000000000014170c000000000000000000000000000000000000000000000000000000000014170d000000000000000000000000000000000000000000000000000000000014170e000000000000000000000000000000000000000000000000000000000014170f00000000000000000000000000000000000000000000000000000000001417100000000000000000000000000000000000000000000000000000000000141711000000000000000000000000000000000000000000000000000000000014171200000000000000000000000000000000000000000000000000000000001417130000000000000000000000000000000000000000000000000000000000141714000000000000000000000000000000000000000000000000000000000014171500000000000000000000000000000000000000000000000000000000001417160000000000000000000000000000000000000000000000000000000000141717000000000000000000000000000000000000000000000000000000000014171800000000000000000000000000000000000000000000000000000000001417190000000000000000000000000000000000000000000000000000000000141709000000000000000000000000000000000000000000000000000000000014170a000000000000000000000000000000000000000000000000000000000014170b000000000000000000000000000000000000000000000000000000000014170c000000000000000000000000000000000000000000000000000000000014170d000000000000000000000000000000000000000000000000000000000014170e000000000000000000000000000000000000000000000000000000000014170f0000000000000000000000000000000000000000000000000000000000141710000000000000000000000000000000000000000000000000000000000014171100000000000000000000000000000000000000000000000000000000001417120000000000000000000000000000000000000000000000000000000000141713000000000000000000000000000000000000000000000000000000000014171400000000000000000000000000000000000000000000000000000000001417150000000000000000000000000000000000000000000000000000000000141716000000000000000000000000000000000000000000000000000000000014171700000000000000000000000000000000000000000000000000000000001417180000000000000000000000000000000000000000000000000000000000141719000000000000000000000000000000000000000000000000000000000014171a000000000000000000000000000000000000000000000000000000000014170a000000000000000000000000000000000000000000000000000000000014170b000000000000000000000000000000000000000000000000000000000014170c000000000000000000000000000000000000000000000000000000000014170d000000000000000000000000000000000000000000000000000000000014170e000000000000000000000000000000000000000000000000000000000014170f0000000000000000000000000000000000000000000000000000000000141710000000000000000000000000000000000000000000000000000000000014171100000000000000000000000000000000000000000000000000000000001417120000000000000000000000000000000000000000000000000000000000141713000000000000000000000000000000000000000000000000000000000014171400000000000000000000000000000000000000000000000000000000001417150000000000000000000000000000000000000000000000000000000000141716000000000000000000000000000000000000000000000000000000000014171700000000000000000000000000000000000000000000000000000000001417180000000000000000000000000000000000000000000000000000000000141719000000000000000000000000000000000000000000000000000000000014171a000000000000000000000000000000000000000000000000000000000014171b000000000000000000000000000000000000000000000000000000000014170b000000000000000000000000000000000000000000000000000000000014170c000000000000000000000000000000000000000000000000000000000014170d000000000000000000000000000000000000000000000000000000000014170e000000000000000000000000000000000000000000000000000000000014170f0000000000000000000000000000000000000000000000000000000000141710000000000000000000000000000000000000000000000000000000000014171100000000000000000000000000000000000000000000000000000000001417120000000000000000000000000000000000000000000000000000000000141713000000000000000000000000000000000000000000000000000000000014171400000000000000000000000000000000000000000000000000000000001417150000000000000000000000000000000000000000000000000000000000141716000000000000000000000000000000000000000000000000000000000014171700000000000000000000000000000000000000000000000000000000001417180000000000000000000000000000000000000000000000000000000000141719000000000000000000000000000000000000000000000000000000000014171a000000000000000000000000000000000000000000000000000000000014171b000000000000000000000000000000000000000000000000000000000014171c000000000000000000000000000000000000000000000000000000000014170c000000000000000000000000000000000000000000000000000000000014170d000000000000000000000000000000000000000000000000000000000014170e000000000000000000000000000000000000000000000000000000000014170f0000000000000000000000000000000000000000000000000000000000141710000000000000000000000000000000000000000000000000000000000014171100000000000000000000000000000000000000000000000000000000001417120000000000000000000000000000000000000000000000000000000000141713000000000000000000000000000000000000000000000000000000000014171400000000000000000000000000000000000000000000000000000000001417150000000000000000000000000000000000000000000000000000000000141716000000000000000000000000000000000000000000000000000000000014171700000000000000000000000000000000000000000000000000000000001417180000000000000000000000000000000000000000000000000000000000141719000000000000000000000000000000000000000000000000000000000014171a000000000000000000000000000000000000000000000000000000000014171b000000000000000000000000000000000000000000000000000000000014171c000000000000000000000000000000000000000000000000000000000014171d000000000000000000000000000000000000000000000000000000000014170d000000000000000000000000000000000000000000000000000000000014170e000000000000000000000000000000000000000000000000000000000014170f0000000000000000000000000000000000000000000000000000000000141710000000000000000000000000000000000000000000000000000000000014171100000000000000000000000000000000000000000000000000000000001417120000000000000000000000000000000000000000000000000000000000141713000000000000000000000000000000000000000000000000000000000014171400000000000000000000000000000000000000000000000000000000001417150000000000000000000000000000000000000000000000000000000000141716000000000000000000000000000000000000000000000000000000000014171700000000000000000000000000000000000000000000000000000000001417180000000000000000000000000000000000000000000000000000000000141719000000000000000000000000000000000000000000000000000000000014171a000000000000000000000000000000000000000000000000000000000014171b000000000000000000000000000000000000000000000000000000000014171c000000000000000000000000000000000000000000000000000000000014171d000000000000000000000000000000000000000000000000000000000014171e000000000000000000000000000000000000000000000000000000000014170e000000000000000000000000000000000000000000000000000000000014170f0000000000000000000000000000000000000000000000000000000000141710000000000000000000000000000000000000000000000000000000000014171100000000000000000000000000000000000000000000000000000000001417120000000000000000000000000000000000000000000000000000000000141713000000000000000000000000000000000000000000000000000000000014171400000000000000000000000000000000000000000000000000000000001417150000000000000000000000000000000000000000000000000000000000141716000000000000000000000000000000000000000000000000000000000014171700000000000000000000000000000000000000000000000000000000001417180000000000000000000000000000000000000000000000000000000000141719000000000000000000000000000000000000000000000000000000000014171a000000000000000000000000000000000000000000000000000000000014171b000000000000000000000000000000000000000000000000000000000014171c000000000000000000000000000000000000000000000000000000000014171d000000000000000000000000000000000000000000000000000000000014171e000000000000000000000000000000000000000000000000000000000014171f000000000000000000000000000000000000000000000000000000000014170f0000000000000000000000000000000000000000000000000000000000141710000000000000000000000000000000000000000000000000000000000014171100000000000000000000000000000000000000000000000000000000001417120000000000000000000000000000000000000000000000000000000000141713000000000000000000000000000000000000000000000000000000000014171400000000000000000000000000000000000000000000000000000000001417150000000000000000000000000000000000000000000000000000000000141716000000000000000000000000000000000000000000000000000000000014171700000000000000000000000000000000000000000000000000000000001417180000000000000000000000000000000000000000000000000000000000141719000000000000000000000000000000000000000000000000000000000014171a000000000000000000000000000000000000000000000000000000000014171b000000000000000000000000000000000000000000000000000000000014171c000000000000000000000000000000000000000000000000000000000014171d000000000000000000000000000000000000000000000000000000000014171e000000000000000000000000000000000000000000000000000000000014171f00000000000000000000000000000000000000000000000000000000001417200000000000000000000000000000000000000000000000000000000000141710000000000000000000000000000000000000000000000000000000000014171100000000000000000000000000000000000000000000000000000000001417120000000000000000000000000000000000000000000000000000000000141713000000000000000000000000000000000000000000000000000000000014171400000000000000000000000000000000000000000000000000000000001417150000000000000000000000000000000000000000000000000000000000141716000000000000000000000000000000000000000000000000000000000014171700000000000000000000000000000000000000000000000000000000001417180000000000000000000000000000000000000000000000000000000000141719000000000000000000000000000000000000000000000000000000000014171a000000000000000000000000000000000000000000000000000000000014171b000000000000000000000000000000000000000000000000000000000014171c000000000000000000000000000000000000000000000000000000000014171d000000000000000000000000000000000000000000000000000000000014171e000000000000000000000000000000000000000000000000000000000014171f00000000000000000000000000000000000000000000000000000000001417200000000000000000000000000000000000000000000000000000000000141721000000000000000000000000000000000000000000000000000000000014171100000000000000000000000000000000000000000000000000000000001417120000000000000000000000000000000000000000000000000000000000141713000000000000000000000000000000000000000000000000000000000014171400000000000000000000000000000000000000000000000000000000001417150000000000000000000000000000000000000000000000000000000000141716000000000000000000000000000000000000000000000000000000000014171700000000000000000000000000000000000000000000000000000000001417180000000000000000000000000000000000000000000000000000000000141719000000000000000000000000000000000000000000000000000000000014171a000000000000000000000000000000000000000000000000000000000014171b000000000000000000000000000000000000000000000000000000000014171c000000000000000000000000000000000000000000000000000000000014171d000000000000000000000000000000000000000000000000000000000014171e000000000000000000000000000000000000000000000000000000000014171f00000000000000000000000000000000000000000000000000000000001417200000000000000000000000000000000000000000000000000000000000141721000000000000000000000000000000000000000000000000000000000014172200000000000000000000000000000000000000000000000000000000001417120000000000000000000000000000000000000000000000000000000000141713000000000000000000000000000000000000000000000000000000000014171400000000000000000000000000000000000000000000000000000000001417150000000000000000000000000000000000000000000000000000000000141716000000000000000000000000000000000000000000000000000000000014171700000000000000000000000000000000000000000000000000000000001417180000000000000000000000000000000000000000000000000000000000141719000000000000000000000000000000000000000000000000000000000014171a000000000000000000000000000000000000000000000000000000000014171b000000000000000000000000000000000000000000000000000000000014171c000000000000000000000000000000000000000000000000000000000014171d000000000000000000000000000000000000000000000000000000000014171e000000000000000000000000000000000000000000000000000000000014171f00000000000000000000000000000000000000000000000000000000001417200000000000000000000000000000000000000000000000000000000000141721000000000000000000000000000000000000000000000000000000000014172200000000000000000000000000000000000000000000000000000000001417230000000000000000000000000000000000000000000000000000000000141713000000000000000000000000000000000000000000000000000000000014171400000000000000000000000000000000000000000000000000000000001417150000000000000000000000000000000000000000000000000000000000141716000000000000000000000000000000000000000000000000000000000014171700000000000000000000000000000000000000000000000000000000001417180000000000000000000000000000000000000000000000000000000000141719000000000000000000000000000000000000000000000000000000000014171a000000000000000000000000000000000000000000000000000000000014171b000000000000000000000000000000000000000000000000000000000014171c000000000000000000000000000000000000000000000000000000000014171d000000000000000000000000000000000000000000000000000000000014171e000000000000000000000000000000000000000000000000000000000014171f00000000000000000000000000000000000000000000000000000000001417200000000000000000000000000000000000000000000000000000000000141721000000000000000000000000000000000000000000000000000000000014172200000000000000000000000000000000000000000000000000000000001417230000000000000000000000000000000000000000000000000000000000141724000000000000000000000000000000000000000000000000000000000014171400000000000000000000000000000000000000000000000000000000001417150000000000000000000000000000000000000000000000000000000000141716000000000000000000000000000000000000000000000000000000000014171700000000000000000000000000000000000000000000000000000000001417180000000000000000000000000000000000000000000000000000000000141719000000000000000000000000000000000000000000000000000000000014171a000000000000000000000000000000000000000000000000000000000014171b000000000000000000000000000000000000000000000000000000000014171c000000000000000000000000000000000000000000000000000000000014171d000000000000000000000000000000000000000000000000000000000014171e000000000000000000000000000000000000000000000000000000000014171f00000000000000000000000000000000000000000000000000000000001417200000000000000000000000000000000000000000000000000000000000141721000000000000000000000000000000000000000000000000000000000014172200000000000000000000000000000000000000000000000000000000001417230000000000000000000000000000000000000000000000000000000000141724000000000000000000000000000000000000000000000000000000000014172500000000000000000000000000000000000000000000000000000000001417150000000000000000000000000000000000000000000000000000000000141716000000000000000000000000000000000000000000000000000000000014171700000000000000000000000000000000000000000000000000000000001417180000000000000000000000000000000000000000000000000000000000141719000000000000000000000000000000000000000000000000000000000014171a000000000000000000000000000000000000000000000000000000000014171b000000000000000000000000000000000000000000000000000000000014171c000000000000000000000000000000000000000000000000000000000014171d000000000000000000000000000000000000000000000000000000000014171e000000000000000000000000000000000000000000000000000000000014171f00000000000000000000000000000000000000000000000000000000001417200000000000000000000000000000000000000000000000000000000000141721000000000000000000000000000000000000000000000000000000000014172200000000000000000000000000000000000000000000000000000000001417230000000000000000000000000000000000000000000000000000000000141724000000000000000000000000000000000000000000000000000000000014172500000000000000000000000000000000000000000000000000000000001417260000000000000000000000000000000000000000000000000000000000141716000000000000000000000000000000000000000000000000000000000014171700000000000000000000000000000000000000000000000000000000001417180000000000000000000000000000000000000000000000000000000000141719000000000000000000000000000000000000000000000000000000000014171a000000000000000000000000000000000000000000000000000000000014171b000000000000000000000000000000000000000000000000000000000014171c000000000000000000000000000000000000000000000000000000000014171d000000000000000000000000000000000000000000000000000000000014171e000000000000000000000000000000000000000000000000000000000014171f00000000000000000000000000000000000000000000000000000000001417200000000000000000000000000000000000000000000000000000000000141721000000000000000000000000000000000000000000000000000000000014172200000000000000000000000000000000000000000000000000000000001417230000000000000000000000000000000000000000000000000000000000141724000000000000000000000000000000000000000000000000000000000014172500000000000000000000000000000000000000000000000000000000001417260000000000000000000000000000000000000000000000000000000000141727000000000000000000000000000000000000000000000000000000000014171700000000000000000000000000000000000000000000000000000000001417180000000000000000000000000000000000000000000000000000000000141719000000000000000000000000000000000000000000000000000000000014171a000000000000000000000000000000000000000000000000000000000014171b000000000000000000000000000000000000000000000000000000000014171c000000000000000000000000000000000000000000000000000000000014171d000000000000000000000000000000000000000000000000000000000014171e000000000000000000000000000000000000000000000000000000000014171f00000000000000000000000000000000000000000000000000000000001417200000000000000000000000000000000000000000000000000000000000141721000000000000000000000000000000000000000000000000000000000014172200000000000000000000000000000000000000000000000000000000001417230000000000000000000000000000000000000000000000000000000000141724000000000000000000000000000000000000000000000000000000000014172500000000000000000000000000000000000000000000000000000000001417260000000000000000000000000000000000000000000000000000000000141727000000000000000000000000000000000000000000000000000000000014172800000000000000000000000000000000000000000000000000000000001417180000000000000000000000000000000000000000000000000000000000141719000000000000000000000000000000000000000000000000000000000014171a000000000000000000000000000000000000000000000000000000000014171b000000000000000000000000000000000000000000000000000000000014171c000000000000000000000000000000000000000000000000000000000014171d000000000000000000000000000000000000000000000000000000000014171e000000000000000000000000000000000000000000000000000000000014171f00000000000000000000000000000000000000000000000000000000001417200000000000000000000000000000000000000000000000000000000000141721000000000000000000000000000000000000000000000000000000000014172200000000000000000000000000000000000000000000000000000000001417230000000000000000000000000000000000000000000000000000000000141724000000000000000000000000000000000000000000000000000000000014172500000000000000000000000000000000000000000000000000000000001417260000000000000000000000000000000000000000000000000000000000141727000000000000000000000000000000000000000000000000000000000014172800000000000000000000000000000000000000000000000000000000001417290000000000000000000000000000000000000000000000000000000000141719000000000000000000000000000000000000000000000000000000000014171a000000000000000000000000000000000000000000000000000000000014171b000000000000000000000000000000000000000000000000000000000014171c000000000000000000000000000000000000000000000000000000000014171d000000000000000000000000000000000000000000000000000000000014171e000000000000000000000000000000000000000000000000000000000014171f0000000000000000000000000000000000000000000000000000000000141720000000000000000000000000000000000000000000000000000000000014172100000000000000000000000000000000000000000000000000000000001417220000000000000000000000000000000000000000000000000000000000141723000000000000000000000000000000000000000000000000000000000014172400000000000000000000000000000000000000000000000000000000001417250000000000000000000000000000000000000000000000000000000000141726000000000000000000000000000000000000000000000000000000000014172700000000000000000000000000000000000000000000000000000000001417280000000000000000000000000000000000000000000000000000000000141729000000000000000000000000000000000000000000000000000000000014172a000000000000000000000000000000000000000000000000000000000014171a000000000000000000000000000000000000000000000000000000000014171b000000000000000000000000000000000000000000000000000000000014171c000000000000000000000000000000000000000000000000000000000014171d000000000000000000000000000000000000000000000000000000000014171e000000000000000000000000000000000000000000000000000000000014171f0000000000000000000000000000000000000000000000000000000000141720000000000000000000000000000000000000000000000000000000000014172100000000000000000000000000000000000000000000000000000000001417220000000000000000000000000000000000000000000000000000000000141723000000000000000000000000000000000000000000000000000000000014172400000000000000000000000000000000000000000000000000000000001417250000000000000000000000000000000000000000000000000000000000141726000000000000000000000000000000000000000000000000000000000014172700000000000000000000000000000000000000000000000000000000001417280000000000000000000000000000000000000000000000000000000000141729000000000000000000000000000000000000000000000000000000000014172a000000000000000000000000000000000000000000000000000000000014172b000000000000000000000000000000000000000000000000000000000014171b000000000000000000000000000000000000000000000000000000000014171c000000000000000000000000000000000000000000000000000000000014171d000000000000000000000000000000000000000000000000000000000014171e000000000000000000000000000000000000000000000000000000000014171f0000000000000000000000000000000000000000000000000000000000141720000000000000000000000000000000000000000000000000000000000014172100000000000000000000000000000000000000000000000000000000001417220000000000000000000000000000000000000000000000000000000000141723000000000000000000000000000000000000000000000000000000000014172400000000000000000000000000000000000000000000000000000000001417250000000000000000000000000000000000000000000000000000000000141726000000000000000000000000000000000000000000000000000000000014172700000000000000000000000000000000000000000000000000000000001417280000000000000000000000000000000000000000000000000000000000141729000000000000000000000000000000000000000000000000000000000014172a000000000000000000000000000000000000000000000000000000000014172b000000000000000000000000000000000000000000000000000000000014172c000000000000000000000000000000000000000000000000000000000014171c000000000000000000000000000000000000000000000000000000000014171d000000000000000000000000000000000000000000000000000000000014171e000000000000000000000000000000000000000000000000000000000014171f0000000000000000000000000000000000000000000000000000000000141720000000000000000000000000000000000000000000000000000000000014172100000000000000000000000000000000000000000000000000000000001417220000000000000000000000000000000000000000000000000000000000141723000000000000000000000000000000000000000000000000000000000014172400000000000000000000000000000000000000000000000000000000001417250000000000000000000000000000000000000000000000000000000000141726000000000000000000000000000000000000000000000000000000000014172700000000000000000000000000000000000000000000000000000000001417280000000000000000000000000000000000000000000000000000000000141729000000000000000000000000000000000000000000000000000000000014172a000000000000000000000000000000000000000000000000000000000014172b000000000000000000000000000000000000000000000000000000000014172c000000000000000000000000000000000000000000000000000000000014172d000000000000000000000000000000000000000000000000000000000014171d000000000000000000000000000000000000000000000000000000000014171e000000000000000000000000000000000000000000000000000000000014171f0000000000000000000000000000000000000000000000000000000000141720000000000000000000000000000000000000000000000000000000000014172100000000000000000000000000000000000000000000000000000000001417220000000000000000000000000000000000000000000000000000000000141723000000000000000000000000000000000000000000000000000000000014172400000000000000000000000000000000000000000000000000000000001417250000000000000000000000000000000000000000000000000000000000141726000000000000000000000000000000000000000000000000000000000014172700000000000000000000000000000000000000000000000000000000001417280000000000000000000000000000000000000000000000000000000000141729000000000000000000000000000000000000000000000000000000000014172a000000000000000000000000000000000000000000000000000000000014172b000000000000000000000000000000000000000000000000000000000014172c000000000000000000000000000000000000000000000000000000000014172d000000000000000000000000000000000000000000000000000000000014172e000000000000000000000000000000000000000000000000000000000014171e000000000000000000000000000000000000000000000000000000000014171f0000000000000000000000000000000000000000000000000000000000141720000000000000000000000000000000000000000000000000000000000014172100000000000000000000000000000000000000000000000000000000001417220000000000000000000000000000000000000000000000000000000000141723000000000000000000000000000000000000000000000000000000000014172400000000000000000000000000000000000000000000000000000000001417250000000000000000000000000000000000000000000000000000000000141726000000000000000000000000000000000000000000000000000000000014172700000000000000000000000000000000000000000000000000000000001417280000000000000000000000000000000000000000000000000000000000141729000000000000000000000000000000000000000000000000000000000014172a000000000000000000000000000000000000000000000000000000000014172b000000000000000000000000000000000000000000000000000000000014172c000000000000000000000000000000000000000000000000000000000014172d000000000000000000000000000000000000000000000000000000000014172e000000000000000000000000000000000000000000000000000000000014172f000000000000000000000000000000000000000000000000000000000014171f0000000000000000000000000000000000000000000000000000000000141720000000000000000000000000000000000000000000000000000000000014172100000000000000000000000000000000000000000000000000000000001417220000000000000000000000000000000000000000000000000000000000141723000000000000000000000000000000000000000000000000000000000014172400000000000000000000000000000000000000000000000000000000001417250000000000000000000000000000000000000000000000000000000000141726000000000000000000000000000000000000000000000000000000000014172700000000000000000000000000000000000000000000000000000000001417280000000000000000000000000000000000000000000000000000000000141729000000000000000000000000000000000000000000000000000000000014172a000000000000000000000000000000000000000000000000000000000014172b000000000000000000000000000000000000000000000000000000000014172c000000000000000000000000000000000000000000000000000000000014172d000000000000000000000000000000000000000000000000000000000014172e000000000000000000000000000000000000000000000000000000000014172f0000000000000000000000000000000000000000000000000000000000141730000000138b0bf30cf6731d2aab5dc9f1afede3ac8f0ca0f54b9f3ca9a81c4e31c49ee20000000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000181000000000000000000000000000000000000000000000000000000000000018100100000000000000000000000000000000000000000000000000000000001810020000000000000000000000000000000000000000000000000000000000181003000000000000000000000000000000000000000000000000000000000018100400000000000000000000000000000000000000000000000000000000001810050000000000000000000000000000000000000000000000000000000000181006000000000000000000000000000000000000000000000000000000000018100700000000000000000000000000000000000000000000000000000000001810080000000000000000000000000000000000000000000000000000000000181009000000000000000000000000000000000000000000000000000000000018100a000000000000000000000000000000000000000000000000000000000018100b000000000000000000000000000000000000000000000000000000000018100c000000000000000000000000000000000000000000000000000000000018100d000000000000000000000000000000000000000000000000000000000018100e000000000000000000000000000000000000000000000000000000000018100f0000000000000000000000000000000000000000000000000000000000181010000000000000000000000000000000000000000000000000000000000018101100000000000000000000000000000000000000000000000000000000001810120000000000000000000000000000000000000000000000000000000000181013000000000000000000000000000000000000000000000000000000000018101400000000000000000000000000000000000000000000000000000000001810150000000000000000000000000000000000000000000000000000000000181016000000000000000000000000000000000000000000000000000000000018101700000000000000000000000000000000000000000000000000000000001810180000000000000000000000000000000000000000000000000000000000181019000000000000000000000000000000000000000000000000000000000018101a000000000000000000000000000000000000000000000000000000000018101b000000000000000000000000000000000000000000000000000000000018101c000000000000000000000000000000000000000000000000000000000018101d000000000000000000000000000000000000000000000000000000000018101e000000000000000000000000000000000000000000000000000000000018101f0000000000000000000000000000000000000000000000000000000000181020000000000000000000000000000000000000000000000000000000000018102100000000000000000000000000000000000000000000000000000000001810220000000000000000000000000000000000000000000000000000000000181023000000000000000000000000000000000000000000000000000000000018102400000000000000000000000000000000000000000000000000000000001810250000000000000000000000000000000000000000000000000000000000181026000000000000000000000000000000000000000000000000000000000018102700000000000000000000000000000000000000000000000000000000001810280000000000000000000000000000000000000000000000000000000000181029000000000000000000000000000000000000000000000000000000000018102a000000000000000000000000000000000000000000000000000000000018102b000000000000000000000000000000000000000000000000000000000018102c000000000000000000000000000000000000000000000000000000000018102d000000000000000000000000000000000000000000000000000000000018102e000000000000000000000000000000000000000000000000000000000018102f0000000000000000000000000000000000000000000000000000000000181030000000000000000000000000000000000000000000000000000000000018103100000000000000000000000000000000000000000000000000000000001810320000000000000000000000000000000000000000000000000000000000181033000000000000000000000000000000000000000000000000000000000018103400000000000000000000000000000000000000000000000000000000001810350000000000000000000000000000000000000000000000000000000000181036000000000000000000000000000000000000000000000000000000000018103700000000000000000000000000000000000000000000000000000000001810380000000000000000000000000000000000000000000000000000000000181039000000000000000000000000000000000000000000000000000000000018103a000000000000000000000000000000000000000000000000000000000018103b000000000000000000000000000000000000000000000000000000000018103c000000000000000000000000000000000000000000000000000000000018103d000000000000000000000000000000000000000000000000000000000018103e000000000000000000000000000000000000000000000000000000000018103f4000000000000000000000000000000000000000000000000000000000001800010000000000000000000000000000000000000000000000000000000000181100000000000000000000000000000000000000000000000000000000000018110100000000000000000000000000000000000000000000000000000000001811020000000000000000000000000000000000000000000000000000000000181103000000000000000000000000000000000000000000000000000000000018110400000000000000000000000000000000000000000000000000000000001811050000000000000000000000000000000000000000000000000000000000181106000000000000000000000000000000000000000000000000000000000018110700000000000000000000000000000000000000000000000000000000001811080000000000000000000000000000000000000000000000000000000000181109000000000000000000000000000000000000000000000000000000000018110a000000000000000000000000000000000000000000000000000000000018110b000000000000000000000000000000000000000000000000000000000018110c000000000000000000000000000000000000000000000000000000000018110d000000000000000000000000000000000000000000000000000000000018110e000000000000000000000000000000000000000000000000000000000018110f0000000000000000000000000000000000000000000000000000000000181110000000000000000000000000000000000000000000000000000000000018111100000000000000000000000000000000000000000000000000000000001811120000000000000000000000000000000000000000000000000000000000181113000000000000000000000000000000000000000000000000000000000018111400000000000000000000000000000000000000000000000000000000001811150000000000000000000000000000000000000000000000000000000000181116000000000000000000000000000000000000000000000000000000000018111700000000000000000000000000000000000000000000000000000000001811180000000000000000000000000000000000000000000000000000000000181119000000000000000000000000000000000000000000000000000000000018111a000000000000000000000000000000000000000000000000000000000018111b000000000000000000000000000000000000000000000000000000000018111c000000000000000000000000000000000000000000000000000000000018111d000000000000000000000000000000000000000000000000000000000018111e000000000000000000000000000000000000000000000000000000000018111f0000000000000000000000000000000000000000000000000000000000181120000000000000000000000000000000000000000000000000000000000018112100000000000000000000000000000000000000000000000000000000001811220000000000000000000000000000000000000000000000000000000000181123000000000000000000000000000000000000000000000000000000000018112400000000000000000000000000000000000000000000000000000000001811250000000000000000000000000000000000000000000000000000000000181126000000000000000000000000000000000000000000000000000000000018112700000000000000000000000000000000000000000000000000000000001811280000000000000000000000000000000000000000000000000000000000181129000000000000000000000000000000000000000000000000000000000018112a000000000000000000000000000000000000000000000000000000000018112b000000000000000000000000000000000000000000000000000000000018112c000000000000000000000000000000000000000000000000000000000018112d000000000000000000000000000000000000000000000000000000000018112e000000000000000000000000000000000000000000000000000000000018112f0000000000000000000000000000000000000000000000000000000000181130000000000000000000000000000000000000000000000000000000000018113100000000000000000000000000000000000000000000000000000000001811320000000000000000000000000000000000000000000000000000000000181133000000000000000000000000000000000000000000000000000000000018113400000000000000000000000000000000000000000000000000000000001811350000000000000000000000000000000000000000000000000000000000181136000000000000000000000000000000000000000000000000000000000018113700000000000000000000000000000000000000000000000000000000001811380000000000000000000000000000000000000000000000000000000000181139000000000000000000000000000000000000000000000000000000000018113a000000000000000000000000000000000000000000000000000000000018113b000000000000000000000000000000000000000000000000000000000018113c000000000000000000000000000000000000000000000000000000000018113d000000000000000000000000000000000000000000000000000000000018113e0800f872eb9653f03af10f331da1361fa1524d3cd958cb72dacea1d424f19df3af00ffc548a17cd6ba1f2d228f30e4ddb19ecc46ad3b609977d52bb0f49e1206410032f8058bd779c520eabae2743b02ec4f71670428506fcceb2d4b69f26fb11800c0283e15fbf74ffa4eafb984030394f3c2ea6733cc0eacb0431a9475eff28f00b7f55314bfd9d441c1c624e241908228fe4da3d3a0a7fbd56814e1c8cd5d3e00f430f33a786675271736fd728c7bf7428b8c24ac948d7faf76ddb8783a496c0048fc235ead8d4b9d44929662a6384074fc4e5076bec5b7deb34f612393684300fd9b61cb1ad9b4b28f58399906e73933e3cccee8fc98a393f0eedb95b13ee6400000000000000000000000000000000000000000000000000000000000182000000000000000000000000000000000000000000000000000000000000018200a0000000000000000000000000000000000000000000000000000000000182001000000000000000000000000000000000000000000000000000000000018200b0000000000000000000000000000000000000000000000000000000000182002000000000000000000000000000000000000000000000000000000000018200c0000000000000000000000000000000000000000000000000000000000182003000000000000000000000000000000000000000000000000000000000018200d0000000000000000000000000000000000000000000000000000000000182004000000000000000000000000000000000000000000000000000000000018200e0000000000000000000000000000000000000000000000000000000000182005000000000000000000000000000000000000000000000000000000000018200f00000000000000000000000000000000000000000000000000000000001820060000000000000000000000000000000000000000000000000000000000182010000000000000000000000000000000000000000000000000000000000018200700000000000000000000000000000000000000000000000000000000001820110000000000000000000000000000000000000000000000000000000000182008000000000000000000000000000000000000000000000000000000000018201200000000000000000000000000000000000000000000000000000000001820090000000000000000000000000000000000000000000000000000000000182013000000000000000000000000000000000000000000000000000000000018200a0000000000000000000000000000000000000000000000000000000000182014000000000000000000000000000000000000000000000000000000000018200b0000000000000000000000000000000000000000000000000000000000182015000000000000000000000000000000000000000000000000000000000018200c0000000000000000000000000000000000000000000000000000000000182016000000000000000000000000000000000000000000000000000000000018200d0000000000000000000000000000000000000000000000000000000000182017000000000000000000000000000000000000000000000000000000000018200e0000000000000000000000000000000000000000000000000000000000182018000000000000000000000000000000000000000000000000000000000018200f00000000000000000000000000000000000000000000000000000000001820190000000000000000000000000000000000000000000000000000000000182010000000000000000000000000000000000000000000000000000000000018201a0000000000000000000000000000000000000000000000000000000000182011000000000000000000000000000000000000000000000000000000000018201b0000000000000000000000000000000000000000000000000000000000182012000000000000000000000000000000000000000000000000000000000018201c0000000000000000000000000000000000000000000000000000000000182013000000000000000000000000000000000000000000000000000000000018201d0000000000000000000000000000000000000000000000000000000000182014000000000000000000000000000000000000000000000000000000000018201e0000000000000000000000000000000000000000000000000000000000182015000000000000000000000000000000000000000000000000000000000018201f00000000000000000000000000000000000000000000000000000000001820160000000000000000000000000000000000000000000000000000000000182020000000000000000000000000000000000000000000000000000000000018201700000000000000000000000000000000000000000000000000000000001820210000000000000000000000000000000000000000000000000000000000182018000000000000000000000000000000000000000000000000000000000018202200000000000000000000000000000000000000000000000000000000001820190000000000000000000000000000000000000000000000000000000000182023000000000000000000000000000000000000000000000000000000000018201a0000000000000000000000000000000000000000000000000000000000182024000000000000000000000000000000000000000000000000000000000018201b0000000000000000000000000000000000000000000000000000000000182025000000000000000000000000000000000000000000000000000000000018201c0000000000000000000000000000000000000000000000000000000000182026000000000000000000000000000000000000000000000000000000000018201d0000000000000000000000000000000000000000000000000000000000182027000000000000000000000000000000000000000000000000000000000018201e0000000000000000000000000000000000000000000000000000000000182028000000000000000000000000000000000000000000000000000000000018201f00000000000000000000000000000000000000000000000000000000001820290000000000000000000000000000000000000000000000000000000000182020000000000000000000000000000000000000000000000000000000000018202a0000000000000000000000000000000000000000000000000000000000182021000000000000000000000000000000000000000000000000000000000018202b0000000000000000000000000000000000000000000000000000000000182022000000000000000000000000000000000000000000000000000000000018202c0000000000000000000000000000000000000000000000000000000000182023000000000000000000000000000000000000000000000000000000000018202d0000000000000000000000000000000000000000000000000000000000182024000000000000000000000000000000000000000000000000000000000018202e0000000000000000000000000000000000000000000000000000000000182025000000000000000000000000000000000000000000000000000000000018202f00000000000000000000000000000000000000000000000000000000001820260000000000000000000000000000000000000000000000000000000000182030000000000000000000000000000000000000000000000000000000000018202700000000000000000000000000000000000000000000000000000000001820310000000000000000000000000000000000000000000000000000000000182028000000000000000000000000000000000000000000000000000000000018203200000000000000000000000000000000000000000000000000000000001820290000000000000000000000000000000000000000000000000000000000182033000000000000000000000000000000000000000000000000000000000018202a0000000000000000000000000000000000000000000000000000000000182034000000000000000000000000000000000000000000000000000000000018202b0000000000000000000000000000000000000000000000000000000000182035000000000000000000000000000000000000000000000000000000000018202c0000000000000000000000000000000000000000000000000000000000182036000000000000000000000000000000000000000000000000000000000018202d0000000000000000000000000000000000000000000000000000000000182037000000000000000000000000000000000000000000000000000000000018202e0000000000000000000000000000000000000000000000000000000000182038000000000000000000000000000000000000000000000000000000000018202f00000000000000000000000000000000000000000000000000000000001820390000000000000000000000000000000000000000000000000000000000182030000000000000000000000000000000000000000000000000000000000018203a0000000000000000000000000000000000000000000000000000000000182031000000000000000000000000000000000000000000000000000000000018203b0000000000000000000000000000000000000000000000000000000000182032000000000000000000000000000000000000000000000000000000000018203c0000000000000000000000000000000000000000000000000000000000182033000000000000000000000000000000000000000000000000000000000018203d0000000000000000000000000000000000000000000000000000000000182034000000000000000000000000000000000000000000000000000000000018203e0000000000000000000000000000000000000000000000000000000000182035000000000000000000000000000000000000000000000000000000000018203f00000000000000000000000000000000000000000000000000000000001820360000000000000000000000000000000000000000000000000000000000182040000000000000000000000000000000000000000000000000000000000018203700000000000000000000000000000000000000000000000000000000001820410000000000000000000000000000000000000000000000000000000000182038000000000000000000000000000000000000000000000000000000000018204200000000000000000000000000000000000000000000000000000000001820390000000000000000000000000000000000000000000000000000000000182043000000000000000000000000000000000000000000000000000000000018203a0000000000000000000000000000000000000000000000000000000000182044000000000000000000000000000000000000000000000000000000000018203b0000000000000000000000000000000000000000000000000000000000182045000000000000000000000000000000000000000000000000000000000018203c0000000000000000000000000000000000000000000000000000000000182046000000000000000000000000000000000000000000000000000000000018203d0000000000000000000000000000000000000000000000000000000000182047000000000000000000000000000000000000000000000000000000000018203e0000000000000000000000000000000000000000000000000000000000182048000000000000000000000000000000000000000000000000000000000018203f0000000000000000000000000000000000000000000000000000000000182049200000000000000000000000000000000000000000000000000000000000181700000000000000000000000000000000000000000000000000000000000018170100000000000000000000000000000000000000000000000000000000001817020000000000000000000000000000000000000000000000000000000000181703000000000000000000000000000000000000000000000000000000000018170400000000000000000000000000000000000000000000000000000000001817050000000000000000000000000000000000000000000000000000000000181706000000000000000000000000000000000000000000000000000000000018170700000000000000000000000000000000000000000000000000000000001817080000000000000000000000000000000000000000000000000000000000181709000000000000000000000000000000000000000000000000000000000018170a000000000000000000000000000000000000000000000000000000000018170b000000000000000000000000000000000000000000000000000000000018170c000000000000000000000000000000000000000000000000000000000018170d000000000000000000000000000000000000000000000000000000000018170e000000000000000000000000000000000000000000000000000000000018170f00000000000000000000000000000000000000000000000000000000001817100000000000000000000000000000000000000000000000000000000000181711000000000000000000000000000000000000000000000000000000000018170100000000000000000000000000000000000000000000000000000000001817020000000000000000000000000000000000000000000000000000000000181703000000000000000000000000000000000000000000000000000000000018170400000000000000000000000000000000000000000000000000000000001817050000000000000000000000000000000000000000000000000000000000181706000000000000000000000000000000000000000000000000000000000018170700000000000000000000000000000000000000000000000000000000001817080000000000000000000000000000000000000000000000000000000000181709000000000000000000000000000000000000000000000000000000000018170a000000000000000000000000000000000000000000000000000000000018170b000000000000000000000000000000000000000000000000000000000018170c000000000000000000000000000000000000000000000000000000000018170d000000000000000000000000000000000000000000000000000000000018170e000000000000000000000000000000000000000000000000000000000018170f00000000000000000000000000000000000000000000000000000000001817100000000000000000000000000000000000000000000000000000000000181711000000000000000000000000000000000000000000000000000000000018171200000000000000000000000000000000000000000000000000000000001817020000000000000000000000000000000000000000000000000000000000181703000000000000000000000000000000000000000000000000000000000018170400000000000000000000000000000000000000000000000000000000001817050000000000000000000000000000000000000000000000000000000000181706000000000000000000000000000000000000000000000000000000000018170700000000000000000000000000000000000000000000000000000000001817080000000000000000000000000000000000000000000000000000000000181709000000000000000000000000000000000000000000000000000000000018170a000000000000000000000000000000000000000000000000000000000018170b000000000000000000000000000000000000000000000000000000000018170c000000000000000000000000000000000000000000000000000000000018170d000000000000000000000000000000000000000000000000000000000018170e000000000000000000000000000000000000000000000000000000000018170f00000000000000000000000000000000000000000000000000000000001817100000000000000000000000000000000000000000000000000000000000181711000000000000000000000000000000000000000000000000000000000018171200000000000000000000000000000000000000000000000000000000001817130000000000000000000000000000000000000000000000000000000000181703000000000000000000000000000000000000000000000000000000000018170400000000000000000000000000000000000000000000000000000000001817050000000000000000000000000000000000000000000000000000000000181706000000000000000000000000000000000000000000000000000000000018170700000000000000000000000000000000000000000000000000000000001817080000000000000000000000000000000000000000000000000000000000181709000000000000000000000000000000000000000000000000000000000018170a000000000000000000000000000000000000000000000000000000000018170b000000000000000000000000000000000000000000000000000000000018170c000000000000000000000000000000000000000000000000000000000018170d000000000000000000000000000000000000000000000000000000000018170e000000000000000000000000000000000000000000000000000000000018170f00000000000000000000000000000000000000000000000000000000001817100000000000000000000000000000000000000000000000000000000000181711000000000000000000000000000000000000000000000000000000000018171200000000000000000000000000000000000000000000000000000000001817130000000000000000000000000000000000000000000000000000000000181714000000000000000000000000000000000000000000000000000000000018170400000000000000000000000000000000000000000000000000000000001817050000000000000000000000000000000000000000000000000000000000181706000000000000000000000000000000000000000000000000000000000018170700000000000000000000000000000000000000000000000000000000001817080000000000000000000000000000000000000000000000000000000000181709000000000000000000000000000000000000000000000000000000000018170a000000000000000000000000000000000000000000000000000000000018170b000000000000000000000000000000000000000000000000000000000018170c000000000000000000000000000000000000000000000000000000000018170d000000000000000000000000000000000000000000000000000000000018170e000000000000000000000000000000000000000000000000000000000018170f00000000000000000000000000000000000000000000000000000000001817100000000000000000000000000000000000000000000000000000000000181711000000000000000000000000000000000000000000000000000000000018171200000000000000000000000000000000000000000000000000000000001817130000000000000000000000000000000000000000000000000000000000181714000000000000000000000000000000000000000000000000000000000018171500000000000000000000000000000000000000000000000000000000001817050000000000000000000000000000000000000000000000000000000000181706000000000000000000000000000000000000000000000000000000000018170700000000000000000000000000000000000000000000000000000000001817080000000000000000000000000000000000000000000000000000000000181709000000000000000000000000000000000000000000000000000000000018170a000000000000000000000000000000000000000000000000000000000018170b000000000000000000000000000000000000000000000000000000000018170c000000000000000000000000000000000000000000000000000000000018170d000000000000000000000000000000000000000000000000000000000018170e000000000000000000000000000000000000000000000000000000000018170f00000000000000000000000000000000000000000000000000000000001817100000000000000000000000000000000000000000000000000000000000181711000000000000000000000000000000000000000000000000000000000018171200000000000000000000000000000000000000000000000000000000001817130000000000000000000000000000000000000000000000000000000000181714000000000000000000000000000000000000000000000000000000000018171500000000000000000000000000000000000000000000000000000000001817160000000000000000000000000000000000000000000000000000000000181706000000000000000000000000000000000000000000000000000000000018170700000000000000000000000000000000000000000000000000000000001817080000000000000000000000000000000000000000000000000000000000181709000000000000000000000000000000000000000000000000000000000018170a000000000000000000000000000000000000000000000000000000000018170b000000000000000000000000000000000000000000000000000000000018170c000000000000000000000000000000000000000000000000000000000018170d000000000000000000000000000000000000000000000000000000000018170e000000000000000000000000000000000000000000000000000000000018170f00000000000000000000000000000000000000000000000000000000001817100000000000000000000000000000000000000000000000000000000000181711000000000000000000000000000000000000000000000000000000000018171200000000000000000000000000000000000000000000000000000000001817130000000000000000000000000000000000000000000000000000000000181714000000000000000000000000000000000000000000000000000000000018171500000000000000000000000000000000000000000000000000000000001817160000000000000000000000000000000000000000000000000000000000181717000000000000000000000000000000000000000000000000000000000018170700000000000000000000000000000000000000000000000000000000001817080000000000000000000000000000000000000000000000000000000000181709000000000000000000000000000000000000000000000000000000000018170a000000000000000000000000000000000000000000000000000000000018170b000000000000000000000000000000000000000000000000000000000018170c000000000000000000000000000000000000000000000000000000000018170d000000000000000000000000000000000000000000000000000000000018170e000000000000000000000000000000000000000000000000000000000018170f00000000000000000000000000000000000000000000000000000000001817100000000000000000000000000000000000000000000000000000000000181711000000000000000000000000000000000000000000000000000000000018171200000000000000000000000000000000000000000000000000000000001817130000000000000000000000000000000000000000000000000000000000181714000000000000000000000000000000000000000000000000000000000018171500000000000000000000000000000000000000000000000000000000001817160000000000000000000000000000000000000000000000000000000000181717000000000000000000000000000000000000000000000000000000000018171800000000000000000000000000000000000000000000000000000000001817080000000000000000000000000000000000000000000000000000000000181709000000000000000000000000000000000000000000000000000000000018170a000000000000000000000000000000000000000000000000000000000018170b000000000000000000000000000000000000000000000000000000000018170c000000000000000000000000000000000000000000000000000000000018170d000000000000000000000000000000000000000000000000000000000018170e000000000000000000000000000000000000000000000000000000000018170f00000000000000000000000000000000000000000000000000000000001817100000000000000000000000000000000000000000000000000000000000181711000000000000000000000000000000000000000000000000000000000018171200000000000000000000000000000000000000000000000000000000001817130000000000000000000000000000000000000000000000000000000000181714000000000000000000000000000000000000000000000000000000000018171500000000000000000000000000000000000000000000000000000000001817160000000000000000000000000000000000000000000000000000000000181717000000000000000000000000000000000000000000000000000000000018171800000000000000000000000000000000000000000000000000000000001817190000000000000000000000000000000000000000000000000000000000181709000000000000000000000000000000000000000000000000000000000018170a000000000000000000000000000000000000000000000000000000000018170b000000000000000000000000000000000000000000000000000000000018170c000000000000000000000000000000000000000000000000000000000018170d000000000000000000000000000000000000000000000000000000000018170e000000000000000000000000000000000000000000000000000000000018170f0000000000000000000000000000000000000000000000000000000000181710000000000000000000000000000000000000000000000000000000000018171100000000000000000000000000000000000000000000000000000000001817120000000000000000000000000000000000000000000000000000000000181713000000000000000000000000000000000000000000000000000000000018171400000000000000000000000000000000000000000000000000000000001817150000000000000000000000000000000000000000000000000000000000181716000000000000000000000000000000000000000000000000000000000018171700000000000000000000000000000000000000000000000000000000001817180000000000000000000000000000000000000000000000000000000000181719000000000000000000000000000000000000000000000000000000000018171a000000000000000000000000000000000000000000000000000000000018170a000000000000000000000000000000000000000000000000000000000018170b000000000000000000000000000000000000000000000000000000000018170c000000000000000000000000000000000000000000000000000000000018170d000000000000000000000000000000000000000000000000000000000018170e000000000000000000000000000000000000000000000000000000000018170f0000000000000000000000000000000000000000000000000000000000181710000000000000000000000000000000000000000000000000000000000018171100000000000000000000000000000000000000000000000000000000001817120000000000000000000000000000000000000000000000000000000000181713000000000000000000000000000000000000000000000000000000000018171400000000000000000000000000000000000000000000000000000000001817150000000000000000000000000000000000000000000000000000000000181716000000000000000000000000000000000000000000000000000000000018171700000000000000000000000000000000000000000000000000000000001817180000000000000000000000000000000000000000000000000000000000181719000000000000000000000000000000000000000000000000000000000018171a000000000000000000000000000000000000000000000000000000000018171b000000000000000000000000000000000000000000000000000000000018170b000000000000000000000000000000000000000000000000000000000018170c000000000000000000000000000000000000000000000000000000000018170d000000000000000000000000000000000000000000000000000000000018170e000000000000000000000000000000000000000000000000000000000018170f0000000000000000000000000000000000000000000000000000000000181710000000000000000000000000000000000000000000000000000000000018171100000000000000000000000000000000000000000000000000000000001817120000000000000000000000000000000000000000000000000000000000181713000000000000000000000000000000000000000000000000000000000018171400000000000000000000000000000000000000000000000000000000001817150000000000000000000000000000000000000000000000000000000000181716000000000000000000000000000000000000000000000000000000000018171700000000000000000000000000000000000000000000000000000000001817180000000000000000000000000000000000000000000000000000000000181719000000000000000000000000000000000000000000000000000000000018171a000000000000000000000000000000000000000000000000000000000018171b000000000000000000000000000000000000000000000000000000000018171c000000000000000000000000000000000000000000000000000000000018170c000000000000000000000000000000000000000000000000000000000018170d000000000000000000000000000000000000000000000000000000000018170e000000000000000000000000000000000000000000000000000000000018170f0000000000000000000000000000000000000000000000000000000000181710000000000000000000000000000000000000000000000000000000000018171100000000000000000000000000000000000000000000000000000000001817120000000000000000000000000000000000000000000000000000000000181713000000000000000000000000000000000000000000000000000000000018171400000000000000000000000000000000000000000000000000000000001817150000000000000000000000000000000000000000000000000000000000181716000000000000000000000000000000000000000000000000000000000018171700000000000000000000000000000000000000000000000000000000001817180000000000000000000000000000000000000000000000000000000000181719000000000000000000000000000000000000000000000000000000000018171a000000000000000000000000000000000000000000000000000000000018171b000000000000000000000000000000000000000000000000000000000018171c000000000000000000000000000000000000000000000000000000000018171d000000000000000000000000000000000000000000000000000000000018170d000000000000000000000000000000000000000000000000000000000018170e000000000000000000000000000000000000000000000000000000000018170f0000000000000000000000000000000000000000000000000000000000181710000000000000000000000000000000000000000000000000000000000018171100000000000000000000000000000000000000000000000000000000001817120000000000000000000000000000000000000000000000000000000000181713000000000000000000000000000000000000000000000000000000000018171400000000000000000000000000000000000000000000000000000000001817150000000000000000000000000000000000000000000000000000000000181716000000000000000000000000000000000000000000000000000000000018171700000000000000000000000000000000000000000000000000000000001817180000000000000000000000000000000000000000000000000000000000181719000000000000000000000000000000000000000000000000000000000018171a000000000000000000000000000000000000000000000000000000000018171b000000000000000000000000000000000000000000000000000000000018171c000000000000000000000000000000000000000000000000000000000018171d000000000000000000000000000000000000000000000000000000000018171e000000000000000000000000000000000000000000000000000000000018170e000000000000000000000000000000000000000000000000000000000018170f0000000000000000000000000000000000000000000000000000000000181710000000000000000000000000000000000000000000000000000000000018171100000000000000000000000000000000000000000000000000000000001817120000000000000000000000000000000000000000000000000000000000181713000000000000000000000000000000000000000000000000000000000018171400000000000000000000000000000000000000000000000000000000001817150000000000000000000000000000000000000000000000000000000000181716000000000000000000000000000000000000000000000000000000000018171700000000000000000000000000000000000000000000000000000000001817180000000000000000000000000000000000000000000000000000000000181719000000000000000000000000000000000000000000000000000000000018171a000000000000000000000000000000000000000000000000000000000018171b000000000000000000000000000000000000000000000000000000000018171c000000000000000000000000000000000000000000000000000000000018171d000000000000000000000000000000000000000000000000000000000018171e000000000000000000000000000000000000000000000000000000000018171f000000000000000000000000000000000000000000000000000000000018170f0000000000000000000000000000000000000000000000000000000000181710000000000000000000000000000000000000000000000000000000000018171100000000000000000000000000000000000000000000000000000000001817120000000000000000000000000000000000000000000000000000000000181713000000000000000000000000000000000000000000000000000000000018171400000000000000000000000000000000000000000000000000000000001817150000000000000000000000000000000000000000000000000000000000181716000000000000000000000000000000000000000000000000000000000018171700000000000000000000000000000000000000000000000000000000001817180000000000000000000000000000000000000000000000000000000000181719000000000000000000000000000000000000000000000000000000000018171a000000000000000000000000000000000000000000000000000000000018171b000000000000000000000000000000000000000000000000000000000018171c000000000000000000000000000000000000000000000000000000000018171d000000000000000000000000000000000000000000000000000000000018171e000000000000000000000000000000000000000000000000000000000018171f00000000000000000000000000000000000000000000000000000000001817200000000000000000000000000000000000000000000000000000000000181710000000000000000000000000000000000000000000000000000000000018171100000000000000000000000000000000000000000000000000000000001817120000000000000000000000000000000000000000000000000000000000181713000000000000000000000000000000000000000000000000000000000018171400000000000000000000000000000000000000000000000000000000001817150000000000000000000000000000000000000000000000000000000000181716000000000000000000000000000000000000000000000000000000000018171700000000000000000000000000000000000000000000000000000000001817180000000000000000000000000000000000000000000000000000000000181719000000000000000000000000000000000000000000000000000000000018171a000000000000000000000000000000000000000000000000000000000018171b000000000000000000000000000000000000000000000000000000000018171c000000000000000000000000000000000000000000000000000000000018171d000000000000000000000000000000000000000000000000000000000018171e000000000000000000000000000000000000000000000000000000000018171f00000000000000000000000000000000000000000000000000000000001817200000000000000000000000000000000000000000000000000000000000181721000000000000000000000000000000000000000000000000000000000018171100000000000000000000000000000000000000000000000000000000001817120000000000000000000000000000000000000000000000000000000000181713000000000000000000000000000000000000000000000000000000000018171400000000000000000000000000000000000000000000000000000000001817150000000000000000000000000000000000000000000000000000000000181716000000000000000000000000000000000000000000000000000000000018171700000000000000000000000000000000000000000000000000000000001817180000000000000000000000000000000000000000000000000000000000181719000000000000000000000000000000000000000000000000000000000018171a000000000000000000000000000000000000000000000000000000000018171b000000000000000000000000000000000000000000000000000000000018171c000000000000000000000000000000000000000000000000000000000018171d000000000000000000000000000000000000000000000000000000000018171e000000000000000000000000000000000000000000000000000000000018171f00000000000000000000000000000000000000000000000000000000001817200000000000000000000000000000000000000000000000000000000000181721000000000000000000000000000000000000000000000000000000000018172200000000000000000000000000000000000000000000000000000000001817120000000000000000000000000000000000000000000000000000000000181713000000000000000000000000000000000000000000000000000000000018171400000000000000000000000000000000000000000000000000000000001817150000000000000000000000000000000000000000000000000000000000181716000000000000000000000000000000000000000000000000000000000018171700000000000000000000000000000000000000000000000000000000001817180000000000000000000000000000000000000000000000000000000000181719000000000000000000000000000000000000000000000000000000000018171a000000000000000000000000000000000000000000000000000000000018171b000000000000000000000000000000000000000000000000000000000018171c000000000000000000000000000000000000000000000000000000000018171d000000000000000000000000000000000000000000000000000000000018171e000000000000000000000000000000000000000000000000000000000018171f00000000000000000000000000000000000000000000000000000000001817200000000000000000000000000000000000000000000000000000000000181721000000000000000000000000000000000000000000000000000000000018172200000000000000000000000000000000000000000000000000000000001817230000000000000000000000000000000000000000000000000000000000181713000000000000000000000000000000000000000000000000000000000018171400000000000000000000000000000000000000000000000000000000001817150000000000000000000000000000000000000000000000000000000000181716000000000000000000000000000000000000000000000000000000000018171700000000000000000000000000000000000000000000000000000000001817180000000000000000000000000000000000000000000000000000000000181719000000000000000000000000000000000000000000000000000000000018171a000000000000000000000000000000000000000000000000000000000018171b000000000000000000000000000000000000000000000000000000000018171c000000000000000000000000000000000000000000000000000000000018171d000000000000000000000000000000000000000000000000000000000018171e000000000000000000000000000000000000000000000000000000000018171f00000000000000000000000000000000000000000000000000000000001817200000000000000000000000000000000000000000000000000000000000181721000000000000000000000000000000000000000000000000000000000018172200000000000000000000000000000000000000000000000000000000001817230000000000000000000000000000000000000000000000000000000000181724000000000000000000000000000000000000000000000000000000000018171400000000000000000000000000000000000000000000000000000000001817150000000000000000000000000000000000000000000000000000000000181716000000000000000000000000000000000000000000000000000000000018171700000000000000000000000000000000000000000000000000000000001817180000000000000000000000000000000000000000000000000000000000181719000000000000000000000000000000000000000000000000000000000018171a000000000000000000000000000000000000000000000000000000000018171b000000000000000000000000000000000000000000000000000000000018171c000000000000000000000000000000000000000000000000000000000018171d000000000000000000000000000000000000000000000000000000000018171e000000000000000000000000000000000000000000000000000000000018171f00000000000000000000000000000000000000000000000000000000001817200000000000000000000000000000000000000000000000000000000000181721000000000000000000000000000000000000000000000000000000000018172200000000000000000000000000000000000000000000000000000000001817230000000000000000000000000000000000000000000000000000000000181724000000000000000000000000000000000000000000000000000000000018172500000000000000000000000000000000000000000000000000000000001817150000000000000000000000000000000000000000000000000000000000181716000000000000000000000000000000000000000000000000000000000018171700000000000000000000000000000000000000000000000000000000001817180000000000000000000000000000000000000000000000000000000000181719000000000000000000000000000000000000000000000000000000000018171a000000000000000000000000000000000000000000000000000000000018171b000000000000000000000000000000000000000000000000000000000018171c000000000000000000000000000000000000000000000000000000000018171d000000000000000000000000000000000000000000000000000000000018171e000000000000000000000000000000000000000000000000000000000018171f00000000000000000000000000000000000000000000000000000000001817200000000000000000000000000000000000000000000000000000000000181721000000000000000000000000000000000000000000000000000000000018172200000000000000000000000000000000000000000000000000000000001817230000000000000000000000000000000000000000000000000000000000181724000000000000000000000000000000000000000000000000000000000018172500000000000000000000000000000000000000000000000000000000001817260000000000000000000000000000000000000000000000000000000000181716000000000000000000000000000000000000000000000000000000000018171700000000000000000000000000000000000000000000000000000000001817180000000000000000000000000000000000000000000000000000000000181719000000000000000000000000000000000000000000000000000000000018171a000000000000000000000000000000000000000000000000000000000018171b000000000000000000000000000000000000000000000000000000000018171c000000000000000000000000000000000000000000000000000000000018171d000000000000000000000000000000000000000000000000000000000018171e000000000000000000000000000000000000000000000000000000000018171f00000000000000000000000000000000000000000000000000000000001817200000000000000000000000000000000000000000000000000000000000181721000000000000000000000000000000000000000000000000000000000018172200000000000000000000000000000000000000000000000000000000001817230000000000000000000000000000000000000000000000000000000000181724000000000000000000000000000000000000000000000000000000000018172500000000000000000000000000000000000000000000000000000000001817260000000000000000000000000000000000000000000000000000000000181727000000000000000000000000000000000000000000000000000000000018171700000000000000000000000000000000000000000000000000000000001817180000000000000000000000000000000000000000000000000000000000181719000000000000000000000000000000000000000000000000000000000018171a000000000000000000000000000000000000000000000000000000000018171b000000000000000000000000000000000000000000000000000000000018171c000000000000000000000000000000000000000000000000000000000018171d000000000000000000000000000000000000000000000000000000000018171e000000000000000000000000000000000000000000000000000000000018171f00000000000000000000000000000000000000000000000000000000001817200000000000000000000000000000000000000000000000000000000000181721000000000000000000000000000000000000000000000000000000000018172200000000000000000000000000000000000000000000000000000000001817230000000000000000000000000000000000000000000000000000000000181724000000000000000000000000000000000000000000000000000000000018172500000000000000000000000000000000000000000000000000000000001817260000000000000000000000000000000000000000000000000000000000181727000000000000000000000000000000000000000000000000000000000018172800000000000000000000000000000000000000000000000000000000001817180000000000000000000000000000000000000000000000000000000000181719000000000000000000000000000000000000000000000000000000000018171a000000000000000000000000000000000000000000000000000000000018171b000000000000000000000000000000000000000000000000000000000018171c000000000000000000000000000000000000000000000000000000000018171d000000000000000000000000000000000000000000000000000000000018171e000000000000000000000000000000000000000000000000000000000018171f00000000000000000000000000000000000000000000000000000000001817200000000000000000000000000000000000000000000000000000000000181721000000000000000000000000000000000000000000000000000000000018172200000000000000000000000000000000000000000000000000000000001817230000000000000000000000000000000000000000000000000000000000181724000000000000000000000000000000000000000000000000000000000018172500000000000000000000000000000000000000000000000000000000001817260000000000000000000000000000000000000000000000000000000000181727000000000000000000000000000000000000000000000000000000000018172800000000000000000000000000000000000000000000000000000000001817290000000000000000000000000000000000000000000000000000000000181719000000000000000000000000000000000000000000000000000000000018171a000000000000000000000000000000000000000000000000000000000018171b000000000000000000000000000000000000000000000000000000000018171c000000000000000000000000000000000000000000000000000000000018171d000000000000000000000000000000000000000000000000000000000018171e000000000000000000000000000000000000000000000000000000000018171f0000000000000000000000000000000000000000000000000000000000181720000000000000000000000000000000000000000000000000000000000018172100000000000000000000000000000000000000000000000000000000001817220000000000000000000000000000000000000000000000000000000000181723000000000000000000000000000000000000000000000000000000000018172400000000000000000000000000000000000000000000000000000000001817250000000000000000000000000000000000000000000000000000000000181726000000000000000000000000000000000000000000000000000000000018172700000000000000000000000000000000000000000000000000000000001817280000000000000000000000000000000000000000000000000000000000181729000000000000000000000000000000000000000000000000000000000018172a000000000000000000000000000000000000000000000000000000000018171a000000000000000000000000000000000000000000000000000000000018171b000000000000000000000000000000000000000000000000000000000018171c000000000000000000000000000000000000000000000000000000000018171d000000000000000000000000000000000000000000000000000000000018171e000000000000000000000000000000000000000000000000000000000018171f0000000000000000000000000000000000000000000000000000000000181720000000000000000000000000000000000000000000000000000000000018172100000000000000000000000000000000000000000000000000000000001817220000000000000000000000000000000000000000000000000000000000181723000000000000000000000000000000000000000000000000000000000018172400000000000000000000000000000000000000000000000000000000001817250000000000000000000000000000000000000000000000000000000000181726000000000000000000000000000000000000000000000000000000000018172700000000000000000000000000000000000000000000000000000000001817280000000000000000000000000000000000000000000000000000000000181729000000000000000000000000000000000000000000000000000000000018172a000000000000000000000000000000000000000000000000000000000018172b000000000000000000000000000000000000000000000000000000000018171b000000000000000000000000000000000000000000000000000000000018171c000000000000000000000000000000000000000000000000000000000018171d000000000000000000000000000000000000000000000000000000000018171e000000000000000000000000000000000000000000000000000000000018171f0000000000000000000000000000000000000000000000000000000000181720000000000000000000000000000000000000000000000000000000000018172100000000000000000000000000000000000000000000000000000000001817220000000000000000000000000000000000000000000000000000000000181723000000000000000000000000000000000000000000000000000000000018172400000000000000000000000000000000000000000000000000000000001817250000000000000000000000000000000000000000000000000000000000181726000000000000000000000000000000000000000000000000000000000018172700000000000000000000000000000000000000000000000000000000001817280000000000000000000000000000000000000000000000000000000000181729000000000000000000000000000000000000000000000000000000000018172a000000000000000000000000000000000000000000000000000000000018172b000000000000000000000000000000000000000000000000000000000018172c000000000000000000000000000000000000000000000000000000000018171c000000000000000000000000000000000000000000000000000000000018171d000000000000000000000000000000000000000000000000000000000018171e000000000000000000000000000000000000000000000000000000000018171f0000000000000000000000000000000000000000000000000000000000181720000000000000000000000000000000000000000000000000000000000018172100000000000000000000000000000000000000000000000000000000001817220000000000000000000000000000000000000000000000000000000000181723000000000000000000000000000000000000000000000000000000000018172400000000000000000000000000000000000000000000000000000000001817250000000000000000000000000000000000000000000000000000000000181726000000000000000000000000000000000000000000000000000000000018172700000000000000000000000000000000000000000000000000000000001817280000000000000000000000000000000000000000000000000000000000181729000000000000000000000000000000000000000000000000000000000018172a000000000000000000000000000000000000000000000000000000000018172b000000000000000000000000000000000000000000000000000000000018172c000000000000000000000000000000000000000000000000000000000018172d000000000000000000000000000000000000000000000000000000000018171d000000000000000000000000000000000000000000000000000000000018171e000000000000000000000000000000000000000000000000000000000018171f0000000000000000000000000000000000000000000000000000000000181720000000000000000000000000000000000000000000000000000000000018172100000000000000000000000000000000000000000000000000000000001817220000000000000000000000000000000000000000000000000000000000181723000000000000000000000000000000000000000000000000000000000018172400000000000000000000000000000000000000000000000000000000001817250000000000000000000000000000000000000000000000000000000000181726000000000000000000000000000000000000000000000000000000000018172700000000000000000000000000000000000000000000000000000000001817280000000000000000000000000000000000000000000000000000000000181729000000000000000000000000000000000000000000000000000000000018172a000000000000000000000000000000000000000000000000000000000018172b000000000000000000000000000000000000000000000000000000000018172c000000000000000000000000000000000000000000000000000000000018172d000000000000000000000000000000000000000000000000000000000018172e000000000000000000000000000000000000000000000000000000000018171e000000000000000000000000000000000000000000000000000000000018171f0000000000000000000000000000000000000000000000000000000000181720000000000000000000000000000000000000000000000000000000000018172100000000000000000000000000000000000000000000000000000000001817220000000000000000000000000000000000000000000000000000000000181723000000000000000000000000000000000000000000000000000000000018172400000000000000000000000000000000000000000000000000000000001817250000000000000000000000000000000000000000000000000000000000181726000000000000000000000000000000000000000000000000000000000018172700000000000000000000000000000000000000000000000000000000001817280000000000000000000000000000000000000000000000000000000000181729000000000000000000000000000000000000000000000000000000000018172a000000000000000000000000000000000000000000000000000000000018172b000000000000000000000000000000000000000000000000000000000018172c000000000000000000000000000000000000000000000000000000000018172d000000000000000000000000000000000000000000000000000000000018172e000000000000000000000000000000000000000000000000000000000018172f000000000000000000000000000000000000000000000000000000000018171f0000000000000000000000000000000000000000000000000000000000181720000000000000000000000000000000000000000000000000000000000018172100000000000000000000000000000000000000000000000000000000001817220000000000000000000000000000000000000000000000000000000000181723000000000000000000000000000000000000000000000000000000000018172400000000000000000000000000000000000000000000000000000000001817250000000000000000000000000000000000000000000000000000000000181726000000000000000000000000000000000000000000000000000000000018172700000000000000000000000000000000000000000000000000000000001817280000000000000000000000000000000000000000000000000000000000181729000000000000000000000000000000000000000000000000000000000018172a000000000000000000000000000000000000000000000000000000000018172b000000000000000000000000000000000000000000000000000000000018172c000000000000000000000000000000000000000000000000000000000018172d000000000000000000000000000000000000000000000000000000000018172e000000000000000000000000000000000000000000000000000000000018172f0000000000000000000000000000000000000000000000000000000000181730000000140ab3d85fb5d53ed57e5e520b14f7a2532ee1b2e77c9f31277e6d3d49c727fe00000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000001c100000000000000000000000000000000000000000000000000000000000001c100100000000000000000000000000000000000000000000000000000000001c100200000000000000000000000000000000000000000000000000000000001c100300000000000000000000000000000000000000000000000000000000001c100400000000000000000000000000000000000000000000000000000000001c100500000000000000000000000000000000000000000000000000000000001c100600000000000000000000000000000000000000000000000000000000001c100700000000000000000000000000000000000000000000000000000000001c100800000000000000000000000000000000000000000000000000000000001c100900000000000000000000000000000000000000000000000000000000001c100a00000000000000000000000000000000000000000000000000000000001c100b00000000000000000000000000000000000000000000000000000000001c100c00000000000000000000000000000000000000000000000000000000001c100d00000000000000000000000000000000000000000000000000000000001c100e00000000000000000000000000000000000000000000000000000000001c100f00000000000000000000000000000000000000000000000000000000001c101000000000000000000000000000000000000000000000000000000000001c101100000000000000000000000000000000000000000000000000000000001c101200000000000000000000000000000000000000000000000000000000001c101300000000000000000000000000000000000000000000000000000000001c101400000000000000000000000000000000000000000000000000000000001c101500000000000000000000000000000000000000000000000000000000001c101600000000000000000000000000000000000000000000000000000000001c101700000000000000000000000000000000000000000000000000000000001c101800000000000000000000000000000000000000000000000000000000001c101900000000000000000000000000000000000000000000000000000000001c101a00000000000000000000000000000000000000000000000000000000001c101b00000000000000000000000000000000000000000000000000000000001c101c00000000000000000000000000000000000000000000000000000000001c101d00000000000000000000000000000000000000000000000000000000001c101e00000000000000000000000000000000000000000000000000000000001c101f00000000000000000000000000000000000000000000000000000000001c102000000000000000000000000000000000000000000000000000000000001c102100000000000000000000000000000000000000000000000000000000001c102200000000000000000000000000000000000000000000000000000000001c102300000000000000000000000000000000000000000000000000000000001c102400000000000000000000000000000000000000000000000000000000001c102500000000000000000000000000000000000000000000000000000000001c102600000000000000000000000000000000000000000000000000000000001c102700000000000000000000000000000000000000000000000000000000001c102800000000000000000000000000000000000000000000000000000000001c102900000000000000000000000000000000000000000000000000000000001c102a00000000000000000000000000000000000000000000000000000000001c102b00000000000000000000000000000000000000000000000000000000001c102c00000000000000000000000000000000000000000000000000000000001c102d00000000000000000000000000000000000000000000000000000000001c102e00000000000000000000000000000000000000000000000000000000001c102f00000000000000000000000000000000000000000000000000000000001c103000000000000000000000000000000000000000000000000000000000001c103100000000000000000000000000000000000000000000000000000000001c103200000000000000000000000000000000000000000000000000000000001c103300000000000000000000000000000000000000000000000000000000001c103400000000000000000000000000000000000000000000000000000000001c103500000000000000000000000000000000000000000000000000000000001c103600000000000000000000000000000000000000000000000000000000001c103700000000000000000000000000000000000000000000000000000000001c103800000000000000000000000000000000000000000000000000000000001c103900000000000000000000000000000000000000000000000000000000001c103a00000000000000000000000000000000000000000000000000000000001c103b00000000000000000000000000000000000000000000000000000000001c103c00000000000000000000000000000000000000000000000000000000001c103d00000000000000000000000000000000000000000000000000000000001c103e00000000000000000000000000000000000000000000000000000000001c103f4000000000000000000000000000000000000000000000000000000000001c000100000000000000000000000000000000000000000000000000000000001c110000000000000000000000000000000000000000000000000000000000001c110100000000000000000000000000000000000000000000000000000000001c110200000000000000000000000000000000000000000000000000000000001c110300000000000000000000000000000000000000000000000000000000001c110400000000000000000000000000000000000000000000000000000000001c110500000000000000000000000000000000000000000000000000000000001c110600000000000000000000000000000000000000000000000000000000001c110700000000000000000000000000000000000000000000000000000000001c110800000000000000000000000000000000000000000000000000000000001c110900000000000000000000000000000000000000000000000000000000001c110a00000000000000000000000000000000000000000000000000000000001c110b00000000000000000000000000000000000000000000000000000000001c110c00000000000000000000000000000000000000000000000000000000001c110d00000000000000000000000000000000000000000000000000000000001c110e00000000000000000000000000000000000000000000000000000000001c110f00000000000000000000000000000000000000000000000000000000001c111000000000000000000000000000000000000000000000000000000000001c111100000000000000000000000000000000000000000000000000000000001c111200000000000000000000000000000000000000000000000000000000001c111300000000000000000000000000000000000000000000000000000000001c111400000000000000000000000000000000000000000000000000000000001c111500000000000000000000000000000000000000000000000000000000001c111600000000000000000000000000000000000000000000000000000000001c111700000000000000000000000000000000000000000000000000000000001c111800000000000000000000000000000000000000000000000000000000001c111900000000000000000000000000000000000000000000000000000000001c111a00000000000000000000000000000000000000000000000000000000001c111b00000000000000000000000000000000000000000000000000000000001c111c00000000000000000000000000000000000000000000000000000000001c111d00000000000000000000000000000000000000000000000000000000001c111e00000000000000000000000000000000000000000000000000000000001c111f00000000000000000000000000000000000000000000000000000000001c112000000000000000000000000000000000000000000000000000000000001c112100000000000000000000000000000000000000000000000000000000001c112200000000000000000000000000000000000000000000000000000000001c112300000000000000000000000000000000000000000000000000000000001c112400000000000000000000000000000000000000000000000000000000001c112500000000000000000000000000000000000000000000000000000000001c112600000000000000000000000000000000000000000000000000000000001c112700000000000000000000000000000000000000000000000000000000001c112800000000000000000000000000000000000000000000000000000000001c112900000000000000000000000000000000000000000000000000000000001c112a00000000000000000000000000000000000000000000000000000000001c112b00000000000000000000000000000000000000000000000000000000001c112c00000000000000000000000000000000000000000000000000000000001c112d00000000000000000000000000000000000000000000000000000000001c112e00000000000000000000000000000000000000000000000000000000001c112f00000000000000000000000000000000000000000000000000000000001c113000000000000000000000000000000000000000000000000000000000001c113100000000000000000000000000000000000000000000000000000000001c113200000000000000000000000000000000000000000000000000000000001c113300000000000000000000000000000000000000000000000000000000001c113400000000000000000000000000000000000000000000000000000000001c113500000000000000000000000000000000000000000000000000000000001c113600000000000000000000000000000000000000000000000000000000001c113700000000000000000000000000000000000000000000000000000000001c113800000000000000000000000000000000000000000000000000000000001c113900000000000000000000000000000000000000000000000000000000001c113a00000000000000000000000000000000000000000000000000000000001c113b00000000000000000000000000000000000000000000000000000000001c113c00000000000000000000000000000000000000000000000000000000001c113d00000000000000000000000000000000000000000000000000000000001c113e08006838aa99533bea0d4204cad17cb3c147e99c2f9089e54a4289d54733eeada2002ab314bd11ace2494a3fb0970d276da39f0fe7da19c9a2438b9c7c334d32470071703d79d8425a7eca52006df6a8f9728508a83639e3e1c2ebae2b853a087c00c9501ac04a78ac5413c9131b08708064ed2c2515b8893f12c2d1cda15a44f100a0955f93e109778d26f9e5b0d46e45c539e59b0941517bfa888eb2d7d2d8a6005adc3be9406cc5f102c6adb44746e8529a256e2396353a8659344cc3e914c4007a5fe572cf6af804f472dabf095c5eb6b30efc5fd627ad3245a8ef0f3f578c003dcaa91dfc9fdad7ba8da68a48fc662dfc0a995cbb0c1bc62099c8257d240d4000000000000000000000000000000000000000000000000000000000001c200000000000000000000000000000000000000000000000000000000000001c200a00000000000000000000000000000000000000000000000000000000001c200100000000000000000000000000000000000000000000000000000000001c200b00000000000000000000000000000000000000000000000000000000001c200200000000000000000000000000000000000000000000000000000000001c200c00000000000000000000000000000000000000000000000000000000001c200300000000000000000000000000000000000000000000000000000000001c200d00000000000000000000000000000000000000000000000000000000001c200400000000000000000000000000000000000000000000000000000000001c200e00000000000000000000000000000000000000000000000000000000001c200500000000000000000000000000000000000000000000000000000000001c200f00000000000000000000000000000000000000000000000000000000001c200600000000000000000000000000000000000000000000000000000000001c201000000000000000000000000000000000000000000000000000000000001c200700000000000000000000000000000000000000000000000000000000001c201100000000000000000000000000000000000000000000000000000000001c200800000000000000000000000000000000000000000000000000000000001c201200000000000000000000000000000000000000000000000000000000001c200900000000000000000000000000000000000000000000000000000000001c201300000000000000000000000000000000000000000000000000000000001c200a00000000000000000000000000000000000000000000000000000000001c201400000000000000000000000000000000000000000000000000000000001c200b00000000000000000000000000000000000000000000000000000000001c201500000000000000000000000000000000000000000000000000000000001c200c00000000000000000000000000000000000000000000000000000000001c201600000000000000000000000000000000000000000000000000000000001c200d00000000000000000000000000000000000000000000000000000000001c201700000000000000000000000000000000000000000000000000000000001c200e00000000000000000000000000000000000000000000000000000000001c201800000000000000000000000000000000000000000000000000000000001c200f00000000000000000000000000000000000000000000000000000000001c201900000000000000000000000000000000000000000000000000000000001c201000000000000000000000000000000000000000000000000000000000001c201a00000000000000000000000000000000000000000000000000000000001c201100000000000000000000000000000000000000000000000000000000001c201b00000000000000000000000000000000000000000000000000000000001c201200000000000000000000000000000000000000000000000000000000001c201c00000000000000000000000000000000000000000000000000000000001c201300000000000000000000000000000000000000000000000000000000001c201d00000000000000000000000000000000000000000000000000000000001c201400000000000000000000000000000000000000000000000000000000001c201e00000000000000000000000000000000000000000000000000000000001c201500000000000000000000000000000000000000000000000000000000001c201f00000000000000000000000000000000000000000000000000000000001c201600000000000000000000000000000000000000000000000000000000001c202000000000000000000000000000000000000000000000000000000000001c201700000000000000000000000000000000000000000000000000000000001c202100000000000000000000000000000000000000000000000000000000001c201800000000000000000000000000000000000000000000000000000000001c202200000000000000000000000000000000000000000000000000000000001c201900000000000000000000000000000000000000000000000000000000001c202300000000000000000000000000000000000000000000000000000000001c201a00000000000000000000000000000000000000000000000000000000001c202400000000000000000000000000000000000000000000000000000000001c201b00000000000000000000000000000000000000000000000000000000001c202500000000000000000000000000000000000000000000000000000000001c201c00000000000000000000000000000000000000000000000000000000001c202600000000000000000000000000000000000000000000000000000000001c201d00000000000000000000000000000000000000000000000000000000001c202700000000000000000000000000000000000000000000000000000000001c201e00000000000000000000000000000000000000000000000000000000001c202800000000000000000000000000000000000000000000000000000000001c201f00000000000000000000000000000000000000000000000000000000001c202900000000000000000000000000000000000000000000000000000000001c202000000000000000000000000000000000000000000000000000000000001c202a00000000000000000000000000000000000000000000000000000000001c202100000000000000000000000000000000000000000000000000000000001c202b00000000000000000000000000000000000000000000000000000000001c202200000000000000000000000000000000000000000000000000000000001c202c00000000000000000000000000000000000000000000000000000000001c202300000000000000000000000000000000000000000000000000000000001c202d00000000000000000000000000000000000000000000000000000000001c202400000000000000000000000000000000000000000000000000000000001c202e00000000000000000000000000000000000000000000000000000000001c202500000000000000000000000000000000000000000000000000000000001c202f00000000000000000000000000000000000000000000000000000000001c202600000000000000000000000000000000000000000000000000000000001c203000000000000000000000000000000000000000000000000000000000001c202700000000000000000000000000000000000000000000000000000000001c203100000000000000000000000000000000000000000000000000000000001c202800000000000000000000000000000000000000000000000000000000001c203200000000000000000000000000000000000000000000000000000000001c202900000000000000000000000000000000000000000000000000000000001c203300000000000000000000000000000000000000000000000000000000001c202a00000000000000000000000000000000000000000000000000000000001c203400000000000000000000000000000000000000000000000000000000001c202b00000000000000000000000000000000000000000000000000000000001c203500000000000000000000000000000000000000000000000000000000001c202c00000000000000000000000000000000000000000000000000000000001c203600000000000000000000000000000000000000000000000000000000001c202d00000000000000000000000000000000000000000000000000000000001c203700000000000000000000000000000000000000000000000000000000001c202e00000000000000000000000000000000000000000000000000000000001c203800000000000000000000000000000000000000000000000000000000001c202f00000000000000000000000000000000000000000000000000000000001c203900000000000000000000000000000000000000000000000000000000001c203000000000000000000000000000000000000000000000000000000000001c203a00000000000000000000000000000000000000000000000000000000001c203100000000000000000000000000000000000000000000000000000000001c203b00000000000000000000000000000000000000000000000000000000001c203200000000000000000000000000000000000000000000000000000000001c203c00000000000000000000000000000000000000000000000000000000001c203300000000000000000000000000000000000000000000000000000000001c203d00000000000000000000000000000000000000000000000000000000001c203400000000000000000000000000000000000000000000000000000000001c203e00000000000000000000000000000000000000000000000000000000001c203500000000000000000000000000000000000000000000000000000000001c203f00000000000000000000000000000000000000000000000000000000001c203600000000000000000000000000000000000000000000000000000000001c204000000000000000000000000000000000000000000000000000000000001c203700000000000000000000000000000000000000000000000000000000001c204100000000000000000000000000000000000000000000000000000000001c203800000000000000000000000000000000000000000000000000000000001c204200000000000000000000000000000000000000000000000000000000001c203900000000000000000000000000000000000000000000000000000000001c204300000000000000000000000000000000000000000000000000000000001c203a00000000000000000000000000000000000000000000000000000000001c204400000000000000000000000000000000000000000000000000000000001c203b00000000000000000000000000000000000000000000000000000000001c204500000000000000000000000000000000000000000000000000000000001c203c00000000000000000000000000000000000000000000000000000000001c204600000000000000000000000000000000000000000000000000000000001c203d00000000000000000000000000000000000000000000000000000000001c204700000000000000000000000000000000000000000000000000000000001c203e00000000000000000000000000000000000000000000000000000000001c204800000000000000000000000000000000000000000000000000000000001c203f00000000000000000000000000000000000000000000000000000000001c20492000000000000000000000000000000000000000000000000000000000001c170000000000000000000000000000000000000000000000000000000000001c170100000000000000000000000000000000000000000000000000000000001c170200000000000000000000000000000000000000000000000000000000001c170300000000000000000000000000000000000000000000000000000000001c170400000000000000000000000000000000000000000000000000000000001c170500000000000000000000000000000000000000000000000000000000001c170600000000000000000000000000000000000000000000000000000000001c170700000000000000000000000000000000000000000000000000000000001c170800000000000000000000000000000000000000000000000000000000001c170900000000000000000000000000000000000000000000000000000000001c170a00000000000000000000000000000000000000000000000000000000001c170b00000000000000000000000000000000000000000000000000000000001c170c00000000000000000000000000000000000000000000000000000000001c170d00000000000000000000000000000000000000000000000000000000001c170e00000000000000000000000000000000000000000000000000000000001c170f00000000000000000000000000000000000000000000000000000000001c171000000000000000000000000000000000000000000000000000000000001c171100000000000000000000000000000000000000000000000000000000001c170100000000000000000000000000000000000000000000000000000000001c170200000000000000000000000000000000000000000000000000000000001c170300000000000000000000000000000000000000000000000000000000001c170400000000000000000000000000000000000000000000000000000000001c170500000000000000000000000000000000000000000000000000000000001c170600000000000000000000000000000000000000000000000000000000001c170700000000000000000000000000000000000000000000000000000000001c170800000000000000000000000000000000000000000000000000000000001c170900000000000000000000000000000000000000000000000000000000001c170a00000000000000000000000000000000000000000000000000000000001c170b00000000000000000000000000000000000000000000000000000000001c170c00000000000000000000000000000000000000000000000000000000001c170d00000000000000000000000000000000000000000000000000000000001c170e00000000000000000000000000000000000000000000000000000000001c170f00000000000000000000000000000000000000000000000000000000001c171000000000000000000000000000000000000000000000000000000000001c171100000000000000000000000000000000000000000000000000000000001c171200000000000000000000000000000000000000000000000000000000001c170200000000000000000000000000000000000000000000000000000000001c170300000000000000000000000000000000000000000000000000000000001c170400000000000000000000000000000000000000000000000000000000001c170500000000000000000000000000000000000000000000000000000000001c170600000000000000000000000000000000000000000000000000000000001c170700000000000000000000000000000000000000000000000000000000001c170800000000000000000000000000000000000000000000000000000000001c170900000000000000000000000000000000000000000000000000000000001c170a00000000000000000000000000000000000000000000000000000000001c170b00000000000000000000000000000000000000000000000000000000001c170c00000000000000000000000000000000000000000000000000000000001c170d00000000000000000000000000000000000000000000000000000000001c170e00000000000000000000000000000000000000000000000000000000001c170f00000000000000000000000000000000000000000000000000000000001c171000000000000000000000000000000000000000000000000000000000001c171100000000000000000000000000000000000000000000000000000000001c171200000000000000000000000000000000000000000000000000000000001c171300000000000000000000000000000000000000000000000000000000001c170300000000000000000000000000000000000000000000000000000000001c170400000000000000000000000000000000000000000000000000000000001c170500000000000000000000000000000000000000000000000000000000001c170600000000000000000000000000000000000000000000000000000000001c170700000000000000000000000000000000000000000000000000000000001c170800000000000000000000000000000000000000000000000000000000001c170900000000000000000000000000000000000000000000000000000000001c170a00000000000000000000000000000000000000000000000000000000001c170b00000000000000000000000000000000000000000000000000000000001c170c00000000000000000000000000000000000000000000000000000000001c170d00000000000000000000000000000000000000000000000000000000001c170e00000000000000000000000000000000000000000000000000000000001c170f00000000000000000000000000000000000000000000000000000000001c171000000000000000000000000000000000000000000000000000000000001c171100000000000000000000000000000000000000000000000000000000001c171200000000000000000000000000000000000000000000000000000000001c171300000000000000000000000000000000000000000000000000000000001c171400000000000000000000000000000000000000000000000000000000001c170400000000000000000000000000000000000000000000000000000000001c170500000000000000000000000000000000000000000000000000000000001c170600000000000000000000000000000000000000000000000000000000001c170700000000000000000000000000000000000000000000000000000000001c170800000000000000000000000000000000000000000000000000000000001c170900000000000000000000000000000000000000000000000000000000001c170a00000000000000000000000000000000000000000000000000000000001c170b00000000000000000000000000000000000000000000000000000000001c170c00000000000000000000000000000000000000000000000000000000001c170d00000000000000000000000000000000000000000000000000000000001c170e00000000000000000000000000000000000000000000000000000000001c170f00000000000000000000000000000000000000000000000000000000001c171000000000000000000000000000000000000000000000000000000000001c171100000000000000000000000000000000000000000000000000000000001c171200000000000000000000000000000000000000000000000000000000001c171300000000000000000000000000000000000000000000000000000000001c171400000000000000000000000000000000000000000000000000000000001c171500000000000000000000000000000000000000000000000000000000001c170500000000000000000000000000000000000000000000000000000000001c170600000000000000000000000000000000000000000000000000000000001c170700000000000000000000000000000000000000000000000000000000001c170800000000000000000000000000000000000000000000000000000000001c170900000000000000000000000000000000000000000000000000000000001c170a00000000000000000000000000000000000000000000000000000000001c170b00000000000000000000000000000000000000000000000000000000001c170c00000000000000000000000000000000000000000000000000000000001c170d00000000000000000000000000000000000000000000000000000000001c170e00000000000000000000000000000000000000000000000000000000001c170f00000000000000000000000000000000000000000000000000000000001c171000000000000000000000000000000000000000000000000000000000001c171100000000000000000000000000000000000000000000000000000000001c171200000000000000000000000000000000000000000000000000000000001c171300000000000000000000000000000000000000000000000000000000001c171400000000000000000000000000000000000000000000000000000000001c171500000000000000000000000000000000000000000000000000000000001c171600000000000000000000000000000000000000000000000000000000001c170600000000000000000000000000000000000000000000000000000000001c170700000000000000000000000000000000000000000000000000000000001c170800000000000000000000000000000000000000000000000000000000001c170900000000000000000000000000000000000000000000000000000000001c170a00000000000000000000000000000000000000000000000000000000001c170b00000000000000000000000000000000000000000000000000000000001c170c00000000000000000000000000000000000000000000000000000000001c170d00000000000000000000000000000000000000000000000000000000001c170e00000000000000000000000000000000000000000000000000000000001c170f00000000000000000000000000000000000000000000000000000000001c171000000000000000000000000000000000000000000000000000000000001c171100000000000000000000000000000000000000000000000000000000001c171200000000000000000000000000000000000000000000000000000000001c171300000000000000000000000000000000000000000000000000000000001c171400000000000000000000000000000000000000000000000000000000001c171500000000000000000000000000000000000000000000000000000000001c171600000000000000000000000000000000000000000000000000000000001c171700000000000000000000000000000000000000000000000000000000001c170700000000000000000000000000000000000000000000000000000000001c170800000000000000000000000000000000000000000000000000000000001c170900000000000000000000000000000000000000000000000000000000001c170a00000000000000000000000000000000000000000000000000000000001c170b00000000000000000000000000000000000000000000000000000000001c170c00000000000000000000000000000000000000000000000000000000001c170d00000000000000000000000000000000000000000000000000000000001c170e00000000000000000000000000000000000000000000000000000000001c170f00000000000000000000000000000000000000000000000000000000001c171000000000000000000000000000000000000000000000000000000000001c171100000000000000000000000000000000000000000000000000000000001c171200000000000000000000000000000000000000000000000000000000001c171300000000000000000000000000000000000000000000000000000000001c171400000000000000000000000000000000000000000000000000000000001c171500000000000000000000000000000000000000000000000000000000001c171600000000000000000000000000000000000000000000000000000000001c171700000000000000000000000000000000000000000000000000000000001c171800000000000000000000000000000000000000000000000000000000001c170800000000000000000000000000000000000000000000000000000000001c170900000000000000000000000000000000000000000000000000000000001c170a00000000000000000000000000000000000000000000000000000000001c170b00000000000000000000000000000000000000000000000000000000001c170c00000000000000000000000000000000000000000000000000000000001c170d00000000000000000000000000000000000000000000000000000000001c170e00000000000000000000000000000000000000000000000000000000001c170f00000000000000000000000000000000000000000000000000000000001c171000000000000000000000000000000000000000000000000000000000001c171100000000000000000000000000000000000000000000000000000000001c171200000000000000000000000000000000000000000000000000000000001c171300000000000000000000000000000000000000000000000000000000001c171400000000000000000000000000000000000000000000000000000000001c171500000000000000000000000000000000000000000000000000000000001c171600000000000000000000000000000000000000000000000000000000001c171700000000000000000000000000000000000000000000000000000000001c171800000000000000000000000000000000000000000000000000000000001c171900000000000000000000000000000000000000000000000000000000001c170900000000000000000000000000000000000000000000000000000000001c170a00000000000000000000000000000000000000000000000000000000001c170b00000000000000000000000000000000000000000000000000000000001c170c00000000000000000000000000000000000000000000000000000000001c170d00000000000000000000000000000000000000000000000000000000001c170e00000000000000000000000000000000000000000000000000000000001c170f00000000000000000000000000000000000000000000000000000000001c171000000000000000000000000000000000000000000000000000000000001c171100000000000000000000000000000000000000000000000000000000001c171200000000000000000000000000000000000000000000000000000000001c171300000000000000000000000000000000000000000000000000000000001c171400000000000000000000000000000000000000000000000000000000001c171500000000000000000000000000000000000000000000000000000000001c171600000000000000000000000000000000000000000000000000000000001c171700000000000000000000000000000000000000000000000000000000001c171800000000000000000000000000000000000000000000000000000000001c171900000000000000000000000000000000000000000000000000000000001c171a00000000000000000000000000000000000000000000000000000000001c170a00000000000000000000000000000000000000000000000000000000001c170b00000000000000000000000000000000000000000000000000000000001c170c00000000000000000000000000000000000000000000000000000000001c170d00000000000000000000000000000000000000000000000000000000001c170e00000000000000000000000000000000000000000000000000000000001c170f00000000000000000000000000000000000000000000000000000000001c171000000000000000000000000000000000000000000000000000000000001c171100000000000000000000000000000000000000000000000000000000001c171200000000000000000000000000000000000000000000000000000000001c171300000000000000000000000000000000000000000000000000000000001c171400000000000000000000000000000000000000000000000000000000001c171500000000000000000000000000000000000000000000000000000000001c171600000000000000000000000000000000000000000000000000000000001c171700000000000000000000000000000000000000000000000000000000001c171800000000000000000000000000000000000000000000000000000000001c171900000000000000000000000000000000000000000000000000000000001c171a00000000000000000000000000000000000000000000000000000000001c171b00000000000000000000000000000000000000000000000000000000001c170b00000000000000000000000000000000000000000000000000000000001c170c00000000000000000000000000000000000000000000000000000000001c170d00000000000000000000000000000000000000000000000000000000001c170e00000000000000000000000000000000000000000000000000000000001c170f00000000000000000000000000000000000000000000000000000000001c171000000000000000000000000000000000000000000000000000000000001c171100000000000000000000000000000000000000000000000000000000001c171200000000000000000000000000000000000000000000000000000000001c171300000000000000000000000000000000000000000000000000000000001c171400000000000000000000000000000000000000000000000000000000001c171500000000000000000000000000000000000000000000000000000000001c171600000000000000000000000000000000000000000000000000000000001c171700000000000000000000000000000000000000000000000000000000001c171800000000000000000000000000000000000000000000000000000000001c171900000000000000000000000000000000000000000000000000000000001c171a00000000000000000000000000000000000000000000000000000000001c171b00000000000000000000000000000000000000000000000000000000001c171c00000000000000000000000000000000000000000000000000000000001c170c00000000000000000000000000000000000000000000000000000000001c170d00000000000000000000000000000000000000000000000000000000001c170e00000000000000000000000000000000000000000000000000000000001c170f00000000000000000000000000000000000000000000000000000000001c171000000000000000000000000000000000000000000000000000000000001c171100000000000000000000000000000000000000000000000000000000001c171200000000000000000000000000000000000000000000000000000000001c171300000000000000000000000000000000000000000000000000000000001c171400000000000000000000000000000000000000000000000000000000001c171500000000000000000000000000000000000000000000000000000000001c171600000000000000000000000000000000000000000000000000000000001c171700000000000000000000000000000000000000000000000000000000001c171800000000000000000000000000000000000000000000000000000000001c171900000000000000000000000000000000000000000000000000000000001c171a00000000000000000000000000000000000000000000000000000000001c171b00000000000000000000000000000000000000000000000000000000001c171c00000000000000000000000000000000000000000000000000000000001c171d00000000000000000000000000000000000000000000000000000000001c170d00000000000000000000000000000000000000000000000000000000001c170e00000000000000000000000000000000000000000000000000000000001c170f00000000000000000000000000000000000000000000000000000000001c171000000000000000000000000000000000000000000000000000000000001c171100000000000000000000000000000000000000000000000000000000001c171200000000000000000000000000000000000000000000000000000000001c171300000000000000000000000000000000000000000000000000000000001c171400000000000000000000000000000000000000000000000000000000001c171500000000000000000000000000000000000000000000000000000000001c171600000000000000000000000000000000000000000000000000000000001c171700000000000000000000000000000000000000000000000000000000001c171800000000000000000000000000000000000000000000000000000000001c171900000000000000000000000000000000000000000000000000000000001c171a00000000000000000000000000000000000000000000000000000000001c171b00000000000000000000000000000000000000000000000000000000001c171c00000000000000000000000000000000000000000000000000000000001c171d00000000000000000000000000000000000000000000000000000000001c171e00000000000000000000000000000000000000000000000000000000001c170e00000000000000000000000000000000000000000000000000000000001c170f00000000000000000000000000000000000000000000000000000000001c171000000000000000000000000000000000000000000000000000000000001c171100000000000000000000000000000000000000000000000000000000001c171200000000000000000000000000000000000000000000000000000000001c171300000000000000000000000000000000000000000000000000000000001c171400000000000000000000000000000000000000000000000000000000001c171500000000000000000000000000000000000000000000000000000000001c171600000000000000000000000000000000000000000000000000000000001c171700000000000000000000000000000000000000000000000000000000001c171800000000000000000000000000000000000000000000000000000000001c171900000000000000000000000000000000000000000000000000000000001c171a00000000000000000000000000000000000000000000000000000000001c171b00000000000000000000000000000000000000000000000000000000001c171c00000000000000000000000000000000000000000000000000000000001c171d00000000000000000000000000000000000000000000000000000000001c171e00000000000000000000000000000000000000000000000000000000001c171f00000000000000000000000000000000000000000000000000000000001c170f00000000000000000000000000000000000000000000000000000000001c171000000000000000000000000000000000000000000000000000000000001c171100000000000000000000000000000000000000000000000000000000001c171200000000000000000000000000000000000000000000000000000000001c171300000000000000000000000000000000000000000000000000000000001c171400000000000000000000000000000000000000000000000000000000001c171500000000000000000000000000000000000000000000000000000000001c171600000000000000000000000000000000000000000000000000000000001c171700000000000000000000000000000000000000000000000000000000001c171800000000000000000000000000000000000000000000000000000000001c171900000000000000000000000000000000000000000000000000000000001c171a00000000000000000000000000000000000000000000000000000000001c171b00000000000000000000000000000000000000000000000000000000001c171c00000000000000000000000000000000000000000000000000000000001c171d00000000000000000000000000000000000000000000000000000000001c171e00000000000000000000000000000000000000000000000000000000001c171f00000000000000000000000000000000000000000000000000000000001c172000000000000000000000000000000000000000000000000000000000001c171000000000000000000000000000000000000000000000000000000000001c171100000000000000000000000000000000000000000000000000000000001c171200000000000000000000000000000000000000000000000000000000001c171300000000000000000000000000000000000000000000000000000000001c171400000000000000000000000000000000000000000000000000000000001c171500000000000000000000000000000000000000000000000000000000001c171600000000000000000000000000000000000000000000000000000000001c171700000000000000000000000000000000000000000000000000000000001c171800000000000000000000000000000000000000000000000000000000001c171900000000000000000000000000000000000000000000000000000000001c171a00000000000000000000000000000000000000000000000000000000001c171b00000000000000000000000000000000000000000000000000000000001c171c00000000000000000000000000000000000000000000000000000000001c171d00000000000000000000000000000000000000000000000000000000001c171e00000000000000000000000000000000000000000000000000000000001c171f00000000000000000000000000000000000000000000000000000000001c172000000000000000000000000000000000000000000000000000000000001c172100000000000000000000000000000000000000000000000000000000001c171100000000000000000000000000000000000000000000000000000000001c171200000000000000000000000000000000000000000000000000000000001c171300000000000000000000000000000000000000000000000000000000001c171400000000000000000000000000000000000000000000000000000000001c171500000000000000000000000000000000000000000000000000000000001c171600000000000000000000000000000000000000000000000000000000001c171700000000000000000000000000000000000000000000000000000000001c171800000000000000000000000000000000000000000000000000000000001c171900000000000000000000000000000000000000000000000000000000001c171a00000000000000000000000000000000000000000000000000000000001c171b00000000000000000000000000000000000000000000000000000000001c171c00000000000000000000000000000000000000000000000000000000001c171d00000000000000000000000000000000000000000000000000000000001c171e00000000000000000000000000000000000000000000000000000000001c171f00000000000000000000000000000000000000000000000000000000001c172000000000000000000000000000000000000000000000000000000000001c172100000000000000000000000000000000000000000000000000000000001c172200000000000000000000000000000000000000000000000000000000001c171200000000000000000000000000000000000000000000000000000000001c171300000000000000000000000000000000000000000000000000000000001c171400000000000000000000000000000000000000000000000000000000001c171500000000000000000000000000000000000000000000000000000000001c171600000000000000000000000000000000000000000000000000000000001c171700000000000000000000000000000000000000000000000000000000001c171800000000000000000000000000000000000000000000000000000000001c171900000000000000000000000000000000000000000000000000000000001c171a00000000000000000000000000000000000000000000000000000000001c171b00000000000000000000000000000000000000000000000000000000001c171c00000000000000000000000000000000000000000000000000000000001c171d00000000000000000000000000000000000000000000000000000000001c171e00000000000000000000000000000000000000000000000000000000001c171f00000000000000000000000000000000000000000000000000000000001c172000000000000000000000000000000000000000000000000000000000001c172100000000000000000000000000000000000000000000000000000000001c172200000000000000000000000000000000000000000000000000000000001c172300000000000000000000000000000000000000000000000000000000001c171300000000000000000000000000000000000000000000000000000000001c171400000000000000000000000000000000000000000000000000000000001c171500000000000000000000000000000000000000000000000000000000001c171600000000000000000000000000000000000000000000000000000000001c171700000000000000000000000000000000000000000000000000000000001c171800000000000000000000000000000000000000000000000000000000001c171900000000000000000000000000000000000000000000000000000000001c171a00000000000000000000000000000000000000000000000000000000001c171b00000000000000000000000000000000000000000000000000000000001c171c00000000000000000000000000000000000000000000000000000000001c171d00000000000000000000000000000000000000000000000000000000001c171e00000000000000000000000000000000000000000000000000000000001c171f00000000000000000000000000000000000000000000000000000000001c172000000000000000000000000000000000000000000000000000000000001c172100000000000000000000000000000000000000000000000000000000001c172200000000000000000000000000000000000000000000000000000000001c172300000000000000000000000000000000000000000000000000000000001c172400000000000000000000000000000000000000000000000000000000001c171400000000000000000000000000000000000000000000000000000000001c171500000000000000000000000000000000000000000000000000000000001c171600000000000000000000000000000000000000000000000000000000001c171700000000000000000000000000000000000000000000000000000000001c171800000000000000000000000000000000000000000000000000000000001c171900000000000000000000000000000000000000000000000000000000001c171a00000000000000000000000000000000000000000000000000000000001c171b00000000000000000000000000000000000000000000000000000000001c171c00000000000000000000000000000000000000000000000000000000001c171d00000000000000000000000000000000000000000000000000000000001c171e00000000000000000000000000000000000000000000000000000000001c171f00000000000000000000000000000000000000000000000000000000001c172000000000000000000000000000000000000000000000000000000000001c172100000000000000000000000000000000000000000000000000000000001c172200000000000000000000000000000000000000000000000000000000001c172300000000000000000000000000000000000000000000000000000000001c172400000000000000000000000000000000000000000000000000000000001c172500000000000000000000000000000000000000000000000000000000001c171500000000000000000000000000000000000000000000000000000000001c171600000000000000000000000000000000000000000000000000000000001c171700000000000000000000000000000000000000000000000000000000001c171800000000000000000000000000000000000000000000000000000000001c171900000000000000000000000000000000000000000000000000000000001c171a00000000000000000000000000000000000000000000000000000000001c171b00000000000000000000000000000000000000000000000000000000001c171c00000000000000000000000000000000000000000000000000000000001c171d00000000000000000000000000000000000000000000000000000000001c171e00000000000000000000000000000000000000000000000000000000001c171f00000000000000000000000000000000000000000000000000000000001c172000000000000000000000000000000000000000000000000000000000001c172100000000000000000000000000000000000000000000000000000000001c172200000000000000000000000000000000000000000000000000000000001c172300000000000000000000000000000000000000000000000000000000001c172400000000000000000000000000000000000000000000000000000000001c172500000000000000000000000000000000000000000000000000000000001c172600000000000000000000000000000000000000000000000000000000001c171600000000000000000000000000000000000000000000000000000000001c171700000000000000000000000000000000000000000000000000000000001c171800000000000000000000000000000000000000000000000000000000001c171900000000000000000000000000000000000000000000000000000000001c171a00000000000000000000000000000000000000000000000000000000001c171b00000000000000000000000000000000000000000000000000000000001c171c00000000000000000000000000000000000000000000000000000000001c171d00000000000000000000000000000000000000000000000000000000001c171e00000000000000000000000000000000000000000000000000000000001c171f00000000000000000000000000000000000000000000000000000000001c172000000000000000000000000000000000000000000000000000000000001c172100000000000000000000000000000000000000000000000000000000001c172200000000000000000000000000000000000000000000000000000000001c172300000000000000000000000000000000000000000000000000000000001c172400000000000000000000000000000000000000000000000000000000001c172500000000000000000000000000000000000000000000000000000000001c172600000000000000000000000000000000000000000000000000000000001c172700000000000000000000000000000000000000000000000000000000001c171700000000000000000000000000000000000000000000000000000000001c171800000000000000000000000000000000000000000000000000000000001c171900000000000000000000000000000000000000000000000000000000001c171a00000000000000000000000000000000000000000000000000000000001c171b00000000000000000000000000000000000000000000000000000000001c171c00000000000000000000000000000000000000000000000000000000001c171d00000000000000000000000000000000000000000000000000000000001c171e00000000000000000000000000000000000000000000000000000000001c171f00000000000000000000000000000000000000000000000000000000001c172000000000000000000000000000000000000000000000000000000000001c172100000000000000000000000000000000000000000000000000000000001c172200000000000000000000000000000000000000000000000000000000001c172300000000000000000000000000000000000000000000000000000000001c172400000000000000000000000000000000000000000000000000000000001c172500000000000000000000000000000000000000000000000000000000001c172600000000000000000000000000000000000000000000000000000000001c172700000000000000000000000000000000000000000000000000000000001c172800000000000000000000000000000000000000000000000000000000001c171800000000000000000000000000000000000000000000000000000000001c171900000000000000000000000000000000000000000000000000000000001c171a00000000000000000000000000000000000000000000000000000000001c171b00000000000000000000000000000000000000000000000000000000001c171c00000000000000000000000000000000000000000000000000000000001c171d00000000000000000000000000000000000000000000000000000000001c171e00000000000000000000000000000000000000000000000000000000001c171f00000000000000000000000000000000000000000000000000000000001c172000000000000000000000000000000000000000000000000000000000001c172100000000000000000000000000000000000000000000000000000000001c172200000000000000000000000000000000000000000000000000000000001c172300000000000000000000000000000000000000000000000000000000001c172400000000000000000000000000000000000000000000000000000000001c172500000000000000000000000000000000000000000000000000000000001c172600000000000000000000000000000000000000000000000000000000001c172700000000000000000000000000000000000000000000000000000000001c172800000000000000000000000000000000000000000000000000000000001c172900000000000000000000000000000000000000000000000000000000001c171900000000000000000000000000000000000000000000000000000000001c171a00000000000000000000000000000000000000000000000000000000001c171b00000000000000000000000000000000000000000000000000000000001c171c00000000000000000000000000000000000000000000000000000000001c171d00000000000000000000000000000000000000000000000000000000001c171e00000000000000000000000000000000000000000000000000000000001c171f00000000000000000000000000000000000000000000000000000000001c172000000000000000000000000000000000000000000000000000000000001c172100000000000000000000000000000000000000000000000000000000001c172200000000000000000000000000000000000000000000000000000000001c172300000000000000000000000000000000000000000000000000000000001c172400000000000000000000000000000000000000000000000000000000001c172500000000000000000000000000000000000000000000000000000000001c172600000000000000000000000000000000000000000000000000000000001c172700000000000000000000000000000000000000000000000000000000001c172800000000000000000000000000000000000000000000000000000000001c172900000000000000000000000000000000000000000000000000000000001c172a00000000000000000000000000000000000000000000000000000000001c171a00000000000000000000000000000000000000000000000000000000001c171b00000000000000000000000000000000000000000000000000000000001c171c00000000000000000000000000000000000000000000000000000000001c171d00000000000000000000000000000000000000000000000000000000001c171e00000000000000000000000000000000000000000000000000000000001c171f00000000000000000000000000000000000000000000000000000000001c172000000000000000000000000000000000000000000000000000000000001c172100000000000000000000000000000000000000000000000000000000001c172200000000000000000000000000000000000000000000000000000000001c172300000000000000000000000000000000000000000000000000000000001c172400000000000000000000000000000000000000000000000000000000001c172500000000000000000000000000000000000000000000000000000000001c172600000000000000000000000000000000000000000000000000000000001c172700000000000000000000000000000000000000000000000000000000001c172800000000000000000000000000000000000000000000000000000000001c172900000000000000000000000000000000000000000000000000000000001c172a00000000000000000000000000000000000000000000000000000000001c172b00000000000000000000000000000000000000000000000000000000001c171b00000000000000000000000000000000000000000000000000000000001c171c00000000000000000000000000000000000000000000000000000000001c171d00000000000000000000000000000000000000000000000000000000001c171e00000000000000000000000000000000000000000000000000000000001c171f00000000000000000000000000000000000000000000000000000000001c172000000000000000000000000000000000000000000000000000000000001c172100000000000000000000000000000000000000000000000000000000001c172200000000000000000000000000000000000000000000000000000000001c172300000000000000000000000000000000000000000000000000000000001c172400000000000000000000000000000000000000000000000000000000001c172500000000000000000000000000000000000000000000000000000000001c172600000000000000000000000000000000000000000000000000000000001c172700000000000000000000000000000000000000000000000000000000001c172800000000000000000000000000000000000000000000000000000000001c172900000000000000000000000000000000000000000000000000000000001c172a00000000000000000000000000000000000000000000000000000000001c172b00000000000000000000000000000000000000000000000000000000001c172c00000000000000000000000000000000000000000000000000000000001c171c00000000000000000000000000000000000000000000000000000000001c171d00000000000000000000000000000000000000000000000000000000001c171e00000000000000000000000000000000000000000000000000000000001c171f00000000000000000000000000000000000000000000000000000000001c172000000000000000000000000000000000000000000000000000000000001c172100000000000000000000000000000000000000000000000000000000001c172200000000000000000000000000000000000000000000000000000000001c172300000000000000000000000000000000000000000000000000000000001c172400000000000000000000000000000000000000000000000000000000001c172500000000000000000000000000000000000000000000000000000000001c172600000000000000000000000000000000000000000000000000000000001c172700000000000000000000000000000000000000000000000000000000001c172800000000000000000000000000000000000000000000000000000000001c172900000000000000000000000000000000000000000000000000000000001c172a00000000000000000000000000000000000000000000000000000000001c172b00000000000000000000000000000000000000000000000000000000001c172c00000000000000000000000000000000000000000000000000000000001c172d00000000000000000000000000000000000000000000000000000000001c171d00000000000000000000000000000000000000000000000000000000001c171e00000000000000000000000000000000000000000000000000000000001c171f00000000000000000000000000000000000000000000000000000000001c172000000000000000000000000000000000000000000000000000000000001c172100000000000000000000000000000000000000000000000000000000001c172200000000000000000000000000000000000000000000000000000000001c172300000000000000000000000000000000000000000000000000000000001c172400000000000000000000000000000000000000000000000000000000001c172500000000000000000000000000000000000000000000000000000000001c172600000000000000000000000000000000000000000000000000000000001c172700000000000000000000000000000000000000000000000000000000001c172800000000000000000000000000000000000000000000000000000000001c172900000000000000000000000000000000000000000000000000000000001c172a00000000000000000000000000000000000000000000000000000000001c172b00000000000000000000000000000000000000000000000000000000001c172c00000000000000000000000000000000000000000000000000000000001c172d00000000000000000000000000000000000000000000000000000000001c172e00000000000000000000000000000000000000000000000000000000001c171e00000000000000000000000000000000000000000000000000000000001c171f00000000000000000000000000000000000000000000000000000000001c172000000000000000000000000000000000000000000000000000000000001c172100000000000000000000000000000000000000000000000000000000001c172200000000000000000000000000000000000000000000000000000000001c172300000000000000000000000000000000000000000000000000000000001c172400000000000000000000000000000000000000000000000000000000001c172500000000000000000000000000000000000000000000000000000000001c172600000000000000000000000000000000000000000000000000000000001c172700000000000000000000000000000000000000000000000000000000001c172800000000000000000000000000000000000000000000000000000000001c172900000000000000000000000000000000000000000000000000000000001c172a00000000000000000000000000000000000000000000000000000000001c172b00000000000000000000000000000000000000000000000000000000001c172c00000000000000000000000000000000000000000000000000000000001c172d00000000000000000000000000000000000000000000000000000000001c172e00000000000000000000000000000000000000000000000000000000001c172f00000000000000000000000000000000000000000000000000000000001c171f00000000000000000000000000000000000000000000000000000000001c172000000000000000000000000000000000000000000000000000000000001c172100000000000000000000000000000000000000000000000000000000001c172200000000000000000000000000000000000000000000000000000000001c172300000000000000000000000000000000000000000000000000000000001c172400000000000000000000000000000000000000000000000000000000001c172500000000000000000000000000000000000000000000000000000000001c172600000000000000000000000000000000000000000000000000000000001c172700000000000000000000000000000000000000000000000000000000001c172800000000000000000000000000000000000000000000000000000000001c172900000000000000000000000000000000000000000000000000000000001c172a00000000000000000000000000000000000000000000000000000000001c172b00000000000000000000000000000000000000000000000000000000001c172c00000000000000000000000000000000000000000000000000000000001c172d00000000000000000000000000000000000000000000000000000000001c172e00000000000000000000000000000000000000000000000000000000001c172f00000000000000000000000000000000000000000000000000000000001c1730000000260caf731821f6ac6c02c9880591c2a11e24343eaa28359fa78aaa1bcf3574ca0000000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000201000000000000000000000000000000000000000000000000000000000000020100100000000000000000000000000000000000000000000000000000000002010020000000000000000000000000000000000000000000000000000000000201003000000000000000000000000000000000000000000000000000000000020100400000000000000000000000000000000000000000000000000000000002010050000000000000000000000000000000000000000000000000000000000201006000000000000000000000000000000000000000000000000000000000020100700000000000000000000000000000000000000000000000000000000002010080000000000000000000000000000000000000000000000000000000000201009000000000000000000000000000000000000000000000000000000000020100a000000000000000000000000000000000000000000000000000000000020100b000000000000000000000000000000000000000000000000000000000020100c000000000000000000000000000000000000000000000000000000000020100d000000000000000000000000000000000000000000000000000000000020100e000000000000000000000000000000000000000000000000000000000020100f0000000000000000000000000000000000000000000000000000000000201010000000000000000000000000000000000000000000000000000000000020101100000000000000000000000000000000000000000000000000000000002010120000000000000000000000000000000000000000000000000000000000201013000000000000000000000000000000000000000000000000000000000020101400000000000000000000000000000000000000000000000000000000002010150000000000000000000000000000000000000000000000000000000000201016000000000000000000000000000000000000000000000000000000000020101700000000000000000000000000000000000000000000000000000000002010180000000000000000000000000000000000000000000000000000000000201019000000000000000000000000000000000000000000000000000000000020101a000000000000000000000000000000000000000000000000000000000020101b000000000000000000000000000000000000000000000000000000000020101c000000000000000000000000000000000000000000000000000000000020101d000000000000000000000000000000000000000000000000000000000020101e000000000000000000000000000000000000000000000000000000000020101f0000000000000000000000000000000000000000000000000000000000201020000000000000000000000000000000000000000000000000000000000020102100000000000000000000000000000000000000000000000000000000002010220000000000000000000000000000000000000000000000000000000000201023000000000000000000000000000000000000000000000000000000000020102400000000000000000000000000000000000000000000000000000000002010250000000000000000000000000000000000000000000000000000000000201026000000000000000000000000000000000000000000000000000000000020102700000000000000000000000000000000000000000000000000000000002010280000000000000000000000000000000000000000000000000000000000201029000000000000000000000000000000000000000000000000000000000020102a000000000000000000000000000000000000000000000000000000000020102b000000000000000000000000000000000000000000000000000000000020102c000000000000000000000000000000000000000000000000000000000020102d000000000000000000000000000000000000000000000000000000000020102e000000000000000000000000000000000000000000000000000000000020102f0000000000000000000000000000000000000000000000000000000000201030000000000000000000000000000000000000000000000000000000000020103100000000000000000000000000000000000000000000000000000000002010320000000000000000000000000000000000000000000000000000000000201033000000000000000000000000000000000000000000000000000000000020103400000000000000000000000000000000000000000000000000000000002010350000000000000000000000000000000000000000000000000000000000201036000000000000000000000000000000000000000000000000000000000020103700000000000000000000000000000000000000000000000000000000002010380000000000000000000000000000000000000000000000000000000000201039000000000000000000000000000000000000000000000000000000000020103a000000000000000000000000000000000000000000000000000000000020103b000000000000000000000000000000000000000000000000000000000020103c000000000000000000000000000000000000000000000000000000000020103d000000000000000000000000000000000000000000000000000000000020103e000000000000000000000000000000000000000000000000000000000020103f4000000000000000000000000000000000000000000000000000000000002000010000000000000000000000000000000000000000000000000000000000201100000000000000000000000000000000000000000000000000000000000020110100000000000000000000000000000000000000000000000000000000002011020000000000000000000000000000000000000000000000000000000000201103000000000000000000000000000000000000000000000000000000000020110400000000000000000000000000000000000000000000000000000000002011050000000000000000000000000000000000000000000000000000000000201106000000000000000000000000000000000000000000000000000000000020110700000000000000000000000000000000000000000000000000000000002011080000000000000000000000000000000000000000000000000000000000201109000000000000000000000000000000000000000000000000000000000020110a000000000000000000000000000000000000000000000000000000000020110b000000000000000000000000000000000000000000000000000000000020110c000000000000000000000000000000000000000000000000000000000020110d000000000000000000000000000000000000000000000000000000000020110e000000000000000000000000000000000000000000000000000000000020110f0000000000000000000000000000000000000000000000000000000000201110000000000000000000000000000000000000000000000000000000000020111100000000000000000000000000000000000000000000000000000000002011120000000000000000000000000000000000000000000000000000000000201113000000000000000000000000000000000000000000000000000000000020111400000000000000000000000000000000000000000000000000000000002011150000000000000000000000000000000000000000000000000000000000201116000000000000000000000000000000000000000000000000000000000020111700000000000000000000000000000000000000000000000000000000002011180000000000000000000000000000000000000000000000000000000000201119000000000000000000000000000000000000000000000000000000000020111a000000000000000000000000000000000000000000000000000000000020111b000000000000000000000000000000000000000000000000000000000020111c000000000000000000000000000000000000000000000000000000000020111d000000000000000000000000000000000000000000000000000000000020111e000000000000000000000000000000000000000000000000000000000020111f0000000000000000000000000000000000000000000000000000000000201120000000000000000000000000000000000000000000000000000000000020112100000000000000000000000000000000000000000000000000000000002011220000000000000000000000000000000000000000000000000000000000201123000000000000000000000000000000000000000000000000000000000020112400000000000000000000000000000000000000000000000000000000002011250000000000000000000000000000000000000000000000000000000000201126000000000000000000000000000000000000000000000000000000000020112700000000000000000000000000000000000000000000000000000000002011280000000000000000000000000000000000000000000000000000000000201129000000000000000000000000000000000000000000000000000000000020112a000000000000000000000000000000000000000000000000000000000020112b000000000000000000000000000000000000000000000000000000000020112c000000000000000000000000000000000000000000000000000000000020112d000000000000000000000000000000000000000000000000000000000020112e000000000000000000000000000000000000000000000000000000000020112f0000000000000000000000000000000000000000000000000000000000201130000000000000000000000000000000000000000000000000000000000020113100000000000000000000000000000000000000000000000000000000002011320000000000000000000000000000000000000000000000000000000000201133000000000000000000000000000000000000000000000000000000000020113400000000000000000000000000000000000000000000000000000000002011350000000000000000000000000000000000000000000000000000000000201136000000000000000000000000000000000000000000000000000000000020113700000000000000000000000000000000000000000000000000000000002011380000000000000000000000000000000000000000000000000000000000201139000000000000000000000000000000000000000000000000000000000020113a000000000000000000000000000000000000000000000000000000000020113b000000000000000000000000000000000000000000000000000000000020113c000000000000000000000000000000000000000000000000000000000020113d000000000000000000000000000000000000000000000000000000000020113e0800e9805e8a4faa87fc419af08a6d956f18976c46ea694bbd4cf6946e6d02033200e0925a6b172b4b01bb76eb1d3f7dd2ced118bca70d223a6d61afa1b75915ae00383590492d2f99a0283d1de57015b4b6b0759a8023af2c68fb4929dee2f303007ed57100dd77e2b6405f780503ef61b7b53e13f344b6e6a6eff3e3c13de0d0001ab1b0c348c46184dbc86ff79f248e7da1b09d3f9c6a986e98fe45389f060d0023d134bc68d7efa25e255001069827dc0bee766c08c988d6300071ed27fe6c0031cbb780b07f632cbaf767dc80608cc0a8e1d1df3ecd6f5d8bc0ca6703e4f4002c7dc9e731fc5f6456b2a70b4e636ac17d5e0cd36d3a591116a9e124f73586400000000000000000000000000000000000000000000000000000000000202000000000000000000000000000000000000000000000000000000000000020200a0000000000000000000000000000000000000000000000000000000000202001000000000000000000000000000000000000000000000000000000000020200b0000000000000000000000000000000000000000000000000000000000202002000000000000000000000000000000000000000000000000000000000020200c0000000000000000000000000000000000000000000000000000000000202003000000000000000000000000000000000000000000000000000000000020200d0000000000000000000000000000000000000000000000000000000000202004000000000000000000000000000000000000000000000000000000000020200e0000000000000000000000000000000000000000000000000000000000202005000000000000000000000000000000000000000000000000000000000020200f00000000000000000000000000000000000000000000000000000000002020060000000000000000000000000000000000000000000000000000000000202010000000000000000000000000000000000000000000000000000000000020200700000000000000000000000000000000000000000000000000000000002020110000000000000000000000000000000000000000000000000000000000202008000000000000000000000000000000000000000000000000000000000020201200000000000000000000000000000000000000000000000000000000002020090000000000000000000000000000000000000000000000000000000000202013000000000000000000000000000000000000000000000000000000000020200a0000000000000000000000000000000000000000000000000000000000202014000000000000000000000000000000000000000000000000000000000020200b0000000000000000000000000000000000000000000000000000000000202015000000000000000000000000000000000000000000000000000000000020200c0000000000000000000000000000000000000000000000000000000000202016000000000000000000000000000000000000000000000000000000000020200d0000000000000000000000000000000000000000000000000000000000202017000000000000000000000000000000000000000000000000000000000020200e0000000000000000000000000000000000000000000000000000000000202018000000000000000000000000000000000000000000000000000000000020200f00000000000000000000000000000000000000000000000000000000002020190000000000000000000000000000000000000000000000000000000000202010000000000000000000000000000000000000000000000000000000000020201a0000000000000000000000000000000000000000000000000000000000202011000000000000000000000000000000000000000000000000000000000020201b0000000000000000000000000000000000000000000000000000000000202012000000000000000000000000000000000000000000000000000000000020201c0000000000000000000000000000000000000000000000000000000000202013000000000000000000000000000000000000000000000000000000000020201d0000000000000000000000000000000000000000000000000000000000202014000000000000000000000000000000000000000000000000000000000020201e0000000000000000000000000000000000000000000000000000000000202015000000000000000000000000000000000000000000000000000000000020201f00000000000000000000000000000000000000000000000000000000002020160000000000000000000000000000000000000000000000000000000000202020000000000000000000000000000000000000000000000000000000000020201700000000000000000000000000000000000000000000000000000000002020210000000000000000000000000000000000000000000000000000000000202018000000000000000000000000000000000000000000000000000000000020202200000000000000000000000000000000000000000000000000000000002020190000000000000000000000000000000000000000000000000000000000202023000000000000000000000000000000000000000000000000000000000020201a0000000000000000000000000000000000000000000000000000000000202024000000000000000000000000000000000000000000000000000000000020201b0000000000000000000000000000000000000000000000000000000000202025000000000000000000000000000000000000000000000000000000000020201c0000000000000000000000000000000000000000000000000000000000202026000000000000000000000000000000000000000000000000000000000020201d0000000000000000000000000000000000000000000000000000000000202027000000000000000000000000000000000000000000000000000000000020201e0000000000000000000000000000000000000000000000000000000000202028000000000000000000000000000000000000000000000000000000000020201f00000000000000000000000000000000000000000000000000000000002020290000000000000000000000000000000000000000000000000000000000202020000000000000000000000000000000000000000000000000000000000020202a0000000000000000000000000000000000000000000000000000000000202021000000000000000000000000000000000000000000000000000000000020202b0000000000000000000000000000000000000000000000000000000000202022000000000000000000000000000000000000000000000000000000000020202c0000000000000000000000000000000000000000000000000000000000202023000000000000000000000000000000000000000000000000000000000020202d0000000000000000000000000000000000000000000000000000000000202024000000000000000000000000000000000000000000000000000000000020202e0000000000000000000000000000000000000000000000000000000000202025000000000000000000000000000000000000000000000000000000000020202f00000000000000000000000000000000000000000000000000000000002020260000000000000000000000000000000000000000000000000000000000202030000000000000000000000000000000000000000000000000000000000020202700000000000000000000000000000000000000000000000000000000002020310000000000000000000000000000000000000000000000000000000000202028000000000000000000000000000000000000000000000000000000000020203200000000000000000000000000000000000000000000000000000000002020290000000000000000000000000000000000000000000000000000000000202033000000000000000000000000000000000000000000000000000000000020202a0000000000000000000000000000000000000000000000000000000000202034000000000000000000000000000000000000000000000000000000000020202b0000000000000000000000000000000000000000000000000000000000202035000000000000000000000000000000000000000000000000000000000020202c0000000000000000000000000000000000000000000000000000000000202036000000000000000000000000000000000000000000000000000000000020202d0000000000000000000000000000000000000000000000000000000000202037000000000000000000000000000000000000000000000000000000000020202e0000000000000000000000000000000000000000000000000000000000202038000000000000000000000000000000000000000000000000000000000020202f00000000000000000000000000000000000000000000000000000000002020390000000000000000000000000000000000000000000000000000000000202030000000000000000000000000000000000000000000000000000000000020203a0000000000000000000000000000000000000000000000000000000000202031000000000000000000000000000000000000000000000000000000000020203b0000000000000000000000000000000000000000000000000000000000202032000000000000000000000000000000000000000000000000000000000020203c0000000000000000000000000000000000000000000000000000000000202033000000000000000000000000000000000000000000000000000000000020203d0000000000000000000000000000000000000000000000000000000000202034000000000000000000000000000000000000000000000000000000000020203e0000000000000000000000000000000000000000000000000000000000202035000000000000000000000000000000000000000000000000000000000020203f00000000000000000000000000000000000000000000000000000000002020360000000000000000000000000000000000000000000000000000000000202040000000000000000000000000000000000000000000000000000000000020203700000000000000000000000000000000000000000000000000000000002020410000000000000000000000000000000000000000000000000000000000202038000000000000000000000000000000000000000000000000000000000020204200000000000000000000000000000000000000000000000000000000002020390000000000000000000000000000000000000000000000000000000000202043000000000000000000000000000000000000000000000000000000000020203a0000000000000000000000000000000000000000000000000000000000202044000000000000000000000000000000000000000000000000000000000020203b0000000000000000000000000000000000000000000000000000000000202045000000000000000000000000000000000000000000000000000000000020203c0000000000000000000000000000000000000000000000000000000000202046000000000000000000000000000000000000000000000000000000000020203d0000000000000000000000000000000000000000000000000000000000202047000000000000000000000000000000000000000000000000000000000020203e0000000000000000000000000000000000000000000000000000000000202048000000000000000000000000000000000000000000000000000000000020203f0000000000000000000000000000000000000000000000000000000000202049200000000000000000000000000000000000000000000000000000000000201700000000000000000000000000000000000000000000000000000000000020170100000000000000000000000000000000000000000000000000000000002017020000000000000000000000000000000000000000000000000000000000201703000000000000000000000000000000000000000000000000000000000020170400000000000000000000000000000000000000000000000000000000002017050000000000000000000000000000000000000000000000000000000000201706000000000000000000000000000000000000000000000000000000000020170700000000000000000000000000000000000000000000000000000000002017080000000000000000000000000000000000000000000000000000000000201709000000000000000000000000000000000000000000000000000000000020170a000000000000000000000000000000000000000000000000000000000020170b000000000000000000000000000000000000000000000000000000000020170c000000000000000000000000000000000000000000000000000000000020170d000000000000000000000000000000000000000000000000000000000020170e000000000000000000000000000000000000000000000000000000000020170f00000000000000000000000000000000000000000000000000000000002017100000000000000000000000000000000000000000000000000000000000201711000000000000000000000000000000000000000000000000000000000020170100000000000000000000000000000000000000000000000000000000002017020000000000000000000000000000000000000000000000000000000000201703000000000000000000000000000000000000000000000000000000000020170400000000000000000000000000000000000000000000000000000000002017050000000000000000000000000000000000000000000000000000000000201706000000000000000000000000000000000000000000000000000000000020170700000000000000000000000000000000000000000000000000000000002017080000000000000000000000000000000000000000000000000000000000201709000000000000000000000000000000000000000000000000000000000020170a000000000000000000000000000000000000000000000000000000000020170b000000000000000000000000000000000000000000000000000000000020170c000000000000000000000000000000000000000000000000000000000020170d000000000000000000000000000000000000000000000000000000000020170e000000000000000000000000000000000000000000000000000000000020170f00000000000000000000000000000000000000000000000000000000002017100000000000000000000000000000000000000000000000000000000000201711000000000000000000000000000000000000000000000000000000000020171200000000000000000000000000000000000000000000000000000000002017020000000000000000000000000000000000000000000000000000000000201703000000000000000000000000000000000000000000000000000000000020170400000000000000000000000000000000000000000000000000000000002017050000000000000000000000000000000000000000000000000000000000201706000000000000000000000000000000000000000000000000000000000020170700000000000000000000000000000000000000000000000000000000002017080000000000000000000000000000000000000000000000000000000000201709000000000000000000000000000000000000000000000000000000000020170a000000000000000000000000000000000000000000000000000000000020170b000000000000000000000000000000000000000000000000000000000020170c000000000000000000000000000000000000000000000000000000000020170d000000000000000000000000000000000000000000000000000000000020170e000000000000000000000000000000000000000000000000000000000020170f00000000000000000000000000000000000000000000000000000000002017100000000000000000000000000000000000000000000000000000000000201711000000000000000000000000000000000000000000000000000000000020171200000000000000000000000000000000000000000000000000000000002017130000000000000000000000000000000000000000000000000000000000201703000000000000000000000000000000000000000000000000000000000020170400000000000000000000000000000000000000000000000000000000002017050000000000000000000000000000000000000000000000000000000000201706000000000000000000000000000000000000000000000000000000000020170700000000000000000000000000000000000000000000000000000000002017080000000000000000000000000000000000000000000000000000000000201709000000000000000000000000000000000000000000000000000000000020170a000000000000000000000000000000000000000000000000000000000020170b000000000000000000000000000000000000000000000000000000000020170c000000000000000000000000000000000000000000000000000000000020170d000000000000000000000000000000000000000000000000000000000020170e000000000000000000000000000000000000000000000000000000000020170f00000000000000000000000000000000000000000000000000000000002017100000000000000000000000000000000000000000000000000000000000201711000000000000000000000000000000000000000000000000000000000020171200000000000000000000000000000000000000000000000000000000002017130000000000000000000000000000000000000000000000000000000000201714000000000000000000000000000000000000000000000000000000000020170400000000000000000000000000000000000000000000000000000000002017050000000000000000000000000000000000000000000000000000000000201706000000000000000000000000000000000000000000000000000000000020170700000000000000000000000000000000000000000000000000000000002017080000000000000000000000000000000000000000000000000000000000201709000000000000000000000000000000000000000000000000000000000020170a000000000000000000000000000000000000000000000000000000000020170b000000000000000000000000000000000000000000000000000000000020170c000000000000000000000000000000000000000000000000000000000020170d000000000000000000000000000000000000000000000000000000000020170e000000000000000000000000000000000000000000000000000000000020170f00000000000000000000000000000000000000000000000000000000002017100000000000000000000000000000000000000000000000000000000000201711000000000000000000000000000000000000000000000000000000000020171200000000000000000000000000000000000000000000000000000000002017130000000000000000000000000000000000000000000000000000000000201714000000000000000000000000000000000000000000000000000000000020171500000000000000000000000000000000000000000000000000000000002017050000000000000000000000000000000000000000000000000000000000201706000000000000000000000000000000000000000000000000000000000020170700000000000000000000000000000000000000000000000000000000002017080000000000000000000000000000000000000000000000000000000000201709000000000000000000000000000000000000000000000000000000000020170a000000000000000000000000000000000000000000000000000000000020170b000000000000000000000000000000000000000000000000000000000020170c000000000000000000000000000000000000000000000000000000000020170d000000000000000000000000000000000000000000000000000000000020170e000000000000000000000000000000000000000000000000000000000020170f00000000000000000000000000000000000000000000000000000000002017100000000000000000000000000000000000000000000000000000000000201711000000000000000000000000000000000000000000000000000000000020171200000000000000000000000000000000000000000000000000000000002017130000000000000000000000000000000000000000000000000000000000201714000000000000000000000000000000000000000000000000000000000020171500000000000000000000000000000000000000000000000000000000002017160000000000000000000000000000000000000000000000000000000000201706000000000000000000000000000000000000000000000000000000000020170700000000000000000000000000000000000000000000000000000000002017080000000000000000000000000000000000000000000000000000000000201709000000000000000000000000000000000000000000000000000000000020170a000000000000000000000000000000000000000000000000000000000020170b000000000000000000000000000000000000000000000000000000000020170c000000000000000000000000000000000000000000000000000000000020170d000000000000000000000000000000000000000000000000000000000020170e000000000000000000000000000000000000000000000000000000000020170f00000000000000000000000000000000000000000000000000000000002017100000000000000000000000000000000000000000000000000000000000201711000000000000000000000000000000000000000000000000000000000020171200000000000000000000000000000000000000000000000000000000002017130000000000000000000000000000000000000000000000000000000000201714000000000000000000000000000000000000000000000000000000000020171500000000000000000000000000000000000000000000000000000000002017160000000000000000000000000000000000000000000000000000000000201717000000000000000000000000000000000000000000000000000000000020170700000000000000000000000000000000000000000000000000000000002017080000000000000000000000000000000000000000000000000000000000201709000000000000000000000000000000000000000000000000000000000020170a000000000000000000000000000000000000000000000000000000000020170b000000000000000000000000000000000000000000000000000000000020170c000000000000000000000000000000000000000000000000000000000020170d000000000000000000000000000000000000000000000000000000000020170e000000000000000000000000000000000000000000000000000000000020170f00000000000000000000000000000000000000000000000000000000002017100000000000000000000000000000000000000000000000000000000000201711000000000000000000000000000000000000000000000000000000000020171200000000000000000000000000000000000000000000000000000000002017130000000000000000000000000000000000000000000000000000000000201714000000000000000000000000000000000000000000000000000000000020171500000000000000000000000000000000000000000000000000000000002017160000000000000000000000000000000000000000000000000000000000201717000000000000000000000000000000000000000000000000000000000020171800000000000000000000000000000000000000000000000000000000002017080000000000000000000000000000000000000000000000000000000000201709000000000000000000000000000000000000000000000000000000000020170a000000000000000000000000000000000000000000000000000000000020170b000000000000000000000000000000000000000000000000000000000020170c000000000000000000000000000000000000000000000000000000000020170d000000000000000000000000000000000000000000000000000000000020170e000000000000000000000000000000000000000000000000000000000020170f00000000000000000000000000000000000000000000000000000000002017100000000000000000000000000000000000000000000000000000000000201711000000000000000000000000000000000000000000000000000000000020171200000000000000000000000000000000000000000000000000000000002017130000000000000000000000000000000000000000000000000000000000201714000000000000000000000000000000000000000000000000000000000020171500000000000000000000000000000000000000000000000000000000002017160000000000000000000000000000000000000000000000000000000000201717000000000000000000000000000000000000000000000000000000000020171800000000000000000000000000000000000000000000000000000000002017190000000000000000000000000000000000000000000000000000000000201709000000000000000000000000000000000000000000000000000000000020170a000000000000000000000000000000000000000000000000000000000020170b000000000000000000000000000000000000000000000000000000000020170c000000000000000000000000000000000000000000000000000000000020170d000000000000000000000000000000000000000000000000000000000020170e000000000000000000000000000000000000000000000000000000000020170f0000000000000000000000000000000000000000000000000000000000201710000000000000000000000000000000000000000000000000000000000020171100000000000000000000000000000000000000000000000000000000002017120000000000000000000000000000000000000000000000000000000000201713000000000000000000000000000000000000000000000000000000000020171400000000000000000000000000000000000000000000000000000000002017150000000000000000000000000000000000000000000000000000000000201716000000000000000000000000000000000000000000000000000000000020171700000000000000000000000000000000000000000000000000000000002017180000000000000000000000000000000000000000000000000000000000201719000000000000000000000000000000000000000000000000000000000020171a000000000000000000000000000000000000000000000000000000000020170a000000000000000000000000000000000000000000000000000000000020170b000000000000000000000000000000000000000000000000000000000020170c000000000000000000000000000000000000000000000000000000000020170d000000000000000000000000000000000000000000000000000000000020170e000000000000000000000000000000000000000000000000000000000020170f0000000000000000000000000000000000000000000000000000000000201710000000000000000000000000000000000000000000000000000000000020171100000000000000000000000000000000000000000000000000000000002017120000000000000000000000000000000000000000000000000000000000201713000000000000000000000000000000000000000000000000000000000020171400000000000000000000000000000000000000000000000000000000002017150000000000000000000000000000000000000000000000000000000000201716000000000000000000000000000000000000000000000000000000000020171700000000000000000000000000000000000000000000000000000000002017180000000000000000000000000000000000000000000000000000000000201719000000000000000000000000000000000000000000000000000000000020171a000000000000000000000000000000000000000000000000000000000020171b000000000000000000000000000000000000000000000000000000000020170b000000000000000000000000000000000000000000000000000000000020170c000000000000000000000000000000000000000000000000000000000020170d000000000000000000000000000000000000000000000000000000000020170e000000000000000000000000000000000000000000000000000000000020170f0000000000000000000000000000000000000000000000000000000000201710000000000000000000000000000000000000000000000000000000000020171100000000000000000000000000000000000000000000000000000000002017120000000000000000000000000000000000000000000000000000000000201713000000000000000000000000000000000000000000000000000000000020171400000000000000000000000000000000000000000000000000000000002017150000000000000000000000000000000000000000000000000000000000201716000000000000000000000000000000000000000000000000000000000020171700000000000000000000000000000000000000000000000000000000002017180000000000000000000000000000000000000000000000000000000000201719000000000000000000000000000000000000000000000000000000000020171a000000000000000000000000000000000000000000000000000000000020171b000000000000000000000000000000000000000000000000000000000020171c000000000000000000000000000000000000000000000000000000000020170c000000000000000000000000000000000000000000000000000000000020170d000000000000000000000000000000000000000000000000000000000020170e000000000000000000000000000000000000000000000000000000000020170f0000000000000000000000000000000000000000000000000000000000201710000000000000000000000000000000000000000000000000000000000020171100000000000000000000000000000000000000000000000000000000002017120000000000000000000000000000000000000000000000000000000000201713000000000000000000000000000000000000000000000000000000000020171400000000000000000000000000000000000000000000000000000000002017150000000000000000000000000000000000000000000000000000000000201716000000000000000000000000000000000000000000000000000000000020171700000000000000000000000000000000000000000000000000000000002017180000000000000000000000000000000000000000000000000000000000201719000000000000000000000000000000000000000000000000000000000020171a000000000000000000000000000000000000000000000000000000000020171b000000000000000000000000000000000000000000000000000000000020171c000000000000000000000000000000000000000000000000000000000020171d000000000000000000000000000000000000000000000000000000000020170d000000000000000000000000000000000000000000000000000000000020170e000000000000000000000000000000000000000000000000000000000020170f0000000000000000000000000000000000000000000000000000000000201710000000000000000000000000000000000000000000000000000000000020171100000000000000000000000000000000000000000000000000000000002017120000000000000000000000000000000000000000000000000000000000201713000000000000000000000000000000000000000000000000000000000020171400000000000000000000000000000000000000000000000000000000002017150000000000000000000000000000000000000000000000000000000000201716000000000000000000000000000000000000000000000000000000000020171700000000000000000000000000000000000000000000000000000000002017180000000000000000000000000000000000000000000000000000000000201719000000000000000000000000000000000000000000000000000000000020171a000000000000000000000000000000000000000000000000000000000020171b000000000000000000000000000000000000000000000000000000000020171c000000000000000000000000000000000000000000000000000000000020171d000000000000000000000000000000000000000000000000000000000020171e000000000000000000000000000000000000000000000000000000000020170e000000000000000000000000000000000000000000000000000000000020170f0000000000000000000000000000000000000000000000000000000000201710000000000000000000000000000000000000000000000000000000000020171100000000000000000000000000000000000000000000000000000000002017120000000000000000000000000000000000000000000000000000000000201713000000000000000000000000000000000000000000000000000000000020171400000000000000000000000000000000000000000000000000000000002017150000000000000000000000000000000000000000000000000000000000201716000000000000000000000000000000000000000000000000000000000020171700000000000000000000000000000000000000000000000000000000002017180000000000000000000000000000000000000000000000000000000000201719000000000000000000000000000000000000000000000000000000000020171a000000000000000000000000000000000000000000000000000000000020171b000000000000000000000000000000000000000000000000000000000020171c000000000000000000000000000000000000000000000000000000000020171d000000000000000000000000000000000000000000000000000000000020171e000000000000000000000000000000000000000000000000000000000020171f000000000000000000000000000000000000000000000000000000000020170f0000000000000000000000000000000000000000000000000000000000201710000000000000000000000000000000000000000000000000000000000020171100000000000000000000000000000000000000000000000000000000002017120000000000000000000000000000000000000000000000000000000000201713000000000000000000000000000000000000000000000000000000000020171400000000000000000000000000000000000000000000000000000000002017150000000000000000000000000000000000000000000000000000000000201716000000000000000000000000000000000000000000000000000000000020171700000000000000000000000000000000000000000000000000000000002017180000000000000000000000000000000000000000000000000000000000201719000000000000000000000000000000000000000000000000000000000020171a000000000000000000000000000000000000000000000000000000000020171b000000000000000000000000000000000000000000000000000000000020171c000000000000000000000000000000000000000000000000000000000020171d000000000000000000000000000000000000000000000000000000000020171e000000000000000000000000000000000000000000000000000000000020171f00000000000000000000000000000000000000000000000000000000002017200000000000000000000000000000000000000000000000000000000000201710000000000000000000000000000000000000000000000000000000000020171100000000000000000000000000000000000000000000000000000000002017120000000000000000000000000000000000000000000000000000000000201713000000000000000000000000000000000000000000000000000000000020171400000000000000000000000000000000000000000000000000000000002017150000000000000000000000000000000000000000000000000000000000201716000000000000000000000000000000000000000000000000000000000020171700000000000000000000000000000000000000000000000000000000002017180000000000000000000000000000000000000000000000000000000000201719000000000000000000000000000000000000000000000000000000000020171a000000000000000000000000000000000000000000000000000000000020171b000000000000000000000000000000000000000000000000000000000020171c000000000000000000000000000000000000000000000000000000000020171d000000000000000000000000000000000000000000000000000000000020171e000000000000000000000000000000000000000000000000000000000020171f00000000000000000000000000000000000000000000000000000000002017200000000000000000000000000000000000000000000000000000000000201721000000000000000000000000000000000000000000000000000000000020171100000000000000000000000000000000000000000000000000000000002017120000000000000000000000000000000000000000000000000000000000201713000000000000000000000000000000000000000000000000000000000020171400000000000000000000000000000000000000000000000000000000002017150000000000000000000000000000000000000000000000000000000000201716000000000000000000000000000000000000000000000000000000000020171700000000000000000000000000000000000000000000000000000000002017180000000000000000000000000000000000000000000000000000000000201719000000000000000000000000000000000000000000000000000000000020171a000000000000000000000000000000000000000000000000000000000020171b000000000000000000000000000000000000000000000000000000000020171c000000000000000000000000000000000000000000000000000000000020171d000000000000000000000000000000000000000000000000000000000020171e000000000000000000000000000000000000000000000000000000000020171f00000000000000000000000000000000000000000000000000000000002017200000000000000000000000000000000000000000000000000000000000201721000000000000000000000000000000000000000000000000000000000020172200000000000000000000000000000000000000000000000000000000002017120000000000000000000000000000000000000000000000000000000000201713000000000000000000000000000000000000000000000000000000000020171400000000000000000000000000000000000000000000000000000000002017150000000000000000000000000000000000000000000000000000000000201716000000000000000000000000000000000000000000000000000000000020171700000000000000000000000000000000000000000000000000000000002017180000000000000000000000000000000000000000000000000000000000201719000000000000000000000000000000000000000000000000000000000020171a000000000000000000000000000000000000000000000000000000000020171b000000000000000000000000000000000000000000000000000000000020171c000000000000000000000000000000000000000000000000000000000020171d000000000000000000000000000000000000000000000000000000000020171e000000000000000000000000000000000000000000000000000000000020171f00000000000000000000000000000000000000000000000000000000002017200000000000000000000000000000000000000000000000000000000000201721000000000000000000000000000000000000000000000000000000000020172200000000000000000000000000000000000000000000000000000000002017230000000000000000000000000000000000000000000000000000000000201713000000000000000000000000000000000000000000000000000000000020171400000000000000000000000000000000000000000000000000000000002017150000000000000000000000000000000000000000000000000000000000201716000000000000000000000000000000000000000000000000000000000020171700000000000000000000000000000000000000000000000000000000002017180000000000000000000000000000000000000000000000000000000000201719000000000000000000000000000000000000000000000000000000000020171a000000000000000000000000000000000000000000000000000000000020171b000000000000000000000000000000000000000000000000000000000020171c000000000000000000000000000000000000000000000000000000000020171d000000000000000000000000000000000000000000000000000000000020171e000000000000000000000000000000000000000000000000000000000020171f00000000000000000000000000000000000000000000000000000000002017200000000000000000000000000000000000000000000000000000000000201721000000000000000000000000000000000000000000000000000000000020172200000000000000000000000000000000000000000000000000000000002017230000000000000000000000000000000000000000000000000000000000201724000000000000000000000000000000000000000000000000000000000020171400000000000000000000000000000000000000000000000000000000002017150000000000000000000000000000000000000000000000000000000000201716000000000000000000000000000000000000000000000000000000000020171700000000000000000000000000000000000000000000000000000000002017180000000000000000000000000000000000000000000000000000000000201719000000000000000000000000000000000000000000000000000000000020171a000000000000000000000000000000000000000000000000000000000020171b000000000000000000000000000000000000000000000000000000000020171c000000000000000000000000000000000000000000000000000000000020171d000000000000000000000000000000000000000000000000000000000020171e000000000000000000000000000000000000000000000000000000000020171f00000000000000000000000000000000000000000000000000000000002017200000000000000000000000000000000000000000000000000000000000201721000000000000000000000000000000000000000000000000000000000020172200000000000000000000000000000000000000000000000000000000002017230000000000000000000000000000000000000000000000000000000000201724000000000000000000000000000000000000000000000000000000000020172500000000000000000000000000000000000000000000000000000000002017150000000000000000000000000000000000000000000000000000000000201716000000000000000000000000000000000000000000000000000000000020171700000000000000000000000000000000000000000000000000000000002017180000000000000000000000000000000000000000000000000000000000201719000000000000000000000000000000000000000000000000000000000020171a000000000000000000000000000000000000000000000000000000000020171b000000000000000000000000000000000000000000000000000000000020171c000000000000000000000000000000000000000000000000000000000020171d000000000000000000000000000000000000000000000000000000000020171e000000000000000000000000000000000000000000000000000000000020171f00000000000000000000000000000000000000000000000000000000002017200000000000000000000000000000000000000000000000000000000000201721000000000000000000000000000000000000000000000000000000000020172200000000000000000000000000000000000000000000000000000000002017230000000000000000000000000000000000000000000000000000000000201724000000000000000000000000000000000000000000000000000000000020172500000000000000000000000000000000000000000000000000000000002017260000000000000000000000000000000000000000000000000000000000201716000000000000000000000000000000000000000000000000000000000020171700000000000000000000000000000000000000000000000000000000002017180000000000000000000000000000000000000000000000000000000000201719000000000000000000000000000000000000000000000000000000000020171a000000000000000000000000000000000000000000000000000000000020171b000000000000000000000000000000000000000000000000000000000020171c000000000000000000000000000000000000000000000000000000000020171d000000000000000000000000000000000000000000000000000000000020171e000000000000000000000000000000000000000000000000000000000020171f00000000000000000000000000000000000000000000000000000000002017200000000000000000000000000000000000000000000000000000000000201721000000000000000000000000000000000000000000000000000000000020172200000000000000000000000000000000000000000000000000000000002017230000000000000000000000000000000000000000000000000000000000201724000000000000000000000000000000000000000000000000000000000020172500000000000000000000000000000000000000000000000000000000002017260000000000000000000000000000000000000000000000000000000000201727000000000000000000000000000000000000000000000000000000000020171700000000000000000000000000000000000000000000000000000000002017180000000000000000000000000000000000000000000000000000000000201719000000000000000000000000000000000000000000000000000000000020171a000000000000000000000000000000000000000000000000000000000020171b000000000000000000000000000000000000000000000000000000000020171c000000000000000000000000000000000000000000000000000000000020171d000000000000000000000000000000000000000000000000000000000020171e000000000000000000000000000000000000000000000000000000000020171f00000000000000000000000000000000000000000000000000000000002017200000000000000000000000000000000000000000000000000000000000201721000000000000000000000000000000000000000000000000000000000020172200000000000000000000000000000000000000000000000000000000002017230000000000000000000000000000000000000000000000000000000000201724000000000000000000000000000000000000000000000000000000000020172500000000000000000000000000000000000000000000000000000000002017260000000000000000000000000000000000000000000000000000000000201727000000000000000000000000000000000000000000000000000000000020172800000000000000000000000000000000000000000000000000000000002017180000000000000000000000000000000000000000000000000000000000201719000000000000000000000000000000000000000000000000000000000020171a000000000000000000000000000000000000000000000000000000000020171b000000000000000000000000000000000000000000000000000000000020171c000000000000000000000000000000000000000000000000000000000020171d000000000000000000000000000000000000000000000000000000000020171e000000000000000000000000000000000000000000000000000000000020171f00000000000000000000000000000000000000000000000000000000002017200000000000000000000000000000000000000000000000000000000000201721000000000000000000000000000000000000000000000000000000000020172200000000000000000000000000000000000000000000000000000000002017230000000000000000000000000000000000000000000000000000000000201724000000000000000000000000000000000000000000000000000000000020172500000000000000000000000000000000000000000000000000000000002017260000000000000000000000000000000000000000000000000000000000201727000000000000000000000000000000000000000000000000000000000020172800000000000000000000000000000000000000000000000000000000002017290000000000000000000000000000000000000000000000000000000000201719000000000000000000000000000000000000000000000000000000000020171a000000000000000000000000000000000000000000000000000000000020171b000000000000000000000000000000000000000000000000000000000020171c000000000000000000000000000000000000000000000000000000000020171d000000000000000000000000000000000000000000000000000000000020171e000000000000000000000000000000000000000000000000000000000020171f0000000000000000000000000000000000000000000000000000000000201720000000000000000000000000000000000000000000000000000000000020172100000000000000000000000000000000000000000000000000000000002017220000000000000000000000000000000000000000000000000000000000201723000000000000000000000000000000000000000000000000000000000020172400000000000000000000000000000000000000000000000000000000002017250000000000000000000000000000000000000000000000000000000000201726000000000000000000000000000000000000000000000000000000000020172700000000000000000000000000000000000000000000000000000000002017280000000000000000000000000000000000000000000000000000000000201729000000000000000000000000000000000000000000000000000000000020172a000000000000000000000000000000000000000000000000000000000020171a000000000000000000000000000000000000000000000000000000000020171b000000000000000000000000000000000000000000000000000000000020171c000000000000000000000000000000000000000000000000000000000020171d000000000000000000000000000000000000000000000000000000000020171e000000000000000000000000000000000000000000000000000000000020171f0000000000000000000000000000000000000000000000000000000000201720000000000000000000000000000000000000000000000000000000000020172100000000000000000000000000000000000000000000000000000000002017220000000000000000000000000000000000000000000000000000000000201723000000000000000000000000000000000000000000000000000000000020172400000000000000000000000000000000000000000000000000000000002017250000000000000000000000000000000000000000000000000000000000201726000000000000000000000000000000000000000000000000000000000020172700000000000000000000000000000000000000000000000000000000002017280000000000000000000000000000000000000000000000000000000000201729000000000000000000000000000000000000000000000000000000000020172a000000000000000000000000000000000000000000000000000000000020172b000000000000000000000000000000000000000000000000000000000020171b000000000000000000000000000000000000000000000000000000000020171c000000000000000000000000000000000000000000000000000000000020171d000000000000000000000000000000000000000000000000000000000020171e000000000000000000000000000000000000000000000000000000000020171f0000000000000000000000000000000000000000000000000000000000201720000000000000000000000000000000000000000000000000000000000020172100000000000000000000000000000000000000000000000000000000002017220000000000000000000000000000000000000000000000000000000000201723000000000000000000000000000000000000000000000000000000000020172400000000000000000000000000000000000000000000000000000000002017250000000000000000000000000000000000000000000000000000000000201726000000000000000000000000000000000000000000000000000000000020172700000000000000000000000000000000000000000000000000000000002017280000000000000000000000000000000000000000000000000000000000201729000000000000000000000000000000000000000000000000000000000020172a000000000000000000000000000000000000000000000000000000000020172b000000000000000000000000000000000000000000000000000000000020172c000000000000000000000000000000000000000000000000000000000020171c000000000000000000000000000000000000000000000000000000000020171d000000000000000000000000000000000000000000000000000000000020171e000000000000000000000000000000000000000000000000000000000020171f0000000000000000000000000000000000000000000000000000000000201720000000000000000000000000000000000000000000000000000000000020172100000000000000000000000000000000000000000000000000000000002017220000000000000000000000000000000000000000000000000000000000201723000000000000000000000000000000000000000000000000000000000020172400000000000000000000000000000000000000000000000000000000002017250000000000000000000000000000000000000000000000000000000000201726000000000000000000000000000000000000000000000000000000000020172700000000000000000000000000000000000000000000000000000000002017280000000000000000000000000000000000000000000000000000000000201729000000000000000000000000000000000000000000000000000000000020172a000000000000000000000000000000000000000000000000000000000020172b000000000000000000000000000000000000000000000000000000000020172c000000000000000000000000000000000000000000000000000000000020172d000000000000000000000000000000000000000000000000000000000020171d000000000000000000000000000000000000000000000000000000000020171e000000000000000000000000000000000000000000000000000000000020171f0000000000000000000000000000000000000000000000000000000000201720000000000000000000000000000000000000000000000000000000000020172100000000000000000000000000000000000000000000000000000000002017220000000000000000000000000000000000000000000000000000000000201723000000000000000000000000000000000000000000000000000000000020172400000000000000000000000000000000000000000000000000000000002017250000000000000000000000000000000000000000000000000000000000201726000000000000000000000000000000000000000000000000000000000020172700000000000000000000000000000000000000000000000000000000002017280000000000000000000000000000000000000000000000000000000000201729000000000000000000000000000000000000000000000000000000000020172a000000000000000000000000000000000000000000000000000000000020172b000000000000000000000000000000000000000000000000000000000020172c000000000000000000000000000000000000000000000000000000000020172d000000000000000000000000000000000000000000000000000000000020172e000000000000000000000000000000000000000000000000000000000020171e000000000000000000000000000000000000000000000000000000000020171f0000000000000000000000000000000000000000000000000000000000201720000000000000000000000000000000000000000000000000000000000020172100000000000000000000000000000000000000000000000000000000002017220000000000000000000000000000000000000000000000000000000000201723000000000000000000000000000000000000000000000000000000000020172400000000000000000000000000000000000000000000000000000000002017250000000000000000000000000000000000000000000000000000000000201726000000000000000000000000000000000000000000000000000000000020172700000000000000000000000000000000000000000000000000000000002017280000000000000000000000000000000000000000000000000000000000201729000000000000000000000000000000000000000000000000000000000020172a000000000000000000000000000000000000000000000000000000000020172b000000000000000000000000000000000000000000000000000000000020172c000000000000000000000000000000000000000000000000000000000020172d000000000000000000000000000000000000000000000000000000000020172e000000000000000000000000000000000000000000000000000000000020172f000000000000000000000000000000000000000000000000000000000020171f0000000000000000000000000000000000000000000000000000000000201720000000000000000000000000000000000000000000000000000000000020172100000000000000000000000000000000000000000000000000000000002017220000000000000000000000000000000000000000000000000000000000201723000000000000000000000000000000000000000000000000000000000020172400000000000000000000000000000000000000000000000000000000002017250000000000000000000000000000000000000000000000000000000000201726000000000000000000000000000000000000000000000000000000000020172700000000000000000000000000000000000000000000000000000000002017280000000000000000000000000000000000000000000000000000000000201729000000000000000000000000000000000000000000000000000000000020172a000000000000000000000000000000000000000000000000000000000020172b000000000000000000000000000000000000000000000000000000000020172c000000000000000000000000000000000000000000000000000000000020172d000000000000000000000000000000000000000000000000000000000020172e000000000000000000000000000000000000000000000000000000000020172f00000000000000000000000000000000000000000000000000000000002017300000", "decodedHeader": { "contentCommitment": { - "blobsHash": "0x00a8d4c0dee4901c68458881b925b4576bd140599cbae6a3cb9d7f1e1b6d197d", + "blobsHash": "0x0042a7cffd7591f823ec8fa49858e9f3b03e748b2b9cd6cbdcd948a40028eec6", "inHash": "0x00e1371045bd7d2c3e1f19cba5f536f0e82042ba4bc257d4ba19c146215e8242", "outHash": "0x00a5c37986316b1f5f2df53fa9ddf4965f539e872f5e1374f28d225540faca26", "numTxs": 4 }, "globalVariables": { "blockNumber": 2, - "slotNumber": "0x0000000000000000000000000000000000000000000000000000000000000024", + "slotNumber": "0x0000000000000000000000000000000000000000000000000000000000000022", "chainId": 31337, - "timestamp": 1736365276, + "timestamp": 1742999929, "version": 1, - "coinbase": "0x47a5c7b19f878b54220ac956fb944fcfb5f6b2e6", - "feeRecipient": "0x0ffa0bf0720b8a60f9ff8083ccc832d2667594435c2a611ee678c145019d282e", + "coinbase": "0xd000439d68f416a72188f6c91df9835e23d1619d", + "feeRecipient": "0x27f4b7fbf6f8db148d464396089d97cb994ababc3e1923d24b1e6076b0431b00", "gasFees": { "feePerDaGas": 0, - "feePerL2Gas": 54153579570 + "feePerL2Gas": 1020 } }, "totalFees": "0x0000000000000000000000000000000000000000000000000000000000000000", "totalManaUsed": "0x0000000000000000000000000000000000000000000000000000000000000000", "lastArchive": { "nextAvailableLeafIndex": 2, - "root": "0x180cfc8087a03f6b75c2de9c483d3284caa57bd6c56e2bd88e276ba0b9abe1c7" + "root": "0x155210fd3188716162b2f6c650aa5874466280eb49e68f21f392d746919f6e1b" }, "stateReference": { "l1ToL2MessageTree": { @@ -108,9 +107,9 @@ } } }, - "header": "0x180cfc8087a03f6b75c2de9c483d3284caa57bd6c56e2bd88e276ba0b9abe1c700000002000000000000000000000000000000000000000000000000000000000000000400a8d4c0dee4901c68458881b925b4576bd140599cbae6a3cb9d7f1e1b6d197d00e1371045bd7d2c3e1f19cba5f536f0e82042ba4bc257d4ba19c146215e824200a5c37986316b1f5f2df53fa9ddf4965f539e872f5e1374f28d225540faca26026efb6c2a517de2448119d0f1255757265dbec7cdd2952df929ede666e10944000000202494d2575971bca59a28ddc774d19136f4a294951ab67258c7e9c2d8f980592400000200137a2b2aa3dc64677f9670d964242d8fbf9fbabaa6b05e2c910eb0cb0f7cc3be0000028027d5aa7e8c9cc259ee91c6b2a712904c93d1d1293118fae7026302a75c84d61e000002800000000000000000000000000000000000000000000000000000000000007a6900000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000002400000000000000000000000000000000000000000000000000000000677ed4dc47a5c7b19f878b54220ac956fb944fcfb5f6b2e60ffa0bf0720b8a60f9ff8083ccc832d2667594435c2a611ee678c145019d282e00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000c9bce0c3200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", - "publicInputsHash": "0x00041860cd757320ffae492dbc1d9525bcc12cfd668be22f6599059df03ffc35", - "blobInputs": "0x01014448ff81ac90d329de0b7182bc7f444692c279989245a11c8144eff78cd5bd171c5ca343e29fe5028baf63594e2ed170e8f664e7a5a838129effe22387a05107f779345866dedee97d0d4cf49e310ef4e525031fcd95ff7c29da6f1df1d9c296274e174114aa677b9a175fe69e1a01b0864aaf0dad092d511644764112cf0563c2944aa6fb89aa65e425beaafb241aa0d57240a3bf269b0e19b6b44a1924db158d223b66eaca177cb9fb33e1be38154b1a0d4c7ecf1ed8df60a5d0acc8404f", + "header": "0x155210fd3188716162b2f6c650aa5874466280eb49e68f21f392d746919f6e1b0000000200000000000000000000000000000000000000000000000000000000000000040042a7cffd7591f823ec8fa49858e9f3b03e748b2b9cd6cbdcd948a40028eec600e1371045bd7d2c3e1f19cba5f536f0e82042ba4bc257d4ba19c146215e824200a5c37986316b1f5f2df53fa9ddf4965f539e872f5e1374f28d225540faca26026efb6c2a517de2448119d0f1255757265dbec7cdd2952df929ede666e10944000000202494d2575971bca59a28ddc774d19136f4a294951ab67258c7e9c2d8f980592400000200137a2b2aa3dc64677f9670d964242d8fbf9fbabaa6b05e2c910eb0cb0f7cc3be0000028027d5aa7e8c9cc259ee91c6b2a712904c93d1d1293118fae7026302a75c84d61e000002800000000000000000000000000000000000000000000000000000000000007a690000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000220000000000000000000000000000000000000000000000000000000067e41179d000439d68f416a72188f6c91df9835e23d1619d27f4b7fbf6f8db148d464396089d97cb994ababc3e1923d24b1e6076b0431b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003fc00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "publicInputsHash": "0x00e4dc66a369a61cde70f33427261c0364d2da863c68482345d59f8d2101124b", + "blobInputs": "0x01017cc9c82841a1d9d8d26e294a1c91b4dd0d731a5a4ea7f8b5cc9e1e0e79b3b0210173d836288004a169ce0164d5260b3916a8322c2e10d767c2cd88bf259de604307f2585ab89042782f6d71a0803c3473773eb1f1496e588abc88f598bcfdeb0def1e7863bb049829d2becab7e29bced7a0c2ddf9e28c398a90d6fba74c5ae8926fc0e4db0002b05ab1bcdb8da59d9ae9b47ac7f4d0b94291442d59902483b167f42cdd7ae92611e46cdfd211f14a2dfdffd98ee363eb40a45a3612f5b773f", "numTxs": 4 } } \ No newline at end of file diff --git a/l1-contracts/test/fixtures/single_tx_block_1.json b/l1-contracts/test/fixtures/single_tx_block_1.json index 26b09d6e6bcd..13b84b5ea370 100644 --- a/l1-contracts/test/fixtures/single_tx_block_1.json +++ b/l1-contracts/test/fixtures/single_tx_block_1.json @@ -34,27 +34,26 @@ ] }, "block": { - "archive": "0x018b2a76a24f5703f68fd1fb585b12d48e48c7c85857a338a3826941a74b2fa6", - "blockHash": "0x08b88f6825aaad92592bba16c7e686efa0656abb7a2a7d0123ab3f885b049e08", - "body": "0x00000001000000000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000041000000000000000000000000000000000000000000000000000000000000004100100000000000000000000000000000000000000000000000000000000000410020000000000000000000000000000000000000000000000000000000000041003000000000000000000000000000000000000000000000000000000000004100400000000000000000000000000000000000000000000000000000000000410050000000000000000000000000000000000000000000000000000000000041006000000000000000000000000000000000000000000000000000000000004100700000000000000000000000000000000000000000000000000000000000410080000000000000000000000000000000000000000000000000000000000041009000000000000000000000000000000000000000000000000000000000004100a000000000000000000000000000000000000000000000000000000000004100b000000000000000000000000000000000000000000000000000000000004100c000000000000000000000000000000000000000000000000000000000004100d000000000000000000000000000000000000000000000000000000000004100e000000000000000000000000000000000000000000000000000000000004100f0000000000000000000000000000000000000000000000000000000000041010000000000000000000000000000000000000000000000000000000000004101100000000000000000000000000000000000000000000000000000000000410120000000000000000000000000000000000000000000000000000000000041013000000000000000000000000000000000000000000000000000000000004101400000000000000000000000000000000000000000000000000000000000410150000000000000000000000000000000000000000000000000000000000041016000000000000000000000000000000000000000000000000000000000004101700000000000000000000000000000000000000000000000000000000000410180000000000000000000000000000000000000000000000000000000000041019000000000000000000000000000000000000000000000000000000000004101a000000000000000000000000000000000000000000000000000000000004101b000000000000000000000000000000000000000000000000000000000004101c000000000000000000000000000000000000000000000000000000000004101d000000000000000000000000000000000000000000000000000000000004101e000000000000000000000000000000000000000000000000000000000004101f0000000000000000000000000000000000000000000000000000000000041020000000000000000000000000000000000000000000000000000000000004102100000000000000000000000000000000000000000000000000000000000410220000000000000000000000000000000000000000000000000000000000041023000000000000000000000000000000000000000000000000000000000004102400000000000000000000000000000000000000000000000000000000000410250000000000000000000000000000000000000000000000000000000000041026000000000000000000000000000000000000000000000000000000000004102700000000000000000000000000000000000000000000000000000000000410280000000000000000000000000000000000000000000000000000000000041029000000000000000000000000000000000000000000000000000000000004102a000000000000000000000000000000000000000000000000000000000004102b000000000000000000000000000000000000000000000000000000000004102c000000000000000000000000000000000000000000000000000000000004102d000000000000000000000000000000000000000000000000000000000004102e000000000000000000000000000000000000000000000000000000000004102f0000000000000000000000000000000000000000000000000000000000041030000000000000000000000000000000000000000000000000000000000004103100000000000000000000000000000000000000000000000000000000000410320000000000000000000000000000000000000000000000000000000000041033000000000000000000000000000000000000000000000000000000000004103400000000000000000000000000000000000000000000000000000000000410350000000000000000000000000000000000000000000000000000000000041036000000000000000000000000000000000000000000000000000000000004103700000000000000000000000000000000000000000000000000000000000410380000000000000000000000000000000000000000000000000000000000041039000000000000000000000000000000000000000000000000000000000004103a000000000000000000000000000000000000000000000000000000000004103b000000000000000000000000000000000000000000000000000000000004103c000000000000000000000000000000000000000000000000000000000004103d000000000000000000000000000000000000000000000000000000000004103e000000000000000000000000000000000000000000000000000000000004103f4000000000000000000000000000000000000000000000000000000000000400010000000000000000000000000000000000000000000000000000000000041100000000000000000000000000000000000000000000000000000000000004110100000000000000000000000000000000000000000000000000000000000411020000000000000000000000000000000000000000000000000000000000041103000000000000000000000000000000000000000000000000000000000004110400000000000000000000000000000000000000000000000000000000000411050000000000000000000000000000000000000000000000000000000000041106000000000000000000000000000000000000000000000000000000000004110700000000000000000000000000000000000000000000000000000000000411080000000000000000000000000000000000000000000000000000000000041109000000000000000000000000000000000000000000000000000000000004110a000000000000000000000000000000000000000000000000000000000004110b000000000000000000000000000000000000000000000000000000000004110c000000000000000000000000000000000000000000000000000000000004110d000000000000000000000000000000000000000000000000000000000004110e000000000000000000000000000000000000000000000000000000000004110f0000000000000000000000000000000000000000000000000000000000041110000000000000000000000000000000000000000000000000000000000004111100000000000000000000000000000000000000000000000000000000000411120000000000000000000000000000000000000000000000000000000000041113000000000000000000000000000000000000000000000000000000000004111400000000000000000000000000000000000000000000000000000000000411150000000000000000000000000000000000000000000000000000000000041116000000000000000000000000000000000000000000000000000000000004111700000000000000000000000000000000000000000000000000000000000411180000000000000000000000000000000000000000000000000000000000041119000000000000000000000000000000000000000000000000000000000004111a000000000000000000000000000000000000000000000000000000000004111b000000000000000000000000000000000000000000000000000000000004111c000000000000000000000000000000000000000000000000000000000004111d000000000000000000000000000000000000000000000000000000000004111e000000000000000000000000000000000000000000000000000000000004111f0000000000000000000000000000000000000000000000000000000000041120000000000000000000000000000000000000000000000000000000000004112100000000000000000000000000000000000000000000000000000000000411220000000000000000000000000000000000000000000000000000000000041123000000000000000000000000000000000000000000000000000000000004112400000000000000000000000000000000000000000000000000000000000411250000000000000000000000000000000000000000000000000000000000041126000000000000000000000000000000000000000000000000000000000004112700000000000000000000000000000000000000000000000000000000000411280000000000000000000000000000000000000000000000000000000000041129000000000000000000000000000000000000000000000000000000000004112a000000000000000000000000000000000000000000000000000000000004112b000000000000000000000000000000000000000000000000000000000004112c000000000000000000000000000000000000000000000000000000000004112d000000000000000000000000000000000000000000000000000000000004112e000000000000000000000000000000000000000000000000000000000004112f0000000000000000000000000000000000000000000000000000000000041130000000000000000000000000000000000000000000000000000000000004113100000000000000000000000000000000000000000000000000000000000411320000000000000000000000000000000000000000000000000000000000041133000000000000000000000000000000000000000000000000000000000004113400000000000000000000000000000000000000000000000000000000000411350000000000000000000000000000000000000000000000000000000000041136000000000000000000000000000000000000000000000000000000000004113700000000000000000000000000000000000000000000000000000000000411380000000000000000000000000000000000000000000000000000000000041139000000000000000000000000000000000000000000000000000000000004113a000000000000000000000000000000000000000000000000000000000004113b000000000000000000000000000000000000000000000000000000000004113c000000000000000000000000000000000000000000000000000000000004113d000000000000000000000000000000000000000000000000000000000004113e080097a6ec570e9b8e257647c9c74c5ad3edc57ca5ef6ae44d80b3c30d1d99b9b300ce48ec41d1edde0066fab553a456ae2f380d14fa8f956af1fb0217513a598900619ff12eaf97f63aa2a2311de3b6571a7b880a5247cb33b6a74787bf3f9bd5007854a2fad4e1801c6404394bf3d37ab08c135ea38a1974242e39a21273685f000f55796e72957a819e68a22e8602d73c3ba3718a5a4bd92b80b0aa444b182a00788b6e9874fb040ee679a7fae257190099a605229b948334e54a57739535d4004f1658ee3c1a91627e5d72f5a731f0796299df82ab41e72c88eee0c82fa85e003ee802add96628c693ed71afa9908138ba5a6fbf0a5f29a9c74e4e42aba671400000000000000000000000000000000000000000000000000000000000042000000000000000000000000000000000000000000000000000000000000004200a0000000000000000000000000000000000000000000000000000000000042001000000000000000000000000000000000000000000000000000000000004200b0000000000000000000000000000000000000000000000000000000000042002000000000000000000000000000000000000000000000000000000000004200c0000000000000000000000000000000000000000000000000000000000042003000000000000000000000000000000000000000000000000000000000004200d0000000000000000000000000000000000000000000000000000000000042004000000000000000000000000000000000000000000000000000000000004200e0000000000000000000000000000000000000000000000000000000000042005000000000000000000000000000000000000000000000000000000000004200f00000000000000000000000000000000000000000000000000000000000420060000000000000000000000000000000000000000000000000000000000042010000000000000000000000000000000000000000000000000000000000004200700000000000000000000000000000000000000000000000000000000000420110000000000000000000000000000000000000000000000000000000000042008000000000000000000000000000000000000000000000000000000000004201200000000000000000000000000000000000000000000000000000000000420090000000000000000000000000000000000000000000000000000000000042013000000000000000000000000000000000000000000000000000000000004200a0000000000000000000000000000000000000000000000000000000000042014000000000000000000000000000000000000000000000000000000000004200b0000000000000000000000000000000000000000000000000000000000042015000000000000000000000000000000000000000000000000000000000004200c0000000000000000000000000000000000000000000000000000000000042016000000000000000000000000000000000000000000000000000000000004200d0000000000000000000000000000000000000000000000000000000000042017000000000000000000000000000000000000000000000000000000000004200e0000000000000000000000000000000000000000000000000000000000042018000000000000000000000000000000000000000000000000000000000004200f00000000000000000000000000000000000000000000000000000000000420190000000000000000000000000000000000000000000000000000000000042010000000000000000000000000000000000000000000000000000000000004201a0000000000000000000000000000000000000000000000000000000000042011000000000000000000000000000000000000000000000000000000000004201b0000000000000000000000000000000000000000000000000000000000042012000000000000000000000000000000000000000000000000000000000004201c0000000000000000000000000000000000000000000000000000000000042013000000000000000000000000000000000000000000000000000000000004201d0000000000000000000000000000000000000000000000000000000000042014000000000000000000000000000000000000000000000000000000000004201e0000000000000000000000000000000000000000000000000000000000042015000000000000000000000000000000000000000000000000000000000004201f00000000000000000000000000000000000000000000000000000000000420160000000000000000000000000000000000000000000000000000000000042020000000000000000000000000000000000000000000000000000000000004201700000000000000000000000000000000000000000000000000000000000420210000000000000000000000000000000000000000000000000000000000042018000000000000000000000000000000000000000000000000000000000004202200000000000000000000000000000000000000000000000000000000000420190000000000000000000000000000000000000000000000000000000000042023000000000000000000000000000000000000000000000000000000000004201a0000000000000000000000000000000000000000000000000000000000042024000000000000000000000000000000000000000000000000000000000004201b0000000000000000000000000000000000000000000000000000000000042025000000000000000000000000000000000000000000000000000000000004201c0000000000000000000000000000000000000000000000000000000000042026000000000000000000000000000000000000000000000000000000000004201d0000000000000000000000000000000000000000000000000000000000042027000000000000000000000000000000000000000000000000000000000004201e0000000000000000000000000000000000000000000000000000000000042028000000000000000000000000000000000000000000000000000000000004201f00000000000000000000000000000000000000000000000000000000000420290000000000000000000000000000000000000000000000000000000000042020000000000000000000000000000000000000000000000000000000000004202a0000000000000000000000000000000000000000000000000000000000042021000000000000000000000000000000000000000000000000000000000004202b0000000000000000000000000000000000000000000000000000000000042022000000000000000000000000000000000000000000000000000000000004202c0000000000000000000000000000000000000000000000000000000000042023000000000000000000000000000000000000000000000000000000000004202d0000000000000000000000000000000000000000000000000000000000042024000000000000000000000000000000000000000000000000000000000004202e0000000000000000000000000000000000000000000000000000000000042025000000000000000000000000000000000000000000000000000000000004202f00000000000000000000000000000000000000000000000000000000000420260000000000000000000000000000000000000000000000000000000000042030000000000000000000000000000000000000000000000000000000000004202700000000000000000000000000000000000000000000000000000000000420310000000000000000000000000000000000000000000000000000000000042028000000000000000000000000000000000000000000000000000000000004203200000000000000000000000000000000000000000000000000000000000420290000000000000000000000000000000000000000000000000000000000042033000000000000000000000000000000000000000000000000000000000004202a0000000000000000000000000000000000000000000000000000000000042034000000000000000000000000000000000000000000000000000000000004202b0000000000000000000000000000000000000000000000000000000000042035000000000000000000000000000000000000000000000000000000000004202c0000000000000000000000000000000000000000000000000000000000042036000000000000000000000000000000000000000000000000000000000004202d0000000000000000000000000000000000000000000000000000000000042037000000000000000000000000000000000000000000000000000000000004202e0000000000000000000000000000000000000000000000000000000000042038000000000000000000000000000000000000000000000000000000000004202f00000000000000000000000000000000000000000000000000000000000420390000000000000000000000000000000000000000000000000000000000042030000000000000000000000000000000000000000000000000000000000004203a0000000000000000000000000000000000000000000000000000000000042031000000000000000000000000000000000000000000000000000000000004203b0000000000000000000000000000000000000000000000000000000000042032000000000000000000000000000000000000000000000000000000000004203c0000000000000000000000000000000000000000000000000000000000042033000000000000000000000000000000000000000000000000000000000004203d0000000000000000000000000000000000000000000000000000000000042034000000000000000000000000000000000000000000000000000000000004203e0000000000000000000000000000000000000000000000000000000000042035000000000000000000000000000000000000000000000000000000000004203f00000000000000000000000000000000000000000000000000000000000420360000000000000000000000000000000000000000000000000000000000042040000000000000000000000000000000000000000000000000000000000004203700000000000000000000000000000000000000000000000000000000000420410000000000000000000000000000000000000000000000000000000000042038000000000000000000000000000000000000000000000000000000000004204200000000000000000000000000000000000000000000000000000000000420390000000000000000000000000000000000000000000000000000000000042043000000000000000000000000000000000000000000000000000000000004203a0000000000000000000000000000000000000000000000000000000000042044000000000000000000000000000000000000000000000000000000000004203b0000000000000000000000000000000000000000000000000000000000042045000000000000000000000000000000000000000000000000000000000004203c0000000000000000000000000000000000000000000000000000000000042046000000000000000000000000000000000000000000000000000000000004203d0000000000000000000000000000000000000000000000000000000000042047000000000000000000000000000000000000000000000000000000000004203e0000000000000000000000000000000000000000000000000000000000042048000000000000000000000000000000000000000000000000000000000004203f0000000000000000000000000000000000000000000000000000000000042049200000000000000000000000000000000000000000000000000000000000041700000000000000000000000000000000000000000000000000000000000004170100000000000000000000000000000000000000000000000000000000000417020000000000000000000000000000000000000000000000000000000000041703000000000000000000000000000000000000000000000000000000000004170400000000000000000000000000000000000000000000000000000000000417050000000000000000000000000000000000000000000000000000000000041706000000000000000000000000000000000000000000000000000000000004170700000000000000000000000000000000000000000000000000000000000417080000000000000000000000000000000000000000000000000000000000041709000000000000000000000000000000000000000000000000000000000004170a000000000000000000000000000000000000000000000000000000000004170b000000000000000000000000000000000000000000000000000000000004170c000000000000000000000000000000000000000000000000000000000004170d000000000000000000000000000000000000000000000000000000000004170e000000000000000000000000000000000000000000000000000000000004170f00000000000000000000000000000000000000000000000000000000000417100000000000000000000000000000000000000000000000000000000000041711000000000000000000000000000000000000000000000000000000000004170100000000000000000000000000000000000000000000000000000000000417020000000000000000000000000000000000000000000000000000000000041703000000000000000000000000000000000000000000000000000000000004170400000000000000000000000000000000000000000000000000000000000417050000000000000000000000000000000000000000000000000000000000041706000000000000000000000000000000000000000000000000000000000004170700000000000000000000000000000000000000000000000000000000000417080000000000000000000000000000000000000000000000000000000000041709000000000000000000000000000000000000000000000000000000000004170a000000000000000000000000000000000000000000000000000000000004170b000000000000000000000000000000000000000000000000000000000004170c000000000000000000000000000000000000000000000000000000000004170d000000000000000000000000000000000000000000000000000000000004170e000000000000000000000000000000000000000000000000000000000004170f00000000000000000000000000000000000000000000000000000000000417100000000000000000000000000000000000000000000000000000000000041711000000000000000000000000000000000000000000000000000000000004171200000000000000000000000000000000000000000000000000000000000417020000000000000000000000000000000000000000000000000000000000041703000000000000000000000000000000000000000000000000000000000004170400000000000000000000000000000000000000000000000000000000000417050000000000000000000000000000000000000000000000000000000000041706000000000000000000000000000000000000000000000000000000000004170700000000000000000000000000000000000000000000000000000000000417080000000000000000000000000000000000000000000000000000000000041709000000000000000000000000000000000000000000000000000000000004170a000000000000000000000000000000000000000000000000000000000004170b000000000000000000000000000000000000000000000000000000000004170c000000000000000000000000000000000000000000000000000000000004170d000000000000000000000000000000000000000000000000000000000004170e000000000000000000000000000000000000000000000000000000000004170f00000000000000000000000000000000000000000000000000000000000417100000000000000000000000000000000000000000000000000000000000041711000000000000000000000000000000000000000000000000000000000004171200000000000000000000000000000000000000000000000000000000000417130000000000000000000000000000000000000000000000000000000000041703000000000000000000000000000000000000000000000000000000000004170400000000000000000000000000000000000000000000000000000000000417050000000000000000000000000000000000000000000000000000000000041706000000000000000000000000000000000000000000000000000000000004170700000000000000000000000000000000000000000000000000000000000417080000000000000000000000000000000000000000000000000000000000041709000000000000000000000000000000000000000000000000000000000004170a000000000000000000000000000000000000000000000000000000000004170b000000000000000000000000000000000000000000000000000000000004170c000000000000000000000000000000000000000000000000000000000004170d000000000000000000000000000000000000000000000000000000000004170e000000000000000000000000000000000000000000000000000000000004170f00000000000000000000000000000000000000000000000000000000000417100000000000000000000000000000000000000000000000000000000000041711000000000000000000000000000000000000000000000000000000000004171200000000000000000000000000000000000000000000000000000000000417130000000000000000000000000000000000000000000000000000000000041714000000000000000000000000000000000000000000000000000000000004170400000000000000000000000000000000000000000000000000000000000417050000000000000000000000000000000000000000000000000000000000041706000000000000000000000000000000000000000000000000000000000004170700000000000000000000000000000000000000000000000000000000000417080000000000000000000000000000000000000000000000000000000000041709000000000000000000000000000000000000000000000000000000000004170a000000000000000000000000000000000000000000000000000000000004170b000000000000000000000000000000000000000000000000000000000004170c000000000000000000000000000000000000000000000000000000000004170d000000000000000000000000000000000000000000000000000000000004170e000000000000000000000000000000000000000000000000000000000004170f00000000000000000000000000000000000000000000000000000000000417100000000000000000000000000000000000000000000000000000000000041711000000000000000000000000000000000000000000000000000000000004171200000000000000000000000000000000000000000000000000000000000417130000000000000000000000000000000000000000000000000000000000041714000000000000000000000000000000000000000000000000000000000004171500000000000000000000000000000000000000000000000000000000000417050000000000000000000000000000000000000000000000000000000000041706000000000000000000000000000000000000000000000000000000000004170700000000000000000000000000000000000000000000000000000000000417080000000000000000000000000000000000000000000000000000000000041709000000000000000000000000000000000000000000000000000000000004170a000000000000000000000000000000000000000000000000000000000004170b000000000000000000000000000000000000000000000000000000000004170c000000000000000000000000000000000000000000000000000000000004170d000000000000000000000000000000000000000000000000000000000004170e000000000000000000000000000000000000000000000000000000000004170f00000000000000000000000000000000000000000000000000000000000417100000000000000000000000000000000000000000000000000000000000041711000000000000000000000000000000000000000000000000000000000004171200000000000000000000000000000000000000000000000000000000000417130000000000000000000000000000000000000000000000000000000000041714000000000000000000000000000000000000000000000000000000000004171500000000000000000000000000000000000000000000000000000000000417160000000000000000000000000000000000000000000000000000000000041706000000000000000000000000000000000000000000000000000000000004170700000000000000000000000000000000000000000000000000000000000417080000000000000000000000000000000000000000000000000000000000041709000000000000000000000000000000000000000000000000000000000004170a000000000000000000000000000000000000000000000000000000000004170b000000000000000000000000000000000000000000000000000000000004170c000000000000000000000000000000000000000000000000000000000004170d000000000000000000000000000000000000000000000000000000000004170e000000000000000000000000000000000000000000000000000000000004170f00000000000000000000000000000000000000000000000000000000000417100000000000000000000000000000000000000000000000000000000000041711000000000000000000000000000000000000000000000000000000000004171200000000000000000000000000000000000000000000000000000000000417130000000000000000000000000000000000000000000000000000000000041714000000000000000000000000000000000000000000000000000000000004171500000000000000000000000000000000000000000000000000000000000417160000000000000000000000000000000000000000000000000000000000041717000000000000000000000000000000000000000000000000000000000004170700000000000000000000000000000000000000000000000000000000000417080000000000000000000000000000000000000000000000000000000000041709000000000000000000000000000000000000000000000000000000000004170a000000000000000000000000000000000000000000000000000000000004170b000000000000000000000000000000000000000000000000000000000004170c000000000000000000000000000000000000000000000000000000000004170d000000000000000000000000000000000000000000000000000000000004170e000000000000000000000000000000000000000000000000000000000004170f00000000000000000000000000000000000000000000000000000000000417100000000000000000000000000000000000000000000000000000000000041711000000000000000000000000000000000000000000000000000000000004171200000000000000000000000000000000000000000000000000000000000417130000000000000000000000000000000000000000000000000000000000041714000000000000000000000000000000000000000000000000000000000004171500000000000000000000000000000000000000000000000000000000000417160000000000000000000000000000000000000000000000000000000000041717000000000000000000000000000000000000000000000000000000000004171800000000000000000000000000000000000000000000000000000000000417080000000000000000000000000000000000000000000000000000000000041709000000000000000000000000000000000000000000000000000000000004170a000000000000000000000000000000000000000000000000000000000004170b000000000000000000000000000000000000000000000000000000000004170c000000000000000000000000000000000000000000000000000000000004170d000000000000000000000000000000000000000000000000000000000004170e000000000000000000000000000000000000000000000000000000000004170f00000000000000000000000000000000000000000000000000000000000417100000000000000000000000000000000000000000000000000000000000041711000000000000000000000000000000000000000000000000000000000004171200000000000000000000000000000000000000000000000000000000000417130000000000000000000000000000000000000000000000000000000000041714000000000000000000000000000000000000000000000000000000000004171500000000000000000000000000000000000000000000000000000000000417160000000000000000000000000000000000000000000000000000000000041717000000000000000000000000000000000000000000000000000000000004171800000000000000000000000000000000000000000000000000000000000417190000000000000000000000000000000000000000000000000000000000041709000000000000000000000000000000000000000000000000000000000004170a000000000000000000000000000000000000000000000000000000000004170b000000000000000000000000000000000000000000000000000000000004170c000000000000000000000000000000000000000000000000000000000004170d000000000000000000000000000000000000000000000000000000000004170e000000000000000000000000000000000000000000000000000000000004170f0000000000000000000000000000000000000000000000000000000000041710000000000000000000000000000000000000000000000000000000000004171100000000000000000000000000000000000000000000000000000000000417120000000000000000000000000000000000000000000000000000000000041713000000000000000000000000000000000000000000000000000000000004171400000000000000000000000000000000000000000000000000000000000417150000000000000000000000000000000000000000000000000000000000041716000000000000000000000000000000000000000000000000000000000004171700000000000000000000000000000000000000000000000000000000000417180000000000000000000000000000000000000000000000000000000000041719000000000000000000000000000000000000000000000000000000000004171a000000000000000000000000000000000000000000000000000000000004170a000000000000000000000000000000000000000000000000000000000004170b000000000000000000000000000000000000000000000000000000000004170c000000000000000000000000000000000000000000000000000000000004170d000000000000000000000000000000000000000000000000000000000004170e000000000000000000000000000000000000000000000000000000000004170f0000000000000000000000000000000000000000000000000000000000041710000000000000000000000000000000000000000000000000000000000004171100000000000000000000000000000000000000000000000000000000000417120000000000000000000000000000000000000000000000000000000000041713000000000000000000000000000000000000000000000000000000000004171400000000000000000000000000000000000000000000000000000000000417150000000000000000000000000000000000000000000000000000000000041716000000000000000000000000000000000000000000000000000000000004171700000000000000000000000000000000000000000000000000000000000417180000000000000000000000000000000000000000000000000000000000041719000000000000000000000000000000000000000000000000000000000004171a000000000000000000000000000000000000000000000000000000000004171b000000000000000000000000000000000000000000000000000000000004170b000000000000000000000000000000000000000000000000000000000004170c000000000000000000000000000000000000000000000000000000000004170d000000000000000000000000000000000000000000000000000000000004170e000000000000000000000000000000000000000000000000000000000004170f0000000000000000000000000000000000000000000000000000000000041710000000000000000000000000000000000000000000000000000000000004171100000000000000000000000000000000000000000000000000000000000417120000000000000000000000000000000000000000000000000000000000041713000000000000000000000000000000000000000000000000000000000004171400000000000000000000000000000000000000000000000000000000000417150000000000000000000000000000000000000000000000000000000000041716000000000000000000000000000000000000000000000000000000000004171700000000000000000000000000000000000000000000000000000000000417180000000000000000000000000000000000000000000000000000000000041719000000000000000000000000000000000000000000000000000000000004171a000000000000000000000000000000000000000000000000000000000004171b000000000000000000000000000000000000000000000000000000000004171c000000000000000000000000000000000000000000000000000000000004170c000000000000000000000000000000000000000000000000000000000004170d000000000000000000000000000000000000000000000000000000000004170e000000000000000000000000000000000000000000000000000000000004170f0000000000000000000000000000000000000000000000000000000000041710000000000000000000000000000000000000000000000000000000000004171100000000000000000000000000000000000000000000000000000000000417120000000000000000000000000000000000000000000000000000000000041713000000000000000000000000000000000000000000000000000000000004171400000000000000000000000000000000000000000000000000000000000417150000000000000000000000000000000000000000000000000000000000041716000000000000000000000000000000000000000000000000000000000004171700000000000000000000000000000000000000000000000000000000000417180000000000000000000000000000000000000000000000000000000000041719000000000000000000000000000000000000000000000000000000000004171a000000000000000000000000000000000000000000000000000000000004171b000000000000000000000000000000000000000000000000000000000004171c000000000000000000000000000000000000000000000000000000000004171d000000000000000000000000000000000000000000000000000000000004170d000000000000000000000000000000000000000000000000000000000004170e000000000000000000000000000000000000000000000000000000000004170f0000000000000000000000000000000000000000000000000000000000041710000000000000000000000000000000000000000000000000000000000004171100000000000000000000000000000000000000000000000000000000000417120000000000000000000000000000000000000000000000000000000000041713000000000000000000000000000000000000000000000000000000000004171400000000000000000000000000000000000000000000000000000000000417150000000000000000000000000000000000000000000000000000000000041716000000000000000000000000000000000000000000000000000000000004171700000000000000000000000000000000000000000000000000000000000417180000000000000000000000000000000000000000000000000000000000041719000000000000000000000000000000000000000000000000000000000004171a000000000000000000000000000000000000000000000000000000000004171b000000000000000000000000000000000000000000000000000000000004171c000000000000000000000000000000000000000000000000000000000004171d000000000000000000000000000000000000000000000000000000000004171e000000000000000000000000000000000000000000000000000000000004170e000000000000000000000000000000000000000000000000000000000004170f0000000000000000000000000000000000000000000000000000000000041710000000000000000000000000000000000000000000000000000000000004171100000000000000000000000000000000000000000000000000000000000417120000000000000000000000000000000000000000000000000000000000041713000000000000000000000000000000000000000000000000000000000004171400000000000000000000000000000000000000000000000000000000000417150000000000000000000000000000000000000000000000000000000000041716000000000000000000000000000000000000000000000000000000000004171700000000000000000000000000000000000000000000000000000000000417180000000000000000000000000000000000000000000000000000000000041719000000000000000000000000000000000000000000000000000000000004171a000000000000000000000000000000000000000000000000000000000004171b000000000000000000000000000000000000000000000000000000000004171c000000000000000000000000000000000000000000000000000000000004171d000000000000000000000000000000000000000000000000000000000004171e000000000000000000000000000000000000000000000000000000000004171f000000000000000000000000000000000000000000000000000000000004170f0000000000000000000000000000000000000000000000000000000000041710000000000000000000000000000000000000000000000000000000000004171100000000000000000000000000000000000000000000000000000000000417120000000000000000000000000000000000000000000000000000000000041713000000000000000000000000000000000000000000000000000000000004171400000000000000000000000000000000000000000000000000000000000417150000000000000000000000000000000000000000000000000000000000041716000000000000000000000000000000000000000000000000000000000004171700000000000000000000000000000000000000000000000000000000000417180000000000000000000000000000000000000000000000000000000000041719000000000000000000000000000000000000000000000000000000000004171a000000000000000000000000000000000000000000000000000000000004171b000000000000000000000000000000000000000000000000000000000004171c000000000000000000000000000000000000000000000000000000000004171d000000000000000000000000000000000000000000000000000000000004171e000000000000000000000000000000000000000000000000000000000004171f00000000000000000000000000000000000000000000000000000000000417200000000000000000000000000000000000000000000000000000000000041710000000000000000000000000000000000000000000000000000000000004171100000000000000000000000000000000000000000000000000000000000417120000000000000000000000000000000000000000000000000000000000041713000000000000000000000000000000000000000000000000000000000004171400000000000000000000000000000000000000000000000000000000000417150000000000000000000000000000000000000000000000000000000000041716000000000000000000000000000000000000000000000000000000000004171700000000000000000000000000000000000000000000000000000000000417180000000000000000000000000000000000000000000000000000000000041719000000000000000000000000000000000000000000000000000000000004171a000000000000000000000000000000000000000000000000000000000004171b000000000000000000000000000000000000000000000000000000000004171c000000000000000000000000000000000000000000000000000000000004171d000000000000000000000000000000000000000000000000000000000004171e000000000000000000000000000000000000000000000000000000000004171f00000000000000000000000000000000000000000000000000000000000417200000000000000000000000000000000000000000000000000000000000041721000000000000000000000000000000000000000000000000000000000004171100000000000000000000000000000000000000000000000000000000000417120000000000000000000000000000000000000000000000000000000000041713000000000000000000000000000000000000000000000000000000000004171400000000000000000000000000000000000000000000000000000000000417150000000000000000000000000000000000000000000000000000000000041716000000000000000000000000000000000000000000000000000000000004171700000000000000000000000000000000000000000000000000000000000417180000000000000000000000000000000000000000000000000000000000041719000000000000000000000000000000000000000000000000000000000004171a000000000000000000000000000000000000000000000000000000000004171b000000000000000000000000000000000000000000000000000000000004171c000000000000000000000000000000000000000000000000000000000004171d000000000000000000000000000000000000000000000000000000000004171e000000000000000000000000000000000000000000000000000000000004171f00000000000000000000000000000000000000000000000000000000000417200000000000000000000000000000000000000000000000000000000000041721000000000000000000000000000000000000000000000000000000000004172200000000000000000000000000000000000000000000000000000000000417120000000000000000000000000000000000000000000000000000000000041713000000000000000000000000000000000000000000000000000000000004171400000000000000000000000000000000000000000000000000000000000417150000000000000000000000000000000000000000000000000000000000041716000000000000000000000000000000000000000000000000000000000004171700000000000000000000000000000000000000000000000000000000000417180000000000000000000000000000000000000000000000000000000000041719000000000000000000000000000000000000000000000000000000000004171a000000000000000000000000000000000000000000000000000000000004171b000000000000000000000000000000000000000000000000000000000004171c000000000000000000000000000000000000000000000000000000000004171d000000000000000000000000000000000000000000000000000000000004171e000000000000000000000000000000000000000000000000000000000004171f00000000000000000000000000000000000000000000000000000000000417200000000000000000000000000000000000000000000000000000000000041721000000000000000000000000000000000000000000000000000000000004172200000000000000000000000000000000000000000000000000000000000417230000000000000000000000000000000000000000000000000000000000041713000000000000000000000000000000000000000000000000000000000004171400000000000000000000000000000000000000000000000000000000000417150000000000000000000000000000000000000000000000000000000000041716000000000000000000000000000000000000000000000000000000000004171700000000000000000000000000000000000000000000000000000000000417180000000000000000000000000000000000000000000000000000000000041719000000000000000000000000000000000000000000000000000000000004171a000000000000000000000000000000000000000000000000000000000004171b000000000000000000000000000000000000000000000000000000000004171c000000000000000000000000000000000000000000000000000000000004171d000000000000000000000000000000000000000000000000000000000004171e000000000000000000000000000000000000000000000000000000000004171f00000000000000000000000000000000000000000000000000000000000417200000000000000000000000000000000000000000000000000000000000041721000000000000000000000000000000000000000000000000000000000004172200000000000000000000000000000000000000000000000000000000000417230000000000000000000000000000000000000000000000000000000000041724000000000000000000000000000000000000000000000000000000000004171400000000000000000000000000000000000000000000000000000000000417150000000000000000000000000000000000000000000000000000000000041716000000000000000000000000000000000000000000000000000000000004171700000000000000000000000000000000000000000000000000000000000417180000000000000000000000000000000000000000000000000000000000041719000000000000000000000000000000000000000000000000000000000004171a000000000000000000000000000000000000000000000000000000000004171b000000000000000000000000000000000000000000000000000000000004171c000000000000000000000000000000000000000000000000000000000004171d000000000000000000000000000000000000000000000000000000000004171e000000000000000000000000000000000000000000000000000000000004171f00000000000000000000000000000000000000000000000000000000000417200000000000000000000000000000000000000000000000000000000000041721000000000000000000000000000000000000000000000000000000000004172200000000000000000000000000000000000000000000000000000000000417230000000000000000000000000000000000000000000000000000000000041724000000000000000000000000000000000000000000000000000000000004172500000000000000000000000000000000000000000000000000000000000417150000000000000000000000000000000000000000000000000000000000041716000000000000000000000000000000000000000000000000000000000004171700000000000000000000000000000000000000000000000000000000000417180000000000000000000000000000000000000000000000000000000000041719000000000000000000000000000000000000000000000000000000000004171a000000000000000000000000000000000000000000000000000000000004171b000000000000000000000000000000000000000000000000000000000004171c000000000000000000000000000000000000000000000000000000000004171d000000000000000000000000000000000000000000000000000000000004171e000000000000000000000000000000000000000000000000000000000004171f00000000000000000000000000000000000000000000000000000000000417200000000000000000000000000000000000000000000000000000000000041721000000000000000000000000000000000000000000000000000000000004172200000000000000000000000000000000000000000000000000000000000417230000000000000000000000000000000000000000000000000000000000041724000000000000000000000000000000000000000000000000000000000004172500000000000000000000000000000000000000000000000000000000000417260000000000000000000000000000000000000000000000000000000000041716000000000000000000000000000000000000000000000000000000000004171700000000000000000000000000000000000000000000000000000000000417180000000000000000000000000000000000000000000000000000000000041719000000000000000000000000000000000000000000000000000000000004171a000000000000000000000000000000000000000000000000000000000004171b000000000000000000000000000000000000000000000000000000000004171c000000000000000000000000000000000000000000000000000000000004171d000000000000000000000000000000000000000000000000000000000004171e000000000000000000000000000000000000000000000000000000000004171f00000000000000000000000000000000000000000000000000000000000417200000000000000000000000000000000000000000000000000000000000041721000000000000000000000000000000000000000000000000000000000004172200000000000000000000000000000000000000000000000000000000000417230000000000000000000000000000000000000000000000000000000000041724000000000000000000000000000000000000000000000000000000000004172500000000000000000000000000000000000000000000000000000000000417260000000000000000000000000000000000000000000000000000000000041727000000000000000000000000000000000000000000000000000000000004171700000000000000000000000000000000000000000000000000000000000417180000000000000000000000000000000000000000000000000000000000041719000000000000000000000000000000000000000000000000000000000004171a000000000000000000000000000000000000000000000000000000000004171b000000000000000000000000000000000000000000000000000000000004171c000000000000000000000000000000000000000000000000000000000004171d000000000000000000000000000000000000000000000000000000000004171e000000000000000000000000000000000000000000000000000000000004171f00000000000000000000000000000000000000000000000000000000000417200000000000000000000000000000000000000000000000000000000000041721000000000000000000000000000000000000000000000000000000000004172200000000000000000000000000000000000000000000000000000000000417230000000000000000000000000000000000000000000000000000000000041724000000000000000000000000000000000000000000000000000000000004172500000000000000000000000000000000000000000000000000000000000417260000000000000000000000000000000000000000000000000000000000041727000000000000000000000000000000000000000000000000000000000004172800000000000000000000000000000000000000000000000000000000000417180000000000000000000000000000000000000000000000000000000000041719000000000000000000000000000000000000000000000000000000000004171a000000000000000000000000000000000000000000000000000000000004171b000000000000000000000000000000000000000000000000000000000004171c000000000000000000000000000000000000000000000000000000000004171d000000000000000000000000000000000000000000000000000000000004171e000000000000000000000000000000000000000000000000000000000004171f00000000000000000000000000000000000000000000000000000000000417200000000000000000000000000000000000000000000000000000000000041721000000000000000000000000000000000000000000000000000000000004172200000000000000000000000000000000000000000000000000000000000417230000000000000000000000000000000000000000000000000000000000041724000000000000000000000000000000000000000000000000000000000004172500000000000000000000000000000000000000000000000000000000000417260000000000000000000000000000000000000000000000000000000000041727000000000000000000000000000000000000000000000000000000000004172800000000000000000000000000000000000000000000000000000000000417290000000000000000000000000000000000000000000000000000000000041719000000000000000000000000000000000000000000000000000000000004171a000000000000000000000000000000000000000000000000000000000004171b000000000000000000000000000000000000000000000000000000000004171c000000000000000000000000000000000000000000000000000000000004171d000000000000000000000000000000000000000000000000000000000004171e000000000000000000000000000000000000000000000000000000000004171f0000000000000000000000000000000000000000000000000000000000041720000000000000000000000000000000000000000000000000000000000004172100000000000000000000000000000000000000000000000000000000000417220000000000000000000000000000000000000000000000000000000000041723000000000000000000000000000000000000000000000000000000000004172400000000000000000000000000000000000000000000000000000000000417250000000000000000000000000000000000000000000000000000000000041726000000000000000000000000000000000000000000000000000000000004172700000000000000000000000000000000000000000000000000000000000417280000000000000000000000000000000000000000000000000000000000041729000000000000000000000000000000000000000000000000000000000004172a000000000000000000000000000000000000000000000000000000000004171a000000000000000000000000000000000000000000000000000000000004171b000000000000000000000000000000000000000000000000000000000004171c000000000000000000000000000000000000000000000000000000000004171d000000000000000000000000000000000000000000000000000000000004171e000000000000000000000000000000000000000000000000000000000004171f0000000000000000000000000000000000000000000000000000000000041720000000000000000000000000000000000000000000000000000000000004172100000000000000000000000000000000000000000000000000000000000417220000000000000000000000000000000000000000000000000000000000041723000000000000000000000000000000000000000000000000000000000004172400000000000000000000000000000000000000000000000000000000000417250000000000000000000000000000000000000000000000000000000000041726000000000000000000000000000000000000000000000000000000000004172700000000000000000000000000000000000000000000000000000000000417280000000000000000000000000000000000000000000000000000000000041729000000000000000000000000000000000000000000000000000000000004172a000000000000000000000000000000000000000000000000000000000004172b000000000000000000000000000000000000000000000000000000000004171b000000000000000000000000000000000000000000000000000000000004171c000000000000000000000000000000000000000000000000000000000004171d000000000000000000000000000000000000000000000000000000000004171e000000000000000000000000000000000000000000000000000000000004171f0000000000000000000000000000000000000000000000000000000000041720000000000000000000000000000000000000000000000000000000000004172100000000000000000000000000000000000000000000000000000000000417220000000000000000000000000000000000000000000000000000000000041723000000000000000000000000000000000000000000000000000000000004172400000000000000000000000000000000000000000000000000000000000417250000000000000000000000000000000000000000000000000000000000041726000000000000000000000000000000000000000000000000000000000004172700000000000000000000000000000000000000000000000000000000000417280000000000000000000000000000000000000000000000000000000000041729000000000000000000000000000000000000000000000000000000000004172a000000000000000000000000000000000000000000000000000000000004172b000000000000000000000000000000000000000000000000000000000004172c000000000000000000000000000000000000000000000000000000000004171c000000000000000000000000000000000000000000000000000000000004171d000000000000000000000000000000000000000000000000000000000004171e000000000000000000000000000000000000000000000000000000000004171f0000000000000000000000000000000000000000000000000000000000041720000000000000000000000000000000000000000000000000000000000004172100000000000000000000000000000000000000000000000000000000000417220000000000000000000000000000000000000000000000000000000000041723000000000000000000000000000000000000000000000000000000000004172400000000000000000000000000000000000000000000000000000000000417250000000000000000000000000000000000000000000000000000000000041726000000000000000000000000000000000000000000000000000000000004172700000000000000000000000000000000000000000000000000000000000417280000000000000000000000000000000000000000000000000000000000041729000000000000000000000000000000000000000000000000000000000004172a000000000000000000000000000000000000000000000000000000000004172b000000000000000000000000000000000000000000000000000000000004172c000000000000000000000000000000000000000000000000000000000004172d000000000000000000000000000000000000000000000000000000000004171d000000000000000000000000000000000000000000000000000000000004171e000000000000000000000000000000000000000000000000000000000004171f0000000000000000000000000000000000000000000000000000000000041720000000000000000000000000000000000000000000000000000000000004172100000000000000000000000000000000000000000000000000000000000417220000000000000000000000000000000000000000000000000000000000041723000000000000000000000000000000000000000000000000000000000004172400000000000000000000000000000000000000000000000000000000000417250000000000000000000000000000000000000000000000000000000000041726000000000000000000000000000000000000000000000000000000000004172700000000000000000000000000000000000000000000000000000000000417280000000000000000000000000000000000000000000000000000000000041729000000000000000000000000000000000000000000000000000000000004172a000000000000000000000000000000000000000000000000000000000004172b000000000000000000000000000000000000000000000000000000000004172c000000000000000000000000000000000000000000000000000000000004172d000000000000000000000000000000000000000000000000000000000004172e000000000000000000000000000000000000000000000000000000000004171e000000000000000000000000000000000000000000000000000000000004171f0000000000000000000000000000000000000000000000000000000000041720000000000000000000000000000000000000000000000000000000000004172100000000000000000000000000000000000000000000000000000000000417220000000000000000000000000000000000000000000000000000000000041723000000000000000000000000000000000000000000000000000000000004172400000000000000000000000000000000000000000000000000000000000417250000000000000000000000000000000000000000000000000000000000041726000000000000000000000000000000000000000000000000000000000004172700000000000000000000000000000000000000000000000000000000000417280000000000000000000000000000000000000000000000000000000000041729000000000000000000000000000000000000000000000000000000000004172a000000000000000000000000000000000000000000000000000000000004172b000000000000000000000000000000000000000000000000000000000004172c000000000000000000000000000000000000000000000000000000000004172d000000000000000000000000000000000000000000000000000000000004172e000000000000000000000000000000000000000000000000000000000004172f000000000000000000000000000000000000000000000000000000000004171f0000000000000000000000000000000000000000000000000000000000041720000000000000000000000000000000000000000000000000000000000004172100000000000000000000000000000000000000000000000000000000000417220000000000000000000000000000000000000000000000000000000000041723000000000000000000000000000000000000000000000000000000000004172400000000000000000000000000000000000000000000000000000000000417250000000000000000000000000000000000000000000000000000000000041726000000000000000000000000000000000000000000000000000000000004172700000000000000000000000000000000000000000000000000000000000417280000000000000000000000000000000000000000000000000000000000041729000000000000000000000000000000000000000000000000000000000004172a000000000000000000000000000000000000000000000000000000000004172b000000000000000000000000000000000000000000000000000000000004172c000000000000000000000000000000000000000000000000000000000004172d000000000000000000000000000000000000000000000000000000000004172e000000000000000000000000000000000000000000000000000000000004172f0000000000000000000000000000000000000000000000000000000000041730000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "archive": "0x0597ee46e1331f63212f835b2d78b119be4d71b850172cec33fe279168a96a78", + "body": "0x000000010017be1340b1d588a74f982b8a2e26421f73f45a84c90103de3d5bf6a609785f3e0000000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000041000000000000000000000000000000000000000000000000000000000000004100100000000000000000000000000000000000000000000000000000000000410020000000000000000000000000000000000000000000000000000000000041003000000000000000000000000000000000000000000000000000000000004100400000000000000000000000000000000000000000000000000000000000410050000000000000000000000000000000000000000000000000000000000041006000000000000000000000000000000000000000000000000000000000004100700000000000000000000000000000000000000000000000000000000000410080000000000000000000000000000000000000000000000000000000000041009000000000000000000000000000000000000000000000000000000000004100a000000000000000000000000000000000000000000000000000000000004100b000000000000000000000000000000000000000000000000000000000004100c000000000000000000000000000000000000000000000000000000000004100d000000000000000000000000000000000000000000000000000000000004100e000000000000000000000000000000000000000000000000000000000004100f0000000000000000000000000000000000000000000000000000000000041010000000000000000000000000000000000000000000000000000000000004101100000000000000000000000000000000000000000000000000000000000410120000000000000000000000000000000000000000000000000000000000041013000000000000000000000000000000000000000000000000000000000004101400000000000000000000000000000000000000000000000000000000000410150000000000000000000000000000000000000000000000000000000000041016000000000000000000000000000000000000000000000000000000000004101700000000000000000000000000000000000000000000000000000000000410180000000000000000000000000000000000000000000000000000000000041019000000000000000000000000000000000000000000000000000000000004101a000000000000000000000000000000000000000000000000000000000004101b000000000000000000000000000000000000000000000000000000000004101c000000000000000000000000000000000000000000000000000000000004101d000000000000000000000000000000000000000000000000000000000004101e000000000000000000000000000000000000000000000000000000000004101f0000000000000000000000000000000000000000000000000000000000041020000000000000000000000000000000000000000000000000000000000004102100000000000000000000000000000000000000000000000000000000000410220000000000000000000000000000000000000000000000000000000000041023000000000000000000000000000000000000000000000000000000000004102400000000000000000000000000000000000000000000000000000000000410250000000000000000000000000000000000000000000000000000000000041026000000000000000000000000000000000000000000000000000000000004102700000000000000000000000000000000000000000000000000000000000410280000000000000000000000000000000000000000000000000000000000041029000000000000000000000000000000000000000000000000000000000004102a000000000000000000000000000000000000000000000000000000000004102b000000000000000000000000000000000000000000000000000000000004102c000000000000000000000000000000000000000000000000000000000004102d000000000000000000000000000000000000000000000000000000000004102e000000000000000000000000000000000000000000000000000000000004102f0000000000000000000000000000000000000000000000000000000000041030000000000000000000000000000000000000000000000000000000000004103100000000000000000000000000000000000000000000000000000000000410320000000000000000000000000000000000000000000000000000000000041033000000000000000000000000000000000000000000000000000000000004103400000000000000000000000000000000000000000000000000000000000410350000000000000000000000000000000000000000000000000000000000041036000000000000000000000000000000000000000000000000000000000004103700000000000000000000000000000000000000000000000000000000000410380000000000000000000000000000000000000000000000000000000000041039000000000000000000000000000000000000000000000000000000000004103a000000000000000000000000000000000000000000000000000000000004103b000000000000000000000000000000000000000000000000000000000004103c000000000000000000000000000000000000000000000000000000000004103d000000000000000000000000000000000000000000000000000000000004103e000000000000000000000000000000000000000000000000000000000004103f4000000000000000000000000000000000000000000000000000000000000400010000000000000000000000000000000000000000000000000000000000041100000000000000000000000000000000000000000000000000000000000004110100000000000000000000000000000000000000000000000000000000000411020000000000000000000000000000000000000000000000000000000000041103000000000000000000000000000000000000000000000000000000000004110400000000000000000000000000000000000000000000000000000000000411050000000000000000000000000000000000000000000000000000000000041106000000000000000000000000000000000000000000000000000000000004110700000000000000000000000000000000000000000000000000000000000411080000000000000000000000000000000000000000000000000000000000041109000000000000000000000000000000000000000000000000000000000004110a000000000000000000000000000000000000000000000000000000000004110b000000000000000000000000000000000000000000000000000000000004110c000000000000000000000000000000000000000000000000000000000004110d000000000000000000000000000000000000000000000000000000000004110e000000000000000000000000000000000000000000000000000000000004110f0000000000000000000000000000000000000000000000000000000000041110000000000000000000000000000000000000000000000000000000000004111100000000000000000000000000000000000000000000000000000000000411120000000000000000000000000000000000000000000000000000000000041113000000000000000000000000000000000000000000000000000000000004111400000000000000000000000000000000000000000000000000000000000411150000000000000000000000000000000000000000000000000000000000041116000000000000000000000000000000000000000000000000000000000004111700000000000000000000000000000000000000000000000000000000000411180000000000000000000000000000000000000000000000000000000000041119000000000000000000000000000000000000000000000000000000000004111a000000000000000000000000000000000000000000000000000000000004111b000000000000000000000000000000000000000000000000000000000004111c000000000000000000000000000000000000000000000000000000000004111d000000000000000000000000000000000000000000000000000000000004111e000000000000000000000000000000000000000000000000000000000004111f0000000000000000000000000000000000000000000000000000000000041120000000000000000000000000000000000000000000000000000000000004112100000000000000000000000000000000000000000000000000000000000411220000000000000000000000000000000000000000000000000000000000041123000000000000000000000000000000000000000000000000000000000004112400000000000000000000000000000000000000000000000000000000000411250000000000000000000000000000000000000000000000000000000000041126000000000000000000000000000000000000000000000000000000000004112700000000000000000000000000000000000000000000000000000000000411280000000000000000000000000000000000000000000000000000000000041129000000000000000000000000000000000000000000000000000000000004112a000000000000000000000000000000000000000000000000000000000004112b000000000000000000000000000000000000000000000000000000000004112c000000000000000000000000000000000000000000000000000000000004112d000000000000000000000000000000000000000000000000000000000004112e000000000000000000000000000000000000000000000000000000000004112f0000000000000000000000000000000000000000000000000000000000041130000000000000000000000000000000000000000000000000000000000004113100000000000000000000000000000000000000000000000000000000000411320000000000000000000000000000000000000000000000000000000000041133000000000000000000000000000000000000000000000000000000000004113400000000000000000000000000000000000000000000000000000000000411350000000000000000000000000000000000000000000000000000000000041136000000000000000000000000000000000000000000000000000000000004113700000000000000000000000000000000000000000000000000000000000411380000000000000000000000000000000000000000000000000000000000041139000000000000000000000000000000000000000000000000000000000004113a000000000000000000000000000000000000000000000000000000000004113b000000000000000000000000000000000000000000000000000000000004113c000000000000000000000000000000000000000000000000000000000004113d000000000000000000000000000000000000000000000000000000000004113e080097a6ec570e9b8e257647c9c74c5ad3edc57ca5ef6ae44d80b3c30d1d99b9b300ce48ec41d1edde0066fab553a456ae2f380d14fa8f956af1fb0217513a598900619ff12eaf97f63aa2a2311de3b6571a7b880a5247cb33b6a74787bf3f9bd5007854a2fad4e1801c6404394bf3d37ab08c135ea38a1974242e39a21273685f000f55796e72957a819e68a22e8602d73c3ba3718a5a4bd92b80b0aa444b182a00788b6e9874fb040ee679a7fae257190099a605229b948334e54a57739535d4004f1658ee3c1a91627e5d72f5a731f0796299df82ab41e72c88eee0c82fa85e003ee802add96628c693ed71afa9908138ba5a6fbf0a5f29a9c74e4e42aba671400000000000000000000000000000000000000000000000000000000000042000000000000000000000000000000000000000000000000000000000000004200a0000000000000000000000000000000000000000000000000000000000042001000000000000000000000000000000000000000000000000000000000004200b0000000000000000000000000000000000000000000000000000000000042002000000000000000000000000000000000000000000000000000000000004200c0000000000000000000000000000000000000000000000000000000000042003000000000000000000000000000000000000000000000000000000000004200d0000000000000000000000000000000000000000000000000000000000042004000000000000000000000000000000000000000000000000000000000004200e0000000000000000000000000000000000000000000000000000000000042005000000000000000000000000000000000000000000000000000000000004200f00000000000000000000000000000000000000000000000000000000000420060000000000000000000000000000000000000000000000000000000000042010000000000000000000000000000000000000000000000000000000000004200700000000000000000000000000000000000000000000000000000000000420110000000000000000000000000000000000000000000000000000000000042008000000000000000000000000000000000000000000000000000000000004201200000000000000000000000000000000000000000000000000000000000420090000000000000000000000000000000000000000000000000000000000042013000000000000000000000000000000000000000000000000000000000004200a0000000000000000000000000000000000000000000000000000000000042014000000000000000000000000000000000000000000000000000000000004200b0000000000000000000000000000000000000000000000000000000000042015000000000000000000000000000000000000000000000000000000000004200c0000000000000000000000000000000000000000000000000000000000042016000000000000000000000000000000000000000000000000000000000004200d0000000000000000000000000000000000000000000000000000000000042017000000000000000000000000000000000000000000000000000000000004200e0000000000000000000000000000000000000000000000000000000000042018000000000000000000000000000000000000000000000000000000000004200f00000000000000000000000000000000000000000000000000000000000420190000000000000000000000000000000000000000000000000000000000042010000000000000000000000000000000000000000000000000000000000004201a0000000000000000000000000000000000000000000000000000000000042011000000000000000000000000000000000000000000000000000000000004201b0000000000000000000000000000000000000000000000000000000000042012000000000000000000000000000000000000000000000000000000000004201c0000000000000000000000000000000000000000000000000000000000042013000000000000000000000000000000000000000000000000000000000004201d0000000000000000000000000000000000000000000000000000000000042014000000000000000000000000000000000000000000000000000000000004201e0000000000000000000000000000000000000000000000000000000000042015000000000000000000000000000000000000000000000000000000000004201f00000000000000000000000000000000000000000000000000000000000420160000000000000000000000000000000000000000000000000000000000042020000000000000000000000000000000000000000000000000000000000004201700000000000000000000000000000000000000000000000000000000000420210000000000000000000000000000000000000000000000000000000000042018000000000000000000000000000000000000000000000000000000000004202200000000000000000000000000000000000000000000000000000000000420190000000000000000000000000000000000000000000000000000000000042023000000000000000000000000000000000000000000000000000000000004201a0000000000000000000000000000000000000000000000000000000000042024000000000000000000000000000000000000000000000000000000000004201b0000000000000000000000000000000000000000000000000000000000042025000000000000000000000000000000000000000000000000000000000004201c0000000000000000000000000000000000000000000000000000000000042026000000000000000000000000000000000000000000000000000000000004201d0000000000000000000000000000000000000000000000000000000000042027000000000000000000000000000000000000000000000000000000000004201e0000000000000000000000000000000000000000000000000000000000042028000000000000000000000000000000000000000000000000000000000004201f00000000000000000000000000000000000000000000000000000000000420290000000000000000000000000000000000000000000000000000000000042020000000000000000000000000000000000000000000000000000000000004202a0000000000000000000000000000000000000000000000000000000000042021000000000000000000000000000000000000000000000000000000000004202b0000000000000000000000000000000000000000000000000000000000042022000000000000000000000000000000000000000000000000000000000004202c0000000000000000000000000000000000000000000000000000000000042023000000000000000000000000000000000000000000000000000000000004202d0000000000000000000000000000000000000000000000000000000000042024000000000000000000000000000000000000000000000000000000000004202e0000000000000000000000000000000000000000000000000000000000042025000000000000000000000000000000000000000000000000000000000004202f00000000000000000000000000000000000000000000000000000000000420260000000000000000000000000000000000000000000000000000000000042030000000000000000000000000000000000000000000000000000000000004202700000000000000000000000000000000000000000000000000000000000420310000000000000000000000000000000000000000000000000000000000042028000000000000000000000000000000000000000000000000000000000004203200000000000000000000000000000000000000000000000000000000000420290000000000000000000000000000000000000000000000000000000000042033000000000000000000000000000000000000000000000000000000000004202a0000000000000000000000000000000000000000000000000000000000042034000000000000000000000000000000000000000000000000000000000004202b0000000000000000000000000000000000000000000000000000000000042035000000000000000000000000000000000000000000000000000000000004202c0000000000000000000000000000000000000000000000000000000000042036000000000000000000000000000000000000000000000000000000000004202d0000000000000000000000000000000000000000000000000000000000042037000000000000000000000000000000000000000000000000000000000004202e0000000000000000000000000000000000000000000000000000000000042038000000000000000000000000000000000000000000000000000000000004202f00000000000000000000000000000000000000000000000000000000000420390000000000000000000000000000000000000000000000000000000000042030000000000000000000000000000000000000000000000000000000000004203a0000000000000000000000000000000000000000000000000000000000042031000000000000000000000000000000000000000000000000000000000004203b0000000000000000000000000000000000000000000000000000000000042032000000000000000000000000000000000000000000000000000000000004203c0000000000000000000000000000000000000000000000000000000000042033000000000000000000000000000000000000000000000000000000000004203d0000000000000000000000000000000000000000000000000000000000042034000000000000000000000000000000000000000000000000000000000004203e0000000000000000000000000000000000000000000000000000000000042035000000000000000000000000000000000000000000000000000000000004203f00000000000000000000000000000000000000000000000000000000000420360000000000000000000000000000000000000000000000000000000000042040000000000000000000000000000000000000000000000000000000000004203700000000000000000000000000000000000000000000000000000000000420410000000000000000000000000000000000000000000000000000000000042038000000000000000000000000000000000000000000000000000000000004204200000000000000000000000000000000000000000000000000000000000420390000000000000000000000000000000000000000000000000000000000042043000000000000000000000000000000000000000000000000000000000004203a0000000000000000000000000000000000000000000000000000000000042044000000000000000000000000000000000000000000000000000000000004203b0000000000000000000000000000000000000000000000000000000000042045000000000000000000000000000000000000000000000000000000000004203c0000000000000000000000000000000000000000000000000000000000042046000000000000000000000000000000000000000000000000000000000004203d0000000000000000000000000000000000000000000000000000000000042047000000000000000000000000000000000000000000000000000000000004203e0000000000000000000000000000000000000000000000000000000000042048000000000000000000000000000000000000000000000000000000000004203f0000000000000000000000000000000000000000000000000000000000042049200000000000000000000000000000000000000000000000000000000000041700000000000000000000000000000000000000000000000000000000000004170100000000000000000000000000000000000000000000000000000000000417020000000000000000000000000000000000000000000000000000000000041703000000000000000000000000000000000000000000000000000000000004170400000000000000000000000000000000000000000000000000000000000417050000000000000000000000000000000000000000000000000000000000041706000000000000000000000000000000000000000000000000000000000004170700000000000000000000000000000000000000000000000000000000000417080000000000000000000000000000000000000000000000000000000000041709000000000000000000000000000000000000000000000000000000000004170a000000000000000000000000000000000000000000000000000000000004170b000000000000000000000000000000000000000000000000000000000004170c000000000000000000000000000000000000000000000000000000000004170d000000000000000000000000000000000000000000000000000000000004170e000000000000000000000000000000000000000000000000000000000004170f00000000000000000000000000000000000000000000000000000000000417100000000000000000000000000000000000000000000000000000000000041711000000000000000000000000000000000000000000000000000000000004170100000000000000000000000000000000000000000000000000000000000417020000000000000000000000000000000000000000000000000000000000041703000000000000000000000000000000000000000000000000000000000004170400000000000000000000000000000000000000000000000000000000000417050000000000000000000000000000000000000000000000000000000000041706000000000000000000000000000000000000000000000000000000000004170700000000000000000000000000000000000000000000000000000000000417080000000000000000000000000000000000000000000000000000000000041709000000000000000000000000000000000000000000000000000000000004170a000000000000000000000000000000000000000000000000000000000004170b000000000000000000000000000000000000000000000000000000000004170c000000000000000000000000000000000000000000000000000000000004170d000000000000000000000000000000000000000000000000000000000004170e000000000000000000000000000000000000000000000000000000000004170f00000000000000000000000000000000000000000000000000000000000417100000000000000000000000000000000000000000000000000000000000041711000000000000000000000000000000000000000000000000000000000004171200000000000000000000000000000000000000000000000000000000000417020000000000000000000000000000000000000000000000000000000000041703000000000000000000000000000000000000000000000000000000000004170400000000000000000000000000000000000000000000000000000000000417050000000000000000000000000000000000000000000000000000000000041706000000000000000000000000000000000000000000000000000000000004170700000000000000000000000000000000000000000000000000000000000417080000000000000000000000000000000000000000000000000000000000041709000000000000000000000000000000000000000000000000000000000004170a000000000000000000000000000000000000000000000000000000000004170b000000000000000000000000000000000000000000000000000000000004170c000000000000000000000000000000000000000000000000000000000004170d000000000000000000000000000000000000000000000000000000000004170e000000000000000000000000000000000000000000000000000000000004170f00000000000000000000000000000000000000000000000000000000000417100000000000000000000000000000000000000000000000000000000000041711000000000000000000000000000000000000000000000000000000000004171200000000000000000000000000000000000000000000000000000000000417130000000000000000000000000000000000000000000000000000000000041703000000000000000000000000000000000000000000000000000000000004170400000000000000000000000000000000000000000000000000000000000417050000000000000000000000000000000000000000000000000000000000041706000000000000000000000000000000000000000000000000000000000004170700000000000000000000000000000000000000000000000000000000000417080000000000000000000000000000000000000000000000000000000000041709000000000000000000000000000000000000000000000000000000000004170a000000000000000000000000000000000000000000000000000000000004170b000000000000000000000000000000000000000000000000000000000004170c000000000000000000000000000000000000000000000000000000000004170d000000000000000000000000000000000000000000000000000000000004170e000000000000000000000000000000000000000000000000000000000004170f00000000000000000000000000000000000000000000000000000000000417100000000000000000000000000000000000000000000000000000000000041711000000000000000000000000000000000000000000000000000000000004171200000000000000000000000000000000000000000000000000000000000417130000000000000000000000000000000000000000000000000000000000041714000000000000000000000000000000000000000000000000000000000004170400000000000000000000000000000000000000000000000000000000000417050000000000000000000000000000000000000000000000000000000000041706000000000000000000000000000000000000000000000000000000000004170700000000000000000000000000000000000000000000000000000000000417080000000000000000000000000000000000000000000000000000000000041709000000000000000000000000000000000000000000000000000000000004170a000000000000000000000000000000000000000000000000000000000004170b000000000000000000000000000000000000000000000000000000000004170c000000000000000000000000000000000000000000000000000000000004170d000000000000000000000000000000000000000000000000000000000004170e000000000000000000000000000000000000000000000000000000000004170f00000000000000000000000000000000000000000000000000000000000417100000000000000000000000000000000000000000000000000000000000041711000000000000000000000000000000000000000000000000000000000004171200000000000000000000000000000000000000000000000000000000000417130000000000000000000000000000000000000000000000000000000000041714000000000000000000000000000000000000000000000000000000000004171500000000000000000000000000000000000000000000000000000000000417050000000000000000000000000000000000000000000000000000000000041706000000000000000000000000000000000000000000000000000000000004170700000000000000000000000000000000000000000000000000000000000417080000000000000000000000000000000000000000000000000000000000041709000000000000000000000000000000000000000000000000000000000004170a000000000000000000000000000000000000000000000000000000000004170b000000000000000000000000000000000000000000000000000000000004170c000000000000000000000000000000000000000000000000000000000004170d000000000000000000000000000000000000000000000000000000000004170e000000000000000000000000000000000000000000000000000000000004170f00000000000000000000000000000000000000000000000000000000000417100000000000000000000000000000000000000000000000000000000000041711000000000000000000000000000000000000000000000000000000000004171200000000000000000000000000000000000000000000000000000000000417130000000000000000000000000000000000000000000000000000000000041714000000000000000000000000000000000000000000000000000000000004171500000000000000000000000000000000000000000000000000000000000417160000000000000000000000000000000000000000000000000000000000041706000000000000000000000000000000000000000000000000000000000004170700000000000000000000000000000000000000000000000000000000000417080000000000000000000000000000000000000000000000000000000000041709000000000000000000000000000000000000000000000000000000000004170a000000000000000000000000000000000000000000000000000000000004170b000000000000000000000000000000000000000000000000000000000004170c000000000000000000000000000000000000000000000000000000000004170d000000000000000000000000000000000000000000000000000000000004170e000000000000000000000000000000000000000000000000000000000004170f00000000000000000000000000000000000000000000000000000000000417100000000000000000000000000000000000000000000000000000000000041711000000000000000000000000000000000000000000000000000000000004171200000000000000000000000000000000000000000000000000000000000417130000000000000000000000000000000000000000000000000000000000041714000000000000000000000000000000000000000000000000000000000004171500000000000000000000000000000000000000000000000000000000000417160000000000000000000000000000000000000000000000000000000000041717000000000000000000000000000000000000000000000000000000000004170700000000000000000000000000000000000000000000000000000000000417080000000000000000000000000000000000000000000000000000000000041709000000000000000000000000000000000000000000000000000000000004170a000000000000000000000000000000000000000000000000000000000004170b000000000000000000000000000000000000000000000000000000000004170c000000000000000000000000000000000000000000000000000000000004170d000000000000000000000000000000000000000000000000000000000004170e000000000000000000000000000000000000000000000000000000000004170f00000000000000000000000000000000000000000000000000000000000417100000000000000000000000000000000000000000000000000000000000041711000000000000000000000000000000000000000000000000000000000004171200000000000000000000000000000000000000000000000000000000000417130000000000000000000000000000000000000000000000000000000000041714000000000000000000000000000000000000000000000000000000000004171500000000000000000000000000000000000000000000000000000000000417160000000000000000000000000000000000000000000000000000000000041717000000000000000000000000000000000000000000000000000000000004171800000000000000000000000000000000000000000000000000000000000417080000000000000000000000000000000000000000000000000000000000041709000000000000000000000000000000000000000000000000000000000004170a000000000000000000000000000000000000000000000000000000000004170b000000000000000000000000000000000000000000000000000000000004170c000000000000000000000000000000000000000000000000000000000004170d000000000000000000000000000000000000000000000000000000000004170e000000000000000000000000000000000000000000000000000000000004170f00000000000000000000000000000000000000000000000000000000000417100000000000000000000000000000000000000000000000000000000000041711000000000000000000000000000000000000000000000000000000000004171200000000000000000000000000000000000000000000000000000000000417130000000000000000000000000000000000000000000000000000000000041714000000000000000000000000000000000000000000000000000000000004171500000000000000000000000000000000000000000000000000000000000417160000000000000000000000000000000000000000000000000000000000041717000000000000000000000000000000000000000000000000000000000004171800000000000000000000000000000000000000000000000000000000000417190000000000000000000000000000000000000000000000000000000000041709000000000000000000000000000000000000000000000000000000000004170a000000000000000000000000000000000000000000000000000000000004170b000000000000000000000000000000000000000000000000000000000004170c000000000000000000000000000000000000000000000000000000000004170d000000000000000000000000000000000000000000000000000000000004170e000000000000000000000000000000000000000000000000000000000004170f0000000000000000000000000000000000000000000000000000000000041710000000000000000000000000000000000000000000000000000000000004171100000000000000000000000000000000000000000000000000000000000417120000000000000000000000000000000000000000000000000000000000041713000000000000000000000000000000000000000000000000000000000004171400000000000000000000000000000000000000000000000000000000000417150000000000000000000000000000000000000000000000000000000000041716000000000000000000000000000000000000000000000000000000000004171700000000000000000000000000000000000000000000000000000000000417180000000000000000000000000000000000000000000000000000000000041719000000000000000000000000000000000000000000000000000000000004171a000000000000000000000000000000000000000000000000000000000004170a000000000000000000000000000000000000000000000000000000000004170b000000000000000000000000000000000000000000000000000000000004170c000000000000000000000000000000000000000000000000000000000004170d000000000000000000000000000000000000000000000000000000000004170e000000000000000000000000000000000000000000000000000000000004170f0000000000000000000000000000000000000000000000000000000000041710000000000000000000000000000000000000000000000000000000000004171100000000000000000000000000000000000000000000000000000000000417120000000000000000000000000000000000000000000000000000000000041713000000000000000000000000000000000000000000000000000000000004171400000000000000000000000000000000000000000000000000000000000417150000000000000000000000000000000000000000000000000000000000041716000000000000000000000000000000000000000000000000000000000004171700000000000000000000000000000000000000000000000000000000000417180000000000000000000000000000000000000000000000000000000000041719000000000000000000000000000000000000000000000000000000000004171a000000000000000000000000000000000000000000000000000000000004171b000000000000000000000000000000000000000000000000000000000004170b000000000000000000000000000000000000000000000000000000000004170c000000000000000000000000000000000000000000000000000000000004170d000000000000000000000000000000000000000000000000000000000004170e000000000000000000000000000000000000000000000000000000000004170f0000000000000000000000000000000000000000000000000000000000041710000000000000000000000000000000000000000000000000000000000004171100000000000000000000000000000000000000000000000000000000000417120000000000000000000000000000000000000000000000000000000000041713000000000000000000000000000000000000000000000000000000000004171400000000000000000000000000000000000000000000000000000000000417150000000000000000000000000000000000000000000000000000000000041716000000000000000000000000000000000000000000000000000000000004171700000000000000000000000000000000000000000000000000000000000417180000000000000000000000000000000000000000000000000000000000041719000000000000000000000000000000000000000000000000000000000004171a000000000000000000000000000000000000000000000000000000000004171b000000000000000000000000000000000000000000000000000000000004171c000000000000000000000000000000000000000000000000000000000004170c000000000000000000000000000000000000000000000000000000000004170d000000000000000000000000000000000000000000000000000000000004170e000000000000000000000000000000000000000000000000000000000004170f0000000000000000000000000000000000000000000000000000000000041710000000000000000000000000000000000000000000000000000000000004171100000000000000000000000000000000000000000000000000000000000417120000000000000000000000000000000000000000000000000000000000041713000000000000000000000000000000000000000000000000000000000004171400000000000000000000000000000000000000000000000000000000000417150000000000000000000000000000000000000000000000000000000000041716000000000000000000000000000000000000000000000000000000000004171700000000000000000000000000000000000000000000000000000000000417180000000000000000000000000000000000000000000000000000000000041719000000000000000000000000000000000000000000000000000000000004171a000000000000000000000000000000000000000000000000000000000004171b000000000000000000000000000000000000000000000000000000000004171c000000000000000000000000000000000000000000000000000000000004171d000000000000000000000000000000000000000000000000000000000004170d000000000000000000000000000000000000000000000000000000000004170e000000000000000000000000000000000000000000000000000000000004170f0000000000000000000000000000000000000000000000000000000000041710000000000000000000000000000000000000000000000000000000000004171100000000000000000000000000000000000000000000000000000000000417120000000000000000000000000000000000000000000000000000000000041713000000000000000000000000000000000000000000000000000000000004171400000000000000000000000000000000000000000000000000000000000417150000000000000000000000000000000000000000000000000000000000041716000000000000000000000000000000000000000000000000000000000004171700000000000000000000000000000000000000000000000000000000000417180000000000000000000000000000000000000000000000000000000000041719000000000000000000000000000000000000000000000000000000000004171a000000000000000000000000000000000000000000000000000000000004171b000000000000000000000000000000000000000000000000000000000004171c000000000000000000000000000000000000000000000000000000000004171d000000000000000000000000000000000000000000000000000000000004171e000000000000000000000000000000000000000000000000000000000004170e000000000000000000000000000000000000000000000000000000000004170f0000000000000000000000000000000000000000000000000000000000041710000000000000000000000000000000000000000000000000000000000004171100000000000000000000000000000000000000000000000000000000000417120000000000000000000000000000000000000000000000000000000000041713000000000000000000000000000000000000000000000000000000000004171400000000000000000000000000000000000000000000000000000000000417150000000000000000000000000000000000000000000000000000000000041716000000000000000000000000000000000000000000000000000000000004171700000000000000000000000000000000000000000000000000000000000417180000000000000000000000000000000000000000000000000000000000041719000000000000000000000000000000000000000000000000000000000004171a000000000000000000000000000000000000000000000000000000000004171b000000000000000000000000000000000000000000000000000000000004171c000000000000000000000000000000000000000000000000000000000004171d000000000000000000000000000000000000000000000000000000000004171e000000000000000000000000000000000000000000000000000000000004171f000000000000000000000000000000000000000000000000000000000004170f0000000000000000000000000000000000000000000000000000000000041710000000000000000000000000000000000000000000000000000000000004171100000000000000000000000000000000000000000000000000000000000417120000000000000000000000000000000000000000000000000000000000041713000000000000000000000000000000000000000000000000000000000004171400000000000000000000000000000000000000000000000000000000000417150000000000000000000000000000000000000000000000000000000000041716000000000000000000000000000000000000000000000000000000000004171700000000000000000000000000000000000000000000000000000000000417180000000000000000000000000000000000000000000000000000000000041719000000000000000000000000000000000000000000000000000000000004171a000000000000000000000000000000000000000000000000000000000004171b000000000000000000000000000000000000000000000000000000000004171c000000000000000000000000000000000000000000000000000000000004171d000000000000000000000000000000000000000000000000000000000004171e000000000000000000000000000000000000000000000000000000000004171f00000000000000000000000000000000000000000000000000000000000417200000000000000000000000000000000000000000000000000000000000041710000000000000000000000000000000000000000000000000000000000004171100000000000000000000000000000000000000000000000000000000000417120000000000000000000000000000000000000000000000000000000000041713000000000000000000000000000000000000000000000000000000000004171400000000000000000000000000000000000000000000000000000000000417150000000000000000000000000000000000000000000000000000000000041716000000000000000000000000000000000000000000000000000000000004171700000000000000000000000000000000000000000000000000000000000417180000000000000000000000000000000000000000000000000000000000041719000000000000000000000000000000000000000000000000000000000004171a000000000000000000000000000000000000000000000000000000000004171b000000000000000000000000000000000000000000000000000000000004171c000000000000000000000000000000000000000000000000000000000004171d000000000000000000000000000000000000000000000000000000000004171e000000000000000000000000000000000000000000000000000000000004171f00000000000000000000000000000000000000000000000000000000000417200000000000000000000000000000000000000000000000000000000000041721000000000000000000000000000000000000000000000000000000000004171100000000000000000000000000000000000000000000000000000000000417120000000000000000000000000000000000000000000000000000000000041713000000000000000000000000000000000000000000000000000000000004171400000000000000000000000000000000000000000000000000000000000417150000000000000000000000000000000000000000000000000000000000041716000000000000000000000000000000000000000000000000000000000004171700000000000000000000000000000000000000000000000000000000000417180000000000000000000000000000000000000000000000000000000000041719000000000000000000000000000000000000000000000000000000000004171a000000000000000000000000000000000000000000000000000000000004171b000000000000000000000000000000000000000000000000000000000004171c000000000000000000000000000000000000000000000000000000000004171d000000000000000000000000000000000000000000000000000000000004171e000000000000000000000000000000000000000000000000000000000004171f00000000000000000000000000000000000000000000000000000000000417200000000000000000000000000000000000000000000000000000000000041721000000000000000000000000000000000000000000000000000000000004172200000000000000000000000000000000000000000000000000000000000417120000000000000000000000000000000000000000000000000000000000041713000000000000000000000000000000000000000000000000000000000004171400000000000000000000000000000000000000000000000000000000000417150000000000000000000000000000000000000000000000000000000000041716000000000000000000000000000000000000000000000000000000000004171700000000000000000000000000000000000000000000000000000000000417180000000000000000000000000000000000000000000000000000000000041719000000000000000000000000000000000000000000000000000000000004171a000000000000000000000000000000000000000000000000000000000004171b000000000000000000000000000000000000000000000000000000000004171c000000000000000000000000000000000000000000000000000000000004171d000000000000000000000000000000000000000000000000000000000004171e000000000000000000000000000000000000000000000000000000000004171f00000000000000000000000000000000000000000000000000000000000417200000000000000000000000000000000000000000000000000000000000041721000000000000000000000000000000000000000000000000000000000004172200000000000000000000000000000000000000000000000000000000000417230000000000000000000000000000000000000000000000000000000000041713000000000000000000000000000000000000000000000000000000000004171400000000000000000000000000000000000000000000000000000000000417150000000000000000000000000000000000000000000000000000000000041716000000000000000000000000000000000000000000000000000000000004171700000000000000000000000000000000000000000000000000000000000417180000000000000000000000000000000000000000000000000000000000041719000000000000000000000000000000000000000000000000000000000004171a000000000000000000000000000000000000000000000000000000000004171b000000000000000000000000000000000000000000000000000000000004171c000000000000000000000000000000000000000000000000000000000004171d000000000000000000000000000000000000000000000000000000000004171e000000000000000000000000000000000000000000000000000000000004171f00000000000000000000000000000000000000000000000000000000000417200000000000000000000000000000000000000000000000000000000000041721000000000000000000000000000000000000000000000000000000000004172200000000000000000000000000000000000000000000000000000000000417230000000000000000000000000000000000000000000000000000000000041724000000000000000000000000000000000000000000000000000000000004171400000000000000000000000000000000000000000000000000000000000417150000000000000000000000000000000000000000000000000000000000041716000000000000000000000000000000000000000000000000000000000004171700000000000000000000000000000000000000000000000000000000000417180000000000000000000000000000000000000000000000000000000000041719000000000000000000000000000000000000000000000000000000000004171a000000000000000000000000000000000000000000000000000000000004171b000000000000000000000000000000000000000000000000000000000004171c000000000000000000000000000000000000000000000000000000000004171d000000000000000000000000000000000000000000000000000000000004171e000000000000000000000000000000000000000000000000000000000004171f00000000000000000000000000000000000000000000000000000000000417200000000000000000000000000000000000000000000000000000000000041721000000000000000000000000000000000000000000000000000000000004172200000000000000000000000000000000000000000000000000000000000417230000000000000000000000000000000000000000000000000000000000041724000000000000000000000000000000000000000000000000000000000004172500000000000000000000000000000000000000000000000000000000000417150000000000000000000000000000000000000000000000000000000000041716000000000000000000000000000000000000000000000000000000000004171700000000000000000000000000000000000000000000000000000000000417180000000000000000000000000000000000000000000000000000000000041719000000000000000000000000000000000000000000000000000000000004171a000000000000000000000000000000000000000000000000000000000004171b000000000000000000000000000000000000000000000000000000000004171c000000000000000000000000000000000000000000000000000000000004171d000000000000000000000000000000000000000000000000000000000004171e000000000000000000000000000000000000000000000000000000000004171f00000000000000000000000000000000000000000000000000000000000417200000000000000000000000000000000000000000000000000000000000041721000000000000000000000000000000000000000000000000000000000004172200000000000000000000000000000000000000000000000000000000000417230000000000000000000000000000000000000000000000000000000000041724000000000000000000000000000000000000000000000000000000000004172500000000000000000000000000000000000000000000000000000000000417260000000000000000000000000000000000000000000000000000000000041716000000000000000000000000000000000000000000000000000000000004171700000000000000000000000000000000000000000000000000000000000417180000000000000000000000000000000000000000000000000000000000041719000000000000000000000000000000000000000000000000000000000004171a000000000000000000000000000000000000000000000000000000000004171b000000000000000000000000000000000000000000000000000000000004171c000000000000000000000000000000000000000000000000000000000004171d000000000000000000000000000000000000000000000000000000000004171e000000000000000000000000000000000000000000000000000000000004171f00000000000000000000000000000000000000000000000000000000000417200000000000000000000000000000000000000000000000000000000000041721000000000000000000000000000000000000000000000000000000000004172200000000000000000000000000000000000000000000000000000000000417230000000000000000000000000000000000000000000000000000000000041724000000000000000000000000000000000000000000000000000000000004172500000000000000000000000000000000000000000000000000000000000417260000000000000000000000000000000000000000000000000000000000041727000000000000000000000000000000000000000000000000000000000004171700000000000000000000000000000000000000000000000000000000000417180000000000000000000000000000000000000000000000000000000000041719000000000000000000000000000000000000000000000000000000000004171a000000000000000000000000000000000000000000000000000000000004171b000000000000000000000000000000000000000000000000000000000004171c000000000000000000000000000000000000000000000000000000000004171d000000000000000000000000000000000000000000000000000000000004171e000000000000000000000000000000000000000000000000000000000004171f00000000000000000000000000000000000000000000000000000000000417200000000000000000000000000000000000000000000000000000000000041721000000000000000000000000000000000000000000000000000000000004172200000000000000000000000000000000000000000000000000000000000417230000000000000000000000000000000000000000000000000000000000041724000000000000000000000000000000000000000000000000000000000004172500000000000000000000000000000000000000000000000000000000000417260000000000000000000000000000000000000000000000000000000000041727000000000000000000000000000000000000000000000000000000000004172800000000000000000000000000000000000000000000000000000000000417180000000000000000000000000000000000000000000000000000000000041719000000000000000000000000000000000000000000000000000000000004171a000000000000000000000000000000000000000000000000000000000004171b000000000000000000000000000000000000000000000000000000000004171c000000000000000000000000000000000000000000000000000000000004171d000000000000000000000000000000000000000000000000000000000004171e000000000000000000000000000000000000000000000000000000000004171f00000000000000000000000000000000000000000000000000000000000417200000000000000000000000000000000000000000000000000000000000041721000000000000000000000000000000000000000000000000000000000004172200000000000000000000000000000000000000000000000000000000000417230000000000000000000000000000000000000000000000000000000000041724000000000000000000000000000000000000000000000000000000000004172500000000000000000000000000000000000000000000000000000000000417260000000000000000000000000000000000000000000000000000000000041727000000000000000000000000000000000000000000000000000000000004172800000000000000000000000000000000000000000000000000000000000417290000000000000000000000000000000000000000000000000000000000041719000000000000000000000000000000000000000000000000000000000004171a000000000000000000000000000000000000000000000000000000000004171b000000000000000000000000000000000000000000000000000000000004171c000000000000000000000000000000000000000000000000000000000004171d000000000000000000000000000000000000000000000000000000000004171e000000000000000000000000000000000000000000000000000000000004171f0000000000000000000000000000000000000000000000000000000000041720000000000000000000000000000000000000000000000000000000000004172100000000000000000000000000000000000000000000000000000000000417220000000000000000000000000000000000000000000000000000000000041723000000000000000000000000000000000000000000000000000000000004172400000000000000000000000000000000000000000000000000000000000417250000000000000000000000000000000000000000000000000000000000041726000000000000000000000000000000000000000000000000000000000004172700000000000000000000000000000000000000000000000000000000000417280000000000000000000000000000000000000000000000000000000000041729000000000000000000000000000000000000000000000000000000000004172a000000000000000000000000000000000000000000000000000000000004171a000000000000000000000000000000000000000000000000000000000004171b000000000000000000000000000000000000000000000000000000000004171c000000000000000000000000000000000000000000000000000000000004171d000000000000000000000000000000000000000000000000000000000004171e000000000000000000000000000000000000000000000000000000000004171f0000000000000000000000000000000000000000000000000000000000041720000000000000000000000000000000000000000000000000000000000004172100000000000000000000000000000000000000000000000000000000000417220000000000000000000000000000000000000000000000000000000000041723000000000000000000000000000000000000000000000000000000000004172400000000000000000000000000000000000000000000000000000000000417250000000000000000000000000000000000000000000000000000000000041726000000000000000000000000000000000000000000000000000000000004172700000000000000000000000000000000000000000000000000000000000417280000000000000000000000000000000000000000000000000000000000041729000000000000000000000000000000000000000000000000000000000004172a000000000000000000000000000000000000000000000000000000000004172b000000000000000000000000000000000000000000000000000000000004171b000000000000000000000000000000000000000000000000000000000004171c000000000000000000000000000000000000000000000000000000000004171d000000000000000000000000000000000000000000000000000000000004171e000000000000000000000000000000000000000000000000000000000004171f0000000000000000000000000000000000000000000000000000000000041720000000000000000000000000000000000000000000000000000000000004172100000000000000000000000000000000000000000000000000000000000417220000000000000000000000000000000000000000000000000000000000041723000000000000000000000000000000000000000000000000000000000004172400000000000000000000000000000000000000000000000000000000000417250000000000000000000000000000000000000000000000000000000000041726000000000000000000000000000000000000000000000000000000000004172700000000000000000000000000000000000000000000000000000000000417280000000000000000000000000000000000000000000000000000000000041729000000000000000000000000000000000000000000000000000000000004172a000000000000000000000000000000000000000000000000000000000004172b000000000000000000000000000000000000000000000000000000000004172c000000000000000000000000000000000000000000000000000000000004171c000000000000000000000000000000000000000000000000000000000004171d000000000000000000000000000000000000000000000000000000000004171e000000000000000000000000000000000000000000000000000000000004171f0000000000000000000000000000000000000000000000000000000000041720000000000000000000000000000000000000000000000000000000000004172100000000000000000000000000000000000000000000000000000000000417220000000000000000000000000000000000000000000000000000000000041723000000000000000000000000000000000000000000000000000000000004172400000000000000000000000000000000000000000000000000000000000417250000000000000000000000000000000000000000000000000000000000041726000000000000000000000000000000000000000000000000000000000004172700000000000000000000000000000000000000000000000000000000000417280000000000000000000000000000000000000000000000000000000000041729000000000000000000000000000000000000000000000000000000000004172a000000000000000000000000000000000000000000000000000000000004172b000000000000000000000000000000000000000000000000000000000004172c000000000000000000000000000000000000000000000000000000000004172d000000000000000000000000000000000000000000000000000000000004171d000000000000000000000000000000000000000000000000000000000004171e000000000000000000000000000000000000000000000000000000000004171f0000000000000000000000000000000000000000000000000000000000041720000000000000000000000000000000000000000000000000000000000004172100000000000000000000000000000000000000000000000000000000000417220000000000000000000000000000000000000000000000000000000000041723000000000000000000000000000000000000000000000000000000000004172400000000000000000000000000000000000000000000000000000000000417250000000000000000000000000000000000000000000000000000000000041726000000000000000000000000000000000000000000000000000000000004172700000000000000000000000000000000000000000000000000000000000417280000000000000000000000000000000000000000000000000000000000041729000000000000000000000000000000000000000000000000000000000004172a000000000000000000000000000000000000000000000000000000000004172b000000000000000000000000000000000000000000000000000000000004172c000000000000000000000000000000000000000000000000000000000004172d000000000000000000000000000000000000000000000000000000000004172e000000000000000000000000000000000000000000000000000000000004171e000000000000000000000000000000000000000000000000000000000004171f0000000000000000000000000000000000000000000000000000000000041720000000000000000000000000000000000000000000000000000000000004172100000000000000000000000000000000000000000000000000000000000417220000000000000000000000000000000000000000000000000000000000041723000000000000000000000000000000000000000000000000000000000004172400000000000000000000000000000000000000000000000000000000000417250000000000000000000000000000000000000000000000000000000000041726000000000000000000000000000000000000000000000000000000000004172700000000000000000000000000000000000000000000000000000000000417280000000000000000000000000000000000000000000000000000000000041729000000000000000000000000000000000000000000000000000000000004172a000000000000000000000000000000000000000000000000000000000004172b000000000000000000000000000000000000000000000000000000000004172c000000000000000000000000000000000000000000000000000000000004172d000000000000000000000000000000000000000000000000000000000004172e000000000000000000000000000000000000000000000000000000000004172f000000000000000000000000000000000000000000000000000000000004171f0000000000000000000000000000000000000000000000000000000000041720000000000000000000000000000000000000000000000000000000000004172100000000000000000000000000000000000000000000000000000000000417220000000000000000000000000000000000000000000000000000000000041723000000000000000000000000000000000000000000000000000000000004172400000000000000000000000000000000000000000000000000000000000417250000000000000000000000000000000000000000000000000000000000041726000000000000000000000000000000000000000000000000000000000004172700000000000000000000000000000000000000000000000000000000000417280000000000000000000000000000000000000000000000000000000000041729000000000000000000000000000000000000000000000000000000000004172a000000000000000000000000000000000000000000000000000000000004172b000000000000000000000000000000000000000000000000000000000004172c000000000000000000000000000000000000000000000000000000000004172d000000000000000000000000000000000000000000000000000000000004172e000000000000000000000000000000000000000000000000000000000004172f00000000000000000000000000000000000000000000000000000000000417300000", "decodedHeader": { "contentCommitment": { - "blobsHash": "0x00233f47eaf69dbedbc52fe59b8d303cdf0b196ab081188192c05b593144163b", + "blobsHash": "0x00eebff001f99da234e03b7f71e498b8ebc91691232c43b8a3e94d645b754f93", "inHash": "0x00089a9d421a82c4a25f7acbebe69e638d5b064fa8a60e018793dcb0be53752c", "outHash": "0x0077d7a5d20132e30e08855aaf9b57d3a10464d72915830307af3eed373a218e", "numTxs": 1 }, "globalVariables": { "blockNumber": 1, - "slotNumber": "0x000000000000000000000000000000000000000000000000000000000000001b", + "slotNumber": "0x0000000000000000000000000000000000000000000000000000000000000019", "chainId": 31337, - "timestamp": 1736364040, + "timestamp": 1742998681, "version": 1, - "coinbase": "0x17329afd428cfac91863962ac3c61b37d71d10a6", - "feeRecipient": "0x19a7636e17e068437e6f2b5662c09d13d40416a6e2db7bb951f0d6c21f2bb13b", + "coinbase": "0x509ad28f57e7c48f407ba8817e09f8c5a35cd99e", + "feeRecipient": "0x2a8b4b30849ccc6eff72262562dbb6fcd77104acce75f162fdfb30b6d4997580", "gasFees": { "feePerDaGas": 0, - "feePerL2Gas": 54153579570 + "feePerL2Gas": 4330 } }, "totalFees": "0x0000000000000000000000000000000000000000000000000000000000000000", @@ -84,9 +83,9 @@ } } }, - "header": "0x0237797d6a2c04d20d4fa06b74482bd970ccd51a43d9b05b57e9b91fa1ae1cae00000001000000000000000000000000000000000000000000000000000000000000000100233f47eaf69dbedbc52fe59b8d303cdf0b196ab081188192c05b593144163b00089a9d421a82c4a25f7acbebe69e638d5b064fa8a60e018793dcb0be53752c0077d7a5d20132e30e08855aaf9b57d3a10464d72915830307af3eed373a218e2e33ee2008411c04b99c24b313513d097a0d21a5040b6193d1f978b8226892d600000010142a1312a8dacc58c97d5dc0f9bc949ef0fe4d153c13ffcbe094665405b3c9a80000004001d6d73ea906b0b733dc3826affeb3eb6a54d5645f6e3b4ddab7830e9a1f48df000000c0080039323b94fe18c2d9e8fe4939b636b71dcd05a426a2426549b99d3fdbea99000000c00000000000000000000000000000000000000000000000000000000000007a6900000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000001b00000000000000000000000000000000000000000000000000000000677ed00817329afd428cfac91863962ac3c61b37d71d10a619a7636e17e068437e6f2b5662c09d13d40416a6e2db7bb951f0d6c21f2bb13b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000c9bce0c3200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", - "publicInputsHash": "0x00f49a0ef63379e9e554204159cadbd63dbb6475330513a9d2b0856968f36cf3", - "blobInputs": "0x010103f972b0030a23bbdc8771d97aa76ef098e0762f0e826fd81aa30a1a83de691f70128a9cb2b754f85121ed78e86d6da16b6548c5d3dd3c1769ffc90e7a75743a98e9f5da0b9071def05c23d193aa52a385f29ed5bab0aa90437873affc32efa9f4967cc6826b175b2343cdf0e5f264afe5c28e30aef24e2d4a2905c7381f57533d59950eb92142aa1133dc4924d28da29741ec4cb1d66740587a9f773aa753f3b039365495e13627c342997536ad27eb57accc55010d009dcd5c5f32f1e141", + "header": "0x0237797d6a2c04d20d4fa06b74482bd970ccd51a43d9b05b57e9b91fa1ae1cae00000001000000000000000000000000000000000000000000000000000000000000000100eebff001f99da234e03b7f71e498b8ebc91691232c43b8a3e94d645b754f9300089a9d421a82c4a25f7acbebe69e638d5b064fa8a60e018793dcb0be53752c0077d7a5d20132e30e08855aaf9b57d3a10464d72915830307af3eed373a218e2e33ee2008411c04b99c24b313513d097a0d21a5040b6193d1f978b8226892d600000010142a1312a8dacc58c97d5dc0f9bc949ef0fe4d153c13ffcbe094665405b3c9a80000004001d6d73ea906b0b733dc3826affeb3eb6a54d5645f6e3b4ddab7830e9a1f48df000000c0080039323b94fe18c2d9e8fe4939b636b71dcd05a426a2426549b99d3fdbea99000000c00000000000000000000000000000000000000000000000000000000000007a690000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000190000000000000000000000000000000000000000000000000000000067e40c99509ad28f57e7c48f407ba8817e09f8c5a35cd99e2a8b4b30849ccc6eff72262562dbb6fcd77104acce75f162fdfb30b6d4997580000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010ea00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "publicInputsHash": "0x004fda64dcba29dcd58d08e19fcb8d443f2014e91c28222a644ac34b8524f521", + "blobInputs": "0x0101623303d9585258da3df278232450a9b9e22ad63eaa1827943145d8e1a940c70f95095b11f9befd26b3128bc12e9303c7d9464b20d8de0cd41b411d4513bda70e1725bdbb4481ee3d13896fb8a6d5a5d3a03cc509dca716f5ecefd3e5415caaa3db7607c2959337a0ee03bb26a4bd02f55b579f9ddeef15f6629f5259684aa9bd2e82fba54fb1b70fb0bba620a92cd9a36d8e4880185e875f430f7babfd35f1d78853e684df666d2b5b152e1ef34bf9575fe1a7f8523534eee0b5508120d4cd", "numTxs": 1 } } \ No newline at end of file diff --git a/l1-contracts/test/fixtures/single_tx_block_2.json b/l1-contracts/test/fixtures/single_tx_block_2.json index adc6ebb28a71..420d91b3aa52 100644 --- a/l1-contracts/test/fixtures/single_tx_block_2.json +++ b/l1-contracts/test/fixtures/single_tx_block_2.json @@ -34,34 +34,33 @@ ] }, "block": { - "archive": "0x21461ce338a53dc8e4bc370237f054d24c428e456fcc9192261356cfb48d61bf", - "blockHash": "0x0cf15fee29151f5d95d0c69afdd7a75656d704deffa8075ba372500061af49b9", - "body": "0x00000001000000000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000141000000000000000000000000000000000000000000000000000000000000014100100000000000000000000000000000000000000000000000000000000001410020000000000000000000000000000000000000000000000000000000000141003000000000000000000000000000000000000000000000000000000000014100400000000000000000000000000000000000000000000000000000000001410050000000000000000000000000000000000000000000000000000000000141006000000000000000000000000000000000000000000000000000000000014100700000000000000000000000000000000000000000000000000000000001410080000000000000000000000000000000000000000000000000000000000141009000000000000000000000000000000000000000000000000000000000014100a000000000000000000000000000000000000000000000000000000000014100b000000000000000000000000000000000000000000000000000000000014100c000000000000000000000000000000000000000000000000000000000014100d000000000000000000000000000000000000000000000000000000000014100e000000000000000000000000000000000000000000000000000000000014100f0000000000000000000000000000000000000000000000000000000000141010000000000000000000000000000000000000000000000000000000000014101100000000000000000000000000000000000000000000000000000000001410120000000000000000000000000000000000000000000000000000000000141013000000000000000000000000000000000000000000000000000000000014101400000000000000000000000000000000000000000000000000000000001410150000000000000000000000000000000000000000000000000000000000141016000000000000000000000000000000000000000000000000000000000014101700000000000000000000000000000000000000000000000000000000001410180000000000000000000000000000000000000000000000000000000000141019000000000000000000000000000000000000000000000000000000000014101a000000000000000000000000000000000000000000000000000000000014101b000000000000000000000000000000000000000000000000000000000014101c000000000000000000000000000000000000000000000000000000000014101d000000000000000000000000000000000000000000000000000000000014101e000000000000000000000000000000000000000000000000000000000014101f0000000000000000000000000000000000000000000000000000000000141020000000000000000000000000000000000000000000000000000000000014102100000000000000000000000000000000000000000000000000000000001410220000000000000000000000000000000000000000000000000000000000141023000000000000000000000000000000000000000000000000000000000014102400000000000000000000000000000000000000000000000000000000001410250000000000000000000000000000000000000000000000000000000000141026000000000000000000000000000000000000000000000000000000000014102700000000000000000000000000000000000000000000000000000000001410280000000000000000000000000000000000000000000000000000000000141029000000000000000000000000000000000000000000000000000000000014102a000000000000000000000000000000000000000000000000000000000014102b000000000000000000000000000000000000000000000000000000000014102c000000000000000000000000000000000000000000000000000000000014102d000000000000000000000000000000000000000000000000000000000014102e000000000000000000000000000000000000000000000000000000000014102f0000000000000000000000000000000000000000000000000000000000141030000000000000000000000000000000000000000000000000000000000014103100000000000000000000000000000000000000000000000000000000001410320000000000000000000000000000000000000000000000000000000000141033000000000000000000000000000000000000000000000000000000000014103400000000000000000000000000000000000000000000000000000000001410350000000000000000000000000000000000000000000000000000000000141036000000000000000000000000000000000000000000000000000000000014103700000000000000000000000000000000000000000000000000000000001410380000000000000000000000000000000000000000000000000000000000141039000000000000000000000000000000000000000000000000000000000014103a000000000000000000000000000000000000000000000000000000000014103b000000000000000000000000000000000000000000000000000000000014103c000000000000000000000000000000000000000000000000000000000014103d000000000000000000000000000000000000000000000000000000000014103e000000000000000000000000000000000000000000000000000000000014103f4000000000000000000000000000000000000000000000000000000000001400010000000000000000000000000000000000000000000000000000000000141100000000000000000000000000000000000000000000000000000000000014110100000000000000000000000000000000000000000000000000000000001411020000000000000000000000000000000000000000000000000000000000141103000000000000000000000000000000000000000000000000000000000014110400000000000000000000000000000000000000000000000000000000001411050000000000000000000000000000000000000000000000000000000000141106000000000000000000000000000000000000000000000000000000000014110700000000000000000000000000000000000000000000000000000000001411080000000000000000000000000000000000000000000000000000000000141109000000000000000000000000000000000000000000000000000000000014110a000000000000000000000000000000000000000000000000000000000014110b000000000000000000000000000000000000000000000000000000000014110c000000000000000000000000000000000000000000000000000000000014110d000000000000000000000000000000000000000000000000000000000014110e000000000000000000000000000000000000000000000000000000000014110f0000000000000000000000000000000000000000000000000000000000141110000000000000000000000000000000000000000000000000000000000014111100000000000000000000000000000000000000000000000000000000001411120000000000000000000000000000000000000000000000000000000000141113000000000000000000000000000000000000000000000000000000000014111400000000000000000000000000000000000000000000000000000000001411150000000000000000000000000000000000000000000000000000000000141116000000000000000000000000000000000000000000000000000000000014111700000000000000000000000000000000000000000000000000000000001411180000000000000000000000000000000000000000000000000000000000141119000000000000000000000000000000000000000000000000000000000014111a000000000000000000000000000000000000000000000000000000000014111b000000000000000000000000000000000000000000000000000000000014111c000000000000000000000000000000000000000000000000000000000014111d000000000000000000000000000000000000000000000000000000000014111e000000000000000000000000000000000000000000000000000000000014111f0000000000000000000000000000000000000000000000000000000000141120000000000000000000000000000000000000000000000000000000000014112100000000000000000000000000000000000000000000000000000000001411220000000000000000000000000000000000000000000000000000000000141123000000000000000000000000000000000000000000000000000000000014112400000000000000000000000000000000000000000000000000000000001411250000000000000000000000000000000000000000000000000000000000141126000000000000000000000000000000000000000000000000000000000014112700000000000000000000000000000000000000000000000000000000001411280000000000000000000000000000000000000000000000000000000000141129000000000000000000000000000000000000000000000000000000000014112a000000000000000000000000000000000000000000000000000000000014112b000000000000000000000000000000000000000000000000000000000014112c000000000000000000000000000000000000000000000000000000000014112d000000000000000000000000000000000000000000000000000000000014112e000000000000000000000000000000000000000000000000000000000014112f0000000000000000000000000000000000000000000000000000000000141130000000000000000000000000000000000000000000000000000000000014113100000000000000000000000000000000000000000000000000000000001411320000000000000000000000000000000000000000000000000000000000141133000000000000000000000000000000000000000000000000000000000014113400000000000000000000000000000000000000000000000000000000001411350000000000000000000000000000000000000000000000000000000000141136000000000000000000000000000000000000000000000000000000000014113700000000000000000000000000000000000000000000000000000000001411380000000000000000000000000000000000000000000000000000000000141139000000000000000000000000000000000000000000000000000000000014113a000000000000000000000000000000000000000000000000000000000014113b000000000000000000000000000000000000000000000000000000000014113c000000000000000000000000000000000000000000000000000000000014113d000000000000000000000000000000000000000000000000000000000014113e08005c015113cb57d67dd6c0febd596819ac0298b6a23fc80aba17d445d540059a00f20b7d1308051fe7b68031a7c336b0b4b56738928b6510133aff1b818d5a9a0063eec1883a4f95f4933f9275e850d84b3d035f5061ed986c437a07331fd30e00d3a32d6bbc4fd843686fd0c5e118a73b847529977dca5b9e0e81f6604f22ca00c2f4f5133d9194d41e853e5e951e16690babce8461f25342c0bad20f2aa1e3000a6bf4739e7eb387913d955dc2e8f14f8cce27696b9d2e128b6acefafb80ee005763f7e0648f958b559677622a648f318fc79ebc0cb539170d49c26456e69200302e2b8a92cda941e9af8761b89899a58a587656d9710594e1d865b1652299400000000000000000000000000000000000000000000000000000000000142000000000000000000000000000000000000000000000000000000000000014200a0000000000000000000000000000000000000000000000000000000000142001000000000000000000000000000000000000000000000000000000000014200b0000000000000000000000000000000000000000000000000000000000142002000000000000000000000000000000000000000000000000000000000014200c0000000000000000000000000000000000000000000000000000000000142003000000000000000000000000000000000000000000000000000000000014200d0000000000000000000000000000000000000000000000000000000000142004000000000000000000000000000000000000000000000000000000000014200e0000000000000000000000000000000000000000000000000000000000142005000000000000000000000000000000000000000000000000000000000014200f00000000000000000000000000000000000000000000000000000000001420060000000000000000000000000000000000000000000000000000000000142010000000000000000000000000000000000000000000000000000000000014200700000000000000000000000000000000000000000000000000000000001420110000000000000000000000000000000000000000000000000000000000142008000000000000000000000000000000000000000000000000000000000014201200000000000000000000000000000000000000000000000000000000001420090000000000000000000000000000000000000000000000000000000000142013000000000000000000000000000000000000000000000000000000000014200a0000000000000000000000000000000000000000000000000000000000142014000000000000000000000000000000000000000000000000000000000014200b0000000000000000000000000000000000000000000000000000000000142015000000000000000000000000000000000000000000000000000000000014200c0000000000000000000000000000000000000000000000000000000000142016000000000000000000000000000000000000000000000000000000000014200d0000000000000000000000000000000000000000000000000000000000142017000000000000000000000000000000000000000000000000000000000014200e0000000000000000000000000000000000000000000000000000000000142018000000000000000000000000000000000000000000000000000000000014200f00000000000000000000000000000000000000000000000000000000001420190000000000000000000000000000000000000000000000000000000000142010000000000000000000000000000000000000000000000000000000000014201a0000000000000000000000000000000000000000000000000000000000142011000000000000000000000000000000000000000000000000000000000014201b0000000000000000000000000000000000000000000000000000000000142012000000000000000000000000000000000000000000000000000000000014201c0000000000000000000000000000000000000000000000000000000000142013000000000000000000000000000000000000000000000000000000000014201d0000000000000000000000000000000000000000000000000000000000142014000000000000000000000000000000000000000000000000000000000014201e0000000000000000000000000000000000000000000000000000000000142015000000000000000000000000000000000000000000000000000000000014201f00000000000000000000000000000000000000000000000000000000001420160000000000000000000000000000000000000000000000000000000000142020000000000000000000000000000000000000000000000000000000000014201700000000000000000000000000000000000000000000000000000000001420210000000000000000000000000000000000000000000000000000000000142018000000000000000000000000000000000000000000000000000000000014202200000000000000000000000000000000000000000000000000000000001420190000000000000000000000000000000000000000000000000000000000142023000000000000000000000000000000000000000000000000000000000014201a0000000000000000000000000000000000000000000000000000000000142024000000000000000000000000000000000000000000000000000000000014201b0000000000000000000000000000000000000000000000000000000000142025000000000000000000000000000000000000000000000000000000000014201c0000000000000000000000000000000000000000000000000000000000142026000000000000000000000000000000000000000000000000000000000014201d0000000000000000000000000000000000000000000000000000000000142027000000000000000000000000000000000000000000000000000000000014201e0000000000000000000000000000000000000000000000000000000000142028000000000000000000000000000000000000000000000000000000000014201f00000000000000000000000000000000000000000000000000000000001420290000000000000000000000000000000000000000000000000000000000142020000000000000000000000000000000000000000000000000000000000014202a0000000000000000000000000000000000000000000000000000000000142021000000000000000000000000000000000000000000000000000000000014202b0000000000000000000000000000000000000000000000000000000000142022000000000000000000000000000000000000000000000000000000000014202c0000000000000000000000000000000000000000000000000000000000142023000000000000000000000000000000000000000000000000000000000014202d0000000000000000000000000000000000000000000000000000000000142024000000000000000000000000000000000000000000000000000000000014202e0000000000000000000000000000000000000000000000000000000000142025000000000000000000000000000000000000000000000000000000000014202f00000000000000000000000000000000000000000000000000000000001420260000000000000000000000000000000000000000000000000000000000142030000000000000000000000000000000000000000000000000000000000014202700000000000000000000000000000000000000000000000000000000001420310000000000000000000000000000000000000000000000000000000000142028000000000000000000000000000000000000000000000000000000000014203200000000000000000000000000000000000000000000000000000000001420290000000000000000000000000000000000000000000000000000000000142033000000000000000000000000000000000000000000000000000000000014202a0000000000000000000000000000000000000000000000000000000000142034000000000000000000000000000000000000000000000000000000000014202b0000000000000000000000000000000000000000000000000000000000142035000000000000000000000000000000000000000000000000000000000014202c0000000000000000000000000000000000000000000000000000000000142036000000000000000000000000000000000000000000000000000000000014202d0000000000000000000000000000000000000000000000000000000000142037000000000000000000000000000000000000000000000000000000000014202e0000000000000000000000000000000000000000000000000000000000142038000000000000000000000000000000000000000000000000000000000014202f00000000000000000000000000000000000000000000000000000000001420390000000000000000000000000000000000000000000000000000000000142030000000000000000000000000000000000000000000000000000000000014203a0000000000000000000000000000000000000000000000000000000000142031000000000000000000000000000000000000000000000000000000000014203b0000000000000000000000000000000000000000000000000000000000142032000000000000000000000000000000000000000000000000000000000014203c0000000000000000000000000000000000000000000000000000000000142033000000000000000000000000000000000000000000000000000000000014203d0000000000000000000000000000000000000000000000000000000000142034000000000000000000000000000000000000000000000000000000000014203e0000000000000000000000000000000000000000000000000000000000142035000000000000000000000000000000000000000000000000000000000014203f00000000000000000000000000000000000000000000000000000000001420360000000000000000000000000000000000000000000000000000000000142040000000000000000000000000000000000000000000000000000000000014203700000000000000000000000000000000000000000000000000000000001420410000000000000000000000000000000000000000000000000000000000142038000000000000000000000000000000000000000000000000000000000014204200000000000000000000000000000000000000000000000000000000001420390000000000000000000000000000000000000000000000000000000000142043000000000000000000000000000000000000000000000000000000000014203a0000000000000000000000000000000000000000000000000000000000142044000000000000000000000000000000000000000000000000000000000014203b0000000000000000000000000000000000000000000000000000000000142045000000000000000000000000000000000000000000000000000000000014203c0000000000000000000000000000000000000000000000000000000000142046000000000000000000000000000000000000000000000000000000000014203d0000000000000000000000000000000000000000000000000000000000142047000000000000000000000000000000000000000000000000000000000014203e0000000000000000000000000000000000000000000000000000000000142048000000000000000000000000000000000000000000000000000000000014203f0000000000000000000000000000000000000000000000000000000000142049200000000000000000000000000000000000000000000000000000000000141700000000000000000000000000000000000000000000000000000000000014170100000000000000000000000000000000000000000000000000000000001417020000000000000000000000000000000000000000000000000000000000141703000000000000000000000000000000000000000000000000000000000014170400000000000000000000000000000000000000000000000000000000001417050000000000000000000000000000000000000000000000000000000000141706000000000000000000000000000000000000000000000000000000000014170700000000000000000000000000000000000000000000000000000000001417080000000000000000000000000000000000000000000000000000000000141709000000000000000000000000000000000000000000000000000000000014170a000000000000000000000000000000000000000000000000000000000014170b000000000000000000000000000000000000000000000000000000000014170c000000000000000000000000000000000000000000000000000000000014170d000000000000000000000000000000000000000000000000000000000014170e000000000000000000000000000000000000000000000000000000000014170f00000000000000000000000000000000000000000000000000000000001417100000000000000000000000000000000000000000000000000000000000141711000000000000000000000000000000000000000000000000000000000014170100000000000000000000000000000000000000000000000000000000001417020000000000000000000000000000000000000000000000000000000000141703000000000000000000000000000000000000000000000000000000000014170400000000000000000000000000000000000000000000000000000000001417050000000000000000000000000000000000000000000000000000000000141706000000000000000000000000000000000000000000000000000000000014170700000000000000000000000000000000000000000000000000000000001417080000000000000000000000000000000000000000000000000000000000141709000000000000000000000000000000000000000000000000000000000014170a000000000000000000000000000000000000000000000000000000000014170b000000000000000000000000000000000000000000000000000000000014170c000000000000000000000000000000000000000000000000000000000014170d000000000000000000000000000000000000000000000000000000000014170e000000000000000000000000000000000000000000000000000000000014170f00000000000000000000000000000000000000000000000000000000001417100000000000000000000000000000000000000000000000000000000000141711000000000000000000000000000000000000000000000000000000000014171200000000000000000000000000000000000000000000000000000000001417020000000000000000000000000000000000000000000000000000000000141703000000000000000000000000000000000000000000000000000000000014170400000000000000000000000000000000000000000000000000000000001417050000000000000000000000000000000000000000000000000000000000141706000000000000000000000000000000000000000000000000000000000014170700000000000000000000000000000000000000000000000000000000001417080000000000000000000000000000000000000000000000000000000000141709000000000000000000000000000000000000000000000000000000000014170a000000000000000000000000000000000000000000000000000000000014170b000000000000000000000000000000000000000000000000000000000014170c000000000000000000000000000000000000000000000000000000000014170d000000000000000000000000000000000000000000000000000000000014170e000000000000000000000000000000000000000000000000000000000014170f00000000000000000000000000000000000000000000000000000000001417100000000000000000000000000000000000000000000000000000000000141711000000000000000000000000000000000000000000000000000000000014171200000000000000000000000000000000000000000000000000000000001417130000000000000000000000000000000000000000000000000000000000141703000000000000000000000000000000000000000000000000000000000014170400000000000000000000000000000000000000000000000000000000001417050000000000000000000000000000000000000000000000000000000000141706000000000000000000000000000000000000000000000000000000000014170700000000000000000000000000000000000000000000000000000000001417080000000000000000000000000000000000000000000000000000000000141709000000000000000000000000000000000000000000000000000000000014170a000000000000000000000000000000000000000000000000000000000014170b000000000000000000000000000000000000000000000000000000000014170c000000000000000000000000000000000000000000000000000000000014170d000000000000000000000000000000000000000000000000000000000014170e000000000000000000000000000000000000000000000000000000000014170f00000000000000000000000000000000000000000000000000000000001417100000000000000000000000000000000000000000000000000000000000141711000000000000000000000000000000000000000000000000000000000014171200000000000000000000000000000000000000000000000000000000001417130000000000000000000000000000000000000000000000000000000000141714000000000000000000000000000000000000000000000000000000000014170400000000000000000000000000000000000000000000000000000000001417050000000000000000000000000000000000000000000000000000000000141706000000000000000000000000000000000000000000000000000000000014170700000000000000000000000000000000000000000000000000000000001417080000000000000000000000000000000000000000000000000000000000141709000000000000000000000000000000000000000000000000000000000014170a000000000000000000000000000000000000000000000000000000000014170b000000000000000000000000000000000000000000000000000000000014170c000000000000000000000000000000000000000000000000000000000014170d000000000000000000000000000000000000000000000000000000000014170e000000000000000000000000000000000000000000000000000000000014170f00000000000000000000000000000000000000000000000000000000001417100000000000000000000000000000000000000000000000000000000000141711000000000000000000000000000000000000000000000000000000000014171200000000000000000000000000000000000000000000000000000000001417130000000000000000000000000000000000000000000000000000000000141714000000000000000000000000000000000000000000000000000000000014171500000000000000000000000000000000000000000000000000000000001417050000000000000000000000000000000000000000000000000000000000141706000000000000000000000000000000000000000000000000000000000014170700000000000000000000000000000000000000000000000000000000001417080000000000000000000000000000000000000000000000000000000000141709000000000000000000000000000000000000000000000000000000000014170a000000000000000000000000000000000000000000000000000000000014170b000000000000000000000000000000000000000000000000000000000014170c000000000000000000000000000000000000000000000000000000000014170d000000000000000000000000000000000000000000000000000000000014170e000000000000000000000000000000000000000000000000000000000014170f00000000000000000000000000000000000000000000000000000000001417100000000000000000000000000000000000000000000000000000000000141711000000000000000000000000000000000000000000000000000000000014171200000000000000000000000000000000000000000000000000000000001417130000000000000000000000000000000000000000000000000000000000141714000000000000000000000000000000000000000000000000000000000014171500000000000000000000000000000000000000000000000000000000001417160000000000000000000000000000000000000000000000000000000000141706000000000000000000000000000000000000000000000000000000000014170700000000000000000000000000000000000000000000000000000000001417080000000000000000000000000000000000000000000000000000000000141709000000000000000000000000000000000000000000000000000000000014170a000000000000000000000000000000000000000000000000000000000014170b000000000000000000000000000000000000000000000000000000000014170c000000000000000000000000000000000000000000000000000000000014170d000000000000000000000000000000000000000000000000000000000014170e000000000000000000000000000000000000000000000000000000000014170f00000000000000000000000000000000000000000000000000000000001417100000000000000000000000000000000000000000000000000000000000141711000000000000000000000000000000000000000000000000000000000014171200000000000000000000000000000000000000000000000000000000001417130000000000000000000000000000000000000000000000000000000000141714000000000000000000000000000000000000000000000000000000000014171500000000000000000000000000000000000000000000000000000000001417160000000000000000000000000000000000000000000000000000000000141717000000000000000000000000000000000000000000000000000000000014170700000000000000000000000000000000000000000000000000000000001417080000000000000000000000000000000000000000000000000000000000141709000000000000000000000000000000000000000000000000000000000014170a000000000000000000000000000000000000000000000000000000000014170b000000000000000000000000000000000000000000000000000000000014170c000000000000000000000000000000000000000000000000000000000014170d000000000000000000000000000000000000000000000000000000000014170e000000000000000000000000000000000000000000000000000000000014170f00000000000000000000000000000000000000000000000000000000001417100000000000000000000000000000000000000000000000000000000000141711000000000000000000000000000000000000000000000000000000000014171200000000000000000000000000000000000000000000000000000000001417130000000000000000000000000000000000000000000000000000000000141714000000000000000000000000000000000000000000000000000000000014171500000000000000000000000000000000000000000000000000000000001417160000000000000000000000000000000000000000000000000000000000141717000000000000000000000000000000000000000000000000000000000014171800000000000000000000000000000000000000000000000000000000001417080000000000000000000000000000000000000000000000000000000000141709000000000000000000000000000000000000000000000000000000000014170a000000000000000000000000000000000000000000000000000000000014170b000000000000000000000000000000000000000000000000000000000014170c000000000000000000000000000000000000000000000000000000000014170d000000000000000000000000000000000000000000000000000000000014170e000000000000000000000000000000000000000000000000000000000014170f00000000000000000000000000000000000000000000000000000000001417100000000000000000000000000000000000000000000000000000000000141711000000000000000000000000000000000000000000000000000000000014171200000000000000000000000000000000000000000000000000000000001417130000000000000000000000000000000000000000000000000000000000141714000000000000000000000000000000000000000000000000000000000014171500000000000000000000000000000000000000000000000000000000001417160000000000000000000000000000000000000000000000000000000000141717000000000000000000000000000000000000000000000000000000000014171800000000000000000000000000000000000000000000000000000000001417190000000000000000000000000000000000000000000000000000000000141709000000000000000000000000000000000000000000000000000000000014170a000000000000000000000000000000000000000000000000000000000014170b000000000000000000000000000000000000000000000000000000000014170c000000000000000000000000000000000000000000000000000000000014170d000000000000000000000000000000000000000000000000000000000014170e000000000000000000000000000000000000000000000000000000000014170f0000000000000000000000000000000000000000000000000000000000141710000000000000000000000000000000000000000000000000000000000014171100000000000000000000000000000000000000000000000000000000001417120000000000000000000000000000000000000000000000000000000000141713000000000000000000000000000000000000000000000000000000000014171400000000000000000000000000000000000000000000000000000000001417150000000000000000000000000000000000000000000000000000000000141716000000000000000000000000000000000000000000000000000000000014171700000000000000000000000000000000000000000000000000000000001417180000000000000000000000000000000000000000000000000000000000141719000000000000000000000000000000000000000000000000000000000014171a000000000000000000000000000000000000000000000000000000000014170a000000000000000000000000000000000000000000000000000000000014170b000000000000000000000000000000000000000000000000000000000014170c000000000000000000000000000000000000000000000000000000000014170d000000000000000000000000000000000000000000000000000000000014170e000000000000000000000000000000000000000000000000000000000014170f0000000000000000000000000000000000000000000000000000000000141710000000000000000000000000000000000000000000000000000000000014171100000000000000000000000000000000000000000000000000000000001417120000000000000000000000000000000000000000000000000000000000141713000000000000000000000000000000000000000000000000000000000014171400000000000000000000000000000000000000000000000000000000001417150000000000000000000000000000000000000000000000000000000000141716000000000000000000000000000000000000000000000000000000000014171700000000000000000000000000000000000000000000000000000000001417180000000000000000000000000000000000000000000000000000000000141719000000000000000000000000000000000000000000000000000000000014171a000000000000000000000000000000000000000000000000000000000014171b000000000000000000000000000000000000000000000000000000000014170b000000000000000000000000000000000000000000000000000000000014170c000000000000000000000000000000000000000000000000000000000014170d000000000000000000000000000000000000000000000000000000000014170e000000000000000000000000000000000000000000000000000000000014170f0000000000000000000000000000000000000000000000000000000000141710000000000000000000000000000000000000000000000000000000000014171100000000000000000000000000000000000000000000000000000000001417120000000000000000000000000000000000000000000000000000000000141713000000000000000000000000000000000000000000000000000000000014171400000000000000000000000000000000000000000000000000000000001417150000000000000000000000000000000000000000000000000000000000141716000000000000000000000000000000000000000000000000000000000014171700000000000000000000000000000000000000000000000000000000001417180000000000000000000000000000000000000000000000000000000000141719000000000000000000000000000000000000000000000000000000000014171a000000000000000000000000000000000000000000000000000000000014171b000000000000000000000000000000000000000000000000000000000014171c000000000000000000000000000000000000000000000000000000000014170c000000000000000000000000000000000000000000000000000000000014170d000000000000000000000000000000000000000000000000000000000014170e000000000000000000000000000000000000000000000000000000000014170f0000000000000000000000000000000000000000000000000000000000141710000000000000000000000000000000000000000000000000000000000014171100000000000000000000000000000000000000000000000000000000001417120000000000000000000000000000000000000000000000000000000000141713000000000000000000000000000000000000000000000000000000000014171400000000000000000000000000000000000000000000000000000000001417150000000000000000000000000000000000000000000000000000000000141716000000000000000000000000000000000000000000000000000000000014171700000000000000000000000000000000000000000000000000000000001417180000000000000000000000000000000000000000000000000000000000141719000000000000000000000000000000000000000000000000000000000014171a000000000000000000000000000000000000000000000000000000000014171b000000000000000000000000000000000000000000000000000000000014171c000000000000000000000000000000000000000000000000000000000014171d000000000000000000000000000000000000000000000000000000000014170d000000000000000000000000000000000000000000000000000000000014170e000000000000000000000000000000000000000000000000000000000014170f0000000000000000000000000000000000000000000000000000000000141710000000000000000000000000000000000000000000000000000000000014171100000000000000000000000000000000000000000000000000000000001417120000000000000000000000000000000000000000000000000000000000141713000000000000000000000000000000000000000000000000000000000014171400000000000000000000000000000000000000000000000000000000001417150000000000000000000000000000000000000000000000000000000000141716000000000000000000000000000000000000000000000000000000000014171700000000000000000000000000000000000000000000000000000000001417180000000000000000000000000000000000000000000000000000000000141719000000000000000000000000000000000000000000000000000000000014171a000000000000000000000000000000000000000000000000000000000014171b000000000000000000000000000000000000000000000000000000000014171c000000000000000000000000000000000000000000000000000000000014171d000000000000000000000000000000000000000000000000000000000014171e000000000000000000000000000000000000000000000000000000000014170e000000000000000000000000000000000000000000000000000000000014170f0000000000000000000000000000000000000000000000000000000000141710000000000000000000000000000000000000000000000000000000000014171100000000000000000000000000000000000000000000000000000000001417120000000000000000000000000000000000000000000000000000000000141713000000000000000000000000000000000000000000000000000000000014171400000000000000000000000000000000000000000000000000000000001417150000000000000000000000000000000000000000000000000000000000141716000000000000000000000000000000000000000000000000000000000014171700000000000000000000000000000000000000000000000000000000001417180000000000000000000000000000000000000000000000000000000000141719000000000000000000000000000000000000000000000000000000000014171a000000000000000000000000000000000000000000000000000000000014171b000000000000000000000000000000000000000000000000000000000014171c000000000000000000000000000000000000000000000000000000000014171d000000000000000000000000000000000000000000000000000000000014171e000000000000000000000000000000000000000000000000000000000014171f000000000000000000000000000000000000000000000000000000000014170f0000000000000000000000000000000000000000000000000000000000141710000000000000000000000000000000000000000000000000000000000014171100000000000000000000000000000000000000000000000000000000001417120000000000000000000000000000000000000000000000000000000000141713000000000000000000000000000000000000000000000000000000000014171400000000000000000000000000000000000000000000000000000000001417150000000000000000000000000000000000000000000000000000000000141716000000000000000000000000000000000000000000000000000000000014171700000000000000000000000000000000000000000000000000000000001417180000000000000000000000000000000000000000000000000000000000141719000000000000000000000000000000000000000000000000000000000014171a000000000000000000000000000000000000000000000000000000000014171b000000000000000000000000000000000000000000000000000000000014171c000000000000000000000000000000000000000000000000000000000014171d000000000000000000000000000000000000000000000000000000000014171e000000000000000000000000000000000000000000000000000000000014171f00000000000000000000000000000000000000000000000000000000001417200000000000000000000000000000000000000000000000000000000000141710000000000000000000000000000000000000000000000000000000000014171100000000000000000000000000000000000000000000000000000000001417120000000000000000000000000000000000000000000000000000000000141713000000000000000000000000000000000000000000000000000000000014171400000000000000000000000000000000000000000000000000000000001417150000000000000000000000000000000000000000000000000000000000141716000000000000000000000000000000000000000000000000000000000014171700000000000000000000000000000000000000000000000000000000001417180000000000000000000000000000000000000000000000000000000000141719000000000000000000000000000000000000000000000000000000000014171a000000000000000000000000000000000000000000000000000000000014171b000000000000000000000000000000000000000000000000000000000014171c000000000000000000000000000000000000000000000000000000000014171d000000000000000000000000000000000000000000000000000000000014171e000000000000000000000000000000000000000000000000000000000014171f00000000000000000000000000000000000000000000000000000000001417200000000000000000000000000000000000000000000000000000000000141721000000000000000000000000000000000000000000000000000000000014171100000000000000000000000000000000000000000000000000000000001417120000000000000000000000000000000000000000000000000000000000141713000000000000000000000000000000000000000000000000000000000014171400000000000000000000000000000000000000000000000000000000001417150000000000000000000000000000000000000000000000000000000000141716000000000000000000000000000000000000000000000000000000000014171700000000000000000000000000000000000000000000000000000000001417180000000000000000000000000000000000000000000000000000000000141719000000000000000000000000000000000000000000000000000000000014171a000000000000000000000000000000000000000000000000000000000014171b000000000000000000000000000000000000000000000000000000000014171c000000000000000000000000000000000000000000000000000000000014171d000000000000000000000000000000000000000000000000000000000014171e000000000000000000000000000000000000000000000000000000000014171f00000000000000000000000000000000000000000000000000000000001417200000000000000000000000000000000000000000000000000000000000141721000000000000000000000000000000000000000000000000000000000014172200000000000000000000000000000000000000000000000000000000001417120000000000000000000000000000000000000000000000000000000000141713000000000000000000000000000000000000000000000000000000000014171400000000000000000000000000000000000000000000000000000000001417150000000000000000000000000000000000000000000000000000000000141716000000000000000000000000000000000000000000000000000000000014171700000000000000000000000000000000000000000000000000000000001417180000000000000000000000000000000000000000000000000000000000141719000000000000000000000000000000000000000000000000000000000014171a000000000000000000000000000000000000000000000000000000000014171b000000000000000000000000000000000000000000000000000000000014171c000000000000000000000000000000000000000000000000000000000014171d000000000000000000000000000000000000000000000000000000000014171e000000000000000000000000000000000000000000000000000000000014171f00000000000000000000000000000000000000000000000000000000001417200000000000000000000000000000000000000000000000000000000000141721000000000000000000000000000000000000000000000000000000000014172200000000000000000000000000000000000000000000000000000000001417230000000000000000000000000000000000000000000000000000000000141713000000000000000000000000000000000000000000000000000000000014171400000000000000000000000000000000000000000000000000000000001417150000000000000000000000000000000000000000000000000000000000141716000000000000000000000000000000000000000000000000000000000014171700000000000000000000000000000000000000000000000000000000001417180000000000000000000000000000000000000000000000000000000000141719000000000000000000000000000000000000000000000000000000000014171a000000000000000000000000000000000000000000000000000000000014171b000000000000000000000000000000000000000000000000000000000014171c000000000000000000000000000000000000000000000000000000000014171d000000000000000000000000000000000000000000000000000000000014171e000000000000000000000000000000000000000000000000000000000014171f00000000000000000000000000000000000000000000000000000000001417200000000000000000000000000000000000000000000000000000000000141721000000000000000000000000000000000000000000000000000000000014172200000000000000000000000000000000000000000000000000000000001417230000000000000000000000000000000000000000000000000000000000141724000000000000000000000000000000000000000000000000000000000014171400000000000000000000000000000000000000000000000000000000001417150000000000000000000000000000000000000000000000000000000000141716000000000000000000000000000000000000000000000000000000000014171700000000000000000000000000000000000000000000000000000000001417180000000000000000000000000000000000000000000000000000000000141719000000000000000000000000000000000000000000000000000000000014171a000000000000000000000000000000000000000000000000000000000014171b000000000000000000000000000000000000000000000000000000000014171c000000000000000000000000000000000000000000000000000000000014171d000000000000000000000000000000000000000000000000000000000014171e000000000000000000000000000000000000000000000000000000000014171f00000000000000000000000000000000000000000000000000000000001417200000000000000000000000000000000000000000000000000000000000141721000000000000000000000000000000000000000000000000000000000014172200000000000000000000000000000000000000000000000000000000001417230000000000000000000000000000000000000000000000000000000000141724000000000000000000000000000000000000000000000000000000000014172500000000000000000000000000000000000000000000000000000000001417150000000000000000000000000000000000000000000000000000000000141716000000000000000000000000000000000000000000000000000000000014171700000000000000000000000000000000000000000000000000000000001417180000000000000000000000000000000000000000000000000000000000141719000000000000000000000000000000000000000000000000000000000014171a000000000000000000000000000000000000000000000000000000000014171b000000000000000000000000000000000000000000000000000000000014171c000000000000000000000000000000000000000000000000000000000014171d000000000000000000000000000000000000000000000000000000000014171e000000000000000000000000000000000000000000000000000000000014171f00000000000000000000000000000000000000000000000000000000001417200000000000000000000000000000000000000000000000000000000000141721000000000000000000000000000000000000000000000000000000000014172200000000000000000000000000000000000000000000000000000000001417230000000000000000000000000000000000000000000000000000000000141724000000000000000000000000000000000000000000000000000000000014172500000000000000000000000000000000000000000000000000000000001417260000000000000000000000000000000000000000000000000000000000141716000000000000000000000000000000000000000000000000000000000014171700000000000000000000000000000000000000000000000000000000001417180000000000000000000000000000000000000000000000000000000000141719000000000000000000000000000000000000000000000000000000000014171a000000000000000000000000000000000000000000000000000000000014171b000000000000000000000000000000000000000000000000000000000014171c000000000000000000000000000000000000000000000000000000000014171d000000000000000000000000000000000000000000000000000000000014171e000000000000000000000000000000000000000000000000000000000014171f00000000000000000000000000000000000000000000000000000000001417200000000000000000000000000000000000000000000000000000000000141721000000000000000000000000000000000000000000000000000000000014172200000000000000000000000000000000000000000000000000000000001417230000000000000000000000000000000000000000000000000000000000141724000000000000000000000000000000000000000000000000000000000014172500000000000000000000000000000000000000000000000000000000001417260000000000000000000000000000000000000000000000000000000000141727000000000000000000000000000000000000000000000000000000000014171700000000000000000000000000000000000000000000000000000000001417180000000000000000000000000000000000000000000000000000000000141719000000000000000000000000000000000000000000000000000000000014171a000000000000000000000000000000000000000000000000000000000014171b000000000000000000000000000000000000000000000000000000000014171c000000000000000000000000000000000000000000000000000000000014171d000000000000000000000000000000000000000000000000000000000014171e000000000000000000000000000000000000000000000000000000000014171f00000000000000000000000000000000000000000000000000000000001417200000000000000000000000000000000000000000000000000000000000141721000000000000000000000000000000000000000000000000000000000014172200000000000000000000000000000000000000000000000000000000001417230000000000000000000000000000000000000000000000000000000000141724000000000000000000000000000000000000000000000000000000000014172500000000000000000000000000000000000000000000000000000000001417260000000000000000000000000000000000000000000000000000000000141727000000000000000000000000000000000000000000000000000000000014172800000000000000000000000000000000000000000000000000000000001417180000000000000000000000000000000000000000000000000000000000141719000000000000000000000000000000000000000000000000000000000014171a000000000000000000000000000000000000000000000000000000000014171b000000000000000000000000000000000000000000000000000000000014171c000000000000000000000000000000000000000000000000000000000014171d000000000000000000000000000000000000000000000000000000000014171e000000000000000000000000000000000000000000000000000000000014171f00000000000000000000000000000000000000000000000000000000001417200000000000000000000000000000000000000000000000000000000000141721000000000000000000000000000000000000000000000000000000000014172200000000000000000000000000000000000000000000000000000000001417230000000000000000000000000000000000000000000000000000000000141724000000000000000000000000000000000000000000000000000000000014172500000000000000000000000000000000000000000000000000000000001417260000000000000000000000000000000000000000000000000000000000141727000000000000000000000000000000000000000000000000000000000014172800000000000000000000000000000000000000000000000000000000001417290000000000000000000000000000000000000000000000000000000000141719000000000000000000000000000000000000000000000000000000000014171a000000000000000000000000000000000000000000000000000000000014171b000000000000000000000000000000000000000000000000000000000014171c000000000000000000000000000000000000000000000000000000000014171d000000000000000000000000000000000000000000000000000000000014171e000000000000000000000000000000000000000000000000000000000014171f0000000000000000000000000000000000000000000000000000000000141720000000000000000000000000000000000000000000000000000000000014172100000000000000000000000000000000000000000000000000000000001417220000000000000000000000000000000000000000000000000000000000141723000000000000000000000000000000000000000000000000000000000014172400000000000000000000000000000000000000000000000000000000001417250000000000000000000000000000000000000000000000000000000000141726000000000000000000000000000000000000000000000000000000000014172700000000000000000000000000000000000000000000000000000000001417280000000000000000000000000000000000000000000000000000000000141729000000000000000000000000000000000000000000000000000000000014172a000000000000000000000000000000000000000000000000000000000014171a000000000000000000000000000000000000000000000000000000000014171b000000000000000000000000000000000000000000000000000000000014171c000000000000000000000000000000000000000000000000000000000014171d000000000000000000000000000000000000000000000000000000000014171e000000000000000000000000000000000000000000000000000000000014171f0000000000000000000000000000000000000000000000000000000000141720000000000000000000000000000000000000000000000000000000000014172100000000000000000000000000000000000000000000000000000000001417220000000000000000000000000000000000000000000000000000000000141723000000000000000000000000000000000000000000000000000000000014172400000000000000000000000000000000000000000000000000000000001417250000000000000000000000000000000000000000000000000000000000141726000000000000000000000000000000000000000000000000000000000014172700000000000000000000000000000000000000000000000000000000001417280000000000000000000000000000000000000000000000000000000000141729000000000000000000000000000000000000000000000000000000000014172a000000000000000000000000000000000000000000000000000000000014172b000000000000000000000000000000000000000000000000000000000014171b000000000000000000000000000000000000000000000000000000000014171c000000000000000000000000000000000000000000000000000000000014171d000000000000000000000000000000000000000000000000000000000014171e000000000000000000000000000000000000000000000000000000000014171f0000000000000000000000000000000000000000000000000000000000141720000000000000000000000000000000000000000000000000000000000014172100000000000000000000000000000000000000000000000000000000001417220000000000000000000000000000000000000000000000000000000000141723000000000000000000000000000000000000000000000000000000000014172400000000000000000000000000000000000000000000000000000000001417250000000000000000000000000000000000000000000000000000000000141726000000000000000000000000000000000000000000000000000000000014172700000000000000000000000000000000000000000000000000000000001417280000000000000000000000000000000000000000000000000000000000141729000000000000000000000000000000000000000000000000000000000014172a000000000000000000000000000000000000000000000000000000000014172b000000000000000000000000000000000000000000000000000000000014172c000000000000000000000000000000000000000000000000000000000014171c000000000000000000000000000000000000000000000000000000000014171d000000000000000000000000000000000000000000000000000000000014171e000000000000000000000000000000000000000000000000000000000014171f0000000000000000000000000000000000000000000000000000000000141720000000000000000000000000000000000000000000000000000000000014172100000000000000000000000000000000000000000000000000000000001417220000000000000000000000000000000000000000000000000000000000141723000000000000000000000000000000000000000000000000000000000014172400000000000000000000000000000000000000000000000000000000001417250000000000000000000000000000000000000000000000000000000000141726000000000000000000000000000000000000000000000000000000000014172700000000000000000000000000000000000000000000000000000000001417280000000000000000000000000000000000000000000000000000000000141729000000000000000000000000000000000000000000000000000000000014172a000000000000000000000000000000000000000000000000000000000014172b000000000000000000000000000000000000000000000000000000000014172c000000000000000000000000000000000000000000000000000000000014172d000000000000000000000000000000000000000000000000000000000014171d000000000000000000000000000000000000000000000000000000000014171e000000000000000000000000000000000000000000000000000000000014171f0000000000000000000000000000000000000000000000000000000000141720000000000000000000000000000000000000000000000000000000000014172100000000000000000000000000000000000000000000000000000000001417220000000000000000000000000000000000000000000000000000000000141723000000000000000000000000000000000000000000000000000000000014172400000000000000000000000000000000000000000000000000000000001417250000000000000000000000000000000000000000000000000000000000141726000000000000000000000000000000000000000000000000000000000014172700000000000000000000000000000000000000000000000000000000001417280000000000000000000000000000000000000000000000000000000000141729000000000000000000000000000000000000000000000000000000000014172a000000000000000000000000000000000000000000000000000000000014172b000000000000000000000000000000000000000000000000000000000014172c000000000000000000000000000000000000000000000000000000000014172d000000000000000000000000000000000000000000000000000000000014172e000000000000000000000000000000000000000000000000000000000014171e000000000000000000000000000000000000000000000000000000000014171f0000000000000000000000000000000000000000000000000000000000141720000000000000000000000000000000000000000000000000000000000014172100000000000000000000000000000000000000000000000000000000001417220000000000000000000000000000000000000000000000000000000000141723000000000000000000000000000000000000000000000000000000000014172400000000000000000000000000000000000000000000000000000000001417250000000000000000000000000000000000000000000000000000000000141726000000000000000000000000000000000000000000000000000000000014172700000000000000000000000000000000000000000000000000000000001417280000000000000000000000000000000000000000000000000000000000141729000000000000000000000000000000000000000000000000000000000014172a000000000000000000000000000000000000000000000000000000000014172b000000000000000000000000000000000000000000000000000000000014172c000000000000000000000000000000000000000000000000000000000014172d000000000000000000000000000000000000000000000000000000000014172e000000000000000000000000000000000000000000000000000000000014172f000000000000000000000000000000000000000000000000000000000014171f0000000000000000000000000000000000000000000000000000000000141720000000000000000000000000000000000000000000000000000000000014172100000000000000000000000000000000000000000000000000000000001417220000000000000000000000000000000000000000000000000000000000141723000000000000000000000000000000000000000000000000000000000014172400000000000000000000000000000000000000000000000000000000001417250000000000000000000000000000000000000000000000000000000000141726000000000000000000000000000000000000000000000000000000000014172700000000000000000000000000000000000000000000000000000000001417280000000000000000000000000000000000000000000000000000000000141729000000000000000000000000000000000000000000000000000000000014172a000000000000000000000000000000000000000000000000000000000014172b000000000000000000000000000000000000000000000000000000000014172c000000000000000000000000000000000000000000000000000000000014172d000000000000000000000000000000000000000000000000000000000014172e000000000000000000000000000000000000000000000000000000000014172f0000000000000000000000000000000000000000000000000000000000141730000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "archive": "0x11e5e8a656d5dd9f7406b22fc7ee5a442ba5e6e1c2ac8e89b56e4957a5250b32", + "body": "0x0000000100021dd25b45b6b5d3adc1e289ec9295fac847fe36a25282a28fae507ddd09b97f0000000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000141000000000000000000000000000000000000000000000000000000000000014100100000000000000000000000000000000000000000000000000000000001410020000000000000000000000000000000000000000000000000000000000141003000000000000000000000000000000000000000000000000000000000014100400000000000000000000000000000000000000000000000000000000001410050000000000000000000000000000000000000000000000000000000000141006000000000000000000000000000000000000000000000000000000000014100700000000000000000000000000000000000000000000000000000000001410080000000000000000000000000000000000000000000000000000000000141009000000000000000000000000000000000000000000000000000000000014100a000000000000000000000000000000000000000000000000000000000014100b000000000000000000000000000000000000000000000000000000000014100c000000000000000000000000000000000000000000000000000000000014100d000000000000000000000000000000000000000000000000000000000014100e000000000000000000000000000000000000000000000000000000000014100f0000000000000000000000000000000000000000000000000000000000141010000000000000000000000000000000000000000000000000000000000014101100000000000000000000000000000000000000000000000000000000001410120000000000000000000000000000000000000000000000000000000000141013000000000000000000000000000000000000000000000000000000000014101400000000000000000000000000000000000000000000000000000000001410150000000000000000000000000000000000000000000000000000000000141016000000000000000000000000000000000000000000000000000000000014101700000000000000000000000000000000000000000000000000000000001410180000000000000000000000000000000000000000000000000000000000141019000000000000000000000000000000000000000000000000000000000014101a000000000000000000000000000000000000000000000000000000000014101b000000000000000000000000000000000000000000000000000000000014101c000000000000000000000000000000000000000000000000000000000014101d000000000000000000000000000000000000000000000000000000000014101e000000000000000000000000000000000000000000000000000000000014101f0000000000000000000000000000000000000000000000000000000000141020000000000000000000000000000000000000000000000000000000000014102100000000000000000000000000000000000000000000000000000000001410220000000000000000000000000000000000000000000000000000000000141023000000000000000000000000000000000000000000000000000000000014102400000000000000000000000000000000000000000000000000000000001410250000000000000000000000000000000000000000000000000000000000141026000000000000000000000000000000000000000000000000000000000014102700000000000000000000000000000000000000000000000000000000001410280000000000000000000000000000000000000000000000000000000000141029000000000000000000000000000000000000000000000000000000000014102a000000000000000000000000000000000000000000000000000000000014102b000000000000000000000000000000000000000000000000000000000014102c000000000000000000000000000000000000000000000000000000000014102d000000000000000000000000000000000000000000000000000000000014102e000000000000000000000000000000000000000000000000000000000014102f0000000000000000000000000000000000000000000000000000000000141030000000000000000000000000000000000000000000000000000000000014103100000000000000000000000000000000000000000000000000000000001410320000000000000000000000000000000000000000000000000000000000141033000000000000000000000000000000000000000000000000000000000014103400000000000000000000000000000000000000000000000000000000001410350000000000000000000000000000000000000000000000000000000000141036000000000000000000000000000000000000000000000000000000000014103700000000000000000000000000000000000000000000000000000000001410380000000000000000000000000000000000000000000000000000000000141039000000000000000000000000000000000000000000000000000000000014103a000000000000000000000000000000000000000000000000000000000014103b000000000000000000000000000000000000000000000000000000000014103c000000000000000000000000000000000000000000000000000000000014103d000000000000000000000000000000000000000000000000000000000014103e000000000000000000000000000000000000000000000000000000000014103f4000000000000000000000000000000000000000000000000000000000001400010000000000000000000000000000000000000000000000000000000000141100000000000000000000000000000000000000000000000000000000000014110100000000000000000000000000000000000000000000000000000000001411020000000000000000000000000000000000000000000000000000000000141103000000000000000000000000000000000000000000000000000000000014110400000000000000000000000000000000000000000000000000000000001411050000000000000000000000000000000000000000000000000000000000141106000000000000000000000000000000000000000000000000000000000014110700000000000000000000000000000000000000000000000000000000001411080000000000000000000000000000000000000000000000000000000000141109000000000000000000000000000000000000000000000000000000000014110a000000000000000000000000000000000000000000000000000000000014110b000000000000000000000000000000000000000000000000000000000014110c000000000000000000000000000000000000000000000000000000000014110d000000000000000000000000000000000000000000000000000000000014110e000000000000000000000000000000000000000000000000000000000014110f0000000000000000000000000000000000000000000000000000000000141110000000000000000000000000000000000000000000000000000000000014111100000000000000000000000000000000000000000000000000000000001411120000000000000000000000000000000000000000000000000000000000141113000000000000000000000000000000000000000000000000000000000014111400000000000000000000000000000000000000000000000000000000001411150000000000000000000000000000000000000000000000000000000000141116000000000000000000000000000000000000000000000000000000000014111700000000000000000000000000000000000000000000000000000000001411180000000000000000000000000000000000000000000000000000000000141119000000000000000000000000000000000000000000000000000000000014111a000000000000000000000000000000000000000000000000000000000014111b000000000000000000000000000000000000000000000000000000000014111c000000000000000000000000000000000000000000000000000000000014111d000000000000000000000000000000000000000000000000000000000014111e000000000000000000000000000000000000000000000000000000000014111f0000000000000000000000000000000000000000000000000000000000141120000000000000000000000000000000000000000000000000000000000014112100000000000000000000000000000000000000000000000000000000001411220000000000000000000000000000000000000000000000000000000000141123000000000000000000000000000000000000000000000000000000000014112400000000000000000000000000000000000000000000000000000000001411250000000000000000000000000000000000000000000000000000000000141126000000000000000000000000000000000000000000000000000000000014112700000000000000000000000000000000000000000000000000000000001411280000000000000000000000000000000000000000000000000000000000141129000000000000000000000000000000000000000000000000000000000014112a000000000000000000000000000000000000000000000000000000000014112b000000000000000000000000000000000000000000000000000000000014112c000000000000000000000000000000000000000000000000000000000014112d000000000000000000000000000000000000000000000000000000000014112e000000000000000000000000000000000000000000000000000000000014112f0000000000000000000000000000000000000000000000000000000000141130000000000000000000000000000000000000000000000000000000000014113100000000000000000000000000000000000000000000000000000000001411320000000000000000000000000000000000000000000000000000000000141133000000000000000000000000000000000000000000000000000000000014113400000000000000000000000000000000000000000000000000000000001411350000000000000000000000000000000000000000000000000000000000141136000000000000000000000000000000000000000000000000000000000014113700000000000000000000000000000000000000000000000000000000001411380000000000000000000000000000000000000000000000000000000000141139000000000000000000000000000000000000000000000000000000000014113a000000000000000000000000000000000000000000000000000000000014113b000000000000000000000000000000000000000000000000000000000014113c000000000000000000000000000000000000000000000000000000000014113d000000000000000000000000000000000000000000000000000000000014113e08005c015113cb57d67dd6c0febd596819ac0298b6a23fc80aba17d445d540059a00f20b7d1308051fe7b68031a7c336b0b4b56738928b6510133aff1b818d5a9a0063eec1883a4f95f4933f9275e850d84b3d035f5061ed986c437a07331fd30e00d3a32d6bbc4fd843686fd0c5e118a73b847529977dca5b9e0e81f6604f22ca00c2f4f5133d9194d41e853e5e951e16690babce8461f25342c0bad20f2aa1e3000a6bf4739e7eb387913d955dc2e8f14f8cce27696b9d2e128b6acefafb80ee005763f7e0648f958b559677622a648f318fc79ebc0cb539170d49c26456e69200302e2b8a92cda941e9af8761b89899a58a587656d9710594e1d865b1652299400000000000000000000000000000000000000000000000000000000000142000000000000000000000000000000000000000000000000000000000000014200a0000000000000000000000000000000000000000000000000000000000142001000000000000000000000000000000000000000000000000000000000014200b0000000000000000000000000000000000000000000000000000000000142002000000000000000000000000000000000000000000000000000000000014200c0000000000000000000000000000000000000000000000000000000000142003000000000000000000000000000000000000000000000000000000000014200d0000000000000000000000000000000000000000000000000000000000142004000000000000000000000000000000000000000000000000000000000014200e0000000000000000000000000000000000000000000000000000000000142005000000000000000000000000000000000000000000000000000000000014200f00000000000000000000000000000000000000000000000000000000001420060000000000000000000000000000000000000000000000000000000000142010000000000000000000000000000000000000000000000000000000000014200700000000000000000000000000000000000000000000000000000000001420110000000000000000000000000000000000000000000000000000000000142008000000000000000000000000000000000000000000000000000000000014201200000000000000000000000000000000000000000000000000000000001420090000000000000000000000000000000000000000000000000000000000142013000000000000000000000000000000000000000000000000000000000014200a0000000000000000000000000000000000000000000000000000000000142014000000000000000000000000000000000000000000000000000000000014200b0000000000000000000000000000000000000000000000000000000000142015000000000000000000000000000000000000000000000000000000000014200c0000000000000000000000000000000000000000000000000000000000142016000000000000000000000000000000000000000000000000000000000014200d0000000000000000000000000000000000000000000000000000000000142017000000000000000000000000000000000000000000000000000000000014200e0000000000000000000000000000000000000000000000000000000000142018000000000000000000000000000000000000000000000000000000000014200f00000000000000000000000000000000000000000000000000000000001420190000000000000000000000000000000000000000000000000000000000142010000000000000000000000000000000000000000000000000000000000014201a0000000000000000000000000000000000000000000000000000000000142011000000000000000000000000000000000000000000000000000000000014201b0000000000000000000000000000000000000000000000000000000000142012000000000000000000000000000000000000000000000000000000000014201c0000000000000000000000000000000000000000000000000000000000142013000000000000000000000000000000000000000000000000000000000014201d0000000000000000000000000000000000000000000000000000000000142014000000000000000000000000000000000000000000000000000000000014201e0000000000000000000000000000000000000000000000000000000000142015000000000000000000000000000000000000000000000000000000000014201f00000000000000000000000000000000000000000000000000000000001420160000000000000000000000000000000000000000000000000000000000142020000000000000000000000000000000000000000000000000000000000014201700000000000000000000000000000000000000000000000000000000001420210000000000000000000000000000000000000000000000000000000000142018000000000000000000000000000000000000000000000000000000000014202200000000000000000000000000000000000000000000000000000000001420190000000000000000000000000000000000000000000000000000000000142023000000000000000000000000000000000000000000000000000000000014201a0000000000000000000000000000000000000000000000000000000000142024000000000000000000000000000000000000000000000000000000000014201b0000000000000000000000000000000000000000000000000000000000142025000000000000000000000000000000000000000000000000000000000014201c0000000000000000000000000000000000000000000000000000000000142026000000000000000000000000000000000000000000000000000000000014201d0000000000000000000000000000000000000000000000000000000000142027000000000000000000000000000000000000000000000000000000000014201e0000000000000000000000000000000000000000000000000000000000142028000000000000000000000000000000000000000000000000000000000014201f00000000000000000000000000000000000000000000000000000000001420290000000000000000000000000000000000000000000000000000000000142020000000000000000000000000000000000000000000000000000000000014202a0000000000000000000000000000000000000000000000000000000000142021000000000000000000000000000000000000000000000000000000000014202b0000000000000000000000000000000000000000000000000000000000142022000000000000000000000000000000000000000000000000000000000014202c0000000000000000000000000000000000000000000000000000000000142023000000000000000000000000000000000000000000000000000000000014202d0000000000000000000000000000000000000000000000000000000000142024000000000000000000000000000000000000000000000000000000000014202e0000000000000000000000000000000000000000000000000000000000142025000000000000000000000000000000000000000000000000000000000014202f00000000000000000000000000000000000000000000000000000000001420260000000000000000000000000000000000000000000000000000000000142030000000000000000000000000000000000000000000000000000000000014202700000000000000000000000000000000000000000000000000000000001420310000000000000000000000000000000000000000000000000000000000142028000000000000000000000000000000000000000000000000000000000014203200000000000000000000000000000000000000000000000000000000001420290000000000000000000000000000000000000000000000000000000000142033000000000000000000000000000000000000000000000000000000000014202a0000000000000000000000000000000000000000000000000000000000142034000000000000000000000000000000000000000000000000000000000014202b0000000000000000000000000000000000000000000000000000000000142035000000000000000000000000000000000000000000000000000000000014202c0000000000000000000000000000000000000000000000000000000000142036000000000000000000000000000000000000000000000000000000000014202d0000000000000000000000000000000000000000000000000000000000142037000000000000000000000000000000000000000000000000000000000014202e0000000000000000000000000000000000000000000000000000000000142038000000000000000000000000000000000000000000000000000000000014202f00000000000000000000000000000000000000000000000000000000001420390000000000000000000000000000000000000000000000000000000000142030000000000000000000000000000000000000000000000000000000000014203a0000000000000000000000000000000000000000000000000000000000142031000000000000000000000000000000000000000000000000000000000014203b0000000000000000000000000000000000000000000000000000000000142032000000000000000000000000000000000000000000000000000000000014203c0000000000000000000000000000000000000000000000000000000000142033000000000000000000000000000000000000000000000000000000000014203d0000000000000000000000000000000000000000000000000000000000142034000000000000000000000000000000000000000000000000000000000014203e0000000000000000000000000000000000000000000000000000000000142035000000000000000000000000000000000000000000000000000000000014203f00000000000000000000000000000000000000000000000000000000001420360000000000000000000000000000000000000000000000000000000000142040000000000000000000000000000000000000000000000000000000000014203700000000000000000000000000000000000000000000000000000000001420410000000000000000000000000000000000000000000000000000000000142038000000000000000000000000000000000000000000000000000000000014204200000000000000000000000000000000000000000000000000000000001420390000000000000000000000000000000000000000000000000000000000142043000000000000000000000000000000000000000000000000000000000014203a0000000000000000000000000000000000000000000000000000000000142044000000000000000000000000000000000000000000000000000000000014203b0000000000000000000000000000000000000000000000000000000000142045000000000000000000000000000000000000000000000000000000000014203c0000000000000000000000000000000000000000000000000000000000142046000000000000000000000000000000000000000000000000000000000014203d0000000000000000000000000000000000000000000000000000000000142047000000000000000000000000000000000000000000000000000000000014203e0000000000000000000000000000000000000000000000000000000000142048000000000000000000000000000000000000000000000000000000000014203f0000000000000000000000000000000000000000000000000000000000142049200000000000000000000000000000000000000000000000000000000000141700000000000000000000000000000000000000000000000000000000000014170100000000000000000000000000000000000000000000000000000000001417020000000000000000000000000000000000000000000000000000000000141703000000000000000000000000000000000000000000000000000000000014170400000000000000000000000000000000000000000000000000000000001417050000000000000000000000000000000000000000000000000000000000141706000000000000000000000000000000000000000000000000000000000014170700000000000000000000000000000000000000000000000000000000001417080000000000000000000000000000000000000000000000000000000000141709000000000000000000000000000000000000000000000000000000000014170a000000000000000000000000000000000000000000000000000000000014170b000000000000000000000000000000000000000000000000000000000014170c000000000000000000000000000000000000000000000000000000000014170d000000000000000000000000000000000000000000000000000000000014170e000000000000000000000000000000000000000000000000000000000014170f00000000000000000000000000000000000000000000000000000000001417100000000000000000000000000000000000000000000000000000000000141711000000000000000000000000000000000000000000000000000000000014170100000000000000000000000000000000000000000000000000000000001417020000000000000000000000000000000000000000000000000000000000141703000000000000000000000000000000000000000000000000000000000014170400000000000000000000000000000000000000000000000000000000001417050000000000000000000000000000000000000000000000000000000000141706000000000000000000000000000000000000000000000000000000000014170700000000000000000000000000000000000000000000000000000000001417080000000000000000000000000000000000000000000000000000000000141709000000000000000000000000000000000000000000000000000000000014170a000000000000000000000000000000000000000000000000000000000014170b000000000000000000000000000000000000000000000000000000000014170c000000000000000000000000000000000000000000000000000000000014170d000000000000000000000000000000000000000000000000000000000014170e000000000000000000000000000000000000000000000000000000000014170f00000000000000000000000000000000000000000000000000000000001417100000000000000000000000000000000000000000000000000000000000141711000000000000000000000000000000000000000000000000000000000014171200000000000000000000000000000000000000000000000000000000001417020000000000000000000000000000000000000000000000000000000000141703000000000000000000000000000000000000000000000000000000000014170400000000000000000000000000000000000000000000000000000000001417050000000000000000000000000000000000000000000000000000000000141706000000000000000000000000000000000000000000000000000000000014170700000000000000000000000000000000000000000000000000000000001417080000000000000000000000000000000000000000000000000000000000141709000000000000000000000000000000000000000000000000000000000014170a000000000000000000000000000000000000000000000000000000000014170b000000000000000000000000000000000000000000000000000000000014170c000000000000000000000000000000000000000000000000000000000014170d000000000000000000000000000000000000000000000000000000000014170e000000000000000000000000000000000000000000000000000000000014170f00000000000000000000000000000000000000000000000000000000001417100000000000000000000000000000000000000000000000000000000000141711000000000000000000000000000000000000000000000000000000000014171200000000000000000000000000000000000000000000000000000000001417130000000000000000000000000000000000000000000000000000000000141703000000000000000000000000000000000000000000000000000000000014170400000000000000000000000000000000000000000000000000000000001417050000000000000000000000000000000000000000000000000000000000141706000000000000000000000000000000000000000000000000000000000014170700000000000000000000000000000000000000000000000000000000001417080000000000000000000000000000000000000000000000000000000000141709000000000000000000000000000000000000000000000000000000000014170a000000000000000000000000000000000000000000000000000000000014170b000000000000000000000000000000000000000000000000000000000014170c000000000000000000000000000000000000000000000000000000000014170d000000000000000000000000000000000000000000000000000000000014170e000000000000000000000000000000000000000000000000000000000014170f00000000000000000000000000000000000000000000000000000000001417100000000000000000000000000000000000000000000000000000000000141711000000000000000000000000000000000000000000000000000000000014171200000000000000000000000000000000000000000000000000000000001417130000000000000000000000000000000000000000000000000000000000141714000000000000000000000000000000000000000000000000000000000014170400000000000000000000000000000000000000000000000000000000001417050000000000000000000000000000000000000000000000000000000000141706000000000000000000000000000000000000000000000000000000000014170700000000000000000000000000000000000000000000000000000000001417080000000000000000000000000000000000000000000000000000000000141709000000000000000000000000000000000000000000000000000000000014170a000000000000000000000000000000000000000000000000000000000014170b000000000000000000000000000000000000000000000000000000000014170c000000000000000000000000000000000000000000000000000000000014170d000000000000000000000000000000000000000000000000000000000014170e000000000000000000000000000000000000000000000000000000000014170f00000000000000000000000000000000000000000000000000000000001417100000000000000000000000000000000000000000000000000000000000141711000000000000000000000000000000000000000000000000000000000014171200000000000000000000000000000000000000000000000000000000001417130000000000000000000000000000000000000000000000000000000000141714000000000000000000000000000000000000000000000000000000000014171500000000000000000000000000000000000000000000000000000000001417050000000000000000000000000000000000000000000000000000000000141706000000000000000000000000000000000000000000000000000000000014170700000000000000000000000000000000000000000000000000000000001417080000000000000000000000000000000000000000000000000000000000141709000000000000000000000000000000000000000000000000000000000014170a000000000000000000000000000000000000000000000000000000000014170b000000000000000000000000000000000000000000000000000000000014170c000000000000000000000000000000000000000000000000000000000014170d000000000000000000000000000000000000000000000000000000000014170e000000000000000000000000000000000000000000000000000000000014170f00000000000000000000000000000000000000000000000000000000001417100000000000000000000000000000000000000000000000000000000000141711000000000000000000000000000000000000000000000000000000000014171200000000000000000000000000000000000000000000000000000000001417130000000000000000000000000000000000000000000000000000000000141714000000000000000000000000000000000000000000000000000000000014171500000000000000000000000000000000000000000000000000000000001417160000000000000000000000000000000000000000000000000000000000141706000000000000000000000000000000000000000000000000000000000014170700000000000000000000000000000000000000000000000000000000001417080000000000000000000000000000000000000000000000000000000000141709000000000000000000000000000000000000000000000000000000000014170a000000000000000000000000000000000000000000000000000000000014170b000000000000000000000000000000000000000000000000000000000014170c000000000000000000000000000000000000000000000000000000000014170d000000000000000000000000000000000000000000000000000000000014170e000000000000000000000000000000000000000000000000000000000014170f00000000000000000000000000000000000000000000000000000000001417100000000000000000000000000000000000000000000000000000000000141711000000000000000000000000000000000000000000000000000000000014171200000000000000000000000000000000000000000000000000000000001417130000000000000000000000000000000000000000000000000000000000141714000000000000000000000000000000000000000000000000000000000014171500000000000000000000000000000000000000000000000000000000001417160000000000000000000000000000000000000000000000000000000000141717000000000000000000000000000000000000000000000000000000000014170700000000000000000000000000000000000000000000000000000000001417080000000000000000000000000000000000000000000000000000000000141709000000000000000000000000000000000000000000000000000000000014170a000000000000000000000000000000000000000000000000000000000014170b000000000000000000000000000000000000000000000000000000000014170c000000000000000000000000000000000000000000000000000000000014170d000000000000000000000000000000000000000000000000000000000014170e000000000000000000000000000000000000000000000000000000000014170f00000000000000000000000000000000000000000000000000000000001417100000000000000000000000000000000000000000000000000000000000141711000000000000000000000000000000000000000000000000000000000014171200000000000000000000000000000000000000000000000000000000001417130000000000000000000000000000000000000000000000000000000000141714000000000000000000000000000000000000000000000000000000000014171500000000000000000000000000000000000000000000000000000000001417160000000000000000000000000000000000000000000000000000000000141717000000000000000000000000000000000000000000000000000000000014171800000000000000000000000000000000000000000000000000000000001417080000000000000000000000000000000000000000000000000000000000141709000000000000000000000000000000000000000000000000000000000014170a000000000000000000000000000000000000000000000000000000000014170b000000000000000000000000000000000000000000000000000000000014170c000000000000000000000000000000000000000000000000000000000014170d000000000000000000000000000000000000000000000000000000000014170e000000000000000000000000000000000000000000000000000000000014170f00000000000000000000000000000000000000000000000000000000001417100000000000000000000000000000000000000000000000000000000000141711000000000000000000000000000000000000000000000000000000000014171200000000000000000000000000000000000000000000000000000000001417130000000000000000000000000000000000000000000000000000000000141714000000000000000000000000000000000000000000000000000000000014171500000000000000000000000000000000000000000000000000000000001417160000000000000000000000000000000000000000000000000000000000141717000000000000000000000000000000000000000000000000000000000014171800000000000000000000000000000000000000000000000000000000001417190000000000000000000000000000000000000000000000000000000000141709000000000000000000000000000000000000000000000000000000000014170a000000000000000000000000000000000000000000000000000000000014170b000000000000000000000000000000000000000000000000000000000014170c000000000000000000000000000000000000000000000000000000000014170d000000000000000000000000000000000000000000000000000000000014170e000000000000000000000000000000000000000000000000000000000014170f0000000000000000000000000000000000000000000000000000000000141710000000000000000000000000000000000000000000000000000000000014171100000000000000000000000000000000000000000000000000000000001417120000000000000000000000000000000000000000000000000000000000141713000000000000000000000000000000000000000000000000000000000014171400000000000000000000000000000000000000000000000000000000001417150000000000000000000000000000000000000000000000000000000000141716000000000000000000000000000000000000000000000000000000000014171700000000000000000000000000000000000000000000000000000000001417180000000000000000000000000000000000000000000000000000000000141719000000000000000000000000000000000000000000000000000000000014171a000000000000000000000000000000000000000000000000000000000014170a000000000000000000000000000000000000000000000000000000000014170b000000000000000000000000000000000000000000000000000000000014170c000000000000000000000000000000000000000000000000000000000014170d000000000000000000000000000000000000000000000000000000000014170e000000000000000000000000000000000000000000000000000000000014170f0000000000000000000000000000000000000000000000000000000000141710000000000000000000000000000000000000000000000000000000000014171100000000000000000000000000000000000000000000000000000000001417120000000000000000000000000000000000000000000000000000000000141713000000000000000000000000000000000000000000000000000000000014171400000000000000000000000000000000000000000000000000000000001417150000000000000000000000000000000000000000000000000000000000141716000000000000000000000000000000000000000000000000000000000014171700000000000000000000000000000000000000000000000000000000001417180000000000000000000000000000000000000000000000000000000000141719000000000000000000000000000000000000000000000000000000000014171a000000000000000000000000000000000000000000000000000000000014171b000000000000000000000000000000000000000000000000000000000014170b000000000000000000000000000000000000000000000000000000000014170c000000000000000000000000000000000000000000000000000000000014170d000000000000000000000000000000000000000000000000000000000014170e000000000000000000000000000000000000000000000000000000000014170f0000000000000000000000000000000000000000000000000000000000141710000000000000000000000000000000000000000000000000000000000014171100000000000000000000000000000000000000000000000000000000001417120000000000000000000000000000000000000000000000000000000000141713000000000000000000000000000000000000000000000000000000000014171400000000000000000000000000000000000000000000000000000000001417150000000000000000000000000000000000000000000000000000000000141716000000000000000000000000000000000000000000000000000000000014171700000000000000000000000000000000000000000000000000000000001417180000000000000000000000000000000000000000000000000000000000141719000000000000000000000000000000000000000000000000000000000014171a000000000000000000000000000000000000000000000000000000000014171b000000000000000000000000000000000000000000000000000000000014171c000000000000000000000000000000000000000000000000000000000014170c000000000000000000000000000000000000000000000000000000000014170d000000000000000000000000000000000000000000000000000000000014170e000000000000000000000000000000000000000000000000000000000014170f0000000000000000000000000000000000000000000000000000000000141710000000000000000000000000000000000000000000000000000000000014171100000000000000000000000000000000000000000000000000000000001417120000000000000000000000000000000000000000000000000000000000141713000000000000000000000000000000000000000000000000000000000014171400000000000000000000000000000000000000000000000000000000001417150000000000000000000000000000000000000000000000000000000000141716000000000000000000000000000000000000000000000000000000000014171700000000000000000000000000000000000000000000000000000000001417180000000000000000000000000000000000000000000000000000000000141719000000000000000000000000000000000000000000000000000000000014171a000000000000000000000000000000000000000000000000000000000014171b000000000000000000000000000000000000000000000000000000000014171c000000000000000000000000000000000000000000000000000000000014171d000000000000000000000000000000000000000000000000000000000014170d000000000000000000000000000000000000000000000000000000000014170e000000000000000000000000000000000000000000000000000000000014170f0000000000000000000000000000000000000000000000000000000000141710000000000000000000000000000000000000000000000000000000000014171100000000000000000000000000000000000000000000000000000000001417120000000000000000000000000000000000000000000000000000000000141713000000000000000000000000000000000000000000000000000000000014171400000000000000000000000000000000000000000000000000000000001417150000000000000000000000000000000000000000000000000000000000141716000000000000000000000000000000000000000000000000000000000014171700000000000000000000000000000000000000000000000000000000001417180000000000000000000000000000000000000000000000000000000000141719000000000000000000000000000000000000000000000000000000000014171a000000000000000000000000000000000000000000000000000000000014171b000000000000000000000000000000000000000000000000000000000014171c000000000000000000000000000000000000000000000000000000000014171d000000000000000000000000000000000000000000000000000000000014171e000000000000000000000000000000000000000000000000000000000014170e000000000000000000000000000000000000000000000000000000000014170f0000000000000000000000000000000000000000000000000000000000141710000000000000000000000000000000000000000000000000000000000014171100000000000000000000000000000000000000000000000000000000001417120000000000000000000000000000000000000000000000000000000000141713000000000000000000000000000000000000000000000000000000000014171400000000000000000000000000000000000000000000000000000000001417150000000000000000000000000000000000000000000000000000000000141716000000000000000000000000000000000000000000000000000000000014171700000000000000000000000000000000000000000000000000000000001417180000000000000000000000000000000000000000000000000000000000141719000000000000000000000000000000000000000000000000000000000014171a000000000000000000000000000000000000000000000000000000000014171b000000000000000000000000000000000000000000000000000000000014171c000000000000000000000000000000000000000000000000000000000014171d000000000000000000000000000000000000000000000000000000000014171e000000000000000000000000000000000000000000000000000000000014171f000000000000000000000000000000000000000000000000000000000014170f0000000000000000000000000000000000000000000000000000000000141710000000000000000000000000000000000000000000000000000000000014171100000000000000000000000000000000000000000000000000000000001417120000000000000000000000000000000000000000000000000000000000141713000000000000000000000000000000000000000000000000000000000014171400000000000000000000000000000000000000000000000000000000001417150000000000000000000000000000000000000000000000000000000000141716000000000000000000000000000000000000000000000000000000000014171700000000000000000000000000000000000000000000000000000000001417180000000000000000000000000000000000000000000000000000000000141719000000000000000000000000000000000000000000000000000000000014171a000000000000000000000000000000000000000000000000000000000014171b000000000000000000000000000000000000000000000000000000000014171c000000000000000000000000000000000000000000000000000000000014171d000000000000000000000000000000000000000000000000000000000014171e000000000000000000000000000000000000000000000000000000000014171f00000000000000000000000000000000000000000000000000000000001417200000000000000000000000000000000000000000000000000000000000141710000000000000000000000000000000000000000000000000000000000014171100000000000000000000000000000000000000000000000000000000001417120000000000000000000000000000000000000000000000000000000000141713000000000000000000000000000000000000000000000000000000000014171400000000000000000000000000000000000000000000000000000000001417150000000000000000000000000000000000000000000000000000000000141716000000000000000000000000000000000000000000000000000000000014171700000000000000000000000000000000000000000000000000000000001417180000000000000000000000000000000000000000000000000000000000141719000000000000000000000000000000000000000000000000000000000014171a000000000000000000000000000000000000000000000000000000000014171b000000000000000000000000000000000000000000000000000000000014171c000000000000000000000000000000000000000000000000000000000014171d000000000000000000000000000000000000000000000000000000000014171e000000000000000000000000000000000000000000000000000000000014171f00000000000000000000000000000000000000000000000000000000001417200000000000000000000000000000000000000000000000000000000000141721000000000000000000000000000000000000000000000000000000000014171100000000000000000000000000000000000000000000000000000000001417120000000000000000000000000000000000000000000000000000000000141713000000000000000000000000000000000000000000000000000000000014171400000000000000000000000000000000000000000000000000000000001417150000000000000000000000000000000000000000000000000000000000141716000000000000000000000000000000000000000000000000000000000014171700000000000000000000000000000000000000000000000000000000001417180000000000000000000000000000000000000000000000000000000000141719000000000000000000000000000000000000000000000000000000000014171a000000000000000000000000000000000000000000000000000000000014171b000000000000000000000000000000000000000000000000000000000014171c000000000000000000000000000000000000000000000000000000000014171d000000000000000000000000000000000000000000000000000000000014171e000000000000000000000000000000000000000000000000000000000014171f00000000000000000000000000000000000000000000000000000000001417200000000000000000000000000000000000000000000000000000000000141721000000000000000000000000000000000000000000000000000000000014172200000000000000000000000000000000000000000000000000000000001417120000000000000000000000000000000000000000000000000000000000141713000000000000000000000000000000000000000000000000000000000014171400000000000000000000000000000000000000000000000000000000001417150000000000000000000000000000000000000000000000000000000000141716000000000000000000000000000000000000000000000000000000000014171700000000000000000000000000000000000000000000000000000000001417180000000000000000000000000000000000000000000000000000000000141719000000000000000000000000000000000000000000000000000000000014171a000000000000000000000000000000000000000000000000000000000014171b000000000000000000000000000000000000000000000000000000000014171c000000000000000000000000000000000000000000000000000000000014171d000000000000000000000000000000000000000000000000000000000014171e000000000000000000000000000000000000000000000000000000000014171f00000000000000000000000000000000000000000000000000000000001417200000000000000000000000000000000000000000000000000000000000141721000000000000000000000000000000000000000000000000000000000014172200000000000000000000000000000000000000000000000000000000001417230000000000000000000000000000000000000000000000000000000000141713000000000000000000000000000000000000000000000000000000000014171400000000000000000000000000000000000000000000000000000000001417150000000000000000000000000000000000000000000000000000000000141716000000000000000000000000000000000000000000000000000000000014171700000000000000000000000000000000000000000000000000000000001417180000000000000000000000000000000000000000000000000000000000141719000000000000000000000000000000000000000000000000000000000014171a000000000000000000000000000000000000000000000000000000000014171b000000000000000000000000000000000000000000000000000000000014171c000000000000000000000000000000000000000000000000000000000014171d000000000000000000000000000000000000000000000000000000000014171e000000000000000000000000000000000000000000000000000000000014171f00000000000000000000000000000000000000000000000000000000001417200000000000000000000000000000000000000000000000000000000000141721000000000000000000000000000000000000000000000000000000000014172200000000000000000000000000000000000000000000000000000000001417230000000000000000000000000000000000000000000000000000000000141724000000000000000000000000000000000000000000000000000000000014171400000000000000000000000000000000000000000000000000000000001417150000000000000000000000000000000000000000000000000000000000141716000000000000000000000000000000000000000000000000000000000014171700000000000000000000000000000000000000000000000000000000001417180000000000000000000000000000000000000000000000000000000000141719000000000000000000000000000000000000000000000000000000000014171a000000000000000000000000000000000000000000000000000000000014171b000000000000000000000000000000000000000000000000000000000014171c000000000000000000000000000000000000000000000000000000000014171d000000000000000000000000000000000000000000000000000000000014171e000000000000000000000000000000000000000000000000000000000014171f00000000000000000000000000000000000000000000000000000000001417200000000000000000000000000000000000000000000000000000000000141721000000000000000000000000000000000000000000000000000000000014172200000000000000000000000000000000000000000000000000000000001417230000000000000000000000000000000000000000000000000000000000141724000000000000000000000000000000000000000000000000000000000014172500000000000000000000000000000000000000000000000000000000001417150000000000000000000000000000000000000000000000000000000000141716000000000000000000000000000000000000000000000000000000000014171700000000000000000000000000000000000000000000000000000000001417180000000000000000000000000000000000000000000000000000000000141719000000000000000000000000000000000000000000000000000000000014171a000000000000000000000000000000000000000000000000000000000014171b000000000000000000000000000000000000000000000000000000000014171c000000000000000000000000000000000000000000000000000000000014171d000000000000000000000000000000000000000000000000000000000014171e000000000000000000000000000000000000000000000000000000000014171f00000000000000000000000000000000000000000000000000000000001417200000000000000000000000000000000000000000000000000000000000141721000000000000000000000000000000000000000000000000000000000014172200000000000000000000000000000000000000000000000000000000001417230000000000000000000000000000000000000000000000000000000000141724000000000000000000000000000000000000000000000000000000000014172500000000000000000000000000000000000000000000000000000000001417260000000000000000000000000000000000000000000000000000000000141716000000000000000000000000000000000000000000000000000000000014171700000000000000000000000000000000000000000000000000000000001417180000000000000000000000000000000000000000000000000000000000141719000000000000000000000000000000000000000000000000000000000014171a000000000000000000000000000000000000000000000000000000000014171b000000000000000000000000000000000000000000000000000000000014171c000000000000000000000000000000000000000000000000000000000014171d000000000000000000000000000000000000000000000000000000000014171e000000000000000000000000000000000000000000000000000000000014171f00000000000000000000000000000000000000000000000000000000001417200000000000000000000000000000000000000000000000000000000000141721000000000000000000000000000000000000000000000000000000000014172200000000000000000000000000000000000000000000000000000000001417230000000000000000000000000000000000000000000000000000000000141724000000000000000000000000000000000000000000000000000000000014172500000000000000000000000000000000000000000000000000000000001417260000000000000000000000000000000000000000000000000000000000141727000000000000000000000000000000000000000000000000000000000014171700000000000000000000000000000000000000000000000000000000001417180000000000000000000000000000000000000000000000000000000000141719000000000000000000000000000000000000000000000000000000000014171a000000000000000000000000000000000000000000000000000000000014171b000000000000000000000000000000000000000000000000000000000014171c000000000000000000000000000000000000000000000000000000000014171d000000000000000000000000000000000000000000000000000000000014171e000000000000000000000000000000000000000000000000000000000014171f00000000000000000000000000000000000000000000000000000000001417200000000000000000000000000000000000000000000000000000000000141721000000000000000000000000000000000000000000000000000000000014172200000000000000000000000000000000000000000000000000000000001417230000000000000000000000000000000000000000000000000000000000141724000000000000000000000000000000000000000000000000000000000014172500000000000000000000000000000000000000000000000000000000001417260000000000000000000000000000000000000000000000000000000000141727000000000000000000000000000000000000000000000000000000000014172800000000000000000000000000000000000000000000000000000000001417180000000000000000000000000000000000000000000000000000000000141719000000000000000000000000000000000000000000000000000000000014171a000000000000000000000000000000000000000000000000000000000014171b000000000000000000000000000000000000000000000000000000000014171c000000000000000000000000000000000000000000000000000000000014171d000000000000000000000000000000000000000000000000000000000014171e000000000000000000000000000000000000000000000000000000000014171f00000000000000000000000000000000000000000000000000000000001417200000000000000000000000000000000000000000000000000000000000141721000000000000000000000000000000000000000000000000000000000014172200000000000000000000000000000000000000000000000000000000001417230000000000000000000000000000000000000000000000000000000000141724000000000000000000000000000000000000000000000000000000000014172500000000000000000000000000000000000000000000000000000000001417260000000000000000000000000000000000000000000000000000000000141727000000000000000000000000000000000000000000000000000000000014172800000000000000000000000000000000000000000000000000000000001417290000000000000000000000000000000000000000000000000000000000141719000000000000000000000000000000000000000000000000000000000014171a000000000000000000000000000000000000000000000000000000000014171b000000000000000000000000000000000000000000000000000000000014171c000000000000000000000000000000000000000000000000000000000014171d000000000000000000000000000000000000000000000000000000000014171e000000000000000000000000000000000000000000000000000000000014171f0000000000000000000000000000000000000000000000000000000000141720000000000000000000000000000000000000000000000000000000000014172100000000000000000000000000000000000000000000000000000000001417220000000000000000000000000000000000000000000000000000000000141723000000000000000000000000000000000000000000000000000000000014172400000000000000000000000000000000000000000000000000000000001417250000000000000000000000000000000000000000000000000000000000141726000000000000000000000000000000000000000000000000000000000014172700000000000000000000000000000000000000000000000000000000001417280000000000000000000000000000000000000000000000000000000000141729000000000000000000000000000000000000000000000000000000000014172a000000000000000000000000000000000000000000000000000000000014171a000000000000000000000000000000000000000000000000000000000014171b000000000000000000000000000000000000000000000000000000000014171c000000000000000000000000000000000000000000000000000000000014171d000000000000000000000000000000000000000000000000000000000014171e000000000000000000000000000000000000000000000000000000000014171f0000000000000000000000000000000000000000000000000000000000141720000000000000000000000000000000000000000000000000000000000014172100000000000000000000000000000000000000000000000000000000001417220000000000000000000000000000000000000000000000000000000000141723000000000000000000000000000000000000000000000000000000000014172400000000000000000000000000000000000000000000000000000000001417250000000000000000000000000000000000000000000000000000000000141726000000000000000000000000000000000000000000000000000000000014172700000000000000000000000000000000000000000000000000000000001417280000000000000000000000000000000000000000000000000000000000141729000000000000000000000000000000000000000000000000000000000014172a000000000000000000000000000000000000000000000000000000000014172b000000000000000000000000000000000000000000000000000000000014171b000000000000000000000000000000000000000000000000000000000014171c000000000000000000000000000000000000000000000000000000000014171d000000000000000000000000000000000000000000000000000000000014171e000000000000000000000000000000000000000000000000000000000014171f0000000000000000000000000000000000000000000000000000000000141720000000000000000000000000000000000000000000000000000000000014172100000000000000000000000000000000000000000000000000000000001417220000000000000000000000000000000000000000000000000000000000141723000000000000000000000000000000000000000000000000000000000014172400000000000000000000000000000000000000000000000000000000001417250000000000000000000000000000000000000000000000000000000000141726000000000000000000000000000000000000000000000000000000000014172700000000000000000000000000000000000000000000000000000000001417280000000000000000000000000000000000000000000000000000000000141729000000000000000000000000000000000000000000000000000000000014172a000000000000000000000000000000000000000000000000000000000014172b000000000000000000000000000000000000000000000000000000000014172c000000000000000000000000000000000000000000000000000000000014171c000000000000000000000000000000000000000000000000000000000014171d000000000000000000000000000000000000000000000000000000000014171e000000000000000000000000000000000000000000000000000000000014171f0000000000000000000000000000000000000000000000000000000000141720000000000000000000000000000000000000000000000000000000000014172100000000000000000000000000000000000000000000000000000000001417220000000000000000000000000000000000000000000000000000000000141723000000000000000000000000000000000000000000000000000000000014172400000000000000000000000000000000000000000000000000000000001417250000000000000000000000000000000000000000000000000000000000141726000000000000000000000000000000000000000000000000000000000014172700000000000000000000000000000000000000000000000000000000001417280000000000000000000000000000000000000000000000000000000000141729000000000000000000000000000000000000000000000000000000000014172a000000000000000000000000000000000000000000000000000000000014172b000000000000000000000000000000000000000000000000000000000014172c000000000000000000000000000000000000000000000000000000000014172d000000000000000000000000000000000000000000000000000000000014171d000000000000000000000000000000000000000000000000000000000014171e000000000000000000000000000000000000000000000000000000000014171f0000000000000000000000000000000000000000000000000000000000141720000000000000000000000000000000000000000000000000000000000014172100000000000000000000000000000000000000000000000000000000001417220000000000000000000000000000000000000000000000000000000000141723000000000000000000000000000000000000000000000000000000000014172400000000000000000000000000000000000000000000000000000000001417250000000000000000000000000000000000000000000000000000000000141726000000000000000000000000000000000000000000000000000000000014172700000000000000000000000000000000000000000000000000000000001417280000000000000000000000000000000000000000000000000000000000141729000000000000000000000000000000000000000000000000000000000014172a000000000000000000000000000000000000000000000000000000000014172b000000000000000000000000000000000000000000000000000000000014172c000000000000000000000000000000000000000000000000000000000014172d000000000000000000000000000000000000000000000000000000000014172e000000000000000000000000000000000000000000000000000000000014171e000000000000000000000000000000000000000000000000000000000014171f0000000000000000000000000000000000000000000000000000000000141720000000000000000000000000000000000000000000000000000000000014172100000000000000000000000000000000000000000000000000000000001417220000000000000000000000000000000000000000000000000000000000141723000000000000000000000000000000000000000000000000000000000014172400000000000000000000000000000000000000000000000000000000001417250000000000000000000000000000000000000000000000000000000000141726000000000000000000000000000000000000000000000000000000000014172700000000000000000000000000000000000000000000000000000000001417280000000000000000000000000000000000000000000000000000000000141729000000000000000000000000000000000000000000000000000000000014172a000000000000000000000000000000000000000000000000000000000014172b000000000000000000000000000000000000000000000000000000000014172c000000000000000000000000000000000000000000000000000000000014172d000000000000000000000000000000000000000000000000000000000014172e000000000000000000000000000000000000000000000000000000000014172f000000000000000000000000000000000000000000000000000000000014171f0000000000000000000000000000000000000000000000000000000000141720000000000000000000000000000000000000000000000000000000000014172100000000000000000000000000000000000000000000000000000000001417220000000000000000000000000000000000000000000000000000000000141723000000000000000000000000000000000000000000000000000000000014172400000000000000000000000000000000000000000000000000000000001417250000000000000000000000000000000000000000000000000000000000141726000000000000000000000000000000000000000000000000000000000014172700000000000000000000000000000000000000000000000000000000001417280000000000000000000000000000000000000000000000000000000000141729000000000000000000000000000000000000000000000000000000000014172a000000000000000000000000000000000000000000000000000000000014172b000000000000000000000000000000000000000000000000000000000014172c000000000000000000000000000000000000000000000000000000000014172d000000000000000000000000000000000000000000000000000000000014172e000000000000000000000000000000000000000000000000000000000014172f00000000000000000000000000000000000000000000000000000000001417300000", "decodedHeader": { "contentCommitment": { - "blobsHash": "0x004639cd8944ff2ac8d037b38b23cb5e5cff4d83ec1cd3c672029fea5f76446c", + "blobsHash": "0x009233fdfe2f50d7176a1a9e22c7bba211a92369eb904d3154e7e66a047dcfbf", "inHash": "0x00e1371045bd7d2c3e1f19cba5f536f0e82042ba4bc257d4ba19c146215e8242", "outHash": "0x001b1d8b076a65df0f4a11ad667192987442f031c34f639c843dfec49c425602", "numTxs": 1 }, "globalVariables": { "blockNumber": 2, - "slotNumber": "0x0000000000000000000000000000000000000000000000000000000000000024", + "slotNumber": "0x0000000000000000000000000000000000000000000000000000000000000022", "chainId": 31337, - "timestamp": 1736364256, + "timestamp": 1742998897, "version": 1, - "coinbase": "0x17329afd428cfac91863962ac3c61b37d71d10a6", - "feeRecipient": "0x19a7636e17e068437e6f2b5662c09d13d40416a6e2db7bb951f0d6c21f2bb13b", + "coinbase": "0x509ad28f57e7c48f407ba8817e09f8c5a35cd99e", + "feeRecipient": "0x2a8b4b30849ccc6eff72262562dbb6fcd77104acce75f162fdfb30b6d4997580", "gasFees": { "feePerDaGas": 0, - "feePerL2Gas": 54153579570 + "feePerL2Gas": 1230 } }, "totalFees": "0x0000000000000000000000000000000000000000000000000000000000000000", "totalManaUsed": "0x0000000000000000000000000000000000000000000000000000000000000000", "lastArchive": { "nextAvailableLeafIndex": 2, - "root": "0x018b2a76a24f5703f68fd1fb585b12d48e48c7c85857a338a3826941a74b2fa6" + "root": "0x0597ee46e1331f63212f835b2d78b119be4d71b850172cec33fe279168a96a78" }, "stateReference": { "l1ToL2MessageTree": { @@ -84,9 +83,9 @@ } } }, - "header": "0x018b2a76a24f5703f68fd1fb585b12d48e48c7c85857a338a3826941a74b2fa6000000020000000000000000000000000000000000000000000000000000000000000001004639cd8944ff2ac8d037b38b23cb5e5cff4d83ec1cd3c672029fea5f76446c00e1371045bd7d2c3e1f19cba5f536f0e82042ba4bc257d4ba19c146215e8242001b1d8b076a65df0f4a11ad667192987442f031c34f639c843dfec49c425602026efb6c2a517de2448119d0f1255757265dbec7cdd2952df929ede666e109440000002001aec0a148df6b4001468783cf50a3c6c99904144835d44408a7af869c46b2330000008001ee8f0bd3649ecd235fb31eb3b63c1a2f8d61c7f9bd3af681e39046ab0ddca00000010013db3951032fbb6a9ae4aa3195954e4d4137410373576365fdc8dff93d3595b0000001000000000000000000000000000000000000000000000000000000000000007a6900000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000002400000000000000000000000000000000000000000000000000000000677ed0e017329afd428cfac91863962ac3c61b37d71d10a619a7636e17e068437e6f2b5662c09d13d40416a6e2db7bb951f0d6c21f2bb13b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000c9bce0c3200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", - "publicInputsHash": "0x000d099a35a0e2d7b789966b3f5d8f66a847a8098926356034e82f8360ac0ed9", - "blobInputs": "0x01011a89a63a3a8ea3060030726a00f9f35f4435f97188f18b620d2a52710fbd1b249b21786b102d4bd6385bb4afdfa530de2169cb9133924bafae8b38b2e0f66e47e614828c3d6a0e408e7438f5a18c74b94d8c0adbe3c98f95886f56059046cd915a87aaf870af7edf160ca857527416bdd182c9c9bd30779d4b9fe95fae9458ee16cb7cb34f12ed674de990dd7988c8922e1f32b809c005140444f875b0555ad12064e4db9124ee405b8dd3a3f08538e24df6c3cb8152b9f434f401d78c47e4", + "header": "0x0597ee46e1331f63212f835b2d78b119be4d71b850172cec33fe279168a96a78000000020000000000000000000000000000000000000000000000000000000000000001009233fdfe2f50d7176a1a9e22c7bba211a92369eb904d3154e7e66a047dcfbf00e1371045bd7d2c3e1f19cba5f536f0e82042ba4bc257d4ba19c146215e8242001b1d8b076a65df0f4a11ad667192987442f031c34f639c843dfec49c425602026efb6c2a517de2448119d0f1255757265dbec7cdd2952df929ede666e109440000002001aec0a148df6b4001468783cf50a3c6c99904144835d44408a7af869c46b2330000008001ee8f0bd3649ecd235fb31eb3b63c1a2f8d61c7f9bd3af681e39046ab0ddca00000010013db3951032fbb6a9ae4aa3195954e4d4137410373576365fdc8dff93d3595b0000001000000000000000000000000000000000000000000000000000000000000007a690000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000220000000000000000000000000000000000000000000000000000000067e40d71509ad28f57e7c48f407ba8817e09f8c5a35cd99e2a8b4b30849ccc6eff72262562dbb6fcd77104acce75f162fdfb30b6d4997580000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004ce00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "publicInputsHash": "0x001287a3e5c1dd74c00cd1f259b18bd0225464a62ecc032af6037e1b9fbb44fc", + "blobInputs": "0x0101852dcd453197df573bbb7bb74389a65531e51fe3817ad4686be68f610406a617806603c07f7ae6aeab3b6d5bae90768ce8b5630efdebfbcc817b19d885647562785179e873bf2c74774604783bdb4f90f43c25a5e32efb54bd51b5523882d5991573f5a6b6efd195da4f1e8420d759dd3bffd3025095ae5db88f71fba5d4a4ac1dedac6da3b2a8dff6d4c8c2312b738f3ff79ea6ce6602fca4220f9dfa05d124b96e771917e2096376ab8c5f0f79ded34c73e2b3d49ae838ce5f4d3526dbfa", "numTxs": 1 } } \ No newline at end of file diff --git a/l1-contracts/test/harnesses/TestConstants.sol b/l1-contracts/test/harnesses/TestConstants.sol index 432395225cfc..77c2297e25fc 100644 --- a/l1-contracts/test/harnesses/TestConstants.sol +++ b/l1-contracts/test/harnesses/TestConstants.sol @@ -20,7 +20,6 @@ library TestConstants { // Genesis state bytes32 internal constant GENESIS_ARCHIVE_ROOT = bytes32(Constants.GENESIS_ARCHIVE_ROOT); - bytes32 internal constant GENESIS_BLOCK_HASH = bytes32(Constants.GENESIS_BLOCK_HASH); bytes32 internal constant GENESIS_VK_TREE_ROOT = bytes32(0); bytes32 internal constant GENESIS_PROTOCOL_CONTRACT_TREE_ROOT = bytes32(0); @@ -28,8 +27,7 @@ library TestConstants { return GenesisState({ vkTreeRoot: GENESIS_VK_TREE_ROOT, protocolContractTreeRoot: GENESIS_PROTOCOL_CONTRACT_TREE_ROOT, - genesisArchiveRoot: GENESIS_ARCHIVE_ROOT, - genesisBlockHash: GENESIS_BLOCK_HASH + genesisArchiveRoot: GENESIS_ARCHIVE_ROOT }); } diff --git a/l1-contracts/test/validator-selection/ValidatorSelection.t.sol b/l1-contracts/test/validator-selection/ValidatorSelection.t.sol index 9f2e8dc2fb49..c1946276c041 100644 --- a/l1-contracts/test/validator-selection/ValidatorSelection.t.sol +++ b/l1-contracts/test/validator-selection/ValidatorSelection.t.sol @@ -255,7 +255,6 @@ contract ValidatorSelectionTest is DecoderBase { ProposeArgs memory args = ProposeArgs({ header: header, archive: full.block.archive, - blockHash: bytes32(0), oracleInput: OracleInput(0), txHashes: txHashes }); diff --git a/noir-projects/noir-protocol-circuits/crates/rollup-lib/src/abis/block_root_or_block_merge_public_inputs.nr b/noir-projects/noir-protocol-circuits/crates/rollup-lib/src/abis/block_root_or_block_merge_public_inputs.nr index 84dfcf518700..637fb5c801ad 100644 --- a/noir-projects/noir-protocol-circuits/crates/rollup-lib/src/abis/block_root_or_block_merge_public_inputs.nr +++ b/noir-projects/noir-protocol-circuits/crates/rollup-lib/src/abis/block_root_or_block_merge_public_inputs.nr @@ -45,8 +45,6 @@ impl Eq for FeeRecipient { pub struct BlockRootOrBlockMergePublicInputs { pub previous_archive: AppendOnlyTreeSnapshot, // Archive tree root immediately before this block range pub new_archive: AppendOnlyTreeSnapshot, // Archive tree root after adding this block range - pub previous_block_hash: Field, // Identifier of the previous block before the range - pub end_block_hash: Field, // Identifier of the last block in the range pub start_global_variables: GlobalVariables, // Global variables for the first block in the range pub end_global_variables: GlobalVariables, // Global variables for the last block in the range pub out_hash: Field, // Merkle node of the L2-to-L1 messages merkle roots in the block range @@ -68,8 +66,6 @@ impl Empty for BlockRootOrBlockMergePublicInputs { BlockRootOrBlockMergePublicInputs { previous_archive: AppendOnlyTreeSnapshot::zero(), new_archive: AppendOnlyTreeSnapshot::zero(), - previous_block_hash: 0, - end_block_hash: 0, start_global_variables: GlobalVariables::empty(), end_global_variables: GlobalVariables::empty(), out_hash: 0, @@ -86,8 +82,6 @@ impl Eq for BlockRootOrBlockMergePublicInputs { fn eq(self, other: Self) -> bool { (self.previous_archive.eq(other.previous_archive)) & (self.new_archive.eq(other.new_archive)) - & (self.previous_block_hash == other.previous_block_hash) - & (self.end_block_hash == other.end_block_hash) & (self.start_global_variables.eq(other.start_global_variables)) & (self.end_global_variables.eq(other.end_global_variables)) & (self.out_hash == other.out_hash) @@ -106,8 +100,6 @@ impl Serialize for BlockRootOrBl fields.extend_from_array(self.previous_archive.serialize()); fields.extend_from_array(self.new_archive.serialize()); - fields.push(self.previous_block_hash as Field); - fields.push(self.end_block_hash as Field); fields.extend_from_array(self.start_global_variables.serialize()); fields.extend_from_array(self.end_global_variables.serialize()); fields.push(self.out_hash as Field); @@ -134,8 +126,6 @@ impl Deserialize for BlockRootOr let item = Self { previous_archive: reader.read_struct(AppendOnlyTreeSnapshot::deserialize), new_archive: reader.read_struct(AppendOnlyTreeSnapshot::deserialize), - previous_block_hash: reader.read(), - end_block_hash: reader.read(), start_global_variables: reader.read_struct(GlobalVariables::deserialize), end_global_variables: reader.read_struct(GlobalVariables::deserialize), out_hash: reader.read(), diff --git a/noir-projects/noir-protocol-circuits/crates/rollup-lib/src/abis/block_root_rollup_data.nr b/noir-projects/noir-protocol-circuits/crates/rollup-lib/src/abis/block_root_rollup_data.nr index af394defdd3b..7f78a28da1fd 100644 --- a/noir-projects/noir-protocol-circuits/crates/rollup-lib/src/abis/block_root_rollup_data.nr +++ b/noir-projects/noir-protocol-circuits/crates/rollup-lib/src/abis/block_root_rollup_data.nr @@ -13,13 +13,14 @@ pub struct BlockRootRollupData { // Hint for inserting the new l1 to l2 message subtree. pub l1_to_l2_message_subtree_sibling_path: [Field; L1_TO_L2_MSG_SUBTREE_SIBLING_PATH_LENGTH], + // Hint for checking the hash of previous_block_header is the last leaf of the previous archive. + pub previous_archive_sibling_path: [Field; ARCHIVE_HEIGHT], + // Hint for inserting the new block hash to the last archive. pub new_archive_sibling_path: [Field; ARCHIVE_HEIGHT], // Previous block header is used to verify the start state of the first tx in a block. - // Its hash will be included in the public inputs. It will be checked: - // - against previous block hash on L1 for the first block in batch. - // - against previous block_root.end_block_hash in a block_merge. + // Its hash is checked against the previous archive. pub previous_block_header: BlockHeader, // TODO(#7346): Temporarily added prover_id while we verify block-root proofs on L1 diff --git a/noir-projects/noir-protocol-circuits/crates/rollup-lib/src/block_merge/block_merge_rollup_inputs.nr b/noir-projects/noir-protocol-circuits/crates/rollup-lib/src/block_merge/block_merge_rollup_inputs.nr index 6ab69aef31db..a0e7d9fe737d 100644 --- a/noir-projects/noir-protocol-circuits/crates/rollup-lib/src/block_merge/block_merge_rollup_inputs.nr +++ b/noir-projects/noir-protocol-circuits/crates/rollup-lib/src/block_merge/block_merge_rollup_inputs.nr @@ -62,8 +62,6 @@ impl BlockMergeRollupInputs { BlockRootOrBlockMergePublicInputs { previous_archive: left.previous_archive, new_archive: right.new_archive, - previous_block_hash: left.previous_block_hash, - end_block_hash: right.end_block_hash, start_global_variables: left.start_global_variables, end_global_variables: right.end_global_variables, out_hash, @@ -110,15 +108,6 @@ mod tests { let _output = inputs.block_merge_rollup_circuit(); } - #[test(should_fail_with = "input block hashes do not follow on from each other")] - fn previous_rollups_dont_follow_block_hash() { - let mut inputs = default_block_merge_rollup_inputs(); - inputs.previous_rollup_data[0].block_root_or_block_merge_public_inputs.end_block_hash = 0; - inputs.previous_rollup_data[1].block_root_or_block_merge_public_inputs.previous_block_hash = - 1; - let _output = inputs.block_merge_rollup_circuit(); - } - #[test(should_fail_with = "input block numbers do not follow on from each other")] fn previous_rollups_dont_follow_block_number() { let mut inputs = default_block_merge_rollup_inputs(); diff --git a/noir-projects/noir-protocol-circuits/crates/rollup-lib/src/block_root/block_root_rollup_inputs.nr b/noir-projects/noir-protocol-circuits/crates/rollup-lib/src/block_root/block_root_rollup_inputs.nr index 915eef2cca05..88b6e9dc018a 100644 --- a/noir-projects/noir-protocol-circuits/crates/rollup-lib/src/block_root/block_root_rollup_inputs.nr +++ b/noir-projects/noir-protocol-circuits/crates/rollup-lib/src/block_root/block_root_rollup_inputs.nr @@ -27,8 +27,7 @@ impl BlockRootRollupInputs { BlockRootRollupInputsValidator::new( self.previous_rollup_data, ALLOWED_PREVIOUS_CIRCUITS, - self.data.l1_to_l2_roots, - self.data.previous_block_header, + self.data, ) .validate(); @@ -193,4 +192,25 @@ pub(crate) mod tests { let _ = builder.execute(); } + + #[test(should_fail_with = "input proofs have different note hash tree snapshots")] + unconstrained fn random_block_header_for_second_tx_fails() { + let mut builder = TestBuilder::new(); + + builder.inputs.previous_rollup_data[1].base_or_merge_rollup_public_inputs.start.note_hash_tree.root += + 1; + + let _ = builder.execute(); + } + + #[test(should_fail_with = "hash of the previous block header is not the last leaf in the archive tree")] + unconstrained fn random_previous_block_header_fails() { + let mut builder = TestBuilder::new(); + + builder.inputs.previous_rollup_data[0].base_or_merge_rollup_public_inputs.start.note_hash_tree.root += + 1; + builder.inputs.previous_block_header.state.partial.note_hash_tree.root += 1; + + let _ = builder.execute(); + } } diff --git a/noir-projects/noir-protocol-circuits/crates/rollup-lib/src/block_root/components/block_root_rollup_inputs_validator.nr b/noir-projects/noir-protocol-circuits/crates/rollup-lib/src/block_root/components/block_root_rollup_inputs_validator.nr index 3af46faa2b52..ff4f4ec0d837 100644 --- a/noir-projects/noir-protocol-circuits/crates/rollup-lib/src/block_root/components/block_root_rollup_inputs_validator.nr +++ b/noir-projects/noir-protocol-circuits/crates/rollup-lib/src/block_root/components/block_root_rollup_inputs_validator.nr @@ -1,37 +1,40 @@ use crate::{ - abis::previous_rollup_data::PreviousRollupData, + abis::{block_root_rollup_data::BlockRootRollupData, previous_rollup_data::PreviousRollupData}, merge::utils::validate_consecutive_rollups::validate_consecutive_rollups, }; -use parity_lib::root::root_rollup_parity_input::RootRollupParityInput; -use types::{abis::sponge_blob::SpongeBlob, block_header::BlockHeader, proof::traits::Verifiable}; +use types::{ + abis::{append_only_tree_snapshot::AppendOnlyTreeSnapshot, sponge_blob::SpongeBlob}, + merkle_tree::membership::check_membership, + proof::traits::Verifiable, + traits::Hash, +}; pub struct BlockRootRollupInputsValidator { previous_rollups: [PreviousRollupData; NUM_ROLLUPS], allowed_vk_indices: [u32; N], - l1_to_l2_roots: RootRollupParityInput, - previous_block_header: BlockHeader, + data: BlockRootRollupData, } impl BlockRootRollupInputsValidator { pub fn new( previous_rollups: [PreviousRollupData; NUM_ROLLUPS], allowed_vk_indices: [u32; N], - l1_to_l2_roots: RootRollupParityInput, - previous_block_header: BlockHeader, + data: BlockRootRollupData, ) -> Self { - BlockRootRollupInputsValidator { - previous_rollups, - allowed_vk_indices, - l1_to_l2_roots, - previous_block_header, - } + BlockRootRollupInputsValidator { previous_rollups, data, allowed_vk_indices } } pub fn validate(self) { + assert(NUM_ROLLUPS != 0); + self.validate_root_parity_proof(); self.validate_rollup_proofs(); self.validate_first_rollup(); + let previous_archive = + self.previous_rollups[0].base_or_merge_rollup_public_inputs.constants.last_archive; + self.validate_previous_block_header(previous_archive); + if NUM_ROLLUPS == 1 { assert_eq( self.previous_rollups[0].base_or_merge_rollup_public_inputs.num_txs, @@ -48,18 +51,23 @@ impl BlockRootRollupInputsValidator BlockRootRollupInputsValidator BlockRootRollupInputsValidator BlockRootOrBlockMergePublicInputs { - let new_block_header = if is_padding { - self.data.previous_block_header + let new_archive = if is_padding { + constants.last_archive } else { - self.create_new_block_header( - constants, - self.data.previous_block_header.state.partial, - empty_effect_blobs_hash, - ) + let new_block_hash = self + .create_new_block_header( + constants, + self.data.previous_block_header.state.partial, + empty_effect_blobs_hash, + ) + .hash(); + self.update_archive(constants.last_archive, new_block_hash) }; let mut block_blob_public_inputs = BlockBlobPublicInputs::empty(); @@ -90,7 +95,7 @@ impl BlockRootRollupOutputComposer { self.finish_with_new_values( constants, - new_block_header, + new_archive, 0 /* out_hash */, block_blob_public_inputs, 0, /* accumulated_fees */ @@ -100,26 +105,11 @@ impl BlockRootRollupOutputComposer { fn finish_with_new_values( self, constants: ConstantRollupData, - new_block_header: BlockHeader, + new_archive: AppendOnlyTreeSnapshot, out_hash: Field, block_blob_public_inputs: BlockBlobPublicInputs, accumulated_fees: Field, ) -> BlockRootOrBlockMergePublicInputs { - let previous_block_hash = self.data.previous_block_header.hash(); - let end_block_hash = new_block_header.hash(); - - let previous_archive = constants.last_archive; - let new_archive = if end_block_hash == previous_block_hash { - // If the block hash hasn't changed, the archive remains the same. - // This scenario only applies to padding blocks. - // For non-padding blocks, create_new_block_header will be called. And the next_available_leaf_index of the - // l1_to_l2_message_tree will be incremented when a new block header is created. So the block hash will - // always be different. - previous_archive - } else { - self.update_archive(constants.last_archive, end_block_hash) - }; - let mut fees = [FeeRecipient::empty(); AZTEC_MAX_EPOCH_DURATION]; if accumulated_fees != 0 { fees[0] = FeeRecipient { @@ -132,10 +122,8 @@ impl BlockRootRollupOutputComposer { blob_public_inputs[0] = block_blob_public_inputs; BlockRootOrBlockMergePublicInputs { - previous_archive, // archive before this block was added + previous_archive: constants.last_archive, // archive before this block was added new_archive, // archive once this block was added - previous_block_hash, - end_block_hash, // current newest block hash = this block hash start_global_variables: constants.global_variables, // we have asserted that left.constants == right.constants => ... end_global_variables: constants.global_variables, // ...with a current block range of 1, we only have 1 set of constants out_hash, diff --git a/noir-projects/noir-protocol-circuits/crates/rollup-lib/src/block_root/empty_block_root_rollup_inputs.nr b/noir-projects/noir-protocol-circuits/crates/rollup-lib/src/block_root/empty_block_root_rollup_inputs.nr index be68c68fefcb..bd1ece2f95e1 100644 --- a/noir-projects/noir-protocol-circuits/crates/rollup-lib/src/block_root/empty_block_root_rollup_inputs.nr +++ b/noir-projects/noir-protocol-circuits/crates/rollup-lib/src/block_root/empty_block_root_rollup_inputs.nr @@ -31,10 +31,9 @@ impl EmptyBlockRootRollupInputs { let validator = BlockRootRollupInputsValidator::new( [], // previous_rollup_data [], // allowed_vk_indices - self.data.l1_to_l2_roots, - self.data.previous_block_header, + self.data, ); - validator.validate_without_previous_rollups(self.is_padding); + validator.validate_without_previous_rollups(self.is_padding, self.constants.last_archive); let mut blob_public_input = BlobPublicInputs::empty(); blob_public_input.kzg_commitment.inner = EMPTY_EFFECT_BLOB_COMMITMENT; @@ -90,7 +89,6 @@ mod tests { let output = builder.execute(); assert(output.previous_archive != output.new_archive); - assert(output.previous_block_hash != output.end_block_hash); assert_eq(output.start_global_variables, output.end_global_variables); assert_eq(output.out_hash, 0); assert_array_eq(output.fees, []); @@ -134,10 +132,18 @@ mod tests { let output = builder.execute(); assert_eq(output.previous_archive, output.new_archive); - assert_eq(output.previous_block_hash, output.end_block_hash); assert_eq(output.start_global_variables, output.end_global_variables); assert_eq(output.out_hash, 0); assert_array_eq(output.fees, []); assert_array_eq(output.blob_public_inputs, []); } + + #[test(should_fail_with = "hash of the previous block header is not the last leaf in the archive tree")] + unconstrained fn random_previous_block_header_fails() { + let mut builder = TestBuilder::new(); + + builder.inputs.previous_block_header.state.partial.note_hash_tree.root += 1; + + let _ = builder.execute(); + } } diff --git a/noir-projects/noir-protocol-circuits/crates/rollup-lib/src/block_root/single_tx_block_root_rollup_inputs.nr b/noir-projects/noir-protocol-circuits/crates/rollup-lib/src/block_root/single_tx_block_root_rollup_inputs.nr index 4e2e5109897b..078161ca9118 100644 --- a/noir-projects/noir-protocol-circuits/crates/rollup-lib/src/block_root/single_tx_block_root_rollup_inputs.nr +++ b/noir-projects/noir-protocol-circuits/crates/rollup-lib/src/block_root/single_tx_block_root_rollup_inputs.nr @@ -26,8 +26,7 @@ impl SingleTxBlockRootRollupInputs { BlockRootRollupInputsValidator::new( self.previous_rollup_data, ALLOWED_PREVIOUS_CIRCUITS, - self.data.l1_to_l2_roots, - self.data.previous_block_header, + self.data, ) .validate(); @@ -89,4 +88,25 @@ mod tests { }; assert_array_eq(output.fees, [expected_fee]); } + + #[test(should_fail_with = "the start state of the block's first tx does not match the state in previous header")] + unconstrained fn random_block_header_for_first_tx_fails() { + let mut builder = TestBuilder::new(); + + builder.inputs.previous_rollup_data[0].base_or_merge_rollup_public_inputs.start.note_hash_tree.root += + 1; + + let _ = builder.execute(); + } + + #[test(should_fail_with = "hash of the previous block header is not the last leaf in the archive tree")] + unconstrained fn random_previous_block_header_fails() { + let mut builder = TestBuilder::new(); + + builder.inputs.previous_rollup_data[0].base_or_merge_rollup_public_inputs.start.note_hash_tree.root += + 1; + builder.inputs.previous_block_header.state.partial.note_hash_tree.root += 1; + + let _ = builder.execute(); + } } diff --git a/noir-projects/noir-protocol-circuits/crates/rollup-lib/src/components.nr b/noir-projects/noir-protocol-circuits/crates/rollup-lib/src/components.nr index 303e35a78b03..4f11779bc44b 100644 --- a/noir-projects/noir-protocol-circuits/crates/rollup-lib/src/components.nr +++ b/noir-projects/noir-protocol-circuits/crates/rollup-lib/src/components.nr @@ -38,10 +38,6 @@ pub fn assert_prev_block_rollups_follow_on_from_each_other( left.new_archive.eq(right.previous_archive), "input blocks have different archive tree snapshots", ); - assert( - left.end_block_hash.eq(right.previous_block_hash), - "input block hashes do not follow on from each other", - ); assert( left.end_global_variables.chain_id == right.start_global_variables.chain_id, "input blocks have different chain id", diff --git a/noir-projects/noir-protocol-circuits/crates/rollup-lib/src/root/mod.nr b/noir-projects/noir-protocol-circuits/crates/rollup-lib/src/root/mod.nr index 44c523a1e7b0..d1af19e63a54 100644 --- a/noir-projects/noir-protocol-circuits/crates/rollup-lib/src/root/mod.nr +++ b/noir-projects/noir-protocol-circuits/crates/rollup-lib/src/root/mod.nr @@ -41,9 +41,5 @@ mod tests { .end_global_variables .timestamp, )); - - assert(outputs.end_block_hash.eq( - inputs.previous_rollup_data[1].block_root_or_block_merge_public_inputs.end_block_hash, - )); } } diff --git a/noir-projects/noir-protocol-circuits/crates/rollup-lib/src/root/root_rollup_inputs.nr b/noir-projects/noir-protocol-circuits/crates/rollup-lib/src/root/root_rollup_inputs.nr index a975732c4fbd..41d5937b8edd 100644 --- a/noir-projects/noir-protocol-circuits/crates/rollup-lib/src/root/root_rollup_inputs.nr +++ b/noir-projects/noir-protocol-circuits/crates/rollup-lib/src/root/root_rollup_inputs.nr @@ -67,8 +67,6 @@ impl RootRollupInputs { RootRollupPublicInputs { previous_archive: left.previous_archive, end_archive: right.new_archive, - previous_block_hash: left.previous_block_hash, - end_block_hash: right.end_block_hash, end_timestamp: right.end_global_variables.timestamp, end_block_number: right.end_global_variables.block_number, out_hash, diff --git a/noir-projects/noir-protocol-circuits/crates/rollup-lib/src/root/root_rollup_public_inputs.nr b/noir-projects/noir-protocol-circuits/crates/rollup-lib/src/root/root_rollup_public_inputs.nr index acdefb469455..a0dca33af5f8 100644 --- a/noir-projects/noir-protocol-circuits/crates/rollup-lib/src/root/root_rollup_public_inputs.nr +++ b/noir-projects/noir-protocol-circuits/crates/rollup-lib/src/root/root_rollup_public_inputs.nr @@ -6,11 +6,6 @@ pub struct RootRollupPublicInputs { // Snapshot of archive tree before/after this rollup has been processed pub previous_archive: AppendOnlyTreeSnapshot, pub end_archive: AppendOnlyTreeSnapshot, - // Hash of the last block in the previous epoch. Although it's a leaf of the previous archive. It still needs to be - // submitted and checked on L1. Otherwise, we would need to verify that it's in the last archive by performing a - // membership check in the circuit. - pub previous_block_hash: Field, - pub end_block_hash: Field, pub end_timestamp: u64, pub end_block_number: Field, pub out_hash: Field, diff --git a/noir-projects/noir-protocol-circuits/crates/rollup-lib/src/tests/previous_rollup_block_data.nr b/noir-projects/noir-protocol-circuits/crates/rollup-lib/src/tests/previous_rollup_block_data.nr index 708a226b2b47..565e50e1ba31 100644 --- a/noir-projects/noir-protocol-circuits/crates/rollup-lib/src/tests/previous_rollup_block_data.nr +++ b/noir-projects/noir-protocol-circuits/crates/rollup-lib/src/tests/previous_rollup_block_data.nr @@ -36,11 +36,6 @@ pub fn default_previous_rollup_block_data() -> [PreviousRollupBlockData; 2] { previous_rollup_data[1].block_root_or_block_merge_public_inputs.new_archive = AppendOnlyTreeSnapshot { root: 2, next_available_leaf_index: 2 }; - previous_rollup_data[0].block_root_or_block_merge_public_inputs.previous_block_hash = 1; - previous_rollup_data[0].block_root_or_block_merge_public_inputs.end_block_hash = 2; - previous_rollup_data[1].block_root_or_block_merge_public_inputs.previous_block_hash = 2; - previous_rollup_data[1].block_root_or_block_merge_public_inputs.end_block_hash = 3; - // previous_rollup_data is from one block_root circuit => ecompasses a single block (block 1) previous_rollup_data[1].block_root_or_block_merge_public_inputs.start_global_variables.block_number = 1; diff --git a/noir-projects/noir-protocol-circuits/crates/rollup-lib/src/tests/rollup_fixture_builder.nr b/noir-projects/noir-protocol-circuits/crates/rollup-lib/src/tests/rollup_fixture_builder.nr index 53e2b12880c9..46b43172ad24 100644 --- a/noir-projects/noir-protocol-circuits/crates/rollup-lib/src/tests/rollup_fixture_builder.nr +++ b/noir-projects/noir-protocol-circuits/crates/rollup-lib/src/tests/rollup_fixture_builder.nr @@ -31,6 +31,7 @@ pub struct RollupFixtureBuilder { pub last_l1_to_l2: AppendOnlyTreeSnapshot, pub last_l1_to_l2_subtree_sibling_path: [Field; L1_TO_L2_MSG_SUBTREE_SIBLING_PATH_LENGTH], pub last_archive: AppendOnlyTreeSnapshot, + pub last_archive_sibling_path: [Field; ARCHIVE_HEIGHT], pub new_archive: AppendOnlyTreeSnapshot, pub new_archive_sibling_path: [Field; ARCHIVE_HEIGHT], pub blobs_fields: [Field; FIELDS_PER_BLOB * BLOBS_PER_BLOCK], @@ -58,6 +59,7 @@ impl RollupFixtureBuilder { last_l1_to_l2: AppendOnlyTreeSnapshot::zero(), last_l1_to_l2_subtree_sibling_path: [0; L1_TO_L2_MSG_SUBTREE_SIBLING_PATH_LENGTH], last_archive: AppendOnlyTreeSnapshot::zero(), + last_archive_sibling_path: [0; ARCHIVE_HEIGHT], new_archive: AppendOnlyTreeSnapshot::zero(), new_archive_sibling_path: [0; ARCHIVE_HEIGHT], blobs_fields: [0; FIELDS_PER_BLOB * BLOBS_PER_BLOCK], @@ -232,6 +234,7 @@ impl RollupFixtureBuilder { self.last_archive = AppendOnlyTreeSnapshot { root: tree.get_root(), next_available_leaf_index: 1 }; + self.last_archive_sibling_path = tree.get_sibling_path(0); self.new_archive_sibling_path = tree.get_sibling_path(1); *self @@ -261,6 +264,7 @@ impl RollupFixtureBuilder { BlockRootRollupData { l1_to_l2_roots: self.to_root_rollup_parity_input(), l1_to_l2_message_subtree_sibling_path: self.last_l1_to_l2_subtree_sibling_path, + previous_archive_sibling_path: self.last_archive_sibling_path, new_archive_sibling_path: self.new_archive_sibling_path, previous_block_header: self.previous_block_header, prover_id: self.prover_id, diff --git a/noir-projects/noir-protocol-circuits/crates/types/src/constants.nr b/noir-projects/noir-protocol-circuits/crates/types/src/constants.nr index 25d7d1abd7ad..f935982c76d8 100644 --- a/noir-projects/noir-protocol-circuits/crates/types/src/constants.nr +++ b/noir-projects/noir-protocol-circuits/crates/types/src/constants.nr @@ -441,8 +441,6 @@ pub global BASE_OR_MERGE_PUBLIC_INPUTS_LENGTH: u32 = CONSTANT_ROLLUP_DATA_LENGTH + 5; pub global BLOCK_ROOT_OR_BLOCK_MERGE_PUBLIC_INPUTS_LENGTH: u32 = 2 * APPEND_ONLY_TREE_SNAPSHOT_LENGTH - + 1 /* previous_block_hash */ - + 1 /* end_block_hash */ + 2 * GLOBAL_VARIABLES_LENGTH + 1 /* out_hash */ + AZTEC_MAX_EPOCH_DURATION * FEE_RECIPIENT_LENGTH @@ -450,9 +448,9 @@ pub global BLOCK_ROOT_OR_BLOCK_MERGE_PUBLIC_INPUTS_LENGTH: u32 = 2 + 1 /* protocol_contract_tree_root */ + 1 /* prover_id */ + AZTEC_MAX_EPOCH_DURATION * BLOB_PUBLIC_INPUTS * BLOBS_PER_BLOCK; -// + 8 for previous_block_hash, end_block_hash, end_timestamp, end_block_number, out_hash, vk_tree_root, protocol_contract_tree_root, prover_id +// + 6 for end_timestamp, end_block_number, out_hash, vk_tree_root, protocol_contract_tree_root, prover_id pub global ROOT_ROLLUP_PUBLIC_INPUTS_LENGTH: u32 = 2 * APPEND_ONLY_TREE_SNAPSHOT_LENGTH - + 8 + + 6 + AZTEC_MAX_EPOCH_DURATION * FEE_RECIPIENT_LENGTH + AZTEC_MAX_EPOCH_DURATION * BLOB_PUBLIC_INPUTS * BLOBS_PER_BLOCK; pub global GET_NOTES_ORACLE_RETURN_LENGTH: u32 = 674; diff --git a/yarn-project/archiver/src/archiver/archiver.test.ts b/yarn-project/archiver/src/archiver/archiver.test.ts index 50283ddbd848..0d4a84321937 100644 --- a/yarn-project/archiver/src/archiver/archiver.test.ts +++ b/yarn-project/archiver/src/archiver/archiver.test.ts @@ -607,11 +607,10 @@ async function makeRollupTx(l2Block: L2Block) { const header = toHex(l2Block.header.toBuffer()); const blobInput = Blob.getEthBlobEvaluationInputs(await Blob.getBlobs(l2Block.body.toBlobFields())); const archive = toHex(l2Block.archive.root.toBuffer()); - const blockHash = toHex((await l2Block.header.hash()).toBuffer()); const rollupInput = encodeFunctionData({ abi: RollupAbi, functionName: 'propose', - args: [{ header, archive, blockHash, oracleInput: { feeAssetPriceModifier: 0n }, txHashes: [] }, [], blobInput], + args: [{ header, archive, oracleInput: { feeAssetPriceModifier: 0n }, txHashes: [] }, [], blobInput], }); const forwarderInput = encodeFunctionData({ diff --git a/yarn-project/aztec/src/cli/cmds/start_node.ts b/yarn-project/aztec/src/cli/cmds/start_node.ts index 154ac35f6f5d..87a8909d7099 100644 --- a/yarn-project/aztec/src/cli/cmds/start_node.ts +++ b/yarn-project/aztec/src/cli/cmds/start_node.ts @@ -54,9 +54,8 @@ export async function startNode( userLog(`Initial funded accounts: ${initialFundedAccounts.map(a => a.toString()).join(', ')}`); - const { genesisBlockHash, genesisArchiveRoot, prefilledPublicData } = await getGenesisValues(initialFundedAccounts); + const { genesisArchiveRoot, prefilledPublicData } = await getGenesisValues(initialFundedAccounts); - userLog(`Genesis block hash: ${genesisBlockHash.toString()}`); userLog(`Genesis archive root: ${genesisArchiveRoot.toString()}`); // Deploy contracts if needed @@ -73,7 +72,6 @@ export async function startNode( await deployContractsToL1(nodeConfig, account!, undefined, { assumeProvenThroughBlockNumber: nodeSpecificOptions.assumeProvenThroughBlockNumber, salt: nodeSpecificOptions.deployAztecContractsSalt, - genesisBlockHash, genesisArchiveRoot, }); } diff --git a/yarn-project/aztec/src/sandbox/sandbox.ts b/yarn-project/aztec/src/sandbox/sandbox.ts index 44df88cc95db..66938822f8b8 100644 --- a/yarn-project/aztec/src/sandbox/sandbox.ts +++ b/yarn-project/aztec/src/sandbox/sandbox.ts @@ -5,7 +5,7 @@ import { type AztecNodeConfig, AztecNodeService, getConfigEnvVars } from '@aztec import { AnvilTestWatcher, EthCheatCodes } from '@aztec/aztec.js/testing'; import { type BlobSinkClientInterface, createBlobSinkClient } from '@aztec/blob-sink/client'; import { setupCanonicalL2FeeJuice, setupSponsoredFPC } from '@aztec/cli/cli-utils'; -import { GENESIS_ARCHIVE_ROOT, GENESIS_BLOCK_HASH } from '@aztec/constants'; +import { GENESIS_ARCHIVE_ROOT } from '@aztec/constants'; import { NULL_KEY, createEthereumChain, @@ -49,7 +49,7 @@ export async function deployContractsToL1( aztecNodeConfig: AztecNodeConfig, hdAccount: HDAccount | PrivateKeyAccount, contractDeployLogger = logger, - opts: { assumeProvenThroughBlockNumber?: number; salt?: number; genesisArchiveRoot?: Fr; genesisBlockHash?: Fr } = {}, + opts: { assumeProvenThroughBlockNumber?: number; salt?: number; genesisArchiveRoot?: Fr } = {}, ) { const chain = aztecNodeConfig.l1RpcUrls.length > 0 @@ -70,7 +70,6 @@ export async function deployContractsToL1( vkTreeRoot: getVKTreeRoot(), protocolContractTreeRoot, genesisArchiveRoot: opts.genesisArchiveRoot ?? new Fr(GENESIS_ARCHIVE_ROOT), - genesisBlockHash: opts.genesisBlockHash ?? new Fr(GENESIS_BLOCK_HASH), salt: opts.salt, }, ); @@ -135,14 +134,13 @@ export async function createSandbox(config: Partial = {}, userLog const fundedAddresses = initialAccounts.length ? [...initialAccounts.map(a => a.address), bananaFPC, sponsoredFPC] : []; - const { genesisArchiveRoot, genesisBlockHash, prefilledPublicData } = await getGenesisValues(fundedAddresses); + const { genesisArchiveRoot, prefilledPublicData } = await getGenesisValues(fundedAddresses); let watcher: AnvilTestWatcher | undefined = undefined; if (!aztecNodeConfig.p2pEnabled) { const l1ContractAddresses = await deployContractsToL1(aztecNodeConfig, hdAccount, undefined, { assumeProvenThroughBlockNumber: Number.MAX_SAFE_INTEGER, genesisArchiveRoot, - genesisBlockHash, salt: config.l1Salt ? parseInt(config.l1Salt) : undefined, }); diff --git a/yarn-project/cli/src/cmds/l1/deploy_l1_contracts.ts b/yarn-project/cli/src/cmds/l1/deploy_l1_contracts.ts index 9f96d5877e36..82066322026e 100644 --- a/yarn-project/cli/src/cmds/l1/deploy_l1_contracts.ts +++ b/yarn-project/cli/src/cmds/l1/deploy_l1_contracts.ts @@ -26,7 +26,7 @@ export async function deployL1Contracts( const initialFundedAccounts = testAccounts ? await getInitialTestAccounts() : []; const sponsoredFPCAddress = sponsoredFPC ? await getSponsoredFPCAddress() : []; - const { genesisBlockHash, genesisArchiveRoot } = await getGenesisValues( + const { genesisArchiveRoot } = await getGenesisValues( initialFundedAccounts.map(a => a.address).concat(sponsoredFPCAddress), ); @@ -39,7 +39,6 @@ export async function deployL1Contracts( salt, initialValidators, genesisArchiveRoot, - genesisBlockHash, acceleratedTestDeployments, config, debugLogger, diff --git a/yarn-project/cli/src/cmds/l1/deploy_new_rollup.ts b/yarn-project/cli/src/cmds/l1/deploy_new_rollup.ts index 13b6f5f97ebe..cae9dfaa50bb 100644 --- a/yarn-project/cli/src/cmds/l1/deploy_new_rollup.ts +++ b/yarn-project/cli/src/cmds/l1/deploy_new_rollup.ts @@ -23,7 +23,7 @@ export async function deployNewRollup( const config = getL1ContractsConfigEnvVars(); const initialFundedAccounts = testAccounts ? await getInitialTestAccounts() : []; - const { genesisBlockHash, genesisArchiveRoot } = await getGenesisValues(initialFundedAccounts.map(a => a.address)); + const { genesisArchiveRoot } = await getGenesisValues(initialFundedAccounts.map(a => a.address)); const { payloadAddress, rollup } = await deployNewRollupContracts( registryAddress, @@ -35,7 +35,6 @@ export async function deployNewRollup( salt, initialValidators, genesisArchiveRoot, - genesisBlockHash, config, debugLogger, ); diff --git a/yarn-project/cli/src/utils/aztec.ts b/yarn-project/cli/src/utils/aztec.ts index 728cc3e8a13f..57fbb3db1779 100644 --- a/yarn-project/cli/src/utils/aztec.ts +++ b/yarn-project/cli/src/utils/aztec.ts @@ -48,7 +48,6 @@ export async function deployAztecContracts( salt: number | undefined, initialValidators: EthAddress[], genesisArchiveRoot: Fr, - genesisBlockHash: Fr, acceleratedTestDeployments: boolean, config: L1ContractsConfig, debugLogger: Logger, @@ -73,7 +72,6 @@ export async function deployAztecContracts( vkTreeRoot: getVKTreeRoot(), protocolContractTreeRoot, genesisArchiveRoot, - genesisBlockHash, salt, initialValidators, acceleratedTestDeployments, @@ -93,7 +91,6 @@ export async function deployNewRollupContracts( salt: number | undefined, initialValidators: EthAddress[], genesisArchiveRoot: Fr, - genesisBlockHash: Fr, config: L1ContractsConfig, logger: Logger, ): Promise<{ payloadAddress: EthAddress; rollup: RollupContract }> { @@ -115,7 +112,6 @@ export async function deployNewRollupContracts( protocolContractTreeRoot, l2FeeJuiceAddress: ProtocolContractAddress.FeeJuice.toField(), genesisArchiveRoot, - genesisBlockHash, initialValidators, ...config, }, diff --git a/yarn-project/constants/src/constants.gen.ts b/yarn-project/constants/src/constants.gen.ts index b05a689147f6..f709d6dbc866 100644 --- a/yarn-project/constants/src/constants.gen.ts +++ b/yarn-project/constants/src/constants.gen.ts @@ -92,16 +92,11 @@ export const MAX_PACKED_BYTECODE_SIZE_PER_PRIVATE_FUNCTION_IN_FIELDS = 3000; export const MAX_PACKED_BYTECODE_SIZE_PER_UNCONSTRAINED_FUNCTION_IN_FIELDS = 3000; export const REGISTERER_PRIVATE_FUNCTION_BROADCASTED_ADDITIONAL_FIELDS = 19; export const REGISTERER_UNCONSTRAINED_FUNCTION_BROADCASTED_ADDITIONAL_FIELDS = 12; -export const REGISTERER_CONTRACT_CLASS_REGISTERED_MAGIC_VALUE = - 11121068431693264234253912047066709627593769337094408533543930778360n; -export const REGISTERER_PRIVATE_FUNCTION_BROADCASTED_MAGIC_VALUE = - 2889881020989534926461066592611988634597302675057895885580456197069n; -export const REGISTERER_UNCONSTRAINED_FUNCTION_BROADCASTED_MAGIC_VALUE = - 24399338136397901754495080759185489776044879232766421623673792970137n; -export const DEPLOYER_CONTRACT_INSTANCE_DEPLOYED_MAGIC_VALUE = - 14061769416655647708490531650437236735160113654556896985372298487345n; -export const DEPLOYER_CONTRACT_INSTANCE_UPDATED_MAGIC_VALUE = - 1534834688047131268740281708431107902615560100979874281215533519862n; +export const REGISTERER_CONTRACT_CLASS_REGISTERED_MAGIC_VALUE = 11121068431693264234253912047066709627593769337094408533543930778360n; +export const REGISTERER_PRIVATE_FUNCTION_BROADCASTED_MAGIC_VALUE = 2889881020989534926461066592611988634597302675057895885580456197069n; +export const REGISTERER_UNCONSTRAINED_FUNCTION_BROADCASTED_MAGIC_VALUE = 24399338136397901754495080759185489776044879232766421623673792970137n; +export const DEPLOYER_CONTRACT_INSTANCE_DEPLOYED_MAGIC_VALUE = 14061769416655647708490531650437236735160113654556896985372298487345n; +export const DEPLOYER_CONTRACT_INSTANCE_UPDATED_MAGIC_VALUE = 1534834688047131268740281708431107902615560100979874281215533519862n; export const MAX_PROTOCOL_CONTRACTS = 7; export const CANONICAL_AUTH_REGISTRY_ADDRESS = 1; export const DEPLOYER_CONTRACT_ADDRESS = 2; @@ -196,8 +191,8 @@ export const PRIVATE_TO_ROLLUP_KERNEL_CIRCUIT_PUBLIC_INPUTS_LENGTH = 782; export const AVM_CIRCUIT_PUBLIC_INPUTS_LENGTH = 1026; export const CONSTANT_ROLLUP_DATA_LENGTH = 13; export const BASE_OR_MERGE_PUBLIC_INPUTS_LENGTH = 52; -export const BLOCK_ROOT_OR_BLOCK_MERGE_PUBLIC_INPUTS_LENGTH = 986; -export const ROOT_ROLLUP_PUBLIC_INPUTS_LENGTH = 972; +export const BLOCK_ROOT_OR_BLOCK_MERGE_PUBLIC_INPUTS_LENGTH = 984; +export const ROOT_ROLLUP_PUBLIC_INPUTS_LENGTH = 970; export const GET_NOTES_ORACLE_RETURN_LENGTH = 674; export const NOTE_HASHES_NUM_BYTES_PER_BASE_ROLLUP = 2048; export const NULLIFIERS_NUM_BYTES_PER_BASE_ROLLUP = 2048; @@ -416,4 +411,4 @@ export enum GeneratorIndex { SYMMETRIC_KEY_2 = 55, PUBLIC_TX_HASH = 56, PRIVATE_TX_HASH = 57, -} +} \ No newline at end of file diff --git a/yarn-project/end-to-end/src/composed/integration_l1_publisher.test.ts b/yarn-project/end-to-end/src/composed/integration_l1_publisher.test.ts index 770f68a25a14..5c1df76a5c1b 100644 --- a/yarn-project/end-to-end/src/composed/integration_l1_publisher.test.ts +++ b/yarn-project/end-to-end/src/composed/integration_l1_publisher.test.ts @@ -300,7 +300,6 @@ describe('L1Publisher integration', () => { // The json formatting in forge is a bit brittle, so we convert Fr to a number in the few values below. // This should not be a problem for testing as long as the values are not larger than u32. archive: `0x${block.archive.root.toBuffer().toString('hex').padStart(64, '0')}`, - blockHash: `0x${(await block.hash()).toBuffer().toString('hex').padStart(64, '0')}`, body: `0x${block.body.toBuffer().toString('hex')}`, decodedHeader: { contentCommitment: { @@ -489,7 +488,6 @@ describe('L1Publisher integration', () => { { header: `0x${block.header.toBuffer().toString('hex')}`, archive: `0x${block.archive.root.toBuffer().toString('hex')}`, - blockHash: `0x${(await block.header.hash()).toBuffer().toString('hex')}`, oracleInput: { feeAssetPriceModifier: 0n, }, @@ -610,7 +608,6 @@ describe('L1Publisher integration', () => { ), undefined, expect.objectContaining({ - blockHash: expect.any(Fr), blockNumber: expect.any(Number), slotNumber: expect.any(BigInt), txHash: expect.any(String), diff --git a/yarn-project/end-to-end/src/fixtures/setup_l1_contracts.ts b/yarn-project/end-to-end/src/fixtures/setup_l1_contracts.ts index a99e00069e95..28aeb4d9762c 100644 --- a/yarn-project/end-to-end/src/fixtures/setup_l1_contracts.ts +++ b/yarn-project/end-to-end/src/fixtures/setup_l1_contracts.ts @@ -12,8 +12,7 @@ export const setupL1Contracts = async ( l1RpcUrl: string, account: HDAccount | PrivateKeyAccount, logger: Logger, - args: Pick & - L1ContractsConfig, + args: Pick & L1ContractsConfig, ) => { const l1Data = await deployL1Contracts([l1RpcUrl], account, foundry, logger, { l2FeeJuiceAddress: ProtocolContractAddress.FeeJuice.toField(), diff --git a/yarn-project/end-to-end/src/fixtures/snapshot_manager.ts b/yarn-project/end-to-end/src/fixtures/snapshot_manager.ts index ccad40799571..fbc4e1970f54 100644 --- a/yarn-project/end-to-end/src/fixtures/snapshot_manager.ts +++ b/yarn-project/end-to-end/src/fixtures/snapshot_manager.ts @@ -345,7 +345,7 @@ async function setupFromFresh( const initialFundedAccounts = await generateSchnorrAccounts(numberOfInitialFundedAccounts); const sponsoredFPCAddress = await getSponsoredFPCAddress(); - const { genesisArchiveRoot, genesisBlockHash, prefilledPublicData } = await getGenesisValues( + const { genesisArchiveRoot, prefilledPublicData } = await getGenesisValues( initialFundedAccounts.map(a => a.address).concat(sponsoredFPCAddress), opts.initialAccountFeeJuice, ); @@ -353,7 +353,6 @@ async function setupFromFresh( const deployL1ContractsValues = await setupL1Contracts(aztecNodeConfig.l1RpcUrls[0], hdAccount, logger, { ...getL1ContractsConfigEnvVars(), genesisArchiveRoot, - genesisBlockHash, salt: opts.salt, ...deployL1ContractsArgs, initialValidators: opts.initialValidators, diff --git a/yarn-project/end-to-end/src/fixtures/utils.ts b/yarn-project/end-to-end/src/fixtures/utils.ts index e88969abf0e8..56eb9c824d93 100644 --- a/yarn-project/end-to-end/src/fixtures/utils.ts +++ b/yarn-project/end-to-end/src/fixtures/utils.ts @@ -30,7 +30,7 @@ import { SponsoredFeePaymentMethod } from '@aztec/aztec.js/fee/testing'; import { AnvilTestWatcher, CheatCodes } from '@aztec/aztec.js/testing'; import { createBlobSinkClient } from '@aztec/blob-sink/client'; import { type BlobSinkServer, createBlobSinkServer } from '@aztec/blob-sink/server'; -import { FEE_JUICE_INITIAL_MINT, GENESIS_ARCHIVE_ROOT, GENESIS_BLOCK_HASH, SPONSORED_FPC_SALT } from '@aztec/constants'; +import { FEE_JUICE_INITIAL_MINT, GENESIS_ARCHIVE_ROOT, SPONSORED_FPC_SALT } from '@aztec/constants'; import { DefaultMultiCallEntrypoint } from '@aztec/entrypoints/multicall'; import { type DeployL1ContractsArgs, @@ -130,7 +130,6 @@ export const setupL1Contracts = async ( vkTreeRoot: getVKTreeRoot(), protocolContractTreeRoot, genesisArchiveRoot: args.genesisArchiveRoot ?? new Fr(GENESIS_ARCHIVE_ROOT), - genesisBlockHash: args.genesisBlockHash ?? new Fr(GENESIS_BLOCK_HASH), salt: args.salt, initialValidators: args.initialValidators, ...getL1ContractsConfigEnvVars(), @@ -430,7 +429,7 @@ export async function setup( const initialFundedAccounts = opts.initialFundedAccounts ?? (await generateSchnorrAccounts(opts.numberOfInitialFundedAccounts ?? numberOfAccounts)); - const { genesisBlockHash, genesisArchiveRoot, prefilledPublicData } = await getGenesisValues( + const { genesisArchiveRoot, prefilledPublicData } = await getGenesisValues( initialFundedAccounts.map(a => a.address), opts.initialAccountFeeJuice, opts.genesisPublicData, @@ -438,13 +437,7 @@ export async function setup( const deployL1ContractsValues = opts.deployL1ContractsValues ?? - (await setupL1Contracts( - config.l1RpcUrls, - publisherHdAccount!, - logger, - { ...opts, genesisArchiveRoot, genesisBlockHash }, - chain, - )); + (await setupL1Contracts(config.l1RpcUrls, publisherHdAccount!, logger, { ...opts, genesisArchiveRoot }, chain)); config.l1Contracts = deployL1ContractsValues.l1ContractAddresses; diff --git a/yarn-project/end-to-end/src/spartan/upgrade_rollup_version.test.ts b/yarn-project/end-to-end/src/spartan/upgrade_rollup_version.test.ts index 7de96e8817bf..89ef5468dd46 100644 --- a/yarn-project/end-to-end/src/spartan/upgrade_rollup_version.test.ts +++ b/yarn-project/end-to-end/src/spartan/upgrade_rollup_version.test.ts @@ -97,7 +97,7 @@ describe('spartan_upgrade_rollup_version', () => { debugLogger.info(`l1WalletClient: ${l1WalletClient.account.address}`); const initialTestAccounts = await getInitialTestAccounts(); - const { genesisBlockHash, genesisArchiveRoot } = await getGenesisValues(initialTestAccounts.map(a => a.address)); + const { genesisArchiveRoot } = await getGenesisValues(initialTestAccounts.map(a => a.address)); const { rollup: newRollup, payloadAddress } = await deployRollupForUpgrade( { @@ -110,7 +110,6 @@ describe('spartan_upgrade_rollup_version', () => { protocolContractTreeRoot, l2FeeJuiceAddress: ProtocolContractAddress.FeeJuice.toField(), genesisArchiveRoot, - genesisBlockHash, ethereumSlotDuration: 12, aztecSlotDuration: 24, aztecEpochDuration: 4, diff --git a/yarn-project/ethereum/src/contracts/fee_asset_handler.test.ts b/yarn-project/ethereum/src/contracts/fee_asset_handler.test.ts index de006a7ffa67..7ceeb6333dfa 100644 --- a/yarn-project/ethereum/src/contracts/fee_asset_handler.test.ts +++ b/yarn-project/ethereum/src/contracts/fee_asset_handler.test.ts @@ -46,7 +46,6 @@ describe('FeeAssetHandler', () => { protocolContractTreeRoot, l2FeeJuiceAddress, genesisArchiveRoot: Fr.random(), - genesisBlockHash: Fr.random(), }); // Since the registry cannot "see" the slash factory, we omit it from the addresses for this test const deployedAddresses = omit(deployed.l1ContractAddresses, 'slashFactoryAddress'); diff --git a/yarn-project/ethereum/src/contracts/forwarder.test.ts b/yarn-project/ethereum/src/contracts/forwarder.test.ts index 3d2339025775..c0fd90e66a93 100644 --- a/yarn-project/ethereum/src/contracts/forwarder.test.ts +++ b/yarn-project/ethereum/src/contracts/forwarder.test.ts @@ -54,7 +54,6 @@ describe('Forwarder', () => { protocolContractTreeRoot, l2FeeJuiceAddress, genesisArchiveRoot: Fr.random(), - genesisBlockHash: Fr.random(), }); govProposerAddress = deployed.l1ContractAddresses.governanceProposerAddress; diff --git a/yarn-project/ethereum/src/contracts/governance.test.ts b/yarn-project/ethereum/src/contracts/governance.test.ts index a6722044f9f3..5b87b089dc8c 100644 --- a/yarn-project/ethereum/src/contracts/governance.test.ts +++ b/yarn-project/ethereum/src/contracts/governance.test.ts @@ -43,7 +43,6 @@ describe('Governance', () => { protocolContractTreeRoot, l2FeeJuiceAddress, genesisArchiveRoot: Fr.random(), - genesisBlockHash: Fr.random(), }); governance = new GovernanceContract( diff --git a/yarn-project/ethereum/src/contracts/registry.test.ts b/yarn-project/ethereum/src/contracts/registry.test.ts index 38604c35be04..0d94924d9d47 100644 --- a/yarn-project/ethereum/src/contracts/registry.test.ts +++ b/yarn-project/ethereum/src/contracts/registry.test.ts @@ -50,7 +50,6 @@ describe('Registry', () => { protocolContractTreeRoot, l2FeeJuiceAddress, genesisArchiveRoot: Fr.random(), - genesisBlockHash: Fr.random(), }); // Since the registry cannot "see" the slash factory, we omit it from the addresses for this test deployedAddresses = omit(deployed.l1ContractAddresses, 'slashFactoryAddress', 'feeAssetHandlerAddress'); @@ -117,7 +116,6 @@ describe('Registry', () => { protocolContractTreeRoot, l2FeeJuiceAddress, genesisArchiveRoot: Fr.random(), - genesisBlockHash: Fr.random(), }, deployedAddresses.registryAddress, logger, diff --git a/yarn-project/ethereum/src/contracts/rollup.ts b/yarn-project/ethereum/src/contracts/rollup.ts index a08cda99ca7c..53678a162626 100644 --- a/yarn-project/ethereum/src/contracts/rollup.ts +++ b/yarn-project/ethereum/src/contracts/rollup.ts @@ -30,8 +30,6 @@ export type L1RollupContractAddresses = Pick< export type EpochProofPublicInputArgs = { previousArchive: `0x${string}`; endArchive: `0x${string}`; - previousBlockHash: `0x${string}`; - endBlockHash: `0x${string}`; endTimestamp: bigint; outHash: `0x${string}`; proverId: `0x${string}`; diff --git a/yarn-project/ethereum/src/deploy_l1_contracts.test.ts b/yarn-project/ethereum/src/deploy_l1_contracts.test.ts index aea6213de737..12bcfe49532f 100644 --- a/yarn-project/ethereum/src/deploy_l1_contracts.test.ts +++ b/yarn-project/ethereum/src/deploy_l1_contracts.test.ts @@ -18,7 +18,6 @@ describe('deploy_l1_contracts', () => { let vkTreeRoot: Fr; let protocolContractTreeRoot: Fr; let genesisArchiveRoot: Fr; - let genesisBlockHash: Fr; let initialValidators: EthAddress[]; let l2FeeJuiceAddress: Fr; @@ -35,7 +34,6 @@ describe('deploy_l1_contracts', () => { vkTreeRoot = Fr.random(); protocolContractTreeRoot = Fr.random(); genesisArchiveRoot = Fr.random(); - genesisBlockHash = Fr.random(); initialValidators = times(3, EthAddress.random); // Valid AztecAddress represented by its xCoord as a Fr l2FeeJuiceAddress = Fr.fromHexString('0x302dbc2f9b50a73283d5fb2f35bc01eae8935615817a0b4219a057b2ba8a5a3f'); @@ -62,7 +60,6 @@ describe('deploy_l1_contracts', () => { vkTreeRoot, protocolContractTreeRoot, genesisArchiveRoot, - genesisBlockHash, l2FeeJuiceAddress, l1TxConfig: { checkIntervalMs: 100 }, ...args, diff --git a/yarn-project/ethereum/src/deploy_l1_contracts.ts b/yarn-project/ethereum/src/deploy_l1_contracts.ts index 64ac544b508c..cabb40863089 100644 --- a/yarn-project/ethereum/src/deploy_l1_contracts.ts +++ b/yarn-project/ethereum/src/deploy_l1_contracts.ts @@ -209,8 +209,6 @@ export interface DeployL1ContractsArgs extends L1ContractsConfig { protocolContractTreeRoot: Fr; /** The genesis root of the archive tree. */ genesisArchiveRoot: Fr; - /** The hash of the genesis block header. */ - genesisBlockHash: Fr; /** The salt for CREATE2 deployment. */ salt: number | undefined; /** The initial validators for the rollup contract. */ @@ -341,7 +339,6 @@ export const deployRollup = async ( vkTreeRoot: args.vkTreeRoot.toString(), protocolContractTreeRoot: args.protocolContractTreeRoot.toString(), genesisArchiveRoot: args.genesisArchiveRoot.toString(), - genesisBlockHash: args.genesisBlockHash.toString(), }; logger.verbose(`Rollup config args`, rollupConfigArgs); const rollupArgs = [ diff --git a/yarn-project/noir-protocol-circuits-types/src/conversion/server.ts b/yarn-project/noir-protocol-circuits-types/src/conversion/server.ts index f2b55fb59297..29f283b6ae86 100644 --- a/yarn-project/noir-protocol-circuits-types/src/conversion/server.ts +++ b/yarn-project/noir-protocol-circuits-types/src/conversion/server.ts @@ -382,8 +382,6 @@ export function mapBlockRootOrBlockMergePublicInputsToNoir( return { previous_archive: mapAppendOnlyTreeSnapshotToNoir(blockRootOrBlockMergePublicInputs.previousArchive), new_archive: mapAppendOnlyTreeSnapshotToNoir(blockRootOrBlockMergePublicInputs.newArchive), - previous_block_hash: mapFieldToNoir(blockRootOrBlockMergePublicInputs.previousBlockHash), - end_block_hash: mapFieldToNoir(blockRootOrBlockMergePublicInputs.endBlockHash), start_global_variables: mapGlobalVariablesToNoir(blockRootOrBlockMergePublicInputs.startGlobalVariables), end_global_variables: mapGlobalVariablesToNoir(blockRootOrBlockMergePublicInputs.endGlobalVariables), out_hash: mapFieldToNoir(blockRootOrBlockMergePublicInputs.outHash), @@ -431,8 +429,6 @@ export function mapRootRollupPublicInputsFromNoir( return new RootRollupPublicInputs( mapAppendOnlyTreeSnapshotFromNoir(rootRollupPublicInputs.previous_archive), mapAppendOnlyTreeSnapshotFromNoir(rootRollupPublicInputs.end_archive), - mapFieldFromNoir(rootRollupPublicInputs.previous_block_hash), - mapFieldFromNoir(rootRollupPublicInputs.end_block_hash), mapFieldFromNoir(rootRollupPublicInputs.end_timestamp), mapFieldFromNoir(rootRollupPublicInputs.end_block_number), mapFieldFromNoir(rootRollupPublicInputs.out_hash), @@ -596,8 +592,6 @@ export function mapBlockRootOrBlockMergePublicInputsFromNoir( return new BlockRootOrBlockMergePublicInputs( mapAppendOnlyTreeSnapshotFromNoir(blockRootOrBlockMergePublicInputs.previous_archive), mapAppendOnlyTreeSnapshotFromNoir(blockRootOrBlockMergePublicInputs.new_archive), - mapFieldFromNoir(blockRootOrBlockMergePublicInputs.previous_block_hash), - mapFieldFromNoir(blockRootOrBlockMergePublicInputs.end_block_hash), mapGlobalVariablesFromNoir(blockRootOrBlockMergePublicInputs.start_global_variables), mapGlobalVariablesFromNoir(blockRootOrBlockMergePublicInputs.end_global_variables), mapFieldFromNoir(blockRootOrBlockMergePublicInputs.out_hash), @@ -668,6 +662,7 @@ function mapBlockRootRollupDataToNoir(data: BlockRootRollupData): BlockRootRollu return { l1_to_l2_roots: mapRootRollupParityInputToNoir(data.l1ToL2Roots), l1_to_l2_message_subtree_sibling_path: mapTuple(data.l1ToL2MessageSubtreeSiblingPath, mapFieldToNoir), + previous_archive_sibling_path: mapTuple(data.previousArchiveSiblingPath, mapFieldToNoir), new_archive_sibling_path: mapTuple(data.newArchiveSiblingPath, mapFieldToNoir), previous_block_header: mapHeaderToNoir(data.previousBlockHeader), prover_id: mapFieldToNoir(data.proverId), diff --git a/yarn-project/prover-client/src/block_builder/light.test.ts b/yarn-project/prover-client/src/block_builder/light.test.ts index 950363b374dd..05ca11b60ad2 100644 --- a/yarn-project/prover-client/src/block_builder/light.test.ts +++ b/yarn-project/prover-client/src/block_builder/light.test.ts @@ -15,7 +15,6 @@ import { import { padArrayEnd, times, timesParallel } from '@aztec/foundation/collection'; import { sha256ToField } from '@aztec/foundation/crypto'; import { Fr } from '@aztec/foundation/fields'; -import { type Logger, createLogger } from '@aztec/foundation/log'; import { type Tuple, assertLength } from '@aztec/foundation/serialize'; import { MembershipWitness } from '@aztec/foundation/trees'; import { ProtocolCircuitVks, TubeVk } from '@aztec/noir-protocol-circuits-types/server/vks'; @@ -54,6 +53,7 @@ import { jest } from '@jest/globals'; import { buildBaseRollupHints, buildHeaderFromCircuitOutputs, + getLastSiblingPath, getRootTreeSiblingPath, getSubtreeSiblingPath, getTreeSnapshot, @@ -64,7 +64,6 @@ jest.setTimeout(50_000); describe('LightBlockBuilder', () => { let simulator: ServerCircuitProver; - let logger: Logger; let globalVariables: GlobalVariables; let l1ToL2Messages: Fr[]; let vkTreeRoot: Fr; @@ -83,7 +82,6 @@ describe('LightBlockBuilder', () => { const expectedTxFee = new Fr(0x2200); beforeAll(() => { - logger = createLogger('prover-client:test:block-builder'); simulator = new TestCircuitProver(); vkTreeRoot = getVKTreeRoot(); emptyProof = makeEmptyRecursiveProof(NESTED_RECURSIVE_PROOF_LENGTH); @@ -248,19 +246,16 @@ describe('LightBlockBuilder', () => { ); const endState = new StateReference(messageTreeSnapshot, partialState); - const expectedHeader = await buildHeaderFromCircuitOutputs( - previousRollups, - parityOutput, - rootOutput, - endState, - logger, - ); + const expectedHeader = buildHeaderFromCircuitOutputs(previousRollups, parityOutput, rootOutput, endState); // Ensure that the expected mana used is the sum of the txs' gas used const expectedManaUsed = txs.reduce((acc, tx) => acc + tx.gasUsed.totalGas.l2Gas, 0); expect(expectedHeader.totalManaUsed.toNumber()).toBe(expectedManaUsed); - expect(await expectedHeader.hash()).toEqual(rootOutput.endBlockHash); + await expectsFork.updateArchive(expectedHeader); + const newArchiveRoot = (await expectsFork.getTreeInfo(MerkleTreeId.ARCHIVE)).root; + expect(newArchiveRoot).toEqual(rootOutput.newArchive.root.toBuffer()); + return expectedHeader; }; @@ -345,6 +340,7 @@ describe('LightBlockBuilder', () => { ); const startArchiveSnapshot = await getTreeSnapshot(MerkleTreeId.ARCHIVE, expectsFork); + const previousArchiveSiblingPath = await getLastSiblingPath(MerkleTreeId.ARCHIVE, expectsFork); const newArchiveSiblingPath = await getRootTreeSiblingPath(MerkleTreeId.ARCHIVE, expectsFork); const blobFields = txs.map(tx => tx.txEffect.toBlobFields()).flat(); const blobs = await Blob.getBlobs(blobFields); @@ -364,6 +360,7 @@ describe('LightBlockBuilder', () => { const data = BlockRootRollupData.from({ l1ToL2Roots: rootParityInput, l1ToL2MessageSubtreeSiblingPath: l1ToL2Snapshot.l1ToL2MessageSubtreeSiblingPath, + previousArchiveSiblingPath, newArchiveSiblingPath, previousBlockHeader, proverId: Fr.ZERO, diff --git a/yarn-project/prover-client/src/orchestrator/block-building-helpers.ts b/yarn-project/prover-client/src/orchestrator/block-building-helpers.ts index 955ca1f66485..e45f5c743d5a 100644 --- a/yarn-project/prover-client/src/orchestrator/block-building-helpers.ts +++ b/yarn-project/prover-client/src/orchestrator/block-building-helpers.ts @@ -16,7 +16,6 @@ import { makeTuple } from '@aztec/foundation/array'; import { padArrayEnd } from '@aztec/foundation/collection'; import { sha256Trunc } from '@aztec/foundation/crypto'; import { Fr } from '@aztec/foundation/fields'; -import type { Logger } from '@aztec/foundation/log'; import { type Tuple, assertLength, serializeToBuffer, toFriendlyJSON } from '@aztec/foundation/serialize'; import { MembershipWitness, MerkleTreeCalculator, computeUnbalancedMerkleRoot } from '@aztec/foundation/trees'; import { getVKTreeRoot } from '@aztec/noir-protocol-circuits-types/vk-tree'; @@ -55,8 +54,6 @@ import { import { Attributes, type Span, runInSpan } from '@aztec/telemetry-client'; import type { MerkleTreeReadOperations } from '@aztec/world-state'; -import { inspect } from 'util'; - /** * Type representing the names of the trees for the base rollup. */ @@ -255,13 +252,12 @@ export const buildBlobHints = runInSpan( export const buildHeaderFromCircuitOutputs = runInSpan( 'BlockBuilderHelpers', 'buildHeaderFromCircuitOutputs', - async ( + ( _span, previousRollupData: BaseOrMergeRollupPublicInputs[], parityPublicInputs: ParityPublicInputs, rootRollupOutputs: BlockRootOrBlockMergePublicInputs, endState: StateReference, - logger?: Logger, ) => { if (previousRollupData.length > 2) { throw new Error(`There can't be more than 2 previous rollups. Received ${previousRollupData.length}.`); @@ -286,7 +282,8 @@ export const buildHeaderFromCircuitOutputs = runInSpan( const accumulatedFees = previousRollupData.reduce((sum, d) => sum.add(d.accumulatedFees), Fr.ZERO); const accumulatedManaUsed = previousRollupData.reduce((sum, d) => sum.add(d.accumulatedManaUsed), Fr.ZERO); - const header = new BlockHeader( + + return new BlockHeader( rootRollupOutputs.previousArchive, contentCommitment, endState, @@ -294,15 +291,6 @@ export const buildHeaderFromCircuitOutputs = runInSpan( accumulatedFees, accumulatedManaUsed, ); - if (!(await header.hash()).equals(rootRollupOutputs.endBlockHash)) { - logger?.error( - `Block header mismatch when building header from circuit outputs.` + - `\n\nHeader: ${inspect(header)}` + - `\n\nCircuit: ${toFriendlyJSON(rootRollupOutputs)}`, - ); - throw new Error(`Block header mismatch when building from circuit outputs`); - } - return header; }, ); @@ -398,6 +386,12 @@ export const validateState = runInSpan( }, ); +export async function getLastSiblingPath(treeId: TID, db: MerkleTreeReadOperations) { + const { size } = await db.getTreeInfo(treeId); + const path = await db.getSiblingPath(treeId, size - 1n); + return padArrayEnd(path.toFields(), Fr.ZERO, getTreeHeight(treeId)); +} + export async function getRootTreeSiblingPath(treeId: TID, db: MerkleTreeReadOperations) { const { size } = await db.getTreeInfo(treeId); const path = await db.getSiblingPath(treeId, size); diff --git a/yarn-project/prover-client/src/orchestrator/block-proving-state.ts b/yarn-project/prover-client/src/orchestrator/block-proving-state.ts index 5ef59db92b2c..708497a4967a 100644 --- a/yarn-project/prover-client/src/orchestrator/block-proving-state.ts +++ b/yarn-project/prover-client/src/orchestrator/block-proving-state.ts @@ -11,7 +11,6 @@ import { } from '@aztec/constants'; import { padArrayEnd } from '@aztec/foundation/collection'; import { Fr } from '@aztec/foundation/fields'; -import type { Logger } from '@aztec/foundation/log'; import type { Tuple } from '@aztec/foundation/serialize'; import { MembershipWitness, type TreeNodeLocation, UnbalancedTreeStore } from '@aztec/foundation/trees'; import { getVKIndex, getVKSiblingPath, getVKTreeRoot } from '@aztec/noir-protocol-circuits-types/vk-tree'; @@ -68,6 +67,7 @@ export class BlockProvingState { private readonly l1ToL2MessageSubtreeSiblingPath: Tuple, private readonly l1ToL2MessageTreeSnapshotAfterInsertion: AppendOnlyTreeSnapshot, private readonly lastArchiveSnapshot: AppendOnlyTreeSnapshot, + private readonly lastArchiveSiblingPath: Tuple, private readonly newArchiveSiblingPath: Tuple, private readonly previousBlockHeader: BlockHeader, private readonly parentEpoch: EpochProvingState, @@ -232,6 +232,7 @@ export class BlockProvingState { const data = BlockRootRollupData.from({ l1ToL2Roots: this.#getRootParityData(this.rootParityProvingOutput!), l1ToL2MessageSubtreeSiblingPath: this.l1ToL2MessageSubtreeSiblingPath, + previousArchiveSiblingPath: this.lastArchiveSiblingPath, newArchiveSiblingPath: this.newArchiveSiblingPath, previousBlockHeader: newBlockHeader, proverId, @@ -267,7 +268,7 @@ export class BlockProvingState { return this.txs[txIndex]; } - public async buildHeaderFromProvingOutputs(logger?: Logger) { + public async buildHeaderFromProvingOutputs() { const previousRollupData = this.totalNumTxs === 0 ? [] @@ -289,7 +290,6 @@ export class BlockProvingState { this.rootParityProvingOutput!.inputs, this.blockRootProvingOutput!.inputs, endState, - logger, ); } @@ -326,6 +326,7 @@ export class BlockProvingState { return BlockRootRollupData.from({ l1ToL2Roots: this.#getRootParityData(this.rootParityProvingOutput!), l1ToL2MessageSubtreeSiblingPath: this.l1ToL2MessageSubtreeSiblingPath, + previousArchiveSiblingPath: this.lastArchiveSiblingPath, newArchiveSiblingPath: this.newArchiveSiblingPath, previousBlockHeader: this.previousBlockHeader, proverId, diff --git a/yarn-project/prover-client/src/orchestrator/epoch-proving-state.ts b/yarn-project/prover-client/src/orchestrator/epoch-proving-state.ts index ee3f626e4207..62d6d77439ef 100644 --- a/yarn-project/prover-client/src/orchestrator/epoch-proving-state.ts +++ b/yarn-project/prover-client/src/orchestrator/epoch-proving-state.ts @@ -73,6 +73,7 @@ export class EpochProvingState { l1ToL2MessageSubtreeSiblingPath: Tuple, l1ToL2MessageTreeSnapshotAfterInsertion: AppendOnlyTreeSnapshot, lastArchiveSnapshot: AppendOnlyTreeSnapshot, + lastArchiveSiblingPath: Tuple, newArchiveSiblingPath: Tuple, previousBlockHeader: BlockHeader, ): BlockProvingState { @@ -84,6 +85,7 @@ export class EpochProvingState { l1ToL2MessageSubtreeSiblingPath, l1ToL2MessageTreeSnapshotAfterInsertion, lastArchiveSnapshot, + lastArchiveSiblingPath, newArchiveSiblingPath, previousBlockHeader, this, diff --git a/yarn-project/prover-client/src/orchestrator/orchestrator.ts b/yarn-project/prover-client/src/orchestrator/orchestrator.ts index e02f5fb51e3b..4d766108ee99 100644 --- a/yarn-project/prover-client/src/orchestrator/orchestrator.ts +++ b/yarn-project/prover-client/src/orchestrator/orchestrator.ts @@ -52,6 +52,7 @@ import { inspect } from 'util'; import { buildBaseRollupHints, buildHeaderAndBodyFromTxs, + getLastSiblingPath, getRootTreeSiblingPath, getSubtreeSiblingPath, getTreeSnapshot, @@ -152,6 +153,7 @@ export class ProvingOrchestrator implements EpochProver { // Get archive snapshot before this block lands const lastArchive = await getTreeSnapshot(MerkleTreeId.ARCHIVE, db); + const lastArchiveSiblingPath = await getLastSiblingPath(MerkleTreeId.ARCHIVE, db); const newArchiveSiblingPath = await getRootTreeSiblingPath(MerkleTreeId.ARCHIVE, db); const blockProvingState = this.provingState!.startNewBlock( @@ -160,6 +162,7 @@ export class ProvingOrchestrator implements EpochProver { l1ToL2MessageSubtreeSiblingPath, l1ToL2MessageTreeSnapshotAfterInsertion, lastArchive, + lastArchiveSiblingPath, newArchiveSiblingPath, previousBlockHeader, ); @@ -674,12 +677,21 @@ export class ProvingOrchestrator implements EpochProver { ), async result => { provingState.setBlockRootRollupProof(result); - const header = await provingState.buildHeaderFromProvingOutputs(logger); + const header = await provingState.buildHeaderFromProvingOutputs(); if (!(await header.hash()).equals(await provingState.block!.header.hash())) { logger.error( - `Block header mismatch\nCircuit:${inspect(header)}\nComputed:${inspect(provingState.block!.header)}`, + `Block header mismatch.\nCircuit: ${inspect(header)}\nComputed: ${inspect(provingState.block!.header)}`, ); - provingState.reject(`Block header hash mismatch`); + provingState.reject(`Block header hash mismatch.`); + } + + const dbArchiveRoot = provingState.block!.archive.root; + const circuitArchiveRoot = result.inputs.newArchive.root; + if (!dbArchiveRoot.equals(circuitArchiveRoot)) { + logger.error( + `New archive root mismatch.\nCircuit: ${result.inputs.newArchive.root}\nComputed: ${dbArchiveRoot}`, + ); + provingState.reject(`New archive root mismatch.`); } logger.debug(`Completed ${rollupType} proof for block ${provingState.block!.number}`); diff --git a/yarn-project/prover-node/src/prover-node-publisher.test.ts b/yarn-project/prover-node/src/prover-node-publisher.test.ts index c47bb587efd3..b75e6a1d2f97 100644 --- a/yarn-project/prover-node/src/prover-node-publisher.test.ts +++ b/yarn-project/prover-node/src/prover-node-publisher.test.ts @@ -137,7 +137,6 @@ describe('prover-node-publisher', () => { // Return the requested block rollup.getBlock.mockImplementation((blockNumber: bigint) => Promise.resolve({ - blockHash: blocks[Number(blockNumber) - 1].endBlockHash.toString(), archive: blocks[Number(blockNumber) - 1].endArchive.root.toString(), slotNumber: 0n, // unused, }), @@ -146,9 +145,7 @@ describe('prover-node-publisher', () => { // We have built a rollup proof of the range fromBlock - toBlock // so we need to set our archives and hashes accordingly const ourPublicInputs = RootRollupPublicInputs.random(); - ourPublicInputs.previousBlockHash = blocks[fromBlock - 2]?.endBlockHash ?? Fr.ZERO; ourPublicInputs.previousArchive = blocks[fromBlock - 2]?.endArchive ?? Fr.ZERO; - ourPublicInputs.endBlockHash = blocks[toBlock - 1]?.endBlockHash ?? Fr.ZERO; ourPublicInputs.endArchive = blocks[toBlock - 1]?.endArchive ?? Fr.ZERO; // Return our public inputs diff --git a/yarn-project/prover-node/src/prover-node-publisher.ts b/yarn-project/prover-node/src/prover-node-publisher.ts index 3d81026f3107..218058a8ce9e 100644 --- a/yarn-project/prover-node/src/prover-node-publisher.ts +++ b/yarn-project/prover-node/src/prover-node-publisher.ts @@ -27,8 +27,6 @@ export type L1SubmitEpochProofArgs = { epochSize: number; previousArchive: Fr; endArchive: Fr; - previousBlockHash: Fr; - endBlockHash: Fr; endTimestamp: Fr; outHash: Fr; proverId: Fr; @@ -159,30 +157,21 @@ export class ProverNodePublisher { throw new Error(`Cannot submit epoch proof for ${fromBlock}-${toBlock} as pending block is ${pending}`); } - // Check the block hash and archive for the immediate block before the epoch + // Check the archive for the immediate block before the epoch const blockLog = await this.rollupContract.getBlock(BigInt(fromBlock - 1)); if (publicInputs.previousArchive.root.toString() !== blockLog.archive) { throw new Error( `Previous archive root mismatch: ${publicInputs.previousArchive.root.toString()} !== ${blockLog.archive}`, ); } - // TODO: Remove zero check once we inject the proper zero blockhash - if (blockLog.blockHash !== Fr.ZERO.toString() && publicInputs.previousBlockHash.toString() !== blockLog.blockHash) { - throw new Error( - `Previous block hash mismatch: ${publicInputs.previousBlockHash.toString()} !== ${blockLog.blockHash}`, - ); - } - // Check the block hash and archive for the last block in the epoch + // Check the archive for the last block in the epoch const endBlockLog = await this.rollupContract.getBlock(BigInt(toBlock)); if (publicInputs.endArchive.root.toString() !== endBlockLog.archive) { throw new Error( `End archive root mismatch: ${publicInputs.endArchive.root.toString()} !== ${endBlockLog.archive}`, ); } - if (publicInputs.endBlockHash.toString() !== endBlockLog.blockHash) { - throw new Error(`End block hash mismatch: ${publicInputs.endBlockHash.toString()} !== ${endBlockLog.blockHash}`); - } // Compare the public inputs computed by the contract with the ones injected const rollupPublicInputs = await this.rollupContract.getEpochProofPublicInputs(this.getSubmitEpochProofArgs(args)); @@ -263,8 +252,6 @@ export class ProverNodePublisher { { previousArchive: args.publicInputs.previousArchive.root.toString(), endArchive: args.publicInputs.endArchive.root.toString(), - previousBlockHash: args.publicInputs.previousBlockHash.toString(), - endBlockHash: args.publicInputs.endBlockHash.toString(), endTimestamp: args.publicInputs.endTimestamp.toBigInt(), outHash: args.publicInputs.outHash.toString(), proverId: EthAddress.fromField(args.publicInputs.proverId).toString(), diff --git a/yarn-project/sequencer-client/src/publisher/sequencer-publisher.ts b/yarn-project/sequencer-client/src/publisher/sequencer-publisher.ts index ab3e9b946e26..1d07c38360da 100644 --- a/yarn-project/sequencer-client/src/publisher/sequencer-publisher.ts +++ b/yarn-project/sequencer-client/src/publisher/sequencer-publisher.ts @@ -41,8 +41,6 @@ type L1ProcessArgs = { header: Buffer; /** A root of the archive tree after the L2 block is applied. */ archive: Buffer; - /** The L2 block's leaf in the archive tree. */ - blockHash: Buffer; /** L2 block blobs containing all tx effects. */ blobs: Blob[]; /** L2 block tx hashes */ @@ -406,7 +404,6 @@ export class SequencerPublisher { const proposeTxArgs = { header: block.header.toBuffer(), archive: block.archive.root.toBuffer(), - blockHash: (await block.header.hash()).toBuffer(), body: block.body.toBuffer(), blobs, attestations, @@ -483,7 +480,6 @@ export class SequencerPublisher { // We are currently not modifying these. See #9963 feeAssetPriceModifier: 0n, }, - blockHash: `0x${encodedData.blockHash.toString('hex')}`, txHashes, }, attestations, @@ -551,7 +547,6 @@ export class SequencerPublisher { const kzg = Blob.getViemKzgInstance(); const { rollupData, simulationResult, blobEvaluationGas } = await this.prepareProposeTx(encodedData, timestamp); const startBlock = await this.l1TxUtils.getBlockNumber(); - const blockHash = await block.hash(); return this.addRequest({ action: 'propose', @@ -603,7 +598,6 @@ export class SequencerPublisher { this.log.error(`Rollup process tx reverted. ${errorMsg ?? 'No error message'}`, undefined, { ...block.getStats(), txHash: receipt.transactionHash, - blockHash, slotNumber: block.header.globalVariables.slotNumber.toBigInt(), }); } diff --git a/yarn-project/stdlib/src/rollup/block_root_or_block_merge_public_inputs.ts b/yarn-project/stdlib/src/rollup/block_root_or_block_merge_public_inputs.ts index f4d96e44febf..48c17e262506 100644 --- a/yarn-project/stdlib/src/rollup/block_root_or_block_merge_public_inputs.ts +++ b/yarn-project/stdlib/src/rollup/block_root_or_block_merge_public_inputs.ts @@ -23,14 +23,6 @@ export class BlockRootOrBlockMergePublicInputs { * Archive tree after adding this block range. */ public newArchive: AppendOnlyTreeSnapshot, - /** - * Identifier of the previous block before the range. - */ - public previousBlockHash: Fr, - /** - * Identifier of the last block in the range. - */ - public endBlockHash: Fr, /** * Global variables for the first block in the range. */ @@ -76,8 +68,6 @@ export class BlockRootOrBlockMergePublicInputs { return new BlockRootOrBlockMergePublicInputs( reader.readObject(AppendOnlyTreeSnapshot), reader.readObject(AppendOnlyTreeSnapshot), - Fr.fromBuffer(reader), - Fr.fromBuffer(reader), reader.readObject(GlobalVariables), reader.readObject(GlobalVariables), Fr.fromBuffer(reader), @@ -97,8 +87,6 @@ export class BlockRootOrBlockMergePublicInputs { return serializeToBuffer( this.previousArchive, this.newArchive, - this.previousBlockHash, - this.endBlockHash, this.startGlobalVariables, this.endGlobalVariables, this.outHash, diff --git a/yarn-project/stdlib/src/rollup/block_root_rollup.ts b/yarn-project/stdlib/src/rollup/block_root_rollup.ts index e8c1c0cc1494..179fec1b1d6a 100644 --- a/yarn-project/stdlib/src/rollup/block_root_rollup.ts +++ b/yarn-project/stdlib/src/rollup/block_root_rollup.ts @@ -25,6 +25,10 @@ export class BlockRootRollupData { * Hint for inserting the new l1 to l2 message subtree. */ public l1ToL2MessageSubtreeSiblingPath: Tuple, + /** + * Hint for checking the hash of previous_block_header is the last leaf of the previous archive. + */ + public previousArchiveSiblingPath: Tuple, /** * Hint for inserting the new block hash to the last archive. */ @@ -73,6 +77,7 @@ export class BlockRootRollupData { return [ fields.l1ToL2Roots, fields.l1ToL2MessageSubtreeSiblingPath, + fields.previousArchiveSiblingPath, fields.newArchiveSiblingPath, fields.previousBlockHeader, fields.proverId, @@ -90,6 +95,7 @@ export class BlockRootRollupData { RootParityInput.fromBuffer(reader, NESTED_RECURSIVE_PROOF_LENGTH), reader.readArray(L1_TO_L2_MSG_SUBTREE_SIBLING_PATH_LENGTH, Fr), reader.readArray(ARCHIVE_HEIGHT, Fr), + reader.readArray(ARCHIVE_HEIGHT, Fr), BlockHeader.fromBuffer(reader), Fr.fromBuffer(reader), ); diff --git a/yarn-project/stdlib/src/rollup/root_rollup.ts b/yarn-project/stdlib/src/rollup/root_rollup.ts index 54e27a9c8134..817cdf7772d4 100644 --- a/yarn-project/stdlib/src/rollup/root_rollup.ts +++ b/yarn-project/stdlib/src/rollup/root_rollup.ts @@ -103,8 +103,6 @@ export class RootRollupPublicInputs { /** Snapshot of archive tree before/after this rollup been processed */ public previousArchive: AppendOnlyTreeSnapshot, public endArchive: AppendOnlyTreeSnapshot, - public previousBlockHash: Fr, - public endBlockHash: Fr, // This is a u64 in nr, but GlobalVariables contains this as a u64 and is mapped to ts as a field, so I'm doing the same here public endTimestamp: Fr, public endBlockNumber: Fr, @@ -120,8 +118,6 @@ export class RootRollupPublicInputs { return [ fields.previousArchive, fields.endArchive, - fields.previousBlockHash, - fields.endBlockHash, fields.endTimestamp, fields.endBlockNumber, fields.outHash, @@ -158,8 +154,6 @@ export class RootRollupPublicInputs { Fr.fromBuffer(reader), Fr.fromBuffer(reader), Fr.fromBuffer(reader), - Fr.fromBuffer(reader), - Fr.fromBuffer(reader), reader.readArray(AZTEC_MAX_EPOCH_DURATION, FeeRecipient), Fr.fromBuffer(reader), Fr.fromBuffer(reader), @@ -194,8 +188,6 @@ export class RootRollupPublicInputs { Fr.random(), Fr.random(), Fr.random(), - Fr.random(), - Fr.random(), makeTuple(AZTEC_MAX_EPOCH_DURATION, FeeRecipient.random), Fr.random(), Fr.random(), diff --git a/yarn-project/stdlib/src/tests/factories.ts b/yarn-project/stdlib/src/tests/factories.ts index 2bbdaf151b7a..777ee1be025c 100644 --- a/yarn-project/stdlib/src/tests/factories.ts +++ b/yarn-project/stdlib/src/tests/factories.ts @@ -703,10 +703,8 @@ export function makeBlockRootOrBlockMergeRollupPublicInputs( return new BlockRootOrBlockMergePublicInputs( makeAppendOnlyTreeSnapshot(seed + 0x200), makeAppendOnlyTreeSnapshot(seed + 0x300), - fr(seed + 0x400), - fr(seed + 0x500), - globalVariables ?? makeGlobalVariables(seed + 0x501), - globalVariables ?? makeGlobalVariables(seed + 0x502), + globalVariables ?? makeGlobalVariables(seed + 0x400), + globalVariables ?? makeGlobalVariables(seed + 0x500), fr(seed + 0x600), makeTuple(AZTEC_MAX_EPOCH_DURATION, () => makeFeeRecipient(seed), 0x700), fr(seed + 0x800), @@ -776,8 +774,9 @@ function makeBlockRootRollupData(seed = 0) { makeRootParityInput(NESTED_RECURSIVE_PROOF_LENGTH, seed + 0x2000), makeTuple(L1_TO_L2_MSG_SUBTREE_SIBLING_PATH_LENGTH, fr, 0x2100), makeTuple(ARCHIVE_HEIGHT, fr, 0x2200), - makeHeader(seed + 0x2300), - fr(seed + 0x2400), + makeTuple(ARCHIVE_HEIGHT, fr, 0x2300), + makeHeader(seed + 0x2400), + fr(seed + 0x2500), ); } @@ -870,18 +869,16 @@ export function makeRootParityInputs(seed = 0): RootParityInputs { */ export function makeRootRollupPublicInputs(seed = 0): RootRollupPublicInputs { return new RootRollupPublicInputs( + makeAppendOnlyTreeSnapshot(seed + 0x100), makeAppendOnlyTreeSnapshot(seed + 0x200), - makeAppendOnlyTreeSnapshot(seed + 0x300), + fr(seed + 0x300), fr(seed + 0x400), fr(seed + 0x500), - fr(seed + 0x600), + makeTuple(AZTEC_MAX_EPOCH_DURATION, () => makeFeeRecipient(seed), 0x600), fr(seed + 0x700), - fr(seed + 0x800), - makeTuple(AZTEC_MAX_EPOCH_DURATION, () => makeFeeRecipient(seed), 0x900), - fr(seed + 0x100), - fr(seed + 0x101), - fr(seed + 0x200), - makeTuple(AZTEC_MAX_EPOCH_DURATION, () => makeBlockBlobPublicInputs(seed), 0x300), + fr(seed + 0x701), + fr(seed + 0x702), + makeTuple(AZTEC_MAX_EPOCH_DURATION, () => makeBlockBlobPublicInputs(seed), 0x800), ); } diff --git a/yarn-project/world-state/src/testing.ts b/yarn-project/world-state/src/testing.ts index b5836dc97ca7..b60b2f977600 100644 --- a/yarn-project/world-state/src/testing.ts +++ b/yarn-project/world-state/src/testing.ts @@ -1,4 +1,4 @@ -import { GENESIS_ARCHIVE_ROOT, GENESIS_BLOCK_HASH } from '@aztec/constants'; +import { GENESIS_ARCHIVE_ROOT } from '@aztec/constants'; import { Fr } from '@aztec/foundation/fields'; import { computeFeePayerBalanceLeafSlot } from '@aztec/protocol-contracts/fee-juice'; import type { AztecAddress } from '@aztec/stdlib/aztec-address'; @@ -10,7 +10,6 @@ async function generateGenesisValues(prefilledPublicData: PublicDataTreeLeaf[]) if (!prefilledPublicData.length) { return { genesisArchiveRoot: new Fr(GENESIS_ARCHIVE_ROOT), - genesisBlockHash: new Fr(GENESIS_BLOCK_HASH), }; } @@ -20,14 +19,11 @@ async function generateGenesisValues(prefilledPublicData: PublicDataTreeLeaf[]) true /* cleanupTmpDir */, prefilledPublicData, ); - const initialHeader = ws.getInitialHeader(); - const genesisBlockHash = await initialHeader.hash(); const genesisArchiveRoot = new Fr((await ws.getCommitted().getTreeInfo(MerkleTreeId.ARCHIVE)).root); await ws.close(); return { genesisArchiveRoot, - genesisBlockHash, }; } @@ -50,11 +46,10 @@ export async function getGenesisValues( prefilledPublicData.sort((a, b) => (b.slot.lt(a.slot) ? 1 : -1)); - const { genesisBlockHash, genesisArchiveRoot } = await generateGenesisValues(prefilledPublicData); + const { genesisArchiveRoot } = await generateGenesisValues(prefilledPublicData); return { genesisArchiveRoot, - genesisBlockHash, prefilledPublicData, }; } From ba2fcb046af7dfe9f0fa646a6d99275d213c93c0 Mon Sep 17 00:00:00 2001 From: Leila Wang Date: Thu, 27 Mar 2025 17:21:59 +0000 Subject: [PATCH 02/10] Update fixtures. --- l1-contracts/test/fixtures/mixed_block_1.json | 6 +++--- l1-contracts/test/fixtures/mixed_block_2.json | 6 +++--- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/l1-contracts/test/fixtures/mixed_block_1.json b/l1-contracts/test/fixtures/mixed_block_1.json index b7fd53ce0914..b46a22e4465c 100644 --- a/l1-contracts/test/fixtures/mixed_block_1.json +++ b/l1-contracts/test/fixtures/mixed_block_1.json @@ -69,9 +69,9 @@ }, "globalVariables": { "blockNumber": 1, - "slotNumber": "0x0000000000000000000000000000000000000000000000000000000000000019", + "slotNumber": "0x000000000000000000000000000000000000000000000000000000000000001b", "chainId": 31337, - "timestamp": 1742999713, + "timestamp": 1736365060, "version": 1, "coinbase": "0xd000439d68f416a72188f6c91df9835e23d1619d", "feeRecipient": "0x27f4b7fbf6f8db148d464396089d97cb994ababc3e1923d24b1e6076b0431b00", @@ -107,7 +107,7 @@ } } }, - "header": "0x0237797d6a2c04d20d4fa06b74482bd970ccd51a43d9b05b57e9b91fa1ae1cae000000010000000000000000000000000000000000000000000000000000000000000004001710ef5972afe6e206225f18e63f9764829144c34e8b9ebfc23de47dc52c3e00089a9d421a82c4a25f7acbebe69e638d5b064fa8a60e018793dcb0be53752c000ca4a4610ad22c97c9161cedcf01faa3619f1b85457f1627d09627b71903a62e33ee2008411c04b99c24b313513d097a0d21a5040b6193d1f978b8226892d60000001000553ea03210e12bf95ed15f0105108f39db784d318cfe9b52cba413618711ce000001000627376bc9d9804095498d2fe262c2dceeb5ecfc696966496eaee65f1798fed5000001802ded0a11981f5a48076e10c1cf9c4d0676488ed8eab842d8864facb270a02bae000001800000000000000000000000000000000000000000000000000000000000007a690000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000190000000000000000000000000000000000000000000000000000000067e410a1d000439d68f416a72188f6c91df9835e23d1619d27f4b7fbf6f8db148d464396089d97cb994ababc3e1923d24b1e6076b0431b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003fc00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "header": "0x0237797d6a2c04d20d4fa06b74482bd970ccd51a43d9b05b57e9b91fa1ae1cae000000010000000000000000000000000000000000000000000000000000000000000004001710ef5972afe6e206225f18e63f9764829144c34e8b9ebfc23de47dc52c3e00089a9d421a82c4a25f7acbebe69e638d5b064fa8a60e018793dcb0be53752c000ca4a4610ad22c97c9161cedcf01faa3619f1b85457f1627d09627b71903a62e33ee2008411c04b99c24b313513d097a0d21a5040b6193d1f978b8226892d60000001000553ea03210e12bf95ed15f0105108f39db784d318cfe9b52cba413618711ce000001000627376bc9d9804095498d2fe262c2dceeb5ecfc696966496eaee65f1798fed5000001802ded0a11981f5a48076e10c1cf9c4d0676488ed8eab842d8864facb270a02bae000001800000000000000000000000000000000000000000000000000000000000007a6900000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000001b00000000000000000000000000000000000000000000000000000000677ed404d000439d68f416a72188f6c91df9835e23d1619d27f4b7fbf6f8db148d464396089d97cb994ababc3e1923d24b1e6076b0431b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003fc00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", "publicInputsHash": "0x00f49a17357aca8d4daee46a18d9ea65d4fdcc77060fcd86bbd3f8b007e7baa8", "blobInputs": "0x0101790d1572a5d851a4cceb4cff4f4ba5fb61408a534c888934360a45fc0e3a1401b4c42e36e09814cad53c703f91c130628e44c7371ec2aa2a1715e26c5f850127aba05f8e5daf4233628e74eedbc03169e05d016d457d9da9de21827686e3af9495352ad63141535bd3f4c2037b5baf0c5d8a5f8f05336b110d714e17282004e99cdd47f0ea63180d892578595339d6a50ef46c6447c438311fb7afd9556323905589f07ea2f1231f66d156bc2e271850ec3450360a38b3d21f042439038b4b", "numTxs": 4 diff --git a/l1-contracts/test/fixtures/mixed_block_2.json b/l1-contracts/test/fixtures/mixed_block_2.json index 5b5ddc5918bd..c2e4daf0c4a8 100644 --- a/l1-contracts/test/fixtures/mixed_block_2.json +++ b/l1-contracts/test/fixtures/mixed_block_2.json @@ -69,9 +69,9 @@ }, "globalVariables": { "blockNumber": 2, - "slotNumber": "0x0000000000000000000000000000000000000000000000000000000000000022", + "slotNumber": "0x0000000000000000000000000000000000000000000000000000000000000024", "chainId": 31337, - "timestamp": 1742999929, + "timestamp": 1736365276, "version": 1, "coinbase": "0xd000439d68f416a72188f6c91df9835e23d1619d", "feeRecipient": "0x27f4b7fbf6f8db148d464396089d97cb994ababc3e1923d24b1e6076b0431b00", @@ -107,7 +107,7 @@ } } }, - "header": "0x155210fd3188716162b2f6c650aa5874466280eb49e68f21f392d746919f6e1b0000000200000000000000000000000000000000000000000000000000000000000000040042a7cffd7591f823ec8fa49858e9f3b03e748b2b9cd6cbdcd948a40028eec600e1371045bd7d2c3e1f19cba5f536f0e82042ba4bc257d4ba19c146215e824200a5c37986316b1f5f2df53fa9ddf4965f539e872f5e1374f28d225540faca26026efb6c2a517de2448119d0f1255757265dbec7cdd2952df929ede666e10944000000202494d2575971bca59a28ddc774d19136f4a294951ab67258c7e9c2d8f980592400000200137a2b2aa3dc64677f9670d964242d8fbf9fbabaa6b05e2c910eb0cb0f7cc3be0000028027d5aa7e8c9cc259ee91c6b2a712904c93d1d1293118fae7026302a75c84d61e000002800000000000000000000000000000000000000000000000000000000000007a690000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000220000000000000000000000000000000000000000000000000000000067e41179d000439d68f416a72188f6c91df9835e23d1619d27f4b7fbf6f8db148d464396089d97cb994ababc3e1923d24b1e6076b0431b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003fc00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "header": "0x155210fd3188716162b2f6c650aa5874466280eb49e68f21f392d746919f6e1b0000000200000000000000000000000000000000000000000000000000000000000000040042a7cffd7591f823ec8fa49858e9f3b03e748b2b9cd6cbdcd948a40028eec600e1371045bd7d2c3e1f19cba5f536f0e82042ba4bc257d4ba19c146215e824200a5c37986316b1f5f2df53fa9ddf4965f539e872f5e1374f28d225540faca26026efb6c2a517de2448119d0f1255757265dbec7cdd2952df929ede666e10944000000202494d2575971bca59a28ddc774d19136f4a294951ab67258c7e9c2d8f980592400000200137a2b2aa3dc64677f9670d964242d8fbf9fbabaa6b05e2c910eb0cb0f7cc3be0000028027d5aa7e8c9cc259ee91c6b2a712904c93d1d1293118fae7026302a75c84d61e000002800000000000000000000000000000000000000000000000000000000000007a6900000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000002400000000000000000000000000000000000000000000000000000000677ed4dcd000439d68f416a72188f6c91df9835e23d1619d27f4b7fbf6f8db148d464396089d97cb994ababc3e1923d24b1e6076b0431b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003fc00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", "publicInputsHash": "0x00e4dc66a369a61cde70f33427261c0364d2da863c68482345d59f8d2101124b", "blobInputs": "0x01017cc9c82841a1d9d8d26e294a1c91b4dd0d731a5a4ea7f8b5cc9e1e0e79b3b0210173d836288004a169ce0164d5260b3916a8322c2e10d767c2cd88bf259de604307f2585ab89042782f6d71a0803c3473773eb1f1496e588abc88f598bcfdeb0def1e7863bb049829d2becab7e29bced7a0c2ddf9e28c398a90d6fba74c5ae8926fc0e4db0002b05ab1bcdb8da59d9ae9b47ac7f4d0b94291442d59902483b167f42cdd7ae92611e46cdfd211f14a2dfdffd98ee363eb40a45a3612f5b773f", "numTxs": 4 From 9a83bf48a16084bf700f9d98415eca0078199014 Mon Sep 17 00:00:00 2001 From: Leila Wang Date: Fri, 11 Apr 2025 17:49:37 +0000 Subject: [PATCH 03/10] Fix. --- yarn-project/aztec/src/cli/cmds/start_prover_node.ts | 3 +-- yarn-project/cli/src/cmds/l1/deploy_l1_contracts.ts | 1 - 2 files changed, 1 insertion(+), 3 deletions(-) diff --git a/yarn-project/aztec/src/cli/cmds/start_prover_node.ts b/yarn-project/aztec/src/cli/cmds/start_prover_node.ts index 01d4163b0bc8..ed3db60d77e7 100644 --- a/yarn-project/aztec/src/cli/cmds/start_prover_node.ts +++ b/yarn-project/aztec/src/cli/cmds/start_prover_node.ts @@ -72,9 +72,8 @@ export async function startProverNode( const initialFundedAccounts = testAccounts.concat(sponsoredFPCAccounts); userLog(`Initial funded accounts: ${initialFundedAccounts.map(a => a.toString()).join(', ')}`); - const { genesisArchiveRoot, genesisBlockHash, prefilledPublicData } = await getGenesisValues(initialFundedAccounts); + const { genesisArchiveRoot, prefilledPublicData } = await getGenesisValues(initialFundedAccounts); - userLog(`Genesis block hash: ${genesisBlockHash.toString()}`); userLog(`Genesis archive root: ${genesisArchiveRoot.toString()}`); if (!Fr.fromHexString(config.genesisArchiveTreeRoot).equals(genesisArchiveRoot)) { diff --git a/yarn-project/cli/src/cmds/l1/deploy_l1_contracts.ts b/yarn-project/cli/src/cmds/l1/deploy_l1_contracts.ts index 04bee9c97fdb..cd93a3efe8ff 100644 --- a/yarn-project/cli/src/cmds/l1/deploy_l1_contracts.ts +++ b/yarn-project/cli/src/cmds/l1/deploy_l1_contracts.ts @@ -69,7 +69,6 @@ export async function deployL1Contracts( log(`StakingAssetHandler Address: ${l1ContractAddresses.stakingAssetHandlerAddress?.toString()}`); log(`Initial funded accounts: ${initialFundedAccounts.map(a => a.toString()).join(', ')}`); log(`Initial validators: ${initialValidators.map(a => a.toString()).join(', ')}`); - log(`Genesis block hash: ${genesisBlockHash.toString()}`); log(`Genesis archive root: ${genesisArchiveRoot.toString()}`); } } From 0ab95c246ef33b2b8e22f49bc9adb7ff11f71560 Mon Sep 17 00:00:00 2001 From: Leila Wang Date: Sat, 12 Apr 2025 12:06:02 +0000 Subject: [PATCH 04/10] Fix payload. --- .../aztec-node/src/sentinel/sentinel.test.ts | 4 +- .../aztec-node/src/sentinel/sentinel.ts | 2 +- .../end-to-end/src/e2e_p2p/reex.test.ts | 4 +- .../attestation_pool_test_suite.ts | 26 +++++------ .../attestation_pool/kv_attestation_pool.ts | 4 +- .../memory_attestation_pool.ts | 8 ++-- .../src/mem_pools/attestation_pool/mocks.ts | 6 +-- .../attestation_validator.test.ts | 8 ++-- .../attestation_validator.ts | 2 +- .../block_proposal_validator.test.ts | 8 ++-- .../block_proposal_validator.ts | 2 +- .../src/publisher/sequencer-publisher.ts | 2 +- .../sequencer-client/src/sequencer/utils.ts | 11 ++--- .../stdlib/src/p2p/block_attestation.test.ts | 10 ++-- .../stdlib/src/p2p/block_attestation.ts | 9 ++-- .../stdlib/src/p2p/block_proposal.test.ts | 10 ++-- yarn-project/stdlib/src/p2p/block_proposal.ts | 9 ++-- .../stdlib/src/p2p/consensus_payload.ts | 12 ++--- .../stdlib/src/p2p/signature_utils.ts | 15 +++--- yarn-project/stdlib/src/tests/mocks.ts | 12 ++--- .../src/duties/validation_service.test.ts | 8 ++-- .../src/duties/validation_service.ts | 2 +- yarn-project/validator-client/src/metrics.ts | 4 +- .../validator-client/src/validator.test.ts | 46 +++++++++---------- .../validator-client/src/validator.ts | 10 ++-- 25 files changed, 103 insertions(+), 131 deletions(-) diff --git a/yarn-project/aztec-node/src/sentinel/sentinel.test.ts b/yarn-project/aztec-node/src/sentinel/sentinel.test.ts index 45ea9521e051..3c51e78aa574 100644 --- a/yarn-project/aztec-node/src/sentinel/sentinel.test.ts +++ b/yarn-project/aztec-node/src/sentinel/sentinel.test.ts @@ -79,9 +79,7 @@ describe('sentinel', () => { signers = times(4, Secp256k1Signer.random); validators = signers.map(signer => signer.address); block = await randomPublishedL2Block(Number(slot)); - attestations = await Promise.all( - signers.map(signer => makeBlockAttestation({ signer, archive: block.block.archive.root })), - ); + attestations = signers.map(signer => makeBlockAttestation({ signer, archive: block.block.archive.root })); proposer = validators[0]; committee = [...validators]; diff --git a/yarn-project/aztec-node/src/sentinel/sentinel.ts b/yarn-project/aztec-node/src/sentinel/sentinel.ts index f6bd67dc9896..320e61bffd0d 100644 --- a/yarn-project/aztec-node/src/sentinel/sentinel.ts +++ b/yarn-project/aztec-node/src/sentinel/sentinel.ts @@ -172,7 +172,7 @@ export class Sentinel implements L2BlockStreamEventHandler { // or all attestations for all proposals in the slot if no block was mined. const archive = this.slotNumberToArchive.get(slot); const attested = await this.p2p.getAttestationsForSlot(slot, archive); - const attestors = new Set(await Promise.all(attested.map(a => a.getSender().then(a => a.toString())))); + const attestors = new Set(attested.map(a => a.getSender().toString())); // We assume that there was a block proposal if at least one of the validators attested to it. // It could be the case that every single validator failed, and we could differentiate it by having diff --git a/yarn-project/end-to-end/src/e2e_p2p/reex.test.ts b/yarn-project/end-to-end/src/e2e_p2p/reex.test.ts index 434b1cec0c6f..ab4090ef2d7b 100644 --- a/yarn-project/end-to-end/src/e2e_p2p/reex.test.ts +++ b/yarn-project/end-to-end/src/e2e_p2p/reex.test.ts @@ -131,9 +131,7 @@ describe('e2e_p2p_reex', () => { const signer = (node as any).sequencer.sequencer.validatorClient.validationService.keyStore; const newProposal = new BlockProposal( proposal.payload, - await signer.signMessage( - await getHashedSignaturePayload(proposal.payload, SignatureDomainSeparator.blockProposal), - ), + await signer.signMessage(getHashedSignaturePayload(proposal.payload, SignatureDomainSeparator.blockProposal)), ); return (node as any).p2pClient.p2pService.propagate(newProposal); diff --git a/yarn-project/p2p/src/mem_pools/attestation_pool/attestation_pool_test_suite.ts b/yarn-project/p2p/src/mem_pools/attestation_pool/attestation_pool_test_suite.ts index 88f55b3aa569..a7296eed81bf 100644 --- a/yarn-project/p2p/src/mem_pools/attestation_pool/attestation_pool_test_suite.ts +++ b/yarn-project/p2p/src/mem_pools/attestation_pool/attestation_pool_test_suite.ts @@ -30,7 +30,7 @@ export function describeAttestationPool(getAttestationPool: () => AttestationPoo const createAttestationsForSlot = (slotNumber: number) => { const archive = Fr.random(); - return Promise.all(signers.map(signer => mockAttestation(signer, slotNumber, archive))); + return signers.map(signer => mockAttestation(signer, slotNumber, archive)); }; // We compare buffers as the objects can have cached values attached to them which are not serialised @@ -45,9 +45,7 @@ export function describeAttestationPool(getAttestationPool: () => AttestationPoo it('should add attestations to pool', async () => { const slotNumber = 420; const archive = Fr.random(); - const attestations = await Promise.all( - signers.slice(0, -1).map(signer => mockAttestation(signer, slotNumber, archive)), - ); + const attestations = signers.slice(0, -1).map(signer => mockAttestation(signer, slotNumber, archive)); await ap.addAttestations(attestations); @@ -63,7 +61,7 @@ export function describeAttestationPool(getAttestationPool: () => AttestationPoo compareAttestations(retrievedAttestationsForSlot, attestations); // Add another one - const newAttestation = await mockAttestation(signers[NUMBER_OF_SIGNERS_PER_TEST - 1], slotNumber, archive); + const newAttestation = mockAttestation(signers[NUMBER_OF_SIGNERS_PER_TEST - 1], slotNumber, archive); await ap.addAttestations([newAttestation]); expect(metricsMock.recordAddedObjects).toHaveBeenCalledWith(1); const retrievedAttestationsAfterAdd = await ap.getAttestationsForSlotAndProposal( @@ -96,7 +94,7 @@ export function describeAttestationPool(getAttestationPool: () => AttestationPoo const attestations: BlockAttestation[] = []; const signer = signers[0]; for (let i = 0; i < NUMBER_OF_SIGNERS_PER_TEST; i++) { - attestations.push(await mockAttestation(signer, slotNumber, archive, txs)); + attestations.push(mockAttestation(signer, slotNumber, archive, txs)); } // Add them to store and check we end up with only one @@ -106,7 +104,7 @@ export function describeAttestationPool(getAttestationPool: () => AttestationPoo expect(retreivedAttestations.length).toBe(1); expect(retreivedAttestations[0].toBuffer()).toEqual(attestations[0].toBuffer()); expect(retreivedAttestations[0].payload.txHashes).toEqual(txs); - expect((await retreivedAttestations[0].getSender()).toString()).toEqual(signer.address.toString()); + expect(retreivedAttestations[0].getSender().toString()).toEqual(signer.address.toString()); // Try adding them on another operation and check they are still not duplicated await ap.addAttestations([attestations[0]]); @@ -115,7 +113,7 @@ export function describeAttestationPool(getAttestationPool: () => AttestationPoo it('should store attestations by differing slot', async () => { const slotNumbers = [1, 2, 3, 4]; - const attestations = await Promise.all(signers.map((signer, i) => mockAttestation(signer, slotNumbers[i]))); + const attestations = signers.map((signer, i) => mockAttestation(signer, slotNumbers[i])); await ap.addAttestations(attestations); @@ -133,9 +131,7 @@ export function describeAttestationPool(getAttestationPool: () => AttestationPoo it('should store attestations by differing slot and archive', async () => { const slotNumbers = [1, 1, 2, 3]; const archives = [Fr.random(), Fr.random(), Fr.random(), Fr.random()]; - const attestations = await Promise.all( - signers.map((signer, i) => mockAttestation(signer, slotNumbers[i], archives[i])), - ); + const attestations = signers.map((signer, i) => mockAttestation(signer, slotNumbers[i], archives[i])); await ap.addAttestations(attestations); @@ -153,7 +149,7 @@ export function describeAttestationPool(getAttestationPool: () => AttestationPoo it('should delete attestations', async () => { const slotNumber = 420; const archive = Fr.random(); - const attestations = await Promise.all(signers.map(signer => mockAttestation(signer, slotNumber, archive))); + const attestations = signers.map(signer => mockAttestation(signer, slotNumber, archive)); const proposalId = attestations[0].archive.toString(); await ap.addAttestations(attestations); @@ -175,7 +171,7 @@ export function describeAttestationPool(getAttestationPool: () => AttestationPoo it('should blanket delete attestations per slot', async () => { const slotNumber = 420; const archive = Fr.random(); - const attestations = await Promise.all(signers.map(signer => mockAttestation(signer, slotNumber, archive))); + const attestations = signers.map(signer => mockAttestation(signer, slotNumber, archive)); const proposalId = attestations[0].archive.toString(); await ap.addAttestations(attestations); @@ -193,12 +189,12 @@ export function describeAttestationPool(getAttestationPool: () => AttestationPoo it('should blanket delete attestations per slot and proposal', async () => { const slotNumber = 420; const archive = Fr.random(); - const attestations = await Promise.all(signers.map(signer => mockAttestation(signer, slotNumber, archive))); + const attestations = signers.map(signer => mockAttestation(signer, slotNumber, archive)); const proposalId = attestations[0].archive.toString(); // Add another set of attestations with a different proposalId, yet the same slot const archive2 = Fr.random(); - const attestations2 = await Promise.all(signers.map(signer => mockAttestation(signer, slotNumber, archive2))); + const attestations2 = signers.map(signer => mockAttestation(signer, slotNumber, archive2)); const proposalId2 = attestations2[0].archive.toString(); await ap.addAttestations(attestations); diff --git a/yarn-project/p2p/src/mem_pools/attestation_pool/kv_attestation_pool.ts b/yarn-project/p2p/src/mem_pools/attestation_pool/kv_attestation_pool.ts index 6ef0ef3ca563..b9297206f3d4 100644 --- a/yarn-project/p2p/src/mem_pools/attestation_pool/kv_attestation_pool.ts +++ b/yarn-project/p2p/src/mem_pools/attestation_pool/kv_attestation_pool.ts @@ -48,7 +48,7 @@ export class KvAttestationPool implements AttestationPool { for (const attestation of attestations) { const slotNumber = attestation.payload.header.globalVariables.slotNumber; const proposalId = attestation.archive; - const address = (await attestation.getSender()).toString(); + const address = attestation.getSender().toString(); await this.attestations.set(this.getAttestationKey(slotNumber, proposalId, address), attestation.toBuffer()); @@ -160,7 +160,7 @@ export class KvAttestationPool implements AttestationPool { for (const attestation of attestations) { const slotNumber = attestation.payload.header.globalVariables.slotNumber; const proposalId = attestation.archive; - const address = (await attestation.getSender()).toString(); + const address = attestation.getSender().toString(); await this.attestations.delete(this.getAttestationKey(slotNumber, proposalId, address)); await this.attestationsForProposal.deleteValue( diff --git a/yarn-project/p2p/src/mem_pools/attestation_pool/memory_attestation_pool.ts b/yarn-project/p2p/src/mem_pools/attestation_pool/memory_attestation_pool.ts index bc21adf94e4f..426476cc7587 100644 --- a/yarn-project/p2p/src/mem_pools/attestation_pool/memory_attestation_pool.ts +++ b/yarn-project/p2p/src/mem_pools/attestation_pool/memory_attestation_pool.ts @@ -34,13 +34,13 @@ export class InMemoryAttestationPool implements AttestationPool { return Promise.resolve([]); } - public async addAttestations(attestations: BlockAttestation[]): Promise { + public addAttestations(attestations: BlockAttestation[]): Promise { for (const attestation of attestations) { // Perf: order and group by slot before insertion const slotNumber = attestation.payload.header.globalVariables.slotNumber; const proposalId = attestation.archive.toString(); - const address = await attestation.getSender(); + const address = attestation.getSender(); const slotAttestationMap = getSlotOrDefault(this.attestations, slotNumber.toBigInt()); const proposalAttestationMap = getProposalOrDefault(slotAttestationMap, proposalId); @@ -118,7 +118,7 @@ export class InMemoryAttestationPool implements AttestationPool { return Promise.resolve(); } - public async deleteAttestations(attestations: BlockAttestation[]): Promise { + public deleteAttestations(attestations: BlockAttestation[]): Promise { for (const attestation of attestations) { const slotNumber = attestation.payload.header.globalVariables.slotNumber; const slotAttestationMap = this.attestations.get(slotNumber.toBigInt()); @@ -126,7 +126,7 @@ export class InMemoryAttestationPool implements AttestationPool { const proposalId = attestation.archive.toString(); const proposalAttestationMap = getProposalOrDefault(slotAttestationMap, proposalId); if (proposalAttestationMap) { - const address = await attestation.getSender(); + const address = attestation.getSender(); proposalAttestationMap.delete(address.toString()); this.log.debug(`Deleted attestation for slot ${slotNumber} from ${address}`); } diff --git a/yarn-project/p2p/src/mem_pools/attestation_pool/mocks.ts b/yarn-project/p2p/src/mem_pools/attestation_pool/mocks.ts index 37176f8033ed..333ed833b701 100644 --- a/yarn-project/p2p/src/mem_pools/attestation_pool/mocks.ts +++ b/yarn-project/p2p/src/mem_pools/attestation_pool/mocks.ts @@ -27,17 +27,17 @@ export const generateAccount = (): LocalAccount => { * @param slot The slot number the attestation is for * @returns A Block Attestation */ -export const mockAttestation = async ( +export const mockAttestation = ( signer: Secp256k1Signer, slot: number = 0, archive: Fr = Fr.random(), txs: TxHash[] = [0, 1, 2, 3, 4, 5].map(() => TxHash.random()), -): Promise => { +): BlockAttestation => { // Use arbitrary numbers for all other than slot const header = makeHeader(1, 2, slot); const payload = new ConsensusPayload(header, archive, txs); - const hash = await getHashedSignaturePayloadEthSignedMessage(payload, SignatureDomainSeparator.blockAttestation); + const hash = getHashedSignaturePayloadEthSignedMessage(payload, SignatureDomainSeparator.blockAttestation); const signature = signer.sign(hash); return new BlockAttestation(payload, signature); diff --git a/yarn-project/p2p/src/msg_validators/attestation_validator/attestation_validator.test.ts b/yarn-project/p2p/src/msg_validators/attestation_validator/attestation_validator.test.ts index a890781fec3a..de7f35331f81 100644 --- a/yarn-project/p2p/src/msg_validators/attestation_validator/attestation_validator.test.ts +++ b/yarn-project/p2p/src/msg_validators/attestation_validator/attestation_validator.test.ts @@ -18,7 +18,7 @@ describe('AttestationValidator', () => { it('returns high tolerance error if slot number is not current or next slot', async () => { // Create an attestation for slot 97 const header = makeHeader(1, 97, 97); - const mockAttestation = await makeBlockAttestation({ + const mockAttestation = makeBlockAttestation({ header, }); @@ -35,7 +35,7 @@ describe('AttestationValidator', () => { it('returns high tolerance error if attester is not in committee', async () => { // The slot is correct, but the attester is not in the committee - const mockAttestation = await makeBlockAttestation({ + const mockAttestation = makeBlockAttestation({ header: makeHeader(1, 100, 100), }); @@ -52,7 +52,7 @@ describe('AttestationValidator', () => { it('returns undefined if attestation is valid (current slot)', async () => { // Create an attestation for slot 100 - const mockAttestation = await makeBlockAttestation({ + const mockAttestation = makeBlockAttestation({ header: makeHeader(1, 100, 100), }); @@ -69,7 +69,7 @@ describe('AttestationValidator', () => { it('returns undefined if attestation is valid (next slot)', async () => { // Setup attestation for next slot - const mockAttestation = await makeBlockAttestation({ + const mockAttestation = makeBlockAttestation({ header: makeHeader(1, 101, 101), }); diff --git a/yarn-project/p2p/src/msg_validators/attestation_validator/attestation_validator.ts b/yarn-project/p2p/src/msg_validators/attestation_validator/attestation_validator.ts index 3b3c27bcfc51..f8b3b3acd597 100644 --- a/yarn-project/p2p/src/msg_validators/attestation_validator/attestation_validator.ts +++ b/yarn-project/p2p/src/msg_validators/attestation_validator/attestation_validator.ts @@ -16,7 +16,7 @@ export class AttestationValidator implements P2PValidator { return PeerErrorSeverity.HighToleranceError; } - const attester = await message.getSender(); + const attester = message.getSender(); if (!(await this.epochCache.isInCommittee(attester))) { return PeerErrorSeverity.HighToleranceError; } diff --git a/yarn-project/p2p/src/msg_validators/block_proposal_validator/block_proposal_validator.test.ts b/yarn-project/p2p/src/msg_validators/block_proposal_validator/block_proposal_validator.test.ts index e8d46b33dfeb..cb36264be639 100644 --- a/yarn-project/p2p/src/msg_validators/block_proposal_validator/block_proposal_validator.test.ts +++ b/yarn-project/p2p/src/msg_validators/block_proposal_validator/block_proposal_validator.test.ts @@ -19,7 +19,7 @@ describe('BlockProposalValidator', () => { it('returns high tolerance error if slot number is not current or next slot', async () => { // Create a block proposal for slot 97 - const mockProposal = await makeBlockProposal({ + const mockProposal = makeBlockProposal({ header: makeHeader(1, 97, 97), }); @@ -41,7 +41,7 @@ describe('BlockProposalValidator', () => { const invalidProposer = Secp256k1Signer.random(); // Create a block proposal with correct slot but wrong proposer - const mockProposal = await makeBlockProposal({ + const mockProposal = makeBlockProposal({ header: makeHeader(1, 100, 100), signer: invalidProposer, }); @@ -63,7 +63,7 @@ describe('BlockProposalValidator', () => { const nextProposer = Secp256k1Signer.random(); // Create a block proposal for current slot with correct proposer - const mockProposal = await makeBlockProposal({ + const mockProposal = makeBlockProposal({ header: makeHeader(1, 100, 100), signer: currentProposer, }); @@ -85,7 +85,7 @@ describe('BlockProposalValidator', () => { const nextProposer = Secp256k1Signer.random(); // Create a block proposal for next slot with correct proposer - const mockProposal = await makeBlockProposal({ + const mockProposal = makeBlockProposal({ header: makeHeader(1, 101, 101), signer: nextProposer, }); diff --git a/yarn-project/p2p/src/msg_validators/block_proposal_validator/block_proposal_validator.ts b/yarn-project/p2p/src/msg_validators/block_proposal_validator/block_proposal_validator.ts index 11174dd89a28..35c9100ea81d 100644 --- a/yarn-project/p2p/src/msg_validators/block_proposal_validator/block_proposal_validator.ts +++ b/yarn-project/p2p/src/msg_validators/block_proposal_validator/block_proposal_validator.ts @@ -19,7 +19,7 @@ export class BlockProposalValidator implements P2PValidator { } // Check that the block proposal is from the current or next proposer - const proposer = await block.getSender(); + const proposer = block.getSender(); if (!proposer.equals(currentProposer) && !proposer.equals(nextProposer)) { return PeerErrorSeverity.HighToleranceError; } diff --git a/yarn-project/sequencer-client/src/publisher/sequencer-publisher.ts b/yarn-project/sequencer-client/src/publisher/sequencer-publisher.ts index c4e6ec3e9de6..2cff37d55f6b 100644 --- a/yarn-project/sequencer-client/src/publisher/sequencer-publisher.ts +++ b/yarn-project/sequencer-client/src/publisher/sequencer-publisher.ts @@ -400,7 +400,7 @@ export class SequencerPublisher { ): Promise { const consensusPayload = new ConsensusPayload(block.header, block.archive.root, txHashes ?? []); - const digest = await getHashedSignaturePayload(consensusPayload, SignatureDomainSeparator.blockAttestation); + const digest = getHashedSignaturePayload(consensusPayload, SignatureDomainSeparator.blockAttestation); const blobs = await Blob.getBlobs(block.body.toBlobFields()); const proposeTxArgs = { diff --git a/yarn-project/sequencer-client/src/sequencer/utils.ts b/yarn-project/sequencer-client/src/sequencer/utils.ts index f92198803e34..7f98c6fa165f 100644 --- a/yarn-project/sequencer-client/src/sequencer/utils.ts +++ b/yarn-project/sequencer-client/src/sequencer/utils.ts @@ -50,18 +50,13 @@ export function sequencerStateToNumber(state: SequencerState): number { * * @todo: perform this logic within the memory attestation store instead? */ -export async function orderAttestations( - attestations: BlockAttestation[], - orderAddresses: EthAddress[], -): Promise { +export function orderAttestations(attestations: BlockAttestation[], orderAddresses: EthAddress[]): Signature[] { // Create a map of sender addresses to BlockAttestations const attestationMap = new Map(); for (const attestation of attestations) { - const sender = await attestation.getSender(); - if (sender) { - attestationMap.set(sender.toString(), attestation); - } + const sender = attestation.getSender(); + attestationMap.set(sender.toString(), attestation); } // Create the ordered array based on the orderAddresses, else return an empty signature diff --git a/yarn-project/stdlib/src/p2p/block_attestation.test.ts b/yarn-project/stdlib/src/p2p/block_attestation.test.ts index 9b35966b94c4..bb44d0733858 100644 --- a/yarn-project/stdlib/src/p2p/block_attestation.test.ts +++ b/yarn-project/stdlib/src/p2p/block_attestation.test.ts @@ -10,25 +10,25 @@ describe('Block Attestation serialization / deserialization', () => { expect(deserialized).toEqual(serialized); }; - it('Should serialize / deserialize', async () => { - const attestation = await makeBlockAttestation(); + it('Should serialize / deserialize', () => { + const attestation = makeBlockAttestation(); const serialized = attestation.toBuffer(); const deserialized = BlockAttestation.fromBuffer(serialized); checkEquivalence(attestation, deserialized); }); - it('Should serialize / deserialize + recover sender', async () => { + it('Should serialize / deserialize + recover sender', () => { const account = Secp256k1Signer.random(); - const attestation = await makeBlockAttestation({ signer: account }); + const attestation = makeBlockAttestation({ signer: account }); const serialized = attestation.toBuffer(); const deserialized = BlockAttestation.fromBuffer(serialized); checkEquivalence(attestation, deserialized); // Recover signature - const sender = await deserialized.getSender(); + const sender = deserialized.getSender(); expect(sender).toEqual(account.address); }); }); diff --git a/yarn-project/stdlib/src/p2p/block_attestation.ts b/yarn-project/stdlib/src/p2p/block_attestation.ts index ae4832724ac4..079ee7c38e8e 100644 --- a/yarn-project/stdlib/src/p2p/block_attestation.ts +++ b/yarn-project/stdlib/src/p2p/block_attestation.ts @@ -70,13 +70,10 @@ export class BlockAttestation extends Gossipable { * Lazily evaluate and cache the sender of the attestation * @returns The sender of the attestation */ - async getSender(): Promise { + getSender(): EthAddress { if (!this.sender) { // Recover the sender from the attestation - const hashed = await getHashedSignaturePayloadEthSignedMessage( - this.payload, - SignatureDomainSeparator.blockAttestation, - ); + const hashed = getHashedSignaturePayloadEthSignedMessage(this.payload, SignatureDomainSeparator.blockAttestation); // Cache the sender for later use this.sender = recoverAddress(hashed, this.signature); } @@ -84,7 +81,7 @@ export class BlockAttestation extends Gossipable { return this.sender; } - getPayload(): Promise { + getPayload(): Buffer { return this.payload.getPayloadToSign(SignatureDomainSeparator.blockAttestation); } diff --git a/yarn-project/stdlib/src/p2p/block_proposal.test.ts b/yarn-project/stdlib/src/p2p/block_proposal.test.ts index da480c91bd74..08128dc56178 100644 --- a/yarn-project/stdlib/src/p2p/block_proposal.test.ts +++ b/yarn-project/stdlib/src/p2p/block_proposal.test.ts @@ -10,25 +10,25 @@ describe('Block Proposal serialization / deserialization', () => { expect(deserialized).toEqual(serialized); }; - it('Should serialize / deserialize', async () => { - const proposal = await makeBlockProposal(); + it('Should serialize / deserialize', () => { + const proposal = makeBlockProposal(); const serialized = proposal.toBuffer(); const deserialized = BlockProposal.fromBuffer(serialized); checkEquivalence(proposal, deserialized); }); - it('Should serialize / deserialize + recover sender', async () => { + it('Should serialize / deserialize + recover sender', () => { const account = Secp256k1Signer.random(); - const proposal = await makeBlockProposal({ signer: account }); + const proposal = makeBlockProposal({ signer: account }); const serialized = proposal.toBuffer(); const deserialized = BlockProposal.fromBuffer(serialized); checkEquivalence(proposal, deserialized); // Recover signature - const sender = await deserialized.getSender(); + const sender = deserialized.getSender(); expect(sender).toEqual(account.address); }); }); diff --git a/yarn-project/stdlib/src/p2p/block_proposal.ts b/yarn-project/stdlib/src/p2p/block_proposal.ts index ca2c0106244d..dbe204e9daf4 100644 --- a/yarn-project/stdlib/src/p2p/block_proposal.ts +++ b/yarn-project/stdlib/src/p2p/block_proposal.ts @@ -61,7 +61,7 @@ export class BlockProposal extends Gossipable { payload: ConsensusPayload, payloadSigner: (payload: Buffer32) => Promise, ) { - const hashed = await getHashedSignaturePayload(payload, SignatureDomainSeparator.blockProposal); + const hashed = getHashedSignaturePayload(payload, SignatureDomainSeparator.blockProposal); const sig = await payloadSigner(hashed); return new BlockProposal(payload, sig); @@ -70,12 +70,9 @@ export class BlockProposal extends Gossipable { /**Get Sender * Lazily evaluate the sender of the proposal; result is cached */ - async getSender() { + getSender() { if (!this.sender) { - const hashed = await getHashedSignaturePayloadEthSignedMessage( - this.payload, - SignatureDomainSeparator.blockProposal, - ); + const hashed = getHashedSignaturePayloadEthSignedMessage(this.payload, SignatureDomainSeparator.blockProposal); // Cache the sender for later use this.sender = recoverAddress(hashed, this.signature); } diff --git a/yarn-project/stdlib/src/p2p/consensus_payload.ts b/yarn-project/stdlib/src/p2p/consensus_payload.ts index 809fcbe72250..ea1f11bb57fb 100644 --- a/yarn-project/stdlib/src/p2p/consensus_payload.ts +++ b/yarn-project/stdlib/src/p2p/consensus_payload.ts @@ -38,18 +38,12 @@ export class ConsensusPayload implements Signable { return [fields.header, fields.archive, fields.txHashes] as const; } - async getPayloadToSign(domainSeparator: SignatureDomainSeparator): Promise { - const abi = parseAbiParameters('uint8, (bytes32, bytes32, (uint256), bytes, bytes32[])'); + getPayloadToSign(domainSeparator: SignatureDomainSeparator): Buffer { + const abi = parseAbiParameters('uint8, (bytes32, (uint256), bytes, bytes32[])'); const txArray = this.txHashes.map(tx => tx.toString()); const encodedData = encodeAbiParameters(abi, [ domainSeparator, - [ - this.archive.toString(), - (await this.header.hash()).toString(), - [0n] /* @todo See #9963 */, - this.header.toString(), - txArray, - ], + [this.archive.toString(), [0n] /* @todo See #9963 */, this.header.toString(), txArray], ] as const); return hexToBuffer(encodedData); diff --git a/yarn-project/stdlib/src/p2p/signature_utils.ts b/yarn-project/stdlib/src/p2p/signature_utils.ts index 49355ebe7e0d..4c05ccb38231 100644 --- a/yarn-project/stdlib/src/p2p/signature_utils.ts +++ b/yarn-project/stdlib/src/p2p/signature_utils.ts @@ -7,7 +7,7 @@ export enum SignatureDomainSeparator { } export interface Signable { - getPayloadToSign(domainSeparator: SignatureDomainSeparator): Promise; + getPayloadToSign(domainSeparator: SignatureDomainSeparator): Buffer; } /** @@ -15,11 +15,8 @@ export interface Signable { * @param s - The `Signable` to sign * @returns The hashed payload for the signature of the `Signable` */ -export async function getHashedSignaturePayload( - s: Signable, - domainSeparator: SignatureDomainSeparator, -): Promise { - return Buffer32.fromBuffer(keccak256(await s.getPayloadToSign(domainSeparator))); +export function getHashedSignaturePayload(s: Signable, domainSeparator: SignatureDomainSeparator): Buffer32 { + return Buffer32.fromBuffer(keccak256(s.getPayloadToSign(domainSeparator))); } /** @@ -27,10 +24,10 @@ export async function getHashedSignaturePayload( * @param s - the `Signable` to sign * @returns The hashed payload for the signature of the `Signable` as an Ethereum signed message */ -export async function getHashedSignaturePayloadEthSignedMessage( +export function getHashedSignaturePayloadEthSignedMessage( s: Signable, domainSeparator: SignatureDomainSeparator, -): Promise { - const payload = await getHashedSignaturePayload(s, domainSeparator); +): Buffer32 { + const payload = getHashedSignaturePayload(s, domainSeparator); return makeEthSignDigest(payload); } diff --git a/yarn-project/stdlib/src/tests/mocks.ts b/yarn-project/stdlib/src/tests/mocks.ts index 5ac0e9d96ca0..9e947cefaa63 100644 --- a/yarn-project/stdlib/src/tests/mocks.ts +++ b/yarn-project/stdlib/src/tests/mocks.ts @@ -221,7 +221,7 @@ export interface MakeConsensusPayloadOptions { txHashes?: TxHash[]; } -const makeAndSignConsensusPayload = async ( +const makeAndSignConsensusPayload = ( domainSeparator: SignatureDomainSeparator, options?: MakeConsensusPayloadOptions, ) => { @@ -238,19 +238,19 @@ const makeAndSignConsensusPayload = async ( txHashes, }); - const hash = await getHashedSignaturePayloadEthSignedMessage(payload, domainSeparator); + const hash = getHashedSignaturePayloadEthSignedMessage(payload, domainSeparator); const signature = signer.sign(hash); return { payload, signature }; }; -export const makeBlockProposal = async (options?: MakeConsensusPayloadOptions): Promise => { - const { payload, signature } = await makeAndSignConsensusPayload(SignatureDomainSeparator.blockProposal, options); +export const makeBlockProposal = (options?: MakeConsensusPayloadOptions): BlockProposal => { + const { payload, signature } = makeAndSignConsensusPayload(SignatureDomainSeparator.blockProposal, options); return new BlockProposal(payload, signature); }; // TODO(https://github.com/AztecProtocol/aztec-packages/issues/8028) -export const makeBlockAttestation = async (options?: MakeConsensusPayloadOptions): Promise => { - const { payload, signature } = await makeAndSignConsensusPayload(SignatureDomainSeparator.blockAttestation, options); +export const makeBlockAttestation = (options?: MakeConsensusPayloadOptions): BlockAttestation => { + const { payload, signature } = makeAndSignConsensusPayload(SignatureDomainSeparator.blockAttestation, options); return new BlockAttestation(payload, signature); }; diff --git a/yarn-project/validator-client/src/duties/validation_service.test.ts b/yarn-project/validator-client/src/duties/validation_service.test.ts index 68126331b6b9..1b19684949d4 100644 --- a/yarn-project/validator-client/src/duties/validation_service.test.ts +++ b/yarn-project/validator-client/src/duties/validation_service.test.ts @@ -20,14 +20,14 @@ describe('ValidationService', () => { it('creates a proposal', async () => { const { payload: { header, archive, txHashes }, - } = await makeBlockProposal(); + } = makeBlockProposal(); const proposal = await service.createBlockProposal(header, archive, txHashes); - await expect(proposal.getSender()).resolves.toEqual(store.getAddress()); + expect(proposal.getSender()).toEqual(store.getAddress()); }); it('attests to proposal', async () => { - const proposal = await makeBlockProposal(); + const proposal = makeBlockProposal(); const attestation = await service.attestToProposal(proposal); - await expect(attestation.getSender()).resolves.toEqual(store.getAddress()); + expect(attestation.getSender()).toEqual(store.getAddress()); }); }); diff --git a/yarn-project/validator-client/src/duties/validation_service.ts b/yarn-project/validator-client/src/duties/validation_service.ts index a60aeafeeebf..5f61267cd44b 100644 --- a/yarn-project/validator-client/src/duties/validation_service.ts +++ b/yarn-project/validator-client/src/duties/validation_service.ts @@ -37,7 +37,7 @@ export class ValidationService { // TODO(https://github.com/AztecProtocol/aztec-packages/issues/7961): check that the current validator is correct const buf = Buffer32.fromBuffer( - keccak256(await proposal.payload.getPayloadToSign(SignatureDomainSeparator.blockAttestation)), + keccak256(proposal.payload.getPayloadToSign(SignatureDomainSeparator.blockAttestation)), ); const sig = await this.keyStore.signMessage(buf); return new BlockAttestation(proposal.payload, sig); diff --git a/yarn-project/validator-client/src/metrics.ts b/yarn-project/validator-client/src/metrics.ts index 39d296df4474..89bf5ba72c45 100644 --- a/yarn-project/validator-client/src/metrics.ts +++ b/yarn-project/validator-client/src/metrics.ts @@ -40,10 +40,10 @@ export class ValidatorMetrics { this.reExecutionTime.record(time); } - public async recordFailedReexecution(proposal: BlockProposal) { + public recordFailedReexecution(proposal: BlockProposal) { this.failedReexecutionCounter.add(1, { [Attributes.STATUS]: 'failed', - [Attributes.BLOCK_PROPOSER]: (await proposal.getSender())?.toString(), + [Attributes.BLOCK_PROPOSER]: proposal.getSender().toString(), }); } } diff --git a/yarn-project/validator-client/src/validator.test.ts b/yarn-project/validator-client/src/validator.test.ts index 166fe1cce3f8..0e0836cceae5 100644 --- a/yarn-project/validator-client/src/validator.test.ts +++ b/yarn-project/validator-client/src/validator.test.ts @@ -60,7 +60,7 @@ describe('ValidationService', () => { config.validatorReexecute = true; p2pClient.getTxByHash.mockImplementation(() => Promise.resolve(mockTx())); const val = ValidatorClient.new(config, epochCache, p2pClient); - await expect(val.reExecuteTransactions(await makeBlockProposal())).rejects.toThrow(BlockBuilderNotProvidedError); + await expect(val.reExecuteTransactions(makeBlockProposal())).rejects.toThrow(BlockBuilderNotProvidedError); }); it('Should create a valid block proposal', async () => { @@ -73,11 +73,11 @@ describe('ValidationService', () => { expect(blockProposal).toBeDefined(); const validatorAddress = EthAddress.fromString(validatorAccount.address); - expect(await blockProposal?.getSender()).toEqual(validatorAddress); + expect(blockProposal?.getSender()).toEqual(validatorAddress); }); it('Should a timeout if we do not collect enough attestations in time', async () => { - const proposal = await makeBlockProposal(); + const proposal = makeBlockProposal(); await expect(validatorClient.collectAttestations(proposal, 2, new Date(dateProvider.now() + 100))).rejects.toThrow( AttestationTimeoutError, @@ -85,7 +85,7 @@ describe('ValidationService', () => { }); it('Should throw an error if the transactions are not available', async () => { - const proposal = await makeBlockProposal(); + const proposal = makeBlockProposal(); // mock the p2pClient.getTxStatus to return undefined for all transactions p2pClient.getTxStatus.mockResolvedValue(undefined); @@ -98,16 +98,16 @@ describe('ValidationService', () => { }); it('Should not return an attestation if re-execution fails', async () => { - const proposal = await makeBlockProposal(); + const proposal = makeBlockProposal(); // mock the p2pClient.getTxStatus to return undefined for all transactions p2pClient.getTxStatus.mockResolvedValue(undefined); - epochCache.getProposerInCurrentOrNextSlot.mockImplementation(async () => ({ - currentProposer: await proposal.getSender(), - nextProposer: await proposal.getSender(), + epochCache.getProposerInCurrentOrNextSlot.mockResolvedValue({ + currentProposer: proposal.getSender(), + nextProposer: proposal.getSender(), currentSlot: proposal.slotNumber.toBigInt(), nextSlot: proposal.slotNumber.toBigInt() + 1n, - })); + }); epochCache.isInCommittee.mockResolvedValue(true); const val = ValidatorClient.new(config, epochCache, p2pClient); @@ -120,15 +120,15 @@ describe('ValidationService', () => { }); it('Should not return an attestation if the validator is not in the committee', async () => { - const proposal = await makeBlockProposal(); + const proposal = makeBlockProposal(); // Setup epoch cache mocks - epochCache.getProposerInCurrentOrNextSlot.mockImplementation(async () => ({ - currentProposer: await proposal.getSender(), - nextProposer: await proposal.getSender(), + epochCache.getProposerInCurrentOrNextSlot.mockResolvedValue({ + currentProposer: proposal.getSender(), + nextProposer: proposal.getSender(), currentSlot: proposal.slotNumber.toBigInt(), nextSlot: proposal.slotNumber.toBigInt() + 1n, - })); + }); epochCache.isInCommittee.mockImplementation(() => Promise.resolve(false)); const attestation = await validatorClient.attestToProposal(proposal); @@ -136,7 +136,7 @@ describe('ValidationService', () => { }); it('Should not return an attestation if the proposer is not the current proposer', async () => { - const proposal = await makeBlockProposal(); + const proposal = makeBlockProposal(); // Setup epoch cache mocks epochCache.getProposerInCurrentOrNextSlot.mockImplementation(() => @@ -154,15 +154,15 @@ describe('ValidationService', () => { }); it('Should not return an attestation if the proposal is not for the current or next slot', async () => { - const proposal = await makeBlockProposal(); + const proposal = makeBlockProposal(); // Setup epoch cache mocks - epochCache.getProposerInCurrentOrNextSlot.mockImplementation(async () => ({ - currentProposer: await proposal.getSender(), - nextProposer: await proposal.getSender(), + epochCache.getProposerInCurrentOrNextSlot.mockResolvedValue({ + currentProposer: proposal.getSender(), + nextProposer: proposal.getSender(), currentSlot: proposal.slotNumber.toBigInt() + 20n, nextSlot: proposal.slotNumber.toBigInt() + 21n, - })); + }); epochCache.isInCommittee.mockImplementation(() => Promise.resolve(true)); const attestation = await validatorClient.attestToProposal(proposal); @@ -177,14 +177,14 @@ describe('ValidationService', () => { const archive = Fr.random(); const txHashes = [0, 1, 2, 3, 4, 5].map(() => TxHash.random()); - const proposal = await makeBlockProposal({ signer, archive, txHashes }); + const proposal = makeBlockProposal({ signer, archive, txHashes }); // Mock the attestations to be returned - const expectedAttestations = await Promise.all([ + const expectedAttestations = [ makeBlockAttestation({ signer, archive, txHashes }), makeBlockAttestation({ signer: attestor1, archive, txHashes }), makeBlockAttestation({ signer: attestor2, archive, txHashes }), - ]); + ]; p2pClient.getAttestationsForSlot.mockImplementation((slot, proposalId) => { if ( slot === proposal.payload.header.globalVariables.slotNumber.toBigInt() && diff --git a/yarn-project/validator-client/src/validator.ts b/yarn-project/validator-client/src/validator.ts index 20c2fd2f42f8..006aef230754 100644 --- a/yarn-project/validator-client/src/validator.ts +++ b/yarn-project/validator-client/src/validator.ts @@ -259,18 +259,18 @@ export class ValidatorClient extends WithTracer implements Validator { this.log.verbose(`Transaction re-execution complete`); if (numFailedTxs > 0) { - await this.metrics.recordFailedReexecution(proposal); + this.metrics.recordFailedReexecution(proposal); throw new ReExFailedTxsError(numFailedTxs); } if (block.body.txEffects.length !== txHashes.length) { - await this.metrics.recordFailedReexecution(proposal); + this.metrics.recordFailedReexecution(proposal); throw new ReExTimeoutError(); } // This function will throw an error if state updates do not match if (!block.archive.root.equals(proposal.archive)) { - await this.metrics.recordFailedReexecution(proposal); + this.metrics.recordFailedReexecution(proposal); throw new ReExStateMismatchError(); } } @@ -336,9 +336,9 @@ export class ValidatorClient extends WithTracer implements Validator { let attestations: BlockAttestation[] = []; while (true) { const collectedAttestations = await this.p2pClient.getAttestationsForSlot(slot, proposalId); - const oldSenders = await Promise.all(attestations.map(attestation => attestation.getSender())); + const oldSenders = attestations.map(attestation => attestation.getSender()); for (const collected of collectedAttestations) { - const collectedSender = await collected.getSender(); + const collectedSender = collected.getSender(); if (!collectedSender.equals(me) && !oldSenders.some(sender => sender.equals(collectedSender))) { this.log.debug(`Received attestation for slot ${slot} from ${collectedSender.toString()}`); } From 12e8069bd284f303dbc6dcf8163deab53de36f97 Mon Sep 17 00:00:00 2001 From: Leila Wang Date: Sat, 12 Apr 2025 12:29:29 +0000 Subject: [PATCH 05/10] Lint. --- yarn-project/end-to-end/src/e2e_p2p/gossip_network.test.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/yarn-project/end-to-end/src/e2e_p2p/gossip_network.test.ts b/yarn-project/end-to-end/src/e2e_p2p/gossip_network.test.ts index 7c64c73402a2..b4436711e9df 100644 --- a/yarn-project/end-to-end/src/e2e_p2p/gossip_network.test.ts +++ b/yarn-project/end-to-end/src/e2e_p2p/gossip_network.test.ts @@ -126,7 +126,7 @@ describe('e2e_p2p_network', () => { const [block] = await dataStore.getBlocks(blockNumber, blockNumber); const payload = ConsensusPayload.fromBlock(block.block); const attestations = block.signatures.filter(s => !s.isEmpty).map(sig => new BlockAttestation(payload, sig)); - const signers = await Promise.all(attestations.map(att => att.getSender().then(s => s.toString()))); + const signers = attestations.map(att => att.getSender().toString()); t.logger.info(`Attestation signers`, { signers }); // Check that the signers found are part of the proposer nodes to ensure the archiver fetched them right From 2e43d1de24233ca7ca28e32b9d758c0119062900 Mon Sep 17 00:00:00 2001 From: Leila Wang Date: Sat, 12 Apr 2025 14:11:17 +0000 Subject: [PATCH 06/10] Update fixtures. --- .../crates/private-kernel-init/Prover.toml | 298 +++--- .../crates/private-kernel-inner/Prover.toml | 686 ++++++------- .../crates/private-kernel-reset/Prover.toml | 262 ++--- .../private-kernel-tail-to-public/Prover.toml | 244 ++--- .../crates/private-kernel-tail/Prover.toml | 352 +++---- .../crates/rollup-base-private/Prover.toml | 312 +++--- .../crates/rollup-base-public/Prover.toml | 346 +++---- .../crates/rollup-block-merge/Prover.toml | 568 ++++++----- .../crates/rollup-block-root/Prover.toml | 925 +++++++++--------- .../crates/rollup-merge/Prover.toml | 502 +++++----- .../crates/rollup-root/Prover.toml | 584 ++++++----- 11 files changed, 2551 insertions(+), 2528 deletions(-) diff --git a/noir-projects/noir-protocol-circuits/crates/private-kernel-init/Prover.toml b/noir-projects/noir-protocol-circuits/crates/private-kernel-init/Prover.toml index 32f5256bbb84..a28135893ba3 100644 --- a/noir-projects/noir-protocol-circuits/crates/private-kernel-init/Prover.toml +++ b/noir-projects/noir-protocol-circuits/crates/private-kernel-init/Prover.toml @@ -1,17 +1,17 @@ -vk_tree_root = "0x22a749df2f64e23077f364a4efdd544e0a0666eb43bd1560f5a698b10997c43c" -protocol_contract_tree_root = "0x16862f3a312325ba6b37abe1073a51ffb333ee32fbaa437454dce33423766de6" +vk_tree_root = "0x035e62aad06a66ce8d2a9d112a620e2337018ff2c763061808a24ea0f220ffbc" +protocol_contract_tree_root = "0x071f2e01b58eff84ebe1608c9eccf21bf2d51ac74cac3816a3dee8372cdb0b7d" is_private_only = false first_nullifier_hint = "0x0000000000000000000000000000000000000000000000000000000000000000" [tx_request] -args_hash = "0x06d2c5bac233e7da10229d62e1c2b1e27af7cf3988726db9cde4de1a511ac291" +args_hash = "0x1bf4f5bd9ddfa8708cbc0b2ab2b7bb7ec8f7fb67d0cab00de73c4f809c1e49a0" [tx_request.origin] - inner = "0x1fbffb7e3dd073d1ff0f74491a59a89d1da4ed5f6fd76188dfd7a2c682719495" + inner = "0x2cf807d522bb2fda2c20e097a5c3eb396846b6f9c889822715185867baf463f2" [tx_request.tx_context] chain_id = "0x0000000000000000000000000000000000000000000000000000000000007a69" - version = "0x0000000000000000000000000000000000000000000000000000000000000001" + version = "0x00000000000000000000000000000000000000000000000000000000e6f03fcf" [tx_request.tx_context.gas_settings.gas_limits] da_gas = "0x000000000000000000000000000000000000000000000000000000003b9aca00" @@ -23,7 +23,7 @@ l2_gas = "0x00000000000000000000000000000000000000000000000000000000005b8d80" [tx_request.tx_context.gas_settings.max_fees_per_gas] fee_per_da_gas = "0x0000000000000000000000000000000000000000000000000000000000000000" -fee_per_l2_gas = "0x0000000000000000000000000000000000000000000000000000000000128928" +fee_per_l2_gas = "0x00000000000000000000000000000000000000000000000000000000000021de" [tx_request.tx_context.gas_settings.max_priority_fees_per_gas] fee_per_da_gas = "0x0000000000000000000000000000000000000000000000000000000000000000" @@ -37,9 +37,9 @@ fee_per_l2_gas = "0x000000000000000000000000000000000000000000000000000000000000 [private_call.vk] key = [ - "0x0000000000000000000000000000000000000000000000000000000000100000", + "0x0000000000000000000000000000000000000000000000000000000000040000", "0x0000000000000000000000000000000000000000000000000000000000000010", - "0x00000000000000000000000000000000000000000000000000000000000328b1", + "0x0000000000000000000000000000000000000000000000000000000000005609", "0x0000000000000000000000000000000000000000000000000000000000000001", "0x0000000000000000000000000000000000000000000000000000000000000000", "0x0000000000000000000000000000000000000000000000000000000000000001", @@ -60,30 +60,30 @@ key = [ "0x0000000000000000000000000000000000000000000000000000000000000000", "0x0000000000000000000000000000000000000000000000000000000000000000", "0x0000000000000000000000000000000000000000000000000000000000000000", - "0x00000000000000000000000000000008447760d748111a75f63f1eb6088ac531", - "0x0000000000000000000000000000000000225d75155ef140e7ba557603169df5", - "0x00000000000000000000000000000079d330056cef3ec0fccb097b612eb799f0", - "0x000000000000000000000000000000000021f9d27e25212ac35df77762c3e989", - "0x000000000000000000000000000000cee123a307efa9356ac33e19cf2afe6d08", - "0x00000000000000000000000000000000000b9c1716f6b6c6178e659a833ba338", - "0x0000000000000000000000000000005b2ca588c79d956e802962c10a3c546744", - "0x0000000000000000000000000000000000030c7c0254cba12e18fa6b67fa2792", - "0x00000000000000000000000000000093b6db1f3020e4a85b22f0e5f6654038d1", - "0x00000000000000000000000000000000000f1ab2658a29b6f089dabcd849311f", - "0x000000000000000000000000000000f9ffd2710e13739bc32cfea74fa53ee884", - "0x000000000000000000000000000000000009b9cbbfd21c46c9694d827f29996a", - "0x00000000000000000000000000000023b6f792cc25cdf4480c0ca25b91fa75a9", - "0x00000000000000000000000000000000002d8991bb649cb07d3427ba94b91a96", - "0x0000000000000000000000000000001c6f14c3477f0bbe7c612437e3237a5c81", - "0x00000000000000000000000000000000002495d9b2bc52cca976ed3ff75a801c", - "0x000000000000000000000000000000038f5fbb3ae960e6639b881f91939d0e3c", - "0x000000000000000000000000000000000024e4f4ca2de3d8e9528abfdb897afe", - "0x000000000000000000000000000000c4b9523544704c4eaeae67509b383b630c", - "0x0000000000000000000000000000000000292877830656f40c5592c195298228", - "0x000000000000000000000000000000e21b462e3b23af37f8cb0f53d1cf4765fb", - "0x0000000000000000000000000000000000279f174059aef8afd3913f77a3936b", - "0x00000000000000000000000000000076768931ab59dac10a64a2e632c62b442c", - "0x00000000000000000000000000000000002e7f0e735ad50805687741ae67ff98", + "0x000000000000000000000000000000d07848ec3c6f5bf07b2ecaf0f9df31848b", + "0x00000000000000000000000000000000000f047593b0e2c1d74637596a063830", + "0x000000000000000000000000000000027de8369e90ed6f423abae4511146af1e", + "0x0000000000000000000000000000000000106b29a0a5361840f9c47d45da051f", + "0x000000000000000000000000000000c9771ea157dbe0ccd6a93b561ab7279e4c", + "0x0000000000000000000000000000000000026f532848423eb3df9b7e211e4095", + "0x000000000000000000000000000000e33691021d0235bce4aeed971909fb8be3", + "0x000000000000000000000000000000000021b4dd08ecf98014e8d7d659fc827f", + "0x0000000000000000000000000000008b226c162b5cf33ab4e03d363b51e9fd52", + "0x00000000000000000000000000000000003035f2f519bc64c2010a0aee56feff", + "0x0000000000000000000000000000006682d33f336559c696cbad85e56a197eab", + "0x0000000000000000000000000000000000230a88f56104ebfbf4b08f7d788a8c", + "0x00000000000000000000000000000010f1f92ae4de68dadf42248599bb8feba4", + "0x000000000000000000000000000000000017be09978043b394179f4976643914", + "0x000000000000000000000000000000910e1bae199b849d4e3c78b2bc031d3c37", + "0x00000000000000000000000000000000001b29754f7da53f25ee54d9bd5c96a4", + "0x000000000000000000000000000000daff69391f04a4f4b758a42ea44ed06031", + "0x00000000000000000000000000000000003021aa0294eaa9cfbca82ec74b6eb2", + "0x0000000000000000000000000000001674fc7e3033fdbf0259558d82adb0c1e6", + "0x00000000000000000000000000000000000315250eb906c2dc2a27c63a3a7904", + "0x000000000000000000000000000000355189a61241cb0d27b8e6b6784f5e9410", + "0x00000000000000000000000000000000002e837874d8955d6a09d328604c4cfc", + "0x0000000000000000000000000000001ba97fc6d5cde26c4bf189f0d36a3e00d5", + "0x00000000000000000000000000000000001a44a93227d9ca397b5c4b627e33d6", "0x00000000000000000000000000000066aa9c8d7ab7581b9810eda73e53e17ddf", "0x000000000000000000000000000000000022e4a62d589f5dc58e003e17d2c29e", "0x00000000000000000000000000000052acb0956df6fa77996db824b0a1fe6270", @@ -92,62 +92,62 @@ key = [ "0x00000000000000000000000000000000000d56bbef147278fdc057f9a336d984", "0x000000000000000000000000000000f11f3eaed8726026211d2ee0f83e32e453", "0x0000000000000000000000000000000000291fbbe0b7f6f2823d5469cf981a1e", - "0x000000000000000000000000000000a19c57f6bc3e0f61495fa2dbfe33963061", - "0x00000000000000000000000000000000000778023aa113237942b06a0f995029", - "0x0000000000000000000000000000003c0a2dff1a09b93ec66729a735b586acf7", - "0x00000000000000000000000000000000000fff87402c08e58c3428489cbef152", - "0x000000000000000000000000000000a52a7fd1b9d7bd0fe27876e0ba7200fbe0", - "0x000000000000000000000000000000000016d8a09a2eb1c121a454db73a42f51", - "0x0000000000000000000000000000004953d1e0ba1fcc1639246dc085e7b309e6", - "0x0000000000000000000000000000000000020a4ad403dd5862527c4b165088b9", - "0x0000000000000000000000000000006297c879ed4dc9e09d1a8e2566f1313004", - "0x00000000000000000000000000000000002a62fd49a67cb2f3236435e8a02ac6", - "0x00000000000000000000000000000042728898947c026d9561f2d896da142ea1", - "0x00000000000000000000000000000000002df812d2ad984deac63961ed7db5c4", - "0x000000000000000000000000000000d5ea251ce333a44ba0c2c8f8ab10ec718c", - "0x00000000000000000000000000000000002671a52ab62332e126d2063397b3f2", - "0x0000000000000000000000000000005512b1c2f114b14010e6ad8095a98a6703", - "0x00000000000000000000000000000000000ef9e3c057acc4df87ad67868ca8e4", - "0x00000000000000000000000000000086a7e479113639527a6111e97c23fa7f14", - "0x0000000000000000000000000000000000260301d373cbf351a39d5afa962f2e", - "0x000000000000000000000000000000df32310295f14d61172216b5e871d0cda3", - "0x00000000000000000000000000000000000305c6d618d49b8fae0fb7113986fd", - "0x0000000000000000000000000000006236a70da4ba4ce6f576745c3f920a484b", - "0x0000000000000000000000000000000000061ca312b2cde64acf4839b88b33d5", - "0x0000000000000000000000000000003cde8435d2d191dc4fcc5b9bddc89bce03", - "0x00000000000000000000000000000000001eb5a69614f1cfd9bc9ee46bca2d1e", - "0x00000000000000000000000000000055f94b041ff014530aff455df41edb475e", - "0x000000000000000000000000000000000007632ff992a176d1f6da09b0ed6781", - "0x0000000000000000000000000000009fb9c9ba7088fcf3bd352e8a02ba1d0039", - "0x0000000000000000000000000000000000283ba51488bddf5c0969c8cc207a55", - "0x000000000000000000000000000000832fa38a74a506072fc70be2233c0f07fc", - "0x000000000000000000000000000000000028e8a0f711893a210347d4e90ac5ad", - "0x0000000000000000000000000000003fe3fdeb42e2f8e969048d82069e60f0ac", - "0x00000000000000000000000000000000002d1aae1fccd651aebdb74f799b640b", - "0x000000000000000000000000000000ec84d90f8a3dd60261200eb0e6cda11d37", - "0x00000000000000000000000000000000000aafa616671e0874e42521fb08e9c8", - "0x000000000000000000000000000000cac4ec8cf7d64e9f5a51fdc862574cd16f", - "0x0000000000000000000000000000000000048cd02d523195a92484919860ae1f", - "0x0000000000000000000000000000009976dab2a1d47baa372030d82884b96c7e", - "0x00000000000000000000000000000000002d20f08663bbfa58b3fcf23095b417", - "0x000000000000000000000000000000ace0a2e310c83ac280e0238b29d18d7b0b", - "0x000000000000000000000000000000000005ca27c0f22ec6dfca351b1485517c", - "0x00000000000000000000000000000063bc3fb38a78d4071bb92a5988b5e04501", - "0x0000000000000000000000000000000000100287cd75a75448c5eb38d198a6eb", - "0x000000000000000000000000000000460690d22f7d4f66c4cf52a8dfdd35a8aa", - "0x0000000000000000000000000000000000039cc9971801b27dd4bd1ba16de408", - "0x00000000000000000000000000000082d463e1c5b6a910c82f74688056a3d1c3", - "0x000000000000000000000000000000000014ae0854d63caba91858026f83f7b9", - "0x00000000000000000000000000000061ddf86f5e25732033bdeceee1972ef51c", - "0x00000000000000000000000000000000001171dac2a0c3b4fbedfd195947d49f", - "0x000000000000000000000000000000f98863be78a783a0345231f7c4542ca187", - "0x00000000000000000000000000000000001f2d2a54ca0e378af48a089f52d2ce", - "0x000000000000000000000000000000949b9e788848d7e313b4f55410f035e24e", - "0x00000000000000000000000000000000002fdcfa5e6f2a892ec2431493c37090", - "0x000000000000000000000000000000b5769a2a3702727b07268c65e48483ed82", - "0x00000000000000000000000000000000001074198954436649c873b4c0c59684", - "0x000000000000000000000000000000cfcf5fab127144f44c93d28bbe694b8178", - "0x0000000000000000000000000000000000083beec7ac6a19b49836b7083800a2", + "0x000000000000000000000000000000f9e46def9848e21d6cfc1cb9eb7467c334", + "0x0000000000000000000000000000000000199d04cff100cf2ea3378a2dff9e96", + "0x000000000000000000000000000000e12cd4348c0fee5f408603a93bbdd5a189", + "0x000000000000000000000000000000000003a7b70aa9ac2216a6c441645070c4", + "0x000000000000000000000000000000e1f6cd0eed1d0a2c4b62ebf9e3d89f4282", + "0x000000000000000000000000000000000012757e995a5f031876f98b81c151ce", + "0x00000000000000000000000000000007c8ee2896992e13e3e6bebe763369f0a3", + "0x0000000000000000000000000000000000062f91dffa68b920efd83aabe7618d", + "0x000000000000000000000000000000057ddcb73090cb416aeff42f51f63937e4", + "0x000000000000000000000000000000000020bd69436ac42738bbb39a72b9253b", + "0x0000000000000000000000000000009d92c3dea3b5731bf5aa01fac303db41c2", + "0x00000000000000000000000000000000001ae83164727e4f841a1aaf1ddf1f83", + "0x0000000000000000000000000000001f3e02d193e08f48e8cda7980ee69aa41c", + "0x000000000000000000000000000000000016cf9d30048eeb548a401f8a0525cf", + "0x0000000000000000000000000000008e15507df6461abe076cbd08b5cb573e8a", + "0x000000000000000000000000000000000006317ef1022d23a76f5613052f0150", + "0x00000000000000000000000000000068c38b1cbbc187ed876db29119b21fefc9", + "0x000000000000000000000000000000000011b6989170787d0ec6e790bbf44f2e", + "0x0000000000000000000000000000001d84d583f8b9223fe3deda1752f94ee111", + "0x00000000000000000000000000000000001d4e221a563f093c6f3a6202a1bb16", + "0x0000000000000000000000000000006051cef375a22a225c8d65dec619a67a38", + "0x0000000000000000000000000000000000110b407173b1ea857c1474ae3d2f6b", + "0x000000000000000000000000000000ec2ae3a1f0435e087188ac7d6e45a1ae7d", + "0x000000000000000000000000000000000010d8a71d9e49c33a30ad24ec50ca19", + "0x000000000000000000000000000000b2113610c4a73d1c8a7f05b55332dcac1b", + "0x000000000000000000000000000000000029afa31837b7cc89f2a3adf938f708", + "0x000000000000000000000000000000cb2af3e2736e55d8b48e2fe09c1c2aedd0", + "0x000000000000000000000000000000000005c36bccea38ab802de4d65c5fd0bc", + "0x000000000000000000000000000000e1baa383594e409d541e9ce7433377c6e8", + "0x000000000000000000000000000000000013a953efe86c2d1e64ae018c7d4b1f", + "0x000000000000000000000000000000fc788d8c88244dcfaba1c93f6eca4a50c9", + "0x00000000000000000000000000000000001ff58f3963bacea82212c9aa13fa87", + "0x0000000000000000000000000000008f3bf53f6a5df57df7baaeac5791e58f1b", + "0x000000000000000000000000000000000027d0fa4bc4f9ce5d619397bc2fd1db", + "0x0000000000000000000000000000005482f9be63305287310bfbfcac10e9d5fb", + "0x000000000000000000000000000000000011a0679ef255c9bcec2e169b322c37", + "0x00000000000000000000000000000079842dadc4cd50a8345c0b0b03344facd4", + "0x000000000000000000000000000000000026f439e4b5d784501e1489b840190a", + "0x000000000000000000000000000000169b2c21fc4cba3e76087ccf4c0a8b0610", + "0x00000000000000000000000000000000002d0d50d7c8f5cf88ed2ce1f3f9c8fc", + "0x000000000000000000000000000000682f8e066039e7f6c312ffde6debd05e38", + "0x00000000000000000000000000000000002eb853119dd2592f38dee1ba5fa799", + "0x00000000000000000000000000000036f9cbe6d783325ba64932c775e512183b", + "0x00000000000000000000000000000000002eda7ad63304d6d47b611fbd51648d", + "0x000000000000000000000000000000af43be2b285ac68e158b14bdd2e1936ab4", + "0x00000000000000000000000000000000001732e69909e408596fa68ea9a3648e", + "0x0000000000000000000000000000002c517b98652060b6175f2deff034a8e12a", + "0x0000000000000000000000000000000000071e0e7e4f1ccaf9b457696c07a43f", + "0x000000000000000000000000000000396536877ca317966883003d823fd2d19a", + "0x0000000000000000000000000000000000152c278e593ab353bb41ab282c4f41", + "0x000000000000000000000000000000618b0464544c1d469fa9d38b01a8bdb552", + "0x000000000000000000000000000000000028aba13ae29c19a8e32da83889378a", + "0x000000000000000000000000000000a73624e2afe22d4294d383c8ffc5f0c32b", + "0x000000000000000000000000000000000016e7929eda9d577b701ad9ec519140", + "0x000000000000000000000000000000422f4e1829d7281b1c2c148fcd3ac320ba", + "0x0000000000000000000000000000000000002c2a79c29fb84c3704d8852654c1", "0x00000000000000000000000000000084a9b3527cd2ebff62b245a04aab258f92", "0x00000000000000000000000000000000000a85019e1252699312cbd5ec6a23b2", "0x00000000000000000000000000000000b5eee72336430c3feb7da6b8b57e1551", @@ -168,10 +168,10 @@ key = [ "0x0000000000000000000000000000000000000000000000000000000000000000", "0x0000000000000000000000000000000000000000000000000000000000000002", "0x0000000000000000000000000000000000000000000000000000000000000000", - "0x000000000000000000000000000000bf76c90f0384f05a5ee0089a434e2fc41a", - "0x00000000000000000000000000000000000d53483a3217b1882f573d43a59d8a", - "0x000000000000000000000000000000c64741377cf202dff8be591ac2bfc7e9b0", - "0x00000000000000000000000000000000002064003d04bc1fcd0360c51909b901", + "0x000000000000000000000000000000ae20cb6dc8874f7723ac21f5c5984c3297", + "0x00000000000000000000000000000000001835527ffc970b894780b151db88ec", + "0x000000000000000000000000000000475f306e9003dd921fe51ea3e3e749fbe9", + "0x00000000000000000000000000000000000cc146ff4e30b5e13493ebbe8a72c0", "0x0000000000000000000000000000006bcc7a05ff95a96b289424c5f733670d96", "0x000000000000000000000000000000000000c43726f75b6fda0de22ce0e0dfab", "0x0000000000000000000000000000001d0a09d7178ec93bad7858f96e64f0b48d", @@ -181,11 +181,11 @@ key = [ "0x00000000000000000000000000000078f4b3bc61f19d6e7069359bbf47e7f907", "0x00000000000000000000000000000000002d7c18a93c3dae58809faaeec6a86a" ] -hash = "0x077a3fd555c3794d0fedc4b90e3fd85d4a2b40c8b1552cfc5e8ec287b8041c82" +hash = "0x14785bc97a183142e8759795e1525174a014b95c828972424d0f0825e3405492" [private_call.verification_key_hints] -contract_class_artifact_hash = "0x23cc5f7af43482d16dbcb01467d541a084b62764aa75d222581be12ec0bcb318" -contract_class_public_bytecode_commitment = "0x0000000000000000000000000000000000000000000000000000000000000000" +contract_class_artifact_hash = "0x184917332ae043e8230557acb2013080a10c059fb5ae28138f7eb24636708907" +contract_class_public_bytecode_commitment = "0x19b2e250d3238792f10f574756e12c6f46105e0c39de72ded6a0f7265b429708" updated_class_id_shared_mutable_values = [ "0x0000000000000000000000000000000000000000000000000000000000000000", "0x0000000000000000000000000000000000000000000000000000000000000000", @@ -195,59 +195,59 @@ updated_class_id_shared_mutable_values = [ [private_call.verification_key_hints.function_leaf_membership_witness] leaf_index = "0" sibling_path = [ - "0x1f704a7f914316896f03323270ccf5b5f766e2500f285ce4989366010a49aa18", - "0x225c426f0717393a3b338f231f5a7c9317715bbd48d190e72b8652c7488f92ba", + "0x03838a12b8407ee316b6a6e3f5f5defa5f583be4f4d7621ed3bb19ef37d33ce1", + "0x2fbdc878e0fcc6a8908403a55a453e5d688228878caf60035861eab79f67c510", "0x0e1ce4f11f4d51a7d3136abbd625315fff3876d322e46ad8401da96f8e43a614", "0x1a0ca5eecb1430479902264f04e557160a4666fb42bb8b283c6397e3d17ac937", "0x2a6595890719fef7967c209488728aa5342438ba52058a3c770202f55acf6854" ] [private_call.verification_key_hints.public_keys.npk_m.inner] -x = "0x1333d03dac36afcc45a67ebb95e06a4c9caf64e04873af9b1c964d76ccec6cc2" -y = "0x1b60101ea6809874db7c21c85845565a9bc7862329e3aadd1721de677580d596" +x = "0x148ec36764dd4bb3dcd3c071da411e19870db7799bdd10b21fbb9d520271b892" +y = "0x1e873e1aed5ef6340cdae87b4245bf59d40b876a60ec42d831a9f710723b78cc" is_infinite = false [private_call.verification_key_hints.public_keys.ivpk_m.inner] -x = "0x17335413ad6aca8f53411f929f63c52421a570fde28d0d4dbf54da457cb05387" -y = "0x2902c8ee57ca8c61b34372fe1182c224d1979817787ee5e4e27bb09fce05f916" +x = "0x02979545b96ecd9d1067eca213b8c4c3547749afc40e3c0081045fbd56b809c1" +y = "0x0e04b4fcaf18ec56dbb2eaaafeec474628cbe16f425c5d40fde3930a0ed3975d" is_infinite = false [private_call.verification_key_hints.public_keys.ovpk_m.inner] -x = "0x2f359e631951c303f9176819c3803a6213291df7e9eeb0835756625c9887a4fb" -y = "0x16b7b874ed5d791d6f17c7a0c6ef2cd093790b42f64f420b1e841ab2226722c6" +x = "0x2b0aeed7cfc639924c7a03f6a95046fd1ab47cf193c5659dd54f6630ca1fd8e1" +y = "0x171c656a2ee9ef307472248e1fd24c766041805d7bd550b1679fa54132fea48f" is_infinite = false [private_call.verification_key_hints.public_keys.tpk_m.inner] -x = "0x0fdab4ebbe3f24b0efa5bba2687e1b668aad7cf103036f555790e49c1b8917a9" -y = "0x1cb38619121cc3d8c9db8cb9e23c8022830cbdc512cb9a4592c75a18d411f3eb" +x = "0x17f554647ca4f257bd2d21df07350f6b4c747a300dc11b6438e52d6ec71f169a" +y = "0x2a917fff1a14abd146aa0faa0b5be873298203bce6882d05aeb493953eacb5c9" is_infinite = false [private_call.verification_key_hints.salted_initialization_hash] - inner = "0x081045e3f585afaca5ada364975d986261832b66eefc103ba8cabb4bb36a44e9" + inner = "0x0713f93e6621e19321185d8bd55c6b670eb6cb10f6ad8154e4d9d60a42dde0f5" [private_call.verification_key_hints.protocol_contract_membership_witness] - leaf_index = "2" + leaf_index = "1" sibling_path = [ - "0x2b8077efbca8200a27027b9e57529c58ff9e879989af4e2280098d9a02bbe531", - "0x2edc2a455d09b3ec654049fb816e5d4c2aaf583f9487881c0b659b40eba599a7", - "0x28d50bf920db91e154515d196d77ad1e674110a44a58c65eae5f516eecd82fcb" + "0x2fbcf0519c1fadbbc68489007df34fb2219366aad95f432d61fd0207ea20a0d4", + "0x17bf4c3eaf96016559689b18cc6bf78ef180f902fcd49bc260360d1cbf7331b0", + "0x2b7e459a5b9ad8b0dc63d6ccdb5735dbce4847ad93f72e4d5c5b1b3ce3874373" ] [private_call.verification_key_hints.protocol_contract_leaf] - address = "0x163a1f7081c0b9ace63b076f3b55dcd66c35ef772d8badf99d4e5e11c2e9c0eb" - next_address = "0x283947e8a3414d22b5eef08c5548f0232ed8dd1a7f0aee067089f6db0a74811c" + address = "0x2946f5341bbc4252fde9cb5a18e6a165c224847fc2c01b23872660edc731c597" + next_address = "0x0000000000000000000000000000000000000000000000000000000000000000" [private_call.verification_key_hints.updated_class_id_witness] - leaf_index = "133" + leaf_index = "141" sibling_path = [ - "0x1ff6aa9243b03ed2658c54173f598826c067a5fd213ac5a2ee722210908e556d", - "0x0e47ca716310840543778992f60e2de4682538baabc71ac0d5512f5e08fc3cc1", - "0x27561b66bbe1d463055f54b7b1d4d72fa96e3100e017578cfe8b84b19d654f8f", - "0x19242f032f077869bf23d433fa9af215f438cbbee757bc8d62f65c9ec52a4519", + "0x0927b2e792254ace07a271e7db390e3d9f086fd058329ad0c28980b318376b32", + "0x0b78f82655b7f92e363972530eda959340dd30a377ec277881ce9a70ce61e302", + "0x0e180019385c17e7ce4080b48110997501e3a4accf9d641a032efdc88746dcd7", + "0x0f906c733cd7d68db88fbc7bf32a03c1f8fde0c63ffa5d08d0881d95efc22fca", "0x2373ea368857ec7af97e7b470d705848e2bf93ed7bef142a490f2119bcf82d8e", "0x120157cfaaa49ce3da30f8b47879114977c24b266d58b0ac18b325d878aafddf", "0x01c28fe1059ae0237b72334700697bdf465e03df03986fe05200cadeda66bd76", - "0x28a77c2e3794b88880300aae5647f9188c87b4139b53a12ab1b46cc8aa818a9d", + "0x28e51a4e827dd261adc92cfde4c58fea4ac009513fbc20ad8e78a16a5e30ebab", "0x067243231eddf4222f3911defbba7705aff06ed45960b27f6f91319196ef97e1", "0x1849b85f3c693693e732dfc4577217acc18295193bede09ce8b97ad910310972", "0x2a775ea761d20435b31fa2c33ff07663e24542ffb9e7b293dfce3042eb104686", @@ -283,18 +283,18 @@ is_infinite = false ] [private_call.verification_key_hints.updated_class_id_leaf] - slot = "0x2886913a6cd50516b82f00468c18c7fec9ddb6351d9ad4bb01198b49f8f956eb" - value = "0x000000000000000000000000000000000000000000000000000000000000dead" - next_slot = "0x2d7ecce2455806f3d28af90e3bbfa82c114d4c1ed1062a2deab8b204d15e687f" - next_index = "0x0000000000000000000000000000000000000000000000000000000000000084" + slot = "0x17a0747ec85c6d39c3efc65e08d10e10756b759a6a7bcdb8496988146a9b5364" + value = "0x0000000000000000000000000000000000000000000000000000000000000001" + next_slot = "0x1906e07746a7eeea689df098bcfd884eca523de48360b1f519c7235cb0e5e743" + next_index = "0x0000000000000000000000000000000000000000000000000000000000000087" [app_public_inputs] -args_hash = "0x06d2c5bac233e7da10229d62e1c2b1e27af7cf3988726db9cde4de1a511ac291" +args_hash = "0x1bf4f5bd9ddfa8708cbc0b2ab2b7bb7ec8f7fb67d0cab00de73c4f809c1e49a0" returns_hash = "0x0000000000000000000000000000000000000000000000000000000000000000" start_side_effect_counter = "0x0000000000000000000000000000000000000000000000000000000000000001" end_side_effect_counter = "0x0000000000000000000000000000000000000000000000000000000000000004" min_revertible_side_effect_counter = "0x0000000000000000000000000000000000000000000000000000000000000003" -is_fee_payer = false +is_fee_payer = true [app_public_inputs.max_block_number._opt] _is_some = false @@ -307,13 +307,13 @@ _value = "0x0000000000000000000000000000000000000000000000000000000000000000" inner = "0x30644e72e131a029b85045b68181585d2833e84879b9709143e1f593f0000000" [app_public_inputs.call_context.contract_address] - inner = "0x1fbffb7e3dd073d1ff0f74491a59a89d1da4ed5f6fd76188dfd7a2c682719495" + inner = "0x2cf807d522bb2fda2c20e097a5c3eb396846b6f9c889822715185867baf463f2" [app_public_inputs.call_context.function_selector] inner = "0x0000000000000000000000000000000000000000000000000000000027e740b2" [[app_public_inputs.note_hash_read_requests]] - value = "0x0bf4cb5ffdc513ffe6d81b35633c4602b00baa9ccf10d7bbf9716cd99c7df7c7" + value = "0x0ba49834967e4fa82eeeaf2ac3e5a968a2bb1562f0fb22091d1e0ba1c0fd42ee" counter = "0x0000000000000000000000000000000000000000000000000000000000000002" [[app_public_inputs.note_hash_read_requests]] @@ -855,13 +855,13 @@ _value = "0x0000000000000000000000000000000000000000000000000000000000000000" [app_public_inputs.public_call_requests.inner] is_static_call = true - calldata_hash = "0x15fb96abf8e152139e0537ad418f218ce91ed425014adabdb7e3fc6888cb9e02" + calldata_hash = "0x14ee83242d30289f48dccfce5ce69945d720e346d8a4835793c3a4a563e50c03" [app_public_inputs.public_call_requests.inner.msg_sender] - inner = "0x1fbffb7e3dd073d1ff0f74491a59a89d1da4ed5f6fd76188dfd7a2c682719495" + inner = "0x2cf807d522bb2fda2c20e097a5c3eb396846b6f9c889822715185867baf463f2" [app_public_inputs.public_call_requests.inner.contract_address] - inner = "0x1312c2dcc4ce1917d2fb76c7f3f81e88109c09f390f50104aab96fbd381644af" + inner = "0x06ecc897f249ca82db802829d67532c6095d1a9810350783760e0b99ef956374" [[app_public_inputs.public_call_requests]] counter = "0x0000000000000000000000000000000000000000000000000000000000000000" @@ -1504,55 +1504,55 @@ _value = "0x0000000000000000000000000000000000000000000000000000000000000000" length = "0x0000000000000000000000000000000000000000000000000000000000000000" [app_public_inputs.historical_header] - total_fees = "0x00000000000000000000000000000000000000000000000000000098a68c8d4c" - total_mana_used = "0x0000000000000000000000000000000000000000000000000000000000019e8f" + total_fees = "0x000000000000000000000000000000000000000000000000000000002c0103c0" + total_mana_used = "0x0000000000000000000000000000000000000000000000000000000000013c36" [app_public_inputs.historical_header.last_archive] - root = "0x2e64c26fcfac3753f52faeb3fe3e01da50d21fca91dcb3f78b26abbf962aca85" - next_available_leaf_index = "0x0000000000000000000000000000000000000000000000000000000000000006" + root = "0x04ecfede3cb3d170b076089b4d0400636b980b65e62d76eb3aa3ebcfcd4e4c66" + next_available_leaf_index = "0x0000000000000000000000000000000000000000000000000000000000000008" [app_public_inputs.historical_header.content_commitment] num_txs = "0x0000000000000000000000000000000000000000000000000000000000000001" - blobs_hash = "0x00ea3a920ac1f28fa3653d01c5fcb56dd3a5b743dfbe2d4ff0b56a19b0070a51" + blobs_hash = "0x008da6aaf5e0016f04ac681db9c70467da97770605d66cbedc44746fcecd64d6" in_hash = "0x00089a9d421a82c4a25f7acbebe69e638d5b064fa8a60e018793dcb0be53752c" out_hash = "0x0000000000000000000000000000000000000000000000000000000000000000" [app_public_inputs.historical_header.state.l1_to_l2_message_tree] root = "0x2e33ee2008411c04b99c24b313513d097a0d21a5040b6193d1f978b8226892d6" -next_available_leaf_index = "0x0000000000000000000000000000000000000000000000000000000000000060" +next_available_leaf_index = "0x0000000000000000000000000000000000000000000000000000000000000080" [app_public_inputs.historical_header.state.partial.note_hash_tree] -root = "0x1c1b0cf0a9fc7fa11c87e27cd0e7aab2f96fdfaa9f7af0ef7089ed45af4242dc" -next_available_leaf_index = "0x0000000000000000000000000000000000000000000000000000000000000180" +root = "0x11d365c48e942152ad755b20a8e9d308d6fa5d46cccab9d40f9847b757208f27" +next_available_leaf_index = "0x0000000000000000000000000000000000000000000000000000000000000200" [app_public_inputs.historical_header.state.partial.nullifier_tree] -root = "0x2b7df5ccc7e2f93e227df2b3702ab9e93fd821364ed56e2837a1ae45f32ec7e6" -next_available_leaf_index = "0x0000000000000000000000000000000000000000000000000000000000000200" +root = "0x21d29273b47664993a6b4cd2a65feee16bd32c9ad1c8d0824aadc486ce3751ec" +next_available_leaf_index = "0x0000000000000000000000000000000000000000000000000000000000000280" [app_public_inputs.historical_header.state.partial.public_data_tree] -root = "0x22e6f3265727498f791055b26567a50808efacd47fc407471c92d359f95aff4a" -next_available_leaf_index = "0x000000000000000000000000000000000000000000000000000000000000008e" +root = "0x1728e175434a3b744ea0361dc154494c091d7ff76cc33b4eede273aa89ee2b19" +next_available_leaf_index = "0x000000000000000000000000000000000000000000000000000000000000008f" [app_public_inputs.historical_header.global_variables] chain_id = "0x0000000000000000000000000000000000000000000000000000000000007a69" - version = "0x0000000000000000000000000000000000000000000000000000000000000001" - block_number = "0x0000000000000000000000000000000000000000000000000000000000000006" - slot_number = "0x0000000000000000000000000000000000000000000000000000000000000008" - timestamp = "0x0000000000000000000000000000000000000000000000000000000067d9b690" + version = "0x00000000000000000000000000000000000000000000000000000000e6f03fcf" + block_number = "0x0000000000000000000000000000000000000000000000000000000000000008" + slot_number = "0x0000000000000000000000000000000000000000000000000000000000000013" + timestamp = "0x0000000000000000000000000000000000000000000000000000000067fa74a8" [app_public_inputs.historical_header.global_variables.coinbase] - inner = "0x000000000000000000000000a540911acb4195ad0bbfa2c10a46e3e54df4c649" + inner = "0x00000000000000000000000071d84878d343d87f145bfcc3af71b20b7430de57" [app_public_inputs.historical_header.global_variables.fee_recipient] inner = "0x0000000000000000000000000000000000000000000000000000000000000000" [app_public_inputs.historical_header.global_variables.gas_fees] fee_per_da_gas = "0x0000000000000000000000000000000000000000000000000000000000000000" - fee_per_l2_gas = "0x00000000000000000000000000000000000000000000000000000000005e43f4" + fee_per_l2_gas = "0x00000000000000000000000000000000000000000000000000000000000023a0" [app_public_inputs.tx_context] chain_id = "0x0000000000000000000000000000000000000000000000000000000000007a69" - version = "0x0000000000000000000000000000000000000000000000000000000000000001" + version = "0x00000000000000000000000000000000000000000000000000000000e6f03fcf" [app_public_inputs.tx_context.gas_settings.gas_limits] da_gas = "0x000000000000000000000000000000000000000000000000000000003b9aca00" @@ -1564,7 +1564,7 @@ l2_gas = "0x00000000000000000000000000000000000000000000000000000000005b8d80" [app_public_inputs.tx_context.gas_settings.max_fees_per_gas] fee_per_da_gas = "0x0000000000000000000000000000000000000000000000000000000000000000" -fee_per_l2_gas = "0x0000000000000000000000000000000000000000000000000000000000128928" +fee_per_l2_gas = "0x00000000000000000000000000000000000000000000000000000000000021de" [app_public_inputs.tx_context.gas_settings.max_priority_fees_per_gas] fee_per_da_gas = "0x0000000000000000000000000000000000000000000000000000000000000000" diff --git a/noir-projects/noir-protocol-circuits/crates/private-kernel-inner/Prover.toml b/noir-projects/noir-protocol-circuits/crates/private-kernel-inner/Prover.toml index db8929ac7622..80f01b13daf3 100644 --- a/noir-projects/noir-protocol-circuits/crates/private-kernel-inner/Prover.toml +++ b/noir-projects/noir-protocol-circuits/crates/private-kernel-inner/Prover.toml @@ -1,19 +1,19 @@ [previous_kernel] vk_index = "0x0000000000000000000000000000000000000000000000000000000000000000" vk_path = [ - "0x27a42bf18d8a464976e76a21f318739d92745918fc6c66b4b761a87f9c630203", - "0x2e9b297f0f66052919de9a44a5a4626ebbc5fc8f372b8cfd41d5336905c99e0c", - "0x015b69c8ea1a4a1097deb947c43693c2d5c2b3ab5aac73accb491f43d68acb1c", - "0x19816d7c1dabb2893c3f4ef0250936cb55ae926b870e7b14e990d50bdf9eb084", - "0x1269cc8f8216b2d60daca30e5e0ba1e1d11dfe89f0f0c2cadb113c30de181554", - "0x26b3cce275e6a21ac2049ab937390d4afb7793ec68d1d7bcddadfbfe45fbfb06" + "0x2f7990492fb38523aa684577903d0bd007b968530c8e40387fcd1574e02a63cc", + "0x162832a9703d2788b5221ff51bcb8bfe5b55cbe2bbb917fc13faeea857e77096", + "0x0fb6e22d807026d64881dd75926af825595d6b6bbd0c75415e2bfaf93e0c53a2", + "0x26121cf4ba1d9fe4a98c57cc36ab5640e2cebf720bf5d0ae4291c34416cc3fd7", + "0x0d8e4232c3e1214b1a72ee04016dd919308ecb6b01e871bdcdc36248ab044711", + "0x2fd02310a424f73ae3709cf4ff9d507e920407534ba3e965a5542a138b815675" ] [previous_kernel.vk] key = [ - "0x0000000000000000000000000000000000000000000000000000000000100000", + "0x0000000000000000000000000000000000000000000000000000000000040000", "0x0000000000000000000000000000000000000000000000000000000000000020", - "0x00000000000000000000000000000000000000000000000000000000000328b1", + "0x0000000000000000000000000000000000000000000000000000000000005609", "0x0000000000000000000000000000000000000000000000000000000000000001", "0x0000000000000000000000000000000000000000000000000000000000000010", "0x0000000000000000000000000000000000000000000000000000000000000011", @@ -34,94 +34,94 @@ vk_path = [ "0x0000000000000000000000000000000000000000000000000000000000000008", "0x0000000000000000000000000000000000000000000000000000000000000000", "0x0000000000000000000000000000000000000000000000000000000000000001", - "0x0000000000000000000000000000009e57852285fcdd2999c42c40c75ce607a5", - "0x00000000000000000000000000000000002b604aa85d9481befd86d4ff03462d", - "0x0000000000000000000000000000000cc24eabaede4d51dc80d0d47bdae2cd5a", - "0x000000000000000000000000000000000004541aff8cad08ff60f3b83ab8326b", - "0x0000000000000000000000000000005250eaed75b9e952b7c85164bede00ba33", - "0x00000000000000000000000000000000000ad897ae235efec361e3916e4dae07", - "0x0000000000000000000000000000003fea2aee6c554c0da65d11905df4597b2d", - "0x00000000000000000000000000000000002558875cd8264aa141822870ff2bc8", - "0x00000000000000000000000000000079175fac3fd506a5596ffc52d9d0544699", - "0x00000000000000000000000000000000001191096e35624705527aa04f27f915", - "0x0000000000000000000000000000004557e38c079982f9c4d49036f70b83ebf7", - "0x0000000000000000000000000000000000238262c39bc45dd936e762c2a61740", - "0x0000000000000000000000000000007263257153deef5cff3b077c9fc9280992", - "0x0000000000000000000000000000000000159a0cd1ca789af675d2ec45072876", - "0x000000000000000000000000000000eb1bcba45e9afc6d9ccbcf6798f7c337ce", - "0x000000000000000000000000000000000003b66ca8c428eefe033f2cad1d68bc", - "0x00000000000000000000000000000042958191c85fad3787a57ee0222f8a334b", - "0x0000000000000000000000000000000000302780dda8bfbc52898111e474e7ee", - "0x0000000000000000000000000000001457126d186a591c8a645b42534160cca1", - "0x00000000000000000000000000000000001e27710a3992df4d17ef314e62c81c", - "0x000000000000000000000000000000a6452e65c8ab86e52c1b50b4d05852bc28", - "0x0000000000000000000000000000000000297bbb7bd4eff712fee0e5a78199b2", - "0x000000000000000000000000000000022f0dd1858efd0fcf637a016fe6c8344e", - "0x0000000000000000000000000000000000289f9a2cb49807fa9f6c92fcaff413", - "0x0000000000000000000000000000006bd70f37be3ebe8d9721453865751b8d0e", - "0x0000000000000000000000000000000000217ffcd5013dbabd35980580b7668b", - "0x0000000000000000000000000000009970637c93c215c5628098420b1cc6513b", - "0x0000000000000000000000000000000000061035effde8f10bf1ed5568d96d24", + "0x00000000000000000000000000000052467a2fc553ad58789670d4a8dcfb2e7b", + "0x000000000000000000000000000000000026361aa5163ea7af84c71dd0016fc9", + "0x0000000000000000000000000000001d8b41a52b072bcf0044e6426e00bce7b9", + "0x000000000000000000000000000000000022e68a6335e45fddf531dfecbd05e7", + "0x0000000000000000000000000000008bfaba7029125ceb754d97a8cc07e776e1", + "0x000000000000000000000000000000000002e1d617f9f4518925401945ec8559", + "0x000000000000000000000000000000b8ee51e0d785044cb2aed9788cd02c61aa", + "0x00000000000000000000000000000000001e326d6199372ef301ae52513082ee", + "0x0000000000000000000000000000002cec064938f43e6fa342af59ca72543100", + "0x00000000000000000000000000000000000a1d460fe453acebacdff6151b2a8a", + "0x000000000000000000000000000000595f2a4d485aff4b55303f7d53d0473ff1", + "0x0000000000000000000000000000000000234a29f445f9e6a5962ec6e5cd2398", + "0x0000000000000000000000000000006b98bcb143b8a05e6f74eeb4804de8acc1", + "0x000000000000000000000000000000000021959390d4e529c2557bb0bb73ae0c", + "0x0000000000000000000000000000001b24f6b04fe5ce760099d7cee7836fc0e4", + "0x0000000000000000000000000000000000088ab8644aae78db0a0774a7d54003", + "0x0000000000000000000000000000008377e069e52e03b334195ad50c31f5de36", + "0x0000000000000000000000000000000000181cbe434460cbec96cd3f441befc2", + "0x000000000000000000000000000000d0dfebee13f6e073bbc3fe4d4fb48c517d", + "0x00000000000000000000000000000000000919764927298d99a7b770826d7802", + "0x0000000000000000000000000000006e8b6837992c8fee578ed8c9c5b202910b", + "0x000000000000000000000000000000000022c3c3d376d1148897cb204ba24ec3", + "0x0000000000000000000000000000008543bc66e05b731c46ec95e5bbd54072ae", + "0x000000000000000000000000000000000013c75273d43fe8bc1f8713f08c12f9", + "0x00000000000000000000000000000053cda4b08235214ff465ea7915b34abd6c", + "0x00000000000000000000000000000000001e69faa68371dcc174085b43c2b7d0", + "0x000000000000000000000000000000a1bd5bf6d51db0749962c78315f9405c48", + "0x00000000000000000000000000000000002d2757d1381575310b4ba2f9acc0db", "0x00000000000000000000000000000090d53c6a3b26339cda6b73df9208314159", "0x0000000000000000000000000000000000298c3311fc9170f92de940b042aab9", "0x000000000000000000000000000000bf37537eb196b05c1d98fa51016a9bacbb", "0x000000000000000000000000000000000007b05f408a612847259016b9204ae4", - "0x000000000000000000000000000000b05f2ee2cf3cfd28ecb019b9e04d997f8b", - "0x000000000000000000000000000000000018f579b729ea7e22d44358647d09b9", - "0x0000000000000000000000000000007a475fc95808ee6afbdb96fa371928c0b8", - "0x00000000000000000000000000000000001b8a59fbd48677fb9845a717faaab3", - "0x00000000000000000000000000000036f9df06ef6897acffa0226ced9a9f1891", - "0x00000000000000000000000000000000001ab6da6a45bd662a6d5439f55ecb8f", - "0x000000000000000000000000000000ae017d2e76e85fd21d47187fe7fd368d91", - "0x00000000000000000000000000000000000e3898e4bd9a5bf9f456a3be4fada8", - "0x00000000000000000000000000000035c9cb5f001915ccb707544d8295b4e4f8", - "0x00000000000000000000000000000000002451c090209c18e440624b96591a23", - "0x000000000000000000000000000000381694f1ab41bc30edb347a4618bbcb253", - "0x00000000000000000000000000000000002668cb793c6bcc3153efc3e521e40c", - "0x00000000000000000000000000000026a0352c25cccd1aea682fc8e975804a3e", - "0x0000000000000000000000000000000000172c855547ef1cf358b1193059ab94", - "0x000000000000000000000000000000c746ba121a8412b23d1a54c2679b7fcb42", - "0x0000000000000000000000000000000000188578f3213bb6dba81fc0826a77f1", - "0x000000000000000000000000000000b8bfc0ec72460534646ca70473b769e469", - "0x0000000000000000000000000000000000049b8d0d775977aced41eb139190a1", - "0x00000000000000000000000000000096f3f7b6aadf2bd52f2924c7122667ce25", - "0x00000000000000000000000000000000000525a7e6f2f97879bcc820bf777253", - "0x000000000000000000000000000000f4d3cf67a283478a5eac6fbe17ee96eed2", - "0x00000000000000000000000000000000000ad1b561d9594259b882488d0cc327", - "0x000000000000000000000000000000a411ca082e39592f1fc853c2d513bbd5aa", - "0x000000000000000000000000000000000008d3f884d8438ee5215018dcaa188a", - "0x000000000000000000000000000000a586b97fa660d78828308fbb60697a5243", - "0x00000000000000000000000000000000001c3fa3bc5f299c0702c6b6044c0e60", - "0x000000000000000000000000000000037a425f8359ea8a67078f19517bc20c74", - "0x00000000000000000000000000000000000db0229741d265ee0313476f1cef10", - "0x000000000000000000000000000000886c851cf34b022329e0c9c665f7ef4563", - "0x000000000000000000000000000000000028ad520b4991c3a3a1a08440202a40", - "0x0000000000000000000000000000003956273ef13907bb4ca2be0b96f2aab210", - "0x0000000000000000000000000000000000026fe8a5a76d3a1cc7b6954e592acb", - "0x00000000000000000000000000000053ac5f18e44a72607b79a11b5d45393429", - "0x00000000000000000000000000000000000bcc2d19211e46643e7fa4d905fb14", - "0x000000000000000000000000000000f0b3fac043c015b3c87b5308b1da44311e", - "0x00000000000000000000000000000000001784a31f83f57ce1f3e5df729be350", - "0x000000000000000000000000000000619bfb4248deff6b3fba33ae16e54d4e72", - "0x000000000000000000000000000000000029d64b80f3f13d8feafd5af4a5697e", - "0x000000000000000000000000000000a5285d1874df4082e47e44ca57ecba42f3", - "0x00000000000000000000000000000000002f1e137a8e12d0d47eed358e6bc315", - "0x000000000000000000000000000000988a23e79c8909a4004a42d3f4baa05014", - "0x00000000000000000000000000000000002509c01f82cdbc0cb44ae0c0be6705", - "0x000000000000000000000000000000ed4da5bc137a852399b028cd7a914fadd2", - "0x000000000000000000000000000000000003cad9cfaf108423a93de66ddb005d", - "0x00000000000000000000000000000040e4a2df8c0044a898355254cc9097c518", - "0x00000000000000000000000000000000001d874495839270b1644665239d7c2c", - "0x00000000000000000000000000000032da21a0045618d011c4ae19bc3947782b", - "0x00000000000000000000000000000000001eb44af87c2360092ddf16c5af329e", - "0x000000000000000000000000000000a807ecb2861e8e623a42498ee722ca6000", - "0x00000000000000000000000000000000001ed857121537d918928d3e560b506a", - "0x0000000000000000000000000000001297034a1d58e6ad7f84903f82d8c66d88", - "0x0000000000000000000000000000000000073b2e116dde301d14ae658cacd77a", - "0x000000000000000000000000000000741b046e52d87df6237bcceab137db5269", - "0x00000000000000000000000000000000002ad04673426a647d41d57f599509b0", - "0x000000000000000000000000000000907b17322aed653d7d0a7422bb6a5c5c7b", - "0x000000000000000000000000000000000010dd1fc03f324c35fc8f071aa69ab7", + "0x00000000000000000000000000000056818df348b74be6d33657dec32bacec98", + "0x0000000000000000000000000000000000034a17a6080da62b8becfb42266e5f", + "0x0000000000000000000000000000000f16a0a89bbccecfa7e55a4aa2c24a3bac", + "0x000000000000000000000000000000000019ac425610fbe83a18a8891777127a", + "0x0000000000000000000000000000003bbb3045cd4b5d42953bf122dac5de4e0c", + "0x00000000000000000000000000000000000fc88dece96d3d7417bb0738e0cda3", + "0x00000000000000000000000000000013ac82e18efe522953a601ec54e80aa72c", + "0x000000000000000000000000000000000012b7b849a421ef9c5bc3d5ee1ad3e3", + "0x000000000000000000000000000000ce32a645a1cf8b5f086358ffd8c47d8c05", + "0x000000000000000000000000000000000019b3ee1337ece60c6446831ce03496", + "0x000000000000000000000000000000bb69842382adb7b11b6869af31207027b0", + "0x00000000000000000000000000000000002679f084f27ba125560ba8f0ab3a08", + "0x000000000000000000000000000000b9a7c347c80ad29474b5b0b6da12faf4bc", + "0x00000000000000000000000000000000000e73297f62953d3cc441dfc2a2c06f", + "0x00000000000000000000000000000062d1d97b98e7e8b149eff7646f093ea48d", + "0x00000000000000000000000000000000000d37b6b1bdc8236c27d37b3f18e121", + "0x0000000000000000000000000000001dbdeea325c67fd74048d026a1a0768835", + "0x000000000000000000000000000000000014c8e0dd9d4641751385bd5083b9cb", + "0x00000000000000000000000000000060a396560316b104ca9d90bc29b682fa6f", + "0x0000000000000000000000000000000000113752078143f85513ae18311e463e", + "0x000000000000000000000000000000967ac946f309c449aa28c9764ad924c46e", + "0x00000000000000000000000000000000001e365043ae2061f1285fb4d32255b7", + "0x000000000000000000000000000000c371ee3acd64dd538b66ad434923a9ac75", + "0x00000000000000000000000000000000000094e3100f5495e7db6a01c1dab5d1", + "0x0000000000000000000000000000008d48280e381bcc7b5a057f974fe20be7f7", + "0x00000000000000000000000000000000002f00f610e4241d946b61976753986d", + "0x000000000000000000000000000000d9a8a5f7fea38a73dfa059433bcb7347f7", + "0x000000000000000000000000000000000024b768f5a9b5dd6a46f86d688c0330", + "0x000000000000000000000000000000055a1fb5cefaf1f754501b3f6d7e9cd502", + "0x00000000000000000000000000000000000e99d8b93e27b1d23abe0948b34013", + "0x0000000000000000000000000000005b88142770fca5b2b1af20ee5e9a6cad3a", + "0x00000000000000000000000000000000001ab87a5e354b68ab023375ae4105f5", + "0x000000000000000000000000000000a8f26bda65ad1b8c6990f1b14087fcb3b3", + "0x00000000000000000000000000000000001081528ce952b97fc4779d85913114", + "0x000000000000000000000000000000c2eac66462169f8adc7d0fb26776c75bba", + "0x0000000000000000000000000000000000001e4e2d6c701ec971038c4fc69cfa", + "0x0000000000000000000000000000008f4cafde8e361dadbb5580918a13bdec6e", + "0x000000000000000000000000000000000022eadfb8442104b02b423a276d490c", + "0x0000000000000000000000000000007b3ae4236bd6681c6859606b6ad8a3ead5", + "0x0000000000000000000000000000000000074c177301721cc70a20ea734f940d", + "0x00000000000000000000000000000004be44de159556fcddbac88cfd227a0a72", + "0x000000000000000000000000000000000007df3bd48e4d57a1be11ad5b683d52", + "0x000000000000000000000000000000d2b1074f34ba32efd3d39cbb9102549bdc", + "0x0000000000000000000000000000000000148d4ba17069fb4fa949f7aa3afcab", + "0x000000000000000000000000000000f937090e6bbba77d82a57a087769434719", + "0x000000000000000000000000000000000026210c0fcd5e025fd2f7772e2d224d", + "0x000000000000000000000000000000cb401d17958abc66709ad66b50182438c2", + "0x00000000000000000000000000000000002e5e90bdf676ab7482dca5b5573f92", + "0x00000000000000000000000000000028f13e8f7ddcc65042166a010f84f9aac4", + "0x000000000000000000000000000000000008b12183d6c5baeaf77fad332ecef5", + "0x00000000000000000000000000000011dbb795bf9b362df2a0dc734f09aaae41", + "0x00000000000000000000000000000000001181f6a417ea86543d94741bb2461b", + "0x00000000000000000000000000000018ee1519862bd5eefe04c58a6f42971e75", + "0x00000000000000000000000000000000000c07e6f6290d9728f67edbad1270cd", + "0x000000000000000000000000000000a45c5f726ce7b4690301de012e567da5c7", + "0x000000000000000000000000000000000027cdf453b960d511d04c07110b4fb6", "0x000000000000000000000000000000f6f4596202301b6ae4eb0ebbeadd203340", "0x00000000000000000000000000000000000adc89c48d75b571636f5bbeb4a806", "0x00000000000000000000000000000000034e3e27454ef992b4bf84b97baa7471", @@ -142,10 +142,10 @@ vk_path = [ "0x0000000000000000000000000000000000000000000000000000000000000000", "0x0000000000000000000000000000000000000000000000000000000000000002", "0x0000000000000000000000000000000000000000000000000000000000000000", - "0x0000000000000000000000000000002601343ed9ec702f7e521ebe0ffbd691f3", - "0x000000000000000000000000000000000012ff74941b932aa806c1bc5e1a178f", - "0x0000000000000000000000000000005cfadbe0d6f87ff27fb836c4f6cbb5f414", - "0x00000000000000000000000000000000000f4f5d92fbaa233a1b3681560577ec", + "0x000000000000000000000000000000a1eaa05c87041354e35f63e735a19e0165", + "0x000000000000000000000000000000000008006e6426a6cab39c5a5562cace7d", + "0x000000000000000000000000000000ad0e7028dd315e55aba53f5ab490cbe10d", + "0x00000000000000000000000000000000002ab68e3b8750057f2d86fb0d7795b4", "0x000000000000000000000000000000c2b34bcc8a5125396ad89848312a3e7894", "0x0000000000000000000000000000000000279be7e16a96c1710584dac89de72d", "0x0000000000000000000000000000009884b93d89228ba072daa18f2b792a97cc", @@ -155,67 +155,67 @@ vk_path = [ "0x00000000000000000000000000000078f4b3bc61f19d6e7069359bbf47e7f907", "0x00000000000000000000000000000000002d7c18a93c3dae58809faaeec6a86a" ] - hash = "0x06972360ac699e2658959ef77ffa4b86123642e4b69193c5d89864048ce6dd77" + hash = "0x1452be304748bfab2ded4b0a622f8784c2d86bb2c75217e5924335cdbe166c18" [previous_kernel_public_inputs] min_revertible_side_effect_counter = "0x0000000000000000000000000000000000000000000000000000000000000003" is_private_only = true -claimed_first_nullifier = "0x19cc7f1f022b12e4d10c8284c5cce0a6466136b5e4f1394bf81d410148314005" +claimed_first_nullifier = "0x22765f785cfdb9c1d2b286e0ad42255fea87964cb1b97bddca825cf3bb0d5c51" [previous_kernel_public_inputs.constants] - vk_tree_root = "0x22a749df2f64e23077f364a4efdd544e0a0666eb43bd1560f5a698b10997c43c" - protocol_contract_tree_root = "0x16862f3a312325ba6b37abe1073a51ffb333ee32fbaa437454dce33423766de6" + vk_tree_root = "0x035e62aad06a66ce8d2a9d112a620e2337018ff2c763061808a24ea0f220ffbc" + protocol_contract_tree_root = "0x071f2e01b58eff84ebe1608c9eccf21bf2d51ac74cac3816a3dee8372cdb0b7d" [previous_kernel_public_inputs.constants.historical_header] - total_fees = "0x00000000000000000000000000000000000000000000000000000098a68c8d4c" - total_mana_used = "0x0000000000000000000000000000000000000000000000000000000000019e8f" + total_fees = "0x000000000000000000000000000000000000000000000000000000002c0103c0" + total_mana_used = "0x0000000000000000000000000000000000000000000000000000000000013c36" [previous_kernel_public_inputs.constants.historical_header.last_archive] - root = "0x2e64c26fcfac3753f52faeb3fe3e01da50d21fca91dcb3f78b26abbf962aca85" - next_available_leaf_index = "0x0000000000000000000000000000000000000000000000000000000000000006" + root = "0x04ecfede3cb3d170b076089b4d0400636b980b65e62d76eb3aa3ebcfcd4e4c66" + next_available_leaf_index = "0x0000000000000000000000000000000000000000000000000000000000000008" [previous_kernel_public_inputs.constants.historical_header.content_commitment] num_txs = "0x0000000000000000000000000000000000000000000000000000000000000001" - blobs_hash = "0x00ea3a920ac1f28fa3653d01c5fcb56dd3a5b743dfbe2d4ff0b56a19b0070a51" + blobs_hash = "0x008da6aaf5e0016f04ac681db9c70467da97770605d66cbedc44746fcecd64d6" in_hash = "0x00089a9d421a82c4a25f7acbebe69e638d5b064fa8a60e018793dcb0be53752c" out_hash = "0x0000000000000000000000000000000000000000000000000000000000000000" [previous_kernel_public_inputs.constants.historical_header.state.l1_to_l2_message_tree] root = "0x2e33ee2008411c04b99c24b313513d097a0d21a5040b6193d1f978b8226892d6" -next_available_leaf_index = "0x0000000000000000000000000000000000000000000000000000000000000060" +next_available_leaf_index = "0x0000000000000000000000000000000000000000000000000000000000000080" [previous_kernel_public_inputs.constants.historical_header.state.partial.note_hash_tree] -root = "0x1c1b0cf0a9fc7fa11c87e27cd0e7aab2f96fdfaa9f7af0ef7089ed45af4242dc" -next_available_leaf_index = "0x0000000000000000000000000000000000000000000000000000000000000180" +root = "0x11d365c48e942152ad755b20a8e9d308d6fa5d46cccab9d40f9847b757208f27" +next_available_leaf_index = "0x0000000000000000000000000000000000000000000000000000000000000200" [previous_kernel_public_inputs.constants.historical_header.state.partial.nullifier_tree] -root = "0x2b7df5ccc7e2f93e227df2b3702ab9e93fd821364ed56e2837a1ae45f32ec7e6" -next_available_leaf_index = "0x0000000000000000000000000000000000000000000000000000000000000200" +root = "0x21d29273b47664993a6b4cd2a65feee16bd32c9ad1c8d0824aadc486ce3751ec" +next_available_leaf_index = "0x0000000000000000000000000000000000000000000000000000000000000280" [previous_kernel_public_inputs.constants.historical_header.state.partial.public_data_tree] -root = "0x22e6f3265727498f791055b26567a50808efacd47fc407471c92d359f95aff4a" -next_available_leaf_index = "0x000000000000000000000000000000000000000000000000000000000000008e" +root = "0x1728e175434a3b744ea0361dc154494c091d7ff76cc33b4eede273aa89ee2b19" +next_available_leaf_index = "0x000000000000000000000000000000000000000000000000000000000000008f" [previous_kernel_public_inputs.constants.historical_header.global_variables] chain_id = "0x0000000000000000000000000000000000000000000000000000000000007a69" - version = "0x0000000000000000000000000000000000000000000000000000000000000001" - block_number = "0x0000000000000000000000000000000000000000000000000000000000000006" - slot_number = "0x0000000000000000000000000000000000000000000000000000000000000008" - timestamp = "0x0000000000000000000000000000000000000000000000000000000067d9b690" + version = "0x00000000000000000000000000000000000000000000000000000000e6f03fcf" + block_number = "0x0000000000000000000000000000000000000000000000000000000000000008" + slot_number = "0x0000000000000000000000000000000000000000000000000000000000000013" + timestamp = "0x0000000000000000000000000000000000000000000000000000000067fa74a8" [previous_kernel_public_inputs.constants.historical_header.global_variables.coinbase] - inner = "0x000000000000000000000000a540911acb4195ad0bbfa2c10a46e3e54df4c649" + inner = "0x00000000000000000000000071d84878d343d87f145bfcc3af71b20b7430de57" [previous_kernel_public_inputs.constants.historical_header.global_variables.fee_recipient] inner = "0x0000000000000000000000000000000000000000000000000000000000000000" [previous_kernel_public_inputs.constants.historical_header.global_variables.gas_fees] fee_per_da_gas = "0x0000000000000000000000000000000000000000000000000000000000000000" - fee_per_l2_gas = "0x00000000000000000000000000000000000000000000000000000000005e43f4" + fee_per_l2_gas = "0x00000000000000000000000000000000000000000000000000000000000023a0" [previous_kernel_public_inputs.constants.tx_context] chain_id = "0x0000000000000000000000000000000000000000000000000000000000007a69" - version = "0x0000000000000000000000000000000000000000000000000000000000000001" + version = "0x00000000000000000000000000000000000000000000000000000000e6f03fcf" [previous_kernel_public_inputs.constants.tx_context.gas_settings.gas_limits] da_gas = "0x000000000000000000000000000000000000000000000000000000003b9aca00" @@ -227,7 +227,7 @@ l2_gas = "0x00000000000000000000000000000000000000000000000000000000005b8d80" [previous_kernel_public_inputs.constants.tx_context.gas_settings.max_fees_per_gas] fee_per_da_gas = "0x0000000000000000000000000000000000000000000000000000000000000000" -fee_per_l2_gas = "0x0000000000000000000000000000000000000000000000000000000000128928" +fee_per_l2_gas = "0x00000000000000000000000000000000000000000000000000000000000021de" [previous_kernel_public_inputs.constants.tx_context.gas_settings.max_priority_fees_per_gas] fee_per_da_gas = "0x0000000000000000000000000000000000000000000000000000000000000000" @@ -235,15 +235,15 @@ fee_per_l2_gas = "0x000000000000000000000000000000000000000000000000000000000000 [previous_kernel_public_inputs.validation_requests.for_rollup.max_block_number._opt] _is_some = true -_value = "0x0000000000000000000000000000000000000000000000000000000000000e16" +_value = "0x0000000000000000000000000000000000000000000000000000000000000e18" [[previous_kernel_public_inputs.validation_requests.note_hash_read_requests]] [previous_kernel_public_inputs.validation_requests.note_hash_read_requests.read_request] -value = "0x0bf4cb5ffdc513ffe6d81b35633c4602b00baa9ccf10d7bbf9716cd99c7df7c7" +value = "0x0ba49834967e4fa82eeeaf2ac3e5a968a2bb1562f0fb22091d1e0ba1c0fd42ee" counter = "0x0000000000000000000000000000000000000000000000000000000000000002" [previous_kernel_public_inputs.validation_requests.note_hash_read_requests.contract_address] -inner = "0x1fbffb7e3dd073d1ff0f74491a59a89d1da4ed5f6fd76188dfd7a2c682719495" +inner = "0x2cf807d522bb2fda2c20e097a5c3eb396846b6f9c889822715185867baf463f2" [[previous_kernel_public_inputs.validation_requests.note_hash_read_requests]] [previous_kernel_public_inputs.validation_requests.note_hash_read_requests.read_request] @@ -2739,7 +2739,7 @@ inner = "0x0000000000000000000000000000000000000000000000000000000000000000" [[previous_kernel_public_inputs.end.nullifiers]] [previous_kernel_public_inputs.end.nullifiers.nullifier] -value = "0x19cc7f1f022b12e4d10c8284c5cce0a6466136b5e4f1394bf81d410148314005" +value = "0x22765f785cfdb9c1d2b286e0ad42255fea87964cb1b97bddca825cf3bb0d5c51" counter = "0x0000000000000000000000000000000000000000000000000000000000000000" note_hash = "0x0000000000000000000000000000000000000000000000000000000000000000" @@ -4787,7 +4787,7 @@ counter = "0x0000000000000000000000000000000000000000000000000000000000000000" inner = "0x0000000000000000000000000000000000000000000000000000000000000000" [[previous_kernel_public_inputs.end.private_call_stack]] -args_hash = "0x283cbcbb492b17fcb0ca65bf4e265138fa55a5bb705315eb4a48be9db3c419a1" +args_hash = "0x2170dc555d45af1a9ef6fd3615df62f0790b1eef243b4d4d67e3bb9b71f7c751" returns_hash = "0x0000000000000000000000000000000000000000000000000000000000000000" start_side_effect_counter = "0x0000000000000000000000000000000000000000000000000000000000000003" end_side_effect_counter = "0x000000000000000000000000000000000000000000000000000000000000000c" @@ -4796,10 +4796,10 @@ end_side_effect_counter = "0x000000000000000000000000000000000000000000000000000 is_static_call = false [previous_kernel_public_inputs.end.private_call_stack.call_context.msg_sender] - inner = "0x1fbffb7e3dd073d1ff0f74491a59a89d1da4ed5f6fd76188dfd7a2c682719495" + inner = "0x2cf807d522bb2fda2c20e097a5c3eb396846b6f9c889822715185867baf463f2" [previous_kernel_public_inputs.end.private_call_stack.call_context.contract_address] - inner = "0x1312c2dcc4ce1917d2fb76c7f3f81e88109c09f390f50104aab96fbd381644af" + inner = "0x06ecc897f249ca82db802829d67532c6095d1a9810350783760e0b99ef956374" [previous_kernel_public_inputs.end.private_call_stack.call_context.function_selector] inner = "0x00000000000000000000000000000000000000000000000000000000754fb767" @@ -4941,13 +4941,13 @@ end_side_effect_counter = "0x000000000000000000000000000000000000000000000000000 inner = "0x0000000000000000000000000000000000000000000000000000000000000000" [previous_kernel_public_inputs.fee_payer] - inner = "0x1fbffb7e3dd073d1ff0f74491a59a89d1da4ed5f6fd76188dfd7a2c682719495" + inner = "0x2cf807d522bb2fda2c20e097a5c3eb396846b6f9c889822715185867baf463f2" [private_call.vk] key = [ - "0x0000000000000000000000000000000000000000000000000000000000100000", + "0x0000000000000000000000000000000000000000000000000000000000040000", "0x0000000000000000000000000000000000000000000000000000000000000010", - "0x00000000000000000000000000000000000000000000000000000000000328b1", + "0x0000000000000000000000000000000000000000000000000000000000005609", "0x0000000000000000000000000000000000000000000000000000000000000001", "0x0000000000000000000000000000000000000000000000000000000000000000", "0x0000000000000000000000000000000000000000000000000000000000000001", @@ -4968,118 +4968,118 @@ key = [ "0x0000000000000000000000000000000000000000000000000000000000000000", "0x0000000000000000000000000000000000000000000000000000000000000000", "0x0000000000000000000000000000000000000000000000000000000000000000", - "0x0000000000000000000000000000002d55ce4efd51a8ce9657288d12364965af", - "0x000000000000000000000000000000000021a242f7835b9005e2d2cd3bada1d9", - "0x000000000000000000000000000000835b6ee6bf89a9eae304282f881c237a66", - "0x00000000000000000000000000000000000bc0ae6d50b543d2d67a61ad00197f", - "0x0000000000000000000000000000008f050a399683d4392e1d45932360617350", - "0x00000000000000000000000000000000001cc7005a6310c40ae890cdfe47109d", - "0x0000000000000000000000000000003a05f004914cced5f2eb4cdbec5f0d0176", - "0x0000000000000000000000000000000000164b5afe17e2d333b572ce9f556f90", - "0x0000000000000000000000000000006026291d505c2a51054f2bb9adbeb47d21", - "0x00000000000000000000000000000000000dc00b422e3517e9b4b778811b37cf", - "0x0000000000000000000000000000002b63b706cf61d5cd04315a74086e76aeaa", - "0x000000000000000000000000000000000019c23570256d0546a04ff22e6f67d4", - "0x000000000000000000000000000000aa2bb578b28669002797d7a4285d02c7b5", - "0x00000000000000000000000000000000000f479627572b263a8e80d434932f78", - "0x000000000000000000000000000000500d1d796bcb28667cc73f1dce96b3a248", - "0x00000000000000000000000000000000000237725886738d7fe62c99521ce596", - "0x000000000000000000000000000000486baa77d9a9ca6735f4a7dae8880ad591", - "0x000000000000000000000000000000000005db6fe4f2e3c4f937e390a2018f21", - "0x00000000000000000000000000000050468739b5f52a8a829629ac40dae30d25", - "0x0000000000000000000000000000000000130c3ab94d59117ff1991af7e9da9f", - "0x0000000000000000000000000000002d8c620a1a645519bc3580c3744dcdcc24", - "0x00000000000000000000000000000000001471bd1a03f5dceb9c14db82838d4e", - "0x0000000000000000000000000000000e59a2b85936adfa33b4b0db1712af9f83", - "0x00000000000000000000000000000000000b32d466372fcb7f3c5b936d67701a", + "0x00000000000000000000000000000094dd1c3616d71cc68c5fd46394b543af6d", + "0x00000000000000000000000000000000000062bca0dbf52354f9c3b575cd5190", + "0x000000000000000000000000000000a3fb912e5283cf6908392c9852a7f4103d", + "0x00000000000000000000000000000000001b156c9e5f06c74c8e62a1d540fd7e", + "0x000000000000000000000000000000cf0cd6956897a59c8a81cf8c053a624e39", + "0x00000000000000000000000000000000002bcb9cf3849dc0b7b2f12020afa9cd", + "0x000000000000000000000000000000218ad38075d5cf41b5dcc2a03218e4a4d9", + "0x00000000000000000000000000000000000a7892b42a5999ace644369b1e52cb", + "0x000000000000000000000000000000bf67aaaea4321c4bf314afc440b78632ab", + "0x00000000000000000000000000000000002639da3b61dfb16a217d27de16ad59", + "0x0000000000000000000000000000001ff52ad361667c69fc3aeb5a9b3686a803", + "0x0000000000000000000000000000000000215671c486f23d7e9272d6def7a413", + "0x000000000000000000000000000000dedf63a3676374d20610ba3ee937e92504", + "0x000000000000000000000000000000000028cb77c9b7ed53326c388c6b145544", + "0x000000000000000000000000000000e0233358b15319393dfd3522567a22e4c8", + "0x00000000000000000000000000000000000b291cf29b841ed5cda1f6c6b1fa75", + "0x000000000000000000000000000000e3564c4ecc82e3b811852c97a8f1b703cf", + "0x000000000000000000000000000000000020898cd489173c3cce4f41bb77104c", + "0x0000000000000000000000000000006c60b3eb52c63fd2dab509b15cfe36ea96", + "0x000000000000000000000000000000000022085737ca14caa25458c2b02f16fe", + "0x0000000000000000000000000000005e22dd49373b53e4784878b8158bd1e1c2", + "0x000000000000000000000000000000000029495119ba55064561b96ba5783641", + "0x000000000000000000000000000000d64c3a26675eb1a53de39dd87bb0dcc44c", + "0x0000000000000000000000000000000000268dc8d9c7b5d5bbf02e8edad7127c", "0x00000000000000000000000000000066aa9c8d7ab7581b9810eda73e53e17ddf", "0x000000000000000000000000000000000022e4a62d589f5dc58e003e17d2c29e", "0x00000000000000000000000000000052acb0956df6fa77996db824b0a1fe6270", "0x00000000000000000000000000000000000e3f83d3c9ffa6247c0ba515ce2e6f", - "0x00000000000000000000000000000090d53c6a3b26339cda6b73df9208314159", - "0x0000000000000000000000000000000000298c3311fc9170f92de940b042aab9", - "0x000000000000000000000000000000bf37537eb196b05c1d98fa51016a9bacbb", - "0x000000000000000000000000000000000007b05f408a612847259016b9204ae4", - "0x00000000000000000000000000000019bc95feb88fd9597659e6e7152ccf9a98", - "0x000000000000000000000000000000000003a5dc048edcd1945f5c19c1a84acc", - "0x00000000000000000000000000000077e722a6bab41957709deded8d56a4f730", - "0x00000000000000000000000000000000001e27afd13deaad2d5ac642251147b6", - "0x000000000000000000000000000000242ec54694c0141029612922fc836bd31d", - "0x0000000000000000000000000000000000230b18016bcf4cc34aee3fb1583b0a", - "0x000000000000000000000000000000345993d0edd0e4044716b5f8de29c07e11", - "0x000000000000000000000000000000000006e075756deb56c56c3f6b78489545", - "0x00000000000000000000000000000098aad68d055831a2ac9c096c7dfb66c3c4", - "0x000000000000000000000000000000000012c7983bd4b0c7ee80eab9fb3f7437", - "0x0000000000000000000000000000005c104523de023bb7c42ac6505e7bdf25ba", - "0x0000000000000000000000000000000000303d369c28fa3dd5ddb11cf8b6039d", - "0x0000000000000000000000000000009b3de50d90318bd7bd3549d5c06c506045", - "0x0000000000000000000000000000000000074a2ac03db9a5f2b953bc971ee637", - "0x000000000000000000000000000000ec40870228c95f6655656407e5f1b65f51", - "0x00000000000000000000000000000000002c1ad3c4506748cc0951a77a57f291", - "0x0000000000000000000000000000005a8b753a1632adf7cd46b28c948cfc6bfa", - "0x00000000000000000000000000000000002b1e1e7276e45d95ecdde55d31fee5", - "0x000000000000000000000000000000bdb1311956f646bd92ba1277545509ef7d", - "0x000000000000000000000000000000000010daa9cbbfdab4619efa0ca003d97f", - "0x0000000000000000000000000000001feefc50c77f53081b53824c7d5b26e3d6", - "0x0000000000000000000000000000000000051cb7a4e705dae43df52efb02b2c2", - "0x000000000000000000000000000000f060c86907d9d9b1913e772286776f59c1", - "0x000000000000000000000000000000000010f85302b8c8f2053077c03eabda0b", - "0x0000000000000000000000000000004df56472966dbd60039c18a2a7a55d5a9a", - "0x00000000000000000000000000000000002f1096321ba13c75527f0c8e729c19", - "0x0000000000000000000000000000006884ef14b67caea5d72255e35d8b1dae19", - "0x00000000000000000000000000000000001bebb0b8463ad12f7d290625a9d500", - "0x000000000000000000000000000000787eac31f0c6f35aefc28efaf49766f16e", - "0x0000000000000000000000000000000000276618700636e7ca4f595dfc2bc7e3", - "0x0000000000000000000000000000001ebe63283450e9bc2d110e8a477662bd90", - "0x000000000000000000000000000000000014c37310cc1ae21f8b908cd3114277", - "0x0000000000000000000000000000000b4654e72f123e332753d7825734c7902b", - "0x00000000000000000000000000000000000fb0bfb9e52c02525a8981b29928fc", - "0x000000000000000000000000000000aef39ccc7968367b3e38d64c2ea9948a36", - "0x000000000000000000000000000000000027ce72aa41a1f0713a7d7e79b44935", - "0x0000000000000000000000000000006c1eb91e846b8895883ca85b5263466687", - "0x0000000000000000000000000000000000049aea578ac60c343fb7ab5fe24b22", - "0x0000000000000000000000000000005e2a1e2d170350d3a5925d1cf62d5936bb", - "0x00000000000000000000000000000000002560392502f3364c15c9e29c6da9b6", - "0x000000000000000000000000000000b7e2ea8669dd353b074e4d256b0ddc3709", - "0x00000000000000000000000000000000000b603fa2a1628c1484e80809dd58f0", - "0x0000000000000000000000000000000a9243356a76e8fe43ce5bce9014039482", - "0x00000000000000000000000000000000001df8e969614dd2dfd4335a1b1cbc68", - "0x000000000000000000000000000000484a00abd1a2252414e2cd16dab2adee0d", - "0x00000000000000000000000000000000000419d7b7b07cb30176afaab55e0940", - "0x000000000000000000000000000000318787efdc5579a8956c92bb71745b472c", - "0x00000000000000000000000000000000000c3fd8d477a50ee55d0301e91c24d5", - "0x000000000000000000000000000000c3183ba2ee6a730d7ad586b78c769e48c8", - "0x0000000000000000000000000000000000204867fe329eeff84c88ec5a42adcc", - "0x000000000000000000000000000000c63ff3eae99a4d8da2cdedceaeaf16dc8a", - "0x0000000000000000000000000000000000041a80ca33c0a8c84c1f6d3c4be3cd", - "0x000000000000000000000000000000742b9c7fd6460808161789e3b569b2f680", - "0x00000000000000000000000000000000000655e40303079c493dde0c849ba9d1", - "0x00000000000000000000000000000053254558adcc644dc33d0f1fb9d67a083b", - "0x0000000000000000000000000000000000195b1b3233cf50a2a79bbf9ca42ab3", - "0x000000000000000000000000000000f6f4596202301b6ae4eb0ebbeadd203340", - "0x00000000000000000000000000000000000adc89c48d75b571636f5bbeb4a806", - "0x00000000000000000000000000000000034e3e27454ef992b4bf84b97baa7471", - "0x0000000000000000000000000000000000066f28135748f119631c3fe07fa9d7", - "0x0000000000000000000000000000003b64a66f2ac4979b65e56568c5a31b14ed", - "0x00000000000000000000000000000000002e25783551df50c004ec7cd1f4dd8b", - "0x000000000000000000000000000000e8258f84477c1b62565a559ba7bb38832e", - "0x000000000000000000000000000000000018f76cf0ceeccb4798de741ae89b64", - "0x000000000000000000000000000000353d43fa70e99239c1c1c67e271a0eeac5", - "0x00000000000000000000000000000000002d299fb68678d0150bcc5b16dc8252", - "0x0000000000000000000000000000002814ede7cd27daed00c33c12860bc4b046", - "0x000000000000000000000000000000000015d3ac5a199abb74933a4efc98c59b", - "0x000000000000000000000000000000469680c270e551515344592f59188fa765", - "0x00000000000000000000000000000000002d38d6d4ba1e4763a74ecdb11ca1f3", - "0x000000000000000000000000000000fce917c0d5dca019477c52f6075332b612", - "0x000000000000000000000000000000000012db39e892826b32610ee08251e005", + "0x00000000000000000000000000000047705ba5b1c5a09335f498b1b43908cebd", + "0x00000000000000000000000000000000001e95b795a170c9a349e3dd00667f3e", + "0x000000000000000000000000000000facdcbb0afc541179fc5e7f1052c58c528", + "0x0000000000000000000000000000000000100406f14435d2a1be90a62b7fd3de", + "0x00000000000000000000000000000049c10c333bd8415612d1f4563ddeddba99", + "0x00000000000000000000000000000000002543146cd8f5d145203d7cf8602594", + "0x000000000000000000000000000000e38aa2de3aad3df100b6d2a5a2290c868b", + "0x000000000000000000000000000000000013439a50e23f836318cf1c1a7a00e2", + "0x0000000000000000000000000000001904dfab2a8eda8f8cd7077b86cc3e277a", + "0x00000000000000000000000000000000000cb12d9cd652429d30c621e1ac53a4", + "0x00000000000000000000000000000056025c31591491eb0b47a325cd7a6eaa3e", + "0x000000000000000000000000000000000014cd28affbb5f4715e7692db412382", + "0x000000000000000000000000000000fc4f419f42f5afa9111ba81714204eea89", + "0x00000000000000000000000000000000000c132eda7dbf2e81177daaec19cc3c", + "0x000000000000000000000000000000a0060081e7a1c4fa84de0f560dd1b04e4e", + "0x00000000000000000000000000000000001a3c3eccd140e96f57657da935b191", + "0x0000000000000000000000000000004887706d2694ba41c0ba81c3381ccc4793", + "0x0000000000000000000000000000000000223d04d8adb62d846597a65e0ccd9c", + "0x000000000000000000000000000000c1d88bc61ad84547f773232cb0aa0aef97", + "0x00000000000000000000000000000000000cf72d6bde514657b0ca2243af081e", + "0x00000000000000000000000000000027950d7a4e7375e97a5d5671a3d5695498", + "0x00000000000000000000000000000000001e01518651f1f1254d06282cf48b3d", + "0x00000000000000000000000000000065508a80cf8711ee2ccc30c11f0df517a8", + "0x000000000000000000000000000000000020c5a227a56adbf5ed881c4e61a606", + "0x000000000000000000000000000000c76a98bb6b111796bb42b8c7b93fd374e5", + "0x000000000000000000000000000000000000a314edead27d1a9a6f55b8c4f644", + "0x0000000000000000000000000000001addd71f136aa85db94308a8b87d751069", + "0x00000000000000000000000000000000001747697dde9ef5b02b8e9b545f6b22", + "0x00000000000000000000000000000030f78ced4bd37e3a247fe8f93a278bfb72", + "0x00000000000000000000000000000000001a34f4e5d488fffba4fdd7e61cbac8", + "0x00000000000000000000000000000080ed6ba1cdb5c2394408b032e14d9b2028", + "0x000000000000000000000000000000000029a2c5321fb8872de274c8f6798244", + "0x000000000000000000000000000000a565c4c553e2169e53a52824f2045ed07d", + "0x0000000000000000000000000000000000194444e98191c9a6e9d088209fc8e3", + "0x000000000000000000000000000000e00d0a9b8c4019e8b700ee7219c8e9a142", + "0x000000000000000000000000000000000015a9d566667194768efccdcd3ed1cc", + "0x000000000000000000000000000000134416430f0270a1dd703be0c610f1423f", + "0x00000000000000000000000000000000001759634e89c344228146f950be90ea", + "0x000000000000000000000000000000b0affde9820e73f6daed3b244902dc6d98", + "0x00000000000000000000000000000000001a4e5b46f94f4eb06e1152810a5a58", + "0x0000000000000000000000000000003f72f42ae90b6d4fdb8c54bccb6c3b45bd", + "0x00000000000000000000000000000000002f8d0dc9a00db8e44290de7f4cf3d2", + "0x000000000000000000000000000000903aac834ed8e51e06eda5c909c21df3ea", + "0x00000000000000000000000000000000000da59b40783c687d13ef18f70093e0", + "0x000000000000000000000000000000711560c8313d5a2e6e4d74673262dfeff5", + "0x00000000000000000000000000000000002301a62e5f403620dd782f4d7dc00d", + "0x000000000000000000000000000000aef8276effbb78791f60620c129a567fb7", + "0x00000000000000000000000000000000000190396b63bf9ccb68b2ba95931b0b", + "0x000000000000000000000000000000015fa41583c3e4be57e224d5be7101a8fc", + "0x00000000000000000000000000000000001ea3e899220b86869268f684fad97d", + "0x000000000000000000000000000000c020422fa9229df208eb20bac91e32a941", + "0x00000000000000000000000000000000000601ee33c1a6e745f68a583eca8dd7", + "0x0000000000000000000000000000002e4ffe2eeca7fe184e5ca3e2155594941c", + "0x00000000000000000000000000000000000fc7e11ad9e19382e419fc3f9d9875", + "0x00000000000000000000000000000022ecbbddd7c021c8a979890d7aa6ae2aaa", + "0x0000000000000000000000000000000000024b660206dd5d4cbf2d8e1338982a", + "0x0000000000000000000000000000003d3e3e2276f64eefc2ad3cd02a9fc00a9a", + "0x000000000000000000000000000000000026c9d6877e547d978fe5280f6f2926", + "0x0000000000000000000000000000002050d5d9365b39bc8d9c9763e85e3088de", + "0x000000000000000000000000000000000022e1141af2f78592bb50faf2a90203", + "0x000000000000000000000000000000224e7b8bb076c01d9d15e695db49628479", + "0x00000000000000000000000000000000000b5a0d3ec2e5f2b3043ad5927f75ee", + "0x000000000000000000000000000000a264984f15cb7eab2c4f69a5d808a56f4d", + "0x00000000000000000000000000000000002f493e4aa25ea71f90ff957e2aaa9e", + "0x0000000000000000000000000000002b7f0feb83648e11b1fe0d8bc6b60c6f21", + "0x00000000000000000000000000000000000c0dfc3216a7e44e425ceff18619f4", + "0x000000000000000000000000000000be3fcde4c4e08161be79794822aefbb3f6", + "0x00000000000000000000000000000000000b7e070c35ade44881ab0cabea6941", + "0x000000000000000000000000000000117df61a4bf18a7446b54d8ecdd0e52721", + "0x0000000000000000000000000000000000174c4daacc6febe82d8831a90444ef", + "0x000000000000000000000000000000cf14c4f206eb07a33197ff5cf6bbac0baf", + "0x00000000000000000000000000000000000d3d0f705c9c3b426e2f7864790ae8", + "0x00000000000000000000000000000099583d0a90e6d553e4bd6449b58ef507a1", + "0x000000000000000000000000000000000007039be70b557b6f0d4d59fb1280a1", + "0x0000000000000000000000000000006cbf05efb3e2b65b04bde71a334d2feb33", + "0x00000000000000000000000000000000000a11854b0d30aea75dade8ae925fed", "0x0000000000000000000000000000000000000000000000000000000000000001", "0x0000000000000000000000000000000000000000000000000000000000000000", "0x0000000000000000000000000000000000000000000000000000000000000002", "0x0000000000000000000000000000000000000000000000000000000000000000", - "0x0000000000000000000000000000004d324deb0b6fec7e900fcf58430a7dc824", - "0x000000000000000000000000000000000021dead0e69d9b6cd6f574ac51caeea", - "0x0000000000000000000000000000006e72a8573f8b755899ef07398473c70f61", - "0x0000000000000000000000000000000000112328f09c2917b01406fd8081e3e4", + "0x000000000000000000000000000000fa752cf8e2dec3862a2da8a7f051953427", + "0x000000000000000000000000000000000012cbd05c424a1cae3085f9c10e65c1", + "0x000000000000000000000000000000d89336711e5974d9a6786ddad114540d53", + "0x000000000000000000000000000000000003a48d90aee8e0937377872a05ef8a", "0x0000000000000000000000000000006bcc7a05ff95a96b289424c5f733670d96", "0x000000000000000000000000000000000000c43726f75b6fda0de22ce0e0dfab", "0x0000000000000000000000000000001d0a09d7178ec93bad7858f96e64f0b48d", @@ -5089,11 +5089,11 @@ key = [ "0x00000000000000000000000000000078f4b3bc61f19d6e7069359bbf47e7f907", "0x00000000000000000000000000000000002d7c18a93c3dae58809faaeec6a86a" ] -hash = "0x02bbf3980e5b74581e6454cacf87810ab52b053e59e28b49dba56d816cd1b99e" +hash = "0x144ef5a9c67415c23f4bdf4ee7ac1f2271b0c8cdce7c6ee26048c669751edee3" [private_call.verification_key_hints] -contract_class_artifact_hash = "0x06fb3155779bb7c84b3cb3f44589f5b1dfbe92e6b9c92c8200d402f13ee6142c" -contract_class_public_bytecode_commitment = "0x1bef8077d4f387ff8e7a008ec7e626f020549bafd0a3c049e9e20560eb192a31" +contract_class_artifact_hash = "0x2e84bde178f724dbb280ceeb8c8a90214590eb2a8e194f8d1a9438e1fba00965" +contract_class_public_bytecode_commitment = "0x2377f202fabc65b13b4f0482937fe10116c64ef4430ede801ace8d109e6a858f" updated_class_id_shared_mutable_values = [ "0x0000000000000000000000000000000000000000000000000000000000000000", "0x0000000000000000000000000000000000000000000000000000000000000000", @@ -5103,10 +5103,10 @@ updated_class_id_shared_mutable_values = [ [private_call.verification_key_hints.function_leaf_membership_witness] leaf_index = "4" sibling_path = [ - "0x2e9e16965045f0253bc385007ed58e4ae5797c89febfa4feb42897b0ac6535a3", - "0x0bb9d6b61a363ce1bd9b2547d39b85d4a6bc75cd281866a6652e615296134f1c", - "0x21865d251e8969670b008573007a02eb2c206531f43f7b9351c4630492f946ef", - "0x2e940db1f11cefb22dc871630e4c6e4919c6ef17f3a16e176264e97ad98fbf89", + "0x2706eb28b4aefc5a2db25b299b04aab1f1da31d79bef02633f47ddc8483b0d85", + "0x2092700ca28025fd9c5b4e477b4c9c17f8c35401fb775bd86a6bf572b7abe32a", + "0x15bdd104a125457baa62b97ed6f7a5467dd14e8e6024a0ed868e8b5f6b299d1e", + "0x10376b1eafe9e8240fa62673e291309497e8c7c31ef746ecbd270e7f89dd7b27", "0x2a6595890719fef7967c209488728aa5342438ba52058a3c770202f55acf6854" ] @@ -5131,31 +5131,31 @@ y = "0x2039907fe37f08d10739255141bb066c506a12f7d1e8dfec21abc58494705b6f" is_infinite = false [private_call.verification_key_hints.salted_initialization_hash] - inner = "0x192dd287880e3c381ae42c5c3d6a9a2437d3c2a26cb8bc460d5bef2e2396157a" + inner = "0x1213c773f9a8bfb6c8e7f23507930cc6b8f534b19f52b4c8599aaee22a3f3144" [private_call.verification_key_hints.protocol_contract_membership_witness] - leaf_index = "3" + leaf_index = "6" sibling_path = [ - "0x0c1938d995194dd3b86ef5f9795986fb5904e12846883967e599430018a9862f", - "0x2edc2a455d09b3ec654049fb816e5d4c2aaf583f9487881c0b659b40eba599a7", - "0x28d50bf920db91e154515d196d77ad1e674110a44a58c65eae5f516eecd82fcb" + "0x0000000000000000000000000000000000000000000000000000000000000000", + "0x2572d62ec1278cb2b203aaf3b8f7ae65f700a4d5966a6807b4ddb6a3c79fe8ac", + "0x2fe8323476566e654df1d1d3f9fe6c36b2fff23e3204e29b1390ad89f35ee6c8" ] [private_call.verification_key_hints.protocol_contract_leaf] - address = "0x05d420eae96f71ac7ee7fb186bc132d188b170df18bcba984157daf68e643841" - next_address = "0x13e17a8a934210af406206b30f3c5e3752d91405bb2ab5bdba6b661e18997a3e" + address = "0x052bef75390bbc510800697db8c52e440a3dd63c054559acda825da1b62f788d" + next_address = "0x0d11b598f1fc9349e0727277252584b2c75843392fff33525ab9a4b8dd787bdd" [private_call.verification_key_hints.updated_class_id_witness] - leaf_index = "129" + leaf_index = "133" sibling_path = [ - "0x2f35676cbfa30cc91bdceb6baa42d6e9d8b0415789cc26f62485ad1b0906c6d9", - "0x07e271b2c15d9f57cb76363ee3f539ca2377d439082db5bfbe5fdac48e7c531d", - "0x0a1760973a65f1ce594c04e3422da9be9a1bb716918bf880efd319d9561c6a83", - "0x19242f032f077869bf23d433fa9af215f438cbbee757bc8d62f65c9ec52a4519", + "0x1440612d83142e29caf822dcd7b06ae1d762ea4e350ddb8026bd9e38f8735fe3", + "0x263a2a9b6a2e9bed8e12b0045b04ba99aad5c938109adf3b30712e35a03c4cab", + "0x1f67bdd7d756f16084a8193f355b0ac846b37211bfed917a6154e04f1425741c", + "0x24ad4c7720c0d2a7d8c3e4c8240c3960c0eff7defeaffa178b35a026bb52de68", "0x2373ea368857ec7af97e7b470d705848e2bf93ed7bef142a490f2119bcf82d8e", "0x120157cfaaa49ce3da30f8b47879114977c24b266d58b0ac18b325d878aafddf", "0x01c28fe1059ae0237b72334700697bdf465e03df03986fe05200cadeda66bd76", - "0x28a77c2e3794b88880300aae5647f9188c87b4139b53a12ab1b46cc8aa818a9d", + "0x28e51a4e827dd261adc92cfde4c58fea4ac009513fbc20ad8e78a16a5e30ebab", "0x067243231eddf4222f3911defbba7705aff06ed45960b27f6f91319196ef97e1", "0x1849b85f3c693693e732dfc4577217acc18295193bede09ce8b97ad910310972", "0x2a775ea761d20435b31fa2c33ff07663e24542ffb9e7b293dfce3042eb104686", @@ -5191,13 +5191,13 @@ is_infinite = false ] [private_call.verification_key_hints.updated_class_id_leaf] - slot = "0x072eaaa27ee2fd3ce1f3ddf1a4e848e756caea49ec606f7c30853e980a6ccc4a" - value = "0x0000000000000000000000000000000000000000000000000000000000000001" - next_slot = "0x0a33e72af61f3ec84fb1522ae1281dd6a1d48c57dd18c69254a262cf37503c3e" - next_index = "0x0000000000000000000000000000000000000000000000000000000000000076" + slot = "0x0dd8fa1ecab5d5c8fecc3b78b85c50964a8710974052bff9a48104606f685e0b" + value = "0x000000000000000000000000000000000000000000000000000000000000dead" + next_slot = "0x0ffd26490a49a35f239f15a77979146990d73fbdf7850167546fcee4df30c733" + next_index = "0x000000000000000000000000000000000000000000000000000000000000008e" [app_public_inputs] -args_hash = "0x283cbcbb492b17fcb0ca65bf4e265138fa55a5bb705315eb4a48be9db3c419a1" +args_hash = "0x2170dc555d45af1a9ef6fd3615df62f0790b1eef243b4d4d67e3bb9b71f7c751" returns_hash = "0x0000000000000000000000000000000000000000000000000000000000000000" start_side_effect_counter = "0x0000000000000000000000000000000000000000000000000000000000000003" end_side_effect_counter = "0x000000000000000000000000000000000000000000000000000000000000000c" @@ -5212,16 +5212,16 @@ _value = "0x0000000000000000000000000000000000000000000000000000000000000000" is_static_call = false [app_public_inputs.call_context.msg_sender] - inner = "0x1fbffb7e3dd073d1ff0f74491a59a89d1da4ed5f6fd76188dfd7a2c682719495" + inner = "0x2cf807d522bb2fda2c20e097a5c3eb396846b6f9c889822715185867baf463f2" [app_public_inputs.call_context.contract_address] - inner = "0x1312c2dcc4ce1917d2fb76c7f3f81e88109c09f390f50104aab96fbd381644af" + inner = "0x06ecc897f249ca82db802829d67532c6095d1a9810350783760e0b99ef956374" [app_public_inputs.call_context.function_selector] inner = "0x00000000000000000000000000000000000000000000000000000000754fb767" [[app_public_inputs.note_hash_read_requests]] - value = "0x2df4b449e117f7d44c3f9678264b5514c1da218816c2f8ca2c3504f74db0714f" + value = "0x1fe71a37285c9feef8ca8f9a0c76ccf17ee5bbec2ad1d5ab7d17125bbba0867c" counter = "0x0000000000000000000000000000000000000000000000000000000000000005" [[app_public_inputs.note_hash_read_requests]] @@ -5285,7 +5285,7 @@ _value = "0x0000000000000000000000000000000000000000000000000000000000000000" counter = "0x0000000000000000000000000000000000000000000000000000000000000000" [[app_public_inputs.nullifier_read_requests]] - value = "0x1312c2dcc4ce1917d2fb76c7f3f81e88109c09f390f50104aab96fbd381644af" + value = "0x06ecc897f249ca82db802829d67532c6095d1a9810350783760e0b99ef956374" counter = "0x0000000000000000000000000000000000000000000000000000000000000004" [[app_public_inputs.nullifier_read_requests]] @@ -5352,11 +5352,11 @@ _value = "0x0000000000000000000000000000000000000000000000000000000000000000" sk_app_generator = "0x0000000000000000000000000000000000000000000000000000000000000030" [app_public_inputs.key_validation_requests_and_generators.request] - sk_app = "0x2514db9b9e6835cab70454438cc870334f84a31bc72584c207c2363c5c782407" + sk_app = "0x0b24dd67582e21eebd21a2b185a20b31b3c653412e24cdf2a9583093b72f2b94" [app_public_inputs.key_validation_requests_and_generators.request.pk_m] - x = "0x1333d03dac36afcc45a67ebb95e06a4c9caf64e04873af9b1c964d76ccec6cc2" - y = "0x1b60101ea6809874db7c21c85845565a9bc7862329e3aadd1721de677580d596" + x = "0x148ec36764dd4bb3dcd3c071da411e19870db7799bdd10b21fbb9d520271b892" + y = "0x1e873e1aed5ef6340cdae87b4245bf59d40b876a60ec42d831a9f710723b78cc" is_infinite = false [[app_public_inputs.key_validation_requests_and_generators]] @@ -5525,11 +5525,11 @@ _value = "0x0000000000000000000000000000000000000000000000000000000000000000" is_infinite = false [[app_public_inputs.note_hashes]] - value = "0x223417e69f7f0064cc8b684966769808a9ab588ffab2bbc5235e4eb61860215e" + value = "0x113b0e5d4cab792c319d8559d049761753feb9265c064e6cc73a08d2c9442929" counter = "0x0000000000000000000000000000000000000000000000000000000000000007" [[app_public_inputs.note_hashes]] - value = "0x00f7f0f4990c637299d7e1c729045a77346335d379c98698724eef2542ef1f48" + value = "0x208709013cc815832393a83957faddb0107caf65551f6ae1038bb6f236d8e6a1" counter = "0x0000000000000000000000000000000000000000000000000000000000000009" [[app_public_inputs.note_hashes]] @@ -5589,7 +5589,7 @@ _value = "0x0000000000000000000000000000000000000000000000000000000000000000" counter = "0x0000000000000000000000000000000000000000000000000000000000000000" [[app_public_inputs.nullifiers]] - value = "0x2ca8581edface6c282cd2f137e9f8ddada6286d9b55de6eb71c9698ba1d039c6" + value = "0x026e06742c116bc9574aefd40e3ac921d3ff63fc725c546b3a0c06941edd653b" counter = "0x0000000000000000000000000000000000000000000000000000000000000006" note_hash = "0x0000000000000000000000000000000000000000000000000000000000000000" @@ -5996,24 +5996,24 @@ _value = "0x0000000000000000000000000000000000000000000000000000000000000000" [app_public_inputs.private_logs.log] fields = [ - "0x1b79f4fdd5a9bc7754a6ad70108de6f4d19de1178d65942b7849e2a9bad67ab8", - "0x241689515ad9bb031f2c563c80a71a0b1aef085a5a006365c759829effd22c9d", - "0x0001f687e4ca027a7e5d98ee3bfc4e4c2193ae2d142c4fc199df937efa3c3605", - "0x00e908c0a141394ab49ee138cf8df0601118e212280e9d581cb75f049908a746", - "0x007c9fe04799218944479d6eb90382555d6f6e79756528d059f05224cf833735", - "0x00de05d5d5e51b50256c597c9eed2a180ebd8cfb4cfc5639151e10aa9595db15", - "0x00a4e57ed3cdcb8a3680adc7abd102afb08fdd6b9fac7aca0a67052be30a9273", - "0x00423f129fbdcc583d45596c9dc7d8d84bf774d606c00d418e6d42ab92e6966e", - "0x00f300d17a7c438447162fc2b370332baaea0c6f30f37d390ab0b8b87bbe1987", - "0x007c7ed35dfbb2e0f2454ffd898e1b00e5f1495d6c8ceeb86def3494b2ce3cb2", - "0x006a19af9d42a42206c77d85249081ca61b2f8023ef80aca97e7fc7d5536733d", - "0x00d606b5d21ff73338b9ee621f36a2b90819e0c065a4a325ac109dd332330030", - "0x005f7cbdd1ea418d2631220ca242ad1734541647ef7f1999f8030f785957c8cf", - "0x00dd528cfb397210c1bc12848e8914217671ee59ef38860f5fa0ba66c39c4ec7", - "0x0041b17b9c9e79d56e32bd16806e1db3fc7395bf55843484497f59388469b6bc", - "0x00ac74a2602c830841c093adde5c2f340132a9ea955ae00011a2b3317b374d64", - "0x0090dba66673eb965ae76d26ca649e04118a6c60262a452c9bf1866c616723c2", - "0x002381b32fe7e18aac6962343482fa3e4689830845e49c74662ffb153437c34c" + "0x1e73af99243504dc87b18be1798401bf1fdd3e3f1c0f6000d6d81479cf0da184", + "0x1679ff1c5744c81939af8313494375c053695a3f32935cbd126541339a074c94", + "0x0001949d5b1abf031ea18b25c688deeace5c0152b60daf65743bb5f6484f9207", + "0x00f1b4d8f84ea969694c7ef79eb66f743e494bbfaf5daaa35ce19caa7dc32dd6", + "0x0054974047d0a216144b1e9d6f4ecfe682ac549e154913aa496048ed1e2b67f2", + "0x00f7695ee1dc9fabe2157baa3c6c4d53aecb04aee09a334fb831647236b6ccf7", + "0x00610663f935c70bd84a69be25fde6469e294e354672d3f36bb77941a7d77a93", + "0x009f1d1fdf8f419d38732d8e03ab064e21e435cf5854946eb480b4c6db5c52cb", + "0x00aad0c4dd096f74646684e56d25caa9132600cf96680410aa42dc45d7796571", + "0x00a3476c70e6d18d645c945df44e99e36fa5fa30aac1a57764dc1f42aac9501e", + "0x008084ae177c5a273117043abd54f08ac14df79af37b1a2627a5cf102d3b3b93", + "0x0076cf2935ed275068f1a6ba726f076a740fce83d272e7dfcb7d215e8fa8ba12", + "0x003b8a1259906e80e149bb9bd857d000426564b9ac358ea0e6e0fc72c72a93ba", + "0x001964779acd30e38e57c665310886208f506a5f2d097b444989f023d0e4d4e3", + "0x0035034f8710671c7b7378075c105ced5d7945b4fddf5796b8c4b2643765d486", + "0x00b0d614e355de2922fd9a3d9224e2c9beea7b3bfbf1e6702723d7070f371ccb", + "0x0013e5d17c4d1de70f2bd9fb9cdf32ea6199c9b853e3dabe61d9dbdd4c0bfb8a", + "0x0074081151cc5e7c882dc9555e41508ee40406b83d7956443298e3d883373f25" ] [[app_public_inputs.private_logs]] @@ -6022,24 +6022,24 @@ _value = "0x0000000000000000000000000000000000000000000000000000000000000000" [app_public_inputs.private_logs.log] fields = [ - "0x01eeed9661aac657a5cc87cfe49588f5129c2ee4f2a7557e232d6eea2d25e150", - "0x0a8c87c83c49772365c189fc9c0a0dfab1761b402f8831c7c166ae002da3ab97", - "0x0000a044ba9def280b90cc455d95275f29bd0d3fbe46f7904cc49812800ff82c", - "0x00a3b1021727a11ac57f408257f16b44ee5416472a5eb0e5fcd6857478491b84", - "0x00bfb5cca004027efb9ffdf17372072b4d224e004dfd78981e8f58c537197f06", - "0x000002d43faaf60a4ae8c86f3947f9aea619dc93f3fae7c71fd6481c38820ec1", - "0x002a96468a03e422ff36f1d6d22783b16f6abbec31bff71676ba140ec15b35cb", - "0x00f3b060584e164a439a860bb20be8162303cb004b6ad8f242f599834587cb62", - "0x002fa924abe533fdcbcf6ea4466484ffc653d5befd64d21fc21f499196d84caf", - "0x00a1f02ff7abd8717e2c9ce674b91c89e29186917d4b5851b91c82566eb2b159", - "0x0091a1cfaf9bdcc1723b6cc086a98f74e561dcd1731b9ce2c55b68b78f22496e", - "0x009d34d4b68e9682e14d66d122c64f9b4c5f5eb1899cba5d46d32fe4adca89c0", - "0x00eb137c7601472c215a7d930f3548aa72b5f07edf6add3d930363da078dddb0", - "0x00751f990754e1ea5e322d5d9e8a0a54dad2bcf00db7047e24ade4b6f09b41b4", - "0x00d265e59cd25a50b6bf61ebbbf10c3ac8e2a81780f153e609af3967d12bce3e", - "0x005fc0fb27cd2b426d25caa46ec98b4513a6ae03218affc4ed61b9f89e2bceaf", - "0x00f449bf7f2221930840ea5b83455216a24766169033262c05894f37ab5cb15d", - "0x006a864c15b2862e419eecf43028965b884356ee9d47faa0ab398e3cfef76822" + "0x0d43cb6505e9236e81e2d7017a224335f3163d2142e9589141477896054754bd", + "0x2a76e25734725005c5f6849224a9b0a9fa53ea3e48a49060d7905d9ab3e17573", + "0x00014dbf7bd926b610e3454d3985cc402e9a806209ae0eedd3db41b12f840d97", + "0x00ef0efb29b8f30abbeb4ffb7a60b43a6e557020a56ed4dac2a4e98ed36ca79c", + "0x00ea1699d945042a6c002409d1183d1789cdd6c0ebd3c1fb2e31a4371f6be4b6", + "0x00889949994552b6392fffdf82cce02037734afc8befd4d84918906186fc327e", + "0x007df8f79360833392f2578191f0807649a793bcc8cd71f2f83fc37a3ef7d116", + "0x0080a639c027caaf4f14f9f65be1b7a1dde1f72dd40ed7dd43adb84bc91907a3", + "0x00f67da6e9356707bf1a10bdb5df611016b54fcd176a94cd6963cf026ac6bd5b", + "0x0094f9b395e65a29877ab26efbeb1aceca2326dfcc2e3514c0dc8aefa993c7b4", + "0x00bf4cb18f822e5ac8761edcbcbf9b60cfe099266f47aa4f1fbbacf70a411df2", + "0x0032c0abb8a37303332096a3f556951d4af81e81f494bf33c0f4eb0fddbc050d", + "0x001fd058ef7e0f86b48c2e4a00af1b4cd20229385cabc71226e91d1d17255010", + "0x00d8e94b0b4035a45a8b7f68b444ee6bdc66ec8a685f528cccdc9f9fb8264804", + "0x00e8f90c305875e5dc3d5a5b644e671c229c66265ff62ba171b9a02eb7b39f9c", + "0x000a0547bb209f94ef784d5ec2a0650a03a2e351a4933856450fbe6316deb845", + "0x005e61f274167ea12c033da0a65399ef607263e14505369b52b05d5e62179196", + "0x00b86470dedb0f9d55041bc082a1da03e7840e1b91c63cb8b3be0dd3781c9270" ] [[app_public_inputs.private_logs]] @@ -6048,24 +6048,24 @@ _value = "0x0000000000000000000000000000000000000000000000000000000000000000" [app_public_inputs.private_logs.log] fields = [ - "0x302b20c02b852e9abdeb710f8573a13dfaa77307300084ac428b158d8e13b2b2", - "0x238d97a661cdc7da9320174cc015557d8ba78e326e828f325d0d104a7358b184", - "0x00009f15eff430eab2d99016bb20d414c4bdaef3fbc2d29021ec3322bcdc50b3", - "0x000e39d1de1383ed3c2f5f70b0fc955adaee65585a61de06209b7499ec8839b0", - "0x007c0ca6f5870a26c949eecb51e506cf646bfac371e16af9555e8b5b45a4cacb", - "0x0041e572f1cc71db4a2f1689a14fce7d211a336041aefc2efa666c79f0e124f3", - "0x002158608e28dd18510dc41c65a6a5414e704d946e3ebf249071d391bd21af9a", - "0x00306a9dcdf54b68790b7492f63706e7d29fff1bb4a04b9e0fc12704bc3c6d24", - "0x00da0e93b5b2e0970266910f8ad0df779b236c41f33508a3c2e18ce2ddd03dc6", - "0x009ced600485ea0b7b63f765bfe55baae3e7fb631d1894a27aa446be0849f268", - "0x003240a6c5c98aa84b985864e8c649d909d301b91bb17ee26d530ceb7241517a", - "0x00404d32b8eb9adc718f48c6636f1f6c5d154dfd17b742ba763b62bd1eb2928b", - "0x001a2ac7780a9a53620f4e95860d671874c6fe54476e571e9620c94688b765a9", - "0x00334044ca42c77ffc96e0e7a7a10497f4469c64c3c27773a84880494307d8a2", - "0x00d0ac43578e81672fb5545e149707a958f9ad039ad5bbc88989eeef4c907ad1", - "0x001c5275ccb97f1cd1183d71ace272e1c63f8be778f4ed7e88c8ea780eecc2a5", - "0x003d3ffbacd14fbd3cb1d63db70a9efcb2391ecef518312c9bc6817d1a1fca82", - "0x00e71efffdcb6bd0adf3266c4fd5b051e45cc69d1cad339906cb76d869fe6352" + "0x2851a26610a7948d4e15c833d920bfce79e4263abb0d31c160a051ab9343c25d", + "0x08377b4dd76f09636979876e333b33479b9f8fac65d313d04c81f14beb94cf5f", + "0x00019d3f32efd1f11584fac7adc8b9b4508b479712cdd604a76f8b7ee5a04c89", + "0x0025a45817d1ad6173d2b9588f09d184f174a61b449eff53d50c1acf985a0c8b", + "0x001c8bb7c24e0aa5b4d7a02a80bd95cfc68e7d5d770c6188e237c2af52e1fd90", + "0x00f671b2e0cc5108bc3a825795cdaaf503681be64e7b62ad75d8d19a9c107d4d", + "0x0069613696b3cebd58c63c103ff3f88762df94ba24f954de84c6d675d737f124", + "0x009af457b726623273831c146a368699ae3da91f3e0c7da3c6673285f8b9adfe", + "0x002475b41b4c542e75506de7fb94ac907457d8923f435d1fe5ab214685d27667", + "0x00dd9fb63df14bd84535e5dc120cd1e509b36288bd7144960e86f4d83993bba6", + "0x003c6519dc55f0260aa5d76b62ec7e856650694d818c1cb067b1df94cbed4d02", + "0x00d3434b1f141d195104f0de5e256997b3df95ed3797e22e59f2846a3146f6a6", + "0x008bd2a86b02b4cc67b1598216b810931a3279042ad1d81170e3f5376de9a26c", + "0x00d1bb9b7260b730aae17603d305178761a1356ba494a735fe6c22c9f72507e1", + "0x008a14cd5bd52eff5f8d6a8684badf13598ad5c1273fe43701cc354ae698f43a", + "0x00050cbe37dc55e3f41e0e4e5810e477665255dc2e3d4c6dfd9367030754f47c", + "0x005cfeead97740ac8afed636d734f07ea2582c7cc5bce8ef73be8d07c7e21b39", + "0x0047c6a025795affbf28a922e019075ac1e8411a5fe1b159aaa64bd356292790" ] [[app_public_inputs.private_logs]] @@ -6412,55 +6412,55 @@ _value = "0x0000000000000000000000000000000000000000000000000000000000000000" length = "0x0000000000000000000000000000000000000000000000000000000000000000" [app_public_inputs.historical_header] - total_fees = "0x00000000000000000000000000000000000000000000000000000098a68c8d4c" - total_mana_used = "0x0000000000000000000000000000000000000000000000000000000000019e8f" + total_fees = "0x000000000000000000000000000000000000000000000000000000002c0103c0" + total_mana_used = "0x0000000000000000000000000000000000000000000000000000000000013c36" [app_public_inputs.historical_header.last_archive] - root = "0x2e64c26fcfac3753f52faeb3fe3e01da50d21fca91dcb3f78b26abbf962aca85" - next_available_leaf_index = "0x0000000000000000000000000000000000000000000000000000000000000006" + root = "0x04ecfede3cb3d170b076089b4d0400636b980b65e62d76eb3aa3ebcfcd4e4c66" + next_available_leaf_index = "0x0000000000000000000000000000000000000000000000000000000000000008" [app_public_inputs.historical_header.content_commitment] num_txs = "0x0000000000000000000000000000000000000000000000000000000000000001" - blobs_hash = "0x00ea3a920ac1f28fa3653d01c5fcb56dd3a5b743dfbe2d4ff0b56a19b0070a51" + blobs_hash = "0x008da6aaf5e0016f04ac681db9c70467da97770605d66cbedc44746fcecd64d6" in_hash = "0x00089a9d421a82c4a25f7acbebe69e638d5b064fa8a60e018793dcb0be53752c" out_hash = "0x0000000000000000000000000000000000000000000000000000000000000000" [app_public_inputs.historical_header.state.l1_to_l2_message_tree] root = "0x2e33ee2008411c04b99c24b313513d097a0d21a5040b6193d1f978b8226892d6" -next_available_leaf_index = "0x0000000000000000000000000000000000000000000000000000000000000060" +next_available_leaf_index = "0x0000000000000000000000000000000000000000000000000000000000000080" [app_public_inputs.historical_header.state.partial.note_hash_tree] -root = "0x1c1b0cf0a9fc7fa11c87e27cd0e7aab2f96fdfaa9f7af0ef7089ed45af4242dc" -next_available_leaf_index = "0x0000000000000000000000000000000000000000000000000000000000000180" +root = "0x11d365c48e942152ad755b20a8e9d308d6fa5d46cccab9d40f9847b757208f27" +next_available_leaf_index = "0x0000000000000000000000000000000000000000000000000000000000000200" [app_public_inputs.historical_header.state.partial.nullifier_tree] -root = "0x2b7df5ccc7e2f93e227df2b3702ab9e93fd821364ed56e2837a1ae45f32ec7e6" -next_available_leaf_index = "0x0000000000000000000000000000000000000000000000000000000000000200" +root = "0x21d29273b47664993a6b4cd2a65feee16bd32c9ad1c8d0824aadc486ce3751ec" +next_available_leaf_index = "0x0000000000000000000000000000000000000000000000000000000000000280" [app_public_inputs.historical_header.state.partial.public_data_tree] -root = "0x22e6f3265727498f791055b26567a50808efacd47fc407471c92d359f95aff4a" -next_available_leaf_index = "0x000000000000000000000000000000000000000000000000000000000000008e" +root = "0x1728e175434a3b744ea0361dc154494c091d7ff76cc33b4eede273aa89ee2b19" +next_available_leaf_index = "0x000000000000000000000000000000000000000000000000000000000000008f" [app_public_inputs.historical_header.global_variables] chain_id = "0x0000000000000000000000000000000000000000000000000000000000007a69" - version = "0x0000000000000000000000000000000000000000000000000000000000000001" - block_number = "0x0000000000000000000000000000000000000000000000000000000000000006" - slot_number = "0x0000000000000000000000000000000000000000000000000000000000000008" - timestamp = "0x0000000000000000000000000000000000000000000000000000000067d9b690" + version = "0x00000000000000000000000000000000000000000000000000000000e6f03fcf" + block_number = "0x0000000000000000000000000000000000000000000000000000000000000008" + slot_number = "0x0000000000000000000000000000000000000000000000000000000000000013" + timestamp = "0x0000000000000000000000000000000000000000000000000000000067fa74a8" [app_public_inputs.historical_header.global_variables.coinbase] - inner = "0x000000000000000000000000a540911acb4195ad0bbfa2c10a46e3e54df4c649" + inner = "0x00000000000000000000000071d84878d343d87f145bfcc3af71b20b7430de57" [app_public_inputs.historical_header.global_variables.fee_recipient] inner = "0x0000000000000000000000000000000000000000000000000000000000000000" [app_public_inputs.historical_header.global_variables.gas_fees] fee_per_da_gas = "0x0000000000000000000000000000000000000000000000000000000000000000" - fee_per_l2_gas = "0x00000000000000000000000000000000000000000000000000000000005e43f4" + fee_per_l2_gas = "0x00000000000000000000000000000000000000000000000000000000000023a0" [app_public_inputs.tx_context] chain_id = "0x0000000000000000000000000000000000000000000000000000000000007a69" - version = "0x0000000000000000000000000000000000000000000000000000000000000001" + version = "0x00000000000000000000000000000000000000000000000000000000e6f03fcf" [app_public_inputs.tx_context.gas_settings.gas_limits] da_gas = "0x000000000000000000000000000000000000000000000000000000003b9aca00" @@ -6472,7 +6472,7 @@ l2_gas = "0x00000000000000000000000000000000000000000000000000000000005b8d80" [app_public_inputs.tx_context.gas_settings.max_fees_per_gas] fee_per_da_gas = "0x0000000000000000000000000000000000000000000000000000000000000000" -fee_per_l2_gas = "0x0000000000000000000000000000000000000000000000000000000000128928" +fee_per_l2_gas = "0x00000000000000000000000000000000000000000000000000000000000021de" [app_public_inputs.tx_context.gas_settings.max_priority_fees_per_gas] fee_per_da_gas = "0x0000000000000000000000000000000000000000000000000000000000000000" diff --git a/noir-projects/noir-protocol-circuits/crates/private-kernel-reset/Prover.toml b/noir-projects/noir-protocol-circuits/crates/private-kernel-reset/Prover.toml index 2976e5735095..463d520c496b 100644 --- a/noir-projects/noir-protocol-circuits/crates/private-kernel-reset/Prover.toml +++ b/noir-projects/noir-protocol-circuits/crates/private-kernel-reset/Prover.toml @@ -1,19 +1,19 @@ [previous_kernel] vk_index = "0x0000000000000000000000000000000000000000000000000000000000000000" vk_path = [ - "0x27a42bf18d8a464976e76a21f318739d92745918fc6c66b4b761a87f9c630203", - "0x2e9b297f0f66052919de9a44a5a4626ebbc5fc8f372b8cfd41d5336905c99e0c", - "0x015b69c8ea1a4a1097deb947c43693c2d5c2b3ab5aac73accb491f43d68acb1c", - "0x19816d7c1dabb2893c3f4ef0250936cb55ae926b870e7b14e990d50bdf9eb084", - "0x1269cc8f8216b2d60daca30e5e0ba1e1d11dfe89f0f0c2cadb113c30de181554", - "0x26b3cce275e6a21ac2049ab937390d4afb7793ec68d1d7bcddadfbfe45fbfb06" + "0x2f7990492fb38523aa684577903d0bd007b968530c8e40387fcd1574e02a63cc", + "0x162832a9703d2788b5221ff51bcb8bfe5b55cbe2bbb917fc13faeea857e77096", + "0x0fb6e22d807026d64881dd75926af825595d6b6bbd0c75415e2bfaf93e0c53a2", + "0x26121cf4ba1d9fe4a98c57cc36ab5640e2cebf720bf5d0ae4291c34416cc3fd7", + "0x0d8e4232c3e1214b1a72ee04016dd919308ecb6b01e871bdcdc36248ab044711", + "0x2fd02310a424f73ae3709cf4ff9d507e920407534ba3e965a5542a138b815675" ] [previous_kernel.vk] key = [ - "0x0000000000000000000000000000000000000000000000000000000000100000", + "0x0000000000000000000000000000000000000000000000000000000000040000", "0x0000000000000000000000000000000000000000000000000000000000000020", - "0x00000000000000000000000000000000000000000000000000000000000328b1", + "0x0000000000000000000000000000000000000000000000000000000000005609", "0x0000000000000000000000000000000000000000000000000000000000000001", "0x0000000000000000000000000000000000000000000000000000000000000010", "0x0000000000000000000000000000000000000000000000000000000000000011", @@ -34,94 +34,94 @@ vk_path = [ "0x0000000000000000000000000000000000000000000000000000000000000008", "0x0000000000000000000000000000000000000000000000000000000000000000", "0x0000000000000000000000000000000000000000000000000000000000000001", - "0x0000000000000000000000000000009e57852285fcdd2999c42c40c75ce607a5", - "0x00000000000000000000000000000000002b604aa85d9481befd86d4ff03462d", - "0x0000000000000000000000000000000cc24eabaede4d51dc80d0d47bdae2cd5a", - "0x000000000000000000000000000000000004541aff8cad08ff60f3b83ab8326b", - "0x0000000000000000000000000000005250eaed75b9e952b7c85164bede00ba33", - "0x00000000000000000000000000000000000ad897ae235efec361e3916e4dae07", - "0x0000000000000000000000000000003fea2aee6c554c0da65d11905df4597b2d", - "0x00000000000000000000000000000000002558875cd8264aa141822870ff2bc8", - "0x00000000000000000000000000000079175fac3fd506a5596ffc52d9d0544699", - "0x00000000000000000000000000000000001191096e35624705527aa04f27f915", - "0x0000000000000000000000000000004557e38c079982f9c4d49036f70b83ebf7", - "0x0000000000000000000000000000000000238262c39bc45dd936e762c2a61740", - "0x0000000000000000000000000000007263257153deef5cff3b077c9fc9280992", - "0x0000000000000000000000000000000000159a0cd1ca789af675d2ec45072876", - "0x000000000000000000000000000000eb1bcba45e9afc6d9ccbcf6798f7c337ce", - "0x000000000000000000000000000000000003b66ca8c428eefe033f2cad1d68bc", - "0x00000000000000000000000000000042958191c85fad3787a57ee0222f8a334b", - "0x0000000000000000000000000000000000302780dda8bfbc52898111e474e7ee", - "0x0000000000000000000000000000001457126d186a591c8a645b42534160cca1", - "0x00000000000000000000000000000000001e27710a3992df4d17ef314e62c81c", - "0x000000000000000000000000000000a6452e65c8ab86e52c1b50b4d05852bc28", - "0x0000000000000000000000000000000000297bbb7bd4eff712fee0e5a78199b2", - "0x000000000000000000000000000000022f0dd1858efd0fcf637a016fe6c8344e", - "0x0000000000000000000000000000000000289f9a2cb49807fa9f6c92fcaff413", - "0x0000000000000000000000000000006bd70f37be3ebe8d9721453865751b8d0e", - "0x0000000000000000000000000000000000217ffcd5013dbabd35980580b7668b", - "0x0000000000000000000000000000009970637c93c215c5628098420b1cc6513b", - "0x0000000000000000000000000000000000061035effde8f10bf1ed5568d96d24", + "0x00000000000000000000000000000052467a2fc553ad58789670d4a8dcfb2e7b", + "0x000000000000000000000000000000000026361aa5163ea7af84c71dd0016fc9", + "0x0000000000000000000000000000001d8b41a52b072bcf0044e6426e00bce7b9", + "0x000000000000000000000000000000000022e68a6335e45fddf531dfecbd05e7", + "0x0000000000000000000000000000008bfaba7029125ceb754d97a8cc07e776e1", + "0x000000000000000000000000000000000002e1d617f9f4518925401945ec8559", + "0x000000000000000000000000000000b8ee51e0d785044cb2aed9788cd02c61aa", + "0x00000000000000000000000000000000001e326d6199372ef301ae52513082ee", + "0x0000000000000000000000000000002cec064938f43e6fa342af59ca72543100", + "0x00000000000000000000000000000000000a1d460fe453acebacdff6151b2a8a", + "0x000000000000000000000000000000595f2a4d485aff4b55303f7d53d0473ff1", + "0x0000000000000000000000000000000000234a29f445f9e6a5962ec6e5cd2398", + "0x0000000000000000000000000000006b98bcb143b8a05e6f74eeb4804de8acc1", + "0x000000000000000000000000000000000021959390d4e529c2557bb0bb73ae0c", + "0x0000000000000000000000000000001b24f6b04fe5ce760099d7cee7836fc0e4", + "0x0000000000000000000000000000000000088ab8644aae78db0a0774a7d54003", + "0x0000000000000000000000000000008377e069e52e03b334195ad50c31f5de36", + "0x0000000000000000000000000000000000181cbe434460cbec96cd3f441befc2", + "0x000000000000000000000000000000d0dfebee13f6e073bbc3fe4d4fb48c517d", + "0x00000000000000000000000000000000000919764927298d99a7b770826d7802", + "0x0000000000000000000000000000006e8b6837992c8fee578ed8c9c5b202910b", + "0x000000000000000000000000000000000022c3c3d376d1148897cb204ba24ec3", + "0x0000000000000000000000000000008543bc66e05b731c46ec95e5bbd54072ae", + "0x000000000000000000000000000000000013c75273d43fe8bc1f8713f08c12f9", + "0x00000000000000000000000000000053cda4b08235214ff465ea7915b34abd6c", + "0x00000000000000000000000000000000001e69faa68371dcc174085b43c2b7d0", + "0x000000000000000000000000000000a1bd5bf6d51db0749962c78315f9405c48", + "0x00000000000000000000000000000000002d2757d1381575310b4ba2f9acc0db", "0x00000000000000000000000000000090d53c6a3b26339cda6b73df9208314159", "0x0000000000000000000000000000000000298c3311fc9170f92de940b042aab9", "0x000000000000000000000000000000bf37537eb196b05c1d98fa51016a9bacbb", "0x000000000000000000000000000000000007b05f408a612847259016b9204ae4", - "0x000000000000000000000000000000b05f2ee2cf3cfd28ecb019b9e04d997f8b", - "0x000000000000000000000000000000000018f579b729ea7e22d44358647d09b9", - "0x0000000000000000000000000000007a475fc95808ee6afbdb96fa371928c0b8", - "0x00000000000000000000000000000000001b8a59fbd48677fb9845a717faaab3", - "0x00000000000000000000000000000036f9df06ef6897acffa0226ced9a9f1891", - "0x00000000000000000000000000000000001ab6da6a45bd662a6d5439f55ecb8f", - "0x000000000000000000000000000000ae017d2e76e85fd21d47187fe7fd368d91", - "0x00000000000000000000000000000000000e3898e4bd9a5bf9f456a3be4fada8", - "0x00000000000000000000000000000035c9cb5f001915ccb707544d8295b4e4f8", - "0x00000000000000000000000000000000002451c090209c18e440624b96591a23", - "0x000000000000000000000000000000381694f1ab41bc30edb347a4618bbcb253", - "0x00000000000000000000000000000000002668cb793c6bcc3153efc3e521e40c", - "0x00000000000000000000000000000026a0352c25cccd1aea682fc8e975804a3e", - "0x0000000000000000000000000000000000172c855547ef1cf358b1193059ab94", - "0x000000000000000000000000000000c746ba121a8412b23d1a54c2679b7fcb42", - "0x0000000000000000000000000000000000188578f3213bb6dba81fc0826a77f1", - "0x000000000000000000000000000000b8bfc0ec72460534646ca70473b769e469", - "0x0000000000000000000000000000000000049b8d0d775977aced41eb139190a1", - "0x00000000000000000000000000000096f3f7b6aadf2bd52f2924c7122667ce25", - "0x00000000000000000000000000000000000525a7e6f2f97879bcc820bf777253", - "0x000000000000000000000000000000f4d3cf67a283478a5eac6fbe17ee96eed2", - "0x00000000000000000000000000000000000ad1b561d9594259b882488d0cc327", - "0x000000000000000000000000000000a411ca082e39592f1fc853c2d513bbd5aa", - "0x000000000000000000000000000000000008d3f884d8438ee5215018dcaa188a", - "0x000000000000000000000000000000a586b97fa660d78828308fbb60697a5243", - "0x00000000000000000000000000000000001c3fa3bc5f299c0702c6b6044c0e60", - "0x000000000000000000000000000000037a425f8359ea8a67078f19517bc20c74", - "0x00000000000000000000000000000000000db0229741d265ee0313476f1cef10", - "0x000000000000000000000000000000886c851cf34b022329e0c9c665f7ef4563", - "0x000000000000000000000000000000000028ad520b4991c3a3a1a08440202a40", - "0x0000000000000000000000000000003956273ef13907bb4ca2be0b96f2aab210", - "0x0000000000000000000000000000000000026fe8a5a76d3a1cc7b6954e592acb", - "0x00000000000000000000000000000053ac5f18e44a72607b79a11b5d45393429", - "0x00000000000000000000000000000000000bcc2d19211e46643e7fa4d905fb14", - "0x000000000000000000000000000000f0b3fac043c015b3c87b5308b1da44311e", - "0x00000000000000000000000000000000001784a31f83f57ce1f3e5df729be350", - "0x000000000000000000000000000000619bfb4248deff6b3fba33ae16e54d4e72", - "0x000000000000000000000000000000000029d64b80f3f13d8feafd5af4a5697e", - "0x000000000000000000000000000000a5285d1874df4082e47e44ca57ecba42f3", - "0x00000000000000000000000000000000002f1e137a8e12d0d47eed358e6bc315", - "0x000000000000000000000000000000988a23e79c8909a4004a42d3f4baa05014", - "0x00000000000000000000000000000000002509c01f82cdbc0cb44ae0c0be6705", - "0x000000000000000000000000000000ed4da5bc137a852399b028cd7a914fadd2", - "0x000000000000000000000000000000000003cad9cfaf108423a93de66ddb005d", - "0x00000000000000000000000000000040e4a2df8c0044a898355254cc9097c518", - "0x00000000000000000000000000000000001d874495839270b1644665239d7c2c", - "0x00000000000000000000000000000032da21a0045618d011c4ae19bc3947782b", - "0x00000000000000000000000000000000001eb44af87c2360092ddf16c5af329e", - "0x000000000000000000000000000000a807ecb2861e8e623a42498ee722ca6000", - "0x00000000000000000000000000000000001ed857121537d918928d3e560b506a", - "0x0000000000000000000000000000001297034a1d58e6ad7f84903f82d8c66d88", - "0x0000000000000000000000000000000000073b2e116dde301d14ae658cacd77a", - "0x000000000000000000000000000000741b046e52d87df6237bcceab137db5269", - "0x00000000000000000000000000000000002ad04673426a647d41d57f599509b0", - "0x000000000000000000000000000000907b17322aed653d7d0a7422bb6a5c5c7b", - "0x000000000000000000000000000000000010dd1fc03f324c35fc8f071aa69ab7", + "0x00000000000000000000000000000056818df348b74be6d33657dec32bacec98", + "0x0000000000000000000000000000000000034a17a6080da62b8becfb42266e5f", + "0x0000000000000000000000000000000f16a0a89bbccecfa7e55a4aa2c24a3bac", + "0x000000000000000000000000000000000019ac425610fbe83a18a8891777127a", + "0x0000000000000000000000000000003bbb3045cd4b5d42953bf122dac5de4e0c", + "0x00000000000000000000000000000000000fc88dece96d3d7417bb0738e0cda3", + "0x00000000000000000000000000000013ac82e18efe522953a601ec54e80aa72c", + "0x000000000000000000000000000000000012b7b849a421ef9c5bc3d5ee1ad3e3", + "0x000000000000000000000000000000ce32a645a1cf8b5f086358ffd8c47d8c05", + "0x000000000000000000000000000000000019b3ee1337ece60c6446831ce03496", + "0x000000000000000000000000000000bb69842382adb7b11b6869af31207027b0", + "0x00000000000000000000000000000000002679f084f27ba125560ba8f0ab3a08", + "0x000000000000000000000000000000b9a7c347c80ad29474b5b0b6da12faf4bc", + "0x00000000000000000000000000000000000e73297f62953d3cc441dfc2a2c06f", + "0x00000000000000000000000000000062d1d97b98e7e8b149eff7646f093ea48d", + "0x00000000000000000000000000000000000d37b6b1bdc8236c27d37b3f18e121", + "0x0000000000000000000000000000001dbdeea325c67fd74048d026a1a0768835", + "0x000000000000000000000000000000000014c8e0dd9d4641751385bd5083b9cb", + "0x00000000000000000000000000000060a396560316b104ca9d90bc29b682fa6f", + "0x0000000000000000000000000000000000113752078143f85513ae18311e463e", + "0x000000000000000000000000000000967ac946f309c449aa28c9764ad924c46e", + "0x00000000000000000000000000000000001e365043ae2061f1285fb4d32255b7", + "0x000000000000000000000000000000c371ee3acd64dd538b66ad434923a9ac75", + "0x00000000000000000000000000000000000094e3100f5495e7db6a01c1dab5d1", + "0x0000000000000000000000000000008d48280e381bcc7b5a057f974fe20be7f7", + "0x00000000000000000000000000000000002f00f610e4241d946b61976753986d", + "0x000000000000000000000000000000d9a8a5f7fea38a73dfa059433bcb7347f7", + "0x000000000000000000000000000000000024b768f5a9b5dd6a46f86d688c0330", + "0x000000000000000000000000000000055a1fb5cefaf1f754501b3f6d7e9cd502", + "0x00000000000000000000000000000000000e99d8b93e27b1d23abe0948b34013", + "0x0000000000000000000000000000005b88142770fca5b2b1af20ee5e9a6cad3a", + "0x00000000000000000000000000000000001ab87a5e354b68ab023375ae4105f5", + "0x000000000000000000000000000000a8f26bda65ad1b8c6990f1b14087fcb3b3", + "0x00000000000000000000000000000000001081528ce952b97fc4779d85913114", + "0x000000000000000000000000000000c2eac66462169f8adc7d0fb26776c75bba", + "0x0000000000000000000000000000000000001e4e2d6c701ec971038c4fc69cfa", + "0x0000000000000000000000000000008f4cafde8e361dadbb5580918a13bdec6e", + "0x000000000000000000000000000000000022eadfb8442104b02b423a276d490c", + "0x0000000000000000000000000000007b3ae4236bd6681c6859606b6ad8a3ead5", + "0x0000000000000000000000000000000000074c177301721cc70a20ea734f940d", + "0x00000000000000000000000000000004be44de159556fcddbac88cfd227a0a72", + "0x000000000000000000000000000000000007df3bd48e4d57a1be11ad5b683d52", + "0x000000000000000000000000000000d2b1074f34ba32efd3d39cbb9102549bdc", + "0x0000000000000000000000000000000000148d4ba17069fb4fa949f7aa3afcab", + "0x000000000000000000000000000000f937090e6bbba77d82a57a087769434719", + "0x000000000000000000000000000000000026210c0fcd5e025fd2f7772e2d224d", + "0x000000000000000000000000000000cb401d17958abc66709ad66b50182438c2", + "0x00000000000000000000000000000000002e5e90bdf676ab7482dca5b5573f92", + "0x00000000000000000000000000000028f13e8f7ddcc65042166a010f84f9aac4", + "0x000000000000000000000000000000000008b12183d6c5baeaf77fad332ecef5", + "0x00000000000000000000000000000011dbb795bf9b362df2a0dc734f09aaae41", + "0x00000000000000000000000000000000001181f6a417ea86543d94741bb2461b", + "0x00000000000000000000000000000018ee1519862bd5eefe04c58a6f42971e75", + "0x00000000000000000000000000000000000c07e6f6290d9728f67edbad1270cd", + "0x000000000000000000000000000000a45c5f726ce7b4690301de012e567da5c7", + "0x000000000000000000000000000000000027cdf453b960d511d04c07110b4fb6", "0x000000000000000000000000000000f6f4596202301b6ae4eb0ebbeadd203340", "0x00000000000000000000000000000000000adc89c48d75b571636f5bbeb4a806", "0x00000000000000000000000000000000034e3e27454ef992b4bf84b97baa7471", @@ -142,10 +142,10 @@ vk_path = [ "0x0000000000000000000000000000000000000000000000000000000000000000", "0x0000000000000000000000000000000000000000000000000000000000000002", "0x0000000000000000000000000000000000000000000000000000000000000000", - "0x0000000000000000000000000000002601343ed9ec702f7e521ebe0ffbd691f3", - "0x000000000000000000000000000000000012ff74941b932aa806c1bc5e1a178f", - "0x0000000000000000000000000000005cfadbe0d6f87ff27fb836c4f6cbb5f414", - "0x00000000000000000000000000000000000f4f5d92fbaa233a1b3681560577ec", + "0x000000000000000000000000000000a1eaa05c87041354e35f63e735a19e0165", + "0x000000000000000000000000000000000008006e6426a6cab39c5a5562cace7d", + "0x000000000000000000000000000000ad0e7028dd315e55aba53f5ab490cbe10d", + "0x00000000000000000000000000000000002ab68e3b8750057f2d86fb0d7795b4", "0x000000000000000000000000000000c2b34bcc8a5125396ad89848312a3e7894", "0x0000000000000000000000000000000000279be7e16a96c1710584dac89de72d", "0x0000000000000000000000000000009884b93d89228ba072daa18f2b792a97cc", @@ -155,67 +155,67 @@ vk_path = [ "0x00000000000000000000000000000078f4b3bc61f19d6e7069359bbf47e7f907", "0x00000000000000000000000000000000002d7c18a93c3dae58809faaeec6a86a" ] - hash = "0x06972360ac699e2658959ef77ffa4b86123642e4b69193c5d89864048ce6dd77" + hash = "0x1452be304748bfab2ded4b0a622f8784c2d86bb2c75217e5924335cdbe166c18" [previous_kernel_public_inputs] min_revertible_side_effect_counter = "0x0000000000000000000000000000000000000000000000000000000000000003" is_private_only = false -claimed_first_nullifier = "0x2388f3f38d63624619a4d8444e871ad9f57b5de377b556b6178b2f8eb9c1e62c" +claimed_first_nullifier = "0x150d1d3c34919cde1aeb83acd746fadeacbc2a17b7072c626bf6e51dad8e8921" [previous_kernel_public_inputs.constants] - vk_tree_root = "0x22a749df2f64e23077f364a4efdd544e0a0666eb43bd1560f5a698b10997c43c" - protocol_contract_tree_root = "0x16862f3a312325ba6b37abe1073a51ffb333ee32fbaa437454dce33423766de6" + vk_tree_root = "0x035e62aad06a66ce8d2a9d112a620e2337018ff2c763061808a24ea0f220ffbc" + protocol_contract_tree_root = "0x071f2e01b58eff84ebe1608c9eccf21bf2d51ac74cac3816a3dee8372cdb0b7d" [previous_kernel_public_inputs.constants.historical_header] - total_fees = "0x00000000000000000000000000000000000000000000000000000098a68c8d4c" - total_mana_used = "0x0000000000000000000000000000000000000000000000000000000000019e8f" + total_fees = "0x000000000000000000000000000000000000000000000000000000002c0103c0" + total_mana_used = "0x0000000000000000000000000000000000000000000000000000000000013c36" [previous_kernel_public_inputs.constants.historical_header.last_archive] - root = "0x2e64c26fcfac3753f52faeb3fe3e01da50d21fca91dcb3f78b26abbf962aca85" - next_available_leaf_index = "0x0000000000000000000000000000000000000000000000000000000000000006" + root = "0x04ecfede3cb3d170b076089b4d0400636b980b65e62d76eb3aa3ebcfcd4e4c66" + next_available_leaf_index = "0x0000000000000000000000000000000000000000000000000000000000000008" [previous_kernel_public_inputs.constants.historical_header.content_commitment] num_txs = "0x0000000000000000000000000000000000000000000000000000000000000001" - blobs_hash = "0x00ea3a920ac1f28fa3653d01c5fcb56dd3a5b743dfbe2d4ff0b56a19b0070a51" + blobs_hash = "0x008da6aaf5e0016f04ac681db9c70467da97770605d66cbedc44746fcecd64d6" in_hash = "0x00089a9d421a82c4a25f7acbebe69e638d5b064fa8a60e018793dcb0be53752c" out_hash = "0x0000000000000000000000000000000000000000000000000000000000000000" [previous_kernel_public_inputs.constants.historical_header.state.l1_to_l2_message_tree] root = "0x2e33ee2008411c04b99c24b313513d097a0d21a5040b6193d1f978b8226892d6" -next_available_leaf_index = "0x0000000000000000000000000000000000000000000000000000000000000060" +next_available_leaf_index = "0x0000000000000000000000000000000000000000000000000000000000000080" [previous_kernel_public_inputs.constants.historical_header.state.partial.note_hash_tree] -root = "0x1c1b0cf0a9fc7fa11c87e27cd0e7aab2f96fdfaa9f7af0ef7089ed45af4242dc" -next_available_leaf_index = "0x0000000000000000000000000000000000000000000000000000000000000180" +root = "0x11d365c48e942152ad755b20a8e9d308d6fa5d46cccab9d40f9847b757208f27" +next_available_leaf_index = "0x0000000000000000000000000000000000000000000000000000000000000200" [previous_kernel_public_inputs.constants.historical_header.state.partial.nullifier_tree] -root = "0x2b7df5ccc7e2f93e227df2b3702ab9e93fd821364ed56e2837a1ae45f32ec7e6" -next_available_leaf_index = "0x0000000000000000000000000000000000000000000000000000000000000200" +root = "0x21d29273b47664993a6b4cd2a65feee16bd32c9ad1c8d0824aadc486ce3751ec" +next_available_leaf_index = "0x0000000000000000000000000000000000000000000000000000000000000280" [previous_kernel_public_inputs.constants.historical_header.state.partial.public_data_tree] -root = "0x22e6f3265727498f791055b26567a50808efacd47fc407471c92d359f95aff4a" -next_available_leaf_index = "0x000000000000000000000000000000000000000000000000000000000000008e" +root = "0x1728e175434a3b744ea0361dc154494c091d7ff76cc33b4eede273aa89ee2b19" +next_available_leaf_index = "0x000000000000000000000000000000000000000000000000000000000000008f" [previous_kernel_public_inputs.constants.historical_header.global_variables] chain_id = "0x0000000000000000000000000000000000000000000000000000000000007a69" - version = "0x0000000000000000000000000000000000000000000000000000000000000001" - block_number = "0x0000000000000000000000000000000000000000000000000000000000000006" - slot_number = "0x0000000000000000000000000000000000000000000000000000000000000008" - timestamp = "0x0000000000000000000000000000000000000000000000000000000067d9b690" + version = "0x00000000000000000000000000000000000000000000000000000000e6f03fcf" + block_number = "0x0000000000000000000000000000000000000000000000000000000000000008" + slot_number = "0x0000000000000000000000000000000000000000000000000000000000000013" + timestamp = "0x0000000000000000000000000000000000000000000000000000000067fa74a8" [previous_kernel_public_inputs.constants.historical_header.global_variables.coinbase] - inner = "0x000000000000000000000000a540911acb4195ad0bbfa2c10a46e3e54df4c649" + inner = "0x00000000000000000000000071d84878d343d87f145bfcc3af71b20b7430de57" [previous_kernel_public_inputs.constants.historical_header.global_variables.fee_recipient] inner = "0x0000000000000000000000000000000000000000000000000000000000000000" [previous_kernel_public_inputs.constants.historical_header.global_variables.gas_fees] fee_per_da_gas = "0x0000000000000000000000000000000000000000000000000000000000000000" - fee_per_l2_gas = "0x00000000000000000000000000000000000000000000000000000000005e43f4" + fee_per_l2_gas = "0x00000000000000000000000000000000000000000000000000000000000023a0" [previous_kernel_public_inputs.constants.tx_context] chain_id = "0x0000000000000000000000000000000000000000000000000000000000007a69" - version = "0x0000000000000000000000000000000000000000000000000000000000000001" + version = "0x00000000000000000000000000000000000000000000000000000000e6f03fcf" [previous_kernel_public_inputs.constants.tx_context.gas_settings.gas_limits] da_gas = "0x000000000000000000000000000000000000000000000000000000003b9aca00" @@ -227,7 +227,7 @@ l2_gas = "0x00000000000000000000000000000000000000000000000000000000005b8d80" [previous_kernel_public_inputs.constants.tx_context.gas_settings.max_fees_per_gas] fee_per_da_gas = "0x0000000000000000000000000000000000000000000000000000000000000000" -fee_per_l2_gas = "0x0000000000000000000000000000000000000000000000000000000000128928" +fee_per_l2_gas = "0x00000000000000000000000000000000000000000000000000000000000021de" [previous_kernel_public_inputs.constants.tx_context.gas_settings.max_priority_fees_per_gas] fee_per_da_gas = "0x0000000000000000000000000000000000000000000000000000000000000000" @@ -235,15 +235,15 @@ fee_per_l2_gas = "0x000000000000000000000000000000000000000000000000000000000000 [previous_kernel_public_inputs.validation_requests.for_rollup.max_block_number._opt] _is_some = true -_value = "0x0000000000000000000000000000000000000000000000000000000000000e16" +_value = "0x0000000000000000000000000000000000000000000000000000000000000e18" [[previous_kernel_public_inputs.validation_requests.note_hash_read_requests]] [previous_kernel_public_inputs.validation_requests.note_hash_read_requests.read_request] -value = "0x0bf4cb5ffdc513ffe6d81b35633c4602b00baa9ccf10d7bbf9716cd99c7df7c7" +value = "0x0ba49834967e4fa82eeeaf2ac3e5a968a2bb1562f0fb22091d1e0ba1c0fd42ee" counter = "0x0000000000000000000000000000000000000000000000000000000000000002" [previous_kernel_public_inputs.validation_requests.note_hash_read_requests.contract_address] -inner = "0x1fbffb7e3dd073d1ff0f74491a59a89d1da4ed5f6fd76188dfd7a2c682719495" +inner = "0x2cf807d522bb2fda2c20e097a5c3eb396846b6f9c889822715185867baf463f2" [[previous_kernel_public_inputs.validation_requests.note_hash_read_requests]] [previous_kernel_public_inputs.validation_requests.note_hash_read_requests.read_request] @@ -2739,7 +2739,7 @@ inner = "0x0000000000000000000000000000000000000000000000000000000000000000" [[previous_kernel_public_inputs.end.nullifiers]] [previous_kernel_public_inputs.end.nullifiers.nullifier] -value = "0x2388f3f38d63624619a4d8444e871ad9f57b5de377b556b6178b2f8eb9c1e62c" +value = "0x150d1d3c34919cde1aeb83acd746fadeacbc2a17b7072c626bf6e51dad8e8921" counter = "0x0000000000000000000000000000000000000000000000000000000000000000" note_hash = "0x0000000000000000000000000000000000000000000000000000000000000000" @@ -4375,13 +4375,13 @@ counter = "0x0000000000000000000000000000000000000000000000000000000000000003" [previous_kernel_public_inputs.end.public_call_requests.inner] is_static_call = true - calldata_hash = "0x15fb96abf8e152139e0537ad418f218ce91ed425014adabdb7e3fc6888cb9e02" + calldata_hash = "0x14ee83242d30289f48dccfce5ce69945d720e346d8a4835793c3a4a563e50c03" [previous_kernel_public_inputs.end.public_call_requests.inner.msg_sender] - inner = "0x1fbffb7e3dd073d1ff0f74491a59a89d1da4ed5f6fd76188dfd7a2c682719495" + inner = "0x2cf807d522bb2fda2c20e097a5c3eb396846b6f9c889822715185867baf463f2" [previous_kernel_public_inputs.end.public_call_requests.inner.contract_address] - inner = "0x1312c2dcc4ce1917d2fb76c7f3f81e88109c09f390f50104aab96fbd381644af" + inner = "0x06ecc897f249ca82db802829d67532c6095d1a9810350783760e0b99ef956374" [[previous_kernel_public_inputs.end.public_call_requests]] counter = "0x0000000000000000000000000000000000000000000000000000000000000000" @@ -4941,7 +4941,7 @@ end_side_effect_counter = "0x000000000000000000000000000000000000000000000000000 inner = "0x0000000000000000000000000000000000000000000000000000000000000000" [previous_kernel_public_inputs.fee_payer] - inner = "0x0000000000000000000000000000000000000000000000000000000000000000" + inner = "0x2cf807d522bb2fda2c20e097a5c3eb396846b6f9c889822715185867baf463f2" [hints] validation_requests_split_counter = "0x0000000000000000000000000000000000000000000000000000000000000003" @@ -5470,9 +5470,9 @@ read_request_index = "0x00000000000000000000000000000000000000000000000000000000 "0x21f9172d72fdcdafc312eee05cf5092980dda821da5b760a9fb8dbdf607c8a20", "0x2373ea368857ec7af97e7b470d705848e2bf93ed7bef142a490f2119bcf82d8e", "0x120157cfaaa49ce3da30f8b47879114977c24b266d58b0ac18b325d878aafddf", - "0x2a3d445b10f0f340f73f2dd14e8b3145f2408bfd6a2b42fd413f5babf45e8a10", + "0x2eade450d194dc3a24b119d3354d73f853d9fdb73bb3ee7cc2233c791b5db970", "0x2d78ed82f93b61ba718b17c2dfe5b52375b4d37cbbed6f1fc98b47614b0cf21b", - "0x2b9938dd1d90512afe46d4dc6d4f0f29e3c659de703ecd13080dcbf9c8fa809b", + "0x14e0f02a21c76d72c7f14df87cdf5a9b76d46cd86256a48b09bf414ba6de18d8", "0x1849b85f3c693693e732dfc4577217acc18295193bede09ce8b97ad910310972", "0x2a775ea761d20435b31fa2c33ff07663e24542ffb9e7b293dfce3042eb104686", "0x0f320b0703439a8114f81593de99cd0b8f3b9bf854601abb5b2ea0e8a3dda4a7", @@ -5507,7 +5507,7 @@ read_request_index = "0x00000000000000000000000000000000000000000000000000000000 ] [hints.note_hash_read_request_hints.settled_read_hints.leaf_preimage] - value = "0x0bf4cb5ffdc513ffe6d81b35633c4602b00baa9ccf10d7bbf9716cd99c7df7c7" + value = "0x0ba49834967e4fa82eeeaf2ac3e5a968a2bb1562f0fb22091d1e0ba1c0fd42ee" [[hints.note_hash_read_request_hints.settled_read_hints]] read_request_index = "0x0000000000000000000000000000000000000000000000000000000000000040" diff --git a/noir-projects/noir-protocol-circuits/crates/private-kernel-tail-to-public/Prover.toml b/noir-projects/noir-protocol-circuits/crates/private-kernel-tail-to-public/Prover.toml index 3e8bbbfa2722..f679f161eee0 100644 --- a/noir-projects/noir-protocol-circuits/crates/private-kernel-tail-to-public/Prover.toml +++ b/noir-projects/noir-protocol-circuits/crates/private-kernel-tail-to-public/Prover.toml @@ -1,19 +1,19 @@ [previous_kernel] vk_index = "0x000000000000000000000000000000000000000000000000000000000000003a" vk_path = [ - "0x26a1c644d9151fe57e6d4c7f37876a8d367bb452f72926c6c36b1eb0e0d73714", - "0x1626a64eff8f3b83000a9c6f3e49096ed352e3aee53d3167d0b6feec30f73435", - "0x071636bd53d1776f9105d0512f24827bb1bbfb76726e967b7716cddd490f939d", - "0x08c56044c4fc49ff753aebce016748d6e5d05ffc7edbf81dd9317f5ac62b7be4", - "0x2e4078d753360cc1a2e70fe79f06ea82018e08dd856e6b8986cb6c6b7545d786", - "0x161666e09330b6748a7a5fd54020be09c2e0b81fe71dc63cace9f834fc05b954" + "0x2f275908740d495c3e163d3efc9556cf3b51913a07bb3274f19cf38bd607a775", + "0x299e4d351cba4dc54120f18d36f3f47132c188c059e4495c0d5400a233244acd", + "0x0a53612b564d6171b0b13b499eaed0cf2d21e8a6a678335f42ec8f30eb24a08a", + "0x0e892653be0889bb19c33c717d702acef52f0bf85a230de172b8cf0b9fe0fdb4", + "0x0f6bd8ccfb76feec5b9e3d00618759f8f9063f425f6518599bb779516323440f", + "0x0fd837aa8a0887c5cb709d806b95fe1afce05d8cd858609879073ad19aaee85d" ] [previous_kernel.vk] key = [ - "0x0000000000000000000000000000000000000000000000000000000000100000", + "0x0000000000000000000000000000000000000000000000000000000000040000", "0x0000000000000000000000000000000000000000000000000000000000000020", - "0x00000000000000000000000000000000000000000000000000000000000328b1", + "0x0000000000000000000000000000000000000000000000000000000000005609", "0x0000000000000000000000000000000000000000000000000000000000000001", "0x0000000000000000000000000000000000000000000000000000000000000010", "0x0000000000000000000000000000000000000000000000000000000000000011", @@ -34,30 +34,30 @@ vk_path = [ "0x0000000000000000000000000000000000000000000000000000000000000008", "0x0000000000000000000000000000000000000000000000000000000000000000", "0x0000000000000000000000000000000000000000000000000000000000000001", - "0x000000000000000000000000000000fbc8c0025bdeab312ac0f9e0d4a0437480", - "0x00000000000000000000000000000000001809517e68e390489d288f6b6914cc", - "0x0000000000000000000000000000001afa785e97c0a3d315667b0ef1b3fc5486", - "0x0000000000000000000000000000000000259a221c3c12a68b9af2f54975f236", - "0x0000000000000000000000000000009232254376472a6765f3b5bb8e1ba577e5", - "0x00000000000000000000000000000000001f95a8bf2e0f543edad7821f727ec8", - "0x0000000000000000000000000000005304dd98aa583e12fa31a5d124e973fc12", - "0x00000000000000000000000000000000000c23df728c815859a90ad52ae8680b", - "0x000000000000000000000000000000fda6eeb3681dc260fdfd0ed91e7aef808f", - "0x00000000000000000000000000000000000fdc8b6d04dce7c86cab876e351303", - "0x0000000000000000000000000000006a8b6aefacb401564d47a3654ee0583b15", - "0x00000000000000000000000000000000001d2e042175acf79c43278be52d0e2b", - "0x000000000000000000000000000000cd1ffbc4faa669cd8ecf474778b83dae13", - "0x00000000000000000000000000000000001a8ff945f4210b993f1344df3eb374", - "0x000000000000000000000000000000b32feae500cdb17057abcc2efa52c0b34d", - "0x00000000000000000000000000000000000f3e72e9f334b20ec13d77e3802f5a", - "0x000000000000000000000000000000e160fb92b565bfbaa56a84343797e5c186", - "0x00000000000000000000000000000000002af871d9fa8e3d30c6c149f0dd93b2", - "0x0000000000000000000000000000006822dfec521659ee6fce8ffc67fceba4aa", - "0x000000000000000000000000000000000017232da47019f36445ac672cf94842", - "0x0000000000000000000000000000001771f51a5ad2fe42cd0bb661f692a22adb", - "0x00000000000000000000000000000000002f481d01aad29dc5e01ee4987c85c3", - "0x000000000000000000000000000000e7b55a0cdc6c4b13faa5cf548cc1734f10", - "0x000000000000000000000000000000000020815f10bba75969c805783b82e707", + "0x000000000000000000000000000000aec4b5be95f6a494ced464d8530932fe34", + "0x00000000000000000000000000000000000d59f09187f40dca2ec5e78a3e8a5c", + "0x0000000000000000000000000000009f6e4d58daf1464ab8cb269a48684f65d1", + "0x0000000000000000000000000000000000230b233b853365583cab3dd46b7629", + "0x000000000000000000000000000000d79e74fa24f90f8d71a4032e7c62423252", + "0x000000000000000000000000000000000007fd69593be9da56ec36d6c201b1cb", + "0x00000000000000000000000000000045d34320f668033eb6df8f2a5ba465e437", + "0x00000000000000000000000000000000000fa716a1164218d1600faf549e747a", + "0x0000000000000000000000000000004439f04c19ef4443732c3167601a2819e8", + "0x00000000000000000000000000000000000b7ac2aa6e3dd9d3b76e7a1af0b063", + "0x00000000000000000000000000000068abfbb202d520344a1cc8ad2e65ada505", + "0x00000000000000000000000000000000000d71f5120c9086e4ff93f84e109c6f", + "0x000000000000000000000000000000e0d7d290a233ff0ddbf33274882aa28e12", + "0x00000000000000000000000000000000002226ee825e287950566fb2115aa305", + "0x00000000000000000000000000000067e64c74e23999f33a11ce5aecbcf629be", + "0x000000000000000000000000000000000027f96d24a450d3d591638a83d9b90a", + "0x0000000000000000000000000000004a6ef615ccea2780d54e4af98c66af073c", + "0x000000000000000000000000000000000014a0769d29cd712371b45311007a29", + "0x0000000000000000000000000000001417cd08c89e511d21c284d52504ddd7bf", + "0x00000000000000000000000000000000001a3b2572be8c40a0edf6845439101f", + "0x0000000000000000000000000000005d765f5875425059dba62740585b36573c", + "0x000000000000000000000000000000000007033e613fd8e6e7762047686abd98", + "0x000000000000000000000000000000a8e008e3c64b421410611b99beccdb2935", + "0x00000000000000000000000000000000000807ca284c9e674ea479b83576d6a0", "0x000000000000000000000000000000111d65183ba4b824cfd1cea30282537ca8", "0x00000000000000000000000000000000000bc8b88e0a53c337e954268d1f4315", "0x000000000000000000000000000000760bb5554ada0a7eca2f9bc44f974401ae", @@ -66,62 +66,62 @@ vk_path = [ "0x0000000000000000000000000000000000298c3311fc9170f92de940b042aab9", "0x000000000000000000000000000000bf37537eb196b05c1d98fa51016a9bacbb", "0x000000000000000000000000000000000007b05f408a612847259016b9204ae4", - "0x000000000000000000000000000000053104027675b0f1ee6341f72369e0d7c3", - "0x00000000000000000000000000000000000505e472dda27a239a6735c320178a", - "0x000000000000000000000000000000777f30baafd36e026297d56310dfb64d52", - "0x0000000000000000000000000000000000261d49b0c2fe6e8d5c485956bda1ba", - "0x0000000000000000000000000000004189a0ff67f4ecabce508fda3352d516e4", - "0x00000000000000000000000000000000000b405686a83b7ce15f3ea6b318931c", - "0x00000000000000000000000000000074a226ce207607a9f8c6b97a96d4664464", - "0x0000000000000000000000000000000000272139dac1980fad633e93f2cf9d63", - "0x000000000000000000000000000000313818546dffe2432869afa342a60f24b0", - "0x0000000000000000000000000000000000099b6d7dda9dea25d6881cc787922b", - "0x000000000000000000000000000000a922c293e6b92190b3ed73e09a3eec0598", - "0x0000000000000000000000000000000000200226f55126e2a26db027e8465f60", - "0x00000000000000000000000000000098852a46ef0f8d69c667cff91a34691849", - "0x00000000000000000000000000000000000db83b0b506917a7eb815ccfef86b7", - "0x00000000000000000000000000000079248ca0ea221e4cb111b288429cb6a98c", - "0x000000000000000000000000000000000005ee7ae6d29aefaa3c7f2027c2a163", - "0x000000000000000000000000000000a24c1fe8c8d70a667b7c43f0965ca71b0a", - "0x00000000000000000000000000000000001f10bee9177abf42b02bf2ac7f7d48", - "0x00000000000000000000000000000092e9a803423bb3951826f6b6da4361dce2", - "0x00000000000000000000000000000000002b885308bbe8eb1cfaa3f62d54f4f9", - "0x000000000000000000000000000000a8710ada540056cc2f088f96398ac2429f", - "0x00000000000000000000000000000000001f8dbf533b905bba1c96fa35be5aaf", - "0x000000000000000000000000000000efa847f2f4c49964ded91326c8649b799f", - "0x0000000000000000000000000000000000001a6bd6ead0027fd5cb816ab23a94", - "0x000000000000000000000000000000d01e7170160def420f6bdb48c7890b7168", - "0x000000000000000000000000000000000005ff98f6ad45083ff722a11aab066d", - "0x0000000000000000000000000000006e11750e8fd24ccbaf88f813fea828102b", - "0x00000000000000000000000000000000000e2fd2f5b2ea9cb6e68c5e97ae3076", - "0x00000000000000000000000000000022da84dda9976ca1476ea8bd63ffd36054", - "0x000000000000000000000000000000000014abfbf2b008988e0ca983d47bbe5e", - "0x000000000000000000000000000000a94b4dd5be0ccb8c63f9f236892494a62c", - "0x000000000000000000000000000000000020d6af30a8209ac5b37a91a15d0283", - "0x000000000000000000000000000000e65256cecb37896333b26ec3e76f10ae6a", - "0x00000000000000000000000000000000002b7bcbce31eac91bedaf4be6efb38c", - "0x000000000000000000000000000000640f9d8b661eba8d15b6d6d02fc65727db", - "0x0000000000000000000000000000000000022fb8c1a31420261bf9643fc7740e", - "0x000000000000000000000000000000729225f3de1f0401be2a9823a378978f31", - "0x00000000000000000000000000000000000d599488117923798fa6a89886af78", - "0x000000000000000000000000000000ee178bbe3ab452ce7caed8c5e48a03782b", - "0x00000000000000000000000000000000002c0175b334a53b00e77209e2297a90", - "0x0000000000000000000000000000008917716755e7ae0fa2b55c3be042870e99", - "0x00000000000000000000000000000000000c23e567cda985d8e35d63e32c3cf5", - "0x0000000000000000000000000000004cc46536fed1c9b89f098ae0caf5060ee2", - "0x00000000000000000000000000000000002273d1256042b5da8daca653c95284", - "0x000000000000000000000000000000e576714816bc4876680f3be4091e6f61b1", - "0x00000000000000000000000000000000000db4d2f453969051db6d86ef7609c1", - "0x0000000000000000000000000000000ff28aa3d48d9a759e5397317285c4acc9", - "0x0000000000000000000000000000000000094f163bf956f6978436ed0a964ae7", - "0x000000000000000000000000000000e4899aff817fc940799319ee95f1fe521f", - "0x0000000000000000000000000000000000026f4f1d9c2bdbc654e5c155c84f3b", - "0x000000000000000000000000000000f0bd4e9f5f4e215c9782968aac6094b956", - "0x00000000000000000000000000000000001069468bf75c48517edfe20edcb017", - "0x000000000000000000000000000000bfa5a2e5a343ae7ae08ce113c995412b92", - "0x00000000000000000000000000000000002f948adab02550587aff2ba6690ae4", - "0x000000000000000000000000000000aa10fb55dba04f2254b93a2cd9564612c8", - "0x00000000000000000000000000000000001e7e426224c3a71d9efe44a786d842", + "0x0000000000000000000000000000002f35e2564be46d1323f59d552c167326b2", + "0x0000000000000000000000000000000000159bc8c43d017294558f3db52def57", + "0x0000000000000000000000000000007f411f1aa786466d28d31d0c95d3c50855", + "0x00000000000000000000000000000000002c8d18c932d9b7bf92836d6d2fc5b4", + "0x0000000000000000000000000000001a17cb601c48652a338a3ba25150f2aaaf", + "0x00000000000000000000000000000000002d1735c1fde0a2da4b3ecdc36d8b8f", + "0x00000000000000000000000000000075117267107e9ee99de9dae070743ff14d", + "0x0000000000000000000000000000000000118dd16850704d6cf61166b0d4510c", + "0x000000000000000000000000000000781f693d80ad51a15a70658d0bb5567cad", + "0x00000000000000000000000000000000000e64d8f2a1d52a863b1ab6e4602317", + "0x000000000000000000000000000000e1d59dd3be7757f74690d4b02868b834a6", + "0x0000000000000000000000000000000000146625b7b6605d6c1a72c7572885cd", + "0x000000000000000000000000000000ddb09796da874438e43e22260e82be3e30", + "0x000000000000000000000000000000000022855271c299c1e45a1a203ff1008d", + "0x0000000000000000000000000000006b6cd1b8e9c783bb4c1ba429ab78df2cda", + "0x00000000000000000000000000000000001862846dae00deca13948e829e31aa", + "0x0000000000000000000000000000008396f9321312c7fcebf6ffc90b2705bf78", + "0x00000000000000000000000000000000002e914d393a78dfb1a99c4ac7170971", + "0x0000000000000000000000000000006dbc7d15e4426a4cc61c342d942ec06a75", + "0x000000000000000000000000000000000025f4ad8ce1de2e7f082ddb1e76802c", + "0x000000000000000000000000000000c7c6717bd46e9cd68602bad222e791528c", + "0x000000000000000000000000000000000002c35208d586495233f04a2d22deae", + "0x000000000000000000000000000000be228b96ad35b722c197c1c37cf2204dd4", + "0x0000000000000000000000000000000000229877ccf04b60f8ddf7a36b86367c", + "0x000000000000000000000000000000462a95b9da5371b8c8d9c1e6227c258ac7", + "0x000000000000000000000000000000000011a9760d801c926f2d274c903d6a45", + "0x00000000000000000000000000000043e52e70b5c490aba9a623b6cf95ea3144", + "0x000000000000000000000000000000000021a1ca7d606af787dd68e4146efeaa", + "0x000000000000000000000000000000ed052eaac19725d8837594197bd53d6b5f", + "0x000000000000000000000000000000000015c54922fcba66e906df0c733842fd", + "0x000000000000000000000000000000f3105c49c960afb37fea0f5dfc3e65c67d", + "0x00000000000000000000000000000000002cac63e5acfe81383762e0deff1b34", + "0x000000000000000000000000000000b9ceb518c996db8ef5af8ffb9da9e4cded", + "0x00000000000000000000000000000000000870ead037924d746c460407bf52ce", + "0x000000000000000000000000000000e8852ee0ba8409bea32aeb14622968f4c7", + "0x000000000000000000000000000000000005e22394a58225cb53467999c2c29a", + "0x000000000000000000000000000000c2b20b2557293b0bcd5fd0755dc2285f75", + "0x0000000000000000000000000000000000046ece25428bc39f5dc875231ca733", + "0x0000000000000000000000000000001b7c8c7044bf3d963372a6d18062a12185", + "0x00000000000000000000000000000000002ea8e20e8fef951eae4ad5463ae0a8", + "0x0000000000000000000000000000005c41e84683a4aabbe2df4f42cd654ef753", + "0x000000000000000000000000000000000022b7e6fb6640a06da618328fee3cae", + "0x000000000000000000000000000000d18ba73dc7ec7f477b744c9ef4fb0aff4c", + "0x00000000000000000000000000000000002ab84ad733e86e6a3689db6cf8adf8", + "0x000000000000000000000000000000fab465a24510d4a1c423309991ad7de7a1", + "0x00000000000000000000000000000000000b3ff4cb640f4d0f80d97afe0616fe", + "0x000000000000000000000000000000a77d0cc0b56a92a5f7eec5adaf2c8f0e1e", + "0x000000000000000000000000000000000001e9c148119da8a2f3546ec35fef0d", + "0x0000000000000000000000000000009d583457334a5a37b25769fec998b5001f", + "0x00000000000000000000000000000000001d0576318a2500854d7d73260ee918", + "0x0000000000000000000000000000006898f8edd478b42da4dd590ebc7df3fb5c", + "0x000000000000000000000000000000000028252b9e3718c603be72d3643a768f", + "0x000000000000000000000000000000402cfaf2ca6e6a4b9945fea15a7ff65e5d", + "0x000000000000000000000000000000000015fe4a0c33a62f8435aaf8e148901d", + "0x000000000000000000000000000000f58f0ae877b8707caa87246a5b6bebae58", + "0x00000000000000000000000000000000000c41dfb78afb20d2195edf008b2fad", "0x000000000000000000000000000000f6f4596202301b6ae4eb0ebbeadd203340", "0x00000000000000000000000000000000000adc89c48d75b571636f5bbeb4a806", "0x00000000000000000000000000000000034e3e27454ef992b4bf84b97baa7471", @@ -142,10 +142,10 @@ vk_path = [ "0x0000000000000000000000000000000000000000000000000000000000000000", "0x0000000000000000000000000000000000000000000000000000000000000002", "0x0000000000000000000000000000000000000000000000000000000000000000", - "0x000000000000000000000000000000d9cc7b9d665e338d41840f4718ae7154bd", - "0x00000000000000000000000000000000002de6e434bae4be387d86b03fbe2df6", - "0x0000000000000000000000000000008acc82d5ef24f0f4ac90145a78a50f10c5", - "0x00000000000000000000000000000000002fc6d79bb0c0387c440c1efa88b8c1", + "0x0000000000000000000000000000003ccc23479730ca6690c607ceb5984998bc", + "0x000000000000000000000000000000000026a05e4d5033bd2d8cdea5e790f2eb", + "0x00000000000000000000000000000028c6e245f4cc96474689101442bf58fe8f", + "0x00000000000000000000000000000000000f988724089256ac8c4bab6b3b3cfc", "0x0000000000000000000000000000005f9e8d701589b5d6314c59ae7c912e4ae0", "0x000000000000000000000000000000000004dd3165471398859c3fe5b6df48a1", "0x000000000000000000000000000000b9816f9688118168f4ba9ca6a86fd1e32d", @@ -155,67 +155,67 @@ vk_path = [ "0x00000000000000000000000000000078f4b3bc61f19d6e7069359bbf47e7f907", "0x00000000000000000000000000000000002d7c18a93c3dae58809faaeec6a86a" ] - hash = "0x227f7e158719c89eebd68f5accd0f2194f818efc916112f1f0819e27732fb2d6" + hash = "0x1c788eec8673caf350f987e1d9bc63d49e5b44c9e2f7629f313eab4e1ee737e5" [previous_kernel_public_inputs] min_revertible_side_effect_counter = "0x0000000000000000000000000000000000000000000000000000000000000003" is_private_only = false -claimed_first_nullifier = "0x2388f3f38d63624619a4d8444e871ad9f57b5de377b556b6178b2f8eb9c1e62c" +claimed_first_nullifier = "0x150d1d3c34919cde1aeb83acd746fadeacbc2a17b7072c626bf6e51dad8e8921" [previous_kernel_public_inputs.constants] - vk_tree_root = "0x22a749df2f64e23077f364a4efdd544e0a0666eb43bd1560f5a698b10997c43c" - protocol_contract_tree_root = "0x16862f3a312325ba6b37abe1073a51ffb333ee32fbaa437454dce33423766de6" + vk_tree_root = "0x035e62aad06a66ce8d2a9d112a620e2337018ff2c763061808a24ea0f220ffbc" + protocol_contract_tree_root = "0x071f2e01b58eff84ebe1608c9eccf21bf2d51ac74cac3816a3dee8372cdb0b7d" [previous_kernel_public_inputs.constants.historical_header] - total_fees = "0x00000000000000000000000000000000000000000000000000000098a68c8d4c" - total_mana_used = "0x0000000000000000000000000000000000000000000000000000000000019e8f" + total_fees = "0x000000000000000000000000000000000000000000000000000000002c0103c0" + total_mana_used = "0x0000000000000000000000000000000000000000000000000000000000013c36" [previous_kernel_public_inputs.constants.historical_header.last_archive] - root = "0x2e64c26fcfac3753f52faeb3fe3e01da50d21fca91dcb3f78b26abbf962aca85" - next_available_leaf_index = "0x0000000000000000000000000000000000000000000000000000000000000006" + root = "0x04ecfede3cb3d170b076089b4d0400636b980b65e62d76eb3aa3ebcfcd4e4c66" + next_available_leaf_index = "0x0000000000000000000000000000000000000000000000000000000000000008" [previous_kernel_public_inputs.constants.historical_header.content_commitment] num_txs = "0x0000000000000000000000000000000000000000000000000000000000000001" - blobs_hash = "0x00ea3a920ac1f28fa3653d01c5fcb56dd3a5b743dfbe2d4ff0b56a19b0070a51" + blobs_hash = "0x008da6aaf5e0016f04ac681db9c70467da97770605d66cbedc44746fcecd64d6" in_hash = "0x00089a9d421a82c4a25f7acbebe69e638d5b064fa8a60e018793dcb0be53752c" out_hash = "0x0000000000000000000000000000000000000000000000000000000000000000" [previous_kernel_public_inputs.constants.historical_header.state.l1_to_l2_message_tree] root = "0x2e33ee2008411c04b99c24b313513d097a0d21a5040b6193d1f978b8226892d6" -next_available_leaf_index = "0x0000000000000000000000000000000000000000000000000000000000000060" +next_available_leaf_index = "0x0000000000000000000000000000000000000000000000000000000000000080" [previous_kernel_public_inputs.constants.historical_header.state.partial.note_hash_tree] -root = "0x1c1b0cf0a9fc7fa11c87e27cd0e7aab2f96fdfaa9f7af0ef7089ed45af4242dc" -next_available_leaf_index = "0x0000000000000000000000000000000000000000000000000000000000000180" +root = "0x11d365c48e942152ad755b20a8e9d308d6fa5d46cccab9d40f9847b757208f27" +next_available_leaf_index = "0x0000000000000000000000000000000000000000000000000000000000000200" [previous_kernel_public_inputs.constants.historical_header.state.partial.nullifier_tree] -root = "0x2b7df5ccc7e2f93e227df2b3702ab9e93fd821364ed56e2837a1ae45f32ec7e6" -next_available_leaf_index = "0x0000000000000000000000000000000000000000000000000000000000000200" +root = "0x21d29273b47664993a6b4cd2a65feee16bd32c9ad1c8d0824aadc486ce3751ec" +next_available_leaf_index = "0x0000000000000000000000000000000000000000000000000000000000000280" [previous_kernel_public_inputs.constants.historical_header.state.partial.public_data_tree] -root = "0x22e6f3265727498f791055b26567a50808efacd47fc407471c92d359f95aff4a" -next_available_leaf_index = "0x000000000000000000000000000000000000000000000000000000000000008e" +root = "0x1728e175434a3b744ea0361dc154494c091d7ff76cc33b4eede273aa89ee2b19" +next_available_leaf_index = "0x000000000000000000000000000000000000000000000000000000000000008f" [previous_kernel_public_inputs.constants.historical_header.global_variables] chain_id = "0x0000000000000000000000000000000000000000000000000000000000007a69" - version = "0x0000000000000000000000000000000000000000000000000000000000000001" - block_number = "0x0000000000000000000000000000000000000000000000000000000000000006" - slot_number = "0x0000000000000000000000000000000000000000000000000000000000000008" - timestamp = "0x0000000000000000000000000000000000000000000000000000000067d9b690" + version = "0x00000000000000000000000000000000000000000000000000000000e6f03fcf" + block_number = "0x0000000000000000000000000000000000000000000000000000000000000008" + slot_number = "0x0000000000000000000000000000000000000000000000000000000000000013" + timestamp = "0x0000000000000000000000000000000000000000000000000000000067fa74a8" [previous_kernel_public_inputs.constants.historical_header.global_variables.coinbase] - inner = "0x000000000000000000000000a540911acb4195ad0bbfa2c10a46e3e54df4c649" + inner = "0x00000000000000000000000071d84878d343d87f145bfcc3af71b20b7430de57" [previous_kernel_public_inputs.constants.historical_header.global_variables.fee_recipient] inner = "0x0000000000000000000000000000000000000000000000000000000000000000" [previous_kernel_public_inputs.constants.historical_header.global_variables.gas_fees] fee_per_da_gas = "0x0000000000000000000000000000000000000000000000000000000000000000" - fee_per_l2_gas = "0x00000000000000000000000000000000000000000000000000000000005e43f4" + fee_per_l2_gas = "0x00000000000000000000000000000000000000000000000000000000000023a0" [previous_kernel_public_inputs.constants.tx_context] chain_id = "0x0000000000000000000000000000000000000000000000000000000000007a69" - version = "0x0000000000000000000000000000000000000000000000000000000000000001" + version = "0x00000000000000000000000000000000000000000000000000000000e6f03fcf" [previous_kernel_public_inputs.constants.tx_context.gas_settings.gas_limits] da_gas = "0x000000000000000000000000000000000000000000000000000000003b9aca00" @@ -227,7 +227,7 @@ l2_gas = "0x00000000000000000000000000000000000000000000000000000000005b8d80" [previous_kernel_public_inputs.constants.tx_context.gas_settings.max_fees_per_gas] fee_per_da_gas = "0x0000000000000000000000000000000000000000000000000000000000000000" -fee_per_l2_gas = "0x0000000000000000000000000000000000000000000000000000000000128928" +fee_per_l2_gas = "0x00000000000000000000000000000000000000000000000000000000000021de" [previous_kernel_public_inputs.constants.tx_context.gas_settings.max_priority_fees_per_gas] fee_per_da_gas = "0x0000000000000000000000000000000000000000000000000000000000000000" @@ -235,7 +235,7 @@ fee_per_l2_gas = "0x000000000000000000000000000000000000000000000000000000000000 [previous_kernel_public_inputs.validation_requests.for_rollup.max_block_number._opt] _is_some = true -_value = "0x0000000000000000000000000000000000000000000000000000000000000e16" +_value = "0x0000000000000000000000000000000000000000000000000000000000000e18" [[previous_kernel_public_inputs.validation_requests.note_hash_read_requests]] [previous_kernel_public_inputs.validation_requests.note_hash_read_requests.read_request] @@ -2739,7 +2739,7 @@ inner = "0x0000000000000000000000000000000000000000000000000000000000000000" [[previous_kernel_public_inputs.end.nullifiers]] [previous_kernel_public_inputs.end.nullifiers.nullifier] -value = "0x2388f3f38d63624619a4d8444e871ad9f57b5de377b556b6178b2f8eb9c1e62c" +value = "0x150d1d3c34919cde1aeb83acd746fadeacbc2a17b7072c626bf6e51dad8e8921" counter = "0x0000000000000000000000000000000000000000000000000000000000000000" note_hash = "0x0000000000000000000000000000000000000000000000000000000000000000" @@ -4375,13 +4375,13 @@ counter = "0x0000000000000000000000000000000000000000000000000000000000000003" [previous_kernel_public_inputs.end.public_call_requests.inner] is_static_call = true - calldata_hash = "0x15fb96abf8e152139e0537ad418f218ce91ed425014adabdb7e3fc6888cb9e02" + calldata_hash = "0x14ee83242d30289f48dccfce5ce69945d720e346d8a4835793c3a4a563e50c03" [previous_kernel_public_inputs.end.public_call_requests.inner.msg_sender] - inner = "0x1fbffb7e3dd073d1ff0f74491a59a89d1da4ed5f6fd76188dfd7a2c682719495" + inner = "0x2cf807d522bb2fda2c20e097a5c3eb396846b6f9c889822715185867baf463f2" [previous_kernel_public_inputs.end.public_call_requests.inner.contract_address] - inner = "0x1312c2dcc4ce1917d2fb76c7f3f81e88109c09f390f50104aab96fbd381644af" + inner = "0x06ecc897f249ca82db802829d67532c6095d1a9810350783760e0b99ef956374" [[previous_kernel_public_inputs.end.public_call_requests]] counter = "0x0000000000000000000000000000000000000000000000000000000000000000" @@ -4941,4 +4941,4 @@ end_side_effect_counter = "0x000000000000000000000000000000000000000000000000000 inner = "0x0000000000000000000000000000000000000000000000000000000000000000" [previous_kernel_public_inputs.fee_payer] - inner = "0x30644e72e131a029b85045b68181585d2833e84879b9709143e1f593f0000000" + inner = "0x2cf807d522bb2fda2c20e097a5c3eb396846b6f9c889822715185867baf463f2" diff --git a/noir-projects/noir-protocol-circuits/crates/private-kernel-tail/Prover.toml b/noir-projects/noir-protocol-circuits/crates/private-kernel-tail/Prover.toml index 74ddf27af00e..1c7472bd4284 100644 --- a/noir-projects/noir-protocol-circuits/crates/private-kernel-tail/Prover.toml +++ b/noir-projects/noir-protocol-circuits/crates/private-kernel-tail/Prover.toml @@ -1,19 +1,19 @@ [previous_kernel] vk_index = "0x000000000000000000000000000000000000000000000000000000000000003a" vk_path = [ - "0x26a1c644d9151fe57e6d4c7f37876a8d367bb452f72926c6c36b1eb0e0d73714", - "0x1626a64eff8f3b83000a9c6f3e49096ed352e3aee53d3167d0b6feec30f73435", - "0x071636bd53d1776f9105d0512f24827bb1bbfb76726e967b7716cddd490f939d", - "0x08c56044c4fc49ff753aebce016748d6e5d05ffc7edbf81dd9317f5ac62b7be4", - "0x2e4078d753360cc1a2e70fe79f06ea82018e08dd856e6b8986cb6c6b7545d786", - "0x161666e09330b6748a7a5fd54020be09c2e0b81fe71dc63cace9f834fc05b954" + "0x2f275908740d495c3e163d3efc9556cf3b51913a07bb3274f19cf38bd607a775", + "0x299e4d351cba4dc54120f18d36f3f47132c188c059e4495c0d5400a233244acd", + "0x0a53612b564d6171b0b13b499eaed0cf2d21e8a6a678335f42ec8f30eb24a08a", + "0x0e892653be0889bb19c33c717d702acef52f0bf85a230de172b8cf0b9fe0fdb4", + "0x0f6bd8ccfb76feec5b9e3d00618759f8f9063f425f6518599bb779516323440f", + "0x0fd837aa8a0887c5cb709d806b95fe1afce05d8cd858609879073ad19aaee85d" ] [previous_kernel.vk] key = [ - "0x0000000000000000000000000000000000000000000000000000000000100000", + "0x0000000000000000000000000000000000000000000000000000000000040000", "0x0000000000000000000000000000000000000000000000000000000000000020", - "0x00000000000000000000000000000000000000000000000000000000000328b1", + "0x0000000000000000000000000000000000000000000000000000000000005609", "0x0000000000000000000000000000000000000000000000000000000000000001", "0x0000000000000000000000000000000000000000000000000000000000000010", "0x0000000000000000000000000000000000000000000000000000000000000011", @@ -34,30 +34,30 @@ vk_path = [ "0x0000000000000000000000000000000000000000000000000000000000000008", "0x0000000000000000000000000000000000000000000000000000000000000000", "0x0000000000000000000000000000000000000000000000000000000000000001", - "0x000000000000000000000000000000fbc8c0025bdeab312ac0f9e0d4a0437480", - "0x00000000000000000000000000000000001809517e68e390489d288f6b6914cc", - "0x0000000000000000000000000000001afa785e97c0a3d315667b0ef1b3fc5486", - "0x0000000000000000000000000000000000259a221c3c12a68b9af2f54975f236", - "0x0000000000000000000000000000009232254376472a6765f3b5bb8e1ba577e5", - "0x00000000000000000000000000000000001f95a8bf2e0f543edad7821f727ec8", - "0x0000000000000000000000000000005304dd98aa583e12fa31a5d124e973fc12", - "0x00000000000000000000000000000000000c23df728c815859a90ad52ae8680b", - "0x000000000000000000000000000000fda6eeb3681dc260fdfd0ed91e7aef808f", - "0x00000000000000000000000000000000000fdc8b6d04dce7c86cab876e351303", - "0x0000000000000000000000000000006a8b6aefacb401564d47a3654ee0583b15", - "0x00000000000000000000000000000000001d2e042175acf79c43278be52d0e2b", - "0x000000000000000000000000000000cd1ffbc4faa669cd8ecf474778b83dae13", - "0x00000000000000000000000000000000001a8ff945f4210b993f1344df3eb374", - "0x000000000000000000000000000000b32feae500cdb17057abcc2efa52c0b34d", - "0x00000000000000000000000000000000000f3e72e9f334b20ec13d77e3802f5a", - "0x000000000000000000000000000000e160fb92b565bfbaa56a84343797e5c186", - "0x00000000000000000000000000000000002af871d9fa8e3d30c6c149f0dd93b2", - "0x0000000000000000000000000000006822dfec521659ee6fce8ffc67fceba4aa", - "0x000000000000000000000000000000000017232da47019f36445ac672cf94842", - "0x0000000000000000000000000000001771f51a5ad2fe42cd0bb661f692a22adb", - "0x00000000000000000000000000000000002f481d01aad29dc5e01ee4987c85c3", - "0x000000000000000000000000000000e7b55a0cdc6c4b13faa5cf548cc1734f10", - "0x000000000000000000000000000000000020815f10bba75969c805783b82e707", + "0x000000000000000000000000000000aec4b5be95f6a494ced464d8530932fe34", + "0x00000000000000000000000000000000000d59f09187f40dca2ec5e78a3e8a5c", + "0x0000000000000000000000000000009f6e4d58daf1464ab8cb269a48684f65d1", + "0x0000000000000000000000000000000000230b233b853365583cab3dd46b7629", + "0x000000000000000000000000000000d79e74fa24f90f8d71a4032e7c62423252", + "0x000000000000000000000000000000000007fd69593be9da56ec36d6c201b1cb", + "0x00000000000000000000000000000045d34320f668033eb6df8f2a5ba465e437", + "0x00000000000000000000000000000000000fa716a1164218d1600faf549e747a", + "0x0000000000000000000000000000004439f04c19ef4443732c3167601a2819e8", + "0x00000000000000000000000000000000000b7ac2aa6e3dd9d3b76e7a1af0b063", + "0x00000000000000000000000000000068abfbb202d520344a1cc8ad2e65ada505", + "0x00000000000000000000000000000000000d71f5120c9086e4ff93f84e109c6f", + "0x000000000000000000000000000000e0d7d290a233ff0ddbf33274882aa28e12", + "0x00000000000000000000000000000000002226ee825e287950566fb2115aa305", + "0x00000000000000000000000000000067e64c74e23999f33a11ce5aecbcf629be", + "0x000000000000000000000000000000000027f96d24a450d3d591638a83d9b90a", + "0x0000000000000000000000000000004a6ef615ccea2780d54e4af98c66af073c", + "0x000000000000000000000000000000000014a0769d29cd712371b45311007a29", + "0x0000000000000000000000000000001417cd08c89e511d21c284d52504ddd7bf", + "0x00000000000000000000000000000000001a3b2572be8c40a0edf6845439101f", + "0x0000000000000000000000000000005d765f5875425059dba62740585b36573c", + "0x000000000000000000000000000000000007033e613fd8e6e7762047686abd98", + "0x000000000000000000000000000000a8e008e3c64b421410611b99beccdb2935", + "0x00000000000000000000000000000000000807ca284c9e674ea479b83576d6a0", "0x000000000000000000000000000000111d65183ba4b824cfd1cea30282537ca8", "0x00000000000000000000000000000000000bc8b88e0a53c337e954268d1f4315", "0x000000000000000000000000000000760bb5554ada0a7eca2f9bc44f974401ae", @@ -66,62 +66,62 @@ vk_path = [ "0x0000000000000000000000000000000000298c3311fc9170f92de940b042aab9", "0x000000000000000000000000000000bf37537eb196b05c1d98fa51016a9bacbb", "0x000000000000000000000000000000000007b05f408a612847259016b9204ae4", - "0x000000000000000000000000000000053104027675b0f1ee6341f72369e0d7c3", - "0x00000000000000000000000000000000000505e472dda27a239a6735c320178a", - "0x000000000000000000000000000000777f30baafd36e026297d56310dfb64d52", - "0x0000000000000000000000000000000000261d49b0c2fe6e8d5c485956bda1ba", - "0x0000000000000000000000000000004189a0ff67f4ecabce508fda3352d516e4", - "0x00000000000000000000000000000000000b405686a83b7ce15f3ea6b318931c", - "0x00000000000000000000000000000074a226ce207607a9f8c6b97a96d4664464", - "0x0000000000000000000000000000000000272139dac1980fad633e93f2cf9d63", - "0x000000000000000000000000000000313818546dffe2432869afa342a60f24b0", - "0x0000000000000000000000000000000000099b6d7dda9dea25d6881cc787922b", - "0x000000000000000000000000000000a922c293e6b92190b3ed73e09a3eec0598", - "0x0000000000000000000000000000000000200226f55126e2a26db027e8465f60", - "0x00000000000000000000000000000098852a46ef0f8d69c667cff91a34691849", - "0x00000000000000000000000000000000000db83b0b506917a7eb815ccfef86b7", - "0x00000000000000000000000000000079248ca0ea221e4cb111b288429cb6a98c", - "0x000000000000000000000000000000000005ee7ae6d29aefaa3c7f2027c2a163", - "0x000000000000000000000000000000a24c1fe8c8d70a667b7c43f0965ca71b0a", - "0x00000000000000000000000000000000001f10bee9177abf42b02bf2ac7f7d48", - "0x00000000000000000000000000000092e9a803423bb3951826f6b6da4361dce2", - "0x00000000000000000000000000000000002b885308bbe8eb1cfaa3f62d54f4f9", - "0x000000000000000000000000000000a8710ada540056cc2f088f96398ac2429f", - "0x00000000000000000000000000000000001f8dbf533b905bba1c96fa35be5aaf", - "0x000000000000000000000000000000efa847f2f4c49964ded91326c8649b799f", - "0x0000000000000000000000000000000000001a6bd6ead0027fd5cb816ab23a94", - "0x000000000000000000000000000000d01e7170160def420f6bdb48c7890b7168", - "0x000000000000000000000000000000000005ff98f6ad45083ff722a11aab066d", - "0x0000000000000000000000000000006e11750e8fd24ccbaf88f813fea828102b", - "0x00000000000000000000000000000000000e2fd2f5b2ea9cb6e68c5e97ae3076", - "0x00000000000000000000000000000022da84dda9976ca1476ea8bd63ffd36054", - "0x000000000000000000000000000000000014abfbf2b008988e0ca983d47bbe5e", - "0x000000000000000000000000000000a94b4dd5be0ccb8c63f9f236892494a62c", - "0x000000000000000000000000000000000020d6af30a8209ac5b37a91a15d0283", - "0x000000000000000000000000000000e65256cecb37896333b26ec3e76f10ae6a", - "0x00000000000000000000000000000000002b7bcbce31eac91bedaf4be6efb38c", - "0x000000000000000000000000000000640f9d8b661eba8d15b6d6d02fc65727db", - "0x0000000000000000000000000000000000022fb8c1a31420261bf9643fc7740e", - "0x000000000000000000000000000000729225f3de1f0401be2a9823a378978f31", - "0x00000000000000000000000000000000000d599488117923798fa6a89886af78", - "0x000000000000000000000000000000ee178bbe3ab452ce7caed8c5e48a03782b", - "0x00000000000000000000000000000000002c0175b334a53b00e77209e2297a90", - "0x0000000000000000000000000000008917716755e7ae0fa2b55c3be042870e99", - "0x00000000000000000000000000000000000c23e567cda985d8e35d63e32c3cf5", - "0x0000000000000000000000000000004cc46536fed1c9b89f098ae0caf5060ee2", - "0x00000000000000000000000000000000002273d1256042b5da8daca653c95284", - "0x000000000000000000000000000000e576714816bc4876680f3be4091e6f61b1", - "0x00000000000000000000000000000000000db4d2f453969051db6d86ef7609c1", - "0x0000000000000000000000000000000ff28aa3d48d9a759e5397317285c4acc9", - "0x0000000000000000000000000000000000094f163bf956f6978436ed0a964ae7", - "0x000000000000000000000000000000e4899aff817fc940799319ee95f1fe521f", - "0x0000000000000000000000000000000000026f4f1d9c2bdbc654e5c155c84f3b", - "0x000000000000000000000000000000f0bd4e9f5f4e215c9782968aac6094b956", - "0x00000000000000000000000000000000001069468bf75c48517edfe20edcb017", - "0x000000000000000000000000000000bfa5a2e5a343ae7ae08ce113c995412b92", - "0x00000000000000000000000000000000002f948adab02550587aff2ba6690ae4", - "0x000000000000000000000000000000aa10fb55dba04f2254b93a2cd9564612c8", - "0x00000000000000000000000000000000001e7e426224c3a71d9efe44a786d842", + "0x0000000000000000000000000000002f35e2564be46d1323f59d552c167326b2", + "0x0000000000000000000000000000000000159bc8c43d017294558f3db52def57", + "0x0000000000000000000000000000007f411f1aa786466d28d31d0c95d3c50855", + "0x00000000000000000000000000000000002c8d18c932d9b7bf92836d6d2fc5b4", + "0x0000000000000000000000000000001a17cb601c48652a338a3ba25150f2aaaf", + "0x00000000000000000000000000000000002d1735c1fde0a2da4b3ecdc36d8b8f", + "0x00000000000000000000000000000075117267107e9ee99de9dae070743ff14d", + "0x0000000000000000000000000000000000118dd16850704d6cf61166b0d4510c", + "0x000000000000000000000000000000781f693d80ad51a15a70658d0bb5567cad", + "0x00000000000000000000000000000000000e64d8f2a1d52a863b1ab6e4602317", + "0x000000000000000000000000000000e1d59dd3be7757f74690d4b02868b834a6", + "0x0000000000000000000000000000000000146625b7b6605d6c1a72c7572885cd", + "0x000000000000000000000000000000ddb09796da874438e43e22260e82be3e30", + "0x000000000000000000000000000000000022855271c299c1e45a1a203ff1008d", + "0x0000000000000000000000000000006b6cd1b8e9c783bb4c1ba429ab78df2cda", + "0x00000000000000000000000000000000001862846dae00deca13948e829e31aa", + "0x0000000000000000000000000000008396f9321312c7fcebf6ffc90b2705bf78", + "0x00000000000000000000000000000000002e914d393a78dfb1a99c4ac7170971", + "0x0000000000000000000000000000006dbc7d15e4426a4cc61c342d942ec06a75", + "0x000000000000000000000000000000000025f4ad8ce1de2e7f082ddb1e76802c", + "0x000000000000000000000000000000c7c6717bd46e9cd68602bad222e791528c", + "0x000000000000000000000000000000000002c35208d586495233f04a2d22deae", + "0x000000000000000000000000000000be228b96ad35b722c197c1c37cf2204dd4", + "0x0000000000000000000000000000000000229877ccf04b60f8ddf7a36b86367c", + "0x000000000000000000000000000000462a95b9da5371b8c8d9c1e6227c258ac7", + "0x000000000000000000000000000000000011a9760d801c926f2d274c903d6a45", + "0x00000000000000000000000000000043e52e70b5c490aba9a623b6cf95ea3144", + "0x000000000000000000000000000000000021a1ca7d606af787dd68e4146efeaa", + "0x000000000000000000000000000000ed052eaac19725d8837594197bd53d6b5f", + "0x000000000000000000000000000000000015c54922fcba66e906df0c733842fd", + "0x000000000000000000000000000000f3105c49c960afb37fea0f5dfc3e65c67d", + "0x00000000000000000000000000000000002cac63e5acfe81383762e0deff1b34", + "0x000000000000000000000000000000b9ceb518c996db8ef5af8ffb9da9e4cded", + "0x00000000000000000000000000000000000870ead037924d746c460407bf52ce", + "0x000000000000000000000000000000e8852ee0ba8409bea32aeb14622968f4c7", + "0x000000000000000000000000000000000005e22394a58225cb53467999c2c29a", + "0x000000000000000000000000000000c2b20b2557293b0bcd5fd0755dc2285f75", + "0x0000000000000000000000000000000000046ece25428bc39f5dc875231ca733", + "0x0000000000000000000000000000001b7c8c7044bf3d963372a6d18062a12185", + "0x00000000000000000000000000000000002ea8e20e8fef951eae4ad5463ae0a8", + "0x0000000000000000000000000000005c41e84683a4aabbe2df4f42cd654ef753", + "0x000000000000000000000000000000000022b7e6fb6640a06da618328fee3cae", + "0x000000000000000000000000000000d18ba73dc7ec7f477b744c9ef4fb0aff4c", + "0x00000000000000000000000000000000002ab84ad733e86e6a3689db6cf8adf8", + "0x000000000000000000000000000000fab465a24510d4a1c423309991ad7de7a1", + "0x00000000000000000000000000000000000b3ff4cb640f4d0f80d97afe0616fe", + "0x000000000000000000000000000000a77d0cc0b56a92a5f7eec5adaf2c8f0e1e", + "0x000000000000000000000000000000000001e9c148119da8a2f3546ec35fef0d", + "0x0000000000000000000000000000009d583457334a5a37b25769fec998b5001f", + "0x00000000000000000000000000000000001d0576318a2500854d7d73260ee918", + "0x0000000000000000000000000000006898f8edd478b42da4dd590ebc7df3fb5c", + "0x000000000000000000000000000000000028252b9e3718c603be72d3643a768f", + "0x000000000000000000000000000000402cfaf2ca6e6a4b9945fea15a7ff65e5d", + "0x000000000000000000000000000000000015fe4a0c33a62f8435aaf8e148901d", + "0x000000000000000000000000000000f58f0ae877b8707caa87246a5b6bebae58", + "0x00000000000000000000000000000000000c41dfb78afb20d2195edf008b2fad", "0x000000000000000000000000000000f6f4596202301b6ae4eb0ebbeadd203340", "0x00000000000000000000000000000000000adc89c48d75b571636f5bbeb4a806", "0x00000000000000000000000000000000034e3e27454ef992b4bf84b97baa7471", @@ -142,10 +142,10 @@ vk_path = [ "0x0000000000000000000000000000000000000000000000000000000000000000", "0x0000000000000000000000000000000000000000000000000000000000000002", "0x0000000000000000000000000000000000000000000000000000000000000000", - "0x000000000000000000000000000000d9cc7b9d665e338d41840f4718ae7154bd", - "0x00000000000000000000000000000000002de6e434bae4be387d86b03fbe2df6", - "0x0000000000000000000000000000008acc82d5ef24f0f4ac90145a78a50f10c5", - "0x00000000000000000000000000000000002fc6d79bb0c0387c440c1efa88b8c1", + "0x0000000000000000000000000000003ccc23479730ca6690c607ceb5984998bc", + "0x000000000000000000000000000000000026a05e4d5033bd2d8cdea5e790f2eb", + "0x00000000000000000000000000000028c6e245f4cc96474689101442bf58fe8f", + "0x00000000000000000000000000000000000f988724089256ac8c4bab6b3b3cfc", "0x0000000000000000000000000000005f9e8d701589b5d6314c59ae7c912e4ae0", "0x000000000000000000000000000000000004dd3165471398859c3fe5b6df48a1", "0x000000000000000000000000000000b9816f9688118168f4ba9ca6a86fd1e32d", @@ -155,67 +155,67 @@ vk_path = [ "0x00000000000000000000000000000078f4b3bc61f19d6e7069359bbf47e7f907", "0x00000000000000000000000000000000002d7c18a93c3dae58809faaeec6a86a" ] - hash = "0x227f7e158719c89eebd68f5accd0f2194f818efc916112f1f0819e27732fb2d6" + hash = "0x1c788eec8673caf350f987e1d9bc63d49e5b44c9e2f7629f313eab4e1ee737e5" [previous_kernel_public_inputs] min_revertible_side_effect_counter = "0x0000000000000000000000000000000000000000000000000000000000000003" is_private_only = true -claimed_first_nullifier = "0x19cc7f1f022b12e4d10c8284c5cce0a6466136b5e4f1394bf81d410148314005" +claimed_first_nullifier = "0x22765f785cfdb9c1d2b286e0ad42255fea87964cb1b97bddca825cf3bb0d5c51" [previous_kernel_public_inputs.constants] - vk_tree_root = "0x22a749df2f64e23077f364a4efdd544e0a0666eb43bd1560f5a698b10997c43c" - protocol_contract_tree_root = "0x16862f3a312325ba6b37abe1073a51ffb333ee32fbaa437454dce33423766de6" + vk_tree_root = "0x035e62aad06a66ce8d2a9d112a620e2337018ff2c763061808a24ea0f220ffbc" + protocol_contract_tree_root = "0x071f2e01b58eff84ebe1608c9eccf21bf2d51ac74cac3816a3dee8372cdb0b7d" [previous_kernel_public_inputs.constants.historical_header] - total_fees = "0x00000000000000000000000000000000000000000000000000000098a68c8d4c" - total_mana_used = "0x0000000000000000000000000000000000000000000000000000000000019e8f" + total_fees = "0x000000000000000000000000000000000000000000000000000000002c0103c0" + total_mana_used = "0x0000000000000000000000000000000000000000000000000000000000013c36" [previous_kernel_public_inputs.constants.historical_header.last_archive] - root = "0x2e64c26fcfac3753f52faeb3fe3e01da50d21fca91dcb3f78b26abbf962aca85" - next_available_leaf_index = "0x0000000000000000000000000000000000000000000000000000000000000006" + root = "0x04ecfede3cb3d170b076089b4d0400636b980b65e62d76eb3aa3ebcfcd4e4c66" + next_available_leaf_index = "0x0000000000000000000000000000000000000000000000000000000000000008" [previous_kernel_public_inputs.constants.historical_header.content_commitment] num_txs = "0x0000000000000000000000000000000000000000000000000000000000000001" - blobs_hash = "0x00ea3a920ac1f28fa3653d01c5fcb56dd3a5b743dfbe2d4ff0b56a19b0070a51" + blobs_hash = "0x008da6aaf5e0016f04ac681db9c70467da97770605d66cbedc44746fcecd64d6" in_hash = "0x00089a9d421a82c4a25f7acbebe69e638d5b064fa8a60e018793dcb0be53752c" out_hash = "0x0000000000000000000000000000000000000000000000000000000000000000" [previous_kernel_public_inputs.constants.historical_header.state.l1_to_l2_message_tree] root = "0x2e33ee2008411c04b99c24b313513d097a0d21a5040b6193d1f978b8226892d6" -next_available_leaf_index = "0x0000000000000000000000000000000000000000000000000000000000000060" +next_available_leaf_index = "0x0000000000000000000000000000000000000000000000000000000000000080" [previous_kernel_public_inputs.constants.historical_header.state.partial.note_hash_tree] -root = "0x1c1b0cf0a9fc7fa11c87e27cd0e7aab2f96fdfaa9f7af0ef7089ed45af4242dc" -next_available_leaf_index = "0x0000000000000000000000000000000000000000000000000000000000000180" +root = "0x11d365c48e942152ad755b20a8e9d308d6fa5d46cccab9d40f9847b757208f27" +next_available_leaf_index = "0x0000000000000000000000000000000000000000000000000000000000000200" [previous_kernel_public_inputs.constants.historical_header.state.partial.nullifier_tree] -root = "0x2b7df5ccc7e2f93e227df2b3702ab9e93fd821364ed56e2837a1ae45f32ec7e6" -next_available_leaf_index = "0x0000000000000000000000000000000000000000000000000000000000000200" +root = "0x21d29273b47664993a6b4cd2a65feee16bd32c9ad1c8d0824aadc486ce3751ec" +next_available_leaf_index = "0x0000000000000000000000000000000000000000000000000000000000000280" [previous_kernel_public_inputs.constants.historical_header.state.partial.public_data_tree] -root = "0x22e6f3265727498f791055b26567a50808efacd47fc407471c92d359f95aff4a" -next_available_leaf_index = "0x000000000000000000000000000000000000000000000000000000000000008e" +root = "0x1728e175434a3b744ea0361dc154494c091d7ff76cc33b4eede273aa89ee2b19" +next_available_leaf_index = "0x000000000000000000000000000000000000000000000000000000000000008f" [previous_kernel_public_inputs.constants.historical_header.global_variables] chain_id = "0x0000000000000000000000000000000000000000000000000000000000007a69" - version = "0x0000000000000000000000000000000000000000000000000000000000000001" - block_number = "0x0000000000000000000000000000000000000000000000000000000000000006" - slot_number = "0x0000000000000000000000000000000000000000000000000000000000000008" - timestamp = "0x0000000000000000000000000000000000000000000000000000000067d9b690" + version = "0x00000000000000000000000000000000000000000000000000000000e6f03fcf" + block_number = "0x0000000000000000000000000000000000000000000000000000000000000008" + slot_number = "0x0000000000000000000000000000000000000000000000000000000000000013" + timestamp = "0x0000000000000000000000000000000000000000000000000000000067fa74a8" [previous_kernel_public_inputs.constants.historical_header.global_variables.coinbase] - inner = "0x000000000000000000000000a540911acb4195ad0bbfa2c10a46e3e54df4c649" + inner = "0x00000000000000000000000071d84878d343d87f145bfcc3af71b20b7430de57" [previous_kernel_public_inputs.constants.historical_header.global_variables.fee_recipient] inner = "0x0000000000000000000000000000000000000000000000000000000000000000" [previous_kernel_public_inputs.constants.historical_header.global_variables.gas_fees] fee_per_da_gas = "0x0000000000000000000000000000000000000000000000000000000000000000" - fee_per_l2_gas = "0x00000000000000000000000000000000000000000000000000000000005e43f4" + fee_per_l2_gas = "0x00000000000000000000000000000000000000000000000000000000000023a0" [previous_kernel_public_inputs.constants.tx_context] chain_id = "0x0000000000000000000000000000000000000000000000000000000000007a69" - version = "0x0000000000000000000000000000000000000000000000000000000000000001" + version = "0x00000000000000000000000000000000000000000000000000000000e6f03fcf" [previous_kernel_public_inputs.constants.tx_context.gas_settings.gas_limits] da_gas = "0x000000000000000000000000000000000000000000000000000000003b9aca00" @@ -227,7 +227,7 @@ l2_gas = "0x00000000000000000000000000000000000000000000000000000000005b8d80" [previous_kernel_public_inputs.constants.tx_context.gas_settings.max_fees_per_gas] fee_per_da_gas = "0x0000000000000000000000000000000000000000000000000000000000000000" -fee_per_l2_gas = "0x0000000000000000000000000000000000000000000000000000000000128928" +fee_per_l2_gas = "0x00000000000000000000000000000000000000000000000000000000000021de" [previous_kernel_public_inputs.constants.tx_context.gas_settings.max_priority_fees_per_gas] fee_per_da_gas = "0x0000000000000000000000000000000000000000000000000000000000000000" @@ -235,7 +235,7 @@ fee_per_l2_gas = "0x000000000000000000000000000000000000000000000000000000000000 [previous_kernel_public_inputs.validation_requests.for_rollup.max_block_number._opt] _is_some = true -_value = "0x0000000000000000000000000000000000000000000000000000000000000e16" +_value = "0x0000000000000000000000000000000000000000000000000000000000000e18" [[previous_kernel_public_inputs.validation_requests.note_hash_read_requests]] [previous_kernel_public_inputs.validation_requests.note_hash_read_requests.read_request] @@ -2227,7 +2227,7 @@ _value = "0x0000000000000000000000000000000000000000000000000000000000000000" [[previous_kernel_public_inputs.end.note_hashes]] [previous_kernel_public_inputs.end.note_hashes.note_hash] -value = "0x2cd38d00661867fbc19cda79736ae40b11698d7ac0163ea73d6a1ba903caf1d3" +value = "0x0898d6fdb784c05734415c1748bfa68a66ce1ac0b5821e03311b71b3ad1a4b14" counter = "0x0000000000000000000000000000000000000000000000000000000000000007" [previous_kernel_public_inputs.end.note_hashes.contract_address] @@ -2235,7 +2235,7 @@ inner = "0x0000000000000000000000000000000000000000000000000000000000000000" [[previous_kernel_public_inputs.end.note_hashes]] [previous_kernel_public_inputs.end.note_hashes.note_hash] -value = "0x14371aefe8945fa47f24195c56c10bf288ce858494fbdeb4fb6fbee24ea9b2c6" +value = "0x19b1c06e7878096e8fd84a776f187fb4dfa7e93bb0ae18037c98c787956a8af8" counter = "0x0000000000000000000000000000000000000000000000000000000000000009" [previous_kernel_public_inputs.end.note_hashes.contract_address] @@ -2739,7 +2739,7 @@ inner = "0x0000000000000000000000000000000000000000000000000000000000000000" [[previous_kernel_public_inputs.end.nullifiers]] [previous_kernel_public_inputs.end.nullifiers.nullifier] -value = "0x19cc7f1f022b12e4d10c8284c5cce0a6466136b5e4f1394bf81d410148314005" +value = "0x22765f785cfdb9c1d2b286e0ad42255fea87964cb1b97bddca825cf3bb0d5c51" counter = "0x0000000000000000000000000000000000000000000000000000000000000000" note_hash = "0x0000000000000000000000000000000000000000000000000000000000000000" @@ -2748,7 +2748,7 @@ inner = "0x0000000000000000000000000000000000000000000000000000000000000000" [[previous_kernel_public_inputs.end.nullifiers]] [previous_kernel_public_inputs.end.nullifiers.nullifier] -value = "0x0e444878c25a25407c767d43416c047a2747b3994ef5d7295126a20e696ef9b2" +value = "0x27f79a2cd4e92a3c1c726b7be360dc7bf8ba96657843898fac404299cf1c6d61" counter = "0x0000000000000000000000000000000000000000000000000000000000000006" note_hash = "0x0000000000000000000000000000000000000000000000000000000000000000" @@ -3408,24 +3408,24 @@ counter = "0x0000000000000000000000000000000000000000000000000000000000000008" [previous_kernel_public_inputs.end.private_logs.inner.log] fields = [ - "0x1fe46171f4e93aa67bdd943bb757767970d07985aabfa2554ab710fe43bcf944", - "0x241689515ad9bb031f2c563c80a71a0b1aef085a5a006365c759829effd22c9d", - "0x0001f687e4ca027a7e5d98ee3bfc4e4c2193ae2d142c4fc199df937efa3c3605", - "0x00e908c0a141394ab49ee138cf8df0601118e212280e9d581cb75f049908a746", - "0x007c9fe04799218944479d6eb90382555d6f6e79756528d059f05224cf833735", - "0x00de05d5d5e51b50256c597c9eed2a180ebd8cfb4cfc5639151e10aa9595db15", - "0x00a4e57ed3cdcb8a3680adc7abd102afb08fdd6b9fac7aca0a67052be30a9273", - "0x00423f129fbdcc583d45596c9dc7d8d84bf774d606c00d418e6d42ab92e6966e", - "0x00f300d17a7c438447162fc2b370332baaea0c6f30f37d390ab0b8b87bbe1987", - "0x007c7ed35dfbb2e0f2454ffd898e1b00e5f1495d6c8ceeb86def3494b2ce3cb2", - "0x006a19af9d42a42206c77d85249081ca61b2f8023ef80aca97e7fc7d5536733d", - "0x00d606b5d21ff73338b9ee621f36a2b90819e0c065a4a325ac109dd332330030", - "0x005f7cbdd1ea418d2631220ca242ad1734541647ef7f1999f8030f785957c8cf", - "0x00dd528cfb397210c1bc12848e8914217671ee59ef38860f5fa0ba66c39c4ec7", - "0x0041b17b9c9e79d56e32bd16806e1db3fc7395bf55843484497f59388469b6bc", - "0x00ac74a2602c830841c093adde5c2f340132a9ea955ae00011a2b3317b374d64", - "0x0090dba66673eb965ae76d26ca649e04118a6c60262a452c9bf1866c616723c2", - "0x002381b32fe7e18aac6962343482fa3e4689830845e49c74662ffb153437c34c" + "0x24170c7014e47e1651868a26eab46aa9fbf93526eaac40141ec29799fbc4f216", + "0x1679ff1c5744c81939af8313494375c053695a3f32935cbd126541339a074c94", + "0x0001949d5b1abf031ea18b25c688deeace5c0152b60daf65743bb5f6484f9207", + "0x00f1b4d8f84ea969694c7ef79eb66f743e494bbfaf5daaa35ce19caa7dc32dd6", + "0x0054974047d0a216144b1e9d6f4ecfe682ac549e154913aa496048ed1e2b67f2", + "0x00f7695ee1dc9fabe2157baa3c6c4d53aecb04aee09a334fb831647236b6ccf7", + "0x00610663f935c70bd84a69be25fde6469e294e354672d3f36bb77941a7d77a93", + "0x009f1d1fdf8f419d38732d8e03ab064e21e435cf5854946eb480b4c6db5c52cb", + "0x00aad0c4dd096f74646684e56d25caa9132600cf96680410aa42dc45d7796571", + "0x00a3476c70e6d18d645c945df44e99e36fa5fa30aac1a57764dc1f42aac9501e", + "0x008084ae177c5a273117043abd54f08ac14df79af37b1a2627a5cf102d3b3b93", + "0x0076cf2935ed275068f1a6ba726f076a740fce83d272e7dfcb7d215e8fa8ba12", + "0x003b8a1259906e80e149bb9bd857d000426564b9ac358ea0e6e0fc72c72a93ba", + "0x001964779acd30e38e57c665310886208f506a5f2d097b444989f023d0e4d4e3", + "0x0035034f8710671c7b7378075c105ced5d7945b4fddf5796b8c4b2643765d486", + "0x00b0d614e355de2922fd9a3d9224e2c9beea7b3bfbf1e6702723d7070f371ccb", + "0x0013e5d17c4d1de70f2bd9fb9cdf32ea6199c9b853e3dabe61d9dbdd4c0bfb8a", + "0x0074081151cc5e7c882dc9555e41508ee40406b83d7956443298e3d883373f25" ] [previous_kernel_public_inputs.end.private_logs.contract_address] @@ -3438,24 +3438,24 @@ counter = "0x000000000000000000000000000000000000000000000000000000000000000a" [previous_kernel_public_inputs.end.private_logs.inner.log] fields = [ - "0x02371aaf5b1de942b3c1fff06dab0e8210c73c65c38dff25ecea45d96c010ddb", - "0x0a8c87c83c49772365c189fc9c0a0dfab1761b402f8831c7c166ae002da3ab97", - "0x0000a044ba9def280b90cc455d95275f29bd0d3fbe46f7904cc49812800ff82c", - "0x00a3b1021727a11ac57f408257f16b44ee5416472a5eb0e5fcd6857478491b84", - "0x00bfb5cca004027efb9ffdf17372072b4d224e004dfd78981e8f58c537197f06", - "0x000002d43faaf60a4ae8c86f3947f9aea619dc93f3fae7c71fd6481c38820ec1", - "0x002a96468a03e422ff36f1d6d22783b16f6abbec31bff71676ba140ec15b35cb", - "0x00f3b060584e164a439a860bb20be8162303cb004b6ad8f242f599834587cb62", - "0x002fa924abe533fdcbcf6ea4466484ffc653d5befd64d21fc21f499196d84caf", - "0x00a1f02ff7abd8717e2c9ce674b91c89e29186917d4b5851b91c82566eb2b159", - "0x0091a1cfaf9bdcc1723b6cc086a98f74e561dcd1731b9ce2c55b68b78f22496e", - "0x009d34d4b68e9682e14d66d122c64f9b4c5f5eb1899cba5d46d32fe4adca89c0", - "0x00eb137c7601472c215a7d930f3548aa72b5f07edf6add3d930363da078dddb0", - "0x00751f990754e1ea5e322d5d9e8a0a54dad2bcf00db7047e24ade4b6f09b41b4", - "0x00d265e59cd25a50b6bf61ebbbf10c3ac8e2a81780f153e609af3967d12bce3e", - "0x005fc0fb27cd2b426d25caa46ec98b4513a6ae03218affc4ed61b9f89e2bceaf", - "0x00f449bf7f2221930840ea5b83455216a24766169033262c05894f37ab5cb15d", - "0x006a864c15b2862e419eecf43028965b884356ee9d47faa0ab398e3cfef76822" + "0x1231c7cd153ea77c079121a6c96745708d6d1d1d20c5a1d8b9e952e4759f02ee", + "0x2a76e25734725005c5f6849224a9b0a9fa53ea3e48a49060d7905d9ab3e17573", + "0x00014dbf7bd926b610e3454d3985cc402e9a806209ae0eedd3db41b12f840d97", + "0x00ef0efb29b8f30abbeb4ffb7a60b43a6e557020a56ed4dac2a4e98ed36ca79c", + "0x00ea1699d945042a6c002409d1183d1789cdd6c0ebd3c1fb2e31a4371f6be4b6", + "0x00889949994552b6392fffdf82cce02037734afc8befd4d84918906186fc327e", + "0x007df8f79360833392f2578191f0807649a793bcc8cd71f2f83fc37a3ef7d116", + "0x0080a639c027caaf4f14f9f65be1b7a1dde1f72dd40ed7dd43adb84bc91907a3", + "0x00f67da6e9356707bf1a10bdb5df611016b54fcd176a94cd6963cf026ac6bd5b", + "0x0094f9b395e65a29877ab26efbeb1aceca2326dfcc2e3514c0dc8aefa993c7b4", + "0x00bf4cb18f822e5ac8761edcbcbf9b60cfe099266f47aa4f1fbbacf70a411df2", + "0x0032c0abb8a37303332096a3f556951d4af81e81f494bf33c0f4eb0fddbc050d", + "0x001fd058ef7e0f86b48c2e4a00af1b4cd20229385cabc71226e91d1d17255010", + "0x00d8e94b0b4035a45a8b7f68b444ee6bdc66ec8a685f528cccdc9f9fb8264804", + "0x00e8f90c305875e5dc3d5a5b644e671c229c66265ff62ba171b9a02eb7b39f9c", + "0x000a0547bb209f94ef784d5ec2a0650a03a2e351a4933856450fbe6316deb845", + "0x005e61f274167ea12c033da0a65399ef607263e14505369b52b05d5e62179196", + "0x00b86470dedb0f9d55041bc082a1da03e7840e1b91c63cb8b3be0dd3781c9270" ] [previous_kernel_public_inputs.end.private_logs.contract_address] @@ -3468,24 +3468,24 @@ counter = "0x000000000000000000000000000000000000000000000000000000000000000b" [previous_kernel_public_inputs.end.private_logs.inner.log] fields = [ - "0x0e707ad59c6e59523f04b0a51de32c3671dc81c58c5cdfa74264a676129a7696", - "0x238d97a661cdc7da9320174cc015557d8ba78e326e828f325d0d104a7358b184", - "0x00009f15eff430eab2d99016bb20d414c4bdaef3fbc2d29021ec3322bcdc50b3", - "0x000e39d1de1383ed3c2f5f70b0fc955adaee65585a61de06209b7499ec8839b0", - "0x007c0ca6f5870a26c949eecb51e506cf646bfac371e16af9555e8b5b45a4cacb", - "0x0041e572f1cc71db4a2f1689a14fce7d211a336041aefc2efa666c79f0e124f3", - "0x002158608e28dd18510dc41c65a6a5414e704d946e3ebf249071d391bd21af9a", - "0x00306a9dcdf54b68790b7492f63706e7d29fff1bb4a04b9e0fc12704bc3c6d24", - "0x00da0e93b5b2e0970266910f8ad0df779b236c41f33508a3c2e18ce2ddd03dc6", - "0x009ced600485ea0b7b63f765bfe55baae3e7fb631d1894a27aa446be0849f268", - "0x003240a6c5c98aa84b985864e8c649d909d301b91bb17ee26d530ceb7241517a", - "0x00404d32b8eb9adc718f48c6636f1f6c5d154dfd17b742ba763b62bd1eb2928b", - "0x001a2ac7780a9a53620f4e95860d671874c6fe54476e571e9620c94688b765a9", - "0x00334044ca42c77ffc96e0e7a7a10497f4469c64c3c27773a84880494307d8a2", - "0x00d0ac43578e81672fb5545e149707a958f9ad039ad5bbc88989eeef4c907ad1", - "0x001c5275ccb97f1cd1183d71ace272e1c63f8be778f4ed7e88c8ea780eecc2a5", - "0x003d3ffbacd14fbd3cb1d63db70a9efcb2391ecef518312c9bc6817d1a1fca82", - "0x00e71efffdcb6bd0adf3266c4fd5b051e45cc69d1cad339906cb76d869fe6352" + "0x07d53e06a823119bf9a8d17b2333f9d496616450e10a7824fe0d3418df40eabf", + "0x08377b4dd76f09636979876e333b33479b9f8fac65d313d04c81f14beb94cf5f", + "0x00019d3f32efd1f11584fac7adc8b9b4508b479712cdd604a76f8b7ee5a04c89", + "0x0025a45817d1ad6173d2b9588f09d184f174a61b449eff53d50c1acf985a0c8b", + "0x001c8bb7c24e0aa5b4d7a02a80bd95cfc68e7d5d770c6188e237c2af52e1fd90", + "0x00f671b2e0cc5108bc3a825795cdaaf503681be64e7b62ad75d8d19a9c107d4d", + "0x0069613696b3cebd58c63c103ff3f88762df94ba24f954de84c6d675d737f124", + "0x009af457b726623273831c146a368699ae3da91f3e0c7da3c6673285f8b9adfe", + "0x002475b41b4c542e75506de7fb94ac907457d8923f435d1fe5ab214685d27667", + "0x00dd9fb63df14bd84535e5dc120cd1e509b36288bd7144960e86f4d83993bba6", + "0x003c6519dc55f0260aa5d76b62ec7e856650694d818c1cb067b1df94cbed4d02", + "0x00d3434b1f141d195104f0de5e256997b3df95ed3797e22e59f2846a3146f6a6", + "0x008bd2a86b02b4cc67b1598216b810931a3279042ad1d81170e3f5376de9a26c", + "0x00d1bb9b7260b730aae17603d305178761a1356ba494a735fe6c22c9f72507e1", + "0x008a14cd5bd52eff5f8d6a8684badf13598ad5c1273fe43701cc354ae698f43a", + "0x00050cbe37dc55e3f41e0e4e5810e477665255dc2e3d4c6dfd9367030754f47c", + "0x005cfeead97740ac8afed636d734f07ea2582c7cc5bce8ef73be8d07c7e21b39", + "0x0047c6a025795affbf28a922e019075ac1e8411a5fe1b159aaa64bd356292790" ] [previous_kernel_public_inputs.end.private_logs.contract_address] @@ -4941,4 +4941,4 @@ end_side_effect_counter = "0x000000000000000000000000000000000000000000000000000 inner = "0x0000000000000000000000000000000000000000000000000000000000000000" [previous_kernel_public_inputs.fee_payer] - inner = "0x1fbffb7e3dd073d1ff0f74491a59a89d1da4ed5f6fd76188dfd7a2c682719495" + inner = "0x2cf807d522bb2fda2c20e097a5c3eb396846b6f9c889822715185867baf463f2" diff --git a/noir-projects/noir-protocol-circuits/crates/rollup-base-private/Prover.toml b/noir-projects/noir-protocol-circuits/crates/rollup-base-private/Prover.toml index 0c22ab66540a..8f1a7d6e3fe0 100644 --- a/noir-projects/noir-protocol-circuits/crates/rollup-base-private/Prover.toml +++ b/noir-projects/noir-protocol-circuits/crates/rollup-base-private/Prover.toml @@ -1,61 +1,61 @@ [inputs.tube_data.public_inputs.rollup_validation_requests.max_block_number._opt] _is_some = true -_value = "0x0000000000000000000000000000000000000000000000000000000000000e16" +_value = "0x0000000000000000000000000000000000000000000000000000000000000e18" [inputs.tube_data.public_inputs.constants] -vk_tree_root = "0x22a749df2f64e23077f364a4efdd544e0a0666eb43bd1560f5a698b10997c43c" -protocol_contract_tree_root = "0x16862f3a312325ba6b37abe1073a51ffb333ee32fbaa437454dce33423766de6" +vk_tree_root = "0x035e62aad06a66ce8d2a9d112a620e2337018ff2c763061808a24ea0f220ffbc" +protocol_contract_tree_root = "0x071f2e01b58eff84ebe1608c9eccf21bf2d51ac74cac3816a3dee8372cdb0b7d" [inputs.tube_data.public_inputs.constants.historical_header] - total_fees = "0x00000000000000000000000000000000000000000000000000000098a68c8d4c" - total_mana_used = "0x0000000000000000000000000000000000000000000000000000000000019e8f" + total_fees = "0x000000000000000000000000000000000000000000000000000000002c0103c0" + total_mana_used = "0x0000000000000000000000000000000000000000000000000000000000013c36" [inputs.tube_data.public_inputs.constants.historical_header.last_archive] - root = "0x2e64c26fcfac3753f52faeb3fe3e01da50d21fca91dcb3f78b26abbf962aca85" - next_available_leaf_index = "0x0000000000000000000000000000000000000000000000000000000000000006" + root = "0x04ecfede3cb3d170b076089b4d0400636b980b65e62d76eb3aa3ebcfcd4e4c66" + next_available_leaf_index = "0x0000000000000000000000000000000000000000000000000000000000000008" [inputs.tube_data.public_inputs.constants.historical_header.content_commitment] num_txs = "0x0000000000000000000000000000000000000000000000000000000000000001" - blobs_hash = "0x00ea3a920ac1f28fa3653d01c5fcb56dd3a5b743dfbe2d4ff0b56a19b0070a51" + blobs_hash = "0x008da6aaf5e0016f04ac681db9c70467da97770605d66cbedc44746fcecd64d6" in_hash = "0x00089a9d421a82c4a25f7acbebe69e638d5b064fa8a60e018793dcb0be53752c" out_hash = "0x0000000000000000000000000000000000000000000000000000000000000000" [inputs.tube_data.public_inputs.constants.historical_header.state.l1_to_l2_message_tree] root = "0x2e33ee2008411c04b99c24b313513d097a0d21a5040b6193d1f978b8226892d6" -next_available_leaf_index = "0x0000000000000000000000000000000000000000000000000000000000000060" +next_available_leaf_index = "0x0000000000000000000000000000000000000000000000000000000000000080" [inputs.tube_data.public_inputs.constants.historical_header.state.partial.note_hash_tree] -root = "0x1c1b0cf0a9fc7fa11c87e27cd0e7aab2f96fdfaa9f7af0ef7089ed45af4242dc" -next_available_leaf_index = "0x0000000000000000000000000000000000000000000000000000000000000180" +root = "0x11d365c48e942152ad755b20a8e9d308d6fa5d46cccab9d40f9847b757208f27" +next_available_leaf_index = "0x0000000000000000000000000000000000000000000000000000000000000200" [inputs.tube_data.public_inputs.constants.historical_header.state.partial.nullifier_tree] -root = "0x2b7df5ccc7e2f93e227df2b3702ab9e93fd821364ed56e2837a1ae45f32ec7e6" -next_available_leaf_index = "0x0000000000000000000000000000000000000000000000000000000000000200" +root = "0x21d29273b47664993a6b4cd2a65feee16bd32c9ad1c8d0824aadc486ce3751ec" +next_available_leaf_index = "0x0000000000000000000000000000000000000000000000000000000000000280" [inputs.tube_data.public_inputs.constants.historical_header.state.partial.public_data_tree] -root = "0x22e6f3265727498f791055b26567a50808efacd47fc407471c92d359f95aff4a" -next_available_leaf_index = "0x000000000000000000000000000000000000000000000000000000000000008e" +root = "0x1728e175434a3b744ea0361dc154494c091d7ff76cc33b4eede273aa89ee2b19" +next_available_leaf_index = "0x000000000000000000000000000000000000000000000000000000000000008f" [inputs.tube_data.public_inputs.constants.historical_header.global_variables] chain_id = "0x0000000000000000000000000000000000000000000000000000000000007a69" - version = "0x0000000000000000000000000000000000000000000000000000000000000001" - block_number = "0x0000000000000000000000000000000000000000000000000000000000000006" - slot_number = "0x0000000000000000000000000000000000000000000000000000000000000008" - timestamp = "0x0000000000000000000000000000000000000000000000000000000067d9b690" + version = "0x00000000000000000000000000000000000000000000000000000000e6f03fcf" + block_number = "0x0000000000000000000000000000000000000000000000000000000000000008" + slot_number = "0x0000000000000000000000000000000000000000000000000000000000000013" + timestamp = "0x0000000000000000000000000000000000000000000000000000000067fa74a8" [inputs.tube_data.public_inputs.constants.historical_header.global_variables.coinbase] - inner = "0x000000000000000000000000a540911acb4195ad0bbfa2c10a46e3e54df4c649" + inner = "0x00000000000000000000000071d84878d343d87f145bfcc3af71b20b7430de57" [inputs.tube_data.public_inputs.constants.historical_header.global_variables.fee_recipient] inner = "0x0000000000000000000000000000000000000000000000000000000000000000" [inputs.tube_data.public_inputs.constants.historical_header.global_variables.gas_fees] fee_per_da_gas = "0x0000000000000000000000000000000000000000000000000000000000000000" - fee_per_l2_gas = "0x00000000000000000000000000000000000000000000000000000000005e43f4" + fee_per_l2_gas = "0x00000000000000000000000000000000000000000000000000000000000023a0" [inputs.tube_data.public_inputs.constants.tx_context] chain_id = "0x0000000000000000000000000000000000000000000000000000000000007a69" - version = "0x0000000000000000000000000000000000000000000000000000000000000001" + version = "0x00000000000000000000000000000000000000000000000000000000e6f03fcf" [inputs.tube_data.public_inputs.constants.tx_context.gas_settings.gas_limits] da_gas = "0x000000000000000000000000000000000000000000000000000000003b9aca00" @@ -67,7 +67,7 @@ l2_gas = "0x00000000000000000000000000000000000000000000000000000000005b8d80" [inputs.tube_data.public_inputs.constants.tx_context.gas_settings.max_fees_per_gas] fee_per_da_gas = "0x0000000000000000000000000000000000000000000000000000000000000000" -fee_per_l2_gas = "0x0000000000000000000000000000000000000000000000000000000000128928" +fee_per_l2_gas = "0x00000000000000000000000000000000000000000000000000000000000021de" [inputs.tube_data.public_inputs.constants.tx_context.gas_settings.max_priority_fees_per_gas] fee_per_da_gas = "0x0000000000000000000000000000000000000000000000000000000000000000" @@ -75,8 +75,8 @@ fee_per_l2_gas = "0x000000000000000000000000000000000000000000000000000000000000 [inputs.tube_data.public_inputs.end] note_hashes = [ - "0x2cd38d00661867fbc19cda79736ae40b11698d7ac0163ea73d6a1ba903caf1d3", - "0x14371aefe8945fa47f24195c56c10bf288ce858494fbdeb4fb6fbee24ea9b2c6", + "0x0898d6fdb784c05734415c1748bfa68a66ce1ac0b5821e03311b71b3ad1a4b14", + "0x19b1c06e7878096e8fd84a776f187fb4dfa7e93bb0ae18037c98c787956a8af8", "0x0000000000000000000000000000000000000000000000000000000000000000", "0x0000000000000000000000000000000000000000000000000000000000000000", "0x0000000000000000000000000000000000000000000000000000000000000000", @@ -141,8 +141,8 @@ note_hashes = [ "0x0000000000000000000000000000000000000000000000000000000000000000" ] nullifiers = [ - "0x19cc7f1f022b12e4d10c8284c5cce0a6466136b5e4f1394bf81d410148314005", - "0x0e444878c25a25407c767d43416c047a2747b3994ef5d7295126a20e696ef9b2", + "0x22765f785cfdb9c1d2b286e0ad42255fea87964cb1b97bddca825cf3bb0d5c51", + "0x27f79a2cd4e92a3c1c726b7be360dc7bf8ba96657843898fac404299cf1c6d61", "0x0000000000000000000000000000000000000000000000000000000000000000", "0x0000000000000000000000000000000000000000000000000000000000000000", "0x0000000000000000000000000000000000000000000000000000000000000000", @@ -297,68 +297,68 @@ inner = "0x0000000000000000000000000000000000000000000000000000000000000000" [[inputs.tube_data.public_inputs.end.private_logs]] fields = [ - "0x1fe46171f4e93aa67bdd943bb757767970d07985aabfa2554ab710fe43bcf944", - "0x241689515ad9bb031f2c563c80a71a0b1aef085a5a006365c759829effd22c9d", - "0x0001f687e4ca027a7e5d98ee3bfc4e4c2193ae2d142c4fc199df937efa3c3605", - "0x00e908c0a141394ab49ee138cf8df0601118e212280e9d581cb75f049908a746", - "0x007c9fe04799218944479d6eb90382555d6f6e79756528d059f05224cf833735", - "0x00de05d5d5e51b50256c597c9eed2a180ebd8cfb4cfc5639151e10aa9595db15", - "0x00a4e57ed3cdcb8a3680adc7abd102afb08fdd6b9fac7aca0a67052be30a9273", - "0x00423f129fbdcc583d45596c9dc7d8d84bf774d606c00d418e6d42ab92e6966e", - "0x00f300d17a7c438447162fc2b370332baaea0c6f30f37d390ab0b8b87bbe1987", - "0x007c7ed35dfbb2e0f2454ffd898e1b00e5f1495d6c8ceeb86def3494b2ce3cb2", - "0x006a19af9d42a42206c77d85249081ca61b2f8023ef80aca97e7fc7d5536733d", - "0x00d606b5d21ff73338b9ee621f36a2b90819e0c065a4a325ac109dd332330030", - "0x005f7cbdd1ea418d2631220ca242ad1734541647ef7f1999f8030f785957c8cf", - "0x00dd528cfb397210c1bc12848e8914217671ee59ef38860f5fa0ba66c39c4ec7", - "0x0041b17b9c9e79d56e32bd16806e1db3fc7395bf55843484497f59388469b6bc", - "0x00ac74a2602c830841c093adde5c2f340132a9ea955ae00011a2b3317b374d64", - "0x0090dba66673eb965ae76d26ca649e04118a6c60262a452c9bf1866c616723c2", - "0x002381b32fe7e18aac6962343482fa3e4689830845e49c74662ffb153437c34c" + "0x24170c7014e47e1651868a26eab46aa9fbf93526eaac40141ec29799fbc4f216", + "0x1679ff1c5744c81939af8313494375c053695a3f32935cbd126541339a074c94", + "0x0001949d5b1abf031ea18b25c688deeace5c0152b60daf65743bb5f6484f9207", + "0x00f1b4d8f84ea969694c7ef79eb66f743e494bbfaf5daaa35ce19caa7dc32dd6", + "0x0054974047d0a216144b1e9d6f4ecfe682ac549e154913aa496048ed1e2b67f2", + "0x00f7695ee1dc9fabe2157baa3c6c4d53aecb04aee09a334fb831647236b6ccf7", + "0x00610663f935c70bd84a69be25fde6469e294e354672d3f36bb77941a7d77a93", + "0x009f1d1fdf8f419d38732d8e03ab064e21e435cf5854946eb480b4c6db5c52cb", + "0x00aad0c4dd096f74646684e56d25caa9132600cf96680410aa42dc45d7796571", + "0x00a3476c70e6d18d645c945df44e99e36fa5fa30aac1a57764dc1f42aac9501e", + "0x008084ae177c5a273117043abd54f08ac14df79af37b1a2627a5cf102d3b3b93", + "0x0076cf2935ed275068f1a6ba726f076a740fce83d272e7dfcb7d215e8fa8ba12", + "0x003b8a1259906e80e149bb9bd857d000426564b9ac358ea0e6e0fc72c72a93ba", + "0x001964779acd30e38e57c665310886208f506a5f2d097b444989f023d0e4d4e3", + "0x0035034f8710671c7b7378075c105ced5d7945b4fddf5796b8c4b2643765d486", + "0x00b0d614e355de2922fd9a3d9224e2c9beea7b3bfbf1e6702723d7070f371ccb", + "0x0013e5d17c4d1de70f2bd9fb9cdf32ea6199c9b853e3dabe61d9dbdd4c0bfb8a", + "0x0074081151cc5e7c882dc9555e41508ee40406b83d7956443298e3d883373f25" ] [[inputs.tube_data.public_inputs.end.private_logs]] fields = [ - "0x02371aaf5b1de942b3c1fff06dab0e8210c73c65c38dff25ecea45d96c010ddb", - "0x0a8c87c83c49772365c189fc9c0a0dfab1761b402f8831c7c166ae002da3ab97", - "0x0000a044ba9def280b90cc455d95275f29bd0d3fbe46f7904cc49812800ff82c", - "0x00a3b1021727a11ac57f408257f16b44ee5416472a5eb0e5fcd6857478491b84", - "0x00bfb5cca004027efb9ffdf17372072b4d224e004dfd78981e8f58c537197f06", - "0x000002d43faaf60a4ae8c86f3947f9aea619dc93f3fae7c71fd6481c38820ec1", - "0x002a96468a03e422ff36f1d6d22783b16f6abbec31bff71676ba140ec15b35cb", - "0x00f3b060584e164a439a860bb20be8162303cb004b6ad8f242f599834587cb62", - "0x002fa924abe533fdcbcf6ea4466484ffc653d5befd64d21fc21f499196d84caf", - "0x00a1f02ff7abd8717e2c9ce674b91c89e29186917d4b5851b91c82566eb2b159", - "0x0091a1cfaf9bdcc1723b6cc086a98f74e561dcd1731b9ce2c55b68b78f22496e", - "0x009d34d4b68e9682e14d66d122c64f9b4c5f5eb1899cba5d46d32fe4adca89c0", - "0x00eb137c7601472c215a7d930f3548aa72b5f07edf6add3d930363da078dddb0", - "0x00751f990754e1ea5e322d5d9e8a0a54dad2bcf00db7047e24ade4b6f09b41b4", - "0x00d265e59cd25a50b6bf61ebbbf10c3ac8e2a81780f153e609af3967d12bce3e", - "0x005fc0fb27cd2b426d25caa46ec98b4513a6ae03218affc4ed61b9f89e2bceaf", - "0x00f449bf7f2221930840ea5b83455216a24766169033262c05894f37ab5cb15d", - "0x006a864c15b2862e419eecf43028965b884356ee9d47faa0ab398e3cfef76822" + "0x1231c7cd153ea77c079121a6c96745708d6d1d1d20c5a1d8b9e952e4759f02ee", + "0x2a76e25734725005c5f6849224a9b0a9fa53ea3e48a49060d7905d9ab3e17573", + "0x00014dbf7bd926b610e3454d3985cc402e9a806209ae0eedd3db41b12f840d97", + "0x00ef0efb29b8f30abbeb4ffb7a60b43a6e557020a56ed4dac2a4e98ed36ca79c", + "0x00ea1699d945042a6c002409d1183d1789cdd6c0ebd3c1fb2e31a4371f6be4b6", + "0x00889949994552b6392fffdf82cce02037734afc8befd4d84918906186fc327e", + "0x007df8f79360833392f2578191f0807649a793bcc8cd71f2f83fc37a3ef7d116", + "0x0080a639c027caaf4f14f9f65be1b7a1dde1f72dd40ed7dd43adb84bc91907a3", + "0x00f67da6e9356707bf1a10bdb5df611016b54fcd176a94cd6963cf026ac6bd5b", + "0x0094f9b395e65a29877ab26efbeb1aceca2326dfcc2e3514c0dc8aefa993c7b4", + "0x00bf4cb18f822e5ac8761edcbcbf9b60cfe099266f47aa4f1fbbacf70a411df2", + "0x0032c0abb8a37303332096a3f556951d4af81e81f494bf33c0f4eb0fddbc050d", + "0x001fd058ef7e0f86b48c2e4a00af1b4cd20229385cabc71226e91d1d17255010", + "0x00d8e94b0b4035a45a8b7f68b444ee6bdc66ec8a685f528cccdc9f9fb8264804", + "0x00e8f90c305875e5dc3d5a5b644e671c229c66265ff62ba171b9a02eb7b39f9c", + "0x000a0547bb209f94ef784d5ec2a0650a03a2e351a4933856450fbe6316deb845", + "0x005e61f274167ea12c033da0a65399ef607263e14505369b52b05d5e62179196", + "0x00b86470dedb0f9d55041bc082a1da03e7840e1b91c63cb8b3be0dd3781c9270" ] [[inputs.tube_data.public_inputs.end.private_logs]] fields = [ - "0x0e707ad59c6e59523f04b0a51de32c3671dc81c58c5cdfa74264a676129a7696", - "0x238d97a661cdc7da9320174cc015557d8ba78e326e828f325d0d104a7358b184", - "0x00009f15eff430eab2d99016bb20d414c4bdaef3fbc2d29021ec3322bcdc50b3", - "0x000e39d1de1383ed3c2f5f70b0fc955adaee65585a61de06209b7499ec8839b0", - "0x007c0ca6f5870a26c949eecb51e506cf646bfac371e16af9555e8b5b45a4cacb", - "0x0041e572f1cc71db4a2f1689a14fce7d211a336041aefc2efa666c79f0e124f3", - "0x002158608e28dd18510dc41c65a6a5414e704d946e3ebf249071d391bd21af9a", - "0x00306a9dcdf54b68790b7492f63706e7d29fff1bb4a04b9e0fc12704bc3c6d24", - "0x00da0e93b5b2e0970266910f8ad0df779b236c41f33508a3c2e18ce2ddd03dc6", - "0x009ced600485ea0b7b63f765bfe55baae3e7fb631d1894a27aa446be0849f268", - "0x003240a6c5c98aa84b985864e8c649d909d301b91bb17ee26d530ceb7241517a", - "0x00404d32b8eb9adc718f48c6636f1f6c5d154dfd17b742ba763b62bd1eb2928b", - "0x001a2ac7780a9a53620f4e95860d671874c6fe54476e571e9620c94688b765a9", - "0x00334044ca42c77ffc96e0e7a7a10497f4469c64c3c27773a84880494307d8a2", - "0x00d0ac43578e81672fb5545e149707a958f9ad039ad5bbc88989eeef4c907ad1", - "0x001c5275ccb97f1cd1183d71ace272e1c63f8be778f4ed7e88c8ea780eecc2a5", - "0x003d3ffbacd14fbd3cb1d63db70a9efcb2391ecef518312c9bc6817d1a1fca82", - "0x00e71efffdcb6bd0adf3266c4fd5b051e45cc69d1cad339906cb76d869fe6352" + "0x07d53e06a823119bf9a8d17b2333f9d496616450e10a7824fe0d3418df40eabf", + "0x08377b4dd76f09636979876e333b33479b9f8fac65d313d04c81f14beb94cf5f", + "0x00019d3f32efd1f11584fac7adc8b9b4508b479712cdd604a76f8b7ee5a04c89", + "0x0025a45817d1ad6173d2b9588f09d184f174a61b449eff53d50c1acf985a0c8b", + "0x001c8bb7c24e0aa5b4d7a02a80bd95cfc68e7d5d770c6188e237c2af52e1fd90", + "0x00f671b2e0cc5108bc3a825795cdaaf503681be64e7b62ad75d8d19a9c107d4d", + "0x0069613696b3cebd58c63c103ff3f88762df94ba24f954de84c6d675d737f124", + "0x009af457b726623273831c146a368699ae3da91f3e0c7da3c6673285f8b9adfe", + "0x002475b41b4c542e75506de7fb94ac907457d8923f435d1fe5ab214685d27667", + "0x00dd9fb63df14bd84535e5dc120cd1e509b36288bd7144960e86f4d83993bba6", + "0x003c6519dc55f0260aa5d76b62ec7e856650694d818c1cb067b1df94cbed4d02", + "0x00d3434b1f141d195104f0de5e256997b3df95ed3797e22e59f2846a3146f6a6", + "0x008bd2a86b02b4cc67b1598216b810931a3279042ad1d81170e3f5376de9a26c", + "0x00d1bb9b7260b730aae17603d305178761a1356ba494a735fe6c22c9f72507e1", + "0x008a14cd5bd52eff5f8d6a8684badf13598ad5c1273fe43701cc354ae698f43a", + "0x00050cbe37dc55e3f41e0e4e5810e477665255dc2e3d4c6dfd9367030754f47c", + "0x005cfeead97740ac8afed636d734f07ea2582c7cc5bce8ef73be8d07c7e21b39", + "0x0047c6a025795affbf28a922e019075ac1e8411a5fe1b159aaa64bd356292790" ] [[inputs.tube_data.public_inputs.end.private_logs]] @@ -1013,7 +1013,7 @@ da_gas = "0x0000000000000000000000000000000000000000000000000000000000007c00" l2_gas = "0x0000000000000000000000000000000000000000000000000000000000004a40" [inputs.tube_data.public_inputs.fee_payer] -inner = "0x1fbffb7e3dd073d1ff0f74491a59a89d1da4ed5f6fd76188dfd7a2c682719495" +inner = "0x2cf807d522bb2fda2c20e097a5c3eb396846b6f9c889822715185867baf463f2" [inputs.tube_data.proof] fields = [ @@ -1558,11 +1558,11 @@ fields = [ vk_index = "0x0000000000000000000000000000000000000000000000000000000000000004" vk_path = [ "0x0000000000000000000000000000000000000000000000000000000000000000", - "0x0c2435b8880c6003dfc21a8850e38f0beb4c0f7ac6ccc6b7f30e8ced27d8b516", - "0x02370e3878cde2a8c84c40391c1115962ed9f0543e0c443869d9791a3f033733", - "0x19816d7c1dabb2893c3f4ef0250936cb55ae926b870e7b14e990d50bdf9eb084", - "0x1269cc8f8216b2d60daca30e5e0ba1e1d11dfe89f0f0c2cadb113c30de181554", - "0x26b3cce275e6a21ac2049ab937390d4afb7793ec68d1d7bcddadfbfe45fbfb06" + "0x14c76c9e2665c4e1d905fe8acab3dc92e7d4f4fc5ba3e859f8ba0cf4802a4c73", + "0x07c008584a3bc294cfed5d5a726d88e5ce8be9a34100232e67e6b790e0a2905e", + "0x26121cf4ba1d9fe4a98c57cc36ab5640e2cebf720bf5d0ae4291c34416cc3fd7", + "0x0d8e4232c3e1214b1a72ee04016dd919308ecb6b01e871bdcdc36248ab044711", + "0x2fd02310a424f73ae3709cf4ff9d507e920407534ba3e965a5542a138b815675" ] [inputs.tube_data.vk_data.vk] @@ -1710,16 +1710,16 @@ vk_path = [ hash = "0x0000000000000000000000000000000000000000000000000000000000000002" [inputs.start.note_hash_tree] -root = "0x1c1b0cf0a9fc7fa11c87e27cd0e7aab2f96fdfaa9f7af0ef7089ed45af4242dc" -next_available_leaf_index = "0x0000000000000000000000000000000000000000000000000000000000000180" +root = "0x11d365c48e942152ad755b20a8e9d308d6fa5d46cccab9d40f9847b757208f27" +next_available_leaf_index = "0x0000000000000000000000000000000000000000000000000000000000000200" [inputs.start.nullifier_tree] -root = "0x2b7df5ccc7e2f93e227df2b3702ab9e93fd821364ed56e2837a1ae45f32ec7e6" -next_available_leaf_index = "0x0000000000000000000000000000000000000000000000000000000000000200" +root = "0x21d29273b47664993a6b4cd2a65feee16bd32c9ad1c8d0824aadc486ce3751ec" +next_available_leaf_index = "0x0000000000000000000000000000000000000000000000000000000000000280" [inputs.start.public_data_tree] -root = "0x22e6f3265727498f791055b26567a50808efacd47fc407471c92d359f95aff4a" -next_available_leaf_index = "0x000000000000000000000000000000000000000000000000000000000000008e" +root = "0x1728e175434a3b744ea0361dc154494c091d7ff76cc33b4eede273aa89ee2b19" +next_available_leaf_index = "0x000000000000000000000000000000000000000000000000000000000000008f" [inputs.start_sponge_blob] fields = "0x0000000000000000000000000000000000000000000000000000000000000000" @@ -1742,8 +1742,8 @@ expected_fields = "0x00000000000000000000000000000000000000000000000000000000000 [inputs.state_diff_hints] sorted_nullifiers = [ - "0x19cc7f1f022b12e4d10c8284c5cce0a6466136b5e4f1394bf81d410148314005", - "0x0e444878c25a25407c767d43416c047a2747b3994ef5d7295126a20e696ef9b2", + "0x27f79a2cd4e92a3c1c726b7be360dc7bf8ba96657843898fac404299cf1c6d61", + "0x22765f785cfdb9c1d2b286e0ad42255fea87964cb1b97bddca825cf3bb0d5c51", "0x0000000000000000000000000000000000000000000000000000000000000000", "0x0000000000000000000000000000000000000000000000000000000000000000", "0x0000000000000000000000000000000000000000000000000000000000000000", @@ -1808,8 +1808,8 @@ sorted_nullifiers = [ "0x0000000000000000000000000000000000000000000000000000000000000000" ] sorted_nullifier_indexes = [ - "0x0000000000000000000000000000000000000000000000000000000000000000", "0x0000000000000000000000000000000000000000000000000000000000000001", + "0x0000000000000000000000000000000000000000000000000000000000000000", "0x0000000000000000000000000000000000000000000000000000000000000002", "0x0000000000000000000000000000000000000000000000000000000000000003", "0x0000000000000000000000000000000000000000000000000000000000000004", @@ -1875,9 +1875,9 @@ sorted_nullifier_indexes = [ ] note_hash_subtree_sibling_path = [ "0x01c28fe1059ae0237b72334700697bdf465e03df03986fe05200cadeda66bd76", - "0x1650fdb8de3bf4302647c75aad9be89aeebd82a1c3a7a262b5aa828dc805f510", - "0x259fad303d372e6a758c253943c4a6d8a9341d2ecbb83ebe017a8ee8d2b62668", - "0x1849b85f3c693693e732dfc4577217acc18295193bede09ce8b97ad910310972", + "0x2d78ed82f93b61ba718b17c2dfe5b52375b4d37cbbed6f1fc98b47614b0cf21b", + "0x067243231eddf4222f3911defbba7705aff06ed45960b27f6f91319196ef97e1", + "0x0ac31bb363af39932f4b80fe40a9fe839ba7bbc5457193ab888e88cad16c32ba", "0x2a775ea761d20435b31fa2c33ff07663e24542ffb9e7b293dfce3042eb104686", "0x0f320b0703439a8114f81593de99cd0b8f3b9bf854601abb5b2ea0e8a3dda4a7", "0x0d07f6e7a8a0e9199d6d92801fff867002ff5b4808962f9da2ba5ce1bdd26a73", @@ -1911,9 +1911,9 @@ note_hash_subtree_sibling_path = [ ] nullifier_subtree_sibling_path = [ "0x01c28fe1059ae0237b72334700697bdf465e03df03986fe05200cadeda66bd76", - "0x2d78ed82f93b61ba718b17c2dfe5b52375b4d37cbbed6f1fc98b47614b0cf21b", + "0x04fb92c207417e1991f37010a9b0a18265a2655528a3c8ddd1739355c333014c", "0x067243231eddf4222f3911defbba7705aff06ed45960b27f6f91319196ef97e1", - "0x07937e2e1636743589179efc17fa169b6d2036c1a2abd523257d746786632e56", + "0x0ad6e456265c48d15143b212fe5f3a6335a52fd5ec5626912d63b2921f2074f9", "0x2a775ea761d20435b31fa2c33ff07663e24542ffb9e7b293dfce3042eb104686", "0x0f320b0703439a8114f81593de99cd0b8f3b9bf854601abb5b2ea0e8a3dda4a7", "0x0d07f6e7a8a0e9199d6d92801fff867002ff5b4808962f9da2ba5ce1bdd26a73", @@ -1989,14 +1989,14 @@ fee_write_sibling_path = [ ] [[inputs.state_diff_hints.nullifier_predecessor_preimages]] - nullifier = "0x199e09743fd0c770f858ea7da610f01e288ab6b164382fc9e4e51070ad335ad1" - next_nullifier = "0x2068b44221ca2b14045ac4837b881ef5db1707b662b3e79eb64345f9cc0ff545" - next_index = "0x00000000000000000000000000000000000000000000000000000000000000c0" + nullifier = "0x270f4e81f1c5b1ca0fd4c2d376f23e0badee9052a3d93f9bc1867bbef0b878d3" + next_nullifier = "0x280a6d730f84cda0704e28db98b89cd9e8a53a7e77a205d983e56c3284064116" + next_index = "0x0000000000000000000000000000000000000000000000000000000000000101" [[inputs.state_diff_hints.nullifier_predecessor_preimages]] - nullifier = "0x0e261fadc60b6793a710158023bc247d099d7df6be7680935a3fd6f262a646b0" - next_nullifier = "0x0f68cf252249c6052b0aff86c45e74bea2402e3e6427da72f479ab58332d3523" - next_index = "0x00000000000000000000000000000000000000000000000000000000000001c0" + nullifier = "0x18bbb3260dd2e98bf3cbfd240589d585ae2e2a16fe003f8942516efd5d343e45" + next_nullifier = "0x23a975324199e4e5ed39ef01f9fb7a4be100e059245c4783107a7884c1409fc5" + next_index = "0x00000000000000000000000000000000000000000000000000000000000000c0" [[inputs.state_diff_hints.nullifier_predecessor_preimages]] nullifier = "0x0000000000000000000000000000000000000000000000000000000000000000" @@ -2309,18 +2309,18 @@ fee_write_sibling_path = [ next_index = "0x0000000000000000000000000000000000000000000000000000000000000000" [[inputs.state_diff_hints.nullifier_predecessor_membership_witnesses]] - leaf_index = "257" + leaf_index = "128" sibling_path = [ - "0x0c7b4d66c983a59b383326bf410c2f84326a93d962d51cf6c4a489888c72105b", - "0x03135aafd4b295d49a6ac0cfae1e08013b3f6e5159375bd0c76f4f66fb1febaf", + "0x07ffe8353f3a2e75492b0cf53a291864b2a8bd72292be39d9e78890049a8d788", + "0x256bc839d4af890c94fcf05a8ed60ecab500411881cf53d485c6d7c11df9e6b7", "0x0e34ac2c09f45a503d2908bcb12f1cbae5fa4065759c88d501c097506a8b2290", "0x21f9172d72fdcdafc312eee05cf5092980dda821da5b760a9fb8dbdf607c8a20", "0x2373ea368857ec7af97e7b470d705848e2bf93ed7bef142a490f2119bcf82d8e", "0x120157cfaaa49ce3da30f8b47879114977c24b266d58b0ac18b325d878aafddf", - "0x25c1b90c87ee8c0c6eaed7d50de9f342df7ea6c95f19c744b7eeb9f27c164ca5", - "0x069e48b4f9879afe103db430e649c25e7fcad602b76d0816f2930b06ae399ce3", - "0x1007fe6b979510c2ab9fa36a838d15202a027ae8452e31f04b93d20adce8a8da", - "0x1849b85f3c693693e732dfc4577217acc18295193bede09ce8b97ad910310972", + "0x23556f4205588a8989cb0815d8712d5470f170767541d12430e387ba91e17f4d", + "0x2e003988bf7d0c0f3aed141a463a7389ef14b8d629512636d5b0f6f1206bb682", + "0x132680ab19deac750b4c39592a67e23d192196de7784f97b3031b7a49afb3e84", + "0x0fc3a39d9772434c2e0657aae6dcdc06e02574e361f6c0aa5f3ee4aeeb814b1d", "0x2a775ea761d20435b31fa2c33ff07663e24542ffb9e7b293dfce3042eb104686", "0x0f320b0703439a8114f81593de99cd0b8f3b9bf854601abb5b2ea0e8a3dda4a7", "0x0d07f6e7a8a0e9199d6d92801fff867002ff5b4808962f9da2ba5ce1bdd26a73", @@ -2356,16 +2356,16 @@ fee_write_sibling_path = [ [[inputs.state_diff_hints.nullifier_predecessor_membership_witnesses]] leaf_index = "320" sibling_path = [ - "0x1928c8de20b479041def77ec17bef5ecee888fe20615fba70d6390133f124331", - "0x22a406e1c9a505c76d6857cf3700095afa8b224e5a781b68955c7fa7d645ed16", + "0x2a5db69e30f1ab01c7dd62b9cc758b9491cd1d1e9fb14c83b1cc4c9606530d38", + "0x0ebca48e2589edbdeab981769ba4d58f744f69803e6117f2cbbf8869213dff6d", "0x0e34ac2c09f45a503d2908bcb12f1cbae5fa4065759c88d501c097506a8b2290", "0x21f9172d72fdcdafc312eee05cf5092980dda821da5b760a9fb8dbdf607c8a20", "0x2373ea368857ec7af97e7b470d705848e2bf93ed7bef142a490f2119bcf82d8e", "0x120157cfaaa49ce3da30f8b47879114977c24b266d58b0ac18b325d878aafddf", - "0x12507f782366de77fc5c8a3b253b36257b3aa593d9862fb9ef8318af3cffc224", - "0x069e48b4f9879afe103db430e649c25e7fcad602b76d0816f2930b06ae399ce3", - "0x1007fe6b979510c2ab9fa36a838d15202a027ae8452e31f04b93d20adce8a8da", - "0x1849b85f3c693693e732dfc4577217acc18295193bede09ce8b97ad910310972", + "0x14701b5ce081fbbedeed4608cebd89d984ccdcb3282351aedb04a627e4f79d3b", + "0x1712ca8128317e119e212165b2a1369f125581d04d1049c09fb9f95dde57c8b5", + "0x00790993142d9c33c96f1a4f164b335156eb4039a551bf3f59234db474a62dc7", + "0x0fc3a39d9772434c2e0657aae6dcdc06e02574e361f6c0aa5f3ee4aeeb814b1d", "0x2a775ea761d20435b31fa2c33ff07663e24542ffb9e7b293dfce3042eb104686", "0x0f320b0703439a8114f81593de99cd0b8f3b9bf854601abb5b2ea0e8a3dda4a7", "0x0d07f6e7a8a0e9199d6d92801fff867002ff5b4808962f9da2ba5ce1bdd26a73", @@ -5189,22 +5189,22 @@ fee_write_sibling_path = [ ] [inputs.state_diff_hints.fee_write_low_leaf_preimage] - slot = "0x10bd5eb801c0a60ecde3a0f7b44428535c228e6c67894e5baaa9c85394bbacde" - value = "0x00000000000000000000000000000000000000000000021e19e0c568d11112cc" - next_slot = "0x1227db2f3a42c77695c463d9c0b56438340b6a0e88a33a4223e8b1c1690451c2" - next_index = "0x0000000000000000000000000000000000000000000000000000000000000078" + slot = "0x16847710038f83e16cf6cf05eeec890a5e6907aaec87b1af7f1c6b21bec730c4" + value = "0x00000000000000000000000000000000000000000000021e19e0c9af756188bc" + next_slot = "0x17a0747ec85c6d39c3efc65e08d10e10756b759a6a7bcdb8496988146a9b5364" + next_index = "0x000000000000000000000000000000000000000000000000000000000000008d" [inputs.state_diff_hints.fee_write_low_leaf_membership_witness] - leaf_index = "119" + leaf_index = "123" sibling_path = [ - "0x18a6dd50dffa817d546391d578965a31de5f4b976debbc57fd9e9d00398e1180", - "0x1ede7e1c96f0c2b5c53ec4e346a4daaf416569d18a62b2678e778dfff646131f", - "0x29208ecc66c5a3f559855bd44866e51a9e1b053fe1b60786941ab50664c75667", - "0x09178e77a2aa6e7c08118ea267b7c13802d14a8e5ae99983fbb1293229d23e61", + "0x1472584e57b8e1487dee60712338604314636acfdc073f58d3325805724f4aee", + "0x04c384d578eea76cb8c22e86f72d8dd85161eafec9f893a114a6f53913ac7049", + "0x18e1e2042900cc298ba61022eb1becb3944b6e8812d5818190323d8d8c29288e", + "0x1d72b0aa87cb4fcb75ea943a55bc2fda138a995d185dda74b6e8b17da5427c21", "0x179d7b5df7a65a4bdda408605c069b3ea175a5f4e2b0fccc9f2ebcb5d12c7c28", "0x19e2b3449d24e57ea4d6948048220d0756f93b6aaca968960b173df69903160a", "0x1a35cf71ad31b7058db0cec41776442412ccd9f75276205dcd8fd0ffc4bbfaab", - "0x2f483fd85f135712171402fc65b154e34f12f0f75c4ed9445b0206cc409a8066", + "0x28c7575a343f931108a6b78cd123b1d84054ce02acbce38fe7eff561465d4d5e", "0x067243231eddf4222f3911defbba7705aff06ed45960b27f6f91319196ef97e1", "0x1849b85f3c693693e732dfc4577217acc18295193bede09ce8b97ad910310972", "0x2a775ea761d20435b31fa2c33ff07663e24542ffb9e7b293dfce3042eb104686", @@ -5240,20 +5240,20 @@ fee_write_sibling_path = [ ] [inputs.fee_payer_fee_juice_balance_read_hint] -leaf_slot = "0x10bd5eb801c0a60ecde3a0f7b44428535c228e6c67894e5baaa9c85394bbacde" -value = "0x00000000000000000000000000000000000000000000021e19e0c568d11112cc" +leaf_slot = "0x16847710038f83e16cf6cf05eeec890a5e6907aaec87b1af7f1c6b21bec730c4" +value = "0x00000000000000000000000000000000000000000000021e19e0c9af756188bc" [inputs.fee_payer_fee_juice_balance_read_hint.membership_witness] - leaf_index = "119" + leaf_index = "123" sibling_path = [ - "0x18a6dd50dffa817d546391d578965a31de5f4b976debbc57fd9e9d00398e1180", - "0x1ede7e1c96f0c2b5c53ec4e346a4daaf416569d18a62b2678e778dfff646131f", - "0x29208ecc66c5a3f559855bd44866e51a9e1b053fe1b60786941ab50664c75667", - "0x09178e77a2aa6e7c08118ea267b7c13802d14a8e5ae99983fbb1293229d23e61", + "0x1472584e57b8e1487dee60712338604314636acfdc073f58d3325805724f4aee", + "0x04c384d578eea76cb8c22e86f72d8dd85161eafec9f893a114a6f53913ac7049", + "0x18e1e2042900cc298ba61022eb1becb3944b6e8812d5818190323d8d8c29288e", + "0x1d72b0aa87cb4fcb75ea943a55bc2fda138a995d185dda74b6e8b17da5427c21", "0x179d7b5df7a65a4bdda408605c069b3ea175a5f4e2b0fccc9f2ebcb5d12c7c28", "0x19e2b3449d24e57ea4d6948048220d0756f93b6aaca968960b173df69903160a", "0x1a35cf71ad31b7058db0cec41776442412ccd9f75276205dcd8fd0ffc4bbfaab", - "0x2f483fd85f135712171402fc65b154e34f12f0f75c4ed9445b0206cc409a8066", + "0x28c7575a343f931108a6b78cd123b1d84054ce02acbce38fe7eff561465d4d5e", "0x067243231eddf4222f3911defbba7705aff06ed45960b27f6f91319196ef97e1", "0x1849b85f3c693693e732dfc4577217acc18295193bede09ce8b97ad910310972", "0x2a775ea761d20435b31fa2c33ff07663e24542ffb9e7b293dfce3042eb104686", @@ -5289,18 +5289,18 @@ value = "0x00000000000000000000000000000000000000000000021e19e0c568d11112cc" ] [inputs.fee_payer_fee_juice_balance_read_hint.leaf_preimage] - slot = "0x10bd5eb801c0a60ecde3a0f7b44428535c228e6c67894e5baaa9c85394bbacde" - value = "0x00000000000000000000000000000000000000000000021e19e0c568d11112cc" - next_slot = "0x1227db2f3a42c77695c463d9c0b56438340b6a0e88a33a4223e8b1c1690451c2" - next_index = "0x0000000000000000000000000000000000000000000000000000000000000078" + slot = "0x16847710038f83e16cf6cf05eeec890a5e6907aaec87b1af7f1c6b21bec730c4" + value = "0x00000000000000000000000000000000000000000000021e19e0c9af756188bc" + next_slot = "0x17a0747ec85c6d39c3efc65e08d10e10756b759a6a7bcdb8496988146a9b5364" + next_index = "0x000000000000000000000000000000000000000000000000000000000000008d" [inputs.archive_root_membership_witness] -leaf_index = "6" +leaf_index = "8" sibling_path = [ "0x0000000000000000000000000000000000000000000000000000000000000000", - "0x08f779c2240c69002c7fb90bed618bb333162c0d7a6677a2e71cdd7cdc2b0ab3", - "0x1e67f5e145726547a580db0eebc501a7df4db58efc77097c660ab0ca9a97af8d", - "0x21f9172d72fdcdafc312eee05cf5092980dda821da5b760a9fb8dbdf607c8a20", + "0x0b63a53787021a4a962a452c2921b3663aff1ffd8d5510540f8e659e782956f1", + "0x0e34ac2c09f45a503d2908bcb12f1cbae5fa4065759c88d501c097506a8b2290", + "0x1973a240fceca21d19700fe03d46838c19b1c07e2d91a4cd4bea200c7c0111e4", "0x2373ea368857ec7af97e7b470d705848e2bf93ed7bef142a490f2119bcf82d8e", "0x120157cfaaa49ce3da30f8b47879114977c24b266d58b0ac18b325d878aafddf", "0x01c28fe1059ae0237b72334700697bdf465e03df03986fe05200cadeda66bd76", @@ -8356,26 +8356,26 @@ fields = [ inner = "0x0000000000000000000000000000000000000000000000000000000000000000" [inputs.constants] -vk_tree_root = "0x22a749df2f64e23077f364a4efdd544e0a0666eb43bd1560f5a698b10997c43c" -protocol_contract_tree_root = "0x16862f3a312325ba6b37abe1073a51ffb333ee32fbaa437454dce33423766de6" +vk_tree_root = "0x035e62aad06a66ce8d2a9d112a620e2337018ff2c763061808a24ea0f220ffbc" +protocol_contract_tree_root = "0x071f2e01b58eff84ebe1608c9eccf21bf2d51ac74cac3816a3dee8372cdb0b7d" [inputs.constants.last_archive] - root = "0x05a86109bbbc34b0d091a63b7780bb2876816077b2794a61f14956048fee6dea" - next_available_leaf_index = "0x0000000000000000000000000000000000000000000000000000000000000007" + root = "0x0eb121ceb76f8cb8b08038e1edd7adbb9217e382177ee3ed9b9ad061ea723e80" + next_available_leaf_index = "0x0000000000000000000000000000000000000000000000000000000000000009" [inputs.constants.global_variables] chain_id = "0x0000000000000000000000000000000000000000000000000000000000007a69" - version = "0x0000000000000000000000000000000000000000000000000000000000000001" - block_number = "0x0000000000000000000000000000000000000000000000000000000000000007" - slot_number = "0x0000000000000000000000000000000000000000000000000000000000000012" - timestamp = "0x0000000000000000000000000000000000000000000000000000000067d9b780" + version = "0x00000000000000000000000000000000000000000000000000000000e6f03fcf" + block_number = "0x0000000000000000000000000000000000000000000000000000000000000009" + slot_number = "0x0000000000000000000000000000000000000000000000000000000000000022" + timestamp = "0x0000000000000000000000000000000000000000000000000000000067fa7610" [inputs.constants.global_variables.coinbase] - inner = "0x000000000000000000000000a540911acb4195ad0bbfa2c10a46e3e54df4c649" + inner = "0x00000000000000000000000071d84878d343d87f145bfcc3af71b20b7430de57" [inputs.constants.global_variables.fee_recipient] inner = "0x0000000000000000000000000000000000000000000000000000000000000000" [inputs.constants.global_variables.gas_fees] fee_per_da_gas = "0x0000000000000000000000000000000000000000000000000000000000000000" - fee_per_l2_gas = "0x00000000000000000000000000000000000000000000000000000000000c5b70" + fee_per_l2_gas = "0x0000000000000000000000000000000000000000000000000000000000001694" diff --git a/noir-projects/noir-protocol-circuits/crates/rollup-base-public/Prover.toml b/noir-projects/noir-protocol-circuits/crates/rollup-base-public/Prover.toml index 301aa39a3b46..f48458d43783 100644 --- a/noir-projects/noir-protocol-circuits/crates/rollup-base-public/Prover.toml +++ b/noir-projects/noir-protocol-circuits/crates/rollup-base-public/Prover.toml @@ -1,57 +1,57 @@ [inputs.tube_data.public_inputs.constants] -vk_tree_root = "0x22a749df2f64e23077f364a4efdd544e0a0666eb43bd1560f5a698b10997c43c" -protocol_contract_tree_root = "0x16862f3a312325ba6b37abe1073a51ffb333ee32fbaa437454dce33423766de6" +vk_tree_root = "0x035e62aad06a66ce8d2a9d112a620e2337018ff2c763061808a24ea0f220ffbc" +protocol_contract_tree_root = "0x071f2e01b58eff84ebe1608c9eccf21bf2d51ac74cac3816a3dee8372cdb0b7d" [inputs.tube_data.public_inputs.constants.historical_header] - total_fees = "0x00000000000000000000000000000000000000000000000000000098a68c8d4c" - total_mana_used = "0x0000000000000000000000000000000000000000000000000000000000019e8f" + total_fees = "0x000000000000000000000000000000000000000000000000000000002c0103c0" + total_mana_used = "0x0000000000000000000000000000000000000000000000000000000000013c36" [inputs.tube_data.public_inputs.constants.historical_header.last_archive] - root = "0x2e64c26fcfac3753f52faeb3fe3e01da50d21fca91dcb3f78b26abbf962aca85" - next_available_leaf_index = "0x0000000000000000000000000000000000000000000000000000000000000006" + root = "0x04ecfede3cb3d170b076089b4d0400636b980b65e62d76eb3aa3ebcfcd4e4c66" + next_available_leaf_index = "0x0000000000000000000000000000000000000000000000000000000000000008" [inputs.tube_data.public_inputs.constants.historical_header.content_commitment] num_txs = "0x0000000000000000000000000000000000000000000000000000000000000001" - blobs_hash = "0x00ea3a920ac1f28fa3653d01c5fcb56dd3a5b743dfbe2d4ff0b56a19b0070a51" + blobs_hash = "0x008da6aaf5e0016f04ac681db9c70467da97770605d66cbedc44746fcecd64d6" in_hash = "0x00089a9d421a82c4a25f7acbebe69e638d5b064fa8a60e018793dcb0be53752c" out_hash = "0x0000000000000000000000000000000000000000000000000000000000000000" [inputs.tube_data.public_inputs.constants.historical_header.state.l1_to_l2_message_tree] root = "0x2e33ee2008411c04b99c24b313513d097a0d21a5040b6193d1f978b8226892d6" -next_available_leaf_index = "0x0000000000000000000000000000000000000000000000000000000000000060" +next_available_leaf_index = "0x0000000000000000000000000000000000000000000000000000000000000080" [inputs.tube_data.public_inputs.constants.historical_header.state.partial.note_hash_tree] -root = "0x1c1b0cf0a9fc7fa11c87e27cd0e7aab2f96fdfaa9f7af0ef7089ed45af4242dc" -next_available_leaf_index = "0x0000000000000000000000000000000000000000000000000000000000000180" +root = "0x11d365c48e942152ad755b20a8e9d308d6fa5d46cccab9d40f9847b757208f27" +next_available_leaf_index = "0x0000000000000000000000000000000000000000000000000000000000000200" [inputs.tube_data.public_inputs.constants.historical_header.state.partial.nullifier_tree] -root = "0x2b7df5ccc7e2f93e227df2b3702ab9e93fd821364ed56e2837a1ae45f32ec7e6" -next_available_leaf_index = "0x0000000000000000000000000000000000000000000000000000000000000200" +root = "0x21d29273b47664993a6b4cd2a65feee16bd32c9ad1c8d0824aadc486ce3751ec" +next_available_leaf_index = "0x0000000000000000000000000000000000000000000000000000000000000280" [inputs.tube_data.public_inputs.constants.historical_header.state.partial.public_data_tree] -root = "0x22e6f3265727498f791055b26567a50808efacd47fc407471c92d359f95aff4a" -next_available_leaf_index = "0x000000000000000000000000000000000000000000000000000000000000008e" +root = "0x1728e175434a3b744ea0361dc154494c091d7ff76cc33b4eede273aa89ee2b19" +next_available_leaf_index = "0x000000000000000000000000000000000000000000000000000000000000008f" [inputs.tube_data.public_inputs.constants.historical_header.global_variables] chain_id = "0x0000000000000000000000000000000000000000000000000000000000007a69" - version = "0x0000000000000000000000000000000000000000000000000000000000000001" - block_number = "0x0000000000000000000000000000000000000000000000000000000000000006" - slot_number = "0x0000000000000000000000000000000000000000000000000000000000000008" - timestamp = "0x0000000000000000000000000000000000000000000000000000000067d9b690" + version = "0x00000000000000000000000000000000000000000000000000000000e6f03fcf" + block_number = "0x0000000000000000000000000000000000000000000000000000000000000008" + slot_number = "0x0000000000000000000000000000000000000000000000000000000000000013" + timestamp = "0x0000000000000000000000000000000000000000000000000000000067fa74a8" [inputs.tube_data.public_inputs.constants.historical_header.global_variables.coinbase] - inner = "0x000000000000000000000000a540911acb4195ad0bbfa2c10a46e3e54df4c649" + inner = "0x00000000000000000000000071d84878d343d87f145bfcc3af71b20b7430de57" [inputs.tube_data.public_inputs.constants.historical_header.global_variables.fee_recipient] inner = "0x0000000000000000000000000000000000000000000000000000000000000000" [inputs.tube_data.public_inputs.constants.historical_header.global_variables.gas_fees] fee_per_da_gas = "0x0000000000000000000000000000000000000000000000000000000000000000" - fee_per_l2_gas = "0x00000000000000000000000000000000000000000000000000000000005e43f4" + fee_per_l2_gas = "0x00000000000000000000000000000000000000000000000000000000000023a0" [inputs.tube_data.public_inputs.constants.tx_context] chain_id = "0x0000000000000000000000000000000000000000000000000000000000007a69" - version = "0x0000000000000000000000000000000000000000000000000000000000000001" + version = "0x00000000000000000000000000000000000000000000000000000000e6f03fcf" [inputs.tube_data.public_inputs.constants.tx_context.gas_settings.gas_limits] da_gas = "0x000000000000000000000000000000000000000000000000000000003b9aca00" @@ -63,7 +63,7 @@ l2_gas = "0x00000000000000000000000000000000000000000000000000000000005b8d80" [inputs.tube_data.public_inputs.constants.tx_context.gas_settings.max_fees_per_gas] fee_per_da_gas = "0x0000000000000000000000000000000000000000000000000000000000000000" -fee_per_l2_gas = "0x0000000000000000000000000000000000000000000000000000000000128928" +fee_per_l2_gas = "0x00000000000000000000000000000000000000000000000000000000000021de" [inputs.tube_data.public_inputs.constants.tx_context.gas_settings.max_priority_fees_per_gas] fee_per_da_gas = "0x0000000000000000000000000000000000000000000000000000000000000000" @@ -71,7 +71,7 @@ fee_per_l2_gas = "0x000000000000000000000000000000000000000000000000000000000000 [inputs.tube_data.public_inputs.rollup_validation_requests.max_block_number._opt] _is_some = true -_value = "0x0000000000000000000000000000000000000000000000000000000000000e16" +_value = "0x0000000000000000000000000000000000000000000000000000000000000e18" [inputs.tube_data.public_inputs.non_revertible_accumulated_data] note_hashes = [ @@ -141,7 +141,7 @@ note_hashes = [ "0x0000000000000000000000000000000000000000000000000000000000000000" ] nullifiers = [ - "0x231cf4a17df42b0a5e5933787a476cbc804051e77546e5acb846cb6b544c43d3", + "0x06c82e38d867279b45dc2a909c390040dbbc1a854099f50a5eacf5fc41bbd93b", "0x0000000000000000000000000000000000000000000000000000000000000000", "0x0000000000000000000000000000000000000000000000000000000000000000", "0x0000000000000000000000000000000000000000000000000000000000000000", @@ -2265,13 +2265,13 @@ inner = "0x0000000000000000000000000000000000000000000000000000000000000000" [[inputs.tube_data.public_inputs.revertible_accumulated_data.public_call_requests]] is_static_call = false - calldata_hash = "0x2aa4c862f6f0edb013d95bafe7234508bfdccbac4e1b3abd9794dd03b926d914" + calldata_hash = "0x0904a2fa42e065663f5eb8c4247cd1229062e0df001d2b570ed82dc455ec1616" [inputs.tube_data.public_inputs.revertible_accumulated_data.public_call_requests.msg_sender] - inner = "0x1fbffb7e3dd073d1ff0f74491a59a89d1da4ed5f6fd76188dfd7a2c682719495" + inner = "0x2cf807d522bb2fda2c20e097a5c3eb396846b6f9c889822715185867baf463f2" [inputs.tube_data.public_inputs.revertible_accumulated_data.public_call_requests.contract_address] - inner = "0x1312c2dcc4ce1917d2fb76c7f3f81e88109c09f390f50104aab96fbd381644af" + inner = "0x06ecc897f249ca82db802829d67532c6095d1a9810350783760e0b99ef956374" [[inputs.tube_data.public_inputs.revertible_accumulated_data.public_call_requests]] is_static_call = false @@ -2598,7 +2598,7 @@ da_gas = "0x0000000000000000000000000000000000000000000000000000000000000400" l2_gas = "0x0000000000000000000000000000000000000000000000000000000000006500" [inputs.tube_data.public_inputs.fee_payer] -inner = "0x1fbffb7e3dd073d1ff0f74491a59a89d1da4ed5f6fd76188dfd7a2c682719495" +inner = "0x2cf807d522bb2fda2c20e097a5c3eb396846b6f9c889822715185867baf463f2" [inputs.tube_data.proof] fields = [ @@ -3143,11 +3143,11 @@ fields = [ vk_index = "0x0000000000000000000000000000000000000000000000000000000000000004" vk_path = [ "0x0000000000000000000000000000000000000000000000000000000000000000", - "0x0c2435b8880c6003dfc21a8850e38f0beb4c0f7ac6ccc6b7f30e8ced27d8b516", - "0x02370e3878cde2a8c84c40391c1115962ed9f0543e0c443869d9791a3f033733", - "0x19816d7c1dabb2893c3f4ef0250936cb55ae926b870e7b14e990d50bdf9eb084", - "0x1269cc8f8216b2d60daca30e5e0ba1e1d11dfe89f0f0c2cadb113c30de181554", - "0x26b3cce275e6a21ac2049ab937390d4afb7793ec68d1d7bcddadfbfe45fbfb06" + "0x14c76c9e2665c4e1d905fe8acab3dc92e7d4f4fc5ba3e859f8ba0cf4802a4c73", + "0x07c008584a3bc294cfed5d5a726d88e5ce8be9a34100232e67e6b790e0a2905e", + "0x26121cf4ba1d9fe4a98c57cc36ab5640e2cebf720bf5d0ae4291c34416cc3fd7", + "0x0d8e4232c3e1214b1a72ee04016dd919308ecb6b01e871bdcdc36248ab044711", + "0x2fd02310a424f73ae3709cf4ff9d507e920407534ba3e965a5542a138b815675" ] [inputs.tube_data.vk_data.vk] @@ -3295,40 +3295,40 @@ vk_path = [ hash = "0x0000000000000000000000000000000000000000000000000000000000000002" [inputs.avm_proof_data.public_inputs] -transaction_fee = "0x00000000000000000000000000000000000000000000000000000009798d5824" +transaction_fee = "0x000000000000000000000000000000000000000000000000000000000f57eec8" reverted = false [inputs.avm_proof_data.public_inputs.global_variables] chain_id = "0x0000000000000000000000000000000000000000000000000000000000007a69" - version = "0x0000000000000000000000000000000000000000000000000000000000000001" - block_number = "0x0000000000000000000000000000000000000000000000000000000000000009" - slot_number = "0x0000000000000000000000000000000000000000000000000000000000000014" - timestamp = "0x0000000000000000000000000000000000000000000000000000000067d9b7b0" + version = "0x00000000000000000000000000000000000000000000000000000000e6f03fcf" + block_number = "0x000000000000000000000000000000000000000000000000000000000000000b" + slot_number = "0x0000000000000000000000000000000000000000000000000000000000000024" + timestamp = "0x0000000000000000000000000000000000000000000000000000000067fa7640" [inputs.avm_proof_data.public_inputs.global_variables.coinbase] - inner = "0x000000000000000000000000a540911acb4195ad0bbfa2c10a46e3e54df4c649" + inner = "0x00000000000000000000000071d84878d343d87f145bfcc3af71b20b7430de57" [inputs.avm_proof_data.public_inputs.global_variables.fee_recipient] inner = "0x0000000000000000000000000000000000000000000000000000000000000000" [inputs.avm_proof_data.public_inputs.global_variables.gas_fees] fee_per_da_gas = "0x0000000000000000000000000000000000000000000000000000000000000000" - fee_per_l2_gas = "0x00000000000000000000000000000000000000000000000000000000000747f2" + fee_per_l2_gas = "0x0000000000000000000000000000000000000000000000000000000000000c6c" [inputs.avm_proof_data.public_inputs.start_tree_snapshots.l1_to_l2_message_tree] root = "0x2e33ee2008411c04b99c24b313513d097a0d21a5040b6193d1f978b8226892d6" -next_available_leaf_index = "0x0000000000000000000000000000000000000000000000000000000000000080" +next_available_leaf_index = "0x00000000000000000000000000000000000000000000000000000000000000a0" [inputs.avm_proof_data.public_inputs.start_tree_snapshots.note_hash_tree] -root = "0x0c76c865a447b2c937b3d073815c14cef22a1754711d81c7347823ac0a10f86f" -next_available_leaf_index = "0x0000000000000000000000000000000000000000000000000000000000000280" +root = "0x1398795b2de10a2df565c5d744c062a7764431138af35b64de824f815e65cc02" +next_available_leaf_index = "0x0000000000000000000000000000000000000000000000000000000000000300" [inputs.avm_proof_data.public_inputs.start_tree_snapshots.nullifier_tree] -root = "0x09b3ab900a568736185f4bc77b777b0657e0f8756a3039e0c9f6c8d85571f380" -next_available_leaf_index = "0x0000000000000000000000000000000000000000000000000000000000000300" +root = "0x0f12e90823d7646f3b862a3f6d43521333cb2206e8491fac6354d0e0578c849e" +next_available_leaf_index = "0x0000000000000000000000000000000000000000000000000000000000000380" [inputs.avm_proof_data.public_inputs.start_tree_snapshots.public_data_tree] -root = "0x10ac3fce53498412659b041779d80ebca3880e437b4fd9077a5419eaebe6f146" +root = "0x12d3c639570c343dd8b4bd0d52a5ba321fb2a6295a64f8fb6f79361f159d8e57" next_available_leaf_index = "0x000000000000000000000000000000000000000000000000000000000000008f" [inputs.avm_proof_data.public_inputs.start_gas_used] @@ -3345,14 +3345,14 @@ l2_gas = "0x00000000000000000000000000000000000000000000000000000000005b8d80" [inputs.avm_proof_data.public_inputs.gas_settings.max_fees_per_gas] fee_per_da_gas = "0x0000000000000000000000000000000000000000000000000000000000000000" -fee_per_l2_gas = "0x0000000000000000000000000000000000000000000000000000000000128928" +fee_per_l2_gas = "0x00000000000000000000000000000000000000000000000000000000000021de" [inputs.avm_proof_data.public_inputs.gas_settings.max_priority_fees_per_gas] fee_per_da_gas = "0x0000000000000000000000000000000000000000000000000000000000000000" fee_per_l2_gas = "0x0000000000000000000000000000000000000000000000000000000000000000" [inputs.avm_proof_data.public_inputs.fee_payer] - inner = "0x1fbffb7e3dd073d1ff0f74491a59a89d1da4ed5f6fd76188dfd7a2c682719495" + inner = "0x2cf807d522bb2fda2c20e097a5c3eb396846b6f9c889822715185867baf463f2" [[inputs.avm_proof_data.public_inputs.public_setup_call_requests]] is_static_call = false @@ -3676,13 +3676,13 @@ fee_per_l2_gas = "0x000000000000000000000000000000000000000000000000000000000000 [[inputs.avm_proof_data.public_inputs.public_app_logic_call_requests]] is_static_call = false - calldata_hash = "0x2aa4c862f6f0edb013d95bafe7234508bfdccbac4e1b3abd9794dd03b926d914" + calldata_hash = "0x0904a2fa42e065663f5eb8c4247cd1229062e0df001d2b570ed82dc455ec1616" [inputs.avm_proof_data.public_inputs.public_app_logic_call_requests.msg_sender] - inner = "0x1fbffb7e3dd073d1ff0f74491a59a89d1da4ed5f6fd76188dfd7a2c682719495" + inner = "0x2cf807d522bb2fda2c20e097a5c3eb396846b6f9c889822715185867baf463f2" [inputs.avm_proof_data.public_inputs.public_app_logic_call_requests.contract_address] - inner = "0x1312c2dcc4ce1917d2fb76c7f3f81e88109c09f390f50104aab96fbd381644af" + inner = "0x06ecc897f249ca82db802829d67532c6095d1a9810350783760e0b99ef956374" [[inputs.avm_proof_data.public_inputs.public_app_logic_call_requests]] is_static_call = false @@ -4082,7 +4082,7 @@ fee_per_l2_gas = "0x000000000000000000000000000000000000000000000000000000000000 "0x0000000000000000000000000000000000000000000000000000000000000000" ] nullifiers = [ - "0x231cf4a17df42b0a5e5933787a476cbc804051e77546e5acb846cb6b544c43d3", + "0x06c82e38d867279b45dc2a909c390040dbbc1a854099f50a5eacf5fc41bbd93b", "0x0000000000000000000000000000000000000000000000000000000000000000", "0x0000000000000000000000000000000000000000000000000000000000000000", "0x0000000000000000000000000000000000000000000000000000000000000000", @@ -4460,23 +4460,23 @@ inner = "0x0000000000000000000000000000000000000000000000000000000000000000" [inputs.avm_proof_data.public_inputs.end_tree_snapshots.l1_to_l2_message_tree] root = "0x2e33ee2008411c04b99c24b313513d097a0d21a5040b6193d1f978b8226892d6" -next_available_leaf_index = "0x0000000000000000000000000000000000000000000000000000000000000080" +next_available_leaf_index = "0x00000000000000000000000000000000000000000000000000000000000000a0" [inputs.avm_proof_data.public_inputs.end_tree_snapshots.note_hash_tree] -root = "0x0c76c865a447b2c937b3d073815c14cef22a1754711d81c7347823ac0a10f86f" -next_available_leaf_index = "0x00000000000000000000000000000000000000000000000000000000000002c0" +root = "0x1398795b2de10a2df565c5d744c062a7764431138af35b64de824f815e65cc02" +next_available_leaf_index = "0x0000000000000000000000000000000000000000000000000000000000000340" [inputs.avm_proof_data.public_inputs.end_tree_snapshots.nullifier_tree] -root = "0x15a6897572df1d9946d50916a80c62dfeb2e7ee5734e15204d91c3a9fc6ab175" -next_available_leaf_index = "0x0000000000000000000000000000000000000000000000000000000000000340" +root = "0x169b826be7b3cd2e7c7b39a2781c742ad9dce2b104a097548a37df42630e3e52" +next_available_leaf_index = "0x00000000000000000000000000000000000000000000000000000000000003c0" [inputs.avm_proof_data.public_inputs.end_tree_snapshots.public_data_tree] -root = "0x0420a25edac3ef713e3ea28ddc946e433a90ef9876f770e9a54a628005adb397" +root = "0x0fbfaa151146058d5480d68fb8473b6a8759fbf2241c39b6478b998f87fc870f" next_available_leaf_index = "0x000000000000000000000000000000000000000000000000000000000000008f" [inputs.avm_proof_data.public_inputs.end_gas_used] da_gas = "0x0000000000000000000000000000000000000000000000000000000000000800" - l2_gas = "0x0000000000000000000000000000000000000000000000000000000000014d22" + l2_gas = "0x0000000000000000000000000000000000000000000000000000000000013c36" [inputs.avm_proof_data.public_inputs.accumulated_data] note_hashes = [ @@ -4546,7 +4546,7 @@ next_available_leaf_index = "0x0000000000000000000000000000000000000000000000000 "0x0000000000000000000000000000000000000000000000000000000000000000" ] nullifiers = [ - "0x231cf4a17df42b0a5e5933787a476cbc804051e77546e5acb846cb6b544c43d3", + "0x06c82e38d867279b45dc2a909c390040dbbc1a854099f50a5eacf5fc41bbd93b", "0x0000000000000000000000000000000000000000000000000000000000000000", "0x0000000000000000000000000000000000000000000000000000000000000000", "0x0000000000000000000000000000000000000000000000000000000000000000", @@ -4869,16 +4869,16 @@ fields = [ ] [[inputs.avm_proof_data.public_inputs.accumulated_data.public_data_writes]] - leaf_slot = "0x177db8f86ebaf88525c84fe28061b9c66ec66819cebbcc97cf3568f9b39f291b" - value = "0x0000000000000000000000000000000000000000000000000000000000001f40" + leaf_slot = "0x04fa84261cd5d5e7df6674a504cf7f363e1c5af8c6af5f64f2eced824c81c6bd" + value = "0x0000000000000000000000000000000000000000000000000000000000001c20" [[inputs.avm_proof_data.public_inputs.accumulated_data.public_data_writes]] - leaf_slot = "0x174be7beba6ac763873c96e607124e6ff9fc24c919dca3968f9cd60e350731f1" - value = "0x00000000000000000000000000000000000000000000000000000000000007d0" + leaf_slot = "0x0ffd26490a49a35f239f15a77979146990d73fbdf7850167546fcee4df30c733" + value = "0x0000000000000000000000000000000000000000000000000000000000000af0" [[inputs.avm_proof_data.public_inputs.accumulated_data.public_data_writes]] - leaf_slot = "0x10bd5eb801c0a60ecde3a0f7b44428535c228e6c67894e5baaa9c85394bbacde" - value = "0x00000000000000000000000000000000000000000000021e19e0c540cf9982a8" + leaf_slot = "0x16847710038f83e16cf6cf05eeec890a5e6907aaec87b1af7f1c6b21bec730c4" + value = "0x00000000000000000000000000000000000000000000021e19e0c9af2fc84318" [[inputs.avm_proof_data.public_inputs.accumulated_data.public_data_writes]] leaf_slot = "0x0000000000000000000000000000000000000000000000000000000000000000" @@ -9286,103 +9286,103 @@ fields = [ vk_index = "0x0000000000000000000000000000000000000000000000000000000000000005" vk_path = [ "0x27dbd017f63a5339a96cbc9ab86dc2b137d7c0ed488f2ea3e33424d7a44562c3", - "0x0c2435b8880c6003dfc21a8850e38f0beb4c0f7ac6ccc6b7f30e8ced27d8b516", - "0x02370e3878cde2a8c84c40391c1115962ed9f0543e0c443869d9791a3f033733", - "0x19816d7c1dabb2893c3f4ef0250936cb55ae926b870e7b14e990d50bdf9eb084", - "0x1269cc8f8216b2d60daca30e5e0ba1e1d11dfe89f0f0c2cadb113c30de181554", - "0x26b3cce275e6a21ac2049ab937390d4afb7793ec68d1d7bcddadfbfe45fbfb06" + "0x14c76c9e2665c4e1d905fe8acab3dc92e7d4f4fc5ba3e859f8ba0cf4802a4c73", + "0x07c008584a3bc294cfed5d5a726d88e5ce8be9a34100232e67e6b790e0a2905e", + "0x26121cf4ba1d9fe4a98c57cc36ab5640e2cebf720bf5d0ae4291c34416cc3fd7", + "0x0d8e4232c3e1214b1a72ee04016dd919308ecb6b01e871bdcdc36248ab044711", + "0x2fd02310a424f73ae3709cf4ff9d507e920407534ba3e965a5542a138b815675" ] [inputs.avm_proof_data.vk_data.vk] key = [ - "0x00fdbdd4aaa1b6482707acefa2f1c0963e4e037fb2592b9bd483aa01729b34b4", - "0x2b44b30d3936a6649df4c3bdca54717f4beee6180e6dae4ab7ec383248a9173c", - "0x2e4e382608bd8559ece655d167d6da0bfbd9d5cd98554b78b0bb24f3f18b1f89", - "0x22afd3068ce9f9e746d3091083f1f39babb40695dacb7ba1d8a3ab25b3fc62cb", - "0x26f2643722b3de61c71deb8f1a08187c2bd046328aaaebfa42a47fc8d0a3d51f", - "0x2b449440716663e521cf02ef7f9d936f2ff379116714f0f8e088cf1d1f548ec9", - "0x05baa241d05b279e926811f86c02b131f3be1c3d4c32f7c170dd39d5c3ec09c5", - "0x03905358da1dc0135c9e3c014f8dc29e98ef3133c77b04db9d46aedc8ac784f2", - "0x1563905e38fc98eb21f48a07b9a4441585929ccdea9d001730b87e5cad3e1a5a", - "0x100efa5bc1f2bbab94c3cd382b1ff4f8e020335a00a2a0ba3b2faa15b7bec6a0", - "0x08e554f6caa35bdf15b9cbc6e3ee6433c1731efe929233b5d5c0d5ba24dc07fa", - "0x01716e241a83750d5f6d3f1dffa4f8e243f93553e021dc94585e4fe1a655ab30", - "0x0679464adad74903a3f0b818a76284ef4daa28e8e5e0933abd7394b471024df8", - "0x2abe22d3e1e3b0bb70a3f14920f1d8937dd25f007e5f49674edc4119853b4874", - "0x1871b374441f40ec4766d60e5c9ab8579fd3353dfd9a0eaf416ebbdc889578e9", - "0x19b31a7319581170d7dafe088e2202b7cbb52b68a8d6820a9c9afc6387c15393", - "0x2a35e371cdcb2815bc97644f0944820532703701b194752828336febb2a706c6", - "0x0d4ccb610097bd9ee97cf00f26bb0bac02fe0a3ab0194797edf4c409c5779f6f", - "0x08307915f2e57e338c6974b24524ff4ed41a1d09e1f69e9cb9d9077f9b7472f4", - "0x24e8bf5230d23f255a4169c88046cd4b0772358d5be8e1c1eda0ec4ef99a7a1f", - "0x15bb752c85f3e9cf04744277d6b1919057dbfeee09ee0edda0d214b496b9644c", - "0x0eb00691a98c8413125d54ec83ac0d2eb227e6954ccf4b45093d25424797a63a", - "0x116916e9b3fda76918fd69adf3d07b3ab14a43cc1fd8b9efb259b55f203f0cc3", - "0x2337efe5788beebd4aff4da3d3ec06aee870e4a939acfe5f1ce2c0fe1d884221", - "0x2c913e7c506cd1ee401b6237619159ea12686ce03673a9c6cf4d3f2707b43f58", - "0x1d6d64ab5d9446ed1610a0c7c0b5ef731b42ebc49a960b26bf9a8932be965d6f", - "0x229d8bdea926b5cca9eea66624f95c6a458da5b3609b9d2ff16cd68aa21ed84b", - "0x1c8572c35768ba809ef661edf74e410c3c7f2ae4bbeead5bf5f617c2c18edebf", - "0x2840f271a70d4ccfe6a0d8100a02b7b7833b297fdf04760859b403d475e9f36b", - "0x1957e163526215d1883fac8ba00ca0d9eba884ef2ea2d5f511dfa7f886a38d94", - "0x26ce6c384128c8d355ab66bfc85a301d5d436d35910a68ab2ad1073586418a8d", - "0x06e770791a8f81c956eb226eae7c56b10acee98689124902ed849b07915ae2f2", - "0x05f6d082855995e51295d64b52ee82fc7d21f5ddd04be6676f8e6d9dfbf9933c", - "0x2ba6ffbf631795492b2e6834acfed04dff8f2752f4367ff7e0d5be13fc32a2e8", - "0x26bfba6b9f99326261e1caaef27778d0395239cad82c2ba2c710d3847c6e95dc", - "0x0ea74c2b382cf26f46060bd438960ce4961b3a38899d9dd82879a07f80ad3321", - "0x066a0a424766c6bc85f93e1a69496f9c0b17704f718d546d6fea2c5452b488f4", - "0x090f7d73299353fe6fc7dd9a4576d1d995636af588c8207fa85f20bc2269f20a", - "0x1e335d0b7884c533e73bc6f448a23d532a92c3e5e902cd0ffa991f81f793e805", - "0x01fb69681d6468b30db25b874c9e38d805bd22721e060d0c8a88918d76e2f4e5", - "0x24fcfd9fb72da0cf3fdb1ff257e6359f397c180a154ad74b586e781d7ac10ff7", - "0x1b14ebf700a3e2ac2f894cf5600da74d63cbe65d0c9d2ec1866fd9f920bf0b20", - "0x04b69832cefd00e8b4982f6be186902da32afa93499d97163b70d6d70104867c", - "0x03f2d63f041c5394a2bd80548b9c32a95105c8e1a193adc0740d1db9fb808080", - "0x265c2ca926cb7e6a7fc58d721a7654bbe58fb57702fa8723ed453cb185e3ae52", - "0x12c0bf3a43c39ee347bd1480f691a8b537eb5c09bf8e610e54216fc3a8046ccd", - "0x1432c3f5bad25cbf4f170886a3d9b7f23fd7ab75b607adec4f76e77301e1e523", - "0x0d9c0f7e2540e59411d7b77fbcadda6a6b5c97f63416cc8e4d7a018235189cfb", - "0x27af3067bc6cce504571c984131a737384696e670f5d087864cb20e943aedd46", - "0x28dcd52d730c6935ecc20b35922e80af622db9ae7116156d63ab450a88e6ba20", - "0x1e3191dfc930d226e50624eb19e755c8199bdd222ef5167b1aef6f2a22b57c3b", - "0x21b3bc0016b88821cf9a5043f56faf7fa46f5a73b10c3981a4bf0025cf0537b3", - "0x00df84c8ac5fc7f8889d83872939fc705f1a6f12c0315584dfbabc1199ece751", - "0x005c26426af97fb0ef912311ab5537b7ed510a9cf09db88cbc9d37c3963b529d", - "0x22451a6d0994de13a13a6ee00e8c86a522bd948282b2987eee3d518c92c9427a", - "0x014bc126d8ef9007b5383002bd758b89db0bf4758a9fbf9db568e9984059c8b8", - "0x15819038bb8877fb475d63edbba3c5bf0bdb8e07bb602c9ef3d4fa1e2f937bc0", - "0x0144409bd6349ec1cf9805588b2b7107c170755b8783f1d6a557510354080370", - "0x19238a0e29464f9b0c32d1935fb0f37493904a05cf0432818174545b220507a1", - "0x10afe599a3513b97901dceae3db129708de6503a9aff90526e32501ec9311830", - "0x2a3d634c1088f4d053da370041936158bbc5fbc78e09fdb82a8dfe27ae8e3249", - "0x0e0b79c05cae6cce766b22efe97733ac75375f5673bade0085d2b449c9d1cecb", - "0x1851f03e68800c2752e085594a87d0bc185df94c1030f0980837b0269d92ed32", - "0x2df7c6d7fc84dc2c36435529caa0d2b6ccff720fb180bcb2961b1a381f35ecd3", - "0x25cc58d834b21030cc64f3569d0b64211062f0886cc3365d5c98c36adb2b0dee", - "0x0f35c11a785b6418200f8c246236b2022240af99fc2a6b96f1fe4327703ec0dd", - "0x228e5badbcbc9db113012dcd090d16d994e3553281120658571ff307a432e0be", - "0x2190bd4a4d0fc3c0c50968f85e1bfc959a2b3a8d279ec57d4e286a173dce005e", - "0x29e7b5c632df3810df1be512fedfe18bf06552d4e32faabcf685d0df31548f89", - "0x1032e21f31c98b368a6b7b5101c0334a19dc3e1916e86538476afc87860ec31c", - "0x0701f31ef9be861680a8014bc09ead7129d3983f57d81fd598e8e66ca744c7a3", - "0x015edfc01182cf4688c9e76b7753acf26b24424160c98ba6f8d92f0107684b10", - "0x26d5a088c0a9fb478ce5244b45b26e916e503e96deaa94ea4d000fb70bc86b46", - "0x0f14d1f8042250c706afe8e6449d3dd4d86f2588c23ab73e88f0f9ad962b39c0", - "0x0d45e7680b0ef760327d2d1eab4b06a9719bdf76d8d09d7f115d6cb60d897f48", - "0x05fdb4f589a47083ad4ec061a72d3847527108327fa57a7100480efb1564c6ff", - "0x1ce8a087d4b6e26edf03896c52f523a777e2fbe47925c8c8adaabdcf45c7b375", - "0x123766eb5769e610174227fce9e8d93ca5317f64cf2131bd86d8570c10e0ec1b", - "0x03daa6dcd61a0e55a76e8839a8243878b054df91d2d367f2d5410deaf1bedb7b", - "0x01a1913a13dfc9be285fc834d2bf7ef7abd46bfeabde4575de231c49446eb7d1", - "0x10bdd99cd954c08e5a0d810cc6467dfc3ac22d2d6d0e70f200560f835150724e", - "0x051404bc03ca6ea1645eaf7985124ee7580a095701a540e8900657efe2ae3514", - "0x288bf55ae8f9bd072b5d0e4ff538bba41d2a8969ae76c58090a3b3b51a7e0e5b", - "0x0324a8b7d177dbca770d4db242a39010f212378b8572c0180edbdca68ca50529", - "0x0294c132b0c073651bc6c2413cb5c98d70d8648beec81d49ec002f51f13b2573", - "0x07330c2cba05d0eb94613052ca7aad3dab31eb0a2fec2dca45b0ae256f044943" + "0x1a8052fa542d45229c61f71f09bfbd5d7df8ecf5dbc9548501e67d36eed15937", + "0x00b799519d0c7e380556d3bdede27d0e81d96cc67b2b895c73b99316f7c78e53", + "0x05cea4f627f411661e86f35b2cab5c972879de3bef3c05932dc5679384c2952f", + "0x0b65aa49e5824436619f883895a98e86046db197f4fad4a27867772d71eb1535", + "0x03abfd9f678414ff35b1c3fec6a03e89c949bd2370cbf030e0ffe3c08fa32b4c", + "0x05781b018c5d3003ef69f76e3a75aa1d8845ee33129a4e093bb737bf1fc0e6fc", + "0x0196b64d0a487bb33fe452b2cfdfe7ee3bd63c9050258a78fe778feb1f178ade", + "0x0e9d9dea6db8c513b6f827eebfef4a8170efc8a25832f2eee7e9f541eb0b11c3", + "0x178d61aa4fc148675536d72f03d727921eb8e2ba7f096b51db5d743c33222be9", + "0x24f1204d47eb07098f60fe0d71ad15c8274aa0502f84f7edc8696ae9a898e8dd", + "0x0e37879761d01946f3f73373634a6785ea30bd1ba6099853238fef5f61ecce97", + "0x1c4868dbefb86d9362403e91ae17d369587ab4dc239fcdbb48e0a1536d16978d", + "0x19a06af89cb62301b5638be2bcd4ae23f74ade26be625dc3670c62410a72187e", + "0x162bf2e54c5afc7d453e3686698dcbc7c41817bbece505ce584fc9ece5fed8a7", + "0x2058d5851c5df346c3fb394d04b5d5adc386fec14dd7c66cf1fb5a86b17e67cd", + "0x094b413aaedbe3cd91042766da6289e13da98c724f42333cd280e9fa32f4402f", + "0x02697d1ea4ea7ccd7ddd7436bb066dd400c1e46ba63ac575abc01ce022181c42", + "0x10d7de0a5114e8f4cb0e83c5ee03b64fe3befba9fe7f43db14d8071ab54b2932", + "0x2b23ece63e94d1a50e805df57dc176b28fdbb93f9be03cc2838a022f92b4ae75", + "0x189add3cbcba40ee7871f54c254a0c0c01876465b57e53ada66aa61e297fd09f", + "0x2983ac391fb5fa7c2d18f61690f4705f17f0db6aa8ca97fea0eb21e3c5ece73f", + "0x0d41826bb5090ac3ffdb98225e6f411a2b8b92ea193d96cecfef011c73606e97", + "0x1655361ee14693c77f69e8d94997416f8b8b24f09d24f6e76ac855eb3ede0bd5", + "0x0b4e726b3cade290a356d281c4cd931d1bc410250514a0d5509c8d002dd37192", + "0x29d2d0a276267af0170b8f491cfe29a1d09927f0ac6924392b33ce740746cbac", + "0x03aaf8d9edd6fe179f9e4b8b275d95962c2a74a39e625b37b449c0a1be226733", + "0x086146b0186972f9a499f97eec56124fd9559a8650444dc086341d09e11246d5", + "0x205f7067aa7b1face0ab44b998bed875bd0a652a2e95d3061f63a576ea11f513", + "0x010b54021cd282957cb4132633de8513c57d5960ce8110a87786ffd9d2997c3e", + "0x0c0d41644e16f4286e0140c393c654418482c227dbee090f20d725a0a15aeb77", + "0x289643a775a99c7a0a722fd2ddd6001672c8347c5446d4601db31c3f4fc746e9", + "0x29ea83e3ec7d5a55e4f77794e4840dfdd92b1038ffa2cf62607e82a6501af562", + "0x2b20818e9842b490efc2a1a7c6d61a4bde6b36ebe9760256908861013272bf75", + "0x296efc777d4fd80fbfad8bb2261e75e056c400eeb685bc2d3ab9cc26020e1a0a", + "0x1678a302a7b7f7ed6564b621deb9c4878c2bf878126815b974d260d470fcf80c", + "0x238ee7a81135a920a24bf66c0367adaa2a343106d47178bdbed3342687a89ffa", + "0x18397dc9cfb10a2c8ee429c0df1e9204be2c96ff1f0320ecb8105ab7780bfe75", + "0x0b2a9f588987a936ec8889cb8a6e9d62d6727f5bc0a12fdc71248212688fb44c", + "0x2941adba3e4d227af2d8420252e545a67d075348597e61b93f9e671d585460cc", + "0x16d6003cd87890811e7b7b8a7b8c33642aeadf3a70a277c8a3e8af8e2d29a2ea", + "0x0b9188762103aaf9dc6dad2ff9663a8d2b2e80e51273449cf68a89cabe4a8c00", + "0x1884b6ea10161347f816e2147313e9d8a5ec892b99e66b6a189c3bc0dc2fbb67", + "0x1936bf2b7dfd5c53be973d7c6a75b169dc33f83b98cd5164fae5e36260e7c013", + "0x1ad58a4719ed00e37e9a6b5f172bd0d8b618f8dc4bc86d467e13bd85cf3a8dc3", + "0x2e02823ec92b280dcfc0086186f75318f6bc565e04b220d3e7f2a400e16c7c7d", + "0x11e80d63b74a1a2d61675304dcee1bd23ab5af970c28c35428b5cc23d00e868f", + "0x0586dcdabdaf03897bae27506afeac8dce886ea600e61be557df2b911115617a", + "0x046d2f3529f9ef9236eb3c6f72ddc5531ab56308de2e8a18b7e5849e0e1a35e2", + "0x27baa3678c26f255fbe98eaf8d49527d8163e0843902f6c145669dff2e4adfaa", + "0x1458fcb11c94f55c44772d9a5c6481328b32a19fc61bcb5b498ec056dea6a466", + "0x18d6a8126a0c1905e19b78b81baa00e50af0b16b276ada1056024f2c75034463", + "0x25e6cffa7058879f70a1d1fcc8ad52e8ff53670e6af4631d86558d8b8ec72868", + "0x2a5c2322a7103748841c32998ad4288a6d1433e6852cf07fce4ece9a78d3bdd3", + "0x09fd80c27650ab7ce57efc3a22be535bfbc236d7b84aa343f2fdfc76e229de5f", + "0x165ba914f359c2cc756e620f5cc161f04a51aa737ac7a8a35b138e5d1a96575c", + "0x0aa2535d9cde78ba47e14ce55b493ae875ba815883db8dcd527823e4bfb85ae0", + "0x0a8b3bb33503333d720f2d1750b0f71271f6b9948010912e095ed0fbb7cc5470", + "0x238420602c9954bca08710f7da59ab75465be33d85207e3daeef32a65fae5362", + "0x2de68870aed34a226dbccf279ed0b90235e7535d51a2c19332838d6f3c8e3daa", + "0x2a9266541788001f2352828b82ec75d77a3e8642be06803ff3b31fd35856aa2a", + "0x1db9352002f10dc85901f44139fa8e8e3ff72e9bed4a422f33941e798eaac592", + "0x261c207f87c57beec7a6fbd144417be9ed95d7044f14c6ec1ad955ec3afbbec0", + "0x05aff3669eb603d53626e7304914a6df71618547ae9ce1ded55ea7ad00f3876c", + "0x26bd0e92bc1fb450abdc9de889fee15c8c3790b4f7448b7fde5e793d3f810975", + "0x0c98d18f9885642e6a01ccb9dfa0d9b094e8b8297da939cae5a4d22b786f5a05", + "0x2a94c867bb8a7f6b8e8b441ff56a1a45d727ac0c680380d2a97b98b7d62deade", + "0x19b17558e5cd8f14f00faf04a81456a5c871e10a6b50f78f784c92eac1e9c63f", + "0x274482a8fe5dcc5542ee5acbcc5b21e1696f7fdd1e7504d439e5d653abe2986a", + "0x17139ebfdf029b4c9f885bdccf951d2e2d5956f2264a900cc5efdc79f52e57d8", + "0x0a8f0a560392132347d5a3dd433e6b7129f2418533138d89de94a8701b95b94b", + "0x0141a946a04ea733c6e4f9e5e42260f758c0ac0371d8791aa38efae2275bde0f", + "0x2c2a80910890fe38b9328a46145906466a6d85b909c4967ee8b0b747f5a8a93b", + "0x2ec5129f7a00ae97a7627eb904212cf00bef0b8f56bd39ba6781c6ca0117758e", + "0x1b297359f8357714e1c7d730befdc421128cd1419d43a3b39a3596fb6eed1fd2", + "0x299f4853ecb5237780ae8951df7ef36f64c90710b316d329625f45739c57c4f8", + "0x0220232d367c37789a9053c8b9abf02eeea459b69407c71b45cf54950502d959", + "0x1f8e5959b62d769b0c7c37491f934fa3c0c13887b011a5ddcc4a9c850e7bd6f0", + "0x1d3e458efc8c6b7ccabe4dd9034c3f920bb02a9e9413e735249529098ce1554c", + "0x1ff6f75701f0da6d84880fb509f670291e357aece272fb682bee1326ca7279b8", + "0x0ec741b612092318fb7d5cd5a41b05e2e2180561f3595e03ce6b9832999d2682", + "0x27f83e3a3783cd0229c7bf38e8035691f14606b08bf406d3525d4a7b68ff8026", + "0x0ef33756a7f9ade3ddd9caf2fb24f8dab7d7606ab2bbef005d65933903fe5a8d", + "0x138ca0e2d510f5d130c079b36ef8d43110a04307b020475831cd48b917e1c525", + "0x26fbc566a7f5816d2edf65a845d7a2cb16bf7eaef1a730bdd0d3226450e0324b", + "0x08d246c522cf0486c84022fa0ff4de5a682c2c9fcd86cf8917d38f3d78bd4d81", + "0x0fa4cb8a99dab8062547606ea7a6da35f516f78c369296e8183b871bdc0cf53b" ] - hash = "0x120c680d78ad91ca04b68c6f4f6af4f9f0451351d0613b37404d75d80650dccb" + hash = "0x0787e6edf45a64816aba6563f4020ed5d0c78a03f38c7759d0ff6249ddf6b50d" [inputs.start_sponge_blob] fields = "0x0000000000000000000000000000000000000000000000000000000000000000" @@ -9404,12 +9404,12 @@ expected_fields = "0x00000000000000000000000000000000000000000000000000000000000 squeeze_mode = false [inputs.archive_root_membership_witness] -leaf_index = "6" +leaf_index = "8" sibling_path = [ - "0x0e985f17b6197e3811560c29506b6fc05a7e0e3c985948f2c8dfa314ac47d123", - "0x08f779c2240c69002c7fb90bed618bb333162c0d7a6677a2e71cdd7cdc2b0ab3", - "0x1e67f5e145726547a580db0eebc501a7df4db58efc77097c660ab0ca9a97af8d", - "0x21ee6dfad1dfb05fd29676bdc64616faabcefb38c585bfd6640057ffd2b26073", + "0x098ddaa246de1ca9be56323fe46959a61e32de179bf800976ae13c3b589be246", + "0x2186308fb28be548d6aa205872e0f1a7acc377b8ff107c5b539dc88a850365df", + "0x0e34ac2c09f45a503d2908bcb12f1cbae5fa4065759c88d501c097506a8b2290", + "0x1973a240fceca21d19700fe03d46838c19b1c07e2d91a4cd4bea200c7c0111e4", "0x2373ea368857ec7af97e7b470d705848e2bf93ed7bef142a490f2119bcf82d8e", "0x120157cfaaa49ce3da30f8b47879114977c24b266d58b0ac18b325d878aafddf", "0x01c28fe1059ae0237b72334700697bdf465e03df03986fe05200cadeda66bd76", @@ -12465,26 +12465,26 @@ fields = [ inner = "0x0000000000000000000000000000000000000000000000000000000000000000" [inputs.constants] -vk_tree_root = "0x22a749df2f64e23077f364a4efdd544e0a0666eb43bd1560f5a698b10997c43c" -protocol_contract_tree_root = "0x16862f3a312325ba6b37abe1073a51ffb333ee32fbaa437454dce33423766de6" +vk_tree_root = "0x035e62aad06a66ce8d2a9d112a620e2337018ff2c763061808a24ea0f220ffbc" +protocol_contract_tree_root = "0x071f2e01b58eff84ebe1608c9eccf21bf2d51ac74cac3816a3dee8372cdb0b7d" [inputs.constants.last_archive] - root = "0x12f5c698e8699fb38f5a359e0e6a1735fc9f40978a1b9deaa9564d3d5b484311" - next_available_leaf_index = "0x0000000000000000000000000000000000000000000000000000000000000009" + root = "0x22b8bffe322430b84b71422d40fa3e95953186d197111355a8f19604965ef366" + next_available_leaf_index = "0x000000000000000000000000000000000000000000000000000000000000000b" [inputs.constants.global_variables] chain_id = "0x0000000000000000000000000000000000000000000000000000000000007a69" - version = "0x0000000000000000000000000000000000000000000000000000000000000001" - block_number = "0x0000000000000000000000000000000000000000000000000000000000000009" - slot_number = "0x0000000000000000000000000000000000000000000000000000000000000014" - timestamp = "0x0000000000000000000000000000000000000000000000000000000067d9b7b0" + version = "0x00000000000000000000000000000000000000000000000000000000e6f03fcf" + block_number = "0x000000000000000000000000000000000000000000000000000000000000000b" + slot_number = "0x0000000000000000000000000000000000000000000000000000000000000024" + timestamp = "0x0000000000000000000000000000000000000000000000000000000067fa7640" [inputs.constants.global_variables.coinbase] - inner = "0x000000000000000000000000a540911acb4195ad0bbfa2c10a46e3e54df4c649" + inner = "0x00000000000000000000000071d84878d343d87f145bfcc3af71b20b7430de57" [inputs.constants.global_variables.fee_recipient] inner = "0x0000000000000000000000000000000000000000000000000000000000000000" [inputs.constants.global_variables.gas_fees] fee_per_da_gas = "0x0000000000000000000000000000000000000000000000000000000000000000" - fee_per_l2_gas = "0x00000000000000000000000000000000000000000000000000000000000747f2" + fee_per_l2_gas = "0x0000000000000000000000000000000000000000000000000000000000000c6c" diff --git a/noir-projects/noir-protocol-circuits/crates/rollup-block-merge/Prover.toml b/noir-projects/noir-protocol-circuits/crates/rollup-block-merge/Prover.toml index 1d5237286bb7..1bd54e3bd6f7 100644 --- a/noir-projects/noir-protocol-circuits/crates/rollup-block-merge/Prover.toml +++ b/noir-projects/noir-protocol-circuits/crates/rollup-block-merge/Prover.toml @@ -1,59 +1,57 @@ [[inputs.previous_rollup_data]] [inputs.previous_rollup_data.block_root_or_block_merge_public_inputs] -previous_block_hash = "0x22b5b66534134af6ad68d2a58eb54f05b350ede64c533a045b51e046a8101ed5" -end_block_hash = "0x0e985f17b6197e3811560c29506b6fc05a7e0e3c985948f2c8dfa314ac47d123" out_hash = "0x0000000000000000000000000000000000000000000000000000000000000000" -vk_tree_root = "0x22a749df2f64e23077f364a4efdd544e0a0666eb43bd1560f5a698b10997c43c" -protocol_contract_tree_root = "0x16862f3a312325ba6b37abe1073a51ffb333ee32fbaa437454dce33423766de6" +vk_tree_root = "0x035e62aad06a66ce8d2a9d112a620e2337018ff2c763061808a24ea0f220ffbc" +protocol_contract_tree_root = "0x071f2e01b58eff84ebe1608c9eccf21bf2d51ac74cac3816a3dee8372cdb0b7d" prover_id = "0x0000000000000000000000003c44cdddb6a900fa2b585dd299e03d12fa4293bc" [inputs.previous_rollup_data.block_root_or_block_merge_public_inputs.previous_archive] - root = "0x05a86109bbbc34b0d091a63b7780bb2876816077b2794a61f14956048fee6dea" - next_available_leaf_index = "0x0000000000000000000000000000000000000000000000000000000000000007" + root = "0x0eb121ceb76f8cb8b08038e1edd7adbb9217e382177ee3ed9b9ad061ea723e80" + next_available_leaf_index = "0x0000000000000000000000000000000000000000000000000000000000000009" [inputs.previous_rollup_data.block_root_or_block_merge_public_inputs.new_archive] - root = "0x1f1bf0820bb2f2c54506f0a854e4ade0ff236d216ec2ae5c14ca5683cbbfb723" - next_available_leaf_index = "0x0000000000000000000000000000000000000000000000000000000000000008" + root = "0x1945c10a2f89ef5c07ce78f75ece0980a1fb9f72614ac5032e8e9e4a198ae864" + next_available_leaf_index = "0x000000000000000000000000000000000000000000000000000000000000000a" [inputs.previous_rollup_data.block_root_or_block_merge_public_inputs.start_global_variables] chain_id = "0x0000000000000000000000000000000000000000000000000000000000007a69" - version = "0x0000000000000000000000000000000000000000000000000000000000000001" - block_number = "0x0000000000000000000000000000000000000000000000000000000000000007" - slot_number = "0x0000000000000000000000000000000000000000000000000000000000000012" - timestamp = "0x0000000000000000000000000000000000000000000000000000000067d9b780" + version = "0x00000000000000000000000000000000000000000000000000000000e6f03fcf" + block_number = "0x0000000000000000000000000000000000000000000000000000000000000009" + slot_number = "0x0000000000000000000000000000000000000000000000000000000000000022" + timestamp = "0x0000000000000000000000000000000000000000000000000000000067fa7610" [inputs.previous_rollup_data.block_root_or_block_merge_public_inputs.start_global_variables.coinbase] - inner = "0x000000000000000000000000a540911acb4195ad0bbfa2c10a46e3e54df4c649" + inner = "0x00000000000000000000000071d84878d343d87f145bfcc3af71b20b7430de57" [inputs.previous_rollup_data.block_root_or_block_merge_public_inputs.start_global_variables.fee_recipient] inner = "0x0000000000000000000000000000000000000000000000000000000000000000" [inputs.previous_rollup_data.block_root_or_block_merge_public_inputs.start_global_variables.gas_fees] fee_per_da_gas = "0x0000000000000000000000000000000000000000000000000000000000000000" - fee_per_l2_gas = "0x00000000000000000000000000000000000000000000000000000000000c5b70" + fee_per_l2_gas = "0x0000000000000000000000000000000000000000000000000000000000001694" [inputs.previous_rollup_data.block_root_or_block_merge_public_inputs.end_global_variables] chain_id = "0x0000000000000000000000000000000000000000000000000000000000007a69" - version = "0x0000000000000000000000000000000000000000000000000000000000000001" - block_number = "0x0000000000000000000000000000000000000000000000000000000000000007" - slot_number = "0x0000000000000000000000000000000000000000000000000000000000000012" - timestamp = "0x0000000000000000000000000000000000000000000000000000000067d9b780" + version = "0x00000000000000000000000000000000000000000000000000000000e6f03fcf" + block_number = "0x0000000000000000000000000000000000000000000000000000000000000009" + slot_number = "0x0000000000000000000000000000000000000000000000000000000000000022" + timestamp = "0x0000000000000000000000000000000000000000000000000000000067fa7610" [inputs.previous_rollup_data.block_root_or_block_merge_public_inputs.end_global_variables.coinbase] - inner = "0x000000000000000000000000a540911acb4195ad0bbfa2c10a46e3e54df4c649" + inner = "0x00000000000000000000000071d84878d343d87f145bfcc3af71b20b7430de57" [inputs.previous_rollup_data.block_root_or_block_merge_public_inputs.end_global_variables.fee_recipient] inner = "0x0000000000000000000000000000000000000000000000000000000000000000" [inputs.previous_rollup_data.block_root_or_block_merge_public_inputs.end_global_variables.gas_fees] fee_per_da_gas = "0x0000000000000000000000000000000000000000000000000000000000000000" - fee_per_l2_gas = "0x00000000000000000000000000000000000000000000000000000000000c5b70" + fee_per_l2_gas = "0x0000000000000000000000000000000000000000000000000000000000001694" [[inputs.previous_rollup_data.block_root_or_block_merge_public_inputs.fees]] - value = "0x0000000000000000000000000000000000000000000000000000000395853c00" + value = "0x00000000000000000000000000000000000000000000000000000000068c6d00" [inputs.previous_rollup_data.block_root_or_block_merge_public_inputs.fees.recipient] - inner = "0x000000000000000000000000a540911acb4195ad0bbfa2c10a46e3e54df4c649" + inner = "0x00000000000000000000000071d84878d343d87f145bfcc3af71b20b7430de57" [[inputs.previous_rollup_data.block_root_or_block_merge_public_inputs.fees]] value = "0x0000000000000000000000000000000000000000000000000000000000000000" @@ -339,19 +337,19 @@ prover_id = "0x0000000000000000000000003c44cdddb6a900fa2b585dd299e03d12fa4293bc" [[inputs.previous_rollup_data.block_root_or_block_merge_public_inputs.blob_public_inputs]] [[inputs.previous_rollup_data.block_root_or_block_merge_public_inputs.blob_public_inputs.inner]] -z = "0x217f812699cd4202d946ef618a7db1a92b42014094bd29a05f3d1cd957ca50ba" +z = "0x143224556b3051cb009f3329b921aab7a166707c5d1cf4d83f2571c00d1cadf7" [inputs.previous_rollup_data.block_root_or_block_merge_public_inputs.blob_public_inputs.inner.y] limbs = [ - "0x7a70e84dbc90c4b7983d36fbaf1dcc", - "0xa16a46f05ecda16fb8244e40511fb1", - "0x63d0" + "0x8947110525967804ecb20bf16374b2", + "0xd45aad4e001af484d2785f684836fc", + "0x411e" ] [inputs.previous_rollup_data.block_root_or_block_merge_public_inputs.blob_public_inputs.inner.kzg_commitment] inner = [ - "0x00b5788ff7a72f4ff9d717f5654f6f2e070577057d3f1c87d82821405a88a46c", - "0x0000000000000000000000000000008b6fc31415a030f141480b7765114bf2ce" + "0x008f754eaca3b6be8c2ebb672c8d801bff5aab6263d2a1f560c9ec9155286d5b", + "0x000000000000000000000000000000a3605fec48539de0149bcb16f43ba0a221" ] [[inputs.previous_rollup_data.block_root_or_block_merge_public_inputs.blob_public_inputs.inner]] @@ -3231,9 +3229,11 @@ fields = [ [inputs.previous_rollup_data.vk] key = [ "0x0000000000000000000000000000000000000000000000000000000000400000", - "0x00000000000000000000000000000000000000000000000000000000000003f6", + "0x00000000000000000000000000000000000000000000000000000000000003f4", "0x0000000000000000000000000000000000000000000000000000000000000001", "0x0000000000000000000000000000000000000000000000000000000000000001", + "0x00000000000000000000000000000000000000000000000000000000000003da", + "0x00000000000000000000000000000000000000000000000000000000000003db", "0x00000000000000000000000000000000000000000000000000000000000003dc", "0x00000000000000000000000000000000000000000000000000000000000003dd", "0x00000000000000000000000000000000000000000000000000000000000003de", @@ -3248,9 +3248,9 @@ key = [ "0x00000000000000000000000000000000000000000000000000000000000003e7", "0x00000000000000000000000000000000000000000000000000000000000003e8", "0x00000000000000000000000000000000000000000000000000000000000003e9", + "0x0000000000000000000000000000000000000000000000000000000000000001", "0x00000000000000000000000000000000000000000000000000000000000003ea", "0x00000000000000000000000000000000000000000000000000000000000003eb", - "0x0000000000000000000000000000000000000000000000000000000000000001", "0x00000000000000000000000000000000000000000000000000000000000003ec", "0x00000000000000000000000000000000000000000000000000000000000003ed", "0x00000000000000000000000000000000000000000000000000000000000003ee", @@ -3259,186 +3259,182 @@ key = [ "0x00000000000000000000000000000000000000000000000000000000000003f1", "0x00000000000000000000000000000000000000000000000000000000000003f2", "0x00000000000000000000000000000000000000000000000000000000000003f3", - "0x00000000000000000000000000000000000000000000000000000000000003f4", - "0x00000000000000000000000000000000000000000000000000000000000003f5", - "0x00000000000000000000000000000026fed7cbfa6fef4b4beb62ad5cb35e1505", - "0x00000000000000000000000000000000002d68c4a9e5f457c085399bbd2f842f", - "0x000000000000000000000000000000c1b33034f71e6e52fe87fc49f691ebc6c4", - "0x00000000000000000000000000000000002f27273cf880dd9291eb2ab3a189a7", - "0x0000000000000000000000000000001ff1eaed28539c9f55b52d5d7aa8351291", - "0x000000000000000000000000000000000018c60f5235765b3d179cf2d1de0273", - "0x000000000000000000000000000000f4b697b30f9a5ad161fbf25c8d11cc665b", - "0x00000000000000000000000000000000001b21e717c694839b442d9c6d2f2680", - "0x000000000000000000000000000000ce0f61b49b140f12e1ef046c5745198841", - "0x00000000000000000000000000000000001d102334105b041841082bb3a97747", - "0x000000000000000000000000000000b7f96177f798c3ca9509c2623384468b22", - "0x0000000000000000000000000000000000215a9940e15f469bd6c056021c2207", - "0x0000000000000000000000000000009fd45876322e6d51108782a45e442e91c0", - "0x0000000000000000000000000000000000162c4829f2d428c93697570179667f", - "0x00000000000000000000000000000039e9e95307aeac2f83ff8ed745062f417c", - "0x00000000000000000000000000000000002b18b5ec282e9c3638f65d9cfd0fc5", - "0x0000000000000000000000000000007f6ca286a16b95c7d8aa37a638680cf9a4", - "0x0000000000000000000000000000000000102e877cec9f9dca0bd8c202d2cfb1", - "0x0000000000000000000000000000002bca6eabbb45be868c695c6a310b59d9d2", - "0x00000000000000000000000000000000002f02b13a7ec7217591dc60eae97314", - "0x000000000000000000000000000000ead9c2d4e1ab4acad18273c16b6ecded81", - "0x00000000000000000000000000000000000844ae53b0633280db0dc7ca099e1a", - "0x000000000000000000000000000000ace5a344208a42aa76d2c94536b65287ae", - "0x00000000000000000000000000000000001ada7c0c89121179213e1ec41e050c", - "0x000000000000000000000000000000ddbb65fee64c9d1204287e811cb436fc95", - "0x00000000000000000000000000000000002d2141dbf8e19e490a545c243b9da8", - "0x000000000000000000000000000000980981ed27d03f6a5a799091150f1dd318", - "0x0000000000000000000000000000000000236aedb66c50bb004e87095b95ddfb", - "0x000000000000000000000000000000c5b70b2b30a9e136b42bbb0e470b4f9686", - "0x000000000000000000000000000000000028e72e21606b26b8a995ebd9b42669", - "0x00000000000000000000000000000041b29382518c81a32ea6fd6376f864024f", - "0x000000000000000000000000000000000017007410722d51d122a89d0318c028", - "0x000000000000000000000000000000f2635c83dbe3ba4d0289ca3c88ca2697a3", - "0x0000000000000000000000000000000000083eb6677487814fb65687dedea2ed", - "0x000000000000000000000000000000170e63f49b65ed34caed8e67041a379040", - "0x00000000000000000000000000000000002ef86d1df7745fc68281badd338847", - "0x0000000000000000000000000000006fcd6815e31b6ba7f2d2a36d02d09def42", - "0x000000000000000000000000000000000007cf16cf1fc7d04cf814cfc8c919c9", - "0x000000000000000000000000000000ea4064f00819f55f5b265b9b2ceda16dfd", - "0x000000000000000000000000000000000029e2d70223b82a64b30cf971139de5", - "0x000000000000000000000000000000d451192137cbd9252b7b7053da5f696057", - "0x000000000000000000000000000000000012476d1df596ea74b986f09c6d13dd", - "0x00000000000000000000000000000008be828a28cd98bec507017a30625e6115", - "0x000000000000000000000000000000000020f244fd2f72be4540eaf190e9cdb8", - "0x0000000000000000000000000000002e590b67063e5cb86595d48e6d3872e110", - "0x0000000000000000000000000000000000066bc1d43ac3bac34b9c1912e9b23d", - "0x000000000000000000000000000000ae8c577ab2605dc9a9bb16886af3857937", - "0x00000000000000000000000000000000002fb7db05e346f2786d40c5a5adbf37", - "0x000000000000000000000000000000825e761973d913c831ddd54b4b78efe61e", - "0x0000000000000000000000000000000000226281078b464fead25552ff0dd6e9", - "0x000000000000000000000000000000f22d2ea59d7aa31453c01434ed3d43fa9b", - "0x000000000000000000000000000000000003f4b6f0980cc28190fe7f9969be9d", - "0x000000000000000000000000000000dc079d7c287b62d3f83874842114075648", - "0x00000000000000000000000000000000002032c308710d793bd9db830bc1818c", - "0x00000000000000000000000000000013802e39f4d2425f2d0f5e208234ed611a", - "0x0000000000000000000000000000000000128b98bcd1688c626dec150a8235a1", - "0x0000000000000000000000000000001c390c3152a83c8ab62dd2ccc94c423cc7", - "0x00000000000000000000000000000000002f5ebe5b10da1068e889f4e1978aa5", - "0x0000000000000000000000000000007758f1ee634c1304913d5f518b99bafa3c", - "0x00000000000000000000000000000000002ad732718f7b7c6abbfd5071adcf6d", - "0x00000000000000000000000000000045423b4aadfc15ebf49bbf2cf0cb49c5e0", - "0x00000000000000000000000000000000002e179e98eac7777a1d4180dccac990", - "0x000000000000000000000000000000de43bda966764539138879b73681c07d0a", - "0x00000000000000000000000000000000002edc51252ef0334178d44fed8b932a", - "0x00000000000000000000000000000035bc3bc75affc28d2b5d7c1487db6c1afa", - "0x000000000000000000000000000000000018a327c2275eb248232f70507cd54c", - "0x0000000000000000000000000000009696c0d97710128cad5a264e8584bbc73c", - "0x00000000000000000000000000000000001099acafa6ffbc3cc3d78056f6b2df", - "0x000000000000000000000000000000bd7190e82f81d571f25a05c96943832ade", - "0x0000000000000000000000000000000000145bb43a10e4918116af76c2f6436e", - "0x0000000000000000000000000000006d04132197785f426de4952d4c1870a944", - "0x000000000000000000000000000000000008f57159c23b0348ac4c3decfde627", - "0x00000000000000000000000000000038891c6064c88da977d299d59aff273160", - "0x000000000000000000000000000000000020c3e1e8a57302ca2ead64a9be3b5c", - "0x000000000000000000000000000000c8faa116de4f2ef5fc1a380debfef62e6a", - "0x0000000000000000000000000000000000178aae3ca6968497335c960fca30af", - "0x0000000000000000000000000000001d996a822218f05bc1d8c6f22645d3958a", - "0x00000000000000000000000000000000002e285fce072c6e66833684947c3b68", - "0x000000000000000000000000000000df5c9bc2c98bc791682cc89aca16f0aa96", - "0x00000000000000000000000000000000002d1ea455fabdad58de319968e2d2d8", - "0x00000000000000000000000000000050a0c0b1edd8d0dab5e21ec20c5b7bd830", - "0x00000000000000000000000000000000000c14688998d17d8b7d9a1af05a8200", - "0x00000000000000000000000000000003b71bc93eb7a53b6c522c0a7b0ee09fa0", - "0x000000000000000000000000000000000026c80d51615257a0cc01987615d9af", - "0x0000000000000000000000000000003a11f3ff7ed5dafa46a8e17ad10d8528d4", - "0x000000000000000000000000000000000028daa2aab093285dcdc2f01b295cd2", - "0x000000000000000000000000000000c47e0c7183bf78529905ebde0e52e8a8da", - "0x00000000000000000000000000000000002d9f06ece033f0bdf74fcc5cb0c389", - "0x000000000000000000000000000000b61e2cc78f69c9d12b2cf873ce56460acb", - "0x00000000000000000000000000000000001ca91a6441e1d918a2f71760e88a10", - "0x000000000000000000000000000000b41933d9f85656709058f0fddcfd5be3e4", - "0x00000000000000000000000000000000002a9bc09dc9ec06eb6ee1ea51a5de24", - "0x000000000000000000000000000000cad3eaab5bbd5744461bcd5956fe88fa4d", - "0x00000000000000000000000000000000001f6b3741c7ba090902fabbe5a681e3", - "0x0000000000000000000000000000006dde40da2faf3d3a9b44d2950c474ccc09", - "0x0000000000000000000000000000000000301fea7d8a0eda5ae0bbf767fd6490", - "0x000000000000000000000000000000f9f66e197773756fd90d81d3bf34cbea82", - "0x00000000000000000000000000000000000105eaeaf72f2686b6317b7d55140f", - "0x0000000000000000000000000000008ea77bae71c047d062115720c184bdd536", - "0x000000000000000000000000000000000030109f001002799e16173f6ca1f7b0", + "0x0000000000000000000000000000002e88b07c39900db053525288bdd0087649", + "0x00000000000000000000000000000000002c91fb0fa57116d85d3b54dc09752e", + "0x000000000000000000000000000000681625d04478e9bb0d8df5cce6008e1619", + "0x00000000000000000000000000000000000d8fd47c8c674bf9617ebdf1a1e4de", + "0x000000000000000000000000000000c09f5d3c68276662a25264d9faa09f7044", + "0x0000000000000000000000000000000000028b206c82378aadd259f6e17aff3c", + "0x0000000000000000000000000000004adfd002b530937c0edf38143724296b33", + "0x00000000000000000000000000000000002c4c2dec1aa0870f5eeaed102cf646", + "0x000000000000000000000000000000ab390fbdd685003cbc55840dc738d8e121", + "0x00000000000000000000000000000000002b9b729e52762cd2bb308da719f441", + "0x0000000000000000000000000000007cf205debc88e55e72c98ca237ef150e72", + "0x0000000000000000000000000000000000152d1bce0e48e97c862ddba46add29", + "0x000000000000000000000000000000e3131a7139372c7eb2eca23de3f47d0c33", + "0x000000000000000000000000000000000028a80a4e7511effa79d787e810c1b4", + "0x00000000000000000000000000000067fcf34a8249031333aea9ea00df537c84", + "0x000000000000000000000000000000000027c37e0bde1d404d4cadd36ee73397", + "0x00000000000000000000000000000021a158647098c8ef0fcf1cef1b24580562", + "0x00000000000000000000000000000000000290e31a0dc3ff806ee24627b25b3e", + "0x0000000000000000000000000000000c65f48dc17b81091f651a76cd2dd1c549", + "0x0000000000000000000000000000000000085921054334ffbfebf7f9ca2fe087", + "0x000000000000000000000000000000c95767ada81b31a875536a52f516290cb1", + "0x000000000000000000000000000000000009f6f97c629f7e84bfcaea029c4a32", + "0x000000000000000000000000000000aa2e35ea449bc6f311a73ad2c58daf54bf", + "0x0000000000000000000000000000000000150ba12898f17fdb17aa90b8a883cb", + "0x000000000000000000000000000000e6a9379f531ea207de4c38b3eac969d590", + "0x0000000000000000000000000000000000168890ac957e785e5322018a09f155", + "0x000000000000000000000000000000dfc38022eaac25d496a4537759ce2bc920", + "0x00000000000000000000000000000000002bd0c4aa32c8a85d9b5200367521b5", + "0x000000000000000000000000000000b2cfe2df2eb3fdab69b8c67064c9307648", + "0x000000000000000000000000000000000023d849f1c8419d70fa64a7b14f7610", + "0x000000000000000000000000000000884fe3a5bad9833eb815e2dad0da817a76", + "0x000000000000000000000000000000000021a5d5714dfd3001b81a70a1a17a36", + "0x000000000000000000000000000000707871f735f5df51df8093713767018689", + "0x0000000000000000000000000000000000193c9f08ce38f54ed569b6b6524508", + "0x00000000000000000000000000000093290146c2a1ac981fba19d18005fbb8c0", + "0x000000000000000000000000000000000007feb7741e34138ebf29c3dea6aca9", + "0x000000000000000000000000000000d3fa087894cdee8ffdb3eb6937c81eed82", + "0x0000000000000000000000000000000000002462b1aa7ba47d66f30828f85917", + "0x0000000000000000000000000000005a781d6fe2fd37c3274417408c2c836fe9", + "0x000000000000000000000000000000000017471dd4611eadf1e120ac7bf4925f", + "0x00000000000000000000000000000040c885b6d1b4931ba871c32febab1bc2ae", + "0x000000000000000000000000000000000009279f81b4480f648011f8a8e75df5", + "0x000000000000000000000000000000274d67b2019f591efde99180250d823083", + "0x000000000000000000000000000000000013c1286a02903728aabaef340211b7", + "0x000000000000000000000000000000fced01401ea697655bf4356b375ad95331", + "0x00000000000000000000000000000000001a5d64ea44e27286097258794124f3", + "0x000000000000000000000000000000de11297e27ea9fb15b446b1c229d320a77", + "0x000000000000000000000000000000000014e7f0153b17386978128a3ddf6f94", + "0x000000000000000000000000000000977fa4ff9efb729e1dda4e8df44c19c654", + "0x0000000000000000000000000000000000026afd8abfffa0af13339b2dd9ebcd", + "0x000000000000000000000000000000376d7636eb91cac7729cd3436fc0a0e98b", + "0x00000000000000000000000000000000002c764b31b8e1490beadeb531342c4c", + "0x000000000000000000000000000000cd6cbc12ab4a5364047ad1b0eb1eb89a06", + "0x000000000000000000000000000000000009d767d1fe9b1c02a650d50695302a", + "0x0000000000000000000000000000002630f200d39316449c1dae8efaffe2e9c9", + "0x000000000000000000000000000000000021da5d1a8355409e97be9dca97b7ad", + "0x0000000000000000000000000000009c13455e19d631dd031866e45853aee7d6", + "0x00000000000000000000000000000000002556007af71bd8e8f7b5e296018425", + "0x000000000000000000000000000000d816550feccecc0b77b0246e1ef4b17e67", + "0x0000000000000000000000000000000000127fdfec7fe0af8feaa0d40d605b83", + "0x000000000000000000000000000000999afef5f6e19b24d40f6d2295dc3f7753", + "0x0000000000000000000000000000000000107ce64e10da0fce87441484f484f4", + "0x000000000000000000000000000000c6a93d2383719046f6807eb85cf819142f", + "0x00000000000000000000000000000000000241a3f1af4aa458ca0c726fc7369e", + "0x000000000000000000000000000000306dbb8f1335c94042b4a9b25ae9cba4b0", + "0x000000000000000000000000000000000011f7c1ef76746484fcf8e4d5486d2e", + "0x00000000000000000000000000000045741161deb82c52c3412420d8b6fd20de", + "0x000000000000000000000000000000000019158e6930bc25c153c79ede084462", + "0x0000000000000000000000000000003d3f9ce37a8f185e75ab6af7d95e133aa8", + "0x0000000000000000000000000000000000145d528b43cae46443256d547e66ec", + "0x000000000000000000000000000000050fa879e850ae0067b2dedc5c5340130b", + "0x00000000000000000000000000000000001b983d621ac7449a98c4eb9abdf5b1", + "0x0000000000000000000000000000008355a08cb9d97445bcf17f64c2c73d533f", + "0x00000000000000000000000000000000002dfedc8539fa8e1d4b92dd3c455a02", + "0x0000000000000000000000000000004dac0a3be1d7f571a7aeb4f73a13f57c3b", + "0x000000000000000000000000000000000024992878c4a7294e03206d9ddc0c8e", + "0x000000000000000000000000000000d96f1ae43437c649869fde5304983e61eb", + "0x00000000000000000000000000000000000a8b393b5babb5c17a5e03eb7ac9e0", + "0x0000000000000000000000000000005cfc4bee637f5d970b2c426d669b2fce0d", + "0x00000000000000000000000000000000002e4befb29a6e1af13a39f97cbc1f5b", + "0x000000000000000000000000000000af8ce756e2abe90f918dc1c4403aff30e5", + "0x0000000000000000000000000000000000242be5164d12064c51218b5ec75f98", + "0x000000000000000000000000000000775fd350dba37ad3c04ac7f883c9b28c36", + "0x000000000000000000000000000000000013f3645ecaa207a429df2c9b7832cb", + "0x000000000000000000000000000000950682eb60cb5455d12d47d478edcd8744", + "0x00000000000000000000000000000000002674dcc5c46aace2a7b24c9177bca4", + "0x0000000000000000000000000000009d0400d74c2810099803ce00e4d212e027", + "0x00000000000000000000000000000000002dd78ffbcabe324f8fdd974ba4592e", + "0x000000000000000000000000000000835d6524088c85a6229c253f19f9075a24", + "0x00000000000000000000000000000000000ea53cd2576f3ed59997b9c31ade62", + "0x000000000000000000000000000000b63021ec911d878a8808271f9fc354f6c1", + "0x0000000000000000000000000000000000013899f19981c306831c30f8be091f", + "0x000000000000000000000000000000e9ea0973de12fdbcf9692352b0bb9e126c", + "0x00000000000000000000000000000000000f480ce1fe1a5e6d79c1aea34ff6bd", + "0x000000000000000000000000000000377185add84afd6c2c81cd920469f4eed8", + "0x00000000000000000000000000000000000b30da5e57df9005bb26388bec1e13", + "0x00000000000000000000000000000016d15d01c4e568368a015a4a1bd827a3b9", + "0x0000000000000000000000000000000000181038d51220ac7f524520f4dd4e00", + "0x000000000000000000000000000000f69b5e222476cd81abc41a7e1c7dab2bc2", + "0x00000000000000000000000000000000001fb2cec72c2a711d3a7cd9da9ae57b", "0x0000000000000000000000000000000000000000000000000000000000000001", "0x0000000000000000000000000000000000000000000000000000000000000000", "0x0000000000000000000000000000000000000000000000000000000000000002", "0x0000000000000000000000000000000000000000000000000000000000000000", - "0x000000000000000000000000000000c4399412300f552e531a43c9bb0dfc3a8f", - "0x00000000000000000000000000000000001c4364fe54013c7a9417789acf42b5", - "0x000000000000000000000000000000d7e28a366b5eaad70d3e6b1bb60a4676c2", - "0x000000000000000000000000000000000015b93d2e985c7049ca42abf992b1bb" + "0x00000000000000000000000000000061f94ff6f3c3e4061669fe6eb6350ab79c", + "0x00000000000000000000000000000000001f527b05e40ccee325f3d78ea9f7b8", + "0x0000000000000000000000000000000397ad9195a5fc624b6993091b9e19b7df", + "0x00000000000000000000000000000000002cb7b807bfa80b4ee8793d4f5dc0fb" ] -hash = "0x21db42a495ccabeabfd3e3a392c895e961f000a51970873b32b491984951a1ae" +hash = "0x0ff94305291786724741b5d547c9a493c22d6fea10f5fc159d775ea1686f1b07" [inputs.previous_rollup_data.vk_witness] leaf_index = "0x000000000000000000000000000000000000000000000000000000000000000a" sibling_path = [ - "0x03f18045fbad3a8ef96390bf160a77fbc1cf068e21b1476cfc77bd8349ee8b2c", - "0x174fe81d15f597a70b4c8d24c4c7c0ba11b63ef2bf52681df10b3c024c67cf87", - "0x122c3693da0dab2793d8d190fcc701f66e0c468aa1b84a834cbf0e81abd203f4", - "0x2157aca3fe88ffe5ca534ce2e7f13a8441560ec9ac8dcafe25e583a52c6a849e", - "0x1269cc8f8216b2d60daca30e5e0ba1e1d11dfe89f0f0c2cadb113c30de181554", - "0x26b3cce275e6a21ac2049ab937390d4afb7793ec68d1d7bcddadfbfe45fbfb06" + "0x0cfcb4a0d155a1a674af56c85931c245d438484732564ac977da1c89ea05129a", + "0x0460943a3a4496d6b565bc4d642634f4f812920a4ae793212a65190f4549ff18", + "0x0686bc3f7e51871450701ee05fcfb55ae5946f5f2e77098101b8851c77a4c0d3", + "0x0e3b41ae0c61b2201c7ddad14a74a90a9e8447d5394e3487069a6b7bafe107af", + "0x0d8e4232c3e1214b1a72ee04016dd919308ecb6b01e871bdcdc36248ab044711", + "0x2fd02310a424f73ae3709cf4ff9d507e920407534ba3e965a5542a138b815675" ] [[inputs.previous_rollup_data]] [inputs.previous_rollup_data.block_root_or_block_merge_public_inputs] -previous_block_hash = "0x0e985f17b6197e3811560c29506b6fc05a7e0e3c985948f2c8dfa314ac47d123" -end_block_hash = "0x19ddd3dd2c7628e2eb6e0337f030e92b88607eaf8bf0e715247fed66a9cb7308" out_hash = "0x00db4f24d6eff7983ec163d02c230d6a44237feabd8a2da284edce08afc71435" -vk_tree_root = "0x22a749df2f64e23077f364a4efdd544e0a0666eb43bd1560f5a698b10997c43c" -protocol_contract_tree_root = "0x16862f3a312325ba6b37abe1073a51ffb333ee32fbaa437454dce33423766de6" +vk_tree_root = "0x035e62aad06a66ce8d2a9d112a620e2337018ff2c763061808a24ea0f220ffbc" +protocol_contract_tree_root = "0x071f2e01b58eff84ebe1608c9eccf21bf2d51ac74cac3816a3dee8372cdb0b7d" prover_id = "0x0000000000000000000000003c44cdddb6a900fa2b585dd299e03d12fa4293bc" [inputs.previous_rollup_data.block_root_or_block_merge_public_inputs.previous_archive] - root = "0x1f1bf0820bb2f2c54506f0a854e4ade0ff236d216ec2ae5c14ca5683cbbfb723" - next_available_leaf_index = "0x0000000000000000000000000000000000000000000000000000000000000008" + root = "0x1945c10a2f89ef5c07ce78f75ece0980a1fb9f72614ac5032e8e9e4a198ae864" + next_available_leaf_index = "0x000000000000000000000000000000000000000000000000000000000000000a" [inputs.previous_rollup_data.block_root_or_block_merge_public_inputs.new_archive] - root = "0x12f5c698e8699fb38f5a359e0e6a1735fc9f40978a1b9deaa9564d3d5b484311" - next_available_leaf_index = "0x0000000000000000000000000000000000000000000000000000000000000009" + root = "0x22b8bffe322430b84b71422d40fa3e95953186d197111355a8f19604965ef366" + next_available_leaf_index = "0x000000000000000000000000000000000000000000000000000000000000000b" [inputs.previous_rollup_data.block_root_or_block_merge_public_inputs.start_global_variables] chain_id = "0x0000000000000000000000000000000000000000000000000000000000007a69" - version = "0x0000000000000000000000000000000000000000000000000000000000000001" - block_number = "0x0000000000000000000000000000000000000000000000000000000000000008" - slot_number = "0x0000000000000000000000000000000000000000000000000000000000000013" - timestamp = "0x0000000000000000000000000000000000000000000000000000000067d9b798" + version = "0x00000000000000000000000000000000000000000000000000000000e6f03fcf" + block_number = "0x000000000000000000000000000000000000000000000000000000000000000a" + slot_number = "0x0000000000000000000000000000000000000000000000000000000000000023" + timestamp = "0x0000000000000000000000000000000000000000000000000000000067fa7628" [inputs.previous_rollup_data.block_root_or_block_merge_public_inputs.start_global_variables.coinbase] - inner = "0x000000000000000000000000a540911acb4195ad0bbfa2c10a46e3e54df4c649" + inner = "0x00000000000000000000000071d84878d343d87f145bfcc3af71b20b7430de57" [inputs.previous_rollup_data.block_root_or_block_merge_public_inputs.start_global_variables.fee_recipient] inner = "0x0000000000000000000000000000000000000000000000000000000000000000" [inputs.previous_rollup_data.block_root_or_block_merge_public_inputs.start_global_variables.gas_fees] fee_per_da_gas = "0x0000000000000000000000000000000000000000000000000000000000000000" - fee_per_l2_gas = "0x00000000000000000000000000000000000000000000000000000000000c5b70" + fee_per_l2_gas = "0x0000000000000000000000000000000000000000000000000000000000001694" [inputs.previous_rollup_data.block_root_or_block_merge_public_inputs.end_global_variables] chain_id = "0x0000000000000000000000000000000000000000000000000000000000007a69" - version = "0x0000000000000000000000000000000000000000000000000000000000000001" - block_number = "0x0000000000000000000000000000000000000000000000000000000000000008" - slot_number = "0x0000000000000000000000000000000000000000000000000000000000000013" - timestamp = "0x0000000000000000000000000000000000000000000000000000000067d9b798" + version = "0x00000000000000000000000000000000000000000000000000000000e6f03fcf" + block_number = "0x000000000000000000000000000000000000000000000000000000000000000a" + slot_number = "0x0000000000000000000000000000000000000000000000000000000000000023" + timestamp = "0x0000000000000000000000000000000000000000000000000000000067fa7628" [inputs.previous_rollup_data.block_root_or_block_merge_public_inputs.end_global_variables.coinbase] - inner = "0x000000000000000000000000a540911acb4195ad0bbfa2c10a46e3e54df4c649" + inner = "0x00000000000000000000000071d84878d343d87f145bfcc3af71b20b7430de57" [inputs.previous_rollup_data.block_root_or_block_merge_public_inputs.end_global_variables.fee_recipient] inner = "0x0000000000000000000000000000000000000000000000000000000000000000" [inputs.previous_rollup_data.block_root_or_block_merge_public_inputs.end_global_variables.gas_fees] fee_per_da_gas = "0x0000000000000000000000000000000000000000000000000000000000000000" - fee_per_l2_gas = "0x00000000000000000000000000000000000000000000000000000000000c5b70" + fee_per_l2_gas = "0x0000000000000000000000000000000000000000000000000000000000001694" [[inputs.previous_rollup_data.block_root_or_block_merge_public_inputs.fees]] - value = "0x0000000000000000000000000000000000000000000000000000001af264fc00" + value = "0x000000000000000000000000000000000000000000000000000000002fb4e9dc" [inputs.previous_rollup_data.block_root_or_block_merge_public_inputs.fees.recipient] - inner = "0x000000000000000000000000a540911acb4195ad0bbfa2c10a46e3e54df4c649" + inner = "0x00000000000000000000000071d84878d343d87f145bfcc3af71b20b7430de57" [[inputs.previous_rollup_data.block_root_or_block_merge_public_inputs.fees]] value = "0x0000000000000000000000000000000000000000000000000000000000000000" @@ -3724,19 +3720,19 @@ prover_id = "0x0000000000000000000000003c44cdddb6a900fa2b585dd299e03d12fa4293bc" [[inputs.previous_rollup_data.block_root_or_block_merge_public_inputs.blob_public_inputs]] [[inputs.previous_rollup_data.block_root_or_block_merge_public_inputs.blob_public_inputs.inner]] -z = "0x2940d32efc46685132f8412a199667db17267bdf2fa0de6610f1f3c424f29438" +z = "0x12d5550ea20cd557385e2a367e1dcf900bc4566cd9954f78a6b1027171b59928" [inputs.previous_rollup_data.block_root_or_block_merge_public_inputs.blob_public_inputs.inner.y] limbs = [ - "0xce384c8b5379c951a714bd57bb2309", - "0x2cca8fe8488c8ce9282322b4ef9bbf", - "0x2ed2" + "0xf367a3fb102012077f1f44e4b091b6", + "0xb06165a82f7b71a6a6b100ad8201cc", + "0x5110" ] [inputs.previous_rollup_data.block_root_or_block_merge_public_inputs.blob_public_inputs.inner.kzg_commitment] inner = [ - "0x00aeb6e13bb3f3f4e2f852c70c55c2eaa21bde055664ec21c1cefbcf73173b1a", - "0x0000000000000000000000000000008545a84ab1bd41d1f4b0cbcbf4f9333079" + "0x00b9945955a60965735c43325b3513f4694b4a49461ac2d632318bf8b163d339", + "0x000000000000000000000000000000ebf99bb529fdf3b5589dee4aaeed3a81d9" ] [[inputs.previous_rollup_data.block_root_or_block_merge_public_inputs.blob_public_inputs.inner]] @@ -6616,9 +6612,11 @@ fields = [ [inputs.previous_rollup_data.vk] key = [ "0x0000000000000000000000000000000000000000000000000000000000800000", - "0x00000000000000000000000000000000000000000000000000000000000003f6", + "0x00000000000000000000000000000000000000000000000000000000000003f4", "0x0000000000000000000000000000000000000000000000000000000000000001", "0x0000000000000000000000000000000000000000000000000000000000000001", + "0x00000000000000000000000000000000000000000000000000000000000003da", + "0x00000000000000000000000000000000000000000000000000000000000003db", "0x00000000000000000000000000000000000000000000000000000000000003dc", "0x00000000000000000000000000000000000000000000000000000000000003dd", "0x00000000000000000000000000000000000000000000000000000000000003de", @@ -6633,9 +6631,9 @@ key = [ "0x00000000000000000000000000000000000000000000000000000000000003e7", "0x00000000000000000000000000000000000000000000000000000000000003e8", "0x00000000000000000000000000000000000000000000000000000000000003e9", + "0x0000000000000000000000000000000000000000000000000000000000000001", "0x00000000000000000000000000000000000000000000000000000000000003ea", "0x00000000000000000000000000000000000000000000000000000000000003eb", - "0x0000000000000000000000000000000000000000000000000000000000000001", "0x00000000000000000000000000000000000000000000000000000000000003ec", "0x00000000000000000000000000000000000000000000000000000000000003ed", "0x00000000000000000000000000000000000000000000000000000000000003ee", @@ -6644,126 +6642,124 @@ key = [ "0x00000000000000000000000000000000000000000000000000000000000003f1", "0x00000000000000000000000000000000000000000000000000000000000003f2", "0x00000000000000000000000000000000000000000000000000000000000003f3", - "0x00000000000000000000000000000000000000000000000000000000000003f4", - "0x00000000000000000000000000000000000000000000000000000000000003f5", - "0x0000000000000000000000000000002296f66ae14aedc5759fc6a03e07d71b56", - "0x00000000000000000000000000000000001b286c632ae852fe6a1a38d560cf22", - "0x0000000000000000000000000000008cc6bfe7b17976c911226644c520ad47aa", - "0x000000000000000000000000000000000028213fc9beecb572f0e0224ad5b53e", - "0x0000000000000000000000000000006a51baa8fc6ad29666385374c9d01e14b4", - "0x00000000000000000000000000000000000a09f00767ce57ee331fbba6aff41a", - "0x000000000000000000000000000000dc9ececdd51415c3c2411d0287013927a8", - "0x0000000000000000000000000000000000191015262fadfc78d7eb57d3b61907", - "0x00000000000000000000000000000025dbe76b43df595e4098b5bc55464ce504", - "0x0000000000000000000000000000000000283720b57c4e687d2e6794d03b7921", - "0x0000000000000000000000000000004cf401faaee78ee28ddbbd8534576d90c8", - "0x0000000000000000000000000000000000258867f210d1bce73654e6246ea1f7", - "0x000000000000000000000000000000560bc4e5ca9ab167ed25381eb5445d7785", - "0x00000000000000000000000000000000001e76d9f1d21d3d2a05f05a7759a209", - "0x0000000000000000000000000000001b9e76f16b78f99799c8c30fed55e6aafe", - "0x000000000000000000000000000000000010821b96cd7231692ae38ffa6c75e3", - "0x000000000000000000000000000000c39f694a867dc54e08f752af17720f9731", - "0x0000000000000000000000000000000000085a66fad77f8f080cea0ea6f2d877", - "0x00000000000000000000000000000032792a5a13661d70e4d3cc9ffeaf9e8e51", - "0x000000000000000000000000000000000019386b60889f86ce3ed60eb1deb972", - "0x00000000000000000000000000000039bf2ac8e58a684822bdb28e64f5d447ea", - "0x00000000000000000000000000000000001e1e6528da25261b83c5c1b97e17f2", - "0x00000000000000000000000000000036a697253702f209573e8e4aa07b3f768d", - "0x000000000000000000000000000000000015ef4a32aabfa1324b64600469e550", - "0x000000000000000000000000000000a4184db5c37fb1cac638cfa9976d4e6111", - "0x000000000000000000000000000000000013cba8a2ad55e65f6de77a883b4bfb", - "0x0000000000000000000000000000005508c3c87897b3c27f01e15d39454d572d", - "0x00000000000000000000000000000000000c03afe0c334e840f52decc868ce1f", - "0x000000000000000000000000000000455b195102d7353a3fb23da43810e5ae21", - "0x00000000000000000000000000000000001cb4edba730c8cf9ee04b1f9edf120", - "0x000000000000000000000000000000b966ba4cbf7c4d118129487fb8c08cc14d", - "0x000000000000000000000000000000000012da714cc8026e96ed853d05d3507c", - "0x000000000000000000000000000000b27324b1368a05d57b89706bb24b993fe8", - "0x0000000000000000000000000000000000158641a58e8bc465c7892de88ec199", - "0x0000000000000000000000000000004eed862d3c65844a26df89cb3167890068", - "0x0000000000000000000000000000000000087d16e1055b205b4b3183da210b18", - "0x00000000000000000000000000000000d9a1521a4f6cf039daa17d4d2d545a38", - "0x000000000000000000000000000000000008feedf003082298b6c76d5cdfbbac", - "0x0000000000000000000000000000009f27caf81d0ff0cbb45c2ffe0237d22881", - "0x00000000000000000000000000000000000d0984afb786569e955e423d835650", - "0x00000000000000000000000000000019350ad104d95d9bfcfaa3f2f9e982a51a", - "0x000000000000000000000000000000000014e51c916bd9ca2212a9d546c671d3", - "0x00000000000000000000000000000035717849aad1f54f4ab314480c6b73d8d8", - "0x0000000000000000000000000000000000144787957627e41bee745c95f4877b", - "0x0000000000000000000000000000008966bfa2ae40bb451a7d6ee50a0027b458", - "0x0000000000000000000000000000000000112e02ca3a469461c0be77cd1dbcbd", - "0x00000000000000000000000000000037b7f109ab53c9a28fde49687938c0544f", - "0x0000000000000000000000000000000000224ada7e8adf466464c1f086da930b", - "0x000000000000000000000000000000a1f506f26024c28a511a6ecc35790112c5", - "0x00000000000000000000000000000000002e94fc9bc14c8892bc91f1541bdbf5", - "0x000000000000000000000000000000708e33116ea6098bd2148f0a639f333daf", - "0x00000000000000000000000000000000002eb9ddc6c5ca3da77f9cd4ecf74217", - "0x00000000000000000000000000000022749b3c12d416c28db415b655ad80e6cf", - "0x00000000000000000000000000000000002fa03f7620ef176eba913e512c356d", - "0x000000000000000000000000000000d4497713002cd0fb2c9fd0631d334be8ea", - "0x0000000000000000000000000000000000055fe556defc1ad9c946f46209d979", - "0x000000000000000000000000000000795d40b755b7b1c806cb5ad291d3aa93e1", - "0x00000000000000000000000000000000000f04c8efb24f803f86f7c54d4198ff", - "0x000000000000000000000000000000f50124578f2bafdcb645ebcfb95415954e", - "0x0000000000000000000000000000000000197e47db4c418abf05573fef2805b5", - "0x00000000000000000000000000000086a996769076d3db708ee651ab01ef7323", - "0x00000000000000000000000000000000000081e9a73bc9489d8ea339295494a6", - "0x0000000000000000000000000000000626976aebffb632a14ebce38ea014ae9d", - "0x00000000000000000000000000000000001e8a89b87f113b5cbb23edd72c986f", - "0x0000000000000000000000000000005c9edeed8ea6c9041e6c406b475c2437d8", - "0x000000000000000000000000000000000026e95c9e1e8a1f13d2121e62abc6f6", - "0x000000000000000000000000000000167a06198b77d7041cb0ad0c02d65675db", - "0x00000000000000000000000000000000001a27f1c730380eac3895fd5920bfdc", - "0x0000000000000000000000000000005f6f32b1378fd9f5bbfc29b72f698d91f8", - "0x000000000000000000000000000000000012b62eeb5b738c5a3b4e2f1904cce9", - "0x000000000000000000000000000000d7c68ff5341e7cf5141bfafc7f5938b1fd", - "0x000000000000000000000000000000000011752f79875e1148b94a7489e8a577", - "0x000000000000000000000000000000e8b1e4c26032b3f183006f3c1632aca4e1", - "0x000000000000000000000000000000000019e08f66abd14fa4883de5ff5ae8f6", - "0x00000000000000000000000000000024b1e5c275a513fb1f5d4b45951e1d1fa5", - "0x00000000000000000000000000000000002ef91843e2d331a55c36e49b70a521", - "0x0000000000000000000000000000007278248c8aa3fb976e99569ccc71514712", - "0x00000000000000000000000000000000001f104a971d97b4a36e265261cab334", - "0x00000000000000000000000000000029c16552d0ccf09785dcfcf2c60e6e99d5", - "0x000000000000000000000000000000000006b0191434323c427f13c54fd46d1f", - "0x000000000000000000000000000000723363d6394bb77d48e6cbbd84ac426848", - "0x00000000000000000000000000000000002b42b60a6a4f764321d115c29f4928", - "0x000000000000000000000000000000169de5cc710669f48d68769e579ccdbe57", - "0x00000000000000000000000000000000000d70872e1e171d39e113c72d209816", - "0x000000000000000000000000000000ed26fb12986cd667fcba42365ddbb9b6ad", - "0x0000000000000000000000000000000000167ef11820be80d81873d2145548c3", - "0x0000000000000000000000000000004d46f904fbe8737686a3971c16019affc0", - "0x000000000000000000000000000000000018586da611d78861cf143842e53583", - "0x000000000000000000000000000000e8bd7cd4fb9d35d9499aaf407b7abdfac7", - "0x0000000000000000000000000000000000065445913ab6f515d960c857708b11", - "0x000000000000000000000000000000f33908cfd5ee379f8aca8f4d367d8c4c0e", - "0x00000000000000000000000000000000002b1a955d0dca720f4626454b06b460", - "0x000000000000000000000000000000c764e67ad851f627d321ef5002b8d90fdd", - "0x00000000000000000000000000000000002107cb9b5d8aa44c72bf36c82e09f7", - "0x0000000000000000000000000000009e4c78efb4910ce95b5318a84ee08417e3", - "0x0000000000000000000000000000000000302e6831d6322b99634bd4923ac878", - "0x000000000000000000000000000000e8283266542c57c6c397d31d769e7307d4", - "0x000000000000000000000000000000000005b2c48b0a73812b73058bc562308f", - "0x000000000000000000000000000000e03aa6800d89ad6f05b4f5514f9800de48", - "0x000000000000000000000000000000000021715518aec2ecbec9ccecc876b383", + "0x000000000000000000000000000000442bef24ab62b733a9d19ec502b2a145f6", + "0x00000000000000000000000000000000000a46e528bc74862fbec7bc0217b4d3", + "0x000000000000000000000000000000615a1fe6308bfde65106ce27af7158067c", + "0x0000000000000000000000000000000000179c3519c7580903db2a4416aea114", + "0x0000000000000000000000000000001430e2e89014d6ab37218bd71111413a2f", + "0x0000000000000000000000000000000000087c661dc98d36faf08ea434081c72", + "0x000000000000000000000000000000d16c5a141756c7fb3c34e5fd40cf74ddc0", + "0x000000000000000000000000000000000006e49d87c29bf4ca98cfe3fda58043", + "0x000000000000000000000000000000b061ddfeeaf744691f5c94370efbe73ad7", + "0x000000000000000000000000000000000006d5b7f3dbde6ebdfe6c0261cf430d", + "0x0000000000000000000000000000008217848c2935b4a160186bfac1e7cd55fc", + "0x000000000000000000000000000000000018db91aa76e69e9c5c45f8adad2ae6", + "0x0000000000000000000000000000005a0d56cd7483419436c20ba66ea1e58f0e", + "0x00000000000000000000000000000000000a0bb5e5c8c0c0c4120b7c8d03dd7d", + "0x0000000000000000000000000000008b3736493a8e0da318a3a7b26719521496", + "0x000000000000000000000000000000000000eec4fab32d66094a5ad9636a32ad", + "0x000000000000000000000000000000a74226a20b80ae3cf2ac27d5b9616afadc", + "0x000000000000000000000000000000000005e5dce50703b5bb1b960deeb211f0", + "0x000000000000000000000000000000666cac565959106941a1bfaf04fd5dfb50", + "0x00000000000000000000000000000000000cd97e314a423ca2d842d3e3bd96f5", + "0x000000000000000000000000000000ab3ecc343ccfdabd6aba0c4603697fb372", + "0x00000000000000000000000000000000002bd6aa6ebe9340d4576430eb0fa5c7", + "0x000000000000000000000000000000cda7a9841f4f03733ecd54f76c126b441b", + "0x00000000000000000000000000000000000489c8f7fe2cd6a9942234a360fb83", + "0x000000000000000000000000000000e22cf3743e5cb7f3a371bafa34a51c6f3e", + "0x0000000000000000000000000000000000174619de5df7d784e3601e194d981a", + "0x000000000000000000000000000000911c4ac4eb3c690d3b6aaab8591d96837b", + "0x00000000000000000000000000000000002272ec1535e8941efb0182efe0574e", + "0x000000000000000000000000000000c5a1ff18feb865801149fe5ba3fe5ff398", + "0x0000000000000000000000000000000000238b6f1ed917423cc8d13bb3942776", + "0x0000000000000000000000000000001163ab1089752157f9adddca868921cda0", + "0x0000000000000000000000000000000000202087b1b07d2e5bdd8179d89d3928", + "0x000000000000000000000000000000782e56daa57076bdd15274b60af1108a29", + "0x00000000000000000000000000000000002b696051f64609b1ed85d5a20f0203", + "0x0000000000000000000000000000001e3ac9aa4a43ed94cfbace41ffc1d1527b", + "0x00000000000000000000000000000000000e0ac759c5581770f5553bbdb8a1d0", + "0x000000000000000000000000000000ff769f14b721b47d8526ab7d86599092b4", + "0x00000000000000000000000000000000000b101d1258636e98860ad7bcf0f948", + "0x000000000000000000000000000000ddc038c7c489c8d32c11664d61c504f157", + "0x0000000000000000000000000000000000120257144cfb9f9955e8b55ce03c0a", + "0x0000000000000000000000000000004fdcc4727252420df8f8634e221a823317", + "0x00000000000000000000000000000000001efdaaa8fe8b80dbc1ee805987e96a", + "0x00000000000000000000000000000007e7a572ebf5f0ccd0baad6f9a04037aa0", + "0x00000000000000000000000000000000002d9c56cd9101128a8fa44ee3e98cd1", + "0x00000000000000000000000000000026abd188102f372c32141dcfc30a5eeeab", + "0x000000000000000000000000000000000004af2334ed27d9f6cbef78b00bc251", + "0x0000000000000000000000000000007a92e34656625ab592e68852db5b582eca", + "0x00000000000000000000000000000000002ec414e2a9a615a6d564e00bccc1ca", + "0x0000000000000000000000000000009d34d5ddb73a979086781dec08e9b6c10f", + "0x00000000000000000000000000000000000df6138f76871b02acc8fea83366f2", + "0x000000000000000000000000000000cfcaac4925f3438abb15ae3aa240637c5b", + "0x00000000000000000000000000000000000c8dfdf3530071151b311cb81d2002", + "0x000000000000000000000000000000c53213aac3415ff770d65c9285f6c8982c", + "0x00000000000000000000000000000000000806b80fa11da8b1e35214b79096a2", + "0x000000000000000000000000000000c3c1d229c9a87d84aae1baeae5f5ee36b9", + "0x00000000000000000000000000000000000bcb5557807b5390c31ca0363ec757", + "0x000000000000000000000000000000f9616f8f5ed7889275ebaa52baf98ae334", + "0x000000000000000000000000000000000011df12a6a4fd67927481b7b7716626", + "0x000000000000000000000000000000d97da1c3449295943398cdd4bca16bba26", + "0x00000000000000000000000000000000002e6ee76deffa224e2c3f993dcd9771", + "0x00000000000000000000000000000012dafa686d42d95a98ec5061411e7bd38e", + "0x00000000000000000000000000000000001c4babf4bdc5eb61df8c295652b278", + "0x0000000000000000000000000000000d031e7ed4d2f350bad1e4c8568d4b2827", + "0x000000000000000000000000000000000017b3d219385f339952e046f9b42b83", + "0x000000000000000000000000000000c6be5d598dda7e0fe2f211e4158076d87d", + "0x000000000000000000000000000000000023150d7ac7a1d53f17f5b8fdc99fa4", + "0x0000000000000000000000000000009d9f8d95805e33c555027804b7059992dc", + "0x00000000000000000000000000000000000321955d48017c8ad7537f24f48112", + "0x0000000000000000000000000000005541e83d3bd4e2f61c3ad9baaa534d4351", + "0x00000000000000000000000000000000002f1418fb75fd8aa52d66751b5c11ee", + "0x000000000000000000000000000000df6a8c28a88b094c5cdfa16af32c6cb079", + "0x00000000000000000000000000000000002a9cc3fb060383a2e7c307c12db2ce", + "0x000000000000000000000000000000680732ccf1aa9d35c3e42ffd1535fd23f6", + "0x000000000000000000000000000000000016a0d1305ae35509dcbbc8e4e9c157", + "0x000000000000000000000000000000824dd93a2c3f04ff59aaa4b06b87582901", + "0x00000000000000000000000000000000001740a1f547abdab4fed80d3e40d596", + "0x00000000000000000000000000000029b1b662270ffb2ed77b109a933aa3fc91", + "0x000000000000000000000000000000000017df3415ed213ce2a33a2cae2baa6b", + "0x00000000000000000000000000000000e1c725f0adc3c52b6625818037670f4c", + "0x00000000000000000000000000000000002d018f8e7f7111194ebbb6ce817b95", + "0x0000000000000000000000000000008de2fbc92a78a844ac4011de1b77ae1e71", + "0x000000000000000000000000000000000005cf426665b3b5a02ba427a13bf9e0", + "0x00000000000000000000000000000027dbef04c625d0dc8de1dc8a4e36dec995", + "0x0000000000000000000000000000000000191ca2568697d7b034cc94dedb96f2", + "0x00000000000000000000000000000050d1b6dfaff2d2c5abe4ed8c56cc176dc5", + "0x000000000000000000000000000000000025ff411db197a1f181b2966f397e86", + "0x000000000000000000000000000000e2e587d24b0ad383cfd47adc734958a6ef", + "0x000000000000000000000000000000000007ba08b5e67c187210ed06db4bf394", + "0x000000000000000000000000000000620e9b3d19c8cdff7e3a31fa3fc0c168dc", + "0x0000000000000000000000000000000000010aedec6b4712a533b6efea7019d1", + "0x00000000000000000000000000000063cde6622d653dbd3321a6cfc6a2d3d6c5", + "0x0000000000000000000000000000000000008438b4884539fa320e9323d1f484", + "0x00000000000000000000000000000026a3b7eafa0d91361a86c3901078392db1", + "0x00000000000000000000000000000000001ef0e855b11bb37d7a306198d1d6af", + "0x0000000000000000000000000000006fc7532a51760b09301fc1d0f165815d21", + "0x00000000000000000000000000000000002711b761e5f73eace7dd8c66c0c711", + "0x000000000000000000000000000000afdfcd94b14289ae8727001d12b2e35dac", + "0x0000000000000000000000000000000000136609fbf4de871dc22fb27033dfab", + "0x0000000000000000000000000000002cd4d9cfe09a023e3fb6fd74baf2689b82", + "0x00000000000000000000000000000000000c9054a9084deaa4ce84c4673a73d3", "0x0000000000000000000000000000000000000000000000000000000000000001", "0x0000000000000000000000000000000000000000000000000000000000000000", "0x0000000000000000000000000000000000000000000000000000000000000002", "0x0000000000000000000000000000000000000000000000000000000000000000", - "0x00000000000000000000000000000047b5f85de27f87c546367805131095a6d6", - "0x000000000000000000000000000000000015a7ae35d8169b5bb4dd835d08b1cd", - "0x0000000000000000000000000000000ab89b238ecefb725932392b3b87099da1", - "0x00000000000000000000000000000000001e29597c682acb66ee8316e5ed8c5e" + "0x000000000000000000000000000000272b1767f4b9defe388d67d702bdf714f3", + "0x00000000000000000000000000000000001180a8082f2a3bcff669f663945bc6", + "0x0000000000000000000000000000008fd7f7618b423e84e286fbca9953198008", + "0x00000000000000000000000000000000001a43dbf314bd3473815e1acb29664a" ] -hash = "0x0e358a0e50a175ef12e556041257905cd7092d8ee0b4e31c248f8f615fa84a2c" +hash = "0x015f0e9388f82128c78a809364d65226851f18932c67d9eeb95801be8617aafe" [inputs.previous_rollup_data.vk_witness] leaf_index = "0x0000000000000000000000000000000000000000000000000000000000000009" sibling_path = [ - "0x0734334af3337999154142930427bba7771f59d6b0fee2884528a6a73095cfb7", - "0x15f46210f6c2964e3ee0311d689c60d30a77dd0ac226821c6a7eb9c1a8771304", - "0x122c3693da0dab2793d8d190fcc701f66e0c468aa1b84a834cbf0e81abd203f4", - "0x2157aca3fe88ffe5ca534ce2e7f13a8441560ec9ac8dcafe25e583a52c6a849e", - "0x1269cc8f8216b2d60daca30e5e0ba1e1d11dfe89f0f0c2cadb113c30de181554", - "0x26b3cce275e6a21ac2049ab937390d4afb7793ec68d1d7bcddadfbfe45fbfb06" + "0x180c796146fafa025ed66fd72bec570028abe91c7ad734541db133c9f4071ea9", + "0x152a39611e52a1cde786d190e047b17108ec6d067bac30a37fe60bf5019b5e56", + "0x0686bc3f7e51871450701ee05fcfb55ae5946f5f2e77098101b8851c77a4c0d3", + "0x0e3b41ae0c61b2201c7ddad14a74a90a9e8447d5394e3487069a6b7bafe107af", + "0x0d8e4232c3e1214b1a72ee04016dd919308ecb6b01e871bdcdc36248ab044711", + "0x2fd02310a424f73ae3709cf4ff9d507e920407534ba3e965a5542a138b815675" ] diff --git a/noir-projects/noir-protocol-circuits/crates/rollup-block-root/Prover.toml b/noir-projects/noir-protocol-circuits/crates/rollup-block-root/Prover.toml index 58859e0094a3..25d5d5a078ae 100644 --- a/noir-projects/noir-protocol-circuits/crates/rollup-block-root/Prover.toml +++ b/noir-projects/noir-protocol-circuits/crates/rollup-block-root/Prover.toml @@ -3,56 +3,56 @@ rollup_type = "0x0000000000000000000000000000000000000000000000000000000000000001" num_txs = "0x0000000000000000000000000000000000000000000000000000000000000002" out_hash = "0x00f5a5fd42d16a20302798ef6ed309979b43003d2320d9f0e8ea9831a92759fb" -accumulated_fees = "0x000000000000000000000000000000000000000000000000000000175cdfc000" -accumulated_mana_used = "0x000000000000000000000000000000000000000000000000000000000001e400" +accumulated_fees = "0x0000000000000000000000000000000000000000000000000000000013d176a4" +accumulated_mana_used = "0x000000000000000000000000000000000000000000000000000000000000e0b5" [inputs.previous_rollup_data.base_or_merge_rollup_public_inputs.constants] - vk_tree_root = "0x22a749df2f64e23077f364a4efdd544e0a0666eb43bd1560f5a698b10997c43c" - protocol_contract_tree_root = "0x16862f3a312325ba6b37abe1073a51ffb333ee32fbaa437454dce33423766de6" + vk_tree_root = "0x035e62aad06a66ce8d2a9d112a620e2337018ff2c763061808a24ea0f220ffbc" + protocol_contract_tree_root = "0x071f2e01b58eff84ebe1608c9eccf21bf2d51ac74cac3816a3dee8372cdb0b7d" [inputs.previous_rollup_data.base_or_merge_rollup_public_inputs.constants.last_archive] - root = "0x1f1bf0820bb2f2c54506f0a854e4ade0ff236d216ec2ae5c14ca5683cbbfb723" - next_available_leaf_index = "0x0000000000000000000000000000000000000000000000000000000000000008" + root = "0x1945c10a2f89ef5c07ce78f75ece0980a1fb9f72614ac5032e8e9e4a198ae864" + next_available_leaf_index = "0x000000000000000000000000000000000000000000000000000000000000000a" [inputs.previous_rollup_data.base_or_merge_rollup_public_inputs.constants.global_variables] chain_id = "0x0000000000000000000000000000000000000000000000000000000000007a69" - version = "0x0000000000000000000000000000000000000000000000000000000000000001" - block_number = "0x0000000000000000000000000000000000000000000000000000000000000008" - slot_number = "0x0000000000000000000000000000000000000000000000000000000000000013" - timestamp = "0x0000000000000000000000000000000000000000000000000000000067d9b798" + version = "0x00000000000000000000000000000000000000000000000000000000e6f03fcf" + block_number = "0x000000000000000000000000000000000000000000000000000000000000000a" + slot_number = "0x0000000000000000000000000000000000000000000000000000000000000023" + timestamp = "0x0000000000000000000000000000000000000000000000000000000067fa7628" [inputs.previous_rollup_data.base_or_merge_rollup_public_inputs.constants.global_variables.coinbase] - inner = "0x000000000000000000000000a540911acb4195ad0bbfa2c10a46e3e54df4c649" + inner = "0x00000000000000000000000071d84878d343d87f145bfcc3af71b20b7430de57" [inputs.previous_rollup_data.base_or_merge_rollup_public_inputs.constants.global_variables.fee_recipient] inner = "0x0000000000000000000000000000000000000000000000000000000000000000" [inputs.previous_rollup_data.base_or_merge_rollup_public_inputs.constants.global_variables.gas_fees] fee_per_da_gas = "0x0000000000000000000000000000000000000000000000000000000000000000" - fee_per_l2_gas = "0x00000000000000000000000000000000000000000000000000000000000c5b70" + fee_per_l2_gas = "0x0000000000000000000000000000000000000000000000000000000000001694" [inputs.previous_rollup_data.base_or_merge_rollup_public_inputs.start.note_hash_tree] -root = "0x226de9094f6d24d238e95ffd8405b135f935c219ab03521be272b50dbee84657" -next_available_leaf_index = "0x00000000000000000000000000000000000000000000000000000000000001c0" +root = "0x086fb1567f928f1f3625c4ddea1273e8212026271096da1c9dc7b122ca0ab079" +next_available_leaf_index = "0x0000000000000000000000000000000000000000000000000000000000000240" [inputs.previous_rollup_data.base_or_merge_rollup_public_inputs.start.nullifier_tree] -root = "0x11acbe70b9d65b56301ecb1c77460af1fea146c673a9be1db8e49734ebb2d226" -next_available_leaf_index = "0x0000000000000000000000000000000000000000000000000000000000000240" +root = "0x15d14f0b89b26d6c6631958654e179ed799aecbefacaf33ea8576b7065e74a65" +next_available_leaf_index = "0x00000000000000000000000000000000000000000000000000000000000002c0" [inputs.previous_rollup_data.base_or_merge_rollup_public_inputs.start.public_data_tree] -root = "0x26f178b00982e1a0a98d504b52a5bf223133a9b49d72fbeee23777a4a99ebea6" -next_available_leaf_index = "0x000000000000000000000000000000000000000000000000000000000000008e" +root = "0x143d98e440768449167bec8740f2677ec3f463b9adb382bf39fe7d5ac56649b7" +next_available_leaf_index = "0x000000000000000000000000000000000000000000000000000000000000008f" [inputs.previous_rollup_data.base_or_merge_rollup_public_inputs.end.note_hash_tree] -root = "0x226de9094f6d24d238e95ffd8405b135f935c219ab03521be272b50dbee84657" -next_available_leaf_index = "0x0000000000000000000000000000000000000000000000000000000000000240" +root = "0x1398795b2de10a2df565c5d744c062a7764431138af35b64de824f815e65cc02" +next_available_leaf_index = "0x00000000000000000000000000000000000000000000000000000000000002c0" [inputs.previous_rollup_data.base_or_merge_rollup_public_inputs.end.nullifier_tree] -root = "0x17ec6da2c9c190417a4b66dc3814655edfd6dc739d451885751497a960f39ba9" -next_available_leaf_index = "0x00000000000000000000000000000000000000000000000000000000000002c0" +root = "0x1aaa95244aa985292304f13c4e6c0ae390de7d670c751abd633693d3b6dd9096" +next_available_leaf_index = "0x0000000000000000000000000000000000000000000000000000000000000340" [inputs.previous_rollup_data.base_or_merge_rollup_public_inputs.end.public_data_tree] -root = "0x05b98fcb0ee88c15f73c9637c817641a1807e3919e8a20b0e830b1d2bedd2a8a" +root = "0x277d85cfa877e3a0e65a886d4f2e5f234c897356b2f1aab0c2edea64bde815da" next_available_leaf_index = "0x000000000000000000000000000000000000000000000000000000000000008f" [inputs.previous_rollup_data.base_or_merge_rollup_public_inputs.start_sponge_blob] @@ -75,22 +75,22 @@ next_available_leaf_index = "0x0000000000000000000000000000000000000000000000000 squeeze_mode = false [inputs.previous_rollup_data.base_or_merge_rollup_public_inputs.end_sponge_blob] - fields = "0x0000000000000000000000000000000000000000000000000000000000000016" + fields = "0x0000000000000000000000000000000000000000000000000000000000000050" expected_fields = "0x000000000000000000000000000000000000000000000000000000000000005c" [inputs.previous_rollup_data.base_or_merge_rollup_public_inputs.end_sponge_blob.sponge] cache = [ - "0x00000000000000000000000000000000000000000000021e19e0c54ddeac16cc", - "0x00000000000000000000000000000000000000000000000000000000000003e8", - "0x10bd5eb801c0a60ecde3a0f7b44428535c228e6c67894e5baaa9c85394bbacde" + "0x001b13076c419aeabb9bff90fc4e44cb6069901afc28652a65d88366d9fd1fe9", + "0x00d65fea12cae6dc51459ad77c86693405ea67d3a5d4d36c9b6d9c14a8e0524e", + "0x0051167a7afec0799f1645606c7d6a93644b2edc204b1dc5944b5160c61c59b9" ] state = [ - "0x188bcbe82773b5140194a90b295d6f599e9075c5b371932d401630ea5e570d6b", - "0x0a52b123e11a4e2a83b925a9980a31d877e8975a910fdf40083ef2de844fbd15", - "0x2dac086843f6bbea2b52ead6612d31ea3f905d4d8c5d088a0ab0d467e6fe8b26", - "0x246432acc9bb81413e65b66bd53756f64b680e4c1b0e35d114ebdf38c40ead24" + "0x29df41dd219269f8eb5f00f0f35b3b6b3d54311c748a4ad3411a6a9573bcae1f", + "0x18ca258955d21b5dd1c79ba869e3f9627a61978473caa30cc89c516de4679a98", + "0x2858464148171a5b8dbfed071b78e5123d5edde335d304bab87508141b0c1e12", + "0x05a712cea2a332ac66629e5a5365f392b44023f135a91dd4693abb0e4f947632" ] - cache_size = "0x0000000000000000000000000000000000000000000000000000000000000001" + cache_size = "0x0000000000000000000000000000000000000000000000000000000000000002" squeeze_mode = false [inputs.previous_rollup_data.proof] @@ -665,90 +665,90 @@ key = [ "0x000000000000000000000000000000000000000000000000000000000000004b", "0x000000000000000000000000000000000000000000000000000000000000004c", "0x000000000000000000000000000000000000000000000000000000000000004d", - "0x0000000000000000000000000000006237c17f1aad40ffbcaeef4f89816c8787", - "0x00000000000000000000000000000000000fc4582f0dd3fd9c240b484a5bf955", - "0x000000000000000000000000000000695861678aef87f3ac0802b9176b4a635f", - "0x0000000000000000000000000000000000034cf69b0ea21b56cc2d1fafa5308d", - "0x00000000000000000000000000000027f5767e366093bd99628c6982c16f6265", - "0x0000000000000000000000000000000000098fc46a52eaa033c4dd5c01c0fc74", - "0x00000000000000000000000000000074a63b787d92d94ba8bff332fba4602fdb", - "0x0000000000000000000000000000000000010eb85b5dc6dd68dda99d660dc9ef", - "0x000000000000000000000000000000403d69f8c6fbe80fcdadb4c1dfc118dcc1", - "0x00000000000000000000000000000000001b70dc726f91c51fe6ceb3bcdf7b3f", - "0x000000000000000000000000000000bb995dc9c59b455c98354b821b30038b17", - "0x00000000000000000000000000000000001c4588427b7a1458665cbb8f9038c8", - "0x000000000000000000000000000000591783a0a5312f7ae830543e7f605dc669", - "0x00000000000000000000000000000000001b9d76aa69ad1274194bd6b157fb70", - "0x000000000000000000000000000000dca9b1655f06db98ef9a33690f3f8d9525", - "0x00000000000000000000000000000000001c066a22b505f02beb9e0dc3ff0ec6", - "0x00000000000000000000000000000062dfdf3c3f1921c3d9b0d7efa6de14e2c0", - "0x000000000000000000000000000000000019161a49d11d76b91d8f32d7ea6411", - "0x0000000000000000000000000000007195b8cbdcb53d4891cd5c1f05f058ba8a", - "0x00000000000000000000000000000000001e960763037414454efdb83a2db839", - "0x0000000000000000000000000000009d5de284de72f01d7c7969a1577620c976", - "0x0000000000000000000000000000000000186396b5accaca9189ce6f535ae4db", - "0x000000000000000000000000000000628c4e682248e4f03a7c4e052f02370f90", - "0x00000000000000000000000000000000000046c1417c45f7d761dd52aec1b0a2", + "0x000000000000000000000000000000320f747c8b085bf353ec41f8162c8bb1f9", + "0x00000000000000000000000000000000001aecaf43e245943de1de1e75dc4549", + "0x0000000000000000000000000000004fc828035a05123b7de240ddd646cf9425", + "0x0000000000000000000000000000000000198f90a0c0f02dfd4e6cc30822aac1", + "0x000000000000000000000000000000d12a8ecb0f75125156df7c2769c581dca9", + "0x0000000000000000000000000000000000297dad4c84742843e6df9a23fa8454", + "0x00000000000000000000000000000031d00ef32f9f067c6a68652210fe52b7b1", + "0x0000000000000000000000000000000000187c474492ee7d2781024a2c84f082", + "0x00000000000000000000000000000004be671a5fb70d3152f3dacf929bcb2541", + "0x000000000000000000000000000000000029d3d5f4b0f04b525256bbc7a1890f", + "0x00000000000000000000000000000059747c14d01f6eca90c79e17e88e721571", + "0x000000000000000000000000000000000028dccd02eb2dd759b5ae87b3a5f0cf", + "0x000000000000000000000000000000cad428f818f31604b2257ffeb5708c1e2c", + "0x0000000000000000000000000000000000154cb3aaabf8cf6cb21d15483197f9", + "0x000000000000000000000000000000632d33a6730d784ce4f021c9aa6ec4412f", + "0x00000000000000000000000000000000002815c5cd5c989a580bf4ab1718d63a", + "0x0000000000000000000000000000009c96d609ed82b97c0dfc441a38733888c0", + "0x00000000000000000000000000000000002f1307f7e750c3e204d6b6ba01b84b", + "0x000000000000000000000000000000b791bd48eeea8d7247c0ed95ded3dcbee5", + "0x00000000000000000000000000000000000dd041d00ef3c8416ebb8e8f61acaa", + "0x000000000000000000000000000000969eb5ad7ab86a3f7dae69c9836f87374f", + "0x00000000000000000000000000000000000fb19ae770fb66b6def73cc3d8d06e", + "0x0000000000000000000000000000005ac3efa7d5001803486039aefc7a58fb8e", + "0x0000000000000000000000000000000000155be0a454a35085a33bdcbbb5c21d", "0x00000000000000000000000000000071810e31f4f779c964d1dbc69bedfc1dcf", "0x00000000000000000000000000000000000450fef0cb3f70a9a9f8c263497c32", "0x000000000000000000000000000000c744ce72df743a59aa4dc765dc6c5a2ab3", "0x00000000000000000000000000000000001730dbb1a13afc4166953bd769ee0c", - "0x000000000000000000000000000000bff239075b2a72108732fe77cec8144ec6", - "0x000000000000000000000000000000000017516b0a030a1f33e36cb4993ca4c7", - "0x000000000000000000000000000000d45b77825eeb60a9c91d5343be7e46cb4e", - "0x0000000000000000000000000000000000117fcae594e51a42e6f575774bc090", - "0x000000000000000000000000000000f4428136b0e1742a70fd1b4e6d14ebd7ea", - "0x000000000000000000000000000000000026d08e4fa5c5bd217af411aae58d80", - "0x00000000000000000000000000000090f32b319d25587bc045843630ffa82462", - "0x00000000000000000000000000000000002c3cc76bd6af450858e9a2ff773453", - "0x000000000000000000000000000000fa1ddc654fb31e4ec0880b55544d2e3c74", - "0x00000000000000000000000000000000001a18578a05ec54752b604c12a956e3", - "0x00000000000000000000000000000056335129c3fa894ba3d969f81760c865c7", - "0x00000000000000000000000000000000002e4b237dc1be44499d6169e0b0600e", - "0x0000000000000000000000000000003fc6c819cbf1d5e2d853ef813fd6297d7d", - "0x0000000000000000000000000000000000208654a51768cf14803dc1623f4128", - "0x00000000000000000000000000000083633094320139eeae26053a74b7bf1089", - "0x00000000000000000000000000000000002e16fe741cf78a08cdf1fb97fbecd8", - "0x000000000000000000000000000000f0a2717fc2159901cdfceb5a186bae7678", - "0x00000000000000000000000000000000000f578a5221ffad1f1bdd3a786efe78", - "0x0000000000000000000000000000006bfb1ee639fc36f3f42aafb9ac93960b18", - "0x000000000000000000000000000000000004699d469017b23a1c50224d443874", - "0x0000000000000000000000000000007d08b24811b75ce8f89d342677b31f9e14", - "0x000000000000000000000000000000000001c6b272e9d1e4e9ec308101c3885f", - "0x0000000000000000000000000000000d13f712c4a1a6dc8afabdbafb3bef0b74", - "0x00000000000000000000000000000000002cf7fd5cc8900dcd2d4786ebd4e380", - "0x0000000000000000000000000000004dc57070e11d468a8758c4f26699fb11d8", - "0x000000000000000000000000000000000021944c4e4815cd4a7707d4736d3363", - "0x0000000000000000000000000000002fbadeab613ce4361334f07e02ebb50817", - "0x00000000000000000000000000000000002fd387ce473ced5ed60124a339d7be", - "0x000000000000000000000000000000861c89867591a1dfb78df4b06fd1205307", - "0x00000000000000000000000000000000001f9707e7f48916d0f3342ca0c759b5", - "0x0000000000000000000000000000003a72f41d55e759b141a1c1141d750277da", - "0x000000000000000000000000000000000020ea2b0238ce683c0bf8d49d0202a6", - "0x00000000000000000000000000000074293f35385f5afbe7ec2500562a9b3000", - "0x000000000000000000000000000000000007c251f24f273f9eae81f4359c0da9", - "0x0000000000000000000000000000007f8cfd2c47e6009101faea11c6fe295095", - "0x000000000000000000000000000000000017a0478d9a3a6bbb9ba2c5e6a32161", - "0x000000000000000000000000000000603e0c88be3aabe9159bdb7ea937b4c883", - "0x000000000000000000000000000000000008bd2bc1431e62e026d8b60a3fec57", - "0x00000000000000000000000000000072e897f8ddeece38b440a9bb49e984b586", - "0x00000000000000000000000000000000001c19ffa154e7a23042794f5ffe14e6", - "0x000000000000000000000000000000034b637782f0e1b2b5abebb55271e5eadc", - "0x000000000000000000000000000000000012665b8f9cb1dc694e56e1d643904e", - "0x000000000000000000000000000000c1d477cac2ec06c5695d625b1ee98f3e44", - "0x000000000000000000000000000000000019cd00b31dded6d6569621beb6734a", - "0x000000000000000000000000000000bdbb58aa7f034d5920cf2f960d30fa57fe", - "0x00000000000000000000000000000000002dba4d8286d4abd071b4948d71373f", - "0x000000000000000000000000000000abf8b381a70c675616ba48092b35c1e890", - "0x00000000000000000000000000000000001dc050605f3bb788f61901a01a7044", - "0x000000000000000000000000000000b4d7e4ca44e480a471877822e1e89aa8f8", - "0x000000000000000000000000000000000026dbcc5e16bf6f47977b8e7d2a8c27", - "0x000000000000000000000000000000b7e2bbb1af17ed6d0b08adad131b00a33e", - "0x00000000000000000000000000000000002865d08d26ebc5c0661df707b8e67e", - "0x0000000000000000000000000000005bca6fcf41ac2b6429b27dcc63f9a56da4", - "0x0000000000000000000000000000000000157a3dc8e993596edfce295f80ba76", - "0x000000000000000000000000000000cc4037b9f808222b8439f98bc9d10db773", - "0x000000000000000000000000000000000011eb607d6844a417302ed3ba01e9a8", + "0x0000000000000000000000000000006907c4630cb0bbb96f64a46a1c1cc65ae8", + "0x0000000000000000000000000000000000215b91b0c5b2382693a4bcbc7d9b41", + "0x0000000000000000000000000000000023539601fa71aac1efd41dc2ff175dfd", + "0x0000000000000000000000000000000000247c45b87800eb1f3b27c80eff0d3c", + "0x0000000000000000000000000000001c703dee1982025445fd98ad2ee9a48048", + "0x00000000000000000000000000000000001ae13fba46c3e973a23b4c845ae581", + "0x000000000000000000000000000000d4a74ea2aa1496ac18a233b8d676561e5c", + "0x000000000000000000000000000000000019ac4a4e99a7b5debbd3d64f853087", + "0x000000000000000000000000000000034d52e0bedce434e38e326647c98dee58", + "0x00000000000000000000000000000000000874e70fff8532f99b9f44d9e578b2", + "0x0000000000000000000000000000008a3baed314f85d7e643337c8abce93765f", + "0x00000000000000000000000000000000002bbd30bf44f4975d81cfe0536e9de7", + "0x0000000000000000000000000000007131ebae4457ec40a2bc0f712938988b5d", + "0x000000000000000000000000000000000000cd45bfbf9aa5da76de7f920053bb", + "0x00000000000000000000000000000005cad2960acbf59926e83d436f6b52eac1", + "0x00000000000000000000000000000000002449f3ed0343e0bc702e7c5ca89a35", + "0x00000000000000000000000000000045ef402147215b9e681d642958a693f3fb", + "0x00000000000000000000000000000000000394fd09a2fc0e3b18de63479fbb7c", + "0x0000000000000000000000000000003ac8545510192759dfa919e104a7a6f194", + "0x00000000000000000000000000000000000eb585669789fd8b520a67684513ea", + "0x00000000000000000000000000000066fcd1a709a9d7ee02b023453d9c70313b", + "0x000000000000000000000000000000000018c8a5545a86cd9e886beb75bba57d", + "0x0000000000000000000000000000007e9181ca927ab0b9f14e8d7958095e4e80", + "0x000000000000000000000000000000000013b13eb7f64cee3c105b15eaf7017f", + "0x000000000000000000000000000000c6fe76a16148b2bfddd678ed61a576a0ad", + "0x000000000000000000000000000000000000ac66e637cc0ae6be15cea9f100f2", + "0x000000000000000000000000000000963ba7060b720c20fa0e49aef2646b1a6f", + "0x00000000000000000000000000000000002ca2cdce410caef0fab4b091bc4eb8", + "0x000000000000000000000000000000c9e07ab66be0e51bb22d42f2a176e75284", + "0x00000000000000000000000000000000002554e679d2500a13aad000b5f3d8a1", + "0x000000000000000000000000000000dda6935477c17112fc2260aed2999fac29", + "0x00000000000000000000000000000000001a15f12f0dca4c56831e630ad4f1c8", + "0x000000000000000000000000000000eafeeafaa33df05467d75140d1569a53cc", + "0x00000000000000000000000000000000002739b163ec30e2e3cf0f088b010fe0", + "0x0000000000000000000000000000000c35a2b90852fb9c650ac3afc9505e5e24", + "0x000000000000000000000000000000000004c1da2de74f0d592dcda61fc20199", + "0x000000000000000000000000000000e19886a8cf3d2e738fbbf21c83d26dac91", + "0x00000000000000000000000000000000000468d5d2f16c30f6fac1dc421b0eb2", + "0x00000000000000000000000000000021b7e0946c7ac1c9b87b73dd1dc8c0a288", + "0x00000000000000000000000000000000002ae45004b4bc2055c84f1b46b9c29b", + "0x000000000000000000000000000000b254db15c0de24dfc48e4f6a7d27795093", + "0x00000000000000000000000000000000000e7d93ff71acd0bfc368b9649bc463", + "0x00000000000000000000000000000056c07f0fa8822f274ce2ae8f387c253153", + "0x0000000000000000000000000000000000076ac51546120f50afce49d954cde9", + "0x000000000000000000000000000000fd51a8e6216b79b5d432fb27f1686cc6d4", + "0x00000000000000000000000000000000000b5f14ca10683ad327c16ae82965ba", + "0x000000000000000000000000000000a2bd9ca4b4498a39334572714aba043c62", + "0x00000000000000000000000000000000000ebdf70a561492681d7ff1c495fb12", + "0x000000000000000000000000000000fd504b6af8aa9f8ad2a232bc2409bd59d9", + "0x00000000000000000000000000000000000944a24d7acc63e6a152f9943d756a", + "0x000000000000000000000000000000b113da4c36f45b766ab164fa3907c21925", + "0x00000000000000000000000000000000001dc8ff83d6172c481ec13382862041", + "0x000000000000000000000000000000a7adc737796873822c812ca64f6f1dacc9", + "0x00000000000000000000000000000000001f2613f1a3a7ebc2356adde7424e84", + "0x0000000000000000000000000000005ec9805eb552e65c8ff0af049e0d097e74", + "0x00000000000000000000000000000000000fa9b7351d63ad5f2984161940d59a", "0x000000000000000000000000000000124cb4ae53dc6564c3df03730ef7a6da5e", "0x0000000000000000000000000000000000164aec94a3d3289d4eb305da1a05ec", "0x000000000000000000000000000000ce4fd05922a89a6a4b10ebec049e0b9058", @@ -769,22 +769,22 @@ key = [ "0x0000000000000000000000000000000000000000000000000000000000000000", "0x0000000000000000000000000000000000000000000000000000000000000002", "0x0000000000000000000000000000000000000000000000000000000000000000", - "0x00000000000000000000000000000057c5d0ce79af729ac9038785d15e30737f", - "0x000000000000000000000000000000000024e11549b2983ede388be6c051f43a", - "0x0000000000000000000000000000003074f83d5ac7ec92ad1adc6eeb8a8fd2f4", - "0x0000000000000000000000000000000000136f9d774d6011d6e264415fe19445" + "0x0000000000000000000000000000001c981234f67f660e87b21b84d38fffaae3", + "0x000000000000000000000000000000000004f27855a34c7725ebde36f714c44f", + "0x000000000000000000000000000000033389fe48eaf85743ae24695b09e1e036", + "0x000000000000000000000000000000000017ecdb94885a795310150760b56904" ] -hash = "0x0734334af3337999154142930427bba7771f59d6b0fee2884528a6a73095cfb7" +hash = "0x180c796146fafa025ed66fd72bec570028abe91c7ad734541db133c9f4071ea9" [inputs.previous_rollup_data.vk_witness] leaf_index = "0x0000000000000000000000000000000000000000000000000000000000000008" sibling_path = [ - "0x0e358a0e50a175ef12e556041257905cd7092d8ee0b4e31c248f8f615fa84a2c", - "0x15f46210f6c2964e3ee0311d689c60d30a77dd0ac226821c6a7eb9c1a8771304", - "0x122c3693da0dab2793d8d190fcc701f66e0c468aa1b84a834cbf0e81abd203f4", - "0x2157aca3fe88ffe5ca534ce2e7f13a8441560ec9ac8dcafe25e583a52c6a849e", - "0x1269cc8f8216b2d60daca30e5e0ba1e1d11dfe89f0f0c2cadb113c30de181554", - "0x26b3cce275e6a21ac2049ab937390d4afb7793ec68d1d7bcddadfbfe45fbfb06" + "0x015f0e9388f82128c78a809364d65226851f18932c67d9eeb95801be8617aafe", + "0x152a39611e52a1cde786d190e047b17108ec6d067bac30a37fe60bf5019b5e56", + "0x0686bc3f7e51871450701ee05fcfb55ae5946f5f2e77098101b8851c77a4c0d3", + "0x0e3b41ae0c61b2201c7ddad14a74a90a9e8447d5394e3487069a6b7bafe107af", + "0x0d8e4232c3e1214b1a72ee04016dd919308ecb6b01e871bdcdc36248ab044711", + "0x2fd02310a424f73ae3709cf4ff9d507e920407534ba3e965a5542a138b815675" ] [[inputs.previous_rollup_data]] @@ -792,75 +792,75 @@ sibling_path = [ rollup_type = "0x0000000000000000000000000000000000000000000000000000000000000000" num_txs = "0x0000000000000000000000000000000000000000000000000000000000000001" out_hash = "0x0000000000000000000000000000000000000000000000000000000000000000" -accumulated_fees = "0x0000000000000000000000000000000000000000000000000000000395853c00" -accumulated_mana_used = "0x0000000000000000000000000000000000000000000000000000000000004a40" +accumulated_fees = "0x000000000000000000000000000000000000000000000000000000001be37338" +accumulated_mana_used = "0x0000000000000000000000000000000000000000000000000000000000013c36" [inputs.previous_rollup_data.base_or_merge_rollup_public_inputs.constants] - vk_tree_root = "0x22a749df2f64e23077f364a4efdd544e0a0666eb43bd1560f5a698b10997c43c" - protocol_contract_tree_root = "0x16862f3a312325ba6b37abe1073a51ffb333ee32fbaa437454dce33423766de6" + vk_tree_root = "0x035e62aad06a66ce8d2a9d112a620e2337018ff2c763061808a24ea0f220ffbc" + protocol_contract_tree_root = "0x071f2e01b58eff84ebe1608c9eccf21bf2d51ac74cac3816a3dee8372cdb0b7d" [inputs.previous_rollup_data.base_or_merge_rollup_public_inputs.constants.last_archive] - root = "0x1f1bf0820bb2f2c54506f0a854e4ade0ff236d216ec2ae5c14ca5683cbbfb723" - next_available_leaf_index = "0x0000000000000000000000000000000000000000000000000000000000000008" + root = "0x1945c10a2f89ef5c07ce78f75ece0980a1fb9f72614ac5032e8e9e4a198ae864" + next_available_leaf_index = "0x000000000000000000000000000000000000000000000000000000000000000a" [inputs.previous_rollup_data.base_or_merge_rollup_public_inputs.constants.global_variables] chain_id = "0x0000000000000000000000000000000000000000000000000000000000007a69" - version = "0x0000000000000000000000000000000000000000000000000000000000000001" - block_number = "0x0000000000000000000000000000000000000000000000000000000000000008" - slot_number = "0x0000000000000000000000000000000000000000000000000000000000000013" - timestamp = "0x0000000000000000000000000000000000000000000000000000000067d9b798" + version = "0x00000000000000000000000000000000000000000000000000000000e6f03fcf" + block_number = "0x000000000000000000000000000000000000000000000000000000000000000a" + slot_number = "0x0000000000000000000000000000000000000000000000000000000000000023" + timestamp = "0x0000000000000000000000000000000000000000000000000000000067fa7628" [inputs.previous_rollup_data.base_or_merge_rollup_public_inputs.constants.global_variables.coinbase] - inner = "0x000000000000000000000000a540911acb4195ad0bbfa2c10a46e3e54df4c649" + inner = "0x00000000000000000000000071d84878d343d87f145bfcc3af71b20b7430de57" [inputs.previous_rollup_data.base_or_merge_rollup_public_inputs.constants.global_variables.fee_recipient] inner = "0x0000000000000000000000000000000000000000000000000000000000000000" [inputs.previous_rollup_data.base_or_merge_rollup_public_inputs.constants.global_variables.gas_fees] fee_per_da_gas = "0x0000000000000000000000000000000000000000000000000000000000000000" - fee_per_l2_gas = "0x00000000000000000000000000000000000000000000000000000000000c5b70" + fee_per_l2_gas = "0x0000000000000000000000000000000000000000000000000000000000001694" [inputs.previous_rollup_data.base_or_merge_rollup_public_inputs.start.note_hash_tree] -root = "0x226de9094f6d24d238e95ffd8405b135f935c219ab03521be272b50dbee84657" -next_available_leaf_index = "0x0000000000000000000000000000000000000000000000000000000000000240" +root = "0x1398795b2de10a2df565c5d744c062a7764431138af35b64de824f815e65cc02" +next_available_leaf_index = "0x00000000000000000000000000000000000000000000000000000000000002c0" [inputs.previous_rollup_data.base_or_merge_rollup_public_inputs.start.nullifier_tree] -root = "0x17ec6da2c9c190417a4b66dc3814655edfd6dc739d451885751497a960f39ba9" -next_available_leaf_index = "0x00000000000000000000000000000000000000000000000000000000000002c0" +root = "0x1aaa95244aa985292304f13c4e6c0ae390de7d670c751abd633693d3b6dd9096" +next_available_leaf_index = "0x0000000000000000000000000000000000000000000000000000000000000340" [inputs.previous_rollup_data.base_or_merge_rollup_public_inputs.start.public_data_tree] -root = "0x05b98fcb0ee88c15f73c9637c817641a1807e3919e8a20b0e830b1d2bedd2a8a" +root = "0x277d85cfa877e3a0e65a886d4f2e5f234c897356b2f1aab0c2edea64bde815da" next_available_leaf_index = "0x000000000000000000000000000000000000000000000000000000000000008f" [inputs.previous_rollup_data.base_or_merge_rollup_public_inputs.end.note_hash_tree] -root = "0x0c76c865a447b2c937b3d073815c14cef22a1754711d81c7347823ac0a10f86f" -next_available_leaf_index = "0x0000000000000000000000000000000000000000000000000000000000000280" +root = "0x1398795b2de10a2df565c5d744c062a7764431138af35b64de824f815e65cc02" +next_available_leaf_index = "0x0000000000000000000000000000000000000000000000000000000000000300" [inputs.previous_rollup_data.base_or_merge_rollup_public_inputs.end.nullifier_tree] -root = "0x09b3ab900a568736185f4bc77b777b0657e0f8756a3039e0c9f6c8d85571f380" -next_available_leaf_index = "0x0000000000000000000000000000000000000000000000000000000000000300" +root = "0x0f12e90823d7646f3b862a3f6d43521333cb2206e8491fac6354d0e0578c849e" +next_available_leaf_index = "0x0000000000000000000000000000000000000000000000000000000000000380" [inputs.previous_rollup_data.base_or_merge_rollup_public_inputs.end.public_data_tree] -root = "0x10ac3fce53498412659b041779d80ebca3880e437b4fd9077a5419eaebe6f146" +root = "0x12d3c639570c343dd8b4bd0d52a5ba321fb2a6295a64f8fb6f79361f159d8e57" next_available_leaf_index = "0x000000000000000000000000000000000000000000000000000000000000008f" [inputs.previous_rollup_data.base_or_merge_rollup_public_inputs.start_sponge_blob] - fields = "0x0000000000000000000000000000000000000000000000000000000000000016" + fields = "0x0000000000000000000000000000000000000000000000000000000000000050" expected_fields = "0x000000000000000000000000000000000000000000000000000000000000005c" [inputs.previous_rollup_data.base_or_merge_rollup_public_inputs.start_sponge_blob.sponge] cache = [ - "0x00000000000000000000000000000000000000000000021e19e0c54ddeac16cc", - "0x00000000000000000000000000000000000000000000000000000000000003e8", - "0x10bd5eb801c0a60ecde3a0f7b44428535c228e6c67894e5baaa9c85394bbacde" + "0x001b13076c419aeabb9bff90fc4e44cb6069901afc28652a65d88366d9fd1fe9", + "0x00d65fea12cae6dc51459ad77c86693405ea67d3a5d4d36c9b6d9c14a8e0524e", + "0x0051167a7afec0799f1645606c7d6a93644b2edc204b1dc5944b5160c61c59b9" ] state = [ - "0x188bcbe82773b5140194a90b295d6f599e9075c5b371932d401630ea5e570d6b", - "0x0a52b123e11a4e2a83b925a9980a31d877e8975a910fdf40083ef2de844fbd15", - "0x2dac086843f6bbea2b52ead6612d31ea3f905d4d8c5d088a0ab0d467e6fe8b26", - "0x246432acc9bb81413e65b66bd53756f64b680e4c1b0e35d114ebdf38c40ead24" + "0x29df41dd219269f8eb5f00f0f35b3b6b3d54311c748a4ad3411a6a9573bcae1f", + "0x18ca258955d21b5dd1c79ba869e3f9627a61978473caa30cc89c516de4679a98", + "0x2858464148171a5b8dbfed071b78e5123d5edde335d304bab87508141b0c1e12", + "0x05a712cea2a332ac66629e5a5365f392b44023f135a91dd4693abb0e4f947632" ] - cache_size = "0x0000000000000000000000000000000000000000000000000000000000000001" + cache_size = "0x0000000000000000000000000000000000000000000000000000000000000002" squeeze_mode = false [inputs.previous_rollup_data.base_or_merge_rollup_public_inputs.end_sponge_blob] @@ -869,15 +869,15 @@ next_available_leaf_index = "0x0000000000000000000000000000000000000000000000000 [inputs.previous_rollup_data.base_or_merge_rollup_public_inputs.end_sponge_blob.sponge] cache = [ - "0x00f5a496e3c7754a1a2b7c3ca6072a43e476b2d694d06d049309e3538369cb68", - "0x00b9f39100229cbea17244a3f98d44a7c8e95511de7f549e1a78600f6990ebd5", - "0x0099e0e585cd6817126e6449abc92fd2812f7bb39696f35c567e3bf86f8b6844" + "0x16847710038f83e16cf6cf05eeec890a5e6907aaec87b1af7f1c6b21bec730c4", + "0x00000000000000000000000000000000000000000000021e19e0c9af3f2031e0", + "0x000000000000000000000000000000000000000000000000000000000000076c" ] state = [ - "0x0f6276a6f4e907a608f26b40e0901945c42c3d7c41f244711b94031718e7e839", - "0x2dd8b942bc8832548a9a3e6afc512e8a5090117d4e41887ce63654672a03e7f6", - "0x1a2e127941be00c2ba860896a5f4d372de5340dbe01cfbcab38e9348bc4d38f7", - "0x208de4c12205b1d111cca0ebb5fb32849a74a23fcf6be333aef338f747834c42" + "0x1b625d096a858ac3bdc0d43f87ad329774fbd347f38609359633b42eeea745c2", + "0x151977cc1c934ca8fb8a620ac925d313c12ea841827717119dcfce66b2da9f23", + "0x298d45903775e9f05a4500c73d5ba5178982995b7c1f4e44f2f075290ab766c6", + "0x0eee8ab75ec7c7013e6e63a18af95bfef2f73197b83a3f797cf2b16007859428" ] cache_size = "0x0000000000000000000000000000000000000000000000000000000000000002" squeeze_mode = false @@ -1454,90 +1454,90 @@ key = [ "0x000000000000000000000000000000000000000000000000000000000000004b", "0x000000000000000000000000000000000000000000000000000000000000004c", "0x000000000000000000000000000000000000000000000000000000000000004d", - "0x0000000000000000000000000000007b6a8141dfbfb515a705525b89c0356d0f", - "0x00000000000000000000000000000000001a9c8ad511ddfed586500c96ec2dbc", - "0x0000000000000000000000000000005a785224dedb0dbf5dcbb0f53406a58ede", - "0x00000000000000000000000000000000001214316d182e3961f0f60bf18ce0e2", - "0x000000000000000000000000000000e6929137aea5d23dbb37c701e8c0659778", - "0x00000000000000000000000000000000001d2b3a717707d0b02bbdeec3bbe401", - "0x000000000000000000000000000000512f68aa7fa9724f56e2cf54204f3e4b45", - "0x00000000000000000000000000000000002d79c8dae5f6e9fa7763163b5abe2e", - "0x0000000000000000000000000000007501167c59e273de8c00b8bea879fb684e", - "0x000000000000000000000000000000000028f6be790bbfed5f8c0c6c90761f4d", - "0x000000000000000000000000000000d4072f1d981b2b16fe4cc15072038327f6", - "0x00000000000000000000000000000000001c3fdef240e92e6bd389aaa307d231", - "0x000000000000000000000000000000ca15c5c7b54e3c9681a8ce1fac117b1ca6", - "0x000000000000000000000000000000000014879f1e469ef11c9bf607e63d0523", - "0x0000000000000000000000000000005e4e9f384fd85279676e533e1f0e59a38f", - "0x000000000000000000000000000000000024f9a4be716993eaae59ce5d681283", - "0x000000000000000000000000000000c16ac076bc2eac25801d53302f89c608e8", - "0x00000000000000000000000000000000001e9835a391a520cf3b8c27d5da5061", - "0x0000000000000000000000000000003a66ad56c3d58518f25da394d5a0dd97d5", - "0x00000000000000000000000000000000002e2fb50005a8698fd4d7d29b7b635f", - "0x00000000000000000000000000000023608372f0db2f12c09a163e60262b605b", - "0x00000000000000000000000000000000001b035d0f49091621003d9f75ac389c", - "0x000000000000000000000000000000b2b74db717c1ad9d7c780a820fa4267234", - "0x00000000000000000000000000000000002a37489dda36a79060a4595b3b62af", + "0x0000000000000000000000000000002b6175f3c2d13fefa852197a9e2c1ef43a", + "0x00000000000000000000000000000000002f757ec74e1efc65699cbf84c0c932", + "0x000000000000000000000000000000e696919dd11693741079c5f5dc31eaa606", + "0x000000000000000000000000000000000029a584f282ffbaf879b2e98e9c6d1f", + "0x0000000000000000000000000000000e0ecb5505aceda7d182bb0d8233b62abb", + "0x00000000000000000000000000000000002fc1534f08e1a31feb184dcca0e5a8", + "0x0000000000000000000000000000003429c14c7fc9ca2ba50d3575f6289650ec", + "0x0000000000000000000000000000000000213865498316e80d91f45716363c7b", + "0x00000000000000000000000000000066e3382a53311b8961b6164bfff9de5fda", + "0x00000000000000000000000000000000002b256cdd48a80074a1e977d5787114", + "0x000000000000000000000000000000ec8c6556756066c63462d030dad0f04a24", + "0x0000000000000000000000000000000000103236f5e8396a3dfd3313f4b863f0", + "0x00000000000000000000000000000061e35814c22e7fb118094876a02122ead1", + "0x00000000000000000000000000000000001f3fac6355d8ea84bec274abfcd055", + "0x000000000000000000000000000000c3f8047edbcdc2f5a62cd5d73e39b0042d", + "0x0000000000000000000000000000000000245a096371cf6c925176a147c37814", + "0x000000000000000000000000000000b075107c5961c379bed15f2fd241cc989f", + "0x0000000000000000000000000000000000187f95acf56b4f583054e3ea03103c", + "0x00000000000000000000000000000096a7bf259b81ceb4d1d447844c7b98cf2f", + "0x00000000000000000000000000000000001fdf4d64bfe977846272f1bc45ca2f", + "0x00000000000000000000000000000035d93826436a59665e1b02efd2617f91f0", + "0x00000000000000000000000000000000002823bca05aa8856d0a0e1073161a26", + "0x000000000000000000000000000000eadd571871d32b3dd0836dbd236cd53e21", + "0x000000000000000000000000000000000024e3e3e65acc31decea46ba97d7157", "0x000000000000000000000000000000e7bab6896d9724b5b46b796551dc5feed2", "0x00000000000000000000000000000000001fd93debdcf16cc93f99efd69e938d", "0x0000000000000000000000000000004b94434e1705c9bc2a4f5b2bc2a05c3c03", "0x00000000000000000000000000000000002a29d5563fd08e454dace1605a1aa5", - "0x000000000000000000000000000000b9685e8b8c3c838a1bd972ba488c8f7ed2", - "0x00000000000000000000000000000000001f62cdca494d9b52442207c5d914ad", - "0x00000000000000000000000000000013918459394edc1f34e0076ff7dfaf0a83", - "0x000000000000000000000000000000000008ed2c669cf6f3e5638131b2cd377b", - "0x000000000000000000000000000000cd4a67e78eb5e4f96c6f77b68a882d2a17", - "0x0000000000000000000000000000000000258aeefee6489918ae7198a817d8a4", - "0x000000000000000000000000000000c362a815f8f90f90e3afeaad14bd015ae5", - "0x00000000000000000000000000000000001c55898a3d6a928ec1059809170c29", - "0x000000000000000000000000000000f8c7e5a9530eb68416d3c593842c94b6ff", - "0x000000000000000000000000000000000003cba57843c97ad7c3a9715a01beb0", - "0x000000000000000000000000000000464fb952717b989391375cf86636da595c", - "0x00000000000000000000000000000000000073cca58cea7769ad99ef5884de2f", - "0x000000000000000000000000000000cd9cacd265e32852d399a72b4e001b5336", - "0x0000000000000000000000000000000000131bbacbff86d18ef2a80b690cb2d6", - "0x0000000000000000000000000000003b8a925083243422daf4e4a244e5c55c54", - "0x00000000000000000000000000000000002b7b929a1ee925d44dcc2c32cc9835", - "0x000000000000000000000000000000d0ce9b49c94c2ac6ea0d81842708adf233", - "0x000000000000000000000000000000000005f7530927f80bb98d3ba0d1937f27", - "0x0000000000000000000000000000008d025259daab5e5889b9afab2e98f4a59d", - "0x000000000000000000000000000000000013e52d9c18a15d91df68fcd72e410f", - "0x0000000000000000000000000000005ef41a41fd8a9ae01816bd9e4b2f5639ad", - "0x00000000000000000000000000000000002ac41d2bd63b9a32cee0abb5de416c", - "0x00000000000000000000000000000071d37d9a5410f2ef48ae1b090cd0cc19ee", - "0x00000000000000000000000000000000000733b381e531b2fffe51f31eb18f4a", - "0x000000000000000000000000000000c266aaaa05d27d0686405ab7f7715cce38", - "0x00000000000000000000000000000000001eaa0138550023343739bf62e3e1ea", - "0x0000000000000000000000000000003f3bfdd1b89bfab4e992c7554d8909f6cd", - "0x00000000000000000000000000000000000546aa89ceefbf6ceeecaa0cb040b5", - "0x000000000000000000000000000000c67e7c95affbe3457578def2a5a6bc69c5", - "0x00000000000000000000000000000000002d2fdf0ec5eaf802b0292b0ae7edfb", - "0x0000000000000000000000000000003a348c840d271ff005bf6d62e8a0541237", - "0x00000000000000000000000000000000002505210f346d3e08e4d8169418563a", - "0x000000000000000000000000000000a97ee441e0bec3914e223d32267bd204b8", - "0x00000000000000000000000000000000000abdf09d38fc1c2e20b9fe5f6d474a", - "0x0000000000000000000000000000000fc12cfb9b2bf01e4faf05f83ef63368e2", - "0x000000000000000000000000000000000027fa0b3d15a3d09cbe91f68374d1c3", - "0x000000000000000000000000000000f92731a3fb212348b54c3e494ec065644f", - "0x00000000000000000000000000000000002628f5cf3d5b54a9a1175a9f2e1e06", - "0x000000000000000000000000000000bb656a6b544623ac144e7f9de21500a054", - "0x00000000000000000000000000000000001ad4dd8ac10dfa3a83894f5f1f8ade", - "0x000000000000000000000000000000a0881b1f9824eae8f9b2e547f32fd88449", - "0x000000000000000000000000000000000005e3780da4aea2f00f693b2454ad65", - "0x0000000000000000000000000000005f2b30d38445f8e3c9097a29a743c47c9c", - "0x0000000000000000000000000000000000239fecc0849116c4f302fe40877015", - "0x00000000000000000000000000000009f32892536e33af7953bd64ffea922b51", - "0x000000000000000000000000000000000026dba27838b2946189122e2b20232e", - "0x0000000000000000000000000000002cc6b91249613657bffb06e230416208f1", - "0x00000000000000000000000000000000001d71f934a465c6854d472a5f66a419", - "0x000000000000000000000000000000ab85b5ed03558510c1725e3e1b2220c9d9", - "0x000000000000000000000000000000000016e2a49c89b98eddd00d034dc14268", - "0x000000000000000000000000000000916758e8d9914c2434793577dd83c3ae85", - "0x00000000000000000000000000000000001033b2cd372460db6faa9c45c578c4", - "0x00000000000000000000000000000081ac89c74418a9e1105d50e061a2f13637", - "0x000000000000000000000000000000000006a5581c2ddcd6bcea08a86757dded", - "0x000000000000000000000000000000f1667c390bd8e523882e6027a14fcadd6b", - "0x00000000000000000000000000000000002bd63c1efe41ca7aff4d90d88ad674", + "0x000000000000000000000000000000ff5bbb821de840dc75415302e866c12765", + "0x0000000000000000000000000000000000067f5c980beecdf7117440a823869c", + "0x00000000000000000000000000000090aa429aaf305122ace1e0a27b94e3ed4e", + "0x000000000000000000000000000000000028ca011224355213d944fbbb130741", + "0x00000000000000000000000000000034a42c54dd6a7a50b984a13fb422e625b1", + "0x000000000000000000000000000000000010b5fb9abe61da63f98f2752b47065", + "0x000000000000000000000000000000fa8d9f0907a53c565c1ba2ba66a5c7b33c", + "0x00000000000000000000000000000000001a262e490e796976138cf749a5ceec", + "0x00000000000000000000000000000075ad9a3c0f8b394772b8abebcbc06cee90", + "0x00000000000000000000000000000000000a422140cad0bbddca8e9534fd8ece", + "0x0000000000000000000000000000009ec0bd708235c4ece4608a194e140d3a51", + "0x00000000000000000000000000000000002d93f3acbef1f2fa962d72944d88c8", + "0x0000000000000000000000000000008ad2b73ccaed536cd01a61db28c988a752", + "0x00000000000000000000000000000000002c274a3e097fd93dd757923f5953a2", + "0x0000000000000000000000000000000806a009e1e23e35b764bd023c6b7b1107", + "0x0000000000000000000000000000000000114aa08086af1c1a480a5bb8c81d7e", + "0x000000000000000000000000000000ea3c78865aa82bf7671761ec907fcd2376", + "0x000000000000000000000000000000000028f54754322b38ac5d5cdc8ad37f6a", + "0x000000000000000000000000000000e7ba887ff58001b4d1e7447d82810c26ca", + "0x000000000000000000000000000000000000f158075638c4b079d9693433b046", + "0x00000000000000000000000000000059e018fa8ec807afc030291f549e713cb8", + "0x00000000000000000000000000000000001e6adcb9fa3319214663536d0b17d3", + "0x000000000000000000000000000000a6771cc12bb10502caf47d1bba993cfaff", + "0x00000000000000000000000000000000002116eea84a66a9bf9613532362ec70", + "0x0000000000000000000000000000005839a8c2c4e9766bc1bb18f79c046be6f3", + "0x00000000000000000000000000000000002c4b1591f622a8c27f241d567390d8", + "0x000000000000000000000000000000f547cba6d2dbd12dc3f8a1859291015a6c", + "0x00000000000000000000000000000000002cdcf706bcef5db9663125c0353535", + "0x000000000000000000000000000000ca8a488cd9d8d5287df55cb19997f20c3e", + "0x000000000000000000000000000000000020d8ea36ab67611f4048dc8bf31456", + "0x000000000000000000000000000000a1c551a28f70af0cd4084be71f9483b6fc", + "0x000000000000000000000000000000000019272a54f448f2483657b5ea18ae2f", + "0x000000000000000000000000000000a0ad7e19dc43911db3307e671126cf0544", + "0x00000000000000000000000000000000002938a45db30a1b0c5cb1052ec938b9", + "0x00000000000000000000000000000075266396925b7fc0abf3fd39bbedfed21e", + "0x00000000000000000000000000000000000037bd03045c5c5a92483be3dd7866", + "0x0000000000000000000000000000002ad127759a8da66ac9e6760e700fa7008b", + "0x000000000000000000000000000000000008bcd4eb5135596c29ade1cfceb11c", + "0x0000000000000000000000000000008ca6f75ca729ce3c2bb6a6a24adb6c4697", + "0x00000000000000000000000000000000000b77d25c1b8a06cdbb3c6a0103cb54", + "0x000000000000000000000000000000d5ef2ccb938f0a93755a3eca92fbb9fa6f", + "0x00000000000000000000000000000000000d22ac2d9c3d4fc672f645d38a017c", + "0x000000000000000000000000000000fd421654e64dfbfea05dc01c334d2427ca", + "0x00000000000000000000000000000000001795d96cd79d7fe8e7282876a72768", + "0x0000000000000000000000000000003bf630bba4a42f3f3fb78a202600cc259e", + "0x000000000000000000000000000000000012c87f63ba30ca463150e9220bf281", + "0x00000000000000000000000000000003e0f898de5dfcc0049b0933abc8695d5c", + "0x000000000000000000000000000000000002ec14c4e2663cf563a812cc207605", + "0x000000000000000000000000000000369c65a86c716967d647ee9b48f7e1ee26", + "0x00000000000000000000000000000000000f244cf31bf8de7bf56ff2c798455e", + "0x000000000000000000000000000000d07a5a3819cd5209a4af69fbfd903051a8", + "0x00000000000000000000000000000000000827cddaed840173510b6d02135867", + "0x0000000000000000000000000000002d88bd0a6a7c35e1d811d62d218f6778bb", + "0x000000000000000000000000000000000019e4acfadd45da7f2e0b79e51d6b9b", + "0x0000000000000000000000000000002344cf0ad2c40fdd81b060071782bec289", + "0x000000000000000000000000000000000019717740651cd7db4dee1d8a3d51e6", "0x000000000000000000000000000000e97fb648fc1ff99f9988a73de181e0de22", "0x000000000000000000000000000000000024cae2d5d2c4daefe858889eeb01b8", "0x000000000000000000000000000000e072297115d09425f5612d626dc82f1002", @@ -1558,22 +1558,22 @@ key = [ "0x0000000000000000000000000000000000000000000000000000000000000000", "0x0000000000000000000000000000000000000000000000000000000000000002", "0x0000000000000000000000000000000000000000000000000000000000000000", - "0x000000000000000000000000000000ce5c69fafdf1d7f74a13c4ea29ac319203", - "0x0000000000000000000000000000000000161c6f3b73baba99944a7745aaed49", - "0x000000000000000000000000000000f14dd6b2f3efaac6f5b34802de35a980d4", - "0x000000000000000000000000000000000029344d0245672775e45767e9e43d26" + "0x000000000000000000000000000000794f339b4095c6201d34f6eea0fd61fdea", + "0x00000000000000000000000000000000000f54fb9da59f4d7420cf3c8356980e", + "0x000000000000000000000000000000da824040aaaf923948c05378dbd9cbe4ff", + "0x00000000000000000000000000000000000a7b02f4a8af2e5b64311b27e4c6fc" ] -hash = "0x0799796ebe3c57a193bf0f06b842f780be2da07d9ab0661a834378d827002f94" +hash = "0x0cae9a18e830901d937e8150200d55d6b97b58f12cbe0a8f24c0e50c8bda66ff" [inputs.previous_rollup_data.vk_witness] -leaf_index = "0x0000000000000000000000000000000000000000000000000000000000000006" +leaf_index = "0x0000000000000000000000000000000000000000000000000000000000000007" sibling_path = [ - "0x223ac65a7b2f5dc2db23957514888b3151f4dbae7a37957d7779d49b522421b7", + "0x2105487deb54ac9c459b3050270ea0b48ac21bc057a48da073c3fb56dea06740", "0x1a8ceec79a52f0cadbada4e0362dfd6ef1f2af334809c9bc837825b657cec6a1", - "0x02370e3878cde2a8c84c40391c1115962ed9f0543e0c443869d9791a3f033733", - "0x19816d7c1dabb2893c3f4ef0250936cb55ae926b870e7b14e990d50bdf9eb084", - "0x1269cc8f8216b2d60daca30e5e0ba1e1d11dfe89f0f0c2cadb113c30de181554", - "0x26b3cce275e6a21ac2049ab937390d4afb7793ec68d1d7bcddadfbfe45fbfb06" + "0x07c008584a3bc294cfed5d5a726d88e5ce8be9a34100232e67e6b790e0a2905e", + "0x26121cf4ba1d9fe4a98c57cc36ab5640e2cebf720bf5d0ae4291c34416cc3fd7", + "0x0d8e4232c3e1214b1a72ee04016dd919308ecb6b01e871bdcdc36248ab044711", + "0x2fd02310a424f73ae3709cf4ff9d507e920407534ba3e965a5542a138b815675" ] [inputs.data] @@ -1614,11 +1614,42 @@ l1_to_l2_message_subtree_sibling_path = [ "0x0f55a0d491a9da093eb999fa0dffaf904620cbc78d07e63c6f795c5c7512b523", "0x21849764e1aa64b83a69e39d27eedaec2a8f97066e5ddb74634ffdb11388dd9a" ] +previous_archive_sibling_path = [ + "0x28354694faa27c8cdb2253c4eddcbb515adfe6be0a7506c5a68e6b155526fe39", + "0x0b63a53787021a4a962a452c2921b3663aff1ffd8d5510540f8e659e782956f1", + "0x0e34ac2c09f45a503d2908bcb12f1cbae5fa4065759c88d501c097506a8b2290", + "0x1973a240fceca21d19700fe03d46838c19b1c07e2d91a4cd4bea200c7c0111e4", + "0x2373ea368857ec7af97e7b470d705848e2bf93ed7bef142a490f2119bcf82d8e", + "0x120157cfaaa49ce3da30f8b47879114977c24b266d58b0ac18b325d878aafddf", + "0x01c28fe1059ae0237b72334700697bdf465e03df03986fe05200cadeda66bd76", + "0x2d78ed82f93b61ba718b17c2dfe5b52375b4d37cbbed6f1fc98b47614b0cf21b", + "0x067243231eddf4222f3911defbba7705aff06ed45960b27f6f91319196ef97e1", + "0x1849b85f3c693693e732dfc4577217acc18295193bede09ce8b97ad910310972", + "0x2a775ea761d20435b31fa2c33ff07663e24542ffb9e7b293dfce3042eb104686", + "0x0f320b0703439a8114f81593de99cd0b8f3b9bf854601abb5b2ea0e8a3dda4a7", + "0x0d07f6e7a8a0e9199d6d92801fff867002ff5b4808962f9da2ba5ce1bdd26a73", + "0x1c4954081e324939350febc2b918a293ebcdaead01be95ec02fcbe8d2c1635d1", + "0x0197f2171ef99c2d053ee1fb5ff5ab288d56b9b41b4716c9214a4d97facc4c4a", + "0x2b9cdd484c5ba1e4d6efcc3f18734b5ac4c4a0b9102e2aeb48521a661d3feee9", + "0x14f44d672eb357739e42463497f9fdac46623af863eea4d947ca00a497dcdeb3", + "0x071d7627ae3b2eabda8a810227bf04206370ac78dbf6c372380182dbd3711fe3", + "0x2fdc08d9fe075ac58cb8c00f98697861a13b3ab6f9d41a4e768f75e477475bf5", + "0x20165fe405652104dceaeeca92950aa5adc571b8cafe192878cba58ff1be49c5", + "0x1c8c3ca0b3a3d75850fcd4dc7bf1e3445cd0cfff3ca510630fd90b47e8a24755", + "0x1f0c1a8fb16b0d2ac9a146d7ae20d8d179695a92a79ed66fc45d9da4532459b3", + "0x038146ec5a2573e1c30d2fb32c66c8440f426fbd108082df41c7bebd1d521c30", + "0x17d3d12b17fe762de4b835b2180b012e808816a7f2ff69ecb9d65188235d8fd4", + "0x0e1a6b7d63a6e5a9e54e8f391dd4e9d49cdfedcbc87f02cd34d4641d2eb30491", + "0x09244eec34977ff795fc41036996ce974136377f521ac8eb9e04642d204783d2", + "0x1646d6f544ec36df9dc41f778a7ef1690a53c730b501471b6acd202194a7e8e9", + "0x064769603ba3f6c41f664d266ecb9a3a0f6567cd3e48b40f34d4894ee4c361b3", + "0x1595bb3cd19f84619dc2e368175a88d8627a7439eda9397202cdb1167531fd3f" +] new_archive_sibling_path = [ "0x0000000000000000000000000000000000000000000000000000000000000000", - "0x0b63a53787021a4a962a452c2921b3663aff1ffd8d5510540f8e659e782956f1", + "0x1c0f5b2a3f4f2700d9713d02747c35207ad6885ae7445be55bb32ee46411ad7d", "0x0e34ac2c09f45a503d2908bcb12f1cbae5fa4065759c88d501c097506a8b2290", - "0x1172247a6fa7c48d005e96272ba9d377d64c48e50f1f516ff11f2176374df285", + "0x1973a240fceca21d19700fe03d46838c19b1c07e2d91a4cd4bea200c7c0111e4", "0x2373ea368857ec7af97e7b470d705848e2bf93ed7bef142a490f2119bcf82d8e", "0x120157cfaaa49ce3da30f8b47879114977c24b266d58b0ac18b325d878aafddf", "0x01c28fe1059ae0237b72334700697bdf465e03df03986fe05200cadeda66bd76", @@ -1649,12 +1680,12 @@ prover_id = "0x0000000000000000000000003c44cdddb6a900fa2b585dd299e03d12fa4293bc" [inputs.data.l1_to_l2_roots] vk_path = [ - "0x26af213ff80555dd08663a6cc85b85347fd1efff7f34eaa688c9875032906d70", - "0x07d8d0f185d78dffe6f2f66b12276bce030ffdf09fce6ee2a87dd8419844201d", - "0x26669e62f65ec53a75088d42ea1c394daa80f9317c4a8a61d33bb8e766e35b8d", - "0x2157aca3fe88ffe5ca534ce2e7f13a8441560ec9ac8dcafe25e583a52c6a849e", - "0x1269cc8f8216b2d60daca30e5e0ba1e1d11dfe89f0f0c2cadb113c30de181554", - "0x26b3cce275e6a21ac2049ab937390d4afb7793ec68d1d7bcddadfbfe45fbfb06" + "0x2d133f1353a0c1bd24faab6cc05696677d88a24d4e2767b77446437451fb7ce4", + "0x13252c2c3199ad102a0c7bde67b7747f69cd01fc018942700143405433310cb3", + "0x286f54611cbfbd9d03338a684eb2faf235c84271894fcc1608b09da60dcff781", + "0x0e3b41ae0c61b2201c7ddad14a74a90a9e8447d5394e3487069a6b7bafe107af", + "0x0d8e4232c3e1214b1a72ee04016dd919308ecb6b01e871bdcdc36248ab044711", + "0x2fd02310a424f73ae3709cf4ff9d507e920407534ba3e965a5542a138b815675" ] [inputs.data.l1_to_l2_roots.proof] @@ -2139,90 +2170,90 @@ prover_id = "0x0000000000000000000000003c44cdddb6a900fa2b585dd299e03d12fa4293bc" "0x0000000000000000000000000000000000000000000000000000000000000010", "0x0000000000000000000000000000000000000000000000000000000000000011", "0x0000000000000000000000000000000000000000000000000000000000000012", - "0x00000000000000000000000000000095bd7bb1268cc7ae75d4fcbae036c9c78a", - "0x000000000000000000000000000000000027d09710d983f35ece5def66cfd6fa", - "0x000000000000000000000000000000d705063585b2d54bfccdc83494bc847754", - "0x00000000000000000000000000000000001f08ff02418075f68206d14fc33e55", - "0x00000000000000000000000000000095d5e2c3e6b730b01e5da18d7c24350f9d", - "0x00000000000000000000000000000000002c0c9645c7bcbc55e516a2cb7159b8", - "0x000000000000000000000000000000f6739cf4c2d638aee592bf5bbfddfabf39", - "0x00000000000000000000000000000000002cc02db482ba98eaefbce14be9bd9b", - "0x000000000000000000000000000000df7a9f4577082f5f0b89a6636f71aa8290", - "0x00000000000000000000000000000000001b776b98488ea07690accd29396e1d", - "0x0000000000000000000000000000008366ddcc59ae3bf084db4a02f28c1441df", - "0x000000000000000000000000000000000020cd2ccee5f48fa253ed38f1e30fe4", - "0x0000000000000000000000000000003097b05f7d33425c89c12e8b72bfc5e1d6", - "0x0000000000000000000000000000000000224de983ba8c2417dda19539bc87d5", - "0x000000000000000000000000000000400ba663d6f67f0bd8d8b2e0fd5b931c24", - "0x0000000000000000000000000000000000084681b9376f636cd91136090427b4", - "0x00000000000000000000000000000050713837e3bd92090529b22116b349bd76", - "0x00000000000000000000000000000000002dcc93dc978cb8368c518c869e0ba2", - "0x0000000000000000000000000000009ac0b7ce8707d5cf4437fda3fdef36975c", - "0x00000000000000000000000000000000001e168caa6d31ca3b868b1a79b092c6", - "0x000000000000000000000000000000bf543b590195e8a8a991d2aa932055d9b0", - "0x000000000000000000000000000000000008460d1cdc5dc05e72852eeea08fad", - "0x0000000000000000000000000000007916fbd94ae637a64e70b3860d23409a15", - "0x00000000000000000000000000000000002405b5897dac846b3376aeff7a6866", + "0x0000000000000000000000000000001f4f50ed14572f7b736db642ff75e5a411", + "0x00000000000000000000000000000000001d156f8a53b57feb1bbf36df09f386", + "0x00000000000000000000000000000034cf992a52a59b7a439c43b514515c6d7d", + "0x0000000000000000000000000000000000233b7c0448bfd06f8b9e7be8dce122", + "0x00000000000000000000000000000039ba5994a712331f80e3655f52c4af8a7e", + "0x00000000000000000000000000000000001cae8249f2cdd0c78f117ffe1425e4", + "0x0000000000000000000000000000007bd3e6010c574c49bbadeb2bdd2e950831", + "0x000000000000000000000000000000000021424fe62a23faf35662dbc23a94a8", + "0x000000000000000000000000000000fc965460686a7cc423e946303637e1d9d6", + "0x00000000000000000000000000000000001472bad34fc79915f764e80f4a35e3", + "0x000000000000000000000000000000a3cfc1241930bc9faa00cfdf7877656ae1", + "0x000000000000000000000000000000000013654435f5984ffc7c5312b01a7134", + "0x000000000000000000000000000000a5fdae3874c50939d7b869cd26901a80b1", + "0x000000000000000000000000000000000010d82a24b3a3383e4eacc4fa10754a", + "0x00000000000000000000000000000065da2a8878f6756a4da266b687bdab1ed9", + "0x000000000000000000000000000000000016f872f581eb775751571116c3e2bb", + "0x000000000000000000000000000000c66021da386107210796630e776d170cbb", + "0x0000000000000000000000000000000000027bf4e37132190ad474f18dc18e21", + "0x000000000000000000000000000000e7d85c0b61b67125c8f5f75bd672ad11e4", + "0x00000000000000000000000000000000002b6cbb7668bd47bc5e53081f30adec", + "0x000000000000000000000000000000802fae2c9fa8a1e0f8fcecd3ff55d3225a", + "0x00000000000000000000000000000000001caa6974ca08f8b042e9284cd39129", + "0x000000000000000000000000000000bbf216bca89c0f468a016a349c58080817", + "0x000000000000000000000000000000000014b0e675e39f54eb302bfc6b07d7ef", "0x000000000000000000000000000000b862080874183fbd8beafade4db201cf5c", "0x00000000000000000000000000000000000d51c793d0f427c476d6580576b5fb", "0x000000000000000000000000000000de866f4da1aad9653b7f3eb7e2596c60cc", "0x00000000000000000000000000000000000034d03c26f3f80a0c7216002f7e18", - "0x000000000000000000000000000000315a3e2bfdb975be69bd15122f5fbd5f2f", - "0x000000000000000000000000000000000014a02732165ca8d8439880380b1adb", - "0x000000000000000000000000000000a940e8984afe7cc89a030ddd80e8d8a24a", - "0x00000000000000000000000000000000001e1d9e8b04df2d6123fdf3bcbd9ccd", - "0x0000000000000000000000000000009ca7278aea184166c42a09f0d9b50ba09b", - "0x000000000000000000000000000000000026bcb8e3bc0a5e7f5d30bf36ba3a57", - "0x0000000000000000000000000000007e3ce484bdc3122e0979da3c1673fa0303", - "0x00000000000000000000000000000000000677d832dbd5513b78d1a8ad6f7347", - "0x000000000000000000000000000000c690c5ce9b4c3c0ff7c440f3b041781fd6", - "0x00000000000000000000000000000000001962e27004d997698d91e5471b792f", - "0x000000000000000000000000000000b12254709c88051090938745cbfdb826ea", - "0x00000000000000000000000000000000001eb85a371cdc12d3b62367ec87b1c6", - "0x000000000000000000000000000000b3aec41c145f51c160373f210eaa1ceecb", - "0x0000000000000000000000000000000000124b2dfbba57ecd6accdb549843091", - "0x000000000000000000000000000000365434fff201d37f1409a589d2ffb39f8a", - "0x00000000000000000000000000000000000c3499388fa655e5b857a50ddeda48", - "0x000000000000000000000000000000c4196efd4875d577d3aac370d96f9758ca", - "0x0000000000000000000000000000000000133c5d22dcd11cca02c45ed4d194be", - "0x00000000000000000000000000000015c71063a0f16083bd7cd8b189ae516d13", - "0x0000000000000000000000000000000000296c7296d870597dcbe2e851260e57", - "0x000000000000000000000000000000d401adef73319581c92d4d189002ce5ec1", - "0x00000000000000000000000000000000001f82dc075060a2be340a1909ee223c", - "0x000000000000000000000000000000cb03cc3b9cd1bc55c55a1e53b4720bb24a", - "0x0000000000000000000000000000000000171731fde19402734a4d32ae3fe24d", - "0x00000000000000000000000000000004cb6a9886eca7c535e3a294e20e115bf4", - "0x000000000000000000000000000000000016f5c15369989aa1becffc167ffa58", - "0x0000000000000000000000000000007984bd5d7a3ef1bce554fdecbbdd1d11ca", - "0x000000000000000000000000000000000025c222fc0af780a34826fd4906147c", - "0x000000000000000000000000000000de2fb763abfee6e18be135c0ebfa04fb38", - "0x00000000000000000000000000000000002446ece2a6bc819153e502e3e7679b", - "0x000000000000000000000000000000f7ad78a9c36ed5858bbcbe9aedb2f7fadf", - "0x000000000000000000000000000000000017491295d584c830f6c6b29d3bb405", - "0x000000000000000000000000000000efcc285ebc4378303921e2feb542839340", - "0x00000000000000000000000000000000000c356e8fbde6c52f90a46cf75fb7a4", - "0x000000000000000000000000000000dc6eb499d098189c46e61454c73af57a21", - "0x000000000000000000000000000000000023868dac8131066e29a8822a8512cf", - "0x0000000000000000000000000000006e872ed7ab27916379c9ee8e4f9c0c2dcb", - "0x00000000000000000000000000000000003061017100c60f33912d1294e79a20", - "0x000000000000000000000000000000f6cca3c297a88baf7104190d7d69593f2e", - "0x00000000000000000000000000000000001c1767fe79c2f58b2bf53f5402b714", - "0x00000000000000000000000000000072f118be17f63d64bdaeb37e38e48216c1", - "0x00000000000000000000000000000000002b1d4f77bcb0135e4749e0543e86ba", - "0x000000000000000000000000000000d6801113535c0378ea5b8b3c1196351113", - "0x00000000000000000000000000000000002e1f2dde215c4eabb07bcd8759e413", - "0x00000000000000000000000000000091e7ed2ba003ece77ea66e3c2a52c4e8f9", - "0x000000000000000000000000000000000028d606c558437bd0c933e52c10f6c0", - "0x000000000000000000000000000000294fa07c641bc303d9500961895a374ac9", - "0x000000000000000000000000000000000021a56c54e3f6fb7443b2a8c59e4515", - "0x0000000000000000000000000000005157ff758581531394eadaaa8b060227be", - "0x00000000000000000000000000000000000d834e8ca27bb75fe396dad0a0055c", - "0x000000000000000000000000000000055209a6b2272f12efd9c0878c1b2da5a6", - "0x0000000000000000000000000000000000291db3f2e38fd4ad91a4436b7340a7", - "0x00000000000000000000000000000083a735de699a478799d1e6743709bbb581", - "0x00000000000000000000000000000000000b68fe66a4ec2b143b06c5ddb2063a", - "0x00000000000000000000000000000005e5fca21b0dd64c6b4f35d73a3bfb56f2", - "0x00000000000000000000000000000000002446742f647ce7185f81e5abf1089f", + "0x0000000000000000000000000000001c3d1c03692419672114eebd759fa94adc", + "0x00000000000000000000000000000000000a055ae6790a460a36e85bb87bedde", + "0x000000000000000000000000000000c0b8cdc7c3abaeed15bb517e1d86b64790", + "0x000000000000000000000000000000000023b4559658f0a0f1616dc17f0c2b25", + "0x000000000000000000000000000000e3279165ea376b873556822a6af2f9b70a", + "0x000000000000000000000000000000000018ded79e4650892000dc8e1333eb7e", + "0x0000000000000000000000000000007977d89c6961578fc5c88077e4cca57ab8", + "0x0000000000000000000000000000000000011d15e25bb9aed3b9c4e7bf0a299e", + "0x000000000000000000000000000000ac4af135f838206aba1c2b220065cb5db1", + "0x000000000000000000000000000000000017389e71bb8d930a252a2b44509ab4", + "0x000000000000000000000000000000262262888a85e1e9bcdd38fd820fafb576", + "0x0000000000000000000000000000000000088dd6007508b5daaf4afbdfa74770", + "0x0000000000000000000000000000002ee2920756f0035af6e833a8323a7e24a3", + "0x00000000000000000000000000000000000f7e33dc5824502a6c6e943c7102e4", + "0x00000000000000000000000000000094a0006e6e6278129c8b38222221b9bf3d", + "0x000000000000000000000000000000000015b8d86c5bb9106073e23a4d6a73e9", + "0x000000000000000000000000000000700d1636111e0ffa46841794b6979e84dd", + "0x00000000000000000000000000000000001b2fc77dede1e2c5c83cdb532649f9", + "0x000000000000000000000000000000f8a7d6c106f6b602120f7bf96bfc870c43", + "0x0000000000000000000000000000000000176b57df4f728f9a03673c56c4f26b", + "0x000000000000000000000000000000a64be4da0751bd0e1e80ecfe8e147dff5d", + "0x0000000000000000000000000000000000102644898d5b0b5fe104db8e11d7c3", + "0x0000000000000000000000000000008a293507a0b6b3a477d6502d66e5f00ee1", + "0x00000000000000000000000000000000001b5be7eeec4a5ca9d2df8358037247", + "0x0000000000000000000000000000001b2f6a5cbc2a75dcb37704309782606ccc", + "0x000000000000000000000000000000000015f1e0544192319404f85d06de6c6c", + "0x000000000000000000000000000000629baa2534fa8606d43045d715db21bcc7", + "0x00000000000000000000000000000000002a4a7220dc96b36ef723aeaafe9cb8", + "0x00000000000000000000000000000058731861306a94679d99c7d705f1152e6a", + "0x0000000000000000000000000000000000235c3bd4d0f5f9e6ebb20c0c54f3dc", + "0x000000000000000000000000000000154f6d87c04b761162e63e5cad170cd926", + "0x00000000000000000000000000000000001435cd052fe4c1672db9c8f3ca98a3", + "0x00000000000000000000000000000074c3b3b6553cf65134fa2f28443a74421d", + "0x00000000000000000000000000000000002b2fa343fd7f1a628c5e598cbdba80", + "0x000000000000000000000000000000a052347f6e7f9c77937833804eacda4647", + "0x000000000000000000000000000000000019973ea969df05b52113dc55ff4acb", + "0x000000000000000000000000000000c035e48b87118c2357f4936ac3b9e4bf60", + "0x00000000000000000000000000000000001fe70405a04edeed95a668043e3f81", + "0x000000000000000000000000000000faf33ebfda6d7f3df91206bd3420154040", + "0x0000000000000000000000000000000000173fd9215a00f581fb28e9bac1f75c", + "0x00000000000000000000000000000051e10527b1818c70666633f21c6f5db5ff", + "0x000000000000000000000000000000000024382d0546b5d7d68d0da4588ed1d6", + "0x00000000000000000000000000000017a5a1d67c41e45cb791ef8ead6bffb4a5", + "0x00000000000000000000000000000000000653cd166df9a1a1cf31d9b9802428", + "0x000000000000000000000000000000ec620126d267ebea99e7d889e7e7b24bd9", + "0x000000000000000000000000000000000001e848168195b3b528d42d0778d066", + "0x0000000000000000000000000000000ae2d971c8bb30673575288ce447660620", + "0x00000000000000000000000000000000000e66b7fa0f1477be275dcfe5eda140", + "0x000000000000000000000000000000c28c66d9e8fc26a53b0aa11312b71a296a", + "0x00000000000000000000000000000000000190c153c3b9021df54986dedeb31d", + "0x00000000000000000000000000000021237584c5e6d6719263acec3aa12eb8c8", + "0x000000000000000000000000000000000016b357132e121e1ec8e9af5f97c896", + "0x0000000000000000000000000000004e653292a11bf3e2309f77dd4de7a4465e", + "0x00000000000000000000000000000000001084365150df3add914d6a548a8f3d", + "0x000000000000000000000000000000cfa652e36460312f753d21c158be1a5fb5", + "0x000000000000000000000000000000000025ce43059941c73019260b3cdcbd05", "0x000000000000000000000000000000725ce8e8fb5c6346f6dfeb9261eb398cee", "0x00000000000000000000000000000000000721ab622e3899d1164f3cf8c1bf06", "0x0000000000000000000000000000009656984ef9db170ea5f30f9ec4165d1919", @@ -2243,159 +2274,159 @@ prover_id = "0x0000000000000000000000003c44cdddb6a900fa2b585dd299e03d12fa4293bc" "0x0000000000000000000000000000000000000000000000000000000000000000", "0x0000000000000000000000000000000000000000000000000000000000000002", "0x0000000000000000000000000000000000000000000000000000000000000000", - "0x000000000000000000000000000000f06f46e68cea2377477ad3d8274e8ef357", - "0x00000000000000000000000000000000001d610ef87b1762f004a2ee3542c45c", - "0x0000000000000000000000000000001d6ac3221aa19fca90f88e881eccd22516", - "0x000000000000000000000000000000000028c364a8b8b73b1006f92a819e8e73" + "0x000000000000000000000000000000aba2276cb5e6c4ab3f96162c363e188f47", + "0x000000000000000000000000000000000010c7a2cee5a7b2177e5b4a213a4702", + "0x000000000000000000000000000000730080b8d7a103455c6f176e0b90ef8fe3", + "0x000000000000000000000000000000000023d72c376d87edadba281fd56990e9" ] - hash = "0x1ab4e5238550665a24965eb458137017fd35af336a14389e1fab57ef37f8d1eb" + hash = "0x1b399a6aac06287a0fb728b9904b38d294032a602a177a7fcf32b055da7b92b5" [inputs.data.l1_to_l2_roots.public_inputs] sha_root = "0x00089a9d421a82c4a25f7acbebe69e638d5b064fa8a60e018793dcb0be53752c" converted_root = "0x2373ea368857ec7af97e7b470d705848e2bf93ed7bef142a490f2119bcf82d8e" - vk_tree_root = "0x22a749df2f64e23077f364a4efdd544e0a0666eb43bd1560f5a698b10997c43c" + vk_tree_root = "0x035e62aad06a66ce8d2a9d112a620e2337018ff2c763061808a24ea0f220ffbc" [inputs.data.previous_block_header] - total_fees = "0x0000000000000000000000000000000000000000000000000000000395853c00" + total_fees = "0x00000000000000000000000000000000000000000000000000000000068c6d00" total_mana_used = "0x0000000000000000000000000000000000000000000000000000000000004a40" [inputs.data.previous_block_header.last_archive] - root = "0x05a86109bbbc34b0d091a63b7780bb2876816077b2794a61f14956048fee6dea" - next_available_leaf_index = "0x0000000000000000000000000000000000000000000000000000000000000007" + root = "0x0eb121ceb76f8cb8b08038e1edd7adbb9217e382177ee3ed9b9ad061ea723e80" + next_available_leaf_index = "0x0000000000000000000000000000000000000000000000000000000000000009" [inputs.data.previous_block_header.content_commitment] num_txs = "0x0000000000000000000000000000000000000000000000000000000000000001" - blobs_hash = "0x00f15f9a8c358d80de95420278ef4c3e2570d2a4de90b66d4cf041f4a299763e" + blobs_hash = "0x006bae857e7ead21f042dc3f01d8b08bc0b96fbabcce56c65ef2fe90025a08de" in_hash = "0x00089a9d421a82c4a25f7acbebe69e638d5b064fa8a60e018793dcb0be53752c" out_hash = "0x0000000000000000000000000000000000000000000000000000000000000000" [inputs.data.previous_block_header.state.l1_to_l2_message_tree] root = "0x2e33ee2008411c04b99c24b313513d097a0d21a5040b6193d1f978b8226892d6" -next_available_leaf_index = "0x0000000000000000000000000000000000000000000000000000000000000070" +next_available_leaf_index = "0x0000000000000000000000000000000000000000000000000000000000000090" [inputs.data.previous_block_header.state.partial.note_hash_tree] -root = "0x226de9094f6d24d238e95ffd8405b135f935c219ab03521be272b50dbee84657" -next_available_leaf_index = "0x00000000000000000000000000000000000000000000000000000000000001c0" +root = "0x086fb1567f928f1f3625c4ddea1273e8212026271096da1c9dc7b122ca0ab079" +next_available_leaf_index = "0x0000000000000000000000000000000000000000000000000000000000000240" [inputs.data.previous_block_header.state.partial.nullifier_tree] -root = "0x11acbe70b9d65b56301ecb1c77460af1fea146c673a9be1db8e49734ebb2d226" -next_available_leaf_index = "0x0000000000000000000000000000000000000000000000000000000000000240" +root = "0x15d14f0b89b26d6c6631958654e179ed799aecbefacaf33ea8576b7065e74a65" +next_available_leaf_index = "0x00000000000000000000000000000000000000000000000000000000000002c0" [inputs.data.previous_block_header.state.partial.public_data_tree] -root = "0x26f178b00982e1a0a98d504b52a5bf223133a9b49d72fbeee23777a4a99ebea6" -next_available_leaf_index = "0x000000000000000000000000000000000000000000000000000000000000008e" +root = "0x143d98e440768449167bec8740f2677ec3f463b9adb382bf39fe7d5ac56649b7" +next_available_leaf_index = "0x000000000000000000000000000000000000000000000000000000000000008f" [inputs.data.previous_block_header.global_variables] chain_id = "0x0000000000000000000000000000000000000000000000000000000000007a69" - version = "0x0000000000000000000000000000000000000000000000000000000000000001" - block_number = "0x0000000000000000000000000000000000000000000000000000000000000007" - slot_number = "0x0000000000000000000000000000000000000000000000000000000000000012" - timestamp = "0x0000000000000000000000000000000000000000000000000000000067d9b780" + version = "0x00000000000000000000000000000000000000000000000000000000e6f03fcf" + block_number = "0x0000000000000000000000000000000000000000000000000000000000000009" + slot_number = "0x0000000000000000000000000000000000000000000000000000000000000022" + timestamp = "0x0000000000000000000000000000000000000000000000000000000067fa7610" [inputs.data.previous_block_header.global_variables.coinbase] - inner = "0x000000000000000000000000a540911acb4195ad0bbfa2c10a46e3e54df4c649" + inner = "0x00000000000000000000000071d84878d343d87f145bfcc3af71b20b7430de57" [inputs.data.previous_block_header.global_variables.fee_recipient] inner = "0x0000000000000000000000000000000000000000000000000000000000000000" [inputs.data.previous_block_header.global_variables.gas_fees] fee_per_da_gas = "0x0000000000000000000000000000000000000000000000000000000000000000" - fee_per_l2_gas = "0x00000000000000000000000000000000000000000000000000000000000c5b70" + fee_per_l2_gas = "0x0000000000000000000000000000000000000000000000000000000000001694" [inputs.blob_data] blobs_fields = [ "0x000000000000000000000000000000000074785f737461727400000a00010000", - "0x0ba960e97c615be5add35c752876169bd5731e369552ef696e9f09318f082248", - "0x00020000000000000000000000000000000000000000000000000007484aeb20", + "0x0c5d4c6905ed800fa5556c586cddfe32a32c30909155afca6e9dd3fc8eada520", + "0x000200000000000000000000000000000000000000000000000000000d4509a4", "0x0000000000000000000000000000000000000000000000000000000004000001", - "0x074da78b09e60555ebd138fa37051f513ed4103bb52bd5e6a6633969b0420d5b", + "0x0ea454661391cdf4c0903ca777fd23bdf68cee92d71680c013cf8e7407479b73", "0x0000000000000000000000000000000000000000000000000000000006000004", - "0x2f79bae800690ed6b54754c0453d0a287a3a23e5baea13cb9e33014e3063c71d", - "0x1fbffb7e3dd073d1ff0f74491a59a89d1da4ed5f6fd76188dfd7a2c682719495", - "0x10bd5eb801c0a60ecde3a0f7b44428535c228e6c67894e5baaa9c85394bbacde", - "0x00000000000000000000000000000000000000000000021e19e0c55df340ebac", - "0x000000000000000000000000000000000074785f737461727400000c00010000", - "0x1a99ac217cf56a671cc4e703c541b80da33e34d561416659d634fd2c4b04c2ef", - "0x000200000000000000000000000000000000000000000000000000101494d4e0", - "0x0000000000000000000000000000000000000000000000000000000004000001", - "0x2c7db859c1d479548129c9489d34a0610a62a0fb66d6054405064fe8ea9d6c4f", - "0x0000000000000000000000000000000000000000000000000000000006000006", - "0x177db8f86ebaf88525c84fe28061b9c66ec66819cebbcc97cf3568f9b39f291b", - "0x0000000000000000000000000000000000000000000000000000000000002328", - "0x174be7beba6ac763873c96e607124e6ff9fc24c919dca3968f9cd60e350731f1", - "0x00000000000000000000000000000000000000000000000000000000000003e8", - "0x10bd5eb801c0a60ecde3a0f7b44428535c228e6c67894e5baaa9c85394bbacde", - "0x00000000000000000000000000000000000000000000021e19e0c54ddeac16cc", + "0x2dff728f1aab667e8f5b32b9cb12930c3a52bde716e45ce39700305471f795f8", + "0x2cf807d522bb2fda2c20e097a5c3eb396846b6f9c889822715185867baf463f2", + "0x16847710038f83e16cf6cf05eeec890a5e6907aaec87b1af7f1c6b21bec730c4", + "0x00000000000000000000000000000000000000000000021e19e0c9af61901218", "0x000000000000000000000000000000000074785f737461727400004600010000", - "0x24ab98d54f58cae582f652b28f75208ff2aaf898514211ed5e12aabeadf9c28b", - "0x0002000000000000000000000000000000000000000000000000000395853c00", + "0x1238caddb1ebe981781659591ad7b72c2157379453c008fed2abdc9fee896449", + "0x00020000000000000000000000000000000000000000000000000000068c6d00", "0x0000000000000000000000000000000000000000000000000000000003000002", - "0x01aef3c8591862ef3cd270dfe93d349c8c74c694ffd3a4374cd1b9e082cc3397", - "0x1818affd4095462352f82a6e6fc24398275905bfe5572c32040f934b6c0c3a36", + "0x124ece38b99ba52570053dd5d06a236faa75dee0cff306d9c6437cfb1ca574da", + "0x22572a07d2af41285206218eb7ba4e20e4840b9e932b3d8bdd7e15bdfac467f9", "0x0000000000000000000000000000000000000000000000000000000004000002", - "0x1d44d95d26e74fe4d87a1693c0929db1d7ad1344e6c9777a532914ea902709f5", - "0x19a8cf766fcdfced9885862c672993c2b14b0e59682ca9e7263bb7bb6bc93930", + "0x12960243751655dc4dbe80eb696f75bea0c65e12142ea4ad730bd305554b6685", + "0x2828359b0680c63a622c7ddcaa958cd394c4180ec4188bea5883042d4213f12d", "0x0000000000000000000000000000000000000000000000000000000006000002", - "0x10bd5eb801c0a60ecde3a0f7b44428535c228e6c67894e5baaa9c85394bbacde", - "0x00000000000000000000000000000000000000000000021e19e0c54a4926dacc", + "0x16847710038f83e16cf6cf05eeec890a5e6907aaec87b1af7f1c6b21bec730c4", + "0x00000000000000000000000000000000000000000000021e19e0c9af5b03a518", "0x0000000000000000000000000000000000000000000000000000000007000039", "0x0000000000000000000000000000000000000000000000000000000000000012", - "0x22d5759e53726b19617f0744b8ac0406c933f8b4a8db9c4ae386c8323de698fd", - "0x0144f2b1eb90b363f5a400ee8e2d0ef0550b531e4ec273edfdaed5201b4567ef", - "0x0001e1ad0ede2d087f0884dad9b3733632a12bccd66a964808639b9d966957e2", - "0x00da73593be159c7ae6b3e23eba7e2f6291b3a13f495b8df6ac2baa9d5ade3f5", - "0x0062ad033738e12e91998f384af8cbc42d0addcc9f96394e381b3d192d7d7ba5", - "0x00e95c6822e93dcad73a6302df151387f26316572dd2923f4dd3af5ef14c8e62", - "0x00e2276069ecb840159ea61dccfdb61170caec5d938f10cc95afb430f3909897", - "0x009a14a52d851a1f16f6365e518751ac8a71f55dc42ed45f91c58af8b9103dc6", - "0x00c646b2030f0705483071c043f576a4244f8d3a9df7863568e1feb35114acc4", - "0x000582f4782d2ce9838dddae7c4c88c0b8d6d7d98f9270556d71a78a704d8c5b", - "0x0084d2de912ed9735b70ec5aae8ebc3af66c557112c5db5864059fac959613ca", - "0x0042920d68fe055b96ad34f4bff55650bef325cf304c468fcd7b8872fcc4c886", - "0x00e78294dfb4306c1b6746aaa3763e0e1e8c04341ae004a2681edcffa357ba82", - "0x00006261b98cfd19be0fc0861bbe60d5493bedc6813431d8508c0ab077c1f0f7", - "0x002b606231a752e0d4f44f9c50e04ad8f13086c00a5af062028e3af2fcd57bf8", - "0x003640ebad4af8e5077481da331b2a4ec13bc8675b51a3fefdfb3be35847bb8f", - "0x0038f9c262b771716e484817564d0073d0069d724931261f573c7506cb57fb42", - "0x0015f686c53d9eba50ce145d4cf28b2f81dce038bebbafe35e3ab9b34957e7ed", + "0x1da0b111d6bca33db3cf2e94f4cb0062ce1ec4dec6d7000d375e8a252f8228bc", + "0x1d6baa36a8ee92fda1013df177a0c35c6f81484b197a33132293ccd896bcbcfd", + "0x000180bc11a2e54db26a5e24fb08af0af52d62f6ed9d4748440f0571e539cea8", + "0x00d33b7914aa8bdd1588b75c37ae2cf58ced264b2e8ff80fa4a48661e6a5418a", + "0x009d6830230624dc41127fa1e1ec09752f2be58fc75fcd95d6479bab6716f60d", + "0x0039c3021bd9d10f2244c1144bfd193af969be9188fd633c87cbfa8e01e2b006", + "0x00a7dd66f4e2a11bd3c236cfbf572452b5864c9d98fa89e1236391b840e468e3", + "0x0093e1dae1d3fded084b955dea8cd655e908319045cc7153df6beac5efb24fe8", + "0x001af925deb5c28b6e804bf729c326770dd4cf7426d4666c6d7f0bceed4eee3a", + "0x0018642a3a89ca1ebb22f712e7d177031dd318a31bc9481b535cab77b57d3d2c", + "0x0024f01d07157fd5f2451bebde51f014f8677ec0a20f7e7cc90550578bdf482b", + "0x008a7185b6c43c8af9b292c43bade1dcb595cdd31784684befcfb94c4adf82b3", + "0x00caf175a6363b1520d61bbbf1427dbf15d297ac246aa034e56608dfd1b16d53", + "0x004a6113b2330a2deef1d83a5f7e114f43480ee7c158e0701570e868a915d11d", + "0x004534eb2423619a8d2082ee25c877ba2e80c67d8854aace1f3f9a8ebdd2bea5", + "0x003b4b5cae16b0d855090565bb9ae0d42ae1df85d85c03a276385484752c2f77", + "0x005c98f23d0745a3edc92fcd5291752038d2a7f111b41ec12585e273dc0c555c", + "0x00e0e936ff1723f75b9777fab5fc8f2a7cbbf145bd7f39f5d9825e8c32bcf2e5", "0x0000000000000000000000000000000000000000000000000000000000000012", - "0x1a9cd020b5c3d0a9454f11d66080a6a1fe7aab783d76adbc0c9a18827c8d9dcf", - "0x0e8e32add0f2ddce87d09d88c6064fccdb894515fe6958fcc29b1fbf725c5446", - "0x00011c0a7d48b6d2be3740df162b53bcb29f09cbb15cff442cf835c727fca33e", - "0x00e650809521371e2df975e3a825821c2ae3635941cdd16512a2a10d1504ba90", - "0x00c3d3e4fd4a2cdb26f54bd8744a2a85a7bdeb7d85774807593ec252b2587a31", - "0x0098382d3a3ac1efa9c9c28bb697a73904b65593618545b88d5dfa2c56b71a11", - "0x00bfda4d4b786c88dcb1ef627bafa099e3dac6167be6277c127d9ae284c30659", - "0x00afaae19e056b5406fba411644409bc39ff9ef03b1480f4693681e21817b1b4", - "0x002934f18e2a564d898c843a979e5958f038b8d5367fa13379ac605aa25f9c7f", - "0x00a61423fb99182689ebb26b6f9cc2e3ab54f7c80ad351ed49307b562a9455ce", - "0x001fc6eeef0504afb57aaac696559497375d2d22a532282e935d7c207137114a", - "0x005c4489572df880f4cd0b7e1720da83ce1ac45b78c140b63a5a582d26ff4cb1", - "0x00e88b107fe63b3734f21a75f7548b03e4c10048dad1f6690ea7d595e044afee", - "0x0072fae066317955095057072726ab583ecb1e1e0d4d769710fcc103d7446020", - "0x00050a33c36b4950d7ebda8ab9d1811a1aa5fb5f0a3e0e3ab24465739ecba48e", - "0x00f8d4043a96bfa895e7991193742eef0f3b7b7298bfa3774df5acc409025118", - "0x00cd490fa7a1ef2dea239fffc375d0d12044ed7ce8ada70a4dce5ea81ee28aed", - "0x00bb9d0ac49ec3dbb9c5c875c9bebe8f94e4ca2152018cff4f1ec4701c4f17ec", + "0x00e697757edeffa1375244f8d8c2d476391c77b5be33b4b5bb4c78931bcf610f", + "0x08b9c76c4c60d4bb89bcfa37261baefedabe006120a12b77e6b588869f76232b", + "0x00000d2a8690a95e6b4a3297649dd7b28a4eb451d694203b314badae687cc153", + "0x005a0909831fea43a0a72a971f999c1e3d390c9b73116f9d099fe64d48f2d361", + "0x00b5751d1af9581270053317f8db019548afdbf398ac48abe447d9832790608a", + "0x00eac9a5ca2931ce8147bfb3d9af3d5d3b4ac505d7cea7c5d2768ba1cd03d096", + "0x005c6d9d3f3564e44f88f8db3ee6fd202a428b89e015f32764da99453c4650b9", + "0x00287aec55e7ef04f9fb9485d12bad2baa0e389b4945551fad452ee44cd51476", + "0x00c5386ef789a26e705f79ed32fdf3bf4e88bbe464d76e594f7f41cdb46347e0", + "0x003075f51116b450cede05a3ef7f43fe653a69eba76e425394246f2bbb222786", + "0x00b5d099c184115161aa82395fb25b3e033e3557a38c08c3b77e6b2dc50210ef", + "0x00e6622fd8557c574168783b9756b464e07fb9f1773c713cff6c16455d358b8b", + "0x00a2db008eb69f810078f2c8600e7874c7329876af075ee074db02049e230a79", + "0x00da8d427988ff97b51a91a63a18f4b4f6bc54f7e3cf5b8ed2274be831862d82", + "0x00251ab94e8cffefd4b62b0075d19df301fc962d0ceb662ae1de6efbcafd0cac", + "0x00d4016048b170d2e4d4fe6dc2ccef66b8bcb40f9ba750b612887bd8083b651e", + "0x009270430d5ff0eabcefcaba5340c488a7e8a8c0acf1f3c03a9b0955ac9c496d", + "0x006f2b8aacbe6b9085416cd56c823f1a8bc1d5d746150f01894b0e067c8dc16b", "0x0000000000000000000000000000000000000000000000000000000000000012", - "0x28719fa3cac28e75bee0f3ebd748dd037d6a2cf98e9467cdfcd9ff7680b1785f", - "0x23d4a2fad7d9d1a15872c6644e865506b0dac3ac24eba72096df1b684063f13f", - "0x00012cb7a6a779f5d98d738659fc88488b9779ab530c24719d8cb34bae47b568", - "0x00dd3e2adbf3b513f4c8965ee7b587d6eb83a15a47e40b3dad7370579c72de05", - "0x00d613d2e243ebb798693b6563b7458349695f4bed2cd3facf290ac7d121cf23", - "0x00df7023bf95dc38e256b3afeefc1751240c618a89f2074c573fc0a8d8986039", - "0x00851f736e6c92ee34acaab4a9b7ad538c1330e363b71e43e366359875191bd6", - "0x005a5dbaf0a4bf060be46cb41819da2f0aae3da65abb064224faa9074b3438b3", - "0x00422d491bb049ffc9606eb05f797b84a872411aeef9f5b8be491e547cfb1a74", - "0x00e1857493f50457b7ad75e1c8917ebfa8aea0f2e1c2275e20f0e70ba068cb51", - "0x0075fef42c96b8f7bb40f0274c843540f2c7cb7e292e28c3692a43c675fec4a2", - "0x0023a77561f78ae2c960aeaa84e897b9d0f2e976c3220803e684c0af5d2d9b9c", - "0x00968c4d70ac0838e28580493c9babd7347f2d645c3c6f73feb3cb2a6a6b8fd1", - "0x008e5c4f8b2edf23e8674e53df06073f25642037b8b548cb855b22b20d9c56b7", - "0x00562e179ad346f0ac4080ffb8f445850280dddf819da7a21e85ed094eed63dc", - "0x0099e0e585cd6817126e6449abc92fd2812f7bb39696f35c567e3bf86f8b6844", - "0x00f5a496e3c7754a1a2b7c3ca6072a43e476b2d694d06d049309e3538369cb68", - "0x00b9f39100229cbea17244a3f98d44a7c8e95511de7f549e1a78600f6990ebd5", + "0x2b19629a1788c781e326cac55fdb90510fe8f852cdf9d3101d862974d6c27960", + "0x2a5386ce1b89ab6797ce2b5651ea49eb9ed181a48a0231dbc5330f1549306f7d", + "0x00015e18a7668dde5bf73ce983d342b2f5f159d0e6fce37ad9f6f39fbc4ba6e6", + "0x001317afe1db7f452a49700c6862cb9f9b10071e73cf30eb62e117233fcea7b3", + "0x005b021e34b30b2c2e2f1bcd730ff64940c73fdc4e180bd50778370b214524cd", + "0x00f9e3a45a6e629add9ab1f48df4765af23c25828d4569379041ef6e4df7e72b", + "0x004e5b9bc62240fdad3f852640d563571b51fe546b85b907dd6255485d8973a5", + "0x003fe85ab9cf6945d8019927604502668836711d700c3495b7ff93f70f0bae31", + "0x00d25af335eb3d60fce61374a8b61453ac970278ea605a38e7537264b13aa1bb", + "0x00e8da58e4b64079890e361d5148e059fe0f85dc42306335d1e78a6b566577ee", + "0x005f7ba24bcfdf165f78c11694af8a2cfcc340ad1768e5bbfe594c99fa068ee9", + "0x00c9b09a2b39cbad073e3ad87df4609ef3fc4315a8ccea3e81145a5e90a7851b", + "0x005d34873756218cbb2debd6a8152e6117ea93daeb65afd7ed0e3089b0511a46", + "0x0034fda65a5f65e6bdbccc3ccdff7bc2ad10581fb6fd7dff10b77cdef3e7e4d7", + "0x00eea3fbd2de4bcead2b7bdf6b3bb3504dd4fcf18b17edbfac69b8d3452769d7", + "0x0051167a7afec0799f1645606c7d6a93644b2edc204b1dc5944b5160c61c59b9", + "0x001b13076c419aeabb9bff90fc4e44cb6069901afc28652a65d88366d9fd1fe9", + "0x00d65fea12cae6dc51459ad77c86693405ea67d3a5d4d36c9b6d9c14a8e0524e", + "0x000000000000000000000000000000000074785f737461727400000c00010000", + "0x302b2a7a43eb7765d59e35520680067d12152c3410ff04ce0dc55004d9fad060", + "0x000200000000000000000000000000000000000000000000000000001be37338", + "0x0000000000000000000000000000000000000000000000000000000004000001", + "0x1878a9c6b02d63e4e1d133f5df20d6790704a0dba43009fdb34ba73090729a87", + "0x0000000000000000000000000000000000000000000000000000000006000006", + "0x04fa84261cd5d5e7df6674a504cf7f363e1c5af8c6af5f64f2eced824c81c6bd", + "0x0000000000000000000000000000000000000000000000000000000000001fa4", + "0x0ffd26490a49a35f239f15a77979146990d73fbdf7850167546fcee4df30c733", + "0x000000000000000000000000000000000000000000000000000000000000076c", + "0x16847710038f83e16cf6cf05eeec890a5e6907aaec87b1af7f1c6b21bec730c4", + "0x00000000000000000000000000000000000000000000021e19e0c9af3f2031e0", "0x0000000000000000000000000000000000000000000000000000000000000000", "0x0000000000000000000000000000000000000000000000000000000000000000", "0x0000000000000000000000000000000000000000000000000000000000000000", @@ -14593,12 +14624,12 @@ blobs_fields = [ "0x0000000000000000000000000000000000000000000000000000000000000000", "0x0000000000000000000000000000000000000000000000000000000000000000" ] -blobs_hash = "0x001f315f3b2ae1f9816e1739a0610f83dcab6a709ff1ccf8467cf57815765817" +blobs_hash = "0x000194e55bee5baf79e9e53affdbf0c3a9cc6d93500c4c57d64b75955012093b" [[inputs.blob_data.blob_commitments]] inner = [ - "0x00aeb6e13bb3f3f4e2f852c70c55c2eaa21bde055664ec21c1cefbcf73173b1a", - "0x0000000000000000000000000000008545a84ab1bd41d1f4b0cbcbf4f9333079" + "0x00b9945955a60965735c43325b3513f4694b4a49461ac2d632318bf8b163d339", + "0x000000000000000000000000000000ebf99bb529fdf3b5589dee4aaeed3a81d9" ] [[inputs.blob_data.blob_commitments]] diff --git a/noir-projects/noir-protocol-circuits/crates/rollup-merge/Prover.toml b/noir-projects/noir-protocol-circuits/crates/rollup-merge/Prover.toml index 61e44a459354..5815e0ef96e2 100644 --- a/noir-projects/noir-protocol-circuits/crates/rollup-merge/Prover.toml +++ b/noir-projects/noir-protocol-circuits/crates/rollup-merge/Prover.toml @@ -3,57 +3,57 @@ rollup_type = "0x0000000000000000000000000000000000000000000000000000000000000000" num_txs = "0x0000000000000000000000000000000000000000000000000000000000000001" out_hash = "0x0000000000000000000000000000000000000000000000000000000000000000" -accumulated_fees = "0x00000000000000000000000000000000000000000000000000000007484aeb20" -accumulated_mana_used = "0x00000000000000000000000000000000000000000000000000000000000096de" +accumulated_fees = "0x000000000000000000000000000000000000000000000000000000000d4509a4" +accumulated_mana_used = "0x0000000000000000000000000000000000000000000000000000000000009675" [inputs.previous_rollup_data.base_or_merge_rollup_public_inputs.constants] - vk_tree_root = "0x22a749df2f64e23077f364a4efdd544e0a0666eb43bd1560f5a698b10997c43c" - protocol_contract_tree_root = "0x16862f3a312325ba6b37abe1073a51ffb333ee32fbaa437454dce33423766de6" + vk_tree_root = "0x035e62aad06a66ce8d2a9d112a620e2337018ff2c763061808a24ea0f220ffbc" + protocol_contract_tree_root = "0x071f2e01b58eff84ebe1608c9eccf21bf2d51ac74cac3816a3dee8372cdb0b7d" [inputs.previous_rollup_data.base_or_merge_rollup_public_inputs.constants.last_archive] - root = "0x1f1bf0820bb2f2c54506f0a854e4ade0ff236d216ec2ae5c14ca5683cbbfb723" - next_available_leaf_index = "0x0000000000000000000000000000000000000000000000000000000000000008" + root = "0x1945c10a2f89ef5c07ce78f75ece0980a1fb9f72614ac5032e8e9e4a198ae864" + next_available_leaf_index = "0x000000000000000000000000000000000000000000000000000000000000000a" [inputs.previous_rollup_data.base_or_merge_rollup_public_inputs.constants.global_variables] chain_id = "0x0000000000000000000000000000000000000000000000000000000000007a69" - version = "0x0000000000000000000000000000000000000000000000000000000000000001" - block_number = "0x0000000000000000000000000000000000000000000000000000000000000008" - slot_number = "0x0000000000000000000000000000000000000000000000000000000000000013" - timestamp = "0x0000000000000000000000000000000000000000000000000000000067d9b798" + version = "0x00000000000000000000000000000000000000000000000000000000e6f03fcf" + block_number = "0x000000000000000000000000000000000000000000000000000000000000000a" + slot_number = "0x0000000000000000000000000000000000000000000000000000000000000023" + timestamp = "0x0000000000000000000000000000000000000000000000000000000067fa7628" [inputs.previous_rollup_data.base_or_merge_rollup_public_inputs.constants.global_variables.coinbase] - inner = "0x000000000000000000000000a540911acb4195ad0bbfa2c10a46e3e54df4c649" + inner = "0x00000000000000000000000071d84878d343d87f145bfcc3af71b20b7430de57" [inputs.previous_rollup_data.base_or_merge_rollup_public_inputs.constants.global_variables.fee_recipient] inner = "0x0000000000000000000000000000000000000000000000000000000000000000" [inputs.previous_rollup_data.base_or_merge_rollup_public_inputs.constants.global_variables.gas_fees] fee_per_da_gas = "0x0000000000000000000000000000000000000000000000000000000000000000" - fee_per_l2_gas = "0x00000000000000000000000000000000000000000000000000000000000c5b70" + fee_per_l2_gas = "0x0000000000000000000000000000000000000000000000000000000000001694" [inputs.previous_rollup_data.base_or_merge_rollup_public_inputs.start.note_hash_tree] -root = "0x226de9094f6d24d238e95ffd8405b135f935c219ab03521be272b50dbee84657" -next_available_leaf_index = "0x00000000000000000000000000000000000000000000000000000000000001c0" +root = "0x086fb1567f928f1f3625c4ddea1273e8212026271096da1c9dc7b122ca0ab079" +next_available_leaf_index = "0x0000000000000000000000000000000000000000000000000000000000000240" [inputs.previous_rollup_data.base_or_merge_rollup_public_inputs.start.nullifier_tree] -root = "0x11acbe70b9d65b56301ecb1c77460af1fea146c673a9be1db8e49734ebb2d226" -next_available_leaf_index = "0x0000000000000000000000000000000000000000000000000000000000000240" +root = "0x15d14f0b89b26d6c6631958654e179ed799aecbefacaf33ea8576b7065e74a65" +next_available_leaf_index = "0x00000000000000000000000000000000000000000000000000000000000002c0" [inputs.previous_rollup_data.base_or_merge_rollup_public_inputs.start.public_data_tree] -root = "0x26f178b00982e1a0a98d504b52a5bf223133a9b49d72fbeee23777a4a99ebea6" -next_available_leaf_index = "0x000000000000000000000000000000000000000000000000000000000000008e" +root = "0x143d98e440768449167bec8740f2677ec3f463b9adb382bf39fe7d5ac56649b7" +next_available_leaf_index = "0x000000000000000000000000000000000000000000000000000000000000008f" [inputs.previous_rollup_data.base_or_merge_rollup_public_inputs.end.note_hash_tree] -root = "0x226de9094f6d24d238e95ffd8405b135f935c219ab03521be272b50dbee84657" -next_available_leaf_index = "0x0000000000000000000000000000000000000000000000000000000000000200" +root = "0x086fb1567f928f1f3625c4ddea1273e8212026271096da1c9dc7b122ca0ab079" +next_available_leaf_index = "0x0000000000000000000000000000000000000000000000000000000000000280" [inputs.previous_rollup_data.base_or_merge_rollup_public_inputs.end.nullifier_tree] -root = "0x0955da358234169e3b0c84ca4ba1a82e6f945e44f75db173f0ffbe96d6e59fa4" -next_available_leaf_index = "0x0000000000000000000000000000000000000000000000000000000000000280" +root = "0x2ccff935898cd695d6bd31ae47e1744ac8de672eabbd9c399b5649fa70a1a070" +next_available_leaf_index = "0x0000000000000000000000000000000000000000000000000000000000000300" [inputs.previous_rollup_data.base_or_merge_rollup_public_inputs.end.public_data_tree] -root = "0x07973029b1161c78858bd5e1558e1d5c4f47fd8a4b53bf7950090cd0af0482b5" -next_available_leaf_index = "0x000000000000000000000000000000000000000000000000000000000000008e" +root = "0x1c97e6a1d89c110f0bb1932ea97b605382c042f7f4599e0ac047575ca0fdc9f4" +next_available_leaf_index = "0x000000000000000000000000000000000000000000000000000000000000008f" [inputs.previous_rollup_data.base_or_merge_rollup_public_inputs.start_sponge_blob] fields = "0x0000000000000000000000000000000000000000000000000000000000000000" @@ -80,15 +80,15 @@ next_available_leaf_index = "0x0000000000000000000000000000000000000000000000000 [inputs.previous_rollup_data.base_or_merge_rollup_public_inputs.end_sponge_blob.sponge] cache = [ - "0x00000000000000000000000000000000000000000000021e19e0c55df340ebac", - "0x1fbffb7e3dd073d1ff0f74491a59a89d1da4ed5f6fd76188dfd7a2c682719495", - "0x10bd5eb801c0a60ecde3a0f7b44428535c228e6c67894e5baaa9c85394bbacde" + "0x00000000000000000000000000000000000000000000021e19e0c9af61901218", + "0x2cf807d522bb2fda2c20e097a5c3eb396846b6f9c889822715185867baf463f2", + "0x16847710038f83e16cf6cf05eeec890a5e6907aaec87b1af7f1c6b21bec730c4" ] state = [ - "0x20177062f4b9b5167629de2a58a2ddb165832c03a2758b995b62a3d2f656fd7f", - "0x1b0058a153da301a93374e12f640147b386e434a52e188155ed5aa90f4f3f4f3", - "0x1cc45bef7c174ac51a6bf0939ffb5ae6cfb47099880a7d6e0706b1c5aa2c9812", - "0x0f1aae99b2ce17b1360df03c22fe27532db91a749b3f2c5b50c20a60660bdd1e" + "0x1a5150b81e6e523723126595e2d4680ca438358d794e3873ee7d5231bdbf13c1", + "0x04f361977e3fb4105fa2df3398f06789fa3b865d407e8390851cb9ad55d4c738", + "0x0f76c87280944015cc8a053a9d0985a7a8deca2cbb7611b685bb4ef11d4870e2", + "0x1d141beb34809eafbf94238d23dbcc931a2a068d44e4da847829f4d07378e9ae" ] cache_size = "0x0000000000000000000000000000000000000000000000000000000000000001" squeeze_mode = false @@ -665,90 +665,90 @@ key = [ "0x000000000000000000000000000000000000000000000000000000000000004b", "0x000000000000000000000000000000000000000000000000000000000000004c", "0x000000000000000000000000000000000000000000000000000000000000004d", - "0x000000000000000000000000000000604f3386df7ffcfbbe2e0851e8698f79be", - "0x00000000000000000000000000000000002e81f856de8ceb70308fcf3d2ff404", - "0x000000000000000000000000000000a5fb42e7b983b266cef75d94503ca83a45", - "0x0000000000000000000000000000000000305853e192180e0a4cc61ff940331f", - "0x000000000000000000000000000000b53fe6ff8ea5f1898fd480d52a2e9d54aa", - "0x000000000000000000000000000000000008b36f35101a1ca42b5c4d7c111450", - "0x0000000000000000000000000000006940c1f38e21d41d380825d016dc0c14be", - "0x00000000000000000000000000000000001f49902fe1df51d65302f306a83d7f", - "0x0000000000000000000000000000000d11dc82849bac4d75ce43a5651b649d9e", - "0x00000000000000000000000000000000001d47aedf32347079e816fd52ea8da8", - "0x0000000000000000000000000000009a8db581cc87bc29be39d84ac3854ccdd8", - "0x00000000000000000000000000000000001909276fc84feb08c589cb3f634ae5", - "0x000000000000000000000000000000ebb40113d8c9f1d1438263b4632ebffd7f", - "0x0000000000000000000000000000000000142fe33e00fe53c00521240a6db7f2", - "0x000000000000000000000000000000dc87505687f949b1c2e1812b4b9b6eece6", - "0x00000000000000000000000000000000001c8f54af08be0c68c9976e836fedc8", - "0x000000000000000000000000000000c0756dee65c1616a70d8ef76a0020d01a3", - "0x00000000000000000000000000000000000049ea246ed3925791a212539ab9ac", - "0x000000000000000000000000000000809a051a49663c14dc425ca1e573e15af0", - "0x00000000000000000000000000000000000219de59e0a3e7268ce556ffcea06d", - "0x0000000000000000000000000000004f657a26781c09e1ca5f6379861afbdc63", - "0x00000000000000000000000000000000000a10db9a8dc1a20d2a1ab7687785f4", - "0x000000000000000000000000000000e34f6fb73e2061daaa8cf6e49a8f321411", - "0x00000000000000000000000000000000001a665f0269423f36ede7d212b7f4f4", + "0x0000000000000000000000000000002b6175f3c2d13fefa852197a9e2c1ef43a", + "0x00000000000000000000000000000000002f757ec74e1efc65699cbf84c0c932", + "0x000000000000000000000000000000e696919dd11693741079c5f5dc31eaa606", + "0x000000000000000000000000000000000029a584f282ffbaf879b2e98e9c6d1f", + "0x0000000000000000000000000000000e0ecb5505aceda7d182bb0d8233b62abb", + "0x00000000000000000000000000000000002fc1534f08e1a31feb184dcca0e5a8", + "0x0000000000000000000000000000003429c14c7fc9ca2ba50d3575f6289650ec", + "0x0000000000000000000000000000000000213865498316e80d91f45716363c7b", + "0x00000000000000000000000000000066e3382a53311b8961b6164bfff9de5fda", + "0x00000000000000000000000000000000002b256cdd48a80074a1e977d5787114", + "0x000000000000000000000000000000ec8c6556756066c63462d030dad0f04a24", + "0x0000000000000000000000000000000000103236f5e8396a3dfd3313f4b863f0", + "0x00000000000000000000000000000061e35814c22e7fb118094876a02122ead1", + "0x00000000000000000000000000000000001f3fac6355d8ea84bec274abfcd055", + "0x000000000000000000000000000000c3f8047edbcdc2f5a62cd5d73e39b0042d", + "0x0000000000000000000000000000000000245a096371cf6c925176a147c37814", + "0x000000000000000000000000000000b075107c5961c379bed15f2fd241cc989f", + "0x0000000000000000000000000000000000187f95acf56b4f583054e3ea03103c", + "0x00000000000000000000000000000096a7bf259b81ceb4d1d447844c7b98cf2f", + "0x00000000000000000000000000000000001fdf4d64bfe977846272f1bc45ca2f", + "0x00000000000000000000000000000035d93826436a59665e1b02efd2617f91f0", + "0x00000000000000000000000000000000002823bca05aa8856d0a0e1073161a26", + "0x000000000000000000000000000000eadd571871d32b3dd0836dbd236cd53e21", + "0x000000000000000000000000000000000024e3e3e65acc31decea46ba97d7157", "0x000000000000000000000000000000e7bab6896d9724b5b46b796551dc5feed2", "0x00000000000000000000000000000000001fd93debdcf16cc93f99efd69e938d", "0x0000000000000000000000000000004b94434e1705c9bc2a4f5b2bc2a05c3c03", "0x00000000000000000000000000000000002a29d5563fd08e454dace1605a1aa5", - "0x00000000000000000000000000000083977e9d776bbc739d670fb7a3ee6d2b5d", - "0x000000000000000000000000000000000006443aea4db6288c67cfa0fe6749d4", - "0x00000000000000000000000000000039dc84295e332213b9820829ce5ee71fa1", - "0x000000000000000000000000000000000025f351dc7b798d2c0fd5986fb4b73a", - "0x000000000000000000000000000000f7fac2452365edb7d8cb398c7a2d3cb0c4", - "0x000000000000000000000000000000000012dfc23f7268a047e845c1b796ea2b", - "0x00000000000000000000000000000001003dbe6ee36462caf3c8fbb6dc782fce", - "0x000000000000000000000000000000000012b3fe7d555ed39c4152b18dd23eae", - "0x000000000000000000000000000000fd83fbd28c53a1cf488239d5ec93c5c9b0", - "0x00000000000000000000000000000000001dc0be26ae69cca87dc5df29868b8a", - "0x0000000000000000000000000000003521dae16f4c631ee64b9b4996d756c98a", - "0x000000000000000000000000000000000003670473b7dcd3d16727f981dd6d11", - "0x0000000000000000000000000000003a07b6b1295c8262f52483d2cb965dd9e7", - "0x000000000000000000000000000000000029db01089b2be5013375103128e26f", - "0x000000000000000000000000000000ea32b99d6e60cdba8ede2d63aa8121302d", - "0x0000000000000000000000000000000000046422f0edc1225b19ad87826c649f", - "0x0000000000000000000000000000000361509fbb64b35cfd325094d49a98d3b6", - "0x0000000000000000000000000000000000105361b0fce522f2483fbfa92c8e53", - "0x0000000000000000000000000000005077a9065b2f8b5f0f0aa2722caa4ab02f", - "0x00000000000000000000000000000000002026332dc316dcc4a5c5b2f20b0101", - "0x000000000000000000000000000000cbf9c143c21cf3e4635a42e13ec7bc890d", - "0x00000000000000000000000000000000002eda5c98a0062cfc5d203868e9c105", - "0x0000000000000000000000000000003477978d4c013c0bde16ab0e80ce827479", - "0x00000000000000000000000000000000000bdb609b914e3ac3bc7b9026bd6245", - "0x000000000000000000000000000000ab01dd9a75bccce85dd86e2f5313111b15", - "0x000000000000000000000000000000000013b8a327855e726ba7368e6f81bea5", - "0x00000000000000000000000000000047bb6cfeea33a443fac4f1a3ce577b5db8", - "0x000000000000000000000000000000000017aca0321d75b04f5d6ec64768cf68", - "0x000000000000000000000000000000e90a34516c3dec5afe5d57f1f1ad89f54c", - "0x00000000000000000000000000000000002b58bd97ab3ad899ad6e435efad9a3", - "0x0000000000000000000000000000008f792ebec9e5d1244bef574d4f0dfc97d3", - "0x000000000000000000000000000000000001b0fa9dcd7c54017200c7e9ab8587", - "0x000000000000000000000000000000aaadcefc6c15f327f1b6db92b64e0d078e", - "0x00000000000000000000000000000000000e9bf933dd12c2aeb556f9b6543f6a", - "0x0000000000000000000000000000001d77b93c66bcf3437661354d655f269420", - "0x00000000000000000000000000000000000ed88443234074ce6a5366312e6ba3", - "0x00000000000000000000000000000055883150fdc7178be0e05527f9c10631b8", - "0x0000000000000000000000000000000000137c5e360364993ae3bc34654c2ea7", - "0x000000000000000000000000000000413de0aaf6abfcd92fc01d6ed29b7b3908", - "0x00000000000000000000000000000000003040f89e75d8497264523f3759f244", - "0x000000000000000000000000000000b3ce14bb480e67b8777a35fecda04ae464", - "0x000000000000000000000000000000000027f54fd6e0d77e7ea4f604a04ccc78", - "0x000000000000000000000000000000e26c5ba0fc76f89ad640878668e01706e8", - "0x00000000000000000000000000000000002a561c142cb4ead0cbf6d2b0c18c92", - "0x00000000000000000000000000000016b3d191ccf7bc7ce7ed47fff9550a8228", - "0x00000000000000000000000000000000000bab9cc4a8a69692cc2e23edd33e21", - "0x000000000000000000000000000000f03c6000bd229b67bbd61c4fe774475b82", - "0x00000000000000000000000000000000000a8dda15c8776d1c19bf7d3ceb4ebc", - "0x0000000000000000000000000000002c5030ffd166f1a5370e39a8cf63d3293d", - "0x00000000000000000000000000000000000db55c9857d966e816952c3bc05806", - "0x000000000000000000000000000000f9b24059768fe29325e03b7aba5322badb", - "0x000000000000000000000000000000000018231707a63d5a434098a9b1aa3556", - "0x0000000000000000000000000000003c5140ea61852bd635168344405c5329db", - "0x00000000000000000000000000000000002676efc5c1e686912428f6756492eb", - "0x00000000000000000000000000000027ca9e929364f76e47a5ff9d66d46fd00d", - "0x00000000000000000000000000000000002d2e744d6a6255379c9235e7e6cf50", + "0x000000000000000000000000000000ff5bbb821de840dc75415302e866c12765", + "0x0000000000000000000000000000000000067f5c980beecdf7117440a823869c", + "0x00000000000000000000000000000090aa429aaf305122ace1e0a27b94e3ed4e", + "0x000000000000000000000000000000000028ca011224355213d944fbbb130741", + "0x00000000000000000000000000000034a42c54dd6a7a50b984a13fb422e625b1", + "0x000000000000000000000000000000000010b5fb9abe61da63f98f2752b47065", + "0x000000000000000000000000000000fa8d9f0907a53c565c1ba2ba66a5c7b33c", + "0x00000000000000000000000000000000001a262e490e796976138cf749a5ceec", + "0x00000000000000000000000000000075ad9a3c0f8b394772b8abebcbc06cee90", + "0x00000000000000000000000000000000000a422140cad0bbddca8e9534fd8ece", + "0x0000000000000000000000000000009ec0bd708235c4ece4608a194e140d3a51", + "0x00000000000000000000000000000000002d93f3acbef1f2fa962d72944d88c8", + "0x0000000000000000000000000000008ad2b73ccaed536cd01a61db28c988a752", + "0x00000000000000000000000000000000002c274a3e097fd93dd757923f5953a2", + "0x0000000000000000000000000000000806a009e1e23e35b764bd023c6b7b1107", + "0x0000000000000000000000000000000000114aa08086af1c1a480a5bb8c81d7e", + "0x000000000000000000000000000000ea3c78865aa82bf7671761ec907fcd2376", + "0x000000000000000000000000000000000028f54754322b38ac5d5cdc8ad37f6a", + "0x000000000000000000000000000000e7ba887ff58001b4d1e7447d82810c26ca", + "0x000000000000000000000000000000000000f158075638c4b079d9693433b046", + "0x00000000000000000000000000000059e018fa8ec807afc030291f549e713cb8", + "0x00000000000000000000000000000000001e6adcb9fa3319214663536d0b17d3", + "0x000000000000000000000000000000a6771cc12bb10502caf47d1bba993cfaff", + "0x00000000000000000000000000000000002116eea84a66a9bf9613532362ec70", + "0x0000000000000000000000000000005839a8c2c4e9766bc1bb18f79c046be6f3", + "0x00000000000000000000000000000000002c4b1591f622a8c27f241d567390d8", + "0x000000000000000000000000000000f547cba6d2dbd12dc3f8a1859291015a6c", + "0x00000000000000000000000000000000002cdcf706bcef5db9663125c0353535", + "0x000000000000000000000000000000ca8a488cd9d8d5287df55cb19997f20c3e", + "0x000000000000000000000000000000000020d8ea36ab67611f4048dc8bf31456", + "0x000000000000000000000000000000a1c551a28f70af0cd4084be71f9483b6fc", + "0x000000000000000000000000000000000019272a54f448f2483657b5ea18ae2f", + "0x000000000000000000000000000000a0ad7e19dc43911db3307e671126cf0544", + "0x00000000000000000000000000000000002938a45db30a1b0c5cb1052ec938b9", + "0x00000000000000000000000000000075266396925b7fc0abf3fd39bbedfed21e", + "0x00000000000000000000000000000000000037bd03045c5c5a92483be3dd7866", + "0x0000000000000000000000000000002ad127759a8da66ac9e6760e700fa7008b", + "0x000000000000000000000000000000000008bcd4eb5135596c29ade1cfceb11c", + "0x0000000000000000000000000000008ca6f75ca729ce3c2bb6a6a24adb6c4697", + "0x00000000000000000000000000000000000b77d25c1b8a06cdbb3c6a0103cb54", + "0x000000000000000000000000000000d5ef2ccb938f0a93755a3eca92fbb9fa6f", + "0x00000000000000000000000000000000000d22ac2d9c3d4fc672f645d38a017c", + "0x000000000000000000000000000000fd421654e64dfbfea05dc01c334d2427ca", + "0x00000000000000000000000000000000001795d96cd79d7fe8e7282876a72768", + "0x0000000000000000000000000000003bf630bba4a42f3f3fb78a202600cc259e", + "0x000000000000000000000000000000000012c87f63ba30ca463150e9220bf281", + "0x00000000000000000000000000000003e0f898de5dfcc0049b0933abc8695d5c", + "0x000000000000000000000000000000000002ec14c4e2663cf563a812cc207605", + "0x000000000000000000000000000000369c65a86c716967d647ee9b48f7e1ee26", + "0x00000000000000000000000000000000000f244cf31bf8de7bf56ff2c798455e", + "0x000000000000000000000000000000d07a5a3819cd5209a4af69fbfd903051a8", + "0x00000000000000000000000000000000000827cddaed840173510b6d02135867", + "0x0000000000000000000000000000002d88bd0a6a7c35e1d811d62d218f6778bb", + "0x000000000000000000000000000000000019e4acfadd45da7f2e0b79e51d6b9b", + "0x0000000000000000000000000000002344cf0ad2c40fdd81b060071782bec289", + "0x000000000000000000000000000000000019717740651cd7db4dee1d8a3d51e6", "0x000000000000000000000000000000e97fb648fc1ff99f9988a73de181e0de22", "0x000000000000000000000000000000000024cae2d5d2c4daefe858889eeb01b8", "0x000000000000000000000000000000e072297115d09425f5612d626dc82f1002", @@ -769,22 +769,22 @@ key = [ "0x0000000000000000000000000000000000000000000000000000000000000000", "0x0000000000000000000000000000000000000000000000000000000000000002", "0x0000000000000000000000000000000000000000000000000000000000000000", - "0x0000000000000000000000000000004898374b54545055c1bb24e3a36fd3e366", - "0x000000000000000000000000000000000009a4e1a6ad856632080ec5e2ef536d", - "0x000000000000000000000000000000ae845975e97b6d01be4b59b81c7366615c", - "0x00000000000000000000000000000000002ecf58c52aaae98f01163603478164" + "0x000000000000000000000000000000794f339b4095c6201d34f6eea0fd61fdea", + "0x00000000000000000000000000000000000f54fb9da59f4d7420cf3c8356980e", + "0x000000000000000000000000000000da824040aaaf923948c05378dbd9cbe4ff", + "0x00000000000000000000000000000000000a7b02f4a8af2e5b64311b27e4c6fc" ] -hash = "0x223ac65a7b2f5dc2db23957514888b3151f4dbae7a37957d7779d49b522421b7" +hash = "0x0cae9a18e830901d937e8150200d55d6b97b58f12cbe0a8f24c0e50c8bda66ff" [inputs.previous_rollup_data.vk_witness] leaf_index = "0x0000000000000000000000000000000000000000000000000000000000000007" sibling_path = [ - "0x0799796ebe3c57a193bf0f06b842f780be2da07d9ab0661a834378d827002f94", + "0x2105487deb54ac9c459b3050270ea0b48ac21bc057a48da073c3fb56dea06740", "0x1a8ceec79a52f0cadbada4e0362dfd6ef1f2af334809c9bc837825b657cec6a1", - "0x02370e3878cde2a8c84c40391c1115962ed9f0543e0c443869d9791a3f033733", - "0x19816d7c1dabb2893c3f4ef0250936cb55ae926b870e7b14e990d50bdf9eb084", - "0x1269cc8f8216b2d60daca30e5e0ba1e1d11dfe89f0f0c2cadb113c30de181554", - "0x26b3cce275e6a21ac2049ab937390d4afb7793ec68d1d7bcddadfbfe45fbfb06" + "0x07c008584a3bc294cfed5d5a726d88e5ce8be9a34100232e67e6b790e0a2905e", + "0x26121cf4ba1d9fe4a98c57cc36ab5640e2cebf720bf5d0ae4291c34416cc3fd7", + "0x0d8e4232c3e1214b1a72ee04016dd919308ecb6b01e871bdcdc36248ab044711", + "0x2fd02310a424f73ae3709cf4ff9d507e920407534ba3e965a5542a138b815675" ] [[inputs.previous_rollup_data]] @@ -792,56 +792,56 @@ sibling_path = [ rollup_type = "0x0000000000000000000000000000000000000000000000000000000000000000" num_txs = "0x0000000000000000000000000000000000000000000000000000000000000001" out_hash = "0x0000000000000000000000000000000000000000000000000000000000000000" -accumulated_fees = "0x000000000000000000000000000000000000000000000000000000101494d4e0" -accumulated_mana_used = "0x0000000000000000000000000000000000000000000000000000000000014d22" +accumulated_fees = "0x00000000000000000000000000000000000000000000000000000000068c6d00" +accumulated_mana_used = "0x0000000000000000000000000000000000000000000000000000000000004a40" [inputs.previous_rollup_data.base_or_merge_rollup_public_inputs.constants] - vk_tree_root = "0x22a749df2f64e23077f364a4efdd544e0a0666eb43bd1560f5a698b10997c43c" - protocol_contract_tree_root = "0x16862f3a312325ba6b37abe1073a51ffb333ee32fbaa437454dce33423766de6" + vk_tree_root = "0x035e62aad06a66ce8d2a9d112a620e2337018ff2c763061808a24ea0f220ffbc" + protocol_contract_tree_root = "0x071f2e01b58eff84ebe1608c9eccf21bf2d51ac74cac3816a3dee8372cdb0b7d" [inputs.previous_rollup_data.base_or_merge_rollup_public_inputs.constants.last_archive] - root = "0x1f1bf0820bb2f2c54506f0a854e4ade0ff236d216ec2ae5c14ca5683cbbfb723" - next_available_leaf_index = "0x0000000000000000000000000000000000000000000000000000000000000008" + root = "0x1945c10a2f89ef5c07ce78f75ece0980a1fb9f72614ac5032e8e9e4a198ae864" + next_available_leaf_index = "0x000000000000000000000000000000000000000000000000000000000000000a" [inputs.previous_rollup_data.base_or_merge_rollup_public_inputs.constants.global_variables] chain_id = "0x0000000000000000000000000000000000000000000000000000000000007a69" - version = "0x0000000000000000000000000000000000000000000000000000000000000001" - block_number = "0x0000000000000000000000000000000000000000000000000000000000000008" - slot_number = "0x0000000000000000000000000000000000000000000000000000000000000013" - timestamp = "0x0000000000000000000000000000000000000000000000000000000067d9b798" + version = "0x00000000000000000000000000000000000000000000000000000000e6f03fcf" + block_number = "0x000000000000000000000000000000000000000000000000000000000000000a" + slot_number = "0x0000000000000000000000000000000000000000000000000000000000000023" + timestamp = "0x0000000000000000000000000000000000000000000000000000000067fa7628" [inputs.previous_rollup_data.base_or_merge_rollup_public_inputs.constants.global_variables.coinbase] - inner = "0x000000000000000000000000a540911acb4195ad0bbfa2c10a46e3e54df4c649" + inner = "0x00000000000000000000000071d84878d343d87f145bfcc3af71b20b7430de57" [inputs.previous_rollup_data.base_or_merge_rollup_public_inputs.constants.global_variables.fee_recipient] inner = "0x0000000000000000000000000000000000000000000000000000000000000000" [inputs.previous_rollup_data.base_or_merge_rollup_public_inputs.constants.global_variables.gas_fees] fee_per_da_gas = "0x0000000000000000000000000000000000000000000000000000000000000000" - fee_per_l2_gas = "0x00000000000000000000000000000000000000000000000000000000000c5b70" + fee_per_l2_gas = "0x0000000000000000000000000000000000000000000000000000000000001694" [inputs.previous_rollup_data.base_or_merge_rollup_public_inputs.start.note_hash_tree] -root = "0x226de9094f6d24d238e95ffd8405b135f935c219ab03521be272b50dbee84657" -next_available_leaf_index = "0x0000000000000000000000000000000000000000000000000000000000000200" +root = "0x086fb1567f928f1f3625c4ddea1273e8212026271096da1c9dc7b122ca0ab079" +next_available_leaf_index = "0x0000000000000000000000000000000000000000000000000000000000000280" [inputs.previous_rollup_data.base_or_merge_rollup_public_inputs.start.nullifier_tree] -root = "0x0955da358234169e3b0c84ca4ba1a82e6f945e44f75db173f0ffbe96d6e59fa4" -next_available_leaf_index = "0x0000000000000000000000000000000000000000000000000000000000000280" +root = "0x2ccff935898cd695d6bd31ae47e1744ac8de672eabbd9c399b5649fa70a1a070" +next_available_leaf_index = "0x0000000000000000000000000000000000000000000000000000000000000300" [inputs.previous_rollup_data.base_or_merge_rollup_public_inputs.start.public_data_tree] -root = "0x07973029b1161c78858bd5e1558e1d5c4f47fd8a4b53bf7950090cd0af0482b5" -next_available_leaf_index = "0x000000000000000000000000000000000000000000000000000000000000008e" +root = "0x1c97e6a1d89c110f0bb1932ea97b605382c042f7f4599e0ac047575ca0fdc9f4" +next_available_leaf_index = "0x000000000000000000000000000000000000000000000000000000000000008f" [inputs.previous_rollup_data.base_or_merge_rollup_public_inputs.end.note_hash_tree] -root = "0x226de9094f6d24d238e95ffd8405b135f935c219ab03521be272b50dbee84657" -next_available_leaf_index = "0x0000000000000000000000000000000000000000000000000000000000000240" +root = "0x1398795b2de10a2df565c5d744c062a7764431138af35b64de824f815e65cc02" +next_available_leaf_index = "0x00000000000000000000000000000000000000000000000000000000000002c0" [inputs.previous_rollup_data.base_or_merge_rollup_public_inputs.end.nullifier_tree] -root = "0x17ec6da2c9c190417a4b66dc3814655edfd6dc739d451885751497a960f39ba9" -next_available_leaf_index = "0x00000000000000000000000000000000000000000000000000000000000002c0" +root = "0x1aaa95244aa985292304f13c4e6c0ae390de7d670c751abd633693d3b6dd9096" +next_available_leaf_index = "0x0000000000000000000000000000000000000000000000000000000000000340" [inputs.previous_rollup_data.base_or_merge_rollup_public_inputs.end.public_data_tree] -root = "0x05b98fcb0ee88c15f73c9637c817641a1807e3919e8a20b0e830b1d2bedd2a8a" +root = "0x277d85cfa877e3a0e65a886d4f2e5f234c897356b2f1aab0c2edea64bde815da" next_available_leaf_index = "0x000000000000000000000000000000000000000000000000000000000000008f" [inputs.previous_rollup_data.base_or_merge_rollup_public_inputs.start_sponge_blob] @@ -850,36 +850,36 @@ next_available_leaf_index = "0x0000000000000000000000000000000000000000000000000 [inputs.previous_rollup_data.base_or_merge_rollup_public_inputs.start_sponge_blob.sponge] cache = [ - "0x00000000000000000000000000000000000000000000021e19e0c55df340ebac", - "0x1fbffb7e3dd073d1ff0f74491a59a89d1da4ed5f6fd76188dfd7a2c682719495", - "0x10bd5eb801c0a60ecde3a0f7b44428535c228e6c67894e5baaa9c85394bbacde" + "0x00000000000000000000000000000000000000000000021e19e0c9af61901218", + "0x2cf807d522bb2fda2c20e097a5c3eb396846b6f9c889822715185867baf463f2", + "0x16847710038f83e16cf6cf05eeec890a5e6907aaec87b1af7f1c6b21bec730c4" ] state = [ - "0x20177062f4b9b5167629de2a58a2ddb165832c03a2758b995b62a3d2f656fd7f", - "0x1b0058a153da301a93374e12f640147b386e434a52e188155ed5aa90f4f3f4f3", - "0x1cc45bef7c174ac51a6bf0939ffb5ae6cfb47099880a7d6e0706b1c5aa2c9812", - "0x0f1aae99b2ce17b1360df03c22fe27532db91a749b3f2c5b50c20a60660bdd1e" + "0x1a5150b81e6e523723126595e2d4680ca438358d794e3873ee7d5231bdbf13c1", + "0x04f361977e3fb4105fa2df3398f06789fa3b865d407e8390851cb9ad55d4c738", + "0x0f76c87280944015cc8a053a9d0985a7a8deca2cbb7611b685bb4ef11d4870e2", + "0x1d141beb34809eafbf94238d23dbcc931a2a068d44e4da847829f4d07378e9ae" ] cache_size = "0x0000000000000000000000000000000000000000000000000000000000000001" squeeze_mode = false [inputs.previous_rollup_data.base_or_merge_rollup_public_inputs.end_sponge_blob] - fields = "0x0000000000000000000000000000000000000000000000000000000000000016" + fields = "0x0000000000000000000000000000000000000000000000000000000000000050" expected_fields = "0x000000000000000000000000000000000000000000000000000000000000005c" [inputs.previous_rollup_data.base_or_merge_rollup_public_inputs.end_sponge_blob.sponge] cache = [ - "0x00000000000000000000000000000000000000000000021e19e0c54ddeac16cc", - "0x00000000000000000000000000000000000000000000000000000000000003e8", - "0x10bd5eb801c0a60ecde3a0f7b44428535c228e6c67894e5baaa9c85394bbacde" + "0x001b13076c419aeabb9bff90fc4e44cb6069901afc28652a65d88366d9fd1fe9", + "0x00d65fea12cae6dc51459ad77c86693405ea67d3a5d4d36c9b6d9c14a8e0524e", + "0x0051167a7afec0799f1645606c7d6a93644b2edc204b1dc5944b5160c61c59b9" ] state = [ - "0x188bcbe82773b5140194a90b295d6f599e9075c5b371932d401630ea5e570d6b", - "0x0a52b123e11a4e2a83b925a9980a31d877e8975a910fdf40083ef2de844fbd15", - "0x2dac086843f6bbea2b52ead6612d31ea3f905d4d8c5d088a0ab0d467e6fe8b26", - "0x246432acc9bb81413e65b66bd53756f64b680e4c1b0e35d114ebdf38c40ead24" + "0x29df41dd219269f8eb5f00f0f35b3b6b3d54311c748a4ad3411a6a9573bcae1f", + "0x18ca258955d21b5dd1c79ba869e3f9627a61978473caa30cc89c516de4679a98", + "0x2858464148171a5b8dbfed071b78e5123d5edde335d304bab87508141b0c1e12", + "0x05a712cea2a332ac66629e5a5365f392b44023f135a91dd4693abb0e4f947632" ] - cache_size = "0x0000000000000000000000000000000000000000000000000000000000000001" + cache_size = "0x0000000000000000000000000000000000000000000000000000000000000002" squeeze_mode = false [inputs.previous_rollup_data.proof] @@ -1454,90 +1454,90 @@ key = [ "0x000000000000000000000000000000000000000000000000000000000000004b", "0x000000000000000000000000000000000000000000000000000000000000004c", "0x000000000000000000000000000000000000000000000000000000000000004d", - "0x000000000000000000000000000000604f3386df7ffcfbbe2e0851e8698f79be", - "0x00000000000000000000000000000000002e81f856de8ceb70308fcf3d2ff404", - "0x000000000000000000000000000000a5fb42e7b983b266cef75d94503ca83a45", - "0x0000000000000000000000000000000000305853e192180e0a4cc61ff940331f", - "0x000000000000000000000000000000b53fe6ff8ea5f1898fd480d52a2e9d54aa", - "0x000000000000000000000000000000000008b36f35101a1ca42b5c4d7c111450", - "0x0000000000000000000000000000006940c1f38e21d41d380825d016dc0c14be", - "0x00000000000000000000000000000000001f49902fe1df51d65302f306a83d7f", - "0x0000000000000000000000000000000d11dc82849bac4d75ce43a5651b649d9e", - "0x00000000000000000000000000000000001d47aedf32347079e816fd52ea8da8", - "0x0000000000000000000000000000009a8db581cc87bc29be39d84ac3854ccdd8", - "0x00000000000000000000000000000000001909276fc84feb08c589cb3f634ae5", - "0x000000000000000000000000000000ebb40113d8c9f1d1438263b4632ebffd7f", - "0x0000000000000000000000000000000000142fe33e00fe53c00521240a6db7f2", - "0x000000000000000000000000000000dc87505687f949b1c2e1812b4b9b6eece6", - "0x00000000000000000000000000000000001c8f54af08be0c68c9976e836fedc8", - "0x000000000000000000000000000000c0756dee65c1616a70d8ef76a0020d01a3", - "0x00000000000000000000000000000000000049ea246ed3925791a212539ab9ac", - "0x000000000000000000000000000000809a051a49663c14dc425ca1e573e15af0", - "0x00000000000000000000000000000000000219de59e0a3e7268ce556ffcea06d", - "0x0000000000000000000000000000004f657a26781c09e1ca5f6379861afbdc63", - "0x00000000000000000000000000000000000a10db9a8dc1a20d2a1ab7687785f4", - "0x000000000000000000000000000000e34f6fb73e2061daaa8cf6e49a8f321411", - "0x00000000000000000000000000000000001a665f0269423f36ede7d212b7f4f4", + "0x000000000000000000000000000000c9644cf046fabe3b46186fd1d31e4a634f", + "0x00000000000000000000000000000000001ebdf04e02bcd06d38255557b14eae", + "0x0000000000000000000000000000004006cfca9230c8381544d42afd17e423bc", + "0x00000000000000000000000000000000000f4c11c73c96ba41968ab9176543d9", + "0x000000000000000000000000000000170a6b14b50a0ea346ea77adf33caeccc8", + "0x00000000000000000000000000000000000642abf751a0c3173c571987b81c76", + "0x00000000000000000000000000000022469b618010c2aa2cabcde9d518b44338", + "0x00000000000000000000000000000000001b599d876e394114714733a2bd9f4d", + "0x0000000000000000000000000000008b210c42e86aa5980fce568b226af34fe5", + "0x00000000000000000000000000000000000a158a4caad7266fbfc4f9a619d47c", + "0x00000000000000000000000000000076dfa11c8d99b2563c2cf697f6ac9ddd1e", + "0x0000000000000000000000000000000000135c76c9cbfc3083868f23cc098a2f", + "0x000000000000000000000000000000d2a52bdb84c0ee98dd0a15c0d53b7968fc", + "0x000000000000000000000000000000000004aa0de8c3735a18fd3903dddcbf86", + "0x00000000000000000000000000000036bedf4ce1b036e9cbc8ea1fbe2c30b5d0", + "0x00000000000000000000000000000000002f873548c191874848496b71a126e5", + "0x0000000000000000000000000000008a2b522df5d01aa5213a80861c6d4bcc09", + "0x00000000000000000000000000000000002d2473f32cf421d41cb7342396fbf0", + "0x000000000000000000000000000000fdf976f6610caf5313a88dcec941f95be7", + "0x00000000000000000000000000000000000a1c346ef53743e533a9885a5b3aab", + "0x00000000000000000000000000000009d953db2feaa4cbad7b95f78e5f73fd0f", + "0x00000000000000000000000000000000002609bfa75c22002b6bc5decda78eab", + "0x000000000000000000000000000000e0165044d08e48425a755224ce1e8862ec", + "0x00000000000000000000000000000000001e42cb2c93984db877aadbf6ca52f0", "0x000000000000000000000000000000e7bab6896d9724b5b46b796551dc5feed2", "0x00000000000000000000000000000000001fd93debdcf16cc93f99efd69e938d", "0x0000000000000000000000000000004b94434e1705c9bc2a4f5b2bc2a05c3c03", "0x00000000000000000000000000000000002a29d5563fd08e454dace1605a1aa5", - "0x00000000000000000000000000000083977e9d776bbc739d670fb7a3ee6d2b5d", - "0x000000000000000000000000000000000006443aea4db6288c67cfa0fe6749d4", - "0x00000000000000000000000000000039dc84295e332213b9820829ce5ee71fa1", - "0x000000000000000000000000000000000025f351dc7b798d2c0fd5986fb4b73a", - "0x000000000000000000000000000000f7fac2452365edb7d8cb398c7a2d3cb0c4", - "0x000000000000000000000000000000000012dfc23f7268a047e845c1b796ea2b", - "0x00000000000000000000000000000001003dbe6ee36462caf3c8fbb6dc782fce", - "0x000000000000000000000000000000000012b3fe7d555ed39c4152b18dd23eae", - "0x000000000000000000000000000000fd83fbd28c53a1cf488239d5ec93c5c9b0", - "0x00000000000000000000000000000000001dc0be26ae69cca87dc5df29868b8a", - "0x0000000000000000000000000000003521dae16f4c631ee64b9b4996d756c98a", - "0x000000000000000000000000000000000003670473b7dcd3d16727f981dd6d11", - "0x0000000000000000000000000000003a07b6b1295c8262f52483d2cb965dd9e7", - "0x000000000000000000000000000000000029db01089b2be5013375103128e26f", - "0x000000000000000000000000000000ea32b99d6e60cdba8ede2d63aa8121302d", - "0x0000000000000000000000000000000000046422f0edc1225b19ad87826c649f", - "0x0000000000000000000000000000000361509fbb64b35cfd325094d49a98d3b6", - "0x0000000000000000000000000000000000105361b0fce522f2483fbfa92c8e53", - "0x0000000000000000000000000000005077a9065b2f8b5f0f0aa2722caa4ab02f", - "0x00000000000000000000000000000000002026332dc316dcc4a5c5b2f20b0101", - "0x000000000000000000000000000000cbf9c143c21cf3e4635a42e13ec7bc890d", - "0x00000000000000000000000000000000002eda5c98a0062cfc5d203868e9c105", - "0x0000000000000000000000000000003477978d4c013c0bde16ab0e80ce827479", - "0x00000000000000000000000000000000000bdb609b914e3ac3bc7b9026bd6245", - "0x000000000000000000000000000000ab01dd9a75bccce85dd86e2f5313111b15", - "0x000000000000000000000000000000000013b8a327855e726ba7368e6f81bea5", - "0x00000000000000000000000000000047bb6cfeea33a443fac4f1a3ce577b5db8", - "0x000000000000000000000000000000000017aca0321d75b04f5d6ec64768cf68", - "0x000000000000000000000000000000e90a34516c3dec5afe5d57f1f1ad89f54c", - "0x00000000000000000000000000000000002b58bd97ab3ad899ad6e435efad9a3", - "0x0000000000000000000000000000008f792ebec9e5d1244bef574d4f0dfc97d3", - "0x000000000000000000000000000000000001b0fa9dcd7c54017200c7e9ab8587", - "0x000000000000000000000000000000aaadcefc6c15f327f1b6db92b64e0d078e", - "0x00000000000000000000000000000000000e9bf933dd12c2aeb556f9b6543f6a", - "0x0000000000000000000000000000001d77b93c66bcf3437661354d655f269420", - "0x00000000000000000000000000000000000ed88443234074ce6a5366312e6ba3", - "0x00000000000000000000000000000055883150fdc7178be0e05527f9c10631b8", - "0x0000000000000000000000000000000000137c5e360364993ae3bc34654c2ea7", - "0x000000000000000000000000000000413de0aaf6abfcd92fc01d6ed29b7b3908", - "0x00000000000000000000000000000000003040f89e75d8497264523f3759f244", - "0x000000000000000000000000000000b3ce14bb480e67b8777a35fecda04ae464", - "0x000000000000000000000000000000000027f54fd6e0d77e7ea4f604a04ccc78", - "0x000000000000000000000000000000e26c5ba0fc76f89ad640878668e01706e8", - "0x00000000000000000000000000000000002a561c142cb4ead0cbf6d2b0c18c92", - "0x00000000000000000000000000000016b3d191ccf7bc7ce7ed47fff9550a8228", - "0x00000000000000000000000000000000000bab9cc4a8a69692cc2e23edd33e21", - "0x000000000000000000000000000000f03c6000bd229b67bbd61c4fe774475b82", - "0x00000000000000000000000000000000000a8dda15c8776d1c19bf7d3ceb4ebc", - "0x0000000000000000000000000000002c5030ffd166f1a5370e39a8cf63d3293d", - "0x00000000000000000000000000000000000db55c9857d966e816952c3bc05806", - "0x000000000000000000000000000000f9b24059768fe29325e03b7aba5322badb", - "0x000000000000000000000000000000000018231707a63d5a434098a9b1aa3556", - "0x0000000000000000000000000000003c5140ea61852bd635168344405c5329db", - "0x00000000000000000000000000000000002676efc5c1e686912428f6756492eb", - "0x00000000000000000000000000000027ca9e929364f76e47a5ff9d66d46fd00d", - "0x00000000000000000000000000000000002d2e744d6a6255379c9235e7e6cf50", + "0x000000000000000000000000000000e1fb3d427b73bab2c11dae5ce721223d21", + "0x00000000000000000000000000000000001f8588599ae47d5d086bb8e00f8625", + "0x00000000000000000000000000000010ecccfb7aed7cdc6b3e4893084d705ee0", + "0x00000000000000000000000000000000000c4e4d56e1ade9ae17f3bde878a1f9", + "0x000000000000000000000000000000c46228e4d0d2a2c307442a43bb23d2248c", + "0x0000000000000000000000000000000000038c5e48b5ec296511ee16e3291a65", + "0x0000000000000000000000000000007b486b588dd7c6052debd34eb27014799f", + "0x000000000000000000000000000000000012d3037964d4e49732fa5947f54064", + "0x00000000000000000000000000000057fbf4b6a01d9677544cba4473c4dc3049", + "0x00000000000000000000000000000000002bc0e9270588fac691096aaed3e938", + "0x0000000000000000000000000000001afd4bfacd4233aa89adce3da3b00a57b5", + "0x0000000000000000000000000000000000267c176e5eb60f5b09651dd89d660b", + "0x0000000000000000000000000000005dc29066e3fb49c245e0edeab4c1a10667", + "0x000000000000000000000000000000000014b76faaaa563f382cb1646dcc2133", + "0x00000000000000000000000000000038851ea92628726bfc7fde6e90c4e582c1", + "0x000000000000000000000000000000000011ed1c7854ffc4353472b49ea4c957", + "0x00000000000000000000000000000006d3223a49a4bae5f1b2c2cb6118926e70", + "0x00000000000000000000000000000000000d6c2b94668835dfa0495fd9d28079", + "0x0000000000000000000000000000009795078410ec9afd95b25d51b816e8dd88", + "0x000000000000000000000000000000000019682a7137a90539776fb277c7ba94", + "0x00000000000000000000000000000038b962e3fc459e36224dc9aae811b868d8", + "0x00000000000000000000000000000000000dd3285648305441ffcf70e0721765", + "0x000000000000000000000000000000b384879bd16132be7c7fb8f55608875db9", + "0x00000000000000000000000000000000002d896e8b4907522977e0d4da869f0d", + "0x000000000000000000000000000000e3b56fda82a6a02d77c1bf79b7a16442d0", + "0x0000000000000000000000000000000000303b0d9bc5c029d32661f6f39c9d4d", + "0x0000000000000000000000000000002c9a776cf3916dc6dad39ac873d282a869", + "0x000000000000000000000000000000000007e2fcc3c3af98d8e39b0fb76e1c30", + "0x0000000000000000000000000000004eba86e2011eae38bd144c381fd77f7a29", + "0x00000000000000000000000000000000002bd3d0ef45abc16269d086c7e6840f", + "0x0000000000000000000000000000007ac63f3982a80ed11fd18f949513c160c3", + "0x0000000000000000000000000000000000299f99527df26d098053dc77598cc3", + "0x000000000000000000000000000000cf59e5a4303332db258b8d2f2a420bf169", + "0x00000000000000000000000000000000000a3bc62d7b2d510f35637b5b012c94", + "0x0000000000000000000000000000006cc09361b66a9769c54d103fc3efc0e0e2", + "0x00000000000000000000000000000000002bf8041e7eec21e9bf162295b6c1ed", + "0x000000000000000000000000000000315b67face1c74c547a25a08b9137e2b32", + "0x00000000000000000000000000000000002963487d85991c1568ed9634dbc6d1", + "0x000000000000000000000000000000c17dc1513d94944ad4d9df3c06683150cc", + "0x0000000000000000000000000000000000123fdc940f065e30b6c62696f392f2", + "0x00000000000000000000000000000059591250216fa4d9c723b36ee12fa5ef8a", + "0x000000000000000000000000000000000016b55cfa9aeaaa536def8bae510187", + "0x000000000000000000000000000000977d28c3f102a61ea185d7cdcb0655e954", + "0x000000000000000000000000000000000025eb8938920663becd970934effd10", + "0x000000000000000000000000000000b3173103a6bacd94b858b50c3d3310e498", + "0x00000000000000000000000000000000002759da1caf883bfba5a9dc1f433b2b", + "0x00000000000000000000000000000005bb7abde3494dd7576eabc41de3b73a18", + "0x000000000000000000000000000000000023b5a3c6b9a923d1cd3365863343ab", + "0x00000000000000000000000000000025e903932df14f80bde37e97d59ca7593e", + "0x0000000000000000000000000000000000029740995cb8035b1400cf88d64064", + "0x000000000000000000000000000000355c42e08220f7560974d9329eacd303bd", + "0x00000000000000000000000000000000002074c250ac80711897db58ca60b01c", + "0x0000000000000000000000000000000e044a82560642d2c743ba1c752f9dd64d", + "0x00000000000000000000000000000000003023d831e86afbee59508fc7b768d6", + "0x000000000000000000000000000000d50965001f5628c37c0770164b9a0c3932", + "0x00000000000000000000000000000000002b180be1e4e7764825ab8ef53a0e7e", "0x000000000000000000000000000000e97fb648fc1ff99f9988a73de181e0de22", "0x000000000000000000000000000000000024cae2d5d2c4daefe858889eeb01b8", "0x000000000000000000000000000000e072297115d09425f5612d626dc82f1002", @@ -1558,20 +1558,20 @@ key = [ "0x0000000000000000000000000000000000000000000000000000000000000000", "0x0000000000000000000000000000000000000000000000000000000000000002", "0x0000000000000000000000000000000000000000000000000000000000000000", - "0x0000000000000000000000000000004898374b54545055c1bb24e3a36fd3e366", - "0x000000000000000000000000000000000009a4e1a6ad856632080ec5e2ef536d", - "0x000000000000000000000000000000ae845975e97b6d01be4b59b81c7366615c", - "0x00000000000000000000000000000000002ecf58c52aaae98f01163603478164" + "0x0000000000000000000000000000002c43f224fcf543b4690c3decf428df16c8", + "0x0000000000000000000000000000000000034a80aee11994ad8003b85f40b762", + "0x0000000000000000000000000000006e75b36384f2b35a1ecec355bd4a90c9a1", + "0x000000000000000000000000000000000022b417745523169cd4e273a17216c6" ] -hash = "0x223ac65a7b2f5dc2db23957514888b3151f4dbae7a37957d7779d49b522421b7" +hash = "0x2105487deb54ac9c459b3050270ea0b48ac21bc057a48da073c3fb56dea06740" [inputs.previous_rollup_data.vk_witness] -leaf_index = "0x0000000000000000000000000000000000000000000000000000000000000007" +leaf_index = "0x0000000000000000000000000000000000000000000000000000000000000006" sibling_path = [ - "0x0799796ebe3c57a193bf0f06b842f780be2da07d9ab0661a834378d827002f94", + "0x0cae9a18e830901d937e8150200d55d6b97b58f12cbe0a8f24c0e50c8bda66ff", "0x1a8ceec79a52f0cadbada4e0362dfd6ef1f2af334809c9bc837825b657cec6a1", - "0x02370e3878cde2a8c84c40391c1115962ed9f0543e0c443869d9791a3f033733", - "0x19816d7c1dabb2893c3f4ef0250936cb55ae926b870e7b14e990d50bdf9eb084", - "0x1269cc8f8216b2d60daca30e5e0ba1e1d11dfe89f0f0c2cadb113c30de181554", - "0x26b3cce275e6a21ac2049ab937390d4afb7793ec68d1d7bcddadfbfe45fbfb06" + "0x07c008584a3bc294cfed5d5a726d88e5ce8be9a34100232e67e6b790e0a2905e", + "0x26121cf4ba1d9fe4a98c57cc36ab5640e2cebf720bf5d0ae4291c34416cc3fd7", + "0x0d8e4232c3e1214b1a72ee04016dd919308ecb6b01e871bdcdc36248ab044711", + "0x2fd02310a424f73ae3709cf4ff9d507e920407534ba3e965a5542a138b815675" ] diff --git a/noir-projects/noir-protocol-circuits/crates/rollup-root/Prover.toml b/noir-projects/noir-protocol-circuits/crates/rollup-root/Prover.toml index fe26f790c45d..547283d24f5b 100644 --- a/noir-projects/noir-protocol-circuits/crates/rollup-root/Prover.toml +++ b/noir-projects/noir-protocol-circuits/crates/rollup-root/Prover.toml @@ -3,66 +3,64 @@ prover_id = "0x0000000000000000000000003c44cdddb6a900fa2b585dd299e03d12fa4293bc" [[inputs.previous_rollup_data]] [inputs.previous_rollup_data.block_root_or_block_merge_public_inputs] -previous_block_hash = "0x22b5b66534134af6ad68d2a58eb54f05b350ede64c533a045b51e046a8101ed5" -end_block_hash = "0x19ddd3dd2c7628e2eb6e0337f030e92b88607eaf8bf0e715247fed66a9cb7308" out_hash = "0x00201496223ba670899c10fa0b2a2d65993893162620515ed5d2f6fc25dba2d4" -vk_tree_root = "0x22a749df2f64e23077f364a4efdd544e0a0666eb43bd1560f5a698b10997c43c" -protocol_contract_tree_root = "0x16862f3a312325ba6b37abe1073a51ffb333ee32fbaa437454dce33423766de6" +vk_tree_root = "0x035e62aad06a66ce8d2a9d112a620e2337018ff2c763061808a24ea0f220ffbc" +protocol_contract_tree_root = "0x071f2e01b58eff84ebe1608c9eccf21bf2d51ac74cac3816a3dee8372cdb0b7d" prover_id = "0x0000000000000000000000003c44cdddb6a900fa2b585dd299e03d12fa4293bc" [inputs.previous_rollup_data.block_root_or_block_merge_public_inputs.previous_archive] - root = "0x05a86109bbbc34b0d091a63b7780bb2876816077b2794a61f14956048fee6dea" - next_available_leaf_index = "0x0000000000000000000000000000000000000000000000000000000000000007" + root = "0x0eb121ceb76f8cb8b08038e1edd7adbb9217e382177ee3ed9b9ad061ea723e80" + next_available_leaf_index = "0x0000000000000000000000000000000000000000000000000000000000000009" [inputs.previous_rollup_data.block_root_or_block_merge_public_inputs.new_archive] - root = "0x12f5c698e8699fb38f5a359e0e6a1735fc9f40978a1b9deaa9564d3d5b484311" - next_available_leaf_index = "0x0000000000000000000000000000000000000000000000000000000000000009" + root = "0x22b8bffe322430b84b71422d40fa3e95953186d197111355a8f19604965ef366" + next_available_leaf_index = "0x000000000000000000000000000000000000000000000000000000000000000b" [inputs.previous_rollup_data.block_root_or_block_merge_public_inputs.start_global_variables] chain_id = "0x0000000000000000000000000000000000000000000000000000000000007a69" - version = "0x0000000000000000000000000000000000000000000000000000000000000001" - block_number = "0x0000000000000000000000000000000000000000000000000000000000000007" - slot_number = "0x0000000000000000000000000000000000000000000000000000000000000012" - timestamp = "0x0000000000000000000000000000000000000000000000000000000067d9b780" + version = "0x00000000000000000000000000000000000000000000000000000000e6f03fcf" + block_number = "0x0000000000000000000000000000000000000000000000000000000000000009" + slot_number = "0x0000000000000000000000000000000000000000000000000000000000000022" + timestamp = "0x0000000000000000000000000000000000000000000000000000000067fa7610" [inputs.previous_rollup_data.block_root_or_block_merge_public_inputs.start_global_variables.coinbase] - inner = "0x000000000000000000000000a540911acb4195ad0bbfa2c10a46e3e54df4c649" + inner = "0x00000000000000000000000071d84878d343d87f145bfcc3af71b20b7430de57" [inputs.previous_rollup_data.block_root_or_block_merge_public_inputs.start_global_variables.fee_recipient] inner = "0x0000000000000000000000000000000000000000000000000000000000000000" [inputs.previous_rollup_data.block_root_or_block_merge_public_inputs.start_global_variables.gas_fees] fee_per_da_gas = "0x0000000000000000000000000000000000000000000000000000000000000000" - fee_per_l2_gas = "0x00000000000000000000000000000000000000000000000000000000000c5b70" + fee_per_l2_gas = "0x0000000000000000000000000000000000000000000000000000000000001694" [inputs.previous_rollup_data.block_root_or_block_merge_public_inputs.end_global_variables] chain_id = "0x0000000000000000000000000000000000000000000000000000000000007a69" - version = "0x0000000000000000000000000000000000000000000000000000000000000001" - block_number = "0x0000000000000000000000000000000000000000000000000000000000000008" - slot_number = "0x0000000000000000000000000000000000000000000000000000000000000013" - timestamp = "0x0000000000000000000000000000000000000000000000000000000067d9b798" + version = "0x00000000000000000000000000000000000000000000000000000000e6f03fcf" + block_number = "0x000000000000000000000000000000000000000000000000000000000000000a" + slot_number = "0x0000000000000000000000000000000000000000000000000000000000000023" + timestamp = "0x0000000000000000000000000000000000000000000000000000000067fa7628" [inputs.previous_rollup_data.block_root_or_block_merge_public_inputs.end_global_variables.coinbase] - inner = "0x000000000000000000000000a540911acb4195ad0bbfa2c10a46e3e54df4c649" + inner = "0x00000000000000000000000071d84878d343d87f145bfcc3af71b20b7430de57" [inputs.previous_rollup_data.block_root_or_block_merge_public_inputs.end_global_variables.fee_recipient] inner = "0x0000000000000000000000000000000000000000000000000000000000000000" [inputs.previous_rollup_data.block_root_or_block_merge_public_inputs.end_global_variables.gas_fees] fee_per_da_gas = "0x0000000000000000000000000000000000000000000000000000000000000000" - fee_per_l2_gas = "0x00000000000000000000000000000000000000000000000000000000000c5b70" + fee_per_l2_gas = "0x0000000000000000000000000000000000000000000000000000000000001694" [[inputs.previous_rollup_data.block_root_or_block_merge_public_inputs.fees]] - value = "0x0000000000000000000000000000000000000000000000000000000395853c00" + value = "0x00000000000000000000000000000000000000000000000000000000068c6d00" [inputs.previous_rollup_data.block_root_or_block_merge_public_inputs.fees.recipient] - inner = "0x000000000000000000000000a540911acb4195ad0bbfa2c10a46e3e54df4c649" + inner = "0x00000000000000000000000071d84878d343d87f145bfcc3af71b20b7430de57" [[inputs.previous_rollup_data.block_root_or_block_merge_public_inputs.fees]] - value = "0x0000000000000000000000000000000000000000000000000000001af264fc00" + value = "0x000000000000000000000000000000000000000000000000000000002fb4e9dc" [inputs.previous_rollup_data.block_root_or_block_merge_public_inputs.fees.recipient] - inner = "0x000000000000000000000000a540911acb4195ad0bbfa2c10a46e3e54df4c649" + inner = "0x00000000000000000000000071d84878d343d87f145bfcc3af71b20b7430de57" [[inputs.previous_rollup_data.block_root_or_block_merge_public_inputs.fees]] value = "0x0000000000000000000000000000000000000000000000000000000000000000" @@ -342,19 +340,19 @@ prover_id = "0x0000000000000000000000003c44cdddb6a900fa2b585dd299e03d12fa4293bc" [[inputs.previous_rollup_data.block_root_or_block_merge_public_inputs.blob_public_inputs]] [[inputs.previous_rollup_data.block_root_or_block_merge_public_inputs.blob_public_inputs.inner]] -z = "0x217f812699cd4202d946ef618a7db1a92b42014094bd29a05f3d1cd957ca50ba" +z = "0x143224556b3051cb009f3329b921aab7a166707c5d1cf4d83f2571c00d1cadf7" [inputs.previous_rollup_data.block_root_or_block_merge_public_inputs.blob_public_inputs.inner.y] limbs = [ - "0x7a70e84dbc90c4b7983d36fbaf1dcc", - "0xa16a46f05ecda16fb8244e40511fb1", - "0x63d0" + "0x8947110525967804ecb20bf16374b2", + "0xd45aad4e001af484d2785f684836fc", + "0x411e" ] [inputs.previous_rollup_data.block_root_or_block_merge_public_inputs.blob_public_inputs.inner.kzg_commitment] inner = [ - "0x00b5788ff7a72f4ff9d717f5654f6f2e070577057d3f1c87d82821405a88a46c", - "0x0000000000000000000000000000008b6fc31415a030f141480b7765114bf2ce" + "0x008f754eaca3b6be8c2ebb672c8d801bff5aab6263d2a1f560c9ec9155286d5b", + "0x000000000000000000000000000000a3605fec48539de0149bcb16f43ba0a221" ] [[inputs.previous_rollup_data.block_root_or_block_merge_public_inputs.blob_public_inputs.inner]] @@ -391,19 +389,19 @@ z = "0x0000000000000000000000000000000000000000000000000000000000000000" [[inputs.previous_rollup_data.block_root_or_block_merge_public_inputs.blob_public_inputs]] [[inputs.previous_rollup_data.block_root_or_block_merge_public_inputs.blob_public_inputs.inner]] -z = "0x2940d32efc46685132f8412a199667db17267bdf2fa0de6610f1f3c424f29438" +z = "0x12d5550ea20cd557385e2a367e1dcf900bc4566cd9954f78a6b1027171b59928" [inputs.previous_rollup_data.block_root_or_block_merge_public_inputs.blob_public_inputs.inner.y] limbs = [ - "0xce384c8b5379c951a714bd57bb2309", - "0x2cca8fe8488c8ce9282322b4ef9bbf", - "0x2ed2" + "0xf367a3fb102012077f1f44e4b091b6", + "0xb06165a82f7b71a6a6b100ad8201cc", + "0x5110" ] [inputs.previous_rollup_data.block_root_or_block_merge_public_inputs.blob_public_inputs.inner.kzg_commitment] inner = [ - "0x00aeb6e13bb3f3f4e2f852c70c55c2eaa21bde055664ec21c1cefbcf73173b1a", - "0x0000000000000000000000000000008545a84ab1bd41d1f4b0cbcbf4f9333079" + "0x00b9945955a60965735c43325b3513f4694b4a49461ac2d632318bf8b163d339", + "0x000000000000000000000000000000ebf99bb529fdf3b5589dee4aaeed3a81d9" ] [[inputs.previous_rollup_data.block_root_or_block_merge_public_inputs.blob_public_inputs.inner]] @@ -3234,9 +3232,11 @@ fields = [ [inputs.previous_rollup_data.vk] key = [ "0x0000000000000000000000000000000000000000000000000000000000200000", - "0x00000000000000000000000000000000000000000000000000000000000003f6", + "0x00000000000000000000000000000000000000000000000000000000000003f4", "0x0000000000000000000000000000000000000000000000000000000000000001", "0x0000000000000000000000000000000000000000000000000000000000000001", + "0x00000000000000000000000000000000000000000000000000000000000003da", + "0x00000000000000000000000000000000000000000000000000000000000003db", "0x00000000000000000000000000000000000000000000000000000000000003dc", "0x00000000000000000000000000000000000000000000000000000000000003dd", "0x00000000000000000000000000000000000000000000000000000000000003de", @@ -3251,9 +3251,9 @@ key = [ "0x00000000000000000000000000000000000000000000000000000000000003e7", "0x00000000000000000000000000000000000000000000000000000000000003e8", "0x00000000000000000000000000000000000000000000000000000000000003e9", + "0x0000000000000000000000000000000000000000000000000000000000000001", "0x00000000000000000000000000000000000000000000000000000000000003ea", "0x00000000000000000000000000000000000000000000000000000000000003eb", - "0x0000000000000000000000000000000000000000000000000000000000000001", "0x00000000000000000000000000000000000000000000000000000000000003ec", "0x00000000000000000000000000000000000000000000000000000000000003ed", "0x00000000000000000000000000000000000000000000000000000000000003ee", @@ -3262,186 +3262,182 @@ key = [ "0x00000000000000000000000000000000000000000000000000000000000003f1", "0x00000000000000000000000000000000000000000000000000000000000003f2", "0x00000000000000000000000000000000000000000000000000000000000003f3", - "0x00000000000000000000000000000000000000000000000000000000000003f4", - "0x00000000000000000000000000000000000000000000000000000000000003f5", - "0x00000000000000000000000000000012a7825473e9c65b7e57f829fe38166069", - "0x00000000000000000000000000000000000aee8bc06aab5dd1485365087b5372", - "0x00000000000000000000000000000084702899af001a4a67d502926e777f5c65", - "0x000000000000000000000000000000000005c74493de420131d8a12c3bcb07c7", - "0x00000000000000000000000000000091fba2b07e282c813504b0cbe95d0b1675", - "0x000000000000000000000000000000000019aed0e1d12b2dac937501bc7171c4", - "0x0000000000000000000000000000005ae0f1bc67e3683b738b53ffd9fc837426", - "0x000000000000000000000000000000000013e478addd48e9cdc88a7c0d1875d4", - "0x00000000000000000000000000000024babdf69618d267ac2db214358c19ae8f", - "0x0000000000000000000000000000000000059c970688538c0409e001c877ec95", - "0x000000000000000000000000000000cfcb97969da76a888a53e59f78c7c38abc", - "0x00000000000000000000000000000000001cdbc787737bf5c4839fa38ab04799", - "0x00000000000000000000000000000047194e8640c9d09bfa13389558a801e3c9", - "0x00000000000000000000000000000000003059bace5dd04861d6846f3e5539f6", - "0x000000000000000000000000000000b04b3b9197a72a9ae39d76915cf24a9923", - "0x0000000000000000000000000000000000216b82bcd89e7e933ae4f7567c04a3", - "0x000000000000000000000000000000fe3cfe0f4fcc008e1ff3ff36b4dce94a37", - "0x00000000000000000000000000000000002864a891369d78d6d68005d8fa427d", - "0x00000000000000000000000000000074920e92e977cb7688b12e7501653099b3", - "0x0000000000000000000000000000000000100f45ee3bd22cc98ef4ea750a95f2", - "0x000000000000000000000000000000599eb799bb762a7a944f6dfec16a42d0c1", - "0x0000000000000000000000000000000000094b61f5b0ad604c07781e92ea824c", - "0x000000000000000000000000000000c33a4851e0b4c335cb8563e1130d0a339f", - "0x00000000000000000000000000000000002b7a287ac5312d5412be16a85ac235", - "0x0000000000000000000000000000002d642c1daea7215b9298f7902c21212ed3", - "0x00000000000000000000000000000000002deca8c3e7386ea6f9f9ad25d371a5", - "0x0000000000000000000000000000000d6a5e9d6e5aa66534e125fe442bbd2c1f", - "0x0000000000000000000000000000000000248c4daaa0943137eb97510041d0bc", - "0x00000000000000000000000000000097e9c16a6db918f8410509185cacaee0b6", - "0x00000000000000000000000000000000002ea9a79d1363a6a964a2aca2a38b0b", - "0x00000000000000000000000000000053526da26358d726d16a16ea7ccbd41ac7", - "0x0000000000000000000000000000000000088482805b88db3cece88673bfda61", - "0x0000000000000000000000000000009b7d2c844e5517437e8482685f4d9cfbd1", - "0x00000000000000000000000000000000000912d1b78981fba3f80531196b7b1e", - "0x0000000000000000000000000000004f305d87eb0bb3eb43191643a7b133c4f3", - "0x000000000000000000000000000000000014f25da232b31f9222e55c689b2ca7", - "0x0000000000000000000000000000009148aa313e3f43fca301f1c428acefdea4", - "0x0000000000000000000000000000000000162077d853c381d8c6f0094744e1d2", - "0x0000000000000000000000000000008a4c3a07900f3d16264f773e05bfd1cdc4", - "0x000000000000000000000000000000000007c6471871c7cad5da52cb017972e7", - "0x000000000000000000000000000000e9fdbb500ab57eebe7cb280214f3a17b74", - "0x00000000000000000000000000000000002783f7b93d63d83faad749ac3a9dfa", - "0x00000000000000000000000000000025bc597424b43e75d75e220e5cb664810d", - "0x0000000000000000000000000000000000173f2b03e472195329040754b8c57a", - "0x00000000000000000000000000000075ab123d357ecd12251dafa2d27226645a", - "0x000000000000000000000000000000000008ceb5e69be662ae31c226bd20ce0b", - "0x00000000000000000000000000000041d961fe5bcc20402874e777757d7be059", - "0x0000000000000000000000000000000000289a9b73cb3aca7a70e7bd8b15ceab", - "0x000000000000000000000000000000fc035f65599d968d3a8b2d03df0bb3bb0e", - "0x00000000000000000000000000000000000588ef3d010a19c261f8cb79119dbd", - "0x0000000000000000000000000000006376fff379e429fbdfd4791a0a53088df5", - "0x00000000000000000000000000000000002988ae99747779b54ef4ff20a9269e", - "0x000000000000000000000000000000cd3a2995a4bfb2825ac7d28e690a9e59e1", - "0x00000000000000000000000000000000001b6ff7282e401dc33464dd10407dcd", - "0x000000000000000000000000000000c790a0249de8f8bd48eac87a812b588c9e", - "0x000000000000000000000000000000000002f0223bdae47b50876fd1bfd093aa", - "0x000000000000000000000000000000c9c3e6d414b3bcfcdf490c487f97fe100f", - "0x00000000000000000000000000000000001217e393779ae0f18f7bb771a2f132", - "0x00000000000000000000000000000048f85fd2b803b5a6ded8f19e24b406b516", - "0x00000000000000000000000000000000001ab3d258daaf48c7797fa21191ce32", - "0x000000000000000000000000000000e6cd8d054f8789b5fece6117d1d596ec3a", - "0x000000000000000000000000000000000005c2b89c65b9c45efdf2bf5cbdce05", - "0x000000000000000000000000000000b4499b07e3de4944ca29633abff400cef9", - "0x00000000000000000000000000000000000187d0d4d483cb35e64464a6885435", - "0x0000000000000000000000000000000643e21ed4883f33d1a61a3da21f8e0e18", - "0x00000000000000000000000000000000002d892877e4dbb352301e484477a615", - "0x000000000000000000000000000000242344c76219ffbd4cbf7299be2d4d8238", - "0x00000000000000000000000000000000000fd134ba44fe4f42275bc1d568e392", - "0x000000000000000000000000000000c4205dcfbcd9d2d00a99dd2cac299f803a", - "0x00000000000000000000000000000000002bd0073c75fee0c1052bf8d77cc61c", - "0x0000000000000000000000000000005a2afa4f892b98fd94169ad9012cb18064", - "0x000000000000000000000000000000000015c0782ba4d38d2232be7a3bc93553", - "0x0000000000000000000000000000002fc021c3399d4ec547c6dbcde704d59559", - "0x00000000000000000000000000000000002ba5009273d82ff1b81e66e8973a04", - "0x0000000000000000000000000000001142acd34a119c170276d8916790f405b3", - "0x000000000000000000000000000000000026c663dd86b32f271d03b5322f9453", - "0x000000000000000000000000000000e2bfb4e3390c989437cc23207939182db0", - "0x000000000000000000000000000000000020e904e40cfe94bff90bf71850d77b", - "0x0000000000000000000000000000004962a9f6c32095489790092c1f8dadca88", - "0x0000000000000000000000000000000000259f1e49a84b7961687b7fc94e25b5", - "0x000000000000000000000000000000747dc31ed9d73f624adf4cc1edde798ce5", - "0x000000000000000000000000000000000022729e7352e2225342d426f72ed7fa", - "0x0000000000000000000000000000007e6a9bc3bf65db821d25ae34bc96a2e2ef", - "0x0000000000000000000000000000000000262e0436db25c7e941c877a2e346fc", - "0x0000000000000000000000000000003bdcd78296b6bdafc182df096e72b8e885", - "0x000000000000000000000000000000000029cb0722970834563ea229c9811477", - "0x000000000000000000000000000000a2174b8fe2ef0b1755e966ee129e39d78f", - "0x00000000000000000000000000000000001a430087d34eaaaaa27b5e6720ed61", - "0x00000000000000000000000000000032ee50da813a57f0d6aebcec43c9eedb2f", - "0x00000000000000000000000000000000000949da3b3f9dd09e59c1f9e0a1e00c", - "0x00000000000000000000000000000046e4c294fb285fbcd5fc2957c4c9bd7ddf", - "0x00000000000000000000000000000000000f097db24a007a4ab0bce654a5aa58", - "0x0000000000000000000000000000001f523c324398d106fba1f193235eb0c9b2", - "0x000000000000000000000000000000000012d66e98e2d4c0bd689515fca6d3b2", - "0x00000000000000000000000000000097775d0c87d3535ed89a94e02e7505b8dd", - "0x0000000000000000000000000000000000269039af4c910bb2c4495388047959", - "0x000000000000000000000000000000c2db2e3aafe08ab6cb32f073750885e43b", - "0x00000000000000000000000000000000000e4ef3f025348491c2b658044d1a82", - "0x000000000000000000000000000000bf344c256e0c8973f634bb4d57ac582c7e", - "0x00000000000000000000000000000000000a4ba900bcb3d32e44d5f004bd77d3", + "0x000000000000000000000000000000f078fdf36f85a2ab99b5749c77c6532a04", + "0x00000000000000000000000000000000001546d96c4af747dc083949ca138cc7", + "0x000000000000000000000000000000260da5422b77fc29fc736e6a39c98c0d75", + "0x000000000000000000000000000000000029511d108e71dd6d2691322a1b761b", + "0x0000000000000000000000000000008393cd41e881c3da60d2c599032ad8b501", + "0x0000000000000000000000000000000000149aceab4dd6e59be1c0017f9979ae", + "0x000000000000000000000000000000207aa4ce6eb04eb17054ed90cf8a64a0d0", + "0x00000000000000000000000000000000000ffc57630086f3e30d2f8c8e7368db", + "0x000000000000000000000000000000230de647b8df9db13b332d15336434aacc", + "0x00000000000000000000000000000000002344ab352604571fd49c271bdd2b4a", + "0x000000000000000000000000000000a70d6cfa8831947f350f52278efe6cace3", + "0x0000000000000000000000000000000000151baef3487c815d5a3e830ccd81fd", + "0x000000000000000000000000000000ef97ebfa3ca4455cc192998f0da3d619eb", + "0x000000000000000000000000000000000012b275f639cf070c9a9c61b2c5d65d", + "0x000000000000000000000000000000eda98e736270990bbed7cbc433ccf03c70", + "0x00000000000000000000000000000000000b5f44c6576aa54ab2fc6f97f15bb9", + "0x000000000000000000000000000000f9098c32357c67bab6f21346707d72a7b2", + "0x000000000000000000000000000000000017bf4a50c5494b8c9872480827685c", + "0x0000000000000000000000000000003887f704ce05b06f66e15de2c9fa3ca6b9", + "0x00000000000000000000000000000000002825c2aabbe2ad667c651e50279d5c", + "0x0000000000000000000000000000008db76d94efbb217786b75d11ea10315bb7", + "0x00000000000000000000000000000000000230c3d6678be430cabb26cca8f0ae", + "0x000000000000000000000000000000e247f295b392fc59ebfa15fd85aa435bdc", + "0x000000000000000000000000000000000016b38e8800979717f8db602c4f1a8b", + "0x0000000000000000000000000000001302f251b4dac62841ae1bd13df945d49c", + "0x00000000000000000000000000000000000f622837c4f0df5a76db7277b6cf69", + "0x0000000000000000000000000000008eda01b03bfa9b49c349dd7dba73bd4838", + "0x0000000000000000000000000000000000301757bba30d67e713f1b362c965f9", + "0x0000000000000000000000000000005112ec788a3bb2705be74a10a37a26628c", + "0x000000000000000000000000000000000022fc4a9599e1b52cdcb5ccd32d0bb4", + "0x0000000000000000000000000000008b18e10b13e3af8f6ecf8f8734d7229f64", + "0x00000000000000000000000000000000002676740129790a0fc226a6add1abf1", + "0x0000000000000000000000000000000967574848325126f5d627d0bda1073488", + "0x0000000000000000000000000000000000222048841b5107c7c57f727f3d4ff0", + "0x0000000000000000000000000000002a9f418098c1ee4da9d0863540cfcc346f", + "0x000000000000000000000000000000000029d1432c1fbb8c702441625b39683c", + "0x000000000000000000000000000000de1cc1cc37ca7411e1133a3bd98ce6ae6d", + "0x000000000000000000000000000000000001561ac9afe09c62bfda359452f710", + "0x0000000000000000000000000000006836e63f635b4634d013afb39f01427767", + "0x000000000000000000000000000000000017ae15897726b3491e99493e129638", + "0x000000000000000000000000000000fe92371733f126cbb990f86f5dd1511299", + "0x0000000000000000000000000000000000241d73c901a93b47f6ee84c71d0a8b", + "0x00000000000000000000000000000076b16c9aa8478a3ee18ed468da3797f13b", + "0x0000000000000000000000000000000000109050a4afe6f303a665b79cf846c0", + "0x00000000000000000000000000000061dd3d638fdd3910705759d3842ba1fcfa", + "0x00000000000000000000000000000000000b446d3f474308a7515d7162ffaf3c", + "0x0000000000000000000000000000005fdd3a88320d2bd49c724640e947215e28", + "0x00000000000000000000000000000000000ad5f20c0294b837422b00c124020c", + "0x00000000000000000000000000000009d151f0cdeba490b9e68f258e77716199", + "0x00000000000000000000000000000000000fb61fd6f68c80b2cd456fdb644af5", + "0x00000000000000000000000000000067c9ef9f933e07ac97898e4af0a0d135ac", + "0x00000000000000000000000000000000000842f197a6330cfdef2fc548d4056e", + "0x000000000000000000000000000000946f3c96b2b0f45399ae3115c44688ffc8", + "0x0000000000000000000000000000000000105627a7b4c82411c6e5fe2a25f3b3", + "0x000000000000000000000000000000bb14e6dd085ceda2d8feac6d264fec0b5e", + "0x00000000000000000000000000000000002425aab858832c6b4835e0e83ae06c", + "0x0000000000000000000000000000006cb719267efd12c13bcb41327af7caaf32", + "0x000000000000000000000000000000000022cf13b98269461349e675763b83dd", + "0x000000000000000000000000000000952fad4c86d1fc88c804b6e8c57b9e21ce", + "0x00000000000000000000000000000000001e8777d3e037d04dee4f40a4d50dc0", + "0x0000000000000000000000000000003f78a6f8b251eb60fe82a52482dfc358bb", + "0x00000000000000000000000000000000002675df2da498bbd15de08f2e3748a9", + "0x000000000000000000000000000000f24b2345f57760d0a0b5149fd93d907ccf", + "0x00000000000000000000000000000000000e3d7709a0911a558d61a903b99e10", + "0x000000000000000000000000000000c7c4d98bbe19e884bd353c79feec852a27", + "0x0000000000000000000000000000000000260edeeff498c1c757acaf2ab582e9", + "0x00000000000000000000000000000088fae0182aee709fa365b87401f3013fd6", + "0x00000000000000000000000000000000002318e9353bd4b1507587e7c31c4292", + "0x000000000000000000000000000000ec0b70b08d2ed3866d5f33b936c7c6f9c9", + "0x0000000000000000000000000000000000076def7fc58f8da2aeca73ebf20d64", + "0x000000000000000000000000000000abe5fd59c81173b1e9f781825d70a19ce5", + "0x00000000000000000000000000000000002def5e88a85a9355790c7d524c8fd2", + "0x000000000000000000000000000000c1289233880c64c9c61115dba0e8e70040", + "0x00000000000000000000000000000000001a8c70c6f5ce1655f4af38761f1702", + "0x000000000000000000000000000000c15e8720c6084375072ffc000d4257b30b", + "0x000000000000000000000000000000000004f0ab4d8f66ced2025c972648a968", + "0x000000000000000000000000000000ca8b63e1a613b38869953e1b46fee86cf1", + "0x00000000000000000000000000000000002e0b95d75d6f12df8dc512d0bc934b", + "0x00000000000000000000000000000067c889dfbacbc9243d41c0f324d2f193ca", + "0x00000000000000000000000000000000002c2ff6b977b74c63366b8da2003d46", + "0x0000000000000000000000000000007d596615cd7e49e3f61418674d58396872", + "0x0000000000000000000000000000000000054585efeb791ca7cfad4eb7a995b6", + "0x0000000000000000000000000000007cc4518d40801c097f7a416407c6552737", + "0x00000000000000000000000000000000002e4b8f457f7b38b2695c65b6e5f9bd", + "0x00000000000000000000000000000050190beddf49f49ca143550370ff05a583", + "0x00000000000000000000000000000000002d26b502043c651f1d43ccd1cd3d8e", + "0x000000000000000000000000000000771a627d9293261b513e8334917822952b", + "0x000000000000000000000000000000000003287962ec49d7525f6a0478615b50", + "0x0000000000000000000000000000008119e229e16a072dadfc501e845de8636f", + "0x00000000000000000000000000000000002b71a8d62325e84edffb93822dffe6", + "0x000000000000000000000000000000b70344374476bd9f14c5a4d2a97ab26256", + "0x00000000000000000000000000000000002d9697913326f6140c0941651329ac", + "0x000000000000000000000000000000246089daba55a613a8e0532c54799b527e", + "0x0000000000000000000000000000000000051e22e4eeb2054a4973fa2dd38714", + "0x000000000000000000000000000000dd9fb6025de99f4710520420e9fa24b07e", + "0x000000000000000000000000000000000010c6272a2822c97cbcbb832d198c40", + "0x0000000000000000000000000000008694bae0220cc8de0f5c8d971d2df21f6d", + "0x0000000000000000000000000000000000241d72b3b591ca47827fa5aad3814c", + "0x00000000000000000000000000000008e54f90cfd15792dbb6419adbaf2fb714", + "0x00000000000000000000000000000000001d8508ffd1e727e45eb477de78e8eb", "0x0000000000000000000000000000000000000000000000000000000000000001", "0x0000000000000000000000000000000000000000000000000000000000000000", "0x0000000000000000000000000000000000000000000000000000000000000002", "0x0000000000000000000000000000000000000000000000000000000000000000", - "0x00000000000000000000000000000047a2d6f3b0d9567fa688876ddc9f0ede19", - "0x000000000000000000000000000000000016fefa9963257713b9fa8d738c5758", - "0x00000000000000000000000000000059bd6ed5e6a82d7dcac6d69ca01f0e012c", - "0x00000000000000000000000000000000002947b71bb5d61e36dd8fb8932edd4a" + "0x000000000000000000000000000000496826ac249baa71f9e71c480cd24a8482", + "0x00000000000000000000000000000000000394e52928df12dfab4a1ca8fc8055", + "0x0000000000000000000000000000009e097584e7ba38e96cd04b386d0f1998e1", + "0x000000000000000000000000000000000022870699485e47b55404b1d2ae5915" ] -hash = "0x0325b49055a2d672113932e0ea7a0f8c8b67f8db0ea9c07a141c2f9bc11f9909" +hash = "0x171cb0aaca945477437c808eccb569cba7f954d148413ff2a4ab2f21c8c182fc" [inputs.previous_rollup_data.vk_witness] leaf_index = "0x000000000000000000000000000000000000000000000000000000000000000c" sibling_path = [ - "0x1233184596cb7502f809633e3600fc817cb3948b5441a28e208b7eb2a40cf9a2", - "0x2dc6383d6cfabb6400daa5a334bd713a942ef800f8e4495e9a07b2461c079cf4", - "0x26669e62f65ec53a75088d42ea1c394daa80f9317c4a8a61d33bb8e766e35b8d", - "0x2157aca3fe88ffe5ca534ce2e7f13a8441560ec9ac8dcafe25e583a52c6a849e", - "0x1269cc8f8216b2d60daca30e5e0ba1e1d11dfe89f0f0c2cadb113c30de181554", - "0x26b3cce275e6a21ac2049ab937390d4afb7793ec68d1d7bcddadfbfe45fbfb06" + "0x00f7186b891513a59667664e300443766932762385c0b9604559c52e770509b4", + "0x0a60cb44548a4dff391b54c00c5c4d8a0e5e2c3bd8382d0681bfea37b8b62284", + "0x286f54611cbfbd9d03338a684eb2faf235c84271894fcc1608b09da60dcff781", + "0x0e3b41ae0c61b2201c7ddad14a74a90a9e8447d5394e3487069a6b7bafe107af", + "0x0d8e4232c3e1214b1a72ee04016dd919308ecb6b01e871bdcdc36248ab044711", + "0x2fd02310a424f73ae3709cf4ff9d507e920407534ba3e965a5542a138b815675" ] [[inputs.previous_rollup_data]] [inputs.previous_rollup_data.block_root_or_block_merge_public_inputs] -previous_block_hash = "0x19ddd3dd2c7628e2eb6e0337f030e92b88607eaf8bf0e715247fed66a9cb7308" -end_block_hash = "0x27f5d5c5cfd42e32e6f34c0e72d21b2f426aa3dbf836f2c475687f7402fee759" out_hash = "0x0000000000000000000000000000000000000000000000000000000000000000" -vk_tree_root = "0x22a749df2f64e23077f364a4efdd544e0a0666eb43bd1560f5a698b10997c43c" -protocol_contract_tree_root = "0x16862f3a312325ba6b37abe1073a51ffb333ee32fbaa437454dce33423766de6" +vk_tree_root = "0x035e62aad06a66ce8d2a9d112a620e2337018ff2c763061808a24ea0f220ffbc" +protocol_contract_tree_root = "0x071f2e01b58eff84ebe1608c9eccf21bf2d51ac74cac3816a3dee8372cdb0b7d" prover_id = "0x0000000000000000000000003c44cdddb6a900fa2b585dd299e03d12fa4293bc" [inputs.previous_rollup_data.block_root_or_block_merge_public_inputs.previous_archive] - root = "0x12f5c698e8699fb38f5a359e0e6a1735fc9f40978a1b9deaa9564d3d5b484311" - next_available_leaf_index = "0x0000000000000000000000000000000000000000000000000000000000000009" + root = "0x22b8bffe322430b84b71422d40fa3e95953186d197111355a8f19604965ef366" + next_available_leaf_index = "0x000000000000000000000000000000000000000000000000000000000000000b" [inputs.previous_rollup_data.block_root_or_block_merge_public_inputs.new_archive] - root = "0x0ade720e378d25cca5709fce2602fe16b35af47fdcdf69c93ebaa825f9fbbd75" - next_available_leaf_index = "0x000000000000000000000000000000000000000000000000000000000000000a" + root = "0x186dcdef9d3e2a6cbb4ac49d43f3470ccf15ece221819fee521b4cfe39239dce" + next_available_leaf_index = "0x000000000000000000000000000000000000000000000000000000000000000c" [inputs.previous_rollup_data.block_root_or_block_merge_public_inputs.start_global_variables] chain_id = "0x0000000000000000000000000000000000000000000000000000000000007a69" - version = "0x0000000000000000000000000000000000000000000000000000000000000001" - block_number = "0x0000000000000000000000000000000000000000000000000000000000000009" - slot_number = "0x0000000000000000000000000000000000000000000000000000000000000014" - timestamp = "0x0000000000000000000000000000000000000000000000000000000067d9b7b0" + version = "0x00000000000000000000000000000000000000000000000000000000e6f03fcf" + block_number = "0x000000000000000000000000000000000000000000000000000000000000000b" + slot_number = "0x0000000000000000000000000000000000000000000000000000000000000024" + timestamp = "0x0000000000000000000000000000000000000000000000000000000067fa7640" [inputs.previous_rollup_data.block_root_or_block_merge_public_inputs.start_global_variables.coinbase] - inner = "0x000000000000000000000000a540911acb4195ad0bbfa2c10a46e3e54df4c649" + inner = "0x00000000000000000000000071d84878d343d87f145bfcc3af71b20b7430de57" [inputs.previous_rollup_data.block_root_or_block_merge_public_inputs.start_global_variables.fee_recipient] inner = "0x0000000000000000000000000000000000000000000000000000000000000000" [inputs.previous_rollup_data.block_root_or_block_merge_public_inputs.start_global_variables.gas_fees] fee_per_da_gas = "0x0000000000000000000000000000000000000000000000000000000000000000" - fee_per_l2_gas = "0x00000000000000000000000000000000000000000000000000000000000747f2" + fee_per_l2_gas = "0x0000000000000000000000000000000000000000000000000000000000000c6c" [inputs.previous_rollup_data.block_root_or_block_merge_public_inputs.end_global_variables] chain_id = "0x0000000000000000000000000000000000000000000000000000000000007a69" - version = "0x0000000000000000000000000000000000000000000000000000000000000001" - block_number = "0x0000000000000000000000000000000000000000000000000000000000000009" - slot_number = "0x0000000000000000000000000000000000000000000000000000000000000014" - timestamp = "0x0000000000000000000000000000000000000000000000000000000067d9b7b0" + version = "0x00000000000000000000000000000000000000000000000000000000e6f03fcf" + block_number = "0x000000000000000000000000000000000000000000000000000000000000000b" + slot_number = "0x0000000000000000000000000000000000000000000000000000000000000024" + timestamp = "0x0000000000000000000000000000000000000000000000000000000067fa7640" [inputs.previous_rollup_data.block_root_or_block_merge_public_inputs.end_global_variables.coinbase] - inner = "0x000000000000000000000000a540911acb4195ad0bbfa2c10a46e3e54df4c649" + inner = "0x00000000000000000000000071d84878d343d87f145bfcc3af71b20b7430de57" [inputs.previous_rollup_data.block_root_or_block_merge_public_inputs.end_global_variables.fee_recipient] inner = "0x0000000000000000000000000000000000000000000000000000000000000000" [inputs.previous_rollup_data.block_root_or_block_merge_public_inputs.end_global_variables.gas_fees] fee_per_da_gas = "0x0000000000000000000000000000000000000000000000000000000000000000" - fee_per_l2_gas = "0x00000000000000000000000000000000000000000000000000000000000747f2" + fee_per_l2_gas = "0x0000000000000000000000000000000000000000000000000000000000000c6c" [[inputs.previous_rollup_data.block_root_or_block_merge_public_inputs.fees]] - value = "0x00000000000000000000000000000000000000000000000000000009798d5824" + value = "0x000000000000000000000000000000000000000000000000000000000f57eec8" [inputs.previous_rollup_data.block_root_or_block_merge_public_inputs.fees.recipient] - inner = "0x000000000000000000000000a540911acb4195ad0bbfa2c10a46e3e54df4c649" + inner = "0x00000000000000000000000071d84878d343d87f145bfcc3af71b20b7430de57" [[inputs.previous_rollup_data.block_root_or_block_merge_public_inputs.fees]] value = "0x0000000000000000000000000000000000000000000000000000000000000000" @@ -3727,19 +3723,19 @@ prover_id = "0x0000000000000000000000003c44cdddb6a900fa2b585dd299e03d12fa4293bc" [[inputs.previous_rollup_data.block_root_or_block_merge_public_inputs.blob_public_inputs]] [[inputs.previous_rollup_data.block_root_or_block_merge_public_inputs.blob_public_inputs.inner]] -z = "0x27b5e1d94efab5b5c1ff4462bf1ff3683109ab5a43b6881f022d2e30ec7cbc5a" +z = "0x061ce5f2af3e1289a6a5a58ce65bbc4314b1d2a7d910fb9d08af674faba8456c" [inputs.previous_rollup_data.block_root_or_block_merge_public_inputs.blob_public_inputs.inner.y] limbs = [ - "0xc89ae3ecf74252aafd5d78f88b4115", - "0xd3c9aa2835c8ab743e667b23153b5a", - "0x438d" + "0xc5fd628028b5ff477881054b1e872b", + "0x66b519fcecd73108970496b6d1e9c7", + "0x0eb4" ] [inputs.previous_rollup_data.block_root_or_block_merge_public_inputs.blob_public_inputs.inner.kzg_commitment] inner = [ - "0x00956fc8b68d2305f545d4963f2ba32569cc738a6e922bfd6d5f1c337aef8c63", - "0x000000000000000000000000000000857c7d5fdb0464af437ba68035d8af07b9" + "0x0089a254667db6d4d4d51d83955f8ed6d3c9acd0f1dec9ab364ce3731abec7d5", + "0x00000000000000000000000000000090c25066a4522782b39018f1b44c8d90f0" ] [[inputs.previous_rollup_data.block_root_or_block_merge_public_inputs.blob_public_inputs.inner]] @@ -6619,9 +6615,11 @@ fields = [ [inputs.previous_rollup_data.vk] key = [ "0x0000000000000000000000000000000000000000000000000000000000400000", - "0x00000000000000000000000000000000000000000000000000000000000003f6", + "0x00000000000000000000000000000000000000000000000000000000000003f4", "0x0000000000000000000000000000000000000000000000000000000000000001", "0x0000000000000000000000000000000000000000000000000000000000000001", + "0x00000000000000000000000000000000000000000000000000000000000003da", + "0x00000000000000000000000000000000000000000000000000000000000003db", "0x00000000000000000000000000000000000000000000000000000000000003dc", "0x00000000000000000000000000000000000000000000000000000000000003dd", "0x00000000000000000000000000000000000000000000000000000000000003de", @@ -6636,9 +6634,9 @@ key = [ "0x00000000000000000000000000000000000000000000000000000000000003e7", "0x00000000000000000000000000000000000000000000000000000000000003e8", "0x00000000000000000000000000000000000000000000000000000000000003e9", + "0x0000000000000000000000000000000000000000000000000000000000000001", "0x00000000000000000000000000000000000000000000000000000000000003ea", "0x00000000000000000000000000000000000000000000000000000000000003eb", - "0x0000000000000000000000000000000000000000000000000000000000000001", "0x00000000000000000000000000000000000000000000000000000000000003ec", "0x00000000000000000000000000000000000000000000000000000000000003ed", "0x00000000000000000000000000000000000000000000000000000000000003ee", @@ -6647,126 +6645,124 @@ key = [ "0x00000000000000000000000000000000000000000000000000000000000003f1", "0x00000000000000000000000000000000000000000000000000000000000003f2", "0x00000000000000000000000000000000000000000000000000000000000003f3", - "0x00000000000000000000000000000000000000000000000000000000000003f4", - "0x00000000000000000000000000000000000000000000000000000000000003f5", - "0x00000000000000000000000000000026fed7cbfa6fef4b4beb62ad5cb35e1505", - "0x00000000000000000000000000000000002d68c4a9e5f457c085399bbd2f842f", - "0x000000000000000000000000000000c1b33034f71e6e52fe87fc49f691ebc6c4", - "0x00000000000000000000000000000000002f27273cf880dd9291eb2ab3a189a7", - "0x0000000000000000000000000000001ff1eaed28539c9f55b52d5d7aa8351291", - "0x000000000000000000000000000000000018c60f5235765b3d179cf2d1de0273", - "0x000000000000000000000000000000f4b697b30f9a5ad161fbf25c8d11cc665b", - "0x00000000000000000000000000000000001b21e717c694839b442d9c6d2f2680", - "0x000000000000000000000000000000ce0f61b49b140f12e1ef046c5745198841", - "0x00000000000000000000000000000000001d102334105b041841082bb3a97747", - "0x000000000000000000000000000000b7f96177f798c3ca9509c2623384468b22", - "0x0000000000000000000000000000000000215a9940e15f469bd6c056021c2207", - "0x0000000000000000000000000000009fd45876322e6d51108782a45e442e91c0", - "0x0000000000000000000000000000000000162c4829f2d428c93697570179667f", - "0x00000000000000000000000000000039e9e95307aeac2f83ff8ed745062f417c", - "0x00000000000000000000000000000000002b18b5ec282e9c3638f65d9cfd0fc5", - "0x0000000000000000000000000000007f6ca286a16b95c7d8aa37a638680cf9a4", - "0x0000000000000000000000000000000000102e877cec9f9dca0bd8c202d2cfb1", - "0x0000000000000000000000000000002bca6eabbb45be868c695c6a310b59d9d2", - "0x00000000000000000000000000000000002f02b13a7ec7217591dc60eae97314", - "0x000000000000000000000000000000ead9c2d4e1ab4acad18273c16b6ecded81", - "0x00000000000000000000000000000000000844ae53b0633280db0dc7ca099e1a", - "0x000000000000000000000000000000ace5a344208a42aa76d2c94536b65287ae", - "0x00000000000000000000000000000000001ada7c0c89121179213e1ec41e050c", - "0x000000000000000000000000000000ddbb65fee64c9d1204287e811cb436fc95", - "0x00000000000000000000000000000000002d2141dbf8e19e490a545c243b9da8", - "0x000000000000000000000000000000980981ed27d03f6a5a799091150f1dd318", - "0x0000000000000000000000000000000000236aedb66c50bb004e87095b95ddfb", - "0x000000000000000000000000000000c5b70b2b30a9e136b42bbb0e470b4f9686", - "0x000000000000000000000000000000000028e72e21606b26b8a995ebd9b42669", - "0x00000000000000000000000000000041b29382518c81a32ea6fd6376f864024f", - "0x000000000000000000000000000000000017007410722d51d122a89d0318c028", - "0x000000000000000000000000000000f2635c83dbe3ba4d0289ca3c88ca2697a3", - "0x0000000000000000000000000000000000083eb6677487814fb65687dedea2ed", - "0x000000000000000000000000000000170e63f49b65ed34caed8e67041a379040", - "0x00000000000000000000000000000000002ef86d1df7745fc68281badd338847", - "0x0000000000000000000000000000006fcd6815e31b6ba7f2d2a36d02d09def42", - "0x000000000000000000000000000000000007cf16cf1fc7d04cf814cfc8c919c9", - "0x000000000000000000000000000000ea4064f00819f55f5b265b9b2ceda16dfd", - "0x000000000000000000000000000000000029e2d70223b82a64b30cf971139de5", - "0x000000000000000000000000000000d451192137cbd9252b7b7053da5f696057", - "0x000000000000000000000000000000000012476d1df596ea74b986f09c6d13dd", - "0x00000000000000000000000000000008be828a28cd98bec507017a30625e6115", - "0x000000000000000000000000000000000020f244fd2f72be4540eaf190e9cdb8", - "0x0000000000000000000000000000002e590b67063e5cb86595d48e6d3872e110", - "0x0000000000000000000000000000000000066bc1d43ac3bac34b9c1912e9b23d", - "0x000000000000000000000000000000ae8c577ab2605dc9a9bb16886af3857937", - "0x00000000000000000000000000000000002fb7db05e346f2786d40c5a5adbf37", - "0x000000000000000000000000000000825e761973d913c831ddd54b4b78efe61e", - "0x0000000000000000000000000000000000226281078b464fead25552ff0dd6e9", - "0x000000000000000000000000000000f22d2ea59d7aa31453c01434ed3d43fa9b", - "0x000000000000000000000000000000000003f4b6f0980cc28190fe7f9969be9d", - "0x000000000000000000000000000000dc079d7c287b62d3f83874842114075648", - "0x00000000000000000000000000000000002032c308710d793bd9db830bc1818c", - "0x00000000000000000000000000000013802e39f4d2425f2d0f5e208234ed611a", - "0x0000000000000000000000000000000000128b98bcd1688c626dec150a8235a1", - "0x0000000000000000000000000000001c390c3152a83c8ab62dd2ccc94c423cc7", - "0x00000000000000000000000000000000002f5ebe5b10da1068e889f4e1978aa5", - "0x0000000000000000000000000000007758f1ee634c1304913d5f518b99bafa3c", - "0x00000000000000000000000000000000002ad732718f7b7c6abbfd5071adcf6d", - "0x00000000000000000000000000000045423b4aadfc15ebf49bbf2cf0cb49c5e0", - "0x00000000000000000000000000000000002e179e98eac7777a1d4180dccac990", - "0x000000000000000000000000000000de43bda966764539138879b73681c07d0a", - "0x00000000000000000000000000000000002edc51252ef0334178d44fed8b932a", - "0x00000000000000000000000000000035bc3bc75affc28d2b5d7c1487db6c1afa", - "0x000000000000000000000000000000000018a327c2275eb248232f70507cd54c", - "0x0000000000000000000000000000009696c0d97710128cad5a264e8584bbc73c", - "0x00000000000000000000000000000000001099acafa6ffbc3cc3d78056f6b2df", - "0x000000000000000000000000000000bd7190e82f81d571f25a05c96943832ade", - "0x0000000000000000000000000000000000145bb43a10e4918116af76c2f6436e", - "0x0000000000000000000000000000006d04132197785f426de4952d4c1870a944", - "0x000000000000000000000000000000000008f57159c23b0348ac4c3decfde627", - "0x00000000000000000000000000000038891c6064c88da977d299d59aff273160", - "0x000000000000000000000000000000000020c3e1e8a57302ca2ead64a9be3b5c", - "0x000000000000000000000000000000c8faa116de4f2ef5fc1a380debfef62e6a", - "0x0000000000000000000000000000000000178aae3ca6968497335c960fca30af", - "0x0000000000000000000000000000001d996a822218f05bc1d8c6f22645d3958a", - "0x00000000000000000000000000000000002e285fce072c6e66833684947c3b68", - "0x000000000000000000000000000000df5c9bc2c98bc791682cc89aca16f0aa96", - "0x00000000000000000000000000000000002d1ea455fabdad58de319968e2d2d8", - "0x00000000000000000000000000000050a0c0b1edd8d0dab5e21ec20c5b7bd830", - "0x00000000000000000000000000000000000c14688998d17d8b7d9a1af05a8200", - "0x00000000000000000000000000000003b71bc93eb7a53b6c522c0a7b0ee09fa0", - "0x000000000000000000000000000000000026c80d51615257a0cc01987615d9af", - "0x0000000000000000000000000000003a11f3ff7ed5dafa46a8e17ad10d8528d4", - "0x000000000000000000000000000000000028daa2aab093285dcdc2f01b295cd2", - "0x000000000000000000000000000000c47e0c7183bf78529905ebde0e52e8a8da", - "0x00000000000000000000000000000000002d9f06ece033f0bdf74fcc5cb0c389", - "0x000000000000000000000000000000b61e2cc78f69c9d12b2cf873ce56460acb", - "0x00000000000000000000000000000000001ca91a6441e1d918a2f71760e88a10", - "0x000000000000000000000000000000b41933d9f85656709058f0fddcfd5be3e4", - "0x00000000000000000000000000000000002a9bc09dc9ec06eb6ee1ea51a5de24", - "0x000000000000000000000000000000cad3eaab5bbd5744461bcd5956fe88fa4d", - "0x00000000000000000000000000000000001f6b3741c7ba090902fabbe5a681e3", - "0x0000000000000000000000000000006dde40da2faf3d3a9b44d2950c474ccc09", - "0x0000000000000000000000000000000000301fea7d8a0eda5ae0bbf767fd6490", - "0x000000000000000000000000000000f9f66e197773756fd90d81d3bf34cbea82", - "0x00000000000000000000000000000000000105eaeaf72f2686b6317b7d55140f", - "0x0000000000000000000000000000008ea77bae71c047d062115720c184bdd536", - "0x000000000000000000000000000000000030109f001002799e16173f6ca1f7b0", + "0x0000000000000000000000000000002e88b07c39900db053525288bdd0087649", + "0x00000000000000000000000000000000002c91fb0fa57116d85d3b54dc09752e", + "0x000000000000000000000000000000681625d04478e9bb0d8df5cce6008e1619", + "0x00000000000000000000000000000000000d8fd47c8c674bf9617ebdf1a1e4de", + "0x000000000000000000000000000000c09f5d3c68276662a25264d9faa09f7044", + "0x0000000000000000000000000000000000028b206c82378aadd259f6e17aff3c", + "0x0000000000000000000000000000004adfd002b530937c0edf38143724296b33", + "0x00000000000000000000000000000000002c4c2dec1aa0870f5eeaed102cf646", + "0x000000000000000000000000000000ab390fbdd685003cbc55840dc738d8e121", + "0x00000000000000000000000000000000002b9b729e52762cd2bb308da719f441", + "0x0000000000000000000000000000007cf205debc88e55e72c98ca237ef150e72", + "0x0000000000000000000000000000000000152d1bce0e48e97c862ddba46add29", + "0x000000000000000000000000000000e3131a7139372c7eb2eca23de3f47d0c33", + "0x000000000000000000000000000000000028a80a4e7511effa79d787e810c1b4", + "0x00000000000000000000000000000067fcf34a8249031333aea9ea00df537c84", + "0x000000000000000000000000000000000027c37e0bde1d404d4cadd36ee73397", + "0x00000000000000000000000000000021a158647098c8ef0fcf1cef1b24580562", + "0x00000000000000000000000000000000000290e31a0dc3ff806ee24627b25b3e", + "0x0000000000000000000000000000000c65f48dc17b81091f651a76cd2dd1c549", + "0x0000000000000000000000000000000000085921054334ffbfebf7f9ca2fe087", + "0x000000000000000000000000000000c95767ada81b31a875536a52f516290cb1", + "0x000000000000000000000000000000000009f6f97c629f7e84bfcaea029c4a32", + "0x000000000000000000000000000000aa2e35ea449bc6f311a73ad2c58daf54bf", + "0x0000000000000000000000000000000000150ba12898f17fdb17aa90b8a883cb", + "0x000000000000000000000000000000e6a9379f531ea207de4c38b3eac969d590", + "0x0000000000000000000000000000000000168890ac957e785e5322018a09f155", + "0x000000000000000000000000000000dfc38022eaac25d496a4537759ce2bc920", + "0x00000000000000000000000000000000002bd0c4aa32c8a85d9b5200367521b5", + "0x000000000000000000000000000000b2cfe2df2eb3fdab69b8c67064c9307648", + "0x000000000000000000000000000000000023d849f1c8419d70fa64a7b14f7610", + "0x000000000000000000000000000000884fe3a5bad9833eb815e2dad0da817a76", + "0x000000000000000000000000000000000021a5d5714dfd3001b81a70a1a17a36", + "0x000000000000000000000000000000707871f735f5df51df8093713767018689", + "0x0000000000000000000000000000000000193c9f08ce38f54ed569b6b6524508", + "0x00000000000000000000000000000093290146c2a1ac981fba19d18005fbb8c0", + "0x000000000000000000000000000000000007feb7741e34138ebf29c3dea6aca9", + "0x000000000000000000000000000000d3fa087894cdee8ffdb3eb6937c81eed82", + "0x0000000000000000000000000000000000002462b1aa7ba47d66f30828f85917", + "0x0000000000000000000000000000005a781d6fe2fd37c3274417408c2c836fe9", + "0x000000000000000000000000000000000017471dd4611eadf1e120ac7bf4925f", + "0x00000000000000000000000000000040c885b6d1b4931ba871c32febab1bc2ae", + "0x000000000000000000000000000000000009279f81b4480f648011f8a8e75df5", + "0x000000000000000000000000000000274d67b2019f591efde99180250d823083", + "0x000000000000000000000000000000000013c1286a02903728aabaef340211b7", + "0x000000000000000000000000000000fced01401ea697655bf4356b375ad95331", + "0x00000000000000000000000000000000001a5d64ea44e27286097258794124f3", + "0x000000000000000000000000000000de11297e27ea9fb15b446b1c229d320a77", + "0x000000000000000000000000000000000014e7f0153b17386978128a3ddf6f94", + "0x000000000000000000000000000000977fa4ff9efb729e1dda4e8df44c19c654", + "0x0000000000000000000000000000000000026afd8abfffa0af13339b2dd9ebcd", + "0x000000000000000000000000000000376d7636eb91cac7729cd3436fc0a0e98b", + "0x00000000000000000000000000000000002c764b31b8e1490beadeb531342c4c", + "0x000000000000000000000000000000cd6cbc12ab4a5364047ad1b0eb1eb89a06", + "0x000000000000000000000000000000000009d767d1fe9b1c02a650d50695302a", + "0x0000000000000000000000000000002630f200d39316449c1dae8efaffe2e9c9", + "0x000000000000000000000000000000000021da5d1a8355409e97be9dca97b7ad", + "0x0000000000000000000000000000009c13455e19d631dd031866e45853aee7d6", + "0x00000000000000000000000000000000002556007af71bd8e8f7b5e296018425", + "0x000000000000000000000000000000d816550feccecc0b77b0246e1ef4b17e67", + "0x0000000000000000000000000000000000127fdfec7fe0af8feaa0d40d605b83", + "0x000000000000000000000000000000999afef5f6e19b24d40f6d2295dc3f7753", + "0x0000000000000000000000000000000000107ce64e10da0fce87441484f484f4", + "0x000000000000000000000000000000c6a93d2383719046f6807eb85cf819142f", + "0x00000000000000000000000000000000000241a3f1af4aa458ca0c726fc7369e", + "0x000000000000000000000000000000306dbb8f1335c94042b4a9b25ae9cba4b0", + "0x000000000000000000000000000000000011f7c1ef76746484fcf8e4d5486d2e", + "0x00000000000000000000000000000045741161deb82c52c3412420d8b6fd20de", + "0x000000000000000000000000000000000019158e6930bc25c153c79ede084462", + "0x0000000000000000000000000000003d3f9ce37a8f185e75ab6af7d95e133aa8", + "0x0000000000000000000000000000000000145d528b43cae46443256d547e66ec", + "0x000000000000000000000000000000050fa879e850ae0067b2dedc5c5340130b", + "0x00000000000000000000000000000000001b983d621ac7449a98c4eb9abdf5b1", + "0x0000000000000000000000000000008355a08cb9d97445bcf17f64c2c73d533f", + "0x00000000000000000000000000000000002dfedc8539fa8e1d4b92dd3c455a02", + "0x0000000000000000000000000000004dac0a3be1d7f571a7aeb4f73a13f57c3b", + "0x000000000000000000000000000000000024992878c4a7294e03206d9ddc0c8e", + "0x000000000000000000000000000000d96f1ae43437c649869fde5304983e61eb", + "0x00000000000000000000000000000000000a8b393b5babb5c17a5e03eb7ac9e0", + "0x0000000000000000000000000000005cfc4bee637f5d970b2c426d669b2fce0d", + "0x00000000000000000000000000000000002e4befb29a6e1af13a39f97cbc1f5b", + "0x000000000000000000000000000000af8ce756e2abe90f918dc1c4403aff30e5", + "0x0000000000000000000000000000000000242be5164d12064c51218b5ec75f98", + "0x000000000000000000000000000000775fd350dba37ad3c04ac7f883c9b28c36", + "0x000000000000000000000000000000000013f3645ecaa207a429df2c9b7832cb", + "0x000000000000000000000000000000950682eb60cb5455d12d47d478edcd8744", + "0x00000000000000000000000000000000002674dcc5c46aace2a7b24c9177bca4", + "0x0000000000000000000000000000009d0400d74c2810099803ce00e4d212e027", + "0x00000000000000000000000000000000002dd78ffbcabe324f8fdd974ba4592e", + "0x000000000000000000000000000000835d6524088c85a6229c253f19f9075a24", + "0x00000000000000000000000000000000000ea53cd2576f3ed59997b9c31ade62", + "0x000000000000000000000000000000b63021ec911d878a8808271f9fc354f6c1", + "0x0000000000000000000000000000000000013899f19981c306831c30f8be091f", + "0x000000000000000000000000000000e9ea0973de12fdbcf9692352b0bb9e126c", + "0x00000000000000000000000000000000000f480ce1fe1a5e6d79c1aea34ff6bd", + "0x000000000000000000000000000000377185add84afd6c2c81cd920469f4eed8", + "0x00000000000000000000000000000000000b30da5e57df9005bb26388bec1e13", + "0x00000000000000000000000000000016d15d01c4e568368a015a4a1bd827a3b9", + "0x0000000000000000000000000000000000181038d51220ac7f524520f4dd4e00", + "0x000000000000000000000000000000f69b5e222476cd81abc41a7e1c7dab2bc2", + "0x00000000000000000000000000000000001fb2cec72c2a711d3a7cd9da9ae57b", "0x0000000000000000000000000000000000000000000000000000000000000001", "0x0000000000000000000000000000000000000000000000000000000000000000", "0x0000000000000000000000000000000000000000000000000000000000000002", "0x0000000000000000000000000000000000000000000000000000000000000000", - "0x000000000000000000000000000000c4399412300f552e531a43c9bb0dfc3a8f", - "0x00000000000000000000000000000000001c4364fe54013c7a9417789acf42b5", - "0x000000000000000000000000000000d7e28a366b5eaad70d3e6b1bb60a4676c2", - "0x000000000000000000000000000000000015b93d2e985c7049ca42abf992b1bb" + "0x00000000000000000000000000000061f94ff6f3c3e4061669fe6eb6350ab79c", + "0x00000000000000000000000000000000001f527b05e40ccee325f3d78ea9f7b8", + "0x0000000000000000000000000000000397ad9195a5fc624b6993091b9e19b7df", + "0x00000000000000000000000000000000002cb7b807bfa80b4ee8793d4f5dc0fb" ] -hash = "0x21db42a495ccabeabfd3e3a392c895e961f000a51970873b32b491984951a1ae" +hash = "0x0ff94305291786724741b5d547c9a493c22d6fea10f5fc159d775ea1686f1b07" [inputs.previous_rollup_data.vk_witness] leaf_index = "0x000000000000000000000000000000000000000000000000000000000000000a" sibling_path = [ - "0x03f18045fbad3a8ef96390bf160a77fbc1cf068e21b1476cfc77bd8349ee8b2c", - "0x174fe81d15f597a70b4c8d24c4c7c0ba11b63ef2bf52681df10b3c024c67cf87", - "0x122c3693da0dab2793d8d190fcc701f66e0c468aa1b84a834cbf0e81abd203f4", - "0x2157aca3fe88ffe5ca534ce2e7f13a8441560ec9ac8dcafe25e583a52c6a849e", - "0x1269cc8f8216b2d60daca30e5e0ba1e1d11dfe89f0f0c2cadb113c30de181554", - "0x26b3cce275e6a21ac2049ab937390d4afb7793ec68d1d7bcddadfbfe45fbfb06" + "0x0cfcb4a0d155a1a674af56c85931c245d438484732564ac977da1c89ea05129a", + "0x0460943a3a4496d6b565bc4d642634f4f812920a4ae793212a65190f4549ff18", + "0x0686bc3f7e51871450701ee05fcfb55ae5946f5f2e77098101b8851c77a4c0d3", + "0x0e3b41ae0c61b2201c7ddad14a74a90a9e8447d5394e3487069a6b7bafe107af", + "0x0d8e4232c3e1214b1a72ee04016dd919308ecb6b01e871bdcdc36248ab044711", + "0x2fd02310a424f73ae3709cf4ff9d507e920407534ba3e965a5542a138b815675" ] From c21ca227648a84234e0e6f82ea9b430ab7ae700d Mon Sep 17 00:00:00 2001 From: Leila Wang Date: Mon, 14 Apr 2025 09:28:34 +0000 Subject: [PATCH 07/10] Remove unused genesis block hash const. --- .../src/core/libraries/ConstantsGen.sol | 2 -- .../crates/types/src/constants.nr | 4 +--- yarn-project/constants/src/constants.gen.ts | 18 ++++++------------ 3 files changed, 7 insertions(+), 17 deletions(-) diff --git a/l1-contracts/src/core/libraries/ConstantsGen.sol b/l1-contracts/src/core/libraries/ConstantsGen.sol index 3bfd160be545..cde4e2257980 100644 --- a/l1-contracts/src/core/libraries/ConstantsGen.sol +++ b/l1-contracts/src/core/libraries/ConstantsGen.sol @@ -96,8 +96,6 @@ library Constants { uint256 internal constant PUBLIC_LOG_SIZE_IN_FIELDS = 14; uint256 internal constant PRIVATE_LOG_SIZE_IN_FIELDS = 18; uint256 internal constant AZTEC_MAX_EPOCH_DURATION = 48; - uint256 internal constant GENESIS_BLOCK_HASH = - 20646204262468251631976884937192820660867507115079672078981654411421834866549; uint256 internal constant GENESIS_ARCHIVE_ROOT = 1002640778211850180189505934749257244705296832326768971348723156503780793518; uint256 internal constant PUBLIC_DISPATCH_SELECTOR = 3578010381; diff --git a/noir-projects/noir-protocol-circuits/crates/types/src/constants.nr b/noir-projects/noir-protocol-circuits/crates/types/src/constants.nr index b906e531d155..f73e0e43cd30 100644 --- a/noir-projects/noir-protocol-circuits/crates/types/src/constants.nr +++ b/noir-projects/noir-protocol-circuits/crates/types/src/constants.nr @@ -133,9 +133,7 @@ pub global PUBLIC_LOG_DATA_SIZE_IN_FIELDS: u32 = 13; pub global PUBLIC_LOG_SIZE_IN_FIELDS: u32 = PUBLIC_LOG_DATA_SIZE_IN_FIELDS + 1; // This includes the contract address, since it is always emitted with a public log pub global PRIVATE_LOG_SIZE_IN_FIELDS: u32 = 18; // This is currently affected by the size of the log overhead defined in aztec-nr/aztec/src/messages/payload.nr. pub global AZTEC_MAX_EPOCH_DURATION: u32 = 48; -// The following genesis values are taken from world_state.test.cpp > WorldStateTest.GetInitialTreeInfoForAllTrees -pub global GENESIS_BLOCK_HASH: Field = - 0x2da55666630fdf8594065c377958c827dc1c130dac91f17c6699b53dce60ef75; +// The genesis value is taken from world_state.test.cpp > WorldStateTest.GetInitialTreeInfoForAllTrees pub global GENESIS_ARCHIVE_ROOT: Field = 0x0237797d6a2c04d20d4fa06b74482bd970ccd51a43d9b05b57e9b91fa1ae1cae; // Last 4 bytes of the Poseidon2 hash of 'public_dispatch(Field)'. diff --git a/yarn-project/constants/src/constants.gen.ts b/yarn-project/constants/src/constants.gen.ts index 53db9e29d0a7..6116860b92cb 100644 --- a/yarn-project/constants/src/constants.gen.ts +++ b/yarn-project/constants/src/constants.gen.ts @@ -83,7 +83,6 @@ export const PUBLIC_LOG_DATA_SIZE_IN_FIELDS = 13; export const PUBLIC_LOG_SIZE_IN_FIELDS = 14; export const PRIVATE_LOG_SIZE_IN_FIELDS = 18; export const AZTEC_MAX_EPOCH_DURATION = 48; -export const GENESIS_BLOCK_HASH = 20646204262468251631976884937192820660867507115079672078981654411421834866549n; export const GENESIS_ARCHIVE_ROOT = 1002640778211850180189505934749257244705296832326768971348723156503780793518n; export const PUBLIC_DISPATCH_SELECTOR = 3578010381; export const MAX_PACKED_PUBLIC_BYTECODE_SIZE_IN_FIELDS = 3000; @@ -91,16 +90,11 @@ export const MAX_PACKED_BYTECODE_SIZE_PER_PRIVATE_FUNCTION_IN_FIELDS = 3000; export const MAX_PACKED_BYTECODE_SIZE_PER_UTILITY_FUNCTION_IN_FIELDS = 3000; export const REGISTERER_PRIVATE_FUNCTION_BROADCASTED_ADDITIONAL_FIELDS = 19; export const REGISTERER_UTILITY_FUNCTION_BROADCASTED_ADDITIONAL_FIELDS = 12; -export const REGISTERER_CONTRACT_CLASS_REGISTERED_MAGIC_VALUE = - 11121068431693264234253912047066709627593769337094408533543930778360n; -export const REGISTERER_PRIVATE_FUNCTION_BROADCASTED_MAGIC_VALUE = - 2889881020989534926461066592611988634597302675057895885580456197069n; -export const REGISTERER_UTILITY_FUNCTION_BROADCASTED_MAGIC_VALUE = - 24399338136397901754495080759185489776044879232766421623673792970137n; -export const DEPLOYER_CONTRACT_INSTANCE_DEPLOYED_MAGIC_VALUE = - 14061769416655647708490531650437236735160113654556896985372298487345n; -export const DEPLOYER_CONTRACT_INSTANCE_UPDATED_MAGIC_VALUE = - 1534834688047131268740281708431107902615560100979874281215533519862n; +export const REGISTERER_CONTRACT_CLASS_REGISTERED_MAGIC_VALUE = 11121068431693264234253912047066709627593769337094408533543930778360n; +export const REGISTERER_PRIVATE_FUNCTION_BROADCASTED_MAGIC_VALUE = 2889881020989534926461066592611988634597302675057895885580456197069n; +export const REGISTERER_UTILITY_FUNCTION_BROADCASTED_MAGIC_VALUE = 24399338136397901754495080759185489776044879232766421623673792970137n; +export const DEPLOYER_CONTRACT_INSTANCE_DEPLOYED_MAGIC_VALUE = 14061769416655647708490531650437236735160113654556896985372298487345n; +export const DEPLOYER_CONTRACT_INSTANCE_UPDATED_MAGIC_VALUE = 1534834688047131268740281708431107902615560100979874281215533519862n; export const MAX_PROTOCOL_CONTRACTS = 7; export const CANONICAL_AUTH_REGISTRY_ADDRESS = 1; export const DEPLOYER_CONTRACT_ADDRESS = 2; @@ -423,4 +417,4 @@ export enum GeneratorIndex { SYMMETRIC_KEY_2 = 55, PUBLIC_TX_HASH = 56, PRIVATE_TX_HASH = 57, -} +} \ No newline at end of file From 1f05a82031538a695b6ae5bb95327736c0065d29 Mon Sep 17 00:00:00 2001 From: Leila Wang Date: Sun, 20 Apr 2025 10:13:56 +0000 Subject: [PATCH 08/10] Typo. --- l1-contracts/src/core/libraries/rollup/EpochProofLib.sol | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/l1-contracts/src/core/libraries/rollup/EpochProofLib.sol b/l1-contracts/src/core/libraries/rollup/EpochProofLib.sol index b76eaf6386cf..f3238a23bb4b 100644 --- a/l1-contracts/src/core/libraries/rollup/EpochProofLib.sol +++ b/l1-contracts/src/core/libraries/rollup/EpochProofLib.sol @@ -68,7 +68,7 @@ library EpochProofLib { * - The archive root of the header does not match the archive root of the proposed block * - The proof is invalid * - * @dev We provide the `_archive`` even if it could be read from storage itself because it allow for better error + * @dev We provide the `_archive` even if it could be read from storage itself because it allow for better error * messages. Without passing it, we would just have a proof verification failure. * * @param _args - The arguments to submit the epoch root proof: From 776d90bfda115be148ba38e732fe3f7a18a77f61 Mon Sep 17 00:00:00 2001 From: Leila Wang Date: Sun, 20 Apr 2025 10:32:36 +0000 Subject: [PATCH 09/10] Lint. --- .../end-to-end/src/e2e_p2p/gossip_network_no_cheat.test.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/yarn-project/end-to-end/src/e2e_p2p/gossip_network_no_cheat.test.ts b/yarn-project/end-to-end/src/e2e_p2p/gossip_network_no_cheat.test.ts index 853258c1e0a6..365468b91286 100644 --- a/yarn-project/end-to-end/src/e2e_p2p/gossip_network_no_cheat.test.ts +++ b/yarn-project/end-to-end/src/e2e_p2p/gossip_network_no_cheat.test.ts @@ -205,7 +205,7 @@ describe('e2e_p2p_network', () => { const [block] = await dataStore.getBlocks(blockNumber, blockNumber); const payload = ConsensusPayload.fromBlock(block.block); const attestations = block.signatures.filter(s => !s.isEmpty).map(sig => new BlockAttestation(payload, sig)); - const signers = await Promise.all(attestations.map(att => att.getSender().then(s => s.toString()))); + const signers = attestations.map(att => att.getSender().toString()); t.logger.info(`Attestation signers`, { signers }); // Check that the signers found are part of the proposer nodes to ensure the archiver fetched them right From f0615855b4e90699c2c47abaa8d73fb9336a0666 Mon Sep 17 00:00:00 2001 From: Leila Wang Date: Tue, 22 Apr 2025 13:20:14 +0000 Subject: [PATCH 10/10] Lint. --- .../p2p/src/client/p2p_client.integration.test.ts | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/yarn-project/p2p/src/client/p2p_client.integration.test.ts b/yarn-project/p2p/src/client/p2p_client.integration.test.ts index 643eb432e95f..9490b7406a1c 100644 --- a/yarn-project/p2p/src/client/p2p_client.integration.test.ts +++ b/yarn-project/p2p/src/client/p2p_client.integration.test.ts @@ -325,11 +325,11 @@ describe('p2p client integration', () => { archive: Fr.random(), txHashes: [TxHash.random()], }; - const blockProposal = await makeBlockProposal(dummyPayload); + const blockProposal = makeBlockProposal(dummyPayload); client1.client.broadcastProposal(blockProposal); // client 1 sends an attestation - const attestation = await mockAttestation( + const attestation = mockAttestation( Secp256k1Signer.random(), Number(dummyPayload.header!.getSlot()), dummyPayload.archive, @@ -427,11 +427,11 @@ describe('p2p client integration', () => { archive: Fr.random(), txHashes: [TxHash.random()], }; - const blockProposal = await makeBlockProposal(dummyPayload); + const blockProposal = makeBlockProposal(dummyPayload); client1.client.broadcastProposal(blockProposal); // client 1 sends an attestation - const attestation = await mockAttestation( + const attestation = mockAttestation( Secp256k1Signer.random(), Number(dummyPayload.header!.getSlot()), dummyPayload.archive,