This nametag was submitted by Kleros Curate.
More Info
Private Name Tags
ContractCreator
Latest 25 from a total of 1,218,189 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Bridge Gas | 57666219 | 13 hrs ago | IN | 0.00031567 ETH | 0.00001295 | ||||
Bridge Gas | 57665956 | 13 hrs ago | IN | 0.00035167 ETH | 0.00002339 | ||||
Bridge Gas | 57664539 | 14 hrs ago | IN | 0.00405312 ETH | 0.00001229 | ||||
Bridge Gas | 57650952 | 19 hrs ago | IN | 0.00003576 ETH | 0.00001999 | ||||
Bridge Gas | 57642340 | 22 hrs ago | IN | 0.00010807 ETH | 0.00000926 | ||||
Bridge Gas | 57642299 | 22 hrs ago | IN | 0.00011476 ETH | 0.00001162 | ||||
Bridge Gas | 57642287 | 22 hrs ago | IN | 0.00064807 ETH | 0.00001306 | ||||
Bridge Gas | 57635525 | 25 hrs ago | IN | 0.00087132 ETH | 0.00002306 | ||||
Bridge Gas | 57597738 | 42 hrs ago | IN | 0.00088697 ETH | 0.00002295 | ||||
Bridge Gas | 57560385 | 2 days ago | IN | 0.00081784 ETH | 0.00001479 | ||||
Bridge Gas | 57560290 | 2 days ago | IN | 0.00075962 ETH | 0.00002313 | ||||
Bridge Gas | 57555863 | 2 days ago | IN | 0.00003092 ETH | 0.00001828 | ||||
Bridge Gas | 57554986 | 2 days ago | IN | 0.00004335 ETH | 0.00000926 | ||||
Bridge Gas | 57554756 | 2 days ago | IN | 0.00004335 ETH | 0.0000183 | ||||
Bridge Gas | 57524582 | 3 days ago | IN | 0.00015962 ETH | 0.00001869 | ||||
Bridge Gas | 57508078 | 3 days ago | IN | 0.00065936 ETH | 0.00001321 | ||||
Bridge Gas | 57497942 | 3 days ago | IN | 0.00042717 ETH | 0.000025 | ||||
Bridge Gas | 57488852 | 3 days ago | IN | 0.00016481 ETH | 0.00002153 | ||||
Bridge Gas | 57482177 | 3 days ago | IN | 0.00125404 ETH | 0.0000237 | ||||
Bridge Gas | 57481019 | 3 days ago | IN | 0.00002664 ETH | 0.000012 | ||||
Bridge Gas | 57479816 | 3 days ago | IN | 0.00001865 ETH | 0.00001132 | ||||
Bridge Gas | 57479788 | 3 days ago | IN | 0.00003241 ETH | 0.00001815 | ||||
Bridge Gas | 57472944 | 3 days ago | IN | 0.00005992 ETH | 0.00002363 | ||||
Bridge Gas | 57472495 | 3 days ago | IN | 0.0000356 ETH | 0.00001611 | ||||
Bridge Gas | 57470937 | 3 days ago | IN | 0.00001947 ETH | 0.00001271 |
Latest 25 internal transactions (View All)
Parent Transaction Hash | Block | From | To | |||
---|---|---|---|---|---|---|
57666219 | 13 hrs ago | 0.00028567 ETH | ||||
57666219 | 13 hrs ago | 0.00031567 ETH | ||||
57665956 | 13 hrs ago | 0.00032167 ETH | ||||
57665956 | 13 hrs ago | 0.00035167 ETH | ||||
57664539 | 14 hrs ago | 0.00402312 ETH | ||||
57664539 | 14 hrs ago | 0.00405312 ETH | ||||
57650952 | 19 hrs ago | 0.00002826 ETH | ||||
57650952 | 19 hrs ago | 0.00003576 ETH | ||||
57642340 | 22 hrs ago | 0.00007807 ETH | ||||
57642340 | 22 hrs ago | 0.00010807 ETH | ||||
57642299 | 22 hrs ago | 0.00008476 ETH | ||||
57642299 | 22 hrs ago | 0.00011476 ETH | ||||
57642287 | 22 hrs ago | 0.00061807 ETH | ||||
57642287 | 22 hrs ago | 0.00064807 ETH | ||||
57635525 | 25 hrs ago | 0.00084132 ETH | ||||
57635525 | 25 hrs ago | 0.00087132 ETH | ||||
57597738 | 42 hrs ago | 0.00085697 ETH | ||||
57597738 | 42 hrs ago | 0.00088697 ETH | ||||
57560385 | 2 days ago | 0.00078784 ETH | ||||
57560385 | 2 days ago | 0.00081784 ETH | ||||
57560290 | 2 days ago | 0.00072962 ETH | ||||
57560290 | 2 days ago | 0.00075962 ETH | ||||
57555863 | 2 days ago | 0.00002342 ETH | ||||
57555863 | 2 days ago | 0.00003092 ETH | ||||
57554986 | 2 days ago | 0.00003585 ETH |
Loading...
Loading
This contract may be a proxy contract. Click on More Options and select Is this a proxy? to confirm and enable the "Read as Proxy" & "Write as Proxy" tabs.
Contract Name:
MerklyRefuel
Compiler Version
v0.8.19+commit.7dd6d404
ZkSolc Version
v1.3.13
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "./NonblockingLzApp.sol"; contract MerklyRefuel is NonblockingLzApp { using BytesLib for bytes; uint public constant NO_EXTRA_GAS = 0; // packet type uint16 public constant PT_SEND = 0; bool public useCustomAdapterParams = true; constructor(address _lzEndpoint) NonblockingLzApp(_lzEndpoint) {} function estimateSendFee(uint16 _dstChainId, bytes memory payload, bytes memory _adapterParams) public view virtual returns (uint nativeFee, uint zroFee) { return lzEndpoint.estimateFees(_dstChainId, address(this), payload, false, _adapterParams); } function _nonblockingLzReceive(uint16 _srcChainId, bytes memory _srcAddress, uint64 _nonce, bytes memory _payload) internal virtual override { // empty } function bridgeGas(uint16 _dstChainId, bytes memory _toAddress, bytes memory _adapterParams) public payable virtual { _checkAdapterParams(_dstChainId, PT_SEND, _adapterParams, NO_EXTRA_GAS); (uint nativeFee,) = estimateSendFee(_dstChainId, _toAddress, _adapterParams); require(msg.value >= nativeFee, "Not enough gas to send"); _lzSend(_dstChainId, _toAddress, payable(0x0), address(0x0), _adapterParams, nativeFee); } function _checkAdapterParams(uint16 _dstChainId, uint16 _pkType, bytes memory _adapterParams, uint _extraGas) internal virtual { if (useCustomAdapterParams) { _checkGasLimit(_dstChainId, _pkType, _adapterParams, _extraGas); } else { require(_adapterParams.length == 0, "OFTCore: _adapterParams must be empty."); } } function withdraw() public payable onlyOwner { (bool success, ) = payable(msg.sender).call{value: address(this).balance}(""); require(success); } }
// SPDX-License-Identifier: Unlicense /* * @title Solidity Bytes Arrays Utils * @author Gonçalo Sá <[email protected]> * * @dev Bytes tightly packed arrays utility library for ethereum contracts written in Solidity. * The library lets you concatenate, slice and type cast bytes arrays both in memory and storage. */ pragma solidity >=0.8.0 <0.9.0; library BytesLib { function concat( bytes memory _preBytes, bytes memory _postBytes ) internal pure returns (bytes memory) { bytes memory tempBytes; assembly { // Get a location of some free memory and store it in tempBytes as // Solidity does for memory variables. tempBytes := mload(0x40) // Store the length of the first bytes array at the beginning of // the memory for tempBytes. let length := mload(_preBytes) mstore(tempBytes, length) // Maintain a memory counter for the current write location in the // temp bytes array by adding the 32 bytes for the array length to // the starting location. let mc := add(tempBytes, 0x20) // Stop copying when the memory counter reaches the length of the // first bytes array. let end := add(mc, length) for { // Initialize a copy counter to the start of the _preBytes data, // 32 bytes into its memory. let cc := add(_preBytes, 0x20) } lt(mc, end) { // Increase both counters by 32 bytes each iteration. mc := add(mc, 0x20) cc := add(cc, 0x20) } { // Write the _preBytes data into the tempBytes memory 32 bytes // at a time. mstore(mc, mload(cc)) } // Add the length of _postBytes to the current length of tempBytes // and store it as the new length in the first 32 bytes of the // tempBytes memory. length := mload(_postBytes) mstore(tempBytes, add(length, mload(tempBytes))) // Move the memory counter back from a multiple of 0x20 to the // actual end of the _preBytes data. mc := end // Stop copying when the memory counter reaches the new combined // length of the arrays. end := add(mc, length) for { let cc := add(_postBytes, 0x20) } lt(mc, end) { mc := add(mc, 0x20) cc := add(cc, 0x20) } { mstore(mc, mload(cc)) } // Update the free-memory pointer by padding our last write location // to 32 bytes: add 31 bytes to the end of tempBytes to move to the // next 32 byte block, then round down to the nearest multiple of // 32. If the sum of the length of the two arrays is zero then add // one before rounding down to leave a blank 32 bytes (the length block with 0). mstore(0x40, and( add(add(end, iszero(add(length, mload(_preBytes)))), 31), not(31) // Round down to the nearest 32 bytes. )) } return tempBytes; } function concatStorage(bytes storage _preBytes, bytes memory _postBytes) internal { assembly { // Read the first 32 bytes of _preBytes storage, which is the length // of the array. (We don't need to use the offset into the slot // because arrays use the entire slot.) let fslot := sload(_preBytes.slot) // Arrays of 31 bytes or less have an even value in their slot, // while longer arrays have an odd value. The actual length is // the slot divided by two for odd values, and the lowest order // byte divided by two for even values. // If the slot is even, bitwise and the slot with 255 and divide by // two to get the length. If the slot is odd, bitwise and the slot // with -1 and divide by two. let slength := div(and(fslot, sub(mul(0x100, iszero(and(fslot, 1))), 1)), 2) let mlength := mload(_postBytes) let newlength := add(slength, mlength) // slength can contain both the length and contents of the array // if length < 32 bytes so let's prepare for that // v. http://solidity.readthedocs.io/en/latest/miscellaneous.html#layout-of-state-variables-in-storage switch add(lt(slength, 32), lt(newlength, 32)) case 2 { // Since the new array still fits in the slot, we just need to // update the contents of the slot. // uint256(bytes_storage) = uint256(bytes_storage) + uint256(bytes_memory) + new_length sstore( _preBytes.slot, // all the modifications to the slot are inside this // next block add( // we can just add to the slot contents because the // bytes we want to change are the LSBs fslot, add( mul( div( // load the bytes from memory mload(add(_postBytes, 0x20)), // zero all bytes to the right exp(0x100, sub(32, mlength)) ), // and now shift left the number of bytes to // leave space for the length in the slot exp(0x100, sub(32, newlength)) ), // increase length by the double of the memory // bytes length mul(mlength, 2) ) ) ) } case 1 { // The stored value fits in the slot, but the combined value // will exceed it. // get the keccak hash to get the contents of the array mstore(0x0, _preBytes.slot) let sc := add(keccak256(0x0, 0x20), div(slength, 32)) // save new length sstore(_preBytes.slot, add(mul(newlength, 2), 1)) // The contents of the _postBytes array start 32 bytes into // the structure. Our first read should obtain the `submod` // bytes that can fit into the unused space in the last word // of the stored array. To get this, we read 32 bytes starting // from `submod`, so the data we read overlaps with the array // contents by `submod` bytes. Masking the lowest-order // `submod` bytes allows us to add that value directly to the // stored value. let submod := sub(32, slength) let mc := add(_postBytes, submod) let end := add(_postBytes, mlength) let mask := sub(exp(0x100, submod), 1) sstore( sc, add( and( fslot, 0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00 ), and(mload(mc), mask) ) ) for { mc := add(mc, 0x20) sc := add(sc, 1) } lt(mc, end) { sc := add(sc, 1) mc := add(mc, 0x20) } { sstore(sc, mload(mc)) } mask := exp(0x100, sub(mc, end)) sstore(sc, mul(div(mload(mc), mask), mask)) } default { // get the keccak hash to get the contents of the array mstore(0x0, _preBytes.slot) // Start copying to the last used word of the stored array. let sc := add(keccak256(0x0, 0x20), div(slength, 32)) // save new length sstore(_preBytes.slot, add(mul(newlength, 2), 1)) // Copy over the first `submod` bytes of the new data as in // case 1 above. let slengthmod := mod(slength, 32) let mlengthmod := mod(mlength, 32) let submod := sub(32, slengthmod) let mc := add(_postBytes, submod) let end := add(_postBytes, mlength) let mask := sub(exp(0x100, submod), 1) sstore(sc, add(sload(sc), and(mload(mc), mask))) for { sc := add(sc, 1) mc := add(mc, 0x20) } lt(mc, end) { sc := add(sc, 1) mc := add(mc, 0x20) } { sstore(sc, mload(mc)) } mask := exp(0x100, sub(mc, end)) sstore(sc, mul(div(mload(mc), mask), mask)) } } } function slice( bytes memory _bytes, uint256 _start, uint256 _length ) internal pure returns (bytes memory) { require(_length + 31 >= _length, "slice_overflow"); require(_bytes.length >= _start + _length, "slice_outOfBounds"); bytes memory tempBytes; assembly { switch iszero(_length) case 0 { // Get a location of some free memory and store it in tempBytes as // Solidity does for memory variables. tempBytes := mload(0x40) // The first word of the slice result is potentially a partial // word read from the original array. To read it, we calculate // the length of that partial word and start copying that many // bytes into the array. The first word we copy will start with // data we don't care about, but the last `lengthmod` bytes will // land at the beginning of the contents of the new array. When // we're done copying, we overwrite the full first word with // the actual length of the slice. let lengthmod := and(_length, 31) // The multiplication in the next line is necessary // because when slicing multiples of 32 bytes (lengthmod == 0) // the following copy loop was copying the origin's length // and then ending prematurely not copying everything it should. let mc := add(add(tempBytes, lengthmod), mul(0x20, iszero(lengthmod))) let end := add(mc, _length) for { // The multiplication in the next line has the same exact purpose // as the one above. let cc := add(add(add(_bytes, lengthmod), mul(0x20, iszero(lengthmod))), _start) } lt(mc, end) { mc := add(mc, 0x20) cc := add(cc, 0x20) } { mstore(mc, mload(cc)) } mstore(tempBytes, _length) //update free-memory pointer //allocating the array padded to 32 bytes like the compiler does now mstore(0x40, and(add(mc, 31), not(31))) } //if we want a zero-length slice let's just return a zero-length array default { tempBytes := mload(0x40) //zero out the 32 bytes slice we are about to return //we need to do it because Solidity does not garbage collect mstore(tempBytes, 0) mstore(0x40, add(tempBytes, 0x20)) } } return tempBytes; } function toAddress(bytes memory _bytes, uint256 _start) internal pure returns (address) { require(_bytes.length >= _start + 20, "toAddress_outOfBounds"); address tempAddress; assembly { tempAddress := div(mload(add(add(_bytes, 0x20), _start)), 0x1000000000000000000000000) } return tempAddress; } function toUint8(bytes memory _bytes, uint256 _start) internal pure returns (uint8) { require(_bytes.length >= _start + 1 , "toUint8_outOfBounds"); uint8 tempUint; assembly { tempUint := mload(add(add(_bytes, 0x1), _start)) } return tempUint; } function toUint16(bytes memory _bytes, uint256 _start) internal pure returns (uint16) { require(_bytes.length >= _start + 2, "toUint16_outOfBounds"); uint16 tempUint; assembly { tempUint := mload(add(add(_bytes, 0x2), _start)) } return tempUint; } function toUint32(bytes memory _bytes, uint256 _start) internal pure returns (uint32) { require(_bytes.length >= _start + 4, "toUint32_outOfBounds"); uint32 tempUint; assembly { tempUint := mload(add(add(_bytes, 0x4), _start)) } return tempUint; } function toUint64(bytes memory _bytes, uint256 _start) internal pure returns (uint64) { require(_bytes.length >= _start + 8, "toUint64_outOfBounds"); uint64 tempUint; assembly { tempUint := mload(add(add(_bytes, 0x8), _start)) } return tempUint; } function toUint96(bytes memory _bytes, uint256 _start) internal pure returns (uint96) { require(_bytes.length >= _start + 12, "toUint96_outOfBounds"); uint96 tempUint; assembly { tempUint := mload(add(add(_bytes, 0xc), _start)) } return tempUint; } function toUint128(bytes memory _bytes, uint256 _start) internal pure returns (uint128) { require(_bytes.length >= _start + 16, "toUint128_outOfBounds"); uint128 tempUint; assembly { tempUint := mload(add(add(_bytes, 0x10), _start)) } return tempUint; } function toUint256(bytes memory _bytes, uint256 _start) internal pure returns (uint256) { require(_bytes.length >= _start + 32, "toUint256_outOfBounds"); uint256 tempUint; assembly { tempUint := mload(add(add(_bytes, 0x20), _start)) } return tempUint; } function toBytes32(bytes memory _bytes, uint256 _start) internal pure returns (bytes32) { require(_bytes.length >= _start + 32, "toBytes32_outOfBounds"); bytes32 tempBytes32; assembly { tempBytes32 := mload(add(add(_bytes, 0x20), _start)) } return tempBytes32; } function equal(bytes memory _preBytes, bytes memory _postBytes) internal pure returns (bool) { bool success = true; assembly { let length := mload(_preBytes) // if lengths don't match the arrays are not equal switch eq(length, mload(_postBytes)) case 1 { // cb is a circuit breaker in the for loop since there's // no said feature for inline assembly loops // cb = 1 - don't breaker // cb = 0 - break let cb := 1 let mc := add(_preBytes, 0x20) let end := add(mc, length) for { let cc := add(_postBytes, 0x20) // the next line is the loop condition: // while(uint256(mc < end) + cb == 2) } eq(add(lt(mc, end), cb), 2) { mc := add(mc, 0x20) cc := add(cc, 0x20) } { // if any of these checks fails then arrays are not equal if iszero(eq(mload(mc), mload(cc))) { // unsuccess: success := 0 cb := 0 } } } default { // unsuccess: success := 0 } } return success; } function equalStorage( bytes storage _preBytes, bytes memory _postBytes ) internal view returns (bool) { bool success = true; assembly { // we know _preBytes_offset is 0 let fslot := sload(_preBytes.slot) // Decode the length of the stored array like in concatStorage(). let slength := div(and(fslot, sub(mul(0x100, iszero(and(fslot, 1))), 1)), 2) let mlength := mload(_postBytes) // if lengths don't match the arrays are not equal switch eq(slength, mlength) case 1 { // slength can contain both the length and contents of the array // if length < 32 bytes so let's prepare for that // v. http://solidity.readthedocs.io/en/latest/miscellaneous.html#layout-of-state-variables-in-storage if iszero(iszero(slength)) { switch lt(slength, 32) case 1 { // blank the last byte which is the length fslot := mul(div(fslot, 0x100), 0x100) if iszero(eq(fslot, mload(add(_postBytes, 0x20)))) { // unsuccess: success := 0 } } default { // cb is a circuit breaker in the for loop since there's // no said feature for inline assembly loops // cb = 1 - don't breaker // cb = 0 - break let cb := 1 // get the keccak hash to get the contents of the array mstore(0x0, _preBytes.slot) let sc := keccak256(0x0, 0x20) let mc := add(_postBytes, 0x20) let end := add(mc, mlength) // the next line is the loop condition: // while(uint256(mc < end) + cb == 2) for {} eq(add(lt(mc, end), cb), 2) { sc := add(sc, 1) mc := add(mc, 0x20) } { if iszero(eq(sload(sc), mload(mc))) { // unsuccess: success := 0 cb := 0 } } } } } default { // unsuccess: success := 0 } } return success; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.19; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } }
// SPDX-License-Identifier: MIT OR Apache-2.0 pragma solidity >=0.7.6; library ExcessivelySafeCall { uint256 constant LOW_28_MASK = 0x00000000ffffffffffffffffffffffffffffffffffffffffffffffffffffffff; /// @notice Use when you _really_ really _really_ don't trust the called /// contract. This prevents the called contract from causing reversion of /// the caller in as many ways as we can. /// @dev The main difference between this and a solidity low-level call is /// that we limit the number of bytes that the callee can cause to be /// copied to caller memory. This prevents stupid things like malicious /// contracts returning 10,000,000 bytes causing a local OOG when copying /// to memory. /// @param _target The address to call /// @param _gas The amount of gas to forward to the remote contract /// @param _maxCopy The maximum number of bytes of returndata to copy /// to memory. /// @param _calldata The data to send to the remote contract /// @return success and returndata, as `.call()`. Returndata is capped to /// `_maxCopy` bytes. function excessivelySafeCall( address _target, uint256 _gas, uint16 _maxCopy, bytes memory _calldata ) internal returns (bool, bytes memory) { // set up for assembly call uint256 _toCopy; bool _success; bytes memory _returnData = new bytes(_maxCopy); // dispatch message to recipient // by assembly calling "handle" function // we call via assembly to avoid memcopying a very large returndata // returned by a malicious contract assembly { _success := call( _gas, // gas _target, // recipient 0, // ether value add(_calldata, 0x20), // inloc mload(_calldata), // inlen 0, // outloc 0 // outlen ) // limit our copy to 256 bytes _toCopy := returndatasize() if gt(_toCopy, _maxCopy) { _toCopy := _maxCopy } // Store the length of the copied bytes mstore(_returnData, _toCopy) // copy the bytes from returndata[0:_toCopy] returndatacopy(add(_returnData, 0x20), 0, _toCopy) } return (_success, _returnData); } /// @notice Use when you _really_ really _really_ don't trust the called /// contract. This prevents the called contract from causing reversion of /// the caller in as many ways as we can. /// @dev The main difference between this and a solidity low-level call is /// that we limit the number of bytes that the callee can cause to be /// copied to caller memory. This prevents stupid things like malicious /// contracts returning 10,000,000 bytes causing a local OOG when copying /// to memory. /// @param _target The address to call /// @param _gas The amount of gas to forward to the remote contract /// @param _maxCopy The maximum number of bytes of returndata to copy /// to memory. /// @param _calldata The data to send to the remote contract /// @return success and returndata, as `.call()`. Returndata is capped to /// `_maxCopy` bytes. function excessivelySafeStaticCall( address _target, uint256 _gas, uint16 _maxCopy, bytes memory _calldata ) internal view returns (bool, bytes memory) { // set up for assembly call uint256 _toCopy; bool _success; bytes memory _returnData = new bytes(_maxCopy); // dispatch message to recipient // by assembly calling "handle" function // we call via assembly to avoid memcopying a very large returndata // returned by a malicious contract assembly { _success := staticcall( _gas, // gas _target, // recipient add(_calldata, 0x20), // inloc mload(_calldata), // inlen 0, // outloc 0 // outlen ) // limit our copy to 256 bytes _toCopy := returndatasize() if gt(_toCopy, _maxCopy) { _toCopy := _maxCopy } // Store the length of the copied bytes mstore(_returnData, _toCopy) // copy the bytes from returndata[0:_toCopy] returndatacopy(add(_returnData, 0x20), 0, _toCopy) } return (_success, _returnData); } /** * @notice Swaps function selectors in encoded contract calls * @dev Allows reuse of encoded calldata for functions with identical * argument types but different names. It simply swaps out the first 4 bytes * for the new selector. This function modifies memory in place, and should * only be used with caution. * @param _newSelector The new 4-byte selector * @param _buf The encoded contract args */ function swapSelector(bytes4 _newSelector, bytes memory _buf) internal pure { require(_buf.length >= 4); uint256 _mask = LOW_28_MASK; assembly { // load the first word of let _word := mload(add(_buf, 0x20)) // mask out the top 4 bytes // /x _word := and(_word, _mask) _word := or(_newSelector, _word) mstore(add(_buf, 0x20), _word) } } }
// SPDX-License-Identifier: MIT pragma solidity >=0.5.0; import "./ILayerZeroUserApplicationConfig.sol"; interface ILayerZeroEndpoint is ILayerZeroUserApplicationConfig { // @notice send a LayerZero message to the specified address at a LayerZero endpoint. // @param _dstChainId - the destination chain identifier // @param _destination - the address on destination chain (in bytes). address length/format may vary by chains // @param _payload - a custom bytes payload to send to the destination contract // @param _refundAddress - if the source transaction is cheaper than the amount of value passed, refund the additional amount to this address // @param _zroPaymentAddress - the address of the ZRO token holder who would pay for the transaction // @param _adapterParams - parameters for custom functionality. e.g. receive airdropped native gas from the relayer on destination function send(uint16 _dstChainId, bytes calldata _destination, bytes calldata _payload, address payable _refundAddress, address _zroPaymentAddress, bytes calldata _adapterParams) external payable; // @notice used by the messaging library to publish verified payload // @param _srcChainId - the source chain identifier // @param _srcAddress - the source contract (as bytes) at the source chain // @param _dstAddress - the address on destination chain // @param _nonce - the unbound message ordering nonce // @param _gasLimit - the gas limit for external contract execution // @param _payload - verified payload to send to the destination contract function receivePayload(uint16 _srcChainId, bytes calldata _srcAddress, address _dstAddress, uint64 _nonce, uint _gasLimit, bytes calldata _payload) external; // @notice get the inboundNonce of a lzApp from a source chain which could be EVM or non-EVM chain // @param _srcChainId - the source chain identifier // @param _srcAddress - the source chain contract address function getInboundNonce(uint16 _srcChainId, bytes calldata _srcAddress) external view returns (uint64); // @notice get the outboundNonce from this source chain which, consequently, is always an EVM // @param _srcAddress - the source chain contract address function getOutboundNonce(uint16 _dstChainId, address _srcAddress) external view returns (uint64); // @notice gets a quote in source native gas, for the amount that send() requires to pay for message delivery // @param _dstChainId - the destination chain identifier // @param _userApplication - the user app address on this EVM chain // @param _payload - the custom message to send over LayerZero // @param _payInZRO - if false, user app pays the protocol fee in native token // @param _adapterParam - parameters for the adapter service, e.g. send some dust native token to dstChain function estimateFees(uint16 _dstChainId, address _userApplication, bytes calldata _payload, bool _payInZRO, bytes calldata _adapterParam) external view returns (uint nativeFee, uint zroFee); // @notice get this Endpoint's immutable source identifier function getChainId() external view returns (uint16); // @notice the interface to retry failed message on this Endpoint destination // @param _srcChainId - the source chain identifier // @param _srcAddress - the source chain contract address // @param _payload - the payload to be retried function retryPayload(uint16 _srcChainId, bytes calldata _srcAddress, bytes calldata _payload) external; // @notice query if any STORED payload (message blocking) at the endpoint. // @param _srcChainId - the source chain identifier // @param _srcAddress - the source chain contract address function hasStoredPayload(uint16 _srcChainId, bytes calldata _srcAddress) external view returns (bool); // @notice query if the _libraryAddress is valid for sending msgs. // @param _userApplication - the user app address on this EVM chain function getSendLibraryAddress(address _userApplication) external view returns (address); // @notice query if the _libraryAddress is valid for receiving msgs. // @param _userApplication - the user app address on this EVM chain function getReceiveLibraryAddress(address _userApplication) external view returns (address); // @notice query if the non-reentrancy guard for send() is on // @return true if the guard is on. false otherwise function isSendingPayload() external view returns (bool); // @notice query if the non-reentrancy guard for receive() is on // @return true if the guard is on. false otherwise function isReceivingPayload() external view returns (bool); // @notice get the configuration of the LayerZero messaging library of the specified version // @param _version - messaging library version // @param _chainId - the chainId for the pending config change // @param _userApplication - the contract address of the user application // @param _configType - type of configuration. every messaging library has its own convention. function getConfig(uint16 _version, uint16 _chainId, address _userApplication, uint _configType) external view returns (bytes memory); // @notice get the send() LayerZero messaging library version // @param _userApplication - the contract address of the user application function getSendVersion(address _userApplication) external view returns (uint16); // @notice get the lzReceive() LayerZero messaging library version // @param _userApplication - the contract address of the user application function getReceiveVersion(address _userApplication) external view returns (uint16); }
// SPDX-License-Identifier: MIT pragma solidity >=0.5.0; interface ILayerZeroReceiver { // @notice LayerZero endpoint will invoke this function to deliver the message on the destination // @param _srcChainId - the source endpoint identifier // @param _srcAddress - the source sending contract address from the source chain // @param _nonce - the ordered message nonce // @param _payload - the signed payload is the UA bytes has encoded to be sent function lzReceive(uint16 _srcChainId, bytes calldata _srcAddress, uint64 _nonce, bytes calldata _payload) external; }
// SPDX-License-Identifier: MIT pragma solidity >=0.5.0; interface ILayerZeroUserApplicationConfig { // @notice set the configuration of the LayerZero messaging library of the specified version // @param _version - messaging library version // @param _chainId - the chainId for the pending config change // @param _configType - type of configuration. every messaging library has its own convention. // @param _config - configuration in the bytes. can encode arbitrary content. function setConfig(uint16 _version, uint16 _chainId, uint _configType, bytes calldata _config) external; // @notice set the send() LayerZero messaging library version to _version // @param _version - new messaging library version function setSendVersion(uint16 _version) external; // @notice set the lzReceive() LayerZero messaging library version to _version // @param _version - new messaging library version function setReceiveVersion(uint16 _version) external; // @notice Only when the UA needs to resume the message flow in blocking mode and clear the stored payload // @param _srcChainId - the chainId of the source chain // @param _srcAddress - the contract address of the source contract at the source chain function forceResumeReceive(uint16 _srcChainId, bytes calldata _srcAddress) external; }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "./Ownable.sol"; import "./ILayerZeroReceiver.sol"; import "./ILayerZeroUserApplicationConfig.sol"; import "./ILayerZeroEndpoint.sol"; import "./BytesLib.sol"; /* * a generic LzReceiver implementation */ abstract contract LzApp is Ownable, ILayerZeroReceiver, ILayerZeroUserApplicationConfig { using BytesLib for bytes; // ua can not send payload larger than this by default, but it can be changed by the ua owner uint constant public DEFAULT_PAYLOAD_SIZE_LIMIT = 10000; ILayerZeroEndpoint public immutable lzEndpoint; mapping(uint16 => bytes) public trustedRemoteLookup; mapping(uint16 => mapping(uint16 => uint)) public minDstGasLookup; mapping(uint16 => uint) public payloadSizeLimitLookup; address public precrime; event SetPrecrime(address precrime); event SetTrustedRemote(uint16 _remoteChainId, bytes _path); event SetTrustedRemoteAddress(uint16 _remoteChainId, bytes _remoteAddress); event SetMinDstGas(uint16 _dstChainId, uint16 _type, uint _minDstGas); constructor(address _endpoint) Ownable(msg.sender) { lzEndpoint = ILayerZeroEndpoint(_endpoint); } function lzReceive(uint16 _srcChainId, bytes calldata _srcAddress, uint64 _nonce, bytes calldata _payload) public virtual override { // lzReceive must be called by the endpoint for security require(_msgSender() == address(lzEndpoint), "LzApp: invalid endpoint caller"); bytes memory trustedRemote = trustedRemoteLookup[_srcChainId]; // if will still block the message pathway from (srcChainId, srcAddress). should not receive message from untrusted remote. require(_srcAddress.length == trustedRemote.length && trustedRemote.length > 0 && keccak256(_srcAddress) == keccak256(trustedRemote), "LzApp: invalid source sending contract"); _blockingLzReceive(_srcChainId, _srcAddress, _nonce, _payload); } // abstract function - the default behaviour of LayerZero is blocking. See: NonblockingLzApp if you dont need to enforce ordered messaging function _blockingLzReceive(uint16 _srcChainId, bytes memory _srcAddress, uint64 _nonce, bytes memory _payload) internal virtual; function _lzSend(uint16 _dstChainId, bytes memory _payload, address payable _refundAddress, address _zroPaymentAddress, bytes memory _adapterParams, uint _nativeFee) internal virtual { bytes memory trustedRemote = trustedRemoteLookup[_dstChainId]; require(trustedRemote.length != 0, "LzApp: destination chain is not a trusted source"); _checkPayloadSize(_dstChainId, _payload.length); lzEndpoint.send{value: _nativeFee}(_dstChainId, trustedRemote, _payload, _refundAddress, _zroPaymentAddress, _adapterParams); } function _checkGasLimit(uint16 _dstChainId, uint16 _type, bytes memory _adapterParams, uint _extraGas) internal view virtual { uint providedGasLimit = _getGasLimit(_adapterParams); uint minGasLimit = minDstGasLookup[_dstChainId][_type] + _extraGas; require(minGasLimit > 0, "LzApp: minGasLimit not set"); require(providedGasLimit >= minGasLimit, "LzApp: gas limit is too low"); } function _getGasLimit(bytes memory _adapterParams) internal pure virtual returns (uint gasLimit) { require(_adapterParams.length >= 34, "LzApp: invalid adapterParams"); assembly { gasLimit := mload(add(_adapterParams, 34)) } } function _checkPayloadSize(uint16 _dstChainId, uint _payloadSize) internal view virtual { uint payloadSizeLimit = payloadSizeLimitLookup[_dstChainId]; if (payloadSizeLimit == 0) { // use default if not set payloadSizeLimit = DEFAULT_PAYLOAD_SIZE_LIMIT; } require(_payloadSize <= payloadSizeLimit, "LzApp: payload size is too large"); } //---------------------------UserApplication config---------------------------------------- function getConfig(uint16 _version, uint16 _chainId, address, uint _configType) external view returns (bytes memory) { return lzEndpoint.getConfig(_version, _chainId, address(this), _configType); } // generic config for LayerZero user Application function setConfig(uint16 _version, uint16 _chainId, uint _configType, bytes calldata _config) external override onlyOwner { lzEndpoint.setConfig(_version, _chainId, _configType, _config); } function setSendVersion(uint16 _version) external override onlyOwner { lzEndpoint.setSendVersion(_version); } function setReceiveVersion(uint16 _version) external override onlyOwner { lzEndpoint.setReceiveVersion(_version); } function forceResumeReceive(uint16 _srcChainId, bytes calldata _srcAddress) external override onlyOwner { lzEndpoint.forceResumeReceive(_srcChainId, _srcAddress); } // _path = abi.encodePacked(remoteAddress, localAddress) // this function set the trusted path for the cross-chain communication function setTrustedRemote(uint16 _remoteChainId, bytes calldata _path) external onlyOwner { trustedRemoteLookup[_remoteChainId] = _path; emit SetTrustedRemote(_remoteChainId, _path); } function setTrustedRemoteAddress(uint16 _remoteChainId, bytes calldata _remoteAddress) external onlyOwner { trustedRemoteLookup[_remoteChainId] = abi.encodePacked(_remoteAddress, address(this)); emit SetTrustedRemoteAddress(_remoteChainId, _remoteAddress); } function getTrustedRemoteAddress(uint16 _remoteChainId) external view returns (bytes memory) { bytes memory path = trustedRemoteLookup[_remoteChainId]; require(path.length != 0, "LzApp: no trusted path record"); return path.slice(0, path.length - 20); // the last 20 bytes should be address(this) } function setPrecrime(address _precrime) external onlyOwner { precrime = _precrime; emit SetPrecrime(_precrime); } function setMinDstGas(uint16 _dstChainId, uint16 _packetType, uint _minGas) external onlyOwner { require(_minGas > 0, "LzApp: invalid minGas"); minDstGasLookup[_dstChainId][_packetType] = _minGas; emit SetMinDstGas(_dstChainId, _packetType, _minGas); } // if the size is 0, it means default size limit function setPayloadSizeLimit(uint16 _dstChainId, uint _size) external onlyOwner { payloadSizeLimitLookup[_dstChainId] = _size; } //--------------------------- VIEW FUNCTION ---------------------------------------- function isTrustedRemote(uint16 _srcChainId, bytes calldata _srcAddress) external view returns (bool) { bytes memory trustedSource = trustedRemoteLookup[_srcChainId]; return keccak256(trustedSource) == keccak256(_srcAddress); } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "./LzApp.sol"; import "./ExcessivelySafeCall.sol"; /* * the default LayerZero messaging behaviour is blocking, i.e. any failed message will block the channel * this abstract class try-catch all fail messages and store locally for future retry. hence, non-blocking * NOTE: if the srcAddress is not configured properly, it will still block the message pathway from (srcChainId, srcAddress) */ abstract contract NonblockingLzApp is LzApp { using ExcessivelySafeCall for address; constructor(address _endpoint) LzApp(_endpoint) {} mapping(uint16 => mapping(bytes => mapping(uint64 => bytes32))) public failedMessages; event MessageFailed(uint16 _srcChainId, bytes _srcAddress, uint64 _nonce, bytes _payload, bytes _reason); event RetryMessageSuccess(uint16 _srcChainId, bytes _srcAddress, uint64 _nonce, bytes32 _payloadHash); // overriding the virtual function in LzReceiver function _blockingLzReceive(uint16 _srcChainId, bytes memory _srcAddress, uint64 _nonce, bytes memory _payload) internal virtual override { (bool success, bytes memory reason) = address(this).excessivelySafeCall(gasleft(), 150, abi.encodeWithSelector(this.nonblockingLzReceive.selector, _srcChainId, _srcAddress, _nonce, _payload)); // try-catch all errors/exceptions if (!success) { _storeFailedMessage(_srcChainId, _srcAddress, _nonce, _payload, reason); } } function _storeFailedMessage(uint16 _srcChainId, bytes memory _srcAddress, uint64 _nonce, bytes memory _payload, bytes memory _reason) internal virtual { failedMessages[_srcChainId][_srcAddress][_nonce] = keccak256(_payload); emit MessageFailed(_srcChainId, _srcAddress, _nonce, _payload, _reason); } function nonblockingLzReceive(uint16 _srcChainId, bytes calldata _srcAddress, uint64 _nonce, bytes calldata _payload) public virtual { // only internal transaction require(_msgSender() == address(this), "NonblockingLzApp: caller must be LzApp"); _nonblockingLzReceive(_srcChainId, _srcAddress, _nonce, _payload); } //@notice override this function function _nonblockingLzReceive(uint16 _srcChainId, bytes memory _srcAddress, uint64 _nonce, bytes memory _payload) internal virtual; function retryMessage(uint16 _srcChainId, bytes calldata _srcAddress, uint64 _nonce, bytes calldata _payload) public payable virtual { // assert there is message to retry bytes32 payloadHash = failedMessages[_srcChainId][_srcAddress][_nonce]; require(payloadHash != bytes32(0), "NonblockingLzApp: no stored message"); require(keccak256(_payload) == payloadHash, "NonblockingLzApp: invalid payload"); // clear the stored message failedMessages[_srcChainId][_srcAddress][_nonce] = bytes32(0); // execute the message. revert if it fails again _nonblockingLzReceive(_srcChainId, _srcAddress, _nonce, _payload); emit RetryMessageSuccess(_srcChainId, _srcAddress, _nonce, payloadHash); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.9.0) (access/Ownable.sol) pragma solidity ^0.8.19; import {Context} from "./Context.sol"; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * The initial owner is set to the address provided by the deployer. This can * later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; /** * @dev The caller account is not authorized to perform an operation. */ error OwnableUnauthorizedAccount(address account); /** * @dev The owner is not a valid owner account. (eg. `address(0)`) */ error OwnableInvalidOwner(address owner); event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the address provided by the deployer as the initial owner. */ constructor(address initialOwner) { _transferOwnership(initialOwner); } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { _checkOwner(); _; } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if the sender is not the owner. */ function _checkOwner() internal view virtual { if (owner() != _msgSender()) { revert OwnableUnauthorizedAccount(_msgSender()); } } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby disabling any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { if (newOwner == address(0)) { revert OwnableInvalidOwner(address(0)); } _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } }
{ "optimizer": { "enabled": true, "runs": 200 }, "outputSelection": { "*": { "": [ "ast", "storageLayout" ], "*": [ "abi" ] } }, "viaIR": true }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"inputs":[{"internalType":"address","name":"_lzEndpoint","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"OwnableInvalidOwner","type":"error"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"OwnableUnauthorizedAccount","type":"error"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint16","name":"_srcChainId","type":"uint16"},{"indexed":false,"internalType":"bytes","name":"_srcAddress","type":"bytes"},{"indexed":false,"internalType":"uint64","name":"_nonce","type":"uint64"},{"indexed":false,"internalType":"bytes","name":"_payload","type":"bytes"},{"indexed":false,"internalType":"bytes","name":"_reason","type":"bytes"}],"name":"MessageFailed","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint16","name":"_srcChainId","type":"uint16"},{"indexed":false,"internalType":"bytes","name":"_srcAddress","type":"bytes"},{"indexed":false,"internalType":"uint64","name":"_nonce","type":"uint64"},{"indexed":false,"internalType":"bytes32","name":"_payloadHash","type":"bytes32"}],"name":"RetryMessageSuccess","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint16","name":"_dstChainId","type":"uint16"},{"indexed":false,"internalType":"uint16","name":"_type","type":"uint16"},{"indexed":false,"internalType":"uint256","name":"_minDstGas","type":"uint256"}],"name":"SetMinDstGas","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"precrime","type":"address"}],"name":"SetPrecrime","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint16","name":"_remoteChainId","type":"uint16"},{"indexed":false,"internalType":"bytes","name":"_path","type":"bytes"}],"name":"SetTrustedRemote","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint16","name":"_remoteChainId","type":"uint16"},{"indexed":false,"internalType":"bytes","name":"_remoteAddress","type":"bytes"}],"name":"SetTrustedRemoteAddress","type":"event"},{"inputs":[],"name":"DEFAULT_PAYLOAD_SIZE_LIMIT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"NO_EXTRA_GAS","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PT_SEND","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint16","name":"_dstChainId","type":"uint16"},{"internalType":"bytes","name":"_toAddress","type":"bytes"},{"internalType":"bytes","name":"_adapterParams","type":"bytes"}],"name":"bridgeGas","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint16","name":"_dstChainId","type":"uint16"},{"internalType":"bytes","name":"payload","type":"bytes"},{"internalType":"bytes","name":"_adapterParams","type":"bytes"}],"name":"estimateSendFee","outputs":[{"internalType":"uint256","name":"nativeFee","type":"uint256"},{"internalType":"uint256","name":"zroFee","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint16","name":"","type":"uint16"},{"internalType":"bytes","name":"","type":"bytes"},{"internalType":"uint64","name":"","type":"uint64"}],"name":"failedMessages","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint16","name":"_srcChainId","type":"uint16"},{"internalType":"bytes","name":"_srcAddress","type":"bytes"}],"name":"forceResumeReceive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint16","name":"_version","type":"uint16"},{"internalType":"uint16","name":"_chainId","type":"uint16"},{"internalType":"address","name":"","type":"address"},{"internalType":"uint256","name":"_configType","type":"uint256"}],"name":"getConfig","outputs":[{"internalType":"bytes","name":"","type":"bytes"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint16","name":"_remoteChainId","type":"uint16"}],"name":"getTrustedRemoteAddress","outputs":[{"internalType":"bytes","name":"","type":"bytes"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint16","name":"_srcChainId","type":"uint16"},{"internalType":"bytes","name":"_srcAddress","type":"bytes"}],"name":"isTrustedRemote","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lzEndpoint","outputs":[{"internalType":"contract ILayerZeroEndpoint","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint16","name":"_srcChainId","type":"uint16"},{"internalType":"bytes","name":"_srcAddress","type":"bytes"},{"internalType":"uint64","name":"_nonce","type":"uint64"},{"internalType":"bytes","name":"_payload","type":"bytes"}],"name":"lzReceive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint16","name":"","type":"uint16"},{"internalType":"uint16","name":"","type":"uint16"}],"name":"minDstGasLookup","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint16","name":"_srcChainId","type":"uint16"},{"internalType":"bytes","name":"_srcAddress","type":"bytes"},{"internalType":"uint64","name":"_nonce","type":"uint64"},{"internalType":"bytes","name":"_payload","type":"bytes"}],"name":"nonblockingLzReceive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint16","name":"","type":"uint16"}],"name":"payloadSizeLimitLookup","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"precrime","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint16","name":"_srcChainId","type":"uint16"},{"internalType":"bytes","name":"_srcAddress","type":"bytes"},{"internalType":"uint64","name":"_nonce","type":"uint64"},{"internalType":"bytes","name":"_payload","type":"bytes"}],"name":"retryMessage","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint16","name":"_version","type":"uint16"},{"internalType":"uint16","name":"_chainId","type":"uint16"},{"internalType":"uint256","name":"_configType","type":"uint256"},{"internalType":"bytes","name":"_config","type":"bytes"}],"name":"setConfig","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint16","name":"_dstChainId","type":"uint16"},{"internalType":"uint16","name":"_packetType","type":"uint16"},{"internalType":"uint256","name":"_minGas","type":"uint256"}],"name":"setMinDstGas","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint16","name":"_dstChainId","type":"uint16"},{"internalType":"uint256","name":"_size","type":"uint256"}],"name":"setPayloadSizeLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_precrime","type":"address"}],"name":"setPrecrime","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint16","name":"_version","type":"uint16"}],"name":"setReceiveVersion","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint16","name":"_version","type":"uint16"}],"name":"setSendVersion","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint16","name":"_remoteChainId","type":"uint16"},{"internalType":"bytes","name":"_path","type":"bytes"}],"name":"setTrustedRemote","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint16","name":"_remoteChainId","type":"uint16"},{"internalType":"bytes","name":"_remoteAddress","type":"bytes"}],"name":"setTrustedRemoteAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint16","name":"","type":"uint16"}],"name":"trustedRemoteLookup","outputs":[{"internalType":"bytes","name":"","type":"bytes"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"useCustomAdapterParams","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"payable","type":"function"}]
Contract Creation Code
9c4d535b000000000000000000000000000000000000000000000000000000000000000001000627d6019f5218dc6049ac7f4f9fb62b4b5f128356ab266214fcab0b7e2e000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000200000000000000000000000009b896c0e23220469c7ae69cb4bbae391eaa4c8da
Deployed Bytecode
0x0004000000000002000500000000000200000000030100190000006003300270000005b50430019700030000004103550002000000010355000005b50030019d000100000000001f00000001012001900000004b0000c13d0000008001000039000000400010043f0000000001000031000000040110008c000003b60000413d0000000201000367000000000101043b000000e001100270000005bd0210009c000000aa0000a13d000005be0210009c000000b50000213d000005ca0210009c000000c70000213d000005d00210009c000001ac0000213d000005d30210009c000002660000613d000005d40110009c000003b60000c13d0000000001000416000000000101004b000003b60000c13d000000040100008a0000000001100031000005b702000041000000400310008c00000000030000190000000003024019000005b701100197000000000401004b000000000200a019000005b70110009c00000000010300190000000001026019000000000101004b000003b60000c13d00000002020003670000000401200370000000000101043b0000ffff0310008c000003b60000213d0000002402200370000000000202043b000500000002001d0000ffff0220008c000003b60000213d00000000001004350000000201000039000000200010043f0000004002000039000000000100001916cf04120000040f000000050200002916cf098d0000040f000000000101041a000000400200043d0000000000120435000005b501000041000005b50320009c00000000010240190000004001100210000005ed011001c7000016d00001042e0000000001000416000000000101004b000003b60000c13d0000000001000031000000bf02100039000000200300008a000000000232016f000005b60320009c0000005a0000413d000005f60100004100000000001004350000004101000039000000040010043f000005eb01000041000016d100010430000000400020043f0000001f0210018f00000002030003670000000504100272000000680000613d00000000050000190000000506500210000000000763034f000000000707043b000000a00660003900000000007604350000000105500039000000000645004b000000600000413d000000000502004b000000770000613d0000000504400210000000000343034f0000000302200210000000a004400039000000000504043300000000052501cf000000000525022f000000000303043b0000010002200089000000000323022f00000000022301cf000000000252019f0000000000240435000005b702000041000000200310008c00000000030000190000000003024019000005b701100197000000000401004b000000000200a019000005b70110009c00000000010300190000000001026019000000000101004b000003b60000c13d000000a00100043d000500000001001d000005b80110009c000003b60000213d000000000200041a000005b9012001970000000006000411000000000161019f000000000010041b000005b5010000410000000003000414000005b50430009c0000000001034019000000c001100210000005ba011001c7000005b8052001970000800d020000390000000303000039000005bb0400004116cf16c50000040f0000000101200190000003b60000613d0000000501000029000000800010043f0000000601000039000000000201041a000001000300008a000000000232016f00000001022001bf000000000021041b000000800100043d000001400000044300000160001004430000002001000039000001000010044300000001010000390000012000100443000005bc01000041000016d00001042e000005d50210009c000000be0000a13d000005d60210009c000000ce0000213d000005dc0210009c000001cc0000213d000005df0210009c000002930000613d000005e00110009c000003b60000c13d16cf099e0000040f000005bf0210009c0000015b0000213d000005c50210009c000001d40000213d000005c80210009c000002b80000613d000005c90110009c000003b60000c13d16cf0d110000040f000005e10210009c0000017f0000a13d000005e20210009c000001d90000213d000005e50210009c000002d20000613d000005e60110009c000003b60000c13d16cf07b20000040f000005cb0210009c000002010000213d000005ce0210009c000002d30000613d000005cf0110009c000003b60000c13d16cf0bbe0000040f000005d70210009c000002370000213d000005da0210009c000002d40000613d000005db0110009c000003b60000c13d0000000001000416000000000101004b000003b60000c13d0000000002000031000000040120008a000005b703000041000000600410008c00000000040000190000000004034019000005b701100197000000000501004b000000000300a019000005b70110009c00000000010400190000000001036019000000000101004b000003b60000c13d00000002030003670000000401300370000000000101043b0000ffff0410008c000003b60000213d0000002404300370000000000404043b000005f10540009c000003b60000213d0000002305400039000005b706000041000000000725004b00000000070000190000000007068019000005b708200197000005b705500197000000000985004b0000000006008019000000000585013f000005b70550009c00000000050700190000000005066019000000000505004b000003b60000c13d0000000405400039000000000353034f000000000303043b000005f10530009c000000540000213d0000003f05300039000000200600008a000000000565016f000000400800043d0000000005580019000000000685004b00000000060000190000000106004039000005f10750009c000000540000213d0000000106600190000000540000c13d0000002404400039000000400050043f000400000008001d0000000005380436000500000005001d0000000005430019000000000225004b000003b60000213d0000001f0230018f000000020440036700000005053002720000000509000029000001240000613d000000000600001900000005076002100000000008790019000000000774034f000000000707043b00000000007804350000000106600039000000000756004b0000011c0000413d000000000602004b000001330000613d0000000505500210000000000454034f00000000055900190000000302200210000000000605043300000000062601cf000000000626022f000000000404043b0000010002200089000000000424022f00000000022401cf000000000262019f00000000002504350000000002390019000000000002043500000044020000390000000202200367000000000202043b000300000002001d000005f10220009c000003b60000213d00000000001004350000000501000039000000200010043f0000004002000039000000000100001916cf04120000040f00000004020000290000000003020433000100000003001d000400000001001d000000400200043d000200000002001d000000050100002916cf0a850000040f00000001020000290000000201000029000000000412001900000004030000290000000000340435000000200220003916cf04120000040f000000030200002916cf0a920000040f000000000101041a000000400200043d0000000000120435000005b501000041000005b50320009c00000000010240190000004001100210000005ed011001c7000016d00001042e000005c00210009c000002610000213d000005c30210009c000002e40000613d000005c40110009c000003b60000c13d0000000001000416000000000101004b000003b60000c13d000000040100008a0000000001100031000005b702000041000000000301004b00000000030000190000000003024019000005b701100197000000000401004b000000000200a019000005b70110009c00000000010300190000000001026019000000000101004b000003b60000c13d0000000601000039000000000101041a000000ff011001900000000001000019000000010100c039000000400200043d0000000000120435000005b501000041000005b50320009c00000000010240190000004001100210000005ed011001c7000016d00001042e000005e70210009c000003b80000613d000005e80210009c000002e50000613d000005e90110009c000003b60000c13d0000000001000416000000000101004b000003b60000c13d000000040100008a0000000001100031000005b702000041000000400310008c00000000030000190000000003024019000005b701100197000000000401004b000000000200a019000005b70110009c00000000010300190000000001026019000000000101004b000003b60000c13d00000004010000390000000201100367000000000101043b000500000001001d0000ffff0110008c000003b60000213d16cf16b40000040f000000050100002900000000001004350000000301000039000000200010043f00000024010000390000000201100367000000000101043b000500000001001d0000004002000039000000000100001916cf04120000040f0000000502000029000000000021041b0000000001000019000016d00001042e000005d10210009c000002e60000613d000005d20110009c000003b60000c13d0000000001000416000000000101004b000003b60000c13d000000040100008a0000000001100031000005b702000041000000000301004b00000000030000190000000003024019000005b701100197000000000401004b000000000200a019000005b70110009c00000000010300190000000001026019000000000101004b000003b60000c13d0000000401000039000000000101041a000005b801100197000000400200043d0000000000120435000005b501000041000005b50320009c00000000010240190000004001100210000005ed011001c7000016d00001042e000005dd0210009c000003010000613d000005de0110009c000003b60000c13d0000000001000416000000000101004b000003040000613d000003b60000013d000005c60210009c0000031a0000613d000005c70110009c000003b60000c13d16cf10430000040f000005e30210009c0000031b0000613d000005e40110009c000003b60000c13d0000000001000416000000000101004b000003b60000c13d000000000100003116cf095b0000040f000500000002001d000400000003001d0000ffff0110018f00000000001004350000000101000039000000200010043f0000004002000039000000000100001916cf04120000040f16cf0aa30000040f000000001201043416cf04120000040f000300000001001d00000000030000310000000501000029000000040200002916cf06cb0000040f000000001201043416cf04120000040f0000000302000029000000000112004b00000000010000190000000101006039000000400200043d0000000000120435000005b501000041000005b50320009c00000000010240190000004001100210000005ed011001c7000016d00001042e000005cc0210009c0000031c0000613d000005cd0110009c000003b60000c13d0000000001000416000000000101004b000003b60000c13d000000040100008a0000000001100031000005b702000041000000200310008c00000000030000190000000003024019000005b701100197000000000401004b000000000200a019000005b70110009c00000000010300190000000001026019000000000101004b000003b60000c13d00000004020000390000000201200367000000000101043b000005b80310009c000003b60000213d000000000300041a000005b8043001970000000003000411000000000434004b000003d60000c13d000000000302041a000005b903300197000000000313019f000000000032041b000000400200043d0000000000120435000005b5010000410000000003000414000005b50430009c0000000003018019000005b50420009c00000000010240190000004001100210000000c002300210000000000112019f000005ee011001c70000800d020000390000000103000039000005ef0400004116cf16c50000040f0000000101200190000003fb0000c13d000003b60000013d000005d80210009c000003400000613d000005d90110009c000003b60000c13d0000000001000416000000000101004b000003b60000c13d000000040100008a0000000001100031000005b702000041000000000301004b00000000030000190000000003024019000005b701100197000000000401004b000000000200a019000005b70110009c00000000010300190000000001026019000000000101004b000003b60000c13d000000000100041a000005b8021001970000000005000411000000000252004b000003b90000c13d000005b901100197000000000010041b000005b5010000410000000002000414000005b50320009c0000000001024019000000c001100210000005ba011001c70000800d020000390000000303000039000005bb04000041000000000600001916cf16c50000040f0000000101200190000003b60000613d000003fb0000013d000005c10210009c000003a00000613d000005c20110009c000003b60000c13d16cf11c90000040f0000000001000416000000000101004b000003b60000c13d000000040100008a0000000001100031000005b702000041000000200310008c00000000030000190000000003024019000005b701100197000000000401004b000000000200a019000005b70110009c00000000010300190000000001026019000000000101004b000003b60000c13d00000004010000390000000201100367000000000101043b0000ffff0210008c000003b60000213d00000000001004350000000101000039000000200010043f0000004002000039000000000100001916cf04120000040f16cf0aa30000040f0000002002000039000000400300043d000500000003001d000000000223043616cf0af40000040f00000005040000290000000001410049000005b502000041000005b50310009c0000000001028019000005b50340009c000000000204401900000040022002100000006001100210000000000121019f000016d00001042e0000000001000416000000000101004b000003b60000c13d000000040100008a0000000001100031000005b702000041000000200310008c00000000030000190000000003024019000005b701100197000000000401004b000000000200a019000005b70110009c00000000010300190000000001026019000000000101004b000003b60000c13d00000004010000390000000201100367000000000101043b0000ffff0210008c000003b60000213d00000000001004350000000301000039000000200010043f0000004002000039000000000100001916cf04120000040f000000000101041a000000400200043d0000000000120435000005b501000041000005b50320009c00000000010240190000004001100210000005ed011001c7000016d00001042e0000000001000416000000000101004b000003b60000c13d000000040100008a0000000001100031000005b702000041000000000301004b00000000030000190000000003024019000005b701100197000000000401004b000000000200a019000005b70110009c00000000010300190000000001026019000000000101004b000003b60000c13d000000400100043d00002710020000390000000000210435000005b502000041000005b50310009c00000000010280190000004001100210000005ed011001c7000016d00001042e16cf06300000040f16cf0b1d0000040f0000000001000416000000000101004b000003b60000c13d000000000100003116cf07060000040f16cf130f0000040f000000400300043d000000200430003900000000002404350000000000130435000005b501000041000005b50230009c00000000010340190000004001100210000005f7011001c7000016d00001042e16cf10c10000040f16cf05950000040f0000000001000416000000000101004b000003b60000c13d000000040100008a0000000001100031000005b702000041000000000301004b00000000030000190000000003024019000005b701100197000000000401004b000000000200a019000005b70110009c00000000010300190000000001026019000000000101004b000003b60000c13d000000000100041a000005b801100197000000400200043d0000000000120435000005b501000041000005b50320009c00000000010240190000004001100210000005ed011001c7000016d00001042e0000000001000416000000000101004b000003b60000c13d000000040100008a0000000001100031000005b702000041000000000301004b00000000030000190000000003024019000005b701100197000000000401004b000000000200a019000005b70110009c00000000010300190000000001026019000000000101004b000003b60000c13d000000400100043d0000000000010435000005b502000041000005b50310009c00000000010280190000004001100210000005ed011001c7000016d00001042e16cf0e050000040f16cf08ef0000040f0000000001000416000000000101004b000003b60000c13d000000040100008a0000000001100031000005b702000041000000000301004b00000000030000190000000003024019000005b701100197000000000401004b000000000200a019000005b70110009c00000000010300190000000001026019000000000101004b000003b60000c13d000000400100043d000500000001001d000005f00100004100000000001004390000000001000412000000040010044300000024000004430000800501000039000000440200003916cf04280000040f000005b80110019700000005030000290000000000130435000005b501000041000005b50230009c00000000010340190000004001100210000005ed011001c7000016d00001042e0000000001000416000000000101004b000003b60000c13d0000000003000031000000040130008a000005b702000041000000800410008c00000000040000190000000004024019000005b701100197000000000501004b000000000200a019000005b70110009c00000000010400190000000001026019000000000101004b000003b60000c13d00000002040003670000000401400370000000000101043b0000ffff0110008c000003b60000213d0000002401400370000000000101043b000005f10210009c000003b60000213d0000002302100039000005b705000041000000000632004b00000000060000190000000006058019000005b707300197000005b702200197000000000872004b0000000005008019000000000272013f000005b70220009c00000000020600190000000002056019000000000202004b000003b60000c13d0000000402100039000000000224034f000000000202043b000005f10520009c000003b60000213d00000024011000390000000005120019000000000535004b000003b60000213d0000004405400370000000000505043b000005f10550009c000003b60000213d0000006405400370000000000505043b000005f10650009c000003b60000213d0000002306500039000005b707000041000000000836004b00000000080000190000000008078019000005b709300197000005b706600197000000000a96004b0000000007008019000000000696013f000005b70660009c00000000060800190000000006076019000000000606004b000003b60000c13d0000000406500039000000000464034f000000000404043b000500000004001d000005f10440009c000003b60000213d00000024055000390000000504000029000400000005001d0000000004540019000000000434004b000003b60000213d00000000040004100000000005000411000000000445004b000003fd0000c13d16cf06cb0000040f00000000030000310000000401000029000000050200002916cf06cb0000040f0000000001000019000016d00001042e0000000001000416000000000101004b000003b60000c13d000000040100008a0000000001100031000005b702000041000000200310008c00000000030000190000000003024019000005b701100197000000000401004b000000000200a019000005b70110009c00000000010300190000000001026019000000000101004b000003b60000c13d00000004010000390000000201100367000000000601043b000005b80160009c000003c40000a13d0000000001000019000016d10001043016cf04390000040f000000400100043d000005ea02000041000000000021043500000004021000390000000000520435000005b502000041000005b50310009c00000000010280190000004001100210000005eb011001c7000016d100010430000000000100041a000005b8021001970000000005000411000000000252004b000003e10000c13d000000000206004b000003ec0000c13d000000400100043d000005ec02000041000000000021043500000004021000390000000000020435000005b502000041000005b50310009c00000000010280190000004001100210000005eb011001c7000016d100010430000000400100043d000005ea02000041000000000021043500000004021000390000000000320435000005b502000041000005b50310009c00000000010280190000004001100210000005eb011001c7000016d100010430000000400100043d000005ea02000041000000000021043500000004021000390000000000520435000005b502000041000005b50310009c00000000010280190000004001100210000005eb011001c7000016d100010430000005b901100197000000000161019f000000000010041b000005b5010000410000000002000414000005b50320009c0000000001024019000000c001100210000005ba011001c70000800d020000390000000303000039000005bb0400004116cf16c50000040f0000000101200190000003b60000613d0000000001000019000016d00001042e000000400100043d0000006402100039000005f20300004100000000003204350000004402100039000005f3030000410000000000320435000000240210003900000026030000390000000000320435000005f4020000410000000000210435000000040210003900000020030000390000000000320435000005b502000041000005b50310009c00000000010280190000004001100210000005f5011001c7000016d100010430000005b503000041000005b50410009c00000000010380190000004001100210000005b50420009c00000000020380190000006002200210000000000112019f0000000002000414000005b50420009c0000000002038019000000c002200210000000000112019f000005ba011001c7000080100200003916cf16ca0000040f0000000102200190000004260000613d000000000101043b000000000001042d0000000001000019000016d1000104300000000003010019000005b5010000410000000004000414000005b50540009c0000000001044019000000c00110021000000060022002100000000001120019000005f801100041000000000203001916cf16ca0000040f0000000102200190000004370000613d000000000101043b000000000001042d0000000001000019000016d100010430000a0000000000020000000001000416000000000101004b000004500000c13d0000000001000031000000040210008a000005b703000041000000800420008c00000000040000190000000004034019000005b702200197000000000502004b000000000300a019000005b70220009c00000000020400190000000002036019000000000202004b000004500000c13d00000002020003670000000403200370000000000903043b0000ffff0390008c000004520000a13d0000000001000019000016d1000104300000002403200370000000000303043b000005f10430009c000004500000213d0000002304300039000005b705000041000000000614004b00000000060000190000000006058019000005b707100197000005b704400197000000000874004b0000000005008019000000000474013f000005b70440009c00000000040600190000000004056019000000000404004b000004500000c13d0000000404300039000000000442034f000000000b04043b000005f104b0009c000004500000213d000000240c300039000000000dcb001900000000031d004b000004500000213d0000004403200370000000000a03043b000005f103a0009c000004500000213d0000006403200370000000000303043b000005f10430009c000004500000213d0000002304300039000005b705000041000000000614004b00000000060000190000000006058019000005b707100197000005b704400197000000000874004b0000000005008019000000000474013f000005b70440009c00000000040600190000000004056019000000000404004b000004500000c13d0000000404300039000000000242034f000000000402043b000005f10240009c000004500000213d0000002402300039000a00000002001d0000000002240019000000000112004b000004500000213d000005f0010000410000000000100439000000000100041200000004001004430000002400000443000005b5010000410000000002000414000005b50320009c0000000001024019000000c001100210000005f9011001c70000800502000039000900000009001d00060000000a001d00080000000b001d00070000000c001d000500000004001d00040000000d001d16cf16ca0000040f00000009030000290000000102200190000004500000613d000000000101043b000005b8011001970000000002000411000000000112004b000004c90000c13d00000000003004350000000101000039000000200010043f000005b5010000410000000002000414000005b50320009c0000000001024019000000c001100210000005fc011001c7000080100200003916cf16ca0000040f0000000102200190000004500000613d000000000101043b000000000201041a000000010320019000000001042002700000007f0540018f000000000504c0190000001f0450008c00000000040000190000000104002039000000010440018f000000000443004b000004db0000613d000005f60100004100000000001004350000002201000039000000040010043f000005eb01000041000016d100010430000000400100043d0000004402100039000005fa03000041000000000032043500000024021000390000001e030000390000000000320435000005f4020000410000000000210435000000040210003900000020030000390000000000320435000005b502000041000005b50310009c00000000010280190000004001100210000005fb011001c7000016d100010430000000400400043d000300000004001d000100000005001d0000000004540436000200000004001d000000000303004b000004fc0000613d0000000000100435000005b5010000410000000002000414000005b50320009c0000000001024019000000c001100210000005ee011001c7000080100200003916cf16ca0000040f0000000102200190000004500000613d0000000106000029000000000206004b00000000020000190000000205000029000005040000613d000000000101043b00000000020000190000000003250019000000000401041a000000000043043500000001011000390000002002200039000000000362004b000004f40000413d000005040000013d000001000100008a000000000112016f000000020200002900000000001204350000000101000029000000000101004b000000200200003900000000020060190000003f01200039000000200200008a000000000321016f00000003010000290000000001130019000000000331004b00000000030000190000000103004039000005f10410009c0000058f0000213d00000001033001900000058f0000c13d000000400010043f000000030300002900000000030304330000000804000029000000000334004b00000000030000190000057d0000c13d0000000803000029000000000303004b00000000030000190000057d0000613d00000008030000290000003f03300039000000000223016f0000000002210019000000000312004b00000000030000190000000103004039000005f10420009c0000058f0000213d00000001033001900000058f0000c13d0000000003000031000000400020043f000000080500002900000000025104360000000404000029000000000334004b0000000704000029000004500000213d0000001f0350018f000000020440036700000005055002720000053b0000613d000000000600001900000005076002100000000008720019000000000774034f000000000707043b00000000007804350000000106600039000000000756004b000005330000413d000000000603004b0000054a0000613d0000000505500210000000000454034f00000000055200190000000303300210000000000605043300000000063601cf000000000636022f000000000404043b0000010003300089000000000434022f00000000033401cf000000000363019f0000000000350435000000080300002900000000033200190000000000030435000005b503000041000005b50420009c000000000203801900000040022002100000000001010433000005b50410009c00000000010380190000006001100210000000000121019f0000000002000414000005b50420009c0000000002038019000000c002200210000000000112019f000005ba011001c7000080100200003916cf16ca0000040f0000000102200190000004500000613d000005b5020000410000000204000029000005b50340009c00000000030200190000000003044019000000400330021000000003040000290000000004040433000005b50540009c00000000040280190000006004400210000000000334019f000000000101043b000400000001001d0000000001000414000005b50410009c0000000001028019000000c001100210000000000131019f000005ba011001c7000080100200003916cf16ca0000040f0000000102200190000004500000613d000000000101043b0000000402000029000000000112004b00000000030000190000000103006039000000010130018f16cf12c00000040f00000000030000310000000701000029000000080200002916cf06cb0000040f000800000001001d00000000030000310000000a01000029000000050200002916cf06cb0000040f000000000401001900000009010000290000000802000029000000060300002916cf15510000040f0000000001000019000016d00001042e000005f60100004100000000001004350000004101000039000000040010043f000005eb01000041000016d10001043000020000000000020000000001000416000000000101004b000005ac0000c13d000000040100008a0000000001100031000005b702000041000000200310008c00000000030000190000000003024019000005b701100197000000000401004b000000000200a019000005b70110009c00000000010300190000000001026019000000000101004b000005ac0000c13d00000004010000390000000201100367000000000301043b0000ffff0130008c000005ae0000a13d0000000001000019000016d100010430000000000100041a000005b8021001970000000001000411000000000212004b000005fc0000c13d000005f0010000410000000000100439000000000100041200000004001004430000002400000443000005b5010000410000000002000414000200000003001d000005b50320009c0000000001024019000000c001100210000005f9011001c7000080050200003916cf16ca0000040f0000000102200190000005ac0000613d000000000101043b000005fd020000410000000000200439000005b801100197000100000001001d0000000400100443000005b5010000410000000002000414000005b50320009c0000000001024019000000c001100210000005fe011001c7000080020200003916cf16ca0000040f00000002030000290000000102200190000005ac0000613d000000000101043b000000000101004b000005ac0000613d000000400500043d000005ff0100004100000000001504350000000401500039000000000031043500000000010004140000000102000029000000040320008c000005f40000613d000005b504000041000005b50310009c0000000001048019000005b50350009c000000000304001900000000030540190000004003300210000000c001100210000000000131019f000005eb011001c7000200000005001d16cf16c50000040f000000020500002900000000030100190000006003300270000105b50030019d000005b504300197000300000001035500000001022001900000060a0000613d000005b60150009c000006070000413d000005f60100004100000000001004350000004101000039000000040010043f000005eb01000041000016d100010430000000400200043d000005ea03000041000000000032043500000004032000390000000000130435000005b501000041000005b50320009c00000000010240190000004001100210000005eb011001c7000016d100010430000000400050043f0000000001000019000016d00001042e000000400200043d0000001f0340018f0000000504400272000006170000613d000000000500001900000005065002100000000007620019000000000661034f000000000606043b00000000006704350000000105500039000000000645004b0000060f0000413d000000000503004b000006260000613d0000000504400210000000000141034f00000000044200190000000303300210000000000504043300000000053501cf000000000535022f000000000101043b0000010003300089000000000131022f00000000013101cf000000000151019f0000000000140435000005b5010000410000000103000031000005b50430009c0000000003018019000005b50420009c000000000102401900000040011002100000006002300210000000000112019f000016d10001043000020000000000020000000001000416000000000101004b000006470000c13d000000040100008a0000000001100031000005b702000041000000200310008c00000000030000190000000003024019000005b701100197000000000401004b000000000200a019000005b70110009c00000000010300190000000001026019000000000101004b000006470000c13d00000004010000390000000201100367000000000301043b0000ffff0130008c000006490000a13d0000000001000019000016d100010430000000000100041a000005b8021001970000000001000411000000000212004b000006970000c13d000005f0010000410000000000100439000000000100041200000004001004430000002400000443000005b5010000410000000002000414000200000003001d000005b50320009c0000000001024019000000c001100210000005f9011001c7000080050200003916cf16ca0000040f0000000102200190000006470000613d000000000101043b000005fd020000410000000000200439000005b801100197000100000001001d0000000400100443000005b5010000410000000002000414000005b50320009c0000000001024019000000c001100210000005fe011001c7000080020200003916cf16ca0000040f00000002030000290000000102200190000006470000613d000000000101043b000000000101004b000006470000613d000000400500043d000006000100004100000000001504350000000401500039000000000031043500000000010004140000000102000029000000040320008c0000068f0000613d000005b504000041000005b50310009c0000000001048019000005b50350009c000000000304001900000000030540190000004003300210000000c001100210000000000131019f000005eb011001c7000200000005001d16cf16c50000040f000000020500002900000000030100190000006003300270000105b50030019d000005b50430019700030000000103550000000102200190000006a50000613d000005b60150009c000006a20000413d000005f60100004100000000001004350000004101000039000000040010043f000005eb01000041000016d100010430000000400200043d000005ea03000041000000000032043500000004032000390000000000130435000005b501000041000005b50320009c00000000010240190000004001100210000005eb011001c7000016d100010430000000400050043f0000000001000019000016d00001042e000000400200043d0000001f0340018f0000000504400272000006b20000613d000000000500001900000005065002100000000007620019000000000661034f000000000606043b00000000006704350000000105500039000000000645004b000006aa0000413d000000000503004b000006c10000613d0000000504400210000000000141034f00000000044200190000000303300210000000000504043300000000053501cf000000000535022f000000000101043b0000010003300089000000000131022f00000000013101cf000000000151019f0000000000140435000005b5010000410000000103000031000005b50430009c0000000003018019000005b50420009c000000000102401900000040011002100000006002300210000000000112019f000016d1000104300000000004010019000005b60120009c000006fe0000813d0000003f01200039000000200500008a000000000551016f000000400100043d0000000005510019000000000615004b00000000060000190000000106004039000005f10750009c000006fe0000213d0000000106600190000006fe0000c13d000000400050043f00000000052104360000000006420019000000000336004b000007040000213d0000001f0320018f00000002044003670000000506200272000006ec0000613d000000000700001900000005087002100000000009850019000000000884034f000000000808043b00000000008904350000000107700039000000000867004b000006e40000413d000000000703004b000006fb0000613d0000000506600210000000000464034f00000000066500190000000303300210000000000706043300000000073701cf000000000737022f000000000404043b0000010003300089000000000434022f00000000033401cf000000000373019f000000000036043500000000022500190000000000020435000000000001042d000005f60100004100000000001004350000004101000039000000040010043f000005eb01000041000016d1000104300000000001000019000016d1000104300000000004010019000000040140008a000005b7020000410000005f0310008c00000000030000190000000003022019000005b701100197000000000501004b0000000002008019000005b70110009c00000000010300190000000001026019000000000101004b000007aa0000613d00000002020003670000000401200370000000000101043b0000ffff0310008c000007aa0000213d0000002403200370000000000603043b000005f10360009c000007aa0000213d0000002303600039000005b705000041000000000743004b00000000070000190000000007058019000005b708400197000005b703300197000000000983004b0000000005008019000000000383013f000005b70330009c00000000030700190000000003056019000000000303004b000007aa0000c13d0000000403600039000000000232034f000000000502043b000005b60250009c000007ac0000813d0000003f02500039000000200300008a000000000732016f000000400200043d0000000007720019000000000827004b00000000080000190000000108004039000005f10970009c000007ac0000213d0000000108800190000007ac0000c13d0000002408600039000000400070043f00000000065204360000000007850019000000000747004b000007aa0000213d0000001f0750018f00000002088003670000000509500272000007500000613d000000000a000019000000050ba00210000000000cb60019000000000bb8034f000000000b0b043b0000000000bc0435000000010aa00039000000000b9a004b000007480000413d000000000a07004b0000075f0000613d0000000509900210000000000898034f00000000099600190000000307700210000000000a090433000000000a7a01cf000000000a7a022f000000000808043b0000010007700089000000000878022f00000000077801cf0000000007a7019f00000000007904350000000005560019000000000005043500000002050003670000004406500370000000000606043b000005f10760009c000007aa0000213d0000002307600039000005b708000041000000000947004b00000000090000190000000009088019000005b70a400197000005b707700197000000000ba7004b00000000080080190000000007a7013f000005b70770009c00000000070900190000000007086019000000000707004b000007aa0000c13d0000000407600039000000000575034f000000000505043b000005f10750009c000007ac0000213d0000003f07500039000000000737016f000000400300043d0000000007730019000000000837004b00000000080000190000000108004039000005f10970009c000007ac0000213d0000000108800190000007ac0000c13d0000002408600039000000400070043f00000000065304360000000007850019000000000447004b000007aa0000213d0000001f0450018f00000002078003670000000508500272000007980000613d0000000009000019000000050a900210000000000ba60019000000000aa7034f000000000a0a043b0000000000ab04350000000109900039000000000a89004b000007900000413d000000000904004b000007a70000613d0000000508800210000000000787034f00000000088600190000000304400210000000000908043300000000094901cf000000000949022f000000000707043b0000010004400089000000000747022f00000000044701cf000000000494019f000000000048043500000000045600190000000000040435000000000001042d0000000001000019000016d100010430000005f60100004100000000001004350000004101000039000000040010043f000005eb01000041000016d10001043000040000000000020000000001000031000000040210008a000005b7030000410000005f0420008c00000000040000190000000004032019000005b702200197000000000502004b0000000003008019000005b70220009c00000000020400190000000002036019000000000202004b000008380000613d00000002020003670000000403200370000000000b03043b0000ffff03b0008c000008380000213d0000002403200370000000000403043b000005f10340009c000008380000213d0000002303400039000005b705000041000000000613004b00000000060000190000000006058019000005b707100197000005b703300197000000000873004b0000000005008019000000000373013f000005b70330009c00000000030600190000000003056019000000000303004b000008380000c13d0000000403400039000000000232034f000000000302043b000005b60230009c0000083a0000813d0000003f05300039000000200200008a000000000525016f000000400c00043d00000000055c00190000000006c5004b00000000060000190000000106004039000005f10750009c0000083a0000213d00000001066001900000083a0000c13d0000002406400039000000400050043f00000000043c04360000000005630019000000000515004b000008380000213d0000001f0530018f00000002066003670000000507300272000007fd0000613d00000000080000190000000509800210000000000a940019000000000996034f000000000909043b00000000009a04350000000108800039000000000978004b000007f50000413d000000000805004b0000080c0000613d0000000507700210000000000676034f00000000077400190000000305500210000000000807043300000000085801cf000000000858022f000000000606043b0000010005500089000000000656022f00000000055601cf000000000585019f00000000005704350000000003340019000000000003043500000002030003670000004404300370000000000404043b000005f10540009c000008380000213d0000002305400039000005b706000041000000000715004b00000000070000190000000007068019000005b708100197000005b705500197000000000985004b0000000006008019000000000585013f000005b70550009c00000000050700190000000005066019000000000505004b000008380000c13d0000000405400039000000000353034f000000000903043b000005f10590009c0000083a0000213d0000003f05900039000000000225016f000000400300043d0000000002230019000000000532004b00000000050000190000000105004039000005f10620009c0000083a0000213d00000001055001900000083a0000c13d0000002404400039000000400020043f00000000029304360000000005490019000000000115004b000008400000a13d0000000001000019000016d100010430000005f60100004100000000001004350000004101000039000000040010043f000005eb01000041000016d1000104300000001f0190018f000000020440036700000005059002720000084d0000613d000000000600001900000005076002100000000008720019000000000774034f000000000707043b00000000007804350000000106600039000000000756004b000008450000413d000000000601004b0000085c0000613d0000000505500210000000000454034f00000000055200190000000301100210000000000605043300000000061601cf000000000616022f000000000404043b0000010001100089000000000414022f00000000011401cf000000000161019f00000000001504350000000001920019000000000001043500000000010304330000000602000039000000000202041a000000ff02200190000008780000c13d000000000101004b0000088c0000c13d00040000000b001d00030000000c001d000200000003001d00000000010b001900000000020c001916cf130f0000040f000100000001001d0000000002000416000000000212004b0000000001000019000000010100803916cf13dc0000040f000000040100002900000003020000290000000203000029000000010400002916cf13f10000040f0000000001000019000016d00001042e000000210110008c000008a10000213d000000400100043d00000044021000390000060303000041000000000032043500000024021000390000001c030000390000000000320435000005f4020000410000000000210435000000040210003900000020030000390000000000320435000005b502000041000005b50310009c00000000010280190000004001100210000005fb011001c7000016d100010430000000400100043d000000640210003900000604030000410000000000320435000000440210003900000605030000410000000000320435000000240210003900000026030000390000000000320435000005f4020000410000000000210435000000040210003900000020030000390000000000320435000005b502000041000005b50310009c00000000010280190000004001100210000005f5011001c7000016d10001043000000022013000390000000001010433000100000001001d0000000000b004350000000201000039000000200010043f000005b5010000410000000002000414000005b50420009c0000000001024019000000c001100210000005fc011001c7000080100200003900040000000b001d00030000000c001d000200000003001d16cf16ca0000040f0000000102200190000008380000613d000000000101043b0000000000000435000000200010043f000005b5010000410000000002000414000005b50320009c0000000001024019000000c001100210000005fc011001c7000080100200003916cf16ca0000040f0000000102200190000008380000613d000000000101043b000000000101041a000000000201004b000008d70000c13d000000400100043d00000044021000390000060203000041000000000032043500000024021000390000001a030000390000000000320435000005f4020000410000000000210435000000040210003900000020030000390000000000320435000005b502000041000005b50310009c00000000010280190000004001100210000005fb011001c7000016d1000104300000000102000029000000000112004b000000040b000029000000030c0000290000000203000029000008650000813d000000400100043d00000044021000390000060103000041000000000032043500000024021000390000001b030000390000000000320435000005f4020000410000000000210435000000040210003900000020030000390000000000320435000005b502000041000005b50310009c00000000010280190000004001100210000005fb011001c7000016d1000104300001000000000002000000040100008a0000000001100031000000010200008a000005b703000041000000000221004b00000000020000190000000002032019000005b701100197000005b70410009c0000000003008019000005b701100167000005b70110009c00000000010200190000000001036019000000000101004b000009430000613d000000000100041a000005b8031001970000000001000411000000000213004b0000091c0000c13d000100000003001d0000060601000041000000000010043900000000010004100000000400100443000005b5010000410000000002000414000005b50320009c0000000001024019000000c001100210000005fe011001c70000800a0200003916cf16ca0000040f0000000102200190000009430000613d000000000301043b00000000010004140000000105000029000000040250008c000009270000c13d000000010200003900000001010000310000093d0000013d000000400200043d000005ea03000041000000000032043500000004032000390000000000130435000005b501000041000005b50320009c00000000010240190000004001100210000005eb011001c7000016d100010430000005b502000041000005b50410009c0000000001028019000000c001100210000000000203004b000009340000c13d000000000205001916cf16c50000040f00030000000103550000006001100270000105b50010019d000005b5011001970000093d0000013d000005ba011001c700008009020000390000000004050019000000000500001916cf16c50000040f00030000000103550000006001100270000105b50010019d000005b501100197000000000301004b000009450000c13d0000000101200190000009430000613d0000000001000019000016d00001042e0000000001000019000016d100010430000005b60310009c000009550000813d0000003f01100039000000200300008a000000000131016f000000400300043d0000000001130019000000000331004b00000000030000190000000103004039000005f10410009c000009550000213d0000000103300190000009550000c13d000000400010043f0000093f0000013d000005f60100004100000000001004350000004101000039000000040010043f000005eb01000041000016d100010430000000040210008a000005b7030000410000003f0420008c00000000040000190000000004032019000005b702200197000000000502004b0000000003008019000005b70220009c00000000020400190000000002036019000000000202004b0000098b0000613d00000002020003670000000403200370000000000403043b0000ffff0340008c0000098b0000213d0000002403200370000000000503043b000005f10350009c0000098b0000213d0000002303500039000005b706000041000000000713004b00000000070000190000000007068019000005b708100197000005b703300197000000000983004b0000000006008019000000000383013f000005b70330009c00000000030700190000000003066019000000000303004b0000098b0000c13d0000000403500039000000000232034f000000000302043b000005f10230009c0000098b0000213d00000024025000390000000005230019000000000115004b0000098b0000213d0000000001040019000000000001042d0000000001000019000016d1000104300000ffff0220018f0000000000200435000000200010043f000005b5010000410000000002000414000005b50320009c0000000001024019000000c001100210000005fc011001c7000080100200003916cf16ca0000040f00000001022001900000099c0000613d000000000101043b000000000001042d0000000001000019000016d10001043000040000000000020000000001000416000000000101004b000009d10000c13d0000000001000031000000040210008a000005b703000041000000400420008c00000000040000190000000004034019000005b702200197000000000502004b000000000300a019000005b70220009c00000000020400190000000002036019000000000202004b000009d10000c13d00000002020003670000000403200370000000000903043b0000ffff0390008c000009d10000213d0000002403200370000000000303043b000005f10430009c000009d10000213d0000002304300039000005b705000041000000000614004b00000000060000190000000006058019000005b707100197000005b704400197000000000874004b0000000005008019000000000474013f000005b70440009c00000000040600190000000004056019000000000404004b000009d10000c13d0000000404300039000000000242034f000000000402043b000005f10240009c000009d10000213d00000024053000390000000002540019000000000112004b000009d30000a13d0000000001000019000016d100010430000000000100041a000005b8021001970000000001000411000000000212004b00000a510000c13d000005f0010000410000000000100439000000000100041200000004001004430000002400000443000005b5010000410000000002000414000005b50320009c0000000001024019000000c001100210000005f9011001c70000800502000039000400000004001d000300000009001d000200000005001d16cf16ca0000040f0000000102200190000009d10000613d000000000101043b000005fd020000410000000000200439000005b801100197000100000001001d0000000400100443000005b5010000410000000002000414000005b50320009c0000000001024019000000c001100210000005fe011001c7000080020200003916cf16ca0000040f0000000204000029000000030300002900000004080000290000000102200190000009d10000613d000000000101043b000000000101004b000009d10000613d000000400900043d0000002401900039000000400200003900000000002104350000060701000041000000000019043500000004019000390000000000310435000000440190003900000000008104350000001f0280018f00000064019000390000000203400367000000050480027200000a180000613d000000000500001900000005065002100000000007610019000000000663034f000000000606043b00000000006704350000000105500039000000000645004b00000a100000413d000000000502004b00000a270000613d0000000504400210000000000343034f00000000044100190000000302200210000000000504043300000000052501cf000000000525022f000000000303043b0000010002200089000000000323022f00000000022301cf000000000252019f00000000002404350000000001810019000000000001043500000000010004140000000102000029000000040320008c00000a490000613d0000001f04800039000000200300008a000000000534016f0000060803000041000006080450009c0000000005038019000005b503000041000005b50490009c0000000004030019000000000409401900000040044002100000006005500210000000000545019f000005b50410009c0000000001038019000000c001100210000000000115019f000005fb01100041000400000009001d16cf16c50000040f000000040900002900000000030100190000006003300270000105b50030019d000005b5043001970003000000010355000000010220019000000a5f0000613d000005b60190009c00000a5c0000413d000005f60100004100000000001004350000004101000039000000040010043f000005eb01000041000016d100010430000000400200043d000005ea03000041000000000032043500000004032000390000000000130435000005b501000041000005b50320009c00000000010240190000004001100210000005eb011001c7000016d100010430000000400090043f0000000001000019000016d00001042e000000400200043d0000001f0340018f000000050440027200000a6c0000613d000000000500001900000005065002100000000007620019000000000661034f000000000606043b00000000006704350000000105500039000000000645004b00000a640000413d000000000503004b00000a7b0000613d0000000504400210000000000141034f00000000044200190000000303300210000000000504043300000000053501cf000000000535022f000000000101043b0000010003300089000000000131022f00000000013101cf000000000151019f0000000000140435000005b5010000410000000103000031000005b50430009c0000000003018019000005b50420009c000000000102401900000040011002100000006002300210000000000112019f000016d100010430000000000403004b00000a8f0000613d000000000400001900000000052400190000000006140019000000000606043300000000006504350000002004400039000000000534004b00000a880000413d00000000012300190000000000010435000000000001042d000005f1022001970000000000200435000000200010043f000005b5010000410000000002000414000005b50320009c0000000001024019000000c001100210000005fc011001c7000080100200003916cf16ca0000040f000000010220019000000aa10000613d000000000101043b000000000001042d0000000001000019000016d1000104300003000000000002000000000201041a000000010320019000000001042002700000007f0540018f000000000604001900000000060560190000001f0460008c00000000040000190000000104002039000000010440018f000000000443004b00000ae60000c13d000000400500043d0000000004650436000000000303004b00000ad20000613d000100000004001d000200000006001d000300000005001d0000000000100435000005b5010000410000000002000414000005b50320009c0000000001024019000000c001100210000005ee011001c7000080100200003916cf16ca0000040f000000010220019000000af20000613d0000000206000029000000000206004b00000000020000190000000305000029000000010700002900000ad80000613d000000000101043b00000000020000190000000003270019000000000401041a000000000043043500000001011000390000002002200039000000000362004b00000aca0000413d00000ad80000013d000001000100008a000000000112016f0000000000140435000000000106004b000000200200003900000000020060190000003f01200039000000200200008a000000000221016f0000000001520019000000000221004b00000000020000190000000102004039000005f10310009c00000aec0000213d000000010220019000000aec0000c13d000000400010043f0000000001050019000000000001042d000005f60100004100000000001004350000002201000039000000040010043f000005eb01000041000016d100010430000005f60100004100000000001004350000004101000039000000040010043f000005eb01000041000016d1000104300000000001000019000016d10001043000000000030104330000000002320436000000000403004b00000b000000613d000000000400001900000000052400190000002004400039000000000614001900000000060604330000000000650435000000000534004b00000af90000413d000000000123001900000000000104350000001f01300039000000200300008a000000000131016f0000000001120019000000000001042d00000020030000390000000004310436000000000302043300000000003404350000004001100039000000000403004b00000b160000613d000000000400001900000000051400190000002004400039000000000624001900000000060604330000000000650435000000000534004b00000b0f0000413d000000000213001900000000000204350000001f02300039000000200300008a000000000232016f0000000001120019000000000001042d00030000000000020000000001000416000000000101004b00000b760000c13d000000040100008a0000000001100031000005b702000041000000200310008c00000000030000190000000003024019000005b701100197000000000401004b000000000200a019000005b70110009c00000000010300190000000001026019000000000101004b00000b760000c13d00000004010000390000000201100367000000000101043b0000ffff0210008c00000b760000213d00000000001004350000000101000039000000200010043f000005b5010000410000000002000414000005b50320009c0000000001024019000000c001100210000005fc011001c7000080100200003916cf16ca0000040f000000010220019000000b760000613d000000000101043b000000000201041a000000010320019000000001042002700000007f0540018f000000000604001900000000060560190000001f0460008c00000000040000190000000104002039000000010440018f000000000443004b00000b540000613d000005f60100004100000000001004350000002201000039000000040010043f000005eb01000041000016d100010430000000400500043d0000000004650436000000000303004b00000b780000613d000100000004001d000200000006001d000300000005001d0000000000100435000005b5010000410000000002000414000005b50320009c0000000001024019000000c001100210000005ee011001c7000080100200003916cf16ca0000040f000000010220019000000b760000613d0000000206000029000000000206004b00000000020000190000000305000029000000010700002900000b7e0000613d000000000101043b00000000020000190000000003270019000000000401041a000000000043043500000001011000390000002002200039000000000362004b00000b6e0000413d00000b7e0000013d0000000001000019000016d100010430000001000100008a000000000112016f0000000000140435000000000106004b000000200200003900000000020060190000003f01200039000000200200008a000000000221016f0000000001520019000000000221004b00000000020000190000000102004039000005f10310009c00000b9e0000213d000000010220019000000b9e0000c13d000000400010043f0000000002050433000000000302004b00000ba40000c13d00000044021000390000060903000041000000000032043500000024021000390000001d030000390000000000320435000005f4020000410000000000210435000000040210003900000020030000390000000000320435000005b502000041000005b50310009c00000000010280190000004001100210000005fb011001c7000016d100010430000005f60100004100000000001004350000004101000039000000040010043f000005eb01000041000016d100010430000000130120008c00000bac0000213d000005f60100004100000000001004350000001101000039000000040010043f000005eb01000041000016d100010430000000140220008a000000000105001916cf12d80000040f0000000002010019000000400100043d000300000001001d16cf0b070000040f00000003040000290000000001410049000005b502000041000005b50310009c0000000001028019000005b50340009c000000000204401900000040022002100000006001100210000000000121019f000016d00001042e000b0000000000020000000001000416000000000101004b00000bd50000c13d0000000001000031000000040210008a000005b703000041000000400420008c00000000040000190000000004034019000005b702200197000000000502004b000000000300a019000005b70220009c00000000020400190000000002036019000000000202004b00000bd50000c13d00000002020003670000000403200370000000000903043b0000ffff0390008c00000bd70000a13d0000000001000019000016d1000104300000002403200370000000000303043b000005f10430009c00000bd50000213d0000002304300039000005b705000041000000000614004b00000000060000190000000006058019000005b707100197000005b704400197000000000874004b0000000005008019000000000474013f000005b70440009c00000000040600190000000004056019000000000404004b00000bd50000c13d0000000404300039000000000442034f000000000504043b000005f10450009c00000bd50000213d00000024083000390000000003850019000000000113004b00000bd50000213d000000400a00043d000000000100041a000005b8031001970000000001000411000000000313004b00000c4f0000c13d000000000182034f0000001f0650018f000000200ba00039000000050750027200000c070000613d0000000002000019000000050320021000000000043b0019000000000331034f000000000303043b00000000003404350000000102200039000000000372004b00000bff0000413d000000000206004b00000c160000613d0000000502700210000000000121034f00000000022b00190000000303600210000000000402043300000000043401cf000000000434022f000000000101043b0000010003300089000000000131022f00000000013101cf000000000141019f000000000012043500000000015b0019000000000200041000000060022002100000000000210435000000140150003900000000001a04350000005301500039000000200400008a000000000141016f00000000011a00190000000002a1004b00000000020000190000000102004039000005f10310009c00000c490000213d000000010220019000000c490000c13d00050000000b001d00040000000a001d000800000004001d000600000007001d000700000006001d000000400010043f00000000009004350000000101000039000000200010043f000005b5010000410000000002000414000005b50320009c0000000001024019000000c001100210000005fc011001c70000801002000039000b00000005001d000a00000009001d000900000008001d16cf16ca0000040f00000009050000290000000a040000290000000b07000029000000010220019000000bd50000613d000000000601043b0000000401000029000000000c010433000005f101c0009c00000007080000290000000609000029000000080a000029000000050b00002900000c590000a13d000005f60100004100000000001004350000004101000039000000040010043f000005eb01000041000016d100010430000005ea0200004100000000002a04350000000402a000390000000000120435000005b501000041000005b502a0009c00000000010a40190000004001100210000005eb011001c7000016d100010430000000000106041a000000010210019000000001011002700000007f0310018f000000000301c0190000001f0130008c00000000010000190000000101002039000000010110018f000000000112004b00000c6a0000613d000005f60100004100000000001004350000002201000039000000040010043f000005eb01000041000016d100010430000000200130008c00000c930000413d000100000003001d00020000000c001d000300000006001d0000000000600435000005b5010000410000000002000414000005b50320009c0000000001024019000000c001100210000005ee011001c7000080100200003916cf16ca0000040f00000009050000290000000a040000290000000b07000029000000010220019000000bd50000613d000000020c0000290000001f02c0003900000005022002700000002003c0008c0000000002004019000000000301043b00000001010000290000001f01100039000000050110027000000000011300190000000002230019000000000312004b00000007080000290000000609000029000000080a0000290000000306000029000000050b00002900000c930000813d000000000002041b0000000102200039000000000312004b00000c8f0000413d0000001f01c0008c00000cc80000a13d00020000000c001d000300000006001d0000000000600435000005b5010000410000000002000414000005b50320009c0000000001024019000000c001100210000005ee011001c7000080100200003916cf16ca0000040f000000010220019000000bd50000613d0000000802000029000000020700002900000000032701700000002002000039000000000101043b000000040600002900000cb30000613d0000002002000039000000000400001900000000056200190000000005050433000000000051041b000000200220003900000001011000390000002004400039000000000534004b00000cab0000413d000000000373004b00000cbe0000813d0000000303700210000000f80330018f000000010400008a000000000334022f000000000343013f00000000026200190000000002020433000000000232016f000000000021041b000000010170021000000001011001bf0000000b070000290000000a04000029000000070800002900000006090000290000000905000029000000080a000029000000030600002900000cd30000013d00000000010c004b000000000100001900000ccc0000613d00000000010b04330000000302c00210000000010300008a000000000223022f000000000232013f000000000121016f0000000102c00210000000000121019f000000000016041b000000400100043d00000020021000390000004003000039000000000032043500000000004104350000004002100039000000000072043500000060021000390000000203500367000000000409004b00000ce80000613d000000000400001900000005054002100000000006520019000000000553034f000000000505043b00000000005604350000000104400039000000000594004b00000ce00000413d000000000408004b00000cf70000613d0000000504900210000000000343034f00000000044200190000000305800210000000000604043300000000065601cf000000000656022f000000000303043b0000010005500089000000000353022f00000000035301cf000000000363019f0000000000340435000000000272001900000000000204350000007f027000390000000002a2016f000005b503000041000005b50410009c00000000010380190000004001100210000005b50420009c00000000020380190000006002200210000000000112019f0000000002000414000005b50420009c0000000002038019000000c002200210000000000112019f000005ba011001c70000800d0200003900000001030000390000060a0400004116cf16c50000040f000000010120019000000bd50000613d0000000001000019000016d00001042e00050000000000020000000001000416000000000101004b00000d480000c13d0000000001000031000000040210008a000005b703000041000000800420008c00000000040000190000000004034019000005b702200197000000000502004b000000000300a019000005b70220009c00000000020400190000000002036019000000000202004b00000d480000c13d00000002020003670000000403200370000000000903043b0000ffff0390008c00000d480000213d0000002403200370000000000a03043b0000ffff03a0008c00000d480000213d0000006403200370000000000303043b000005f10430009c00000d480000213d0000002304300039000005b705000041000000000614004b00000000060000190000000006058019000005b707100197000005b704400197000000000874004b0000000005008019000000000474013f000005b70440009c00000000040600190000000004056019000000000404004b00000d480000c13d0000000404300039000000000242034f000000000402043b000005f10240009c00000d480000213d00000024053000390000000002540019000000000112004b00000d4a0000a13d0000000001000019000016d100010430000000000100041a000005b8021001970000000001000411000000000212004b00000dd10000c13d000005f0010000410000000000100439000000000100041200000004001004430000002400000443000005b5010000410000000002000414000005b50320009c0000000001024019000000c001100210000005f9011001c70000800502000039000500000004001d000400000009001d00030000000a001d000200000005001d16cf16ca0000040f000000010220019000000d480000613d000000000101043b000005fd020000410000000000200439000005b801100197000100000001001d0000000400100443000005b5010000410000000002000414000005b50320009c0000000001024019000000c001100210000005fe011001c7000080020200003916cf16ca0000040f0000000205000029000000030400002900000004030000290000000508000029000000010220019000000d480000613d000000000101043b000000000101004b00000d480000613d000000400900043d000000240190003900000000004104350000060b0100004100000000001904350000000401900039000000000031043500000044010000390000000201100367000000000101043b00000064029000390000008003000039000000000032043500000044029000390000000000120435000000840190003900000000008104350000001f0280018f000000a4019000390000000203500367000000050480027200000d980000613d000000000500001900000005065002100000000007610019000000000663034f000000000606043b00000000006704350000000105500039000000000645004b00000d900000413d000000000502004b00000da70000613d0000000504400210000000000343034f00000000044100190000000302200210000000000504043300000000052501cf000000000525022f000000000303043b0000010002200089000000000323022f00000000022301cf000000000252019f00000000002404350000000001810019000000000001043500000000010004140000000102000029000000040320008c00000dc90000613d0000001f04800039000000200300008a000000000534016f0000060c030000410000060c0450009c0000000005038019000005b503000041000005b50490009c0000000004030019000000000409401900000040044002100000006005500210000000000545019f000005b50410009c0000000001038019000000c001100210000000000115019f0000060d01100041000500000009001d16cf16c50000040f000000050900002900000000030100190000006003300270000105b50030019d000005b5043001970003000000010355000000010220019000000ddf0000613d000005b60190009c00000ddc0000413d000005f60100004100000000001004350000004101000039000000040010043f000005eb01000041000016d100010430000000400200043d000005ea03000041000000000032043500000004032000390000000000130435000005b501000041000005b50320009c00000000010240190000004001100210000005eb011001c7000016d100010430000000400090043f0000000001000019000016d00001042e000000400200043d0000001f0340018f000000050440027200000dec0000613d000000000500001900000005065002100000000007620019000000000661034f000000000606043b00000000006704350000000105500039000000000645004b00000de40000413d000000000503004b00000dfb0000613d0000000504400210000000000141034f00000000044200190000000303300210000000000504043300000000053501cf000000000535022f000000000101043b0000010003300089000000000131022f00000000013101cf000000000151019f0000000000140435000005b5010000410000000103000031000005b50430009c0000000003018019000005b50420009c000000000102401900000040011002100000006002300210000000000112019f000016d10001043000110000000000020000000001000031000000040210008a000005b7030000410000007f0420008c00000000040000190000000004032019000005b702200197000000000502004b0000000003008019000005b70220009c00000000020400190000000002036019000000000202004b00000f840000613d00000002020003670000000403200370000000000b03043b0000ffff03b0008c00000f840000213d0000002403200370000000000303043b000005f10430009c00000f840000213d0000002304300039000005b705000041000000000614004b00000000060000190000000006058019000005b707100197000005b704400197000000000874004b0000000005008019000000000474013f000005b70440009c00000000040600190000000004056019000000000404004b00000f840000c13d0000000404300039000000000442034f000000000904043b000005f10490009c00000f840000213d000000240c300039000000000dc9001900000000031d004b00000f840000213d0000004403200370000000000a03043b000005f103a0009c00000f840000213d0000006403200370000000000303043b000005f10430009c00000f840000213d0000002304300039000005b705000041000000000614004b00000000060000190000000006058019000005b707100197000005b704400197000000000874004b0000000005008019000000000474013f000005b70440009c00000000040600190000000004056019000000000404004b00000f840000c13d0000000404300039000000000242034f000000000402043b000005f10240009c00000f840000213d0000002402300039001000000002001d0000000002240019001100000002001d000000000112004b00000f840000213d0000000000b004350000000501000039000a00000001001d000000200010043f000005b5010000410000000002000414000005b50320009c0000000001024019000000c001100210000005fc011001c70000801002000039000e00000009001d000d0000000a001d000b0000000b001d000f0000000c001d000c00000004001d00090000000d001d16cf16ca0000040f0000000f030000290000000e07000029000000010220019000000f840000613d000000400200043d0000001f0870018f0000000203300367000000000101043b000000050970027200000e7c0000613d000000000400001900000005054002100000000006520019000000000553034f000000000505043b00000000005604350000000104400039000000000594004b00000e740000413d000000000408004b00000e8b0000613d0000000504900210000000000343034f00000000044200190000000305800210000000000604043300000000065601cf000000000656022f000000000303043b0000010005500089000000000353022f00000000035301cf000000000363019f0000000000340435000700000009001d000800000008001d000000000372001900000000001304350000060e010000410000060e0370009c0000000001074019000005b5030000410000000004000414000005b50540009c0000000004038019000005b50520009c000000000203801900000040022002100000006001100210000005ed01100041000600000001001d000000000112019f000000c002400210000000000112019f000005ba011001c7000080100200003916cf16ca0000040f00000001022001900000000d0200002900000f840000613d000000000101043b0000000000200435000000200010043f000005b5010000410000000002000414000005b50320009c0000000001024019000000c001100210000005fc011001c7000080100200003916cf16ca0000040f0000000c05000029000000010220019000000f840000613d000000000101043b000000000601041a000000000106004b00000ecc0000c13d000000400100043d000000640210003900000612030000410000000000320435000000440210003900000613030000410000000000320435000000240210003900000023030000390000000000320435000005f4020000410000000000210435000000040210003900000020030000390000000000320435000005b502000041000005b50310009c00000000010280190000004001100210000005f5011001c7000016d1000104300000003f01500039000000200700008a000000000871016f000000400100043d0000000002810019000000000312004b00000000030000190000000103004039000005f10420009c0000103d0000213d00000001033001900000103d0000c13d000200000008001d000300000007001d000400000006001d0000000003000031000000400020043f00000000025104360000001104000029000000000334004b00000f840000213d0000001f0350018f000500000003001d00000010030000290000000203300367000000050750027200000ef00000613d000000000400001900000005054002100000000006520019000000000553034f000000000505043b00000000005604350000000104400039000000000574004b00000ee80000413d000100000007001d0000000504000029000000000404004b00000f030000613d00000001040000290000000504400210000000000343034f000000000442001900000005050000290000000305500210000000000604043300000000065601cf000000000656022f000000000303043b0000010005500089000000000353022f00000000035301cf000000000363019f00000000003404350000000c0300002900000000033200190000000000030435000005b503000041000005b50420009c000000000203801900000040022002100000000001010433000005b50410009c00000000010380190000006001100210000000000121019f0000000002000414000005b50420009c0000000002038019000000c002200210000000000112019f000005ba011001c7000080100200003916cf16ca0000040f000000010220019000000f840000613d000000000101043b0000000402000029000000000121004b00000f860000c13d0000000b0100002900000000001004350000000a01000029000000200010043f000005b5010000410000000002000414000005b50320009c0000000001024019000000c001100210000005fc011001c7000080100200003916cf16ca0000040f00000001022001900000000f0300002900000f840000613d000000400200043d0000000203300367000000000101043b0000000707000029000000000407004b00000f3b0000613d000000000400001900000005054002100000000006520019000000000553034f000000000505043b00000000005604350000000104400039000000000574004b00000f330000413d0000000804000029000000000404004b00000f4d0000613d00000007040000290000000504400210000000000343034f000000000442001900000008050000290000000305500210000000000604043300000000065601cf000000000656022f000000000303043b0000010005500089000000000353022f00000000035301cf000000000363019f00000000003404350000000e0300002900000000033200190000000000130435000005b501000041000005b50320009c000000000201801900000040022002100000000603000029000000000232019f0000000003000414000005b50430009c0000000001034019000000c001100210000000000121019f000005ba011001c7000080100200003916cf16ca0000040f00000001022001900000000d0200002900000f840000613d000000000101043b0000000000200435000000200010043f000005b5010000410000000002000414000005b50320009c0000000001024019000000c001100210000005fc011001c7000080100200003916cf16ca0000040f00000009070000290000000f060000290000000e05000029000000010220019000000f840000613d000000000101043b000000000001041b0000003f015000390000000302000029000000000221016f000000400100043d0000000002210019000000000312004b00000000030000190000000103004039000005f10420009c0000103d0000213d00000001033001900000103d0000c13d0000000003000031000000400020043f0000000001510436000000000237004b00000f9b0000a13d0000000001000019000016d100010430000000400100043d00000064021000390000060f030000410000000000320435000000440210003900000610030000410000000000320435000000240210003900000021030000390000000000320435000005f4020000410000000000210435000000040210003900000020030000390000000000320435000005b502000041000005b50310009c00000000010280190000004001100210000005f5011001c7000016d10001043000000002026003670000000706000029000000000306004b00000fa80000613d000000000300001900000005043002100000000005410019000000000442034f000000000404043b00000000004504350000000103300039000000000463004b00000fa00000413d0000000803000029000000000303004b00000fba0000613d00000007030000290000000503300210000000000232034f000000000331001900000008040000290000000304400210000000000503043300000000054501cf000000000545022f000000000202043b0000010004400089000000000242022f00000000024201cf000000000252019f00000000002304350000000e0200002900000000012100190000000000010435000000400100043d00000002020000290000000002210019000000000312004b00000000030000190000000103004039000005f10420009c0000000c040000290000103d0000213d00000001033001900000103d0000c13d0000000003000031000000400020043f00000000014104360000001102000029000000000232004b00000f840000213d000000100200002900000002022003670000000106000029000000000306004b00000fdc0000613d000000000300001900000005043002100000000005410019000000000442034f000000000404043b00000000004504350000000103300039000000000463004b00000fd40000413d0000000503000029000000000303004b00000fee0000613d00000001030000290000000503300210000000000232034f000000000331001900000005040000290000000304400210000000000503043300000000054501cf000000000545022f000000000202043b0000010004400089000000000242022f00000000024201cf000000000252019f00000000002304350000000c0200002900000000012100190000000000010435000000400100043d0000002002100039000000800300003900000000003204350000000b02000029000000000021043500000080021000390000000e030000290000000000320435000000a0021000390000000f0300002900000002033003670000000707000029000000000407004b000010090000613d000000000400001900000005054002100000000006520019000000000553034f000000000505043b00000000005604350000000104400039000000000574004b000010010000413d0000000804000029000000000404004b0000101b0000613d00000007040000290000000504400210000000000343034f000000000442001900000008050000290000000305500210000000000604043300000000065601cf000000000656022f000000000303043b0000010005500089000000000353022f00000000035301cf000000000363019f00000000003404350000000e030000290000000002320019000000000002043500000060021000390000000404000029000000000042043500000040021000390000000d040000290000000000420435000000bf023000390000000303000029000000000232016f000005b503000041000005b50410009c00000000010380190000004001100210000005b50420009c00000000020380190000006002200210000000000112019f0000000002000414000005b50420009c0000000002038019000000c002200210000000000112019f000005ba011001c70000800d020000390000000103000039000006110400004116cf16c50000040f000000010120019000000f840000613d0000000001000019000016d00001042e000005f60100004100000000001004350000004101000039000000040010043f000005eb01000041000016d10001043000030000000000020000000001000416000000000101004b0000105e0000c13d000000040100008a0000000001100031000005b702000041000000600310008c00000000030000190000000003024019000005b701100197000000000401004b000000000200a019000005b70110009c00000000010300190000000001026019000000000101004b0000105e0000c13d00000002010003670000000402100370000000000302043b0000ffff0230008c0000105e0000213d0000002402100370000000000402043b0000ffff0240008c000010600000a13d0000000001000019000016d1000104300000004401100370000000000501043b000000000100041a000005b8021001970000000001000411000000000212004b0000107b0000c13d000000000105004b000010860000c13d000000400100043d000000440210003900000616030000410000000000320435000000240210003900000015030000390000000000320435000005f4020000410000000000210435000000040210003900000020030000390000000000320435000005b502000041000005b50310009c00000000010280190000004001100210000005fb011001c7000016d100010430000000400200043d000005ea03000041000000000032043500000004032000390000000000130435000005b501000041000005b50320009c00000000010240190000004001100210000005eb011001c7000016d100010430000100000005001d00000000003004350000000201000039000000200010043f000005b5010000410000000002000414000200000003001d000005b50320009c0000000001024019000000c001100210000005fc011001c70000801002000039000300000004001d16cf16ca0000040f000000030300002900000001022001900000105e0000613d000000000101043b0000000000300435000000200010043f000005b5010000410000000002000414000005b50320009c0000000001024019000000c001100210000005fc011001c7000080100200003916cf16ca0000040f0000000304000029000000020300002900000001022001900000105e0000613d000000000101043b0000000105000029000000000051041b000000400100043d00000040021000390000000000520435000000200210003900000000004204350000000000310435000005b5020000410000000003000414000005b50430009c0000000003028019000005b50410009c00000000010280190000004001100210000000c002300210000000000112019f00000614011001c70000800d020000390000000103000039000006150400004116cf16c50000040f00000001012001900000105e0000613d0000000001000019000016d00001042e00050000000000020000000001000416000000000101004b000010d80000c13d0000000001000031000000040210008a000005b703000041000000400420008c00000000040000190000000004034019000005b702200197000000000502004b000000000300a019000005b70220009c00000000020400190000000002036019000000000202004b000010d80000c13d00000002020003670000000403200370000000000903043b0000ffff0390008c000010da0000a13d0000000001000019000016d1000104300000002403200370000000000303043b000005f10430009c000010d80000213d0000002304300039000005b705000041000000000614004b00000000060000190000000006058019000005b707100197000005b704400197000000000874004b0000000005008019000000000474013f000005b70440009c00000000040600190000000004056019000000000404004b000010d80000c13d0000000404300039000000000242034f000000000402043b000005f10240009c000010d80000213d00000024053000390000000002540019000000000112004b000010d80000213d000000000100041a000005b8021001970000000001000411000000000212004b000011200000c13d00000000009004350000000101000039000000200010043f000005b5010000410000000002000414000005b50320009c0000000001024019000000c001100210000005fc011001c70000801002000039000500000004001d000400000009001d000300000005001d16cf16ca0000040f0000000306000029000000040500002900000005090000290000000102200190000010d80000613d000000000401043b000000000104041a000000010210019000000001011002700000007f0310018f000000000301c0190000001f0130008c00000000010000190000000101002039000000010110018f000000000112004b0000112b0000613d000005f60100004100000000001004350000002201000039000000040010043f000005eb01000041000016d100010430000000400200043d000005ea03000041000000000032043500000004032000390000000000130435000005b501000041000005b50320009c00000000010240190000004001100210000005eb011001c7000016d100010430000000200130008c0000114e0000413d000100000003001d000200000004001d0000000000400435000005b5010000410000000002000414000005b50320009c0000000001024019000000c001100210000005ee011001c7000080100200003916cf16ca0000040f0000000306000029000000040500002900000005090000290000000102200190000010d80000613d0000001f029000390000000502200270000000200390008c0000000002004019000000000301043b00000001010000290000001f01100039000000050110027000000000011300190000000002230019000000000312004b00000002040000290000114e0000813d000000000002041b0000000102200039000000000312004b0000114a0000413d0000001f0190008c0000117d0000a13d000200000004001d0000000000400435000005b5010000410000000002000414000005b50320009c0000000001024019000000c001100210000005ee011001c7000080100200003916cf16ca0000040f0000000306000029000000040500002900000005090000290000000102200190000010d80000613d000000200200008a0000000003290170000000000101043b00000000020000190000116d0000613d000000000200001900000000046200190000000204400367000000000404043b000000000041041b00000001011000390000002002200039000000000432004b000011650000413d000000000393004b000011790000813d0000000303900210000000f80330018f000000010400008a000000000334022f000000000343013f00000000026200190000000202200367000000000202043b000000000232016f000000000021041b000000010190021000000001011001bf0000000204000029000011890000013d000000000109004b0000000001000019000011820000613d0000000201600367000000000101043b0000000302900210000000010300008a000000000223022f000000000232013f000000000121016f0000000102900210000000000121019f000000000014041b000000400100043d0000002002100039000000400300003900000000003204350000000000510435000000400210003900000000009204350000001f0390018f0000006002100039000000020460036700000005059002720000119f0000613d000000000600001900000005076002100000000008720019000000000774034f000000000707043b00000000007804350000000106600039000000000756004b000011970000413d000000000603004b000011ae0000613d0000000505500210000000000454034f00000000055200190000000303300210000000000605043300000000063601cf000000000636022f000000000404043b0000010003300089000000000434022f00000000033401cf000000000363019f0000000000350435000000000292001900000000000204350000007f02900039000000200300008a000000000232016f000005b503000041000005b50410009c00000000010380190000004001100210000005b50420009c00000000020380190000006002200210000000000112019f0000000002000414000005b50420009c0000000002038019000000c002200210000000000112019f000005ba011001c70000800d020000390000000103000039000006170400004116cf16c50000040f0000000101200190000010d80000613d0000000001000019000016d00001042e00010000000000020000000001000416000000000101004b000012a40000c13d000000040100008a0000000001100031000005b702000041000000800310008c00000000030000190000000003024019000005b701100197000000000401004b000000000200a019000005b70110009c00000000010300190000000001026019000000000101004b000012a40000c13d00000002030003670000000401300370000000000101043b0000ffff0210008c000012a40000213d0000002402300370000000000202043b0000ffff0420008c000012a40000213d0000004403300370000000000303043b000005b80330009c000012a40000213d000000400500043d00000044035000390000000004000410000000000043043500000024035000390000000000230435000006180200004100000000002504350000000402500039000000000012043500000064010000390000000201100367000000000101043b000100000005001d00000064025000390000000000120435000005f0010000410000000000100439000000000100041200000004001004430000002400000443000005b5010000410000000002000414000005b50320009c0000000001024019000000c001100210000005f9011001c7000080050200003916cf16ca0000040f0000000102200190000012a40000613d000000000201043b0000000001000414000005b802200197000000040320008c000012100000c13d000000030100036700000001030000310000000108000029000012230000013d000005b503000041000005b50410009c00000000010380190000000105000029000005b50450009c00000000030540190000004003300210000000c001100210000000000131019f000005f5011001c716cf16ca0000040f000000010800002900000000030100190000006003300270000105b50030019d000005b50330019700030000000103550000000102200190000012790000613d0000001f0230018f00000005043002720000122f0000613d000000000500001900000005065002100000000007680019000000000661034f000000000606043b00000000006704350000000105500039000000000645004b000012270000413d000000000502004b0000123e0000613d0000000504400210000000000141034f00000000044800190000000302200210000000000504043300000000052501cf000000000525022f000000000101043b0000010002200089000000000121022f00000000012101cf000000000151019f00000000001404350000001f02300039000000200100008a000000000412016f0000000002840019000000000442004b00000000040000190000000104004039000005f10520009c000012730000213d0000000104400190000012730000c13d000005b704000041000000200530008c00000000050000190000000005044019000005b706300197000000000706004b000000000400a019000005b70660009c000000000405c019000000400020043f000000000404004b000012a40000c13d00000001040000290000000004040433000005f10540009c000012a40000213d0000000106000029000000000563001900000000036400190000001f04300039000005b706000041000000000754004b00000000070000190000000007068019000005b704400197000005b708500197000000000984004b0000000006008019000000000484013f000005b70440009c00000000040700190000000004066019000000000404004b000012a40000c13d0000000043030434000005f10630009c000012730000213d0000003f06300039000000000116016f0000000001210019000005f10610009c0000129f0000a13d000005f60100004100000000001004350000004101000039000000040010043f000005eb01000041000016d100010430000000400200043d0000001f0430018f0000000503300272000012860000613d000000000500001900000005065002100000000007620019000000000661034f000000000606043b00000000006704350000000105500039000000000635004b0000127e0000413d000000000504004b000012950000613d0000000503300210000000000131034f00000000033200190000000304400210000000000503043300000000054501cf000000000545022f000000000101043b0000010004400089000000000141022f00000000014101cf000000000151019f0000000000130435000005b5010000410000000103000031000005b50430009c0000000003018019000005b50420009c000000000102401900000040011002100000006002300210000000000112019f000016d100010430000000400010043f00000000013204360000000006430019000000000556004b000012a60000a13d0000000001000019000016d100010430000000000503004b000012b00000613d000000000500001900000000061500190000000007450019000000000707043300000000007604350000002005500039000000000635004b000012a90000413d00000000011300190000000000010435000000400100043d000100000001001d16cf0b070000040f00000001040000290000000001410049000005b502000041000005b50310009c0000000001028019000005b50340009c000000000204401900000040022002100000006001100210000000000121019f000016d00001042e000000000101004b000012c30000613d000000000001042d000000400100043d00000064021000390000061903000041000000000032043500000044021000390000061a030000410000000000320435000000240210003900000026030000390000000000320435000005f4020000410000000000210435000000040210003900000020030000390000000000320435000005b502000041000005b50310009c00000000010280190000004001100210000005f5011001c7000016d10001043000000000030100190000001f0100008a000000000112004b000012f70000813d0000000001030433000000000121004b000012fd0000413d000000400100043d000000000402004b000012f40000613d0000001f0420019000000000050000190000002005006039000000000645019f00000000041600190000000005240019000000000754004b000012ef0000813d000000000336001900000000360304340000000004640436000000000654004b000012eb0000413d00000000002104350000001f02400039000000200300008a000000000232016f000012f50000013d0000000002010436000000400020043f000000000001042d000005f60100004100000000001004350000001101000039000000040010043f000005eb01000041000016d100010430000000400100043d00000044021000390000061b030000410000000000320435000000240210003900000011030000390000000000320435000005f4020000410000000000210435000000040210003900000020030000390000000000320435000005b502000041000005b50310009c00000000010280190000004001100210000005fb011001c7000016d1000104300005000000000002000000400800043d0000004404800039000000a00500003900000000005404350000002404800039000000000500041000000000005404350000061c040000410000000004480436000400000004001d0000ffff0110018f000000040480003900000000001404350000000004020433000000a4018000390000000000410435000000c401800039000000000504004b0000132b0000613d000000000500001900000000061500190000002005500039000000000725001900000000070704330000000000760435000000000645004b000013240000413d000000000214001900000000000204350000001f02400039000000200400008a000300000004001d000000000242016f000000c00420003900000084058000390000000000450435000500000008001d00000064048000390000000000040435000000000112001900000000060304330000000005610436000000000106004b000013440000613d000000000100001900000000025100190000002001100039000000000431001900000000040404330000000000420435000000000261004b0000133d0000413d000200000005001d000100000006001d00000000015600190000000000010435000005f0010000410000000000100439000000000100041200000004001004430000002400000443000005b5010000410000000002000414000005b50320009c0000000001024019000000c001100210000005f9011001c7000080050200003916cf16ca0000040f0000000102200190000000050a000029000013ae0000613d000000000201043b0000000001000414000005b802200197000000040320008c000013620000c13d0000000103000031000000400130008c000000400400003900000000040340190000139d0000013d00000001030000290000001f033000390000000304000029000000000343016f00000002040000290000000004a400490000000003340019000005b504000041000005b505a0009c000000000504001900000000050a40190000004005500210000005b50630009c00000000030480190000006003300210000000000353019f000005b50510009c0000000001048019000000c001100210000000000131019f16cf16ca0000040f000000050a00002900000000030100190000006003300270000005b503300197000000400430008c000000400400003900000000040340190000001f0540018f00000005064002720000138a0000613d0000000007000019000000050870021000000000098a0019000000000881034f000000000808043b00000000008904350000000107700039000000000867004b000013820000413d000000000705004b000013990000613d0000000506600210000000000761034f00000000066a00190000000305500210000000000806043300000000085801cf000000000858022f000000000707043b0000010005500089000000000757022f00000000055701cf000000000585019f0000000000560435000100000003001f00030000000103550000000102200190000013b60000613d0000001f01400039000000e00210018f0000000001a20019000000000221004b00000000020000190000000102004039000005f10410009c000013b00000213d0000000102200190000013b00000c13d000000400010043f000000400130008c000013ae0000413d00000000010a043300000004020000290000000002020433000000000001042d0000000001000019000016d100010430000005f60100004100000000001004350000004101000039000000040010043f000005eb01000041000016d100010430000000400200043d0000001f0430018f0000000503300272000013c30000613d000000000500001900000005065002100000000007620019000000000661034f000000000606043b00000000006704350000000105500039000000000635004b000013bb0000413d000000000504004b000013d20000613d0000000503300210000000000131034f00000000033200190000000304400210000000000503043300000000054501cf000000000545022f000000000101043b0000010004400089000000000141022f00000000014101cf000000000151019f0000000000130435000005b5010000410000000103000031000005b50430009c0000000003018019000005b50420009c000000000102401900000040011002100000006002300210000000000112019f000016d100010430000000000101004b000013df0000613d000000000001042d000000400100043d00000044021000390000061d030000410000000000320435000000240210003900000016030000390000000000320435000005f4020000410000000000210435000000040210003900000020030000390000000000320435000005b502000041000005b50310009c00000000010280190000004001100210000005fb011001c7000016d1000104300007000000000002000100000004001d000400000003001d000700000002001d0000ffff0110018f000600000001001d00000000001004350000000101000039000000200010043f000005b5010000410000000002000414000005b50320009c0000000001024019000000c001100210000005fc011001c7000080100200003916cf16ca0000040f0000000102200190000014f80000613d000000000101043b000000000201041a000000010320019000000001042002700000007f0540018f000000000504c0190000001f0450008c00000000040000190000000104002039000000010440018f000000000443004b000015000000c13d000000400600043d0000000004560436000000000303004b000500000006001d000014330000613d000200000004001d000300000005001d0000000000100435000005b5010000410000000002000414000005b50320009c0000000001024019000000c001100210000005ee011001c7000080100200003916cf16ca0000040f0000000102200190000014f80000613d0000000307000029000000000207004b00000000020000190000000705000029000000050600002900000002080000290000143a0000613d000000000101043b00000000020000190000000003280019000000000401041a000000000043043500000001011000390000002002200039000000000372004b0000142b0000413d0000143a0000013d000001000100008a000000000112016f0000000000140435000000000105004b0000002002000039000000000200601900000007050000290000003f01200039000000200400008a000000000241016f0000000001620019000000000221004b00000000020000190000000102004039000005f10310009c000014fa0000213d0000000102200190000014fa0000c13d000200000004001d000000400010043f0000000002060433000000000202004b000015060000613d0000000001050433000300000001001d000000060100002900000000001004350000000301000039000000200010043f000005b5010000410000000002000414000005b50320009c0000000001024019000000c001100210000005fc011001c7000080100200003916cf16ca0000040f0000000102200190000014f80000613d000000000101043b000000000101041a000000000201004b00002710010060390000000302000029000000000121004b0000151a0000413d000005f0010000410000000000100439000000000100041200000004001004430000002400000443000005b5010000410000000002000414000005b50320009c0000000001024019000000c001100210000005f9011001c7000080050200003916cf16ca0000040f0000000102200190000014f80000613d000000000101043b000005fd020000410000000000200439000005b801100197000300000001001d0000000400100443000005b5010000410000000002000414000005b50320009c0000000001024019000000c001100210000005fe011001c7000080020200003916cf16ca0000040f0000000102200190000014f80000613d000000000101043b000000000101004b000014f80000613d000000400900043d0000002401900039000000c00200003900000000002104350000061e01000041000000000019043500000004019000390000000602000029000000000021043500000005070000290000000002070433000000c4039000390000000000230435000000e403900039000000000402004b0000149b0000613d000000000400001900000000053400190000002004400039000000000674001900000000060604330000000000650435000000000524004b000014940000413d000000000432001900000000000404350000001f022000390000000208000029000000000282016f0000000002320019000000000312004900000044049000390000000000340435000000070700002900000000030704330000000002320436000000000403004b000014b10000613d000000000400001900000000052400190000002004400039000000000674001900000000060604330000000000650435000000000534004b000014aa0000413d000000000423001900000000000404350000001f03300039000000000383016f00000000032300190000000001130049000000a40290003900000000001204350000008401900039000000000001043500000064019000390000000000010435000000040600002900000000020604330000000001230436000000000302004b000014ca0000613d000000000300001900000000041300190000002003300039000000000563001900000000050504330000000000540435000000000423004b000014c30000413d0000000003120019000000000003043500000000030004140000000304000029000000040540008c000014f40000613d0000001f02200039000000000282016f00000000019100490000000001210019000005b502000041000005b50510009c00000000010280190000006001100210000005b50590009c000700000009001d000000000502001900000000050940190000004005500210000000000151019f000005b50530009c0000000002034019000000c002200210000000000112019f0000000103000029000000000203004b000014ea0000613d000005ba011001c70000800902000039000000000500001916cf16c50000040f000014ec0000013d000000000204001916cf16c50000040f000300000001035500000000030100190000006003300270000105b50030019d000005b504300197000000010220019000000007090000290000152b0000613d000005f10190009c000014fa0000213d000000400090043f000000000001042d0000000001000019000016d100010430000005f60100004100000000001004350000004101000039000000040010043f000005eb01000041000016d100010430000005f60100004100000000001004350000002201000039000000040010043f000005eb01000041000016d100010430000000640210003900000620030000410000000000320435000000440210003900000621030000410000000000320435000000240210003900000030030000390000000000320435000005f4020000410000000000210435000000040210003900000020030000390000000000320435000005b502000041000005b50310009c00000000010280190000004001100210000005f5011001c7000016d100010430000000400100043d00000044021000390000061f030000410000000000320435000005f402000041000000000021043500000024021000390000002003000039000000000032043500000004021000390000000000320435000005b502000041000005b50310009c00000000010280190000004001100210000005fb011001c7000016d100010430000000400200043d0000001f0340018f0000000504400272000015380000613d000000000500001900000005065002100000000007620019000000000661034f000000000606043b00000000006704350000000105500039000000000645004b000015300000413d000000000503004b000015470000613d0000000504400210000000000141034f00000000044200190000000303300210000000000504043300000000053501cf000000000535022f000000000101043b0000010003300089000000000131022f00000000013101cf000000000151019f0000000000140435000005b5010000410000000103000031000005b50430009c0000000003018019000005b50420009c000000000102401900000040011002100000006002300210000000000112019f000016d1000104300008000000000002000000000b020019000000000a000414000000400500043d0000004402500039000000800600003900000000006204350000002006500039000006220200004100000000002604350000ffff0210018f0000002401500039000500000002001d000000000021043500000000020b0433000000a4015000390000000000210435000000c401500039000000000702004b0000156d0000613d0000000007000019000000000817001900000020077000390000000009b7001900000000090904330000000000980435000000000827004b000015660000413d000000000712001900000000000704350000001f02200039000000200700008a000800000007001d000000000272016f000000a00720003900000084085000390000000000780435000005f1073001970000006403500039000400000007001d0000000000730435000000000212001900000000910404340000000002120436000000000301004b000015870000613d000000000300001900000000072300190000002003300039000000000843001900000000080804330000000000870435000000000713004b000015800000413d0000000003210019000000000003043500000000025200490000001f011000390000000803000029000000000131016f0000000001120019000000200210008a00000000002504350000001f01100039000000000131016f0000000008510019000000000118004b00000000010000190000000101004039000005f10280009c000016ae0000213d0000000101100190000016ae0000c13d000000400080043f000006230180009c000016ae0000213d000000c001800039000000400010043f0000009601000039000000000c180436000000000100003100000002011003670000000002000019000000050320021000000000073c0019000000000331034f000000000303043b00000000003704350000000102200039000000050320008c000015a40000413d0000000002000410000000040120008c000700000004001d00030000000b001d000600000008001d000015b50000c13d00000001020000390000000101000031000015cf0000013d000005b501000041000005b50360009c0000000003010019000000000306401900000040033002100000000005050433000005b50650009c00000000050180190000006005500210000000000335019f000005b505a0009c00000000010a4019000000c001100210000000000113019f000200000009001d00010000000c001d16cf16c50000040f000000010c000029000000020900002900000006080000290000000704000029000000010220018f00030000000103550000006001100270000105b50010019d000005b501100197000000960310008c0000009605000039000000000501401900000000005804350000000101000031000000000115004b000016ac0000213d00000003030003670000001f0150018f0000000508500272000015e30000613d0000000005000019000000050650021000000000076c0019000000000663034f000000000606043b00000000006704350000000105500039000000000685004b000015db0000413d000000000501004b000015f20000613d0000000505800210000000000353034f00000000065c00190000000301100210000000000506043300000000051501cf000000000515022f000000000303043b0000010001100089000000000313022f00000000011301cf000000000151019f0000000000160435000000000102004b000016ab0000c13d000005b501000041000005b50290009c0000000002010019000000000209401900000040022002100000000003040433000005b50430009c00000000030180190000006003300210000000000223019f0000000003000414000005b50430009c0000000001034019000000c001100210000000000121019f000005ba011001c7000080100200003916cf16ca0000040f0000000102200190000016ac0000613d000000000101043b000200000001001d000000050100002900000000001004350000000501000039000000200010043f000005b5010000410000000002000414000005b50320009c0000000001024019000000c001100210000005fc011001c7000080100200003916cf16ca0000040f00000003070000290000000102200190000016ac0000613d000000400200043d000000000301043b0000000001070433000000000401004b000016260000613d000000000400001900000000052400190000002004400039000000000674001900000000060604330000000000650435000000000514004b0000161f0000413d00000000042100190000000000340435000005b503000041000005b50420009c000000000203801900000040022002100000002001100039000005b50410009c00000000010380190000006001100210000000000121019f0000000002000414000005b50420009c0000000002038019000000c002200210000000000112019f000005ba011001c7000080100200003916cf16ca0000040f0000000102200190000016ac0000613d000000000101043b00000004020000290000000000200435000000200010043f000005b5010000410000000002000414000005b50320009c0000000001024019000000c001100210000005fc011001c7000080100200003916cf16ca0000040f000000030800002900000007070000290000000102200190000016ac0000613d000000000101043b0000000202000029000000000021041b000000400100043d0000002002100039000000a0030000390000000000320435000000050200002900000000002104350000000002080433000000a0031000390000000000230435000000c003100039000000000402004b000016620000613d000000000400001900000000053400190000002004400039000000000684001900000000060604330000000000650435000000000524004b0000165b0000413d000000000432001900000000000404350000004004100039000000040500002900000000005404350000001f022000390000000804000029000000000242016f000000000232001900000000031200490000006004100039000000000034043500000000030704330000000002320436000000000403004b0000167a0000613d000000000400001900000000052400190000002004400039000000000674001900000000060604330000000000650435000000000534004b000016730000413d000000000423001900000000000404350000001f033000390000000804000029000000000343016f0000000002230019000000000312004900000080041000390000000000340435000000060700002900000000030704330000000002320436000000000403004b000016900000613d000000000400001900000000052400190000002004400039000000000674001900000000060604330000000000650435000000000534004b000016890000413d0000001f043000390000000805000029000000000454016f0000000003230019000000000003043500000000021200490000000002420019000005b503000041000005b50420009c00000000020380190000006002200210000005b50410009c00000000010380190000004001100210000000000112019f0000000002000414000005b50420009c0000000002038019000000c002200210000000000112019f000005ba011001c70000800d020000390000000103000039000006240400004116cf16c50000040f0000000101200190000016ac0000613d000000000001042d0000000001000019000016d100010430000005f60100004100000000001004350000004101000039000000040010043f000005eb01000041000016d100010430000000000100041a000005b8021001970000000001000411000000000212004b000016ba0000c13d000000000001042d000000400200043d000005ea03000041000000000032043500000004032000390000000000130435000005b501000041000005b50320009c00000000010240190000004001100210000005eb011001c7000016d100010430000016c8002104210000000102000039000000000001042d0000000002000019000000000001042d000016cd002104230000000102000039000000000001042d0000000002000019000000000001042d000016cf00000432000016d00001042e000016d1000104300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffff00000000000000000000000000000000000000000000000100000000000000008000000000000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000008be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e00000000200000000000000000000000000000080000001000000000000000000000000000000000000000000000000000000000000000000000000007533d78700000000000000000000000000000000000000000000000000000000c446183300000000000000000000000000000000000000000000000000000000eb8d72b600000000000000000000000000000000000000000000000000000000f2fde38a00000000000000000000000000000000000000000000000000000000f2fde38b00000000000000000000000000000000000000000000000000000000f5ecbdbc00000000000000000000000000000000000000000000000000000000eb8d72b700000000000000000000000000000000000000000000000000000000ed629c5c00000000000000000000000000000000000000000000000000000000d1deba1e00000000000000000000000000000000000000000000000000000000d1deba1f00000000000000000000000000000000000000000000000000000000df2a5b3b00000000000000000000000000000000000000000000000000000000c446183400000000000000000000000000000000000000000000000000000000cbed8b9c000000000000000000000000000000000000000000000000000000009f38369900000000000000000000000000000000000000000000000000000000b353aaa600000000000000000000000000000000000000000000000000000000b353aaa700000000000000000000000000000000000000000000000000000000baf3292d000000000000000000000000000000000000000000000000000000009f38369a00000000000000000000000000000000000000000000000000000000a6c3d165000000000000000000000000000000000000000000000000000000008da5cb5a000000000000000000000000000000000000000000000000000000008da5cb5b00000000000000000000000000000000000000000000000000000000950c8a74000000000000000000000000000000000000000000000000000000007533d788000000000000000000000000000000000000000000000000000000008cfd8f5c000000000000000000000000000000000000000000000000000000003f1f4fa3000000000000000000000000000000000000000000000000000000005a7498750000000000000000000000000000000000000000000000000000000066ad5c890000000000000000000000000000000000000000000000000000000066ad5c8a00000000000000000000000000000000000000000000000000000000715018a6000000000000000000000000000000000000000000000000000000005a749876000000000000000000000000000000000000000000000000000000005b8c41e600000000000000000000000000000000000000000000000000000000447705140000000000000000000000000000000000000000000000000000000044770515000000000000000000000000000000000000000000000000000000004c42899a000000000000000000000000000000000000000000000000000000003f1f4fa40000000000000000000000000000000000000000000000000000000042d65a8d0000000000000000000000000000000000000000000000000000000010ddb136000000000000000000000000000000000000000000000000000000003ccfd60a000000000000000000000000000000000000000000000000000000003ccfd60b000000000000000000000000000000000000000000000000000000003d8b38f60000000000000000000000000000000000000000000000000000000010ddb13700000000000000000000000000000000000000000000000000000000126928c400000000000000000000000000000000000000000000000000000000001d35670000000000000000000000000000000000000000000000000000000007e0db17000000000000000000000000000000000000000000000000000000000df37483118cdaa70000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000240000000000000000000000001e4fbdf700000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002000000000000000000000000002000000000000000000000000000000000000200000000000000000000000005db758e995a17ec1ad84bdef7e8c3293a0bd6179bcce400dff5d4c3d87db726b310ab089e4439a4c15d089f94afb7896ff553aecb10793d0ab882de59d99a32e000000000000000000000000000000000000000000000000ffffffffffffffff204c7a41707000000000000000000000000000000000000000000000000000004e6f6e626c6f636b696e674c7a4170703a2063616c6c6572206d75737420626508c379a00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000840000000000000000000000004e487b71000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000040000000000000000000000000020000020000000000000000000000000000000000000000000000000000000002000002000000000000000000000000000000440000000000000000000000004c7a4170703a20696e76616c696420656e64706f696e742063616c6c65720000000000000000000000000000000000000000006400000000000000000000000002000000000000000000000000000000000000400000000000000000000000001806aa1896bbf26568e884a7374b41e002500962caba6a15023a8d90e8508b83020000020000000000000000000000000000002400000000000000000000000007e0db170000000000000000000000000000000000000000000000000000000010ddb137000000000000000000000000000000000000000000000000000000004c7a4170703a20676173206c696d697420697320746f6f206c6f7700000000004c7a4170703a206d696e4761734c696d6974206e6f74207365740000000000004c7a4170703a20696e76616c69642061646170746572506172616d7300000000656d7074792e00000000000000000000000000000000000000000000000000004f4654436f72653a205f61646170746572506172616d73206d757374206265209cc7f708afc65944829bd487b90b72536b1951864fbfc14e125fc972a6507f3942d65a8d0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000ffffff9b4c7a4170703a206e6f20747275737465642070617468207265636f72640000008c0400cfe2d1199b1a725c78960bcc2a344d869b80590d0f2bd005db15a572cecbed8b9c0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000ffffff5b00000000000000000000000000000000000000a400000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffdf64000000000000000000000000000000000000000000000000000000000000004e6f6e626c6f636b696e674c7a4170703a20696e76616c6964207061796c6f61c264d91f3adc5588250e1551f547752ca0cfa8f6b530d243b9f9f4cab10ea8e561676500000000000000000000000000000000000000000000000000000000004e6f6e626c6f636b696e674c7a4170703a206e6f2073746f726564206d65737302000000000000000000000000000000000000600000000000000000000000009d5c7c0b934da8fefa9c7760c98383778a12dfbfc0c3b3106518f43fb9508ac04c7a4170703a20696e76616c6964206d696e4761730000000000000000000000fa41487ad5d6728f0b19276fa1eddc16558578f5109fc39d2dc33c3230470dabf5ecbdbc000000000000000000000000000000000000000000000000000000006e747261637400000000000000000000000000000000000000000000000000004c7a4170703a20696e76616c696420736f757263652073656e64696e6720636f736c6963655f6f75744f66426f756e647300000000000000000000000000000040a7bb10000000000000000000000000000000000000000000000000000000004e6f7420656e6f7567682067617320746f2073656e6400000000000000000000c5803100000000000000000000000000000000000000000000000000000000004c7a4170703a207061796c6f61642073697a6520697320746f6f206c6172676561207472757374656420736f75726365000000000000000000000000000000004c7a4170703a2064657374696e6174696f6e20636861696e206973206e6f742066ad5c8a00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffff3fe183f33de2837795525b4792ca4cd60535bd77c53b7e7030060bfcf5734d6b0c00000000000000000000000000000000000000000000000000000000000000000682691cd8cc36f30311308fa33660dc3d2ea9873c511c4ef7d681d896187938
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
0x0000000000000000000000009b896c0e23220469c7ae69cb4bbae391eaa4c8da
-----Decoded View---------------
Arg [0] : _lzEndpoint (address): 0x9b896c0e23220469C7AE69cb4BbAE391eAa4C8da
-----Encoded View---------------
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.