More Info
Private Name Tags
ContractCreator
Latest 1 from a total of 1 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Submit Contract ... | 22607764 | 1096 days ago | IN | 0 POL | 0.0010536 |
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:
Implementation
Compiler Version
v0.8.4+commit.c7e474f2
Optimization Enabled:
Yes with 1000 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
// contracts/Implementation.sol // SPDX-License-Identifier: Apache 2 pragma solidity ^0.8.0; pragma experimental ABIEncoderV2; import "./Governance.sol"; import "@openzeppelin/contracts/proxy/ERC1967/ERC1967Upgrade.sol"; contract Implementation is Governance { event LogMessagePublished(address indexed sender, uint64 sequence, uint32 nonce, bytes payload, uint8 consistencyLevel); // Publish a message to be attested by the Wormhole network function publishMessage( uint32 nonce, bytes memory payload, uint8 consistencyLevel ) public payable returns (uint64 sequence) { // check fee require(msg.value == messageFee(), "invalid fee"); sequence = useSequence(msg.sender); // emit log emit LogMessagePublished(msg.sender, sequence, nonce, payload, consistencyLevel); } function useSequence(address emitter) internal returns (uint64 sequence) { sequence = nextSequence(emitter); setNextSequence(emitter, sequence + 1); } modifier initializer() { address implementation = ERC1967Upgrade._getImplementation(); require( !isInitialized(implementation), "already initialized" ); setInitialized(implementation); _; } fallback() external payable {revert("unsupported");} receive() external payable {revert("the Wormhole contract does not accept assets");} }
// contracts/Getters.sol // SPDX-License-Identifier: Apache 2 pragma solidity ^0.8.0; import "./State.sol"; contract Getters is State { function getGuardianSet(uint32 index) public view returns (Structs.GuardianSet memory) { return _state.guardianSets[index]; } function getCurrentGuardianSetIndex() public view returns (uint32) { return _state.guardianSetIndex; } function getGuardianSetExpiry() public view returns (uint32) { return _state.guardianSetExpiry; } function governanceActionIsConsumed(bytes32 hash) public view returns (bool) { return _state.consumedGovernanceActions[hash]; } function isInitialized(address impl) public view returns (bool) { return _state.initializedImplementations[impl]; } function chainId() public view returns (uint16) { return _state.provider.chainId; } function governanceChainId() public view returns (uint16){ return _state.provider.governanceChainId; } function governanceContract() public view returns (bytes32){ return _state.provider.governanceContract; } function messageFee() public view returns (uint256) { return _state.messageFee; } function nextSequence(address emitter) public view returns (uint64) { return _state.sequences[emitter]; } }
// contracts/Governance.sol // SPDX-License-Identifier: Apache 2 pragma solidity ^0.8.0; import "./Structs.sol"; import "./GovernanceStructs.sol"; import "./Messages.sol"; import "./Setters.sol"; import "@openzeppelin/contracts/proxy/ERC1967/ERC1967Upgrade.sol"; abstract contract Governance is GovernanceStructs, Messages, Setters, ERC1967Upgrade { event ContractUpgraded(address indexed oldContract, address indexed newContract); event GuardianSetAdded(uint32 indexed index); // "Core" (left padded) bytes32 constant module = 0x00000000000000000000000000000000000000000000000000000000436f7265; function submitContractUpgrade(bytes memory _vm) public { Structs.VM memory vm = parseVM(_vm); (bool isValid, string memory reason) = verifyGovernanceVM(vm); require(isValid, reason); GovernanceStructs.ContractUpgrade memory upgrade = parseContractUpgrade(vm.payload); require(upgrade.module == module, "Invalid Module"); require(upgrade.chain == chainId(), "Invalid Chain"); setGovernanceActionConsumed(vm.hash); upgradeImplementation(upgrade.newContract); } function submitSetMessageFee(bytes memory _vm) public { Structs.VM memory vm = parseVM(_vm); (bool isValid, string memory reason) = verifyGovernanceVM(vm); require(isValid, reason); GovernanceStructs.SetMessageFee memory upgrade = parseSetMessageFee(vm.payload); require(upgrade.module == module, "Invalid Module"); require(upgrade.chain == chainId(), "Invalid Chain"); setGovernanceActionConsumed(vm.hash); setMessageFee(upgrade.messageFee); } function submitNewGuardianSet(bytes memory _vm) public { Structs.VM memory vm = parseVM(_vm); (bool isValid, string memory reason) = verifyGovernanceVM(vm); require(isValid, reason); GovernanceStructs.GuardianSetUpgrade memory upgrade = parseGuardianSetUpgrade(vm.payload); require(upgrade.module == module, "invalid Module"); require(upgrade.chain == chainId() || upgrade.chain == 0, "invalid Chain"); require(upgrade.newGuardianSet.keys.length > 0, "new guardian set is empty"); require(upgrade.newGuardianSetIndex == getCurrentGuardianSetIndex() + 1, "index must increase in steps of 1"); setGovernanceActionConsumed(vm.hash); expireGuardianSet(getCurrentGuardianSetIndex()); storeGuardianSet(upgrade.newGuardianSet, upgrade.newGuardianSetIndex); updateGuardianSetIndex(upgrade.newGuardianSetIndex); } function submitTransferFees(bytes memory _vm) public { Structs.VM memory vm = parseVM(_vm); (bool isValid, string memory reason) = verifyGovernanceVM(vm); require(isValid, reason); GovernanceStructs.TransferFees memory transfer = parseTransferFees(vm.payload); require(transfer.module == module, "invalid Module"); require(transfer.chain == chainId() || transfer.chain == 0, "invalid Chain"); setGovernanceActionConsumed(vm.hash); address payable recipient = payable(address(uint160(uint256(transfer.recipient)))); recipient.transfer(transfer.amount); } function upgradeImplementation(address newImplementation) internal { address currentImplementation = _getImplementation(); _upgradeTo(newImplementation); // Call initialize function of the new implementation (bool success, bytes memory reason) = newImplementation.delegatecall(abi.encodeWithSignature("initialize()")); require(success, string(reason)); emit ContractUpgraded(currentImplementation, newImplementation); } function verifyGovernanceVM(Structs.VM memory vm) internal view returns (bool, string memory){ // validate vm (bool isValid, string memory reason) = verifyVM(vm); if (!isValid){ return (false, reason); } // only current guardianset can sign governance packets if (vm.guardianSetIndex != getCurrentGuardianSetIndex()) { return (false, "not signed by current guardian set"); } // verify source if (uint16(vm.emitterChainId) != governanceChainId()) { return (false, "wrong governance chain"); } if (vm.emitterAddress != governanceContract()) { return (false, "wrong governance contract"); } // prevent re-entry if (governanceActionIsConsumed(vm.hash)){ return (false, "governance action already consumed"); } return (true, ""); } }
// contracts/GovernanceStructs.sol // SPDX-License-Identifier: Apache 2 pragma solidity ^0.8.0; import "./libraries/external/BytesLib.sol"; import "./Structs.sol"; contract GovernanceStructs { using BytesLib for bytes; enum GovernanceAction { UpgradeContract, UpgradeGuardianset } struct ContractUpgrade { bytes32 module; uint8 action; uint16 chain; address newContract; } struct GuardianSetUpgrade { bytes32 module; uint8 action; uint16 chain; Structs.GuardianSet newGuardianSet; uint32 newGuardianSetIndex; } struct SetMessageFee { bytes32 module; uint8 action; uint16 chain; uint256 messageFee; } struct TransferFees { bytes32 module; uint8 action; uint16 chain; uint256 amount; bytes32 recipient; } function parseContractUpgrade(bytes memory encodedUpgrade) public pure returns (ContractUpgrade memory cu) { uint index = 0; cu.module = encodedUpgrade.toBytes32(index); index += 32; cu.action = encodedUpgrade.toUint8(index); index += 1; require(cu.action == 1, "invalid ContractUpgrade"); cu.chain = encodedUpgrade.toUint16(index); index += 2; cu.newContract = address(uint160(uint256(encodedUpgrade.toBytes32(index)))); index += 32; require(encodedUpgrade.length == index, "invalid ContractUpgrade"); } function parseGuardianSetUpgrade(bytes memory encodedUpgrade) public pure returns (GuardianSetUpgrade memory gsu) { uint index = 0; gsu.module = encodedUpgrade.toBytes32(index); index += 32; gsu.action = encodedUpgrade.toUint8(index); index += 1; require(gsu.action == 2, "invalid GuardianSetUpgrade"); gsu.chain = encodedUpgrade.toUint16(index); index += 2; gsu.newGuardianSetIndex = encodedUpgrade.toUint32(index); index += 4; uint8 guardianLength = encodedUpgrade.toUint8(index); index += 1; gsu.newGuardianSet = Structs.GuardianSet({ keys : new address[](guardianLength), expirationTime : 0 }); for(uint i = 0; i < guardianLength; i++) { gsu.newGuardianSet.keys[i] = encodedUpgrade.toAddress(index); index += 20; } require(encodedUpgrade.length == index, "invalid GuardianSetUpgrade"); } function parseSetMessageFee(bytes memory encodedSetMessageFee) public pure returns (SetMessageFee memory smf) { uint index = 0; smf.module = encodedSetMessageFee.toBytes32(index); index += 32; smf.action = encodedSetMessageFee.toUint8(index); index += 1; require(smf.action == 3, "invalid SetMessageFee"); smf.chain = encodedSetMessageFee.toUint16(index); index += 2; smf.messageFee = encodedSetMessageFee.toUint256(index); index += 32; require(encodedSetMessageFee.length == index, "invalid SetMessageFee"); } function parseTransferFees(bytes memory encodedTransferFees) public pure returns (TransferFees memory tf) { uint index = 0; tf.module = encodedTransferFees.toBytes32(index); index += 32; tf.action = encodedTransferFees.toUint8(index); index += 1; require(tf.action == 4, "invalid TransferFees"); tf.chain = encodedTransferFees.toUint16(index); index += 2; tf.amount = encodedTransferFees.toUint256(index); index += 32; tf.recipient = encodedTransferFees.toBytes32(index); index += 32; require(encodedTransferFees.length == index, "invalid TransferFees"); } }
// contracts/Messages.sol // SPDX-License-Identifier: Apache 2 pragma solidity ^0.8.0; pragma experimental ABIEncoderV2; import "./Getters.sol"; import "./Structs.sol"; import "./libraries/external/BytesLib.sol"; contract Messages is Getters { using BytesLib for bytes; function parseAndVerifyVM(bytes calldata encodedVM) public view returns (Structs.VM memory vm, bool valid, string memory reason) { vm = parseVM(encodedVM); (valid, reason) = verifyVM(vm); } function verifyVM(Structs.VM memory vm) public view returns (bool valid, string memory reason) { Structs.GuardianSet memory guardianSet = getGuardianSet(vm.guardianSetIndex); if(guardianSet.keys.length == 0){ return (false, "invalid guardian set"); } if(vm.guardianSetIndex != getCurrentGuardianSetIndex() && guardianSet.expirationTime < block.timestamp){ return (false, "guardian set has expired"); } // We're using a fixed point number transformation with 1 decimal to deal with rounding. if(((guardianSet.keys.length * 10 / 3) * 2) / 10 + 1 > vm.signatures.length){ return (false, "no quorum"); } // Verify signatures (bool signaturesValid, string memory invalidReason) = verifySignatures(vm.hash, vm.signatures, guardianSet); if(!signaturesValid){ return (false, invalidReason); } return (true, ""); } function verifySignatures(bytes32 hash, Structs.Signature[] memory signatures, Structs.GuardianSet memory guardianSet) public pure returns (bool valid, string memory reason) { uint8 lastIndex = 0; for (uint i = 0; i < signatures.length; i++) { Structs.Signature memory sig = signatures[i]; require(i == 0 || sig.guardianIndex > lastIndex, "signature indices must be ascending"); lastIndex = sig.guardianIndex; if(ecrecover(hash, sig.v, sig.r, sig.s) != guardianSet.keys[sig.guardianIndex]){ return (false, "VM signature invalid"); } } return (true, ""); } function parseVM(bytes memory encodedVM) public pure virtual returns (Structs.VM memory vm) { uint index = 0; vm.version = encodedVM.toUint8(index); index += 1; require(vm.version == 1, "VM version incompatible"); vm.guardianSetIndex = encodedVM.toUint32(index); index += 4; // Parse Signatures uint256 signersLen = encodedVM.toUint8(index); index += 1; vm.signatures = new Structs.Signature[](signersLen); for (uint i = 0; i < signersLen; i++) { vm.signatures[i].guardianIndex = encodedVM.toUint8(index); index += 1; vm.signatures[i].r = encodedVM.toBytes32(index); index += 32; vm.signatures[i].s = encodedVM.toBytes32(index); index += 32; vm.signatures[i].v = encodedVM.toUint8(index) + 27; index += 1; } // Hash the body bytes memory body = encodedVM.slice(index, encodedVM.length - index); vm.hash = keccak256(abi.encodePacked(keccak256(body))); // Parse the body vm.timestamp = encodedVM.toUint32(index); index += 4; vm.nonce = encodedVM.toUint32(index); index += 4; vm.emitterChainId = encodedVM.toUint16(index); index += 2; vm.emitterAddress = encodedVM.toBytes32(index); index += 32; vm.sequence = encodedVM.toUint64(index); index += 8; vm.consistencyLevel = encodedVM.toUint8(index); index += 1; vm.payload = encodedVM.slice(index, encodedVM.length - index); } }
// contracts/Setters.sol // SPDX-License-Identifier: Apache 2 pragma solidity ^0.8.0; import "./State.sol"; contract Setters is State { function updateGuardianSetIndex(uint32 newIndex) internal { _state.guardianSetIndex = newIndex; } function expireGuardianSet(uint32 index) internal { _state.guardianSets[index].expirationTime = uint32(block.timestamp) + 86400; } function storeGuardianSet(Structs.GuardianSet memory set, uint32 index) internal { _state.guardianSets[index] = set; } function setInitialized(address implementatiom) internal { _state.initializedImplementations[implementatiom] = true; } function setGovernanceActionConsumed(bytes32 hash) internal { _state.consumedGovernanceActions[hash] = true; } function setChainId(uint16 chainId) internal { _state.provider.chainId = chainId; } function setGovernanceChainId(uint16 chainId) internal { _state.provider.governanceChainId = chainId; } function setGovernanceContract(bytes32 governanceContract) internal { _state.provider.governanceContract = governanceContract; } function setMessageFee(uint256 newFee) internal { _state.messageFee = newFee; } function setNextSequence(address emitter, uint64 sequence) internal { _state.sequences[emitter] = sequence; } }
// contracts/State.sol // SPDX-License-Identifier: Apache 2 pragma solidity ^0.8.0; import "./Structs.sol"; contract Events { event LogGuardianSetChanged( uint32 oldGuardianIndex, uint32 newGuardianIndex ); event LogMessagePublished( address emitter_address, uint32 nonce, bytes payload ); } contract Storage { struct WormholeState { Structs.Provider provider; // Mapping of guardian_set_index => guardian set mapping(uint32 => Structs.GuardianSet) guardianSets; // Current active guardian set index uint32 guardianSetIndex; // Period for which a guardian set stays active after it has been replaced uint32 guardianSetExpiry; // Sequence numbers per emitter mapping(address => uint64) sequences; // Mapping of consumed governance actions mapping(bytes32 => bool) consumedGovernanceActions; // Mapping of initialized implementations mapping(address => bool) initializedImplementations; uint256 messageFee; } } contract State { Storage.WormholeState _state; }
// contracts/Structs.sol // SPDX-License-Identifier: Apache 2 pragma solidity ^0.8.0; interface Structs { struct Provider { uint16 chainId; uint16 governanceChainId; bytes32 governanceContract; } struct GuardianSet { address[] keys; uint32 expirationTime; } struct Signature { bytes32 r; bytes32 s; uint8 v; uint8 guardianIndex; } struct VM { uint8 version; uint32 timestamp; uint32 nonce; uint16 emitterChainId; bytes32 emitterAddress; uint64 sequence; uint8 consistencyLevel; bytes payload; uint32 guardianSetIndex; Signature[] signatures; bytes32 hash; } }
// 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 pragma solidity ^0.8.2; import "../beacon/IBeacon.sol"; import "../../utils/Address.sol"; import "../../utils/StorageSlot.sol"; /** * @dev This abstract contract provides getters and event emitting update functions for * https://eips.ethereum.org/EIPS/eip-1967[EIP1967] slots. * * _Available since v4.1._ * * @custom:oz-upgrades-unsafe-allow delegatecall */ abstract contract ERC1967Upgrade { // This is the keccak-256 hash of "eip1967.proxy.rollback" subtracted by 1 bytes32 private constant _ROLLBACK_SLOT = 0x4910fdfa16fed3260ed0e7147f7cc6da11a60208b5b9406d12a635614ffd9143; /** * @dev Storage slot with the address of the current implementation. * This is the keccak-256 hash of "eip1967.proxy.implementation" subtracted by 1, and is * validated in the constructor. */ bytes32 internal constant _IMPLEMENTATION_SLOT = 0x360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc; /** * @dev Emitted when the implementation is upgraded. */ event Upgraded(address indexed implementation); /** * @dev Returns the current implementation address. */ function _getImplementation() internal view returns (address) { return StorageSlot.getAddressSlot(_IMPLEMENTATION_SLOT).value; } /** * @dev Stores a new address in the EIP1967 implementation slot. */ function _setImplementation(address newImplementation) private { require(Address.isContract(newImplementation), "ERC1967: new implementation is not a contract"); StorageSlot.getAddressSlot(_IMPLEMENTATION_SLOT).value = newImplementation; } /** * @dev Perform implementation upgrade * * Emits an {Upgraded} event. */ function _upgradeTo(address newImplementation) internal { _setImplementation(newImplementation); emit Upgraded(newImplementation); } /** * @dev Perform implementation upgrade with additional setup call. * * Emits an {Upgraded} event. */ function _upgradeToAndCall( address newImplementation, bytes memory data, bool forceCall ) internal { _upgradeTo(newImplementation); if (data.length > 0 || forceCall) { Address.functionDelegateCall(newImplementation, data); } } /** * @dev Perform implementation upgrade with security checks for UUPS proxies, and additional setup call. * * Emits an {Upgraded} event. */ function _upgradeToAndCallSecure( address newImplementation, bytes memory data, bool forceCall ) internal { address oldImplementation = _getImplementation(); // Initial upgrade and setup call _setImplementation(newImplementation); if (data.length > 0 || forceCall) { Address.functionDelegateCall(newImplementation, data); } // Perform rollback test if not already in progress StorageSlot.BooleanSlot storage rollbackTesting = StorageSlot.getBooleanSlot(_ROLLBACK_SLOT); if (!rollbackTesting.value) { // Trigger rollback using upgradeTo from the new implementation rollbackTesting.value = true; Address.functionDelegateCall( newImplementation, abi.encodeWithSignature("upgradeTo(address)", oldImplementation) ); rollbackTesting.value = false; // Check rollback was effective require(oldImplementation == _getImplementation(), "ERC1967Upgrade: upgrade breaks further upgrades"); // Finally reset to the new implementation and log the upgrade _upgradeTo(newImplementation); } } /** * @dev Storage slot with the admin of the contract. * This is the keccak-256 hash of "eip1967.proxy.admin" subtracted by 1, and is * validated in the constructor. */ bytes32 internal constant _ADMIN_SLOT = 0xb53127684a568b3173ae13b9f8a6016e243e63b6e8ee1178d6a717850b5d6103; /** * @dev Emitted when the admin account has changed. */ event AdminChanged(address previousAdmin, address newAdmin); /** * @dev Returns the current admin. */ function _getAdmin() internal view returns (address) { return StorageSlot.getAddressSlot(_ADMIN_SLOT).value; } /** * @dev Stores a new address in the EIP1967 admin slot. */ function _setAdmin(address newAdmin) private { require(newAdmin != address(0), "ERC1967: new admin is the zero address"); StorageSlot.getAddressSlot(_ADMIN_SLOT).value = newAdmin; } /** * @dev Changes the admin of the proxy. * * Emits an {AdminChanged} event. */ function _changeAdmin(address newAdmin) internal { emit AdminChanged(_getAdmin(), newAdmin); _setAdmin(newAdmin); } /** * @dev The storage slot of the UpgradeableBeacon contract which defines the implementation for this proxy. * This is bytes32(uint256(keccak256('eip1967.proxy.beacon')) - 1)) and is validated in the constructor. */ bytes32 internal constant _BEACON_SLOT = 0xa3f0ad74e5423aebfd80d3ef4346578335a9a72aeaee59ff6cb3582b35133d50; /** * @dev Emitted when the beacon is upgraded. */ event BeaconUpgraded(address indexed beacon); /** * @dev Returns the current beacon. */ function _getBeacon() internal view returns (address) { return StorageSlot.getAddressSlot(_BEACON_SLOT).value; } /** * @dev Stores a new beacon in the EIP1967 beacon slot. */ function _setBeacon(address newBeacon) private { require(Address.isContract(newBeacon), "ERC1967: new beacon is not a contract"); require( Address.isContract(IBeacon(newBeacon).implementation()), "ERC1967: beacon implementation is not a contract" ); StorageSlot.getAddressSlot(_BEACON_SLOT).value = newBeacon; } /** * @dev Perform beacon upgrade with additional setup call. Note: This upgrades the address of the beacon, it does * not upgrade the implementation contained in the beacon (see {UpgradeableBeacon-_setImplementation} for that). * * Emits a {BeaconUpgraded} event. */ function _upgradeBeaconToAndCall( address newBeacon, bytes memory data, bool forceCall ) internal { _setBeacon(newBeacon); emit BeaconUpgraded(newBeacon); if (data.length > 0 || forceCall) { Address.functionDelegateCall(IBeacon(newBeacon).implementation(), data); } } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; /** * @dev This is the interface that {BeaconProxy} expects of its beacon. */ interface IBeacon { /** * @dev Must return an address that can be used as a delegate call target. * * {BeaconProxy} will check that this address is a contract. */ function implementation() external view returns (address); }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize, which returns 0 for contracts in // construction, since the code is only stored at the end of the // constructor execution. uint256 size; assembly { size := extcodesize(account) } return size > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; /** * @dev Library for reading and writing primitive types to specific storage slots. * * Storage slots are often used to avoid storage conflict when dealing with upgradeable contracts. * This library helps with reading and writing to such slots without the need for inline assembly. * * The functions in this library return Slot structs that contain a `value` member that can be used to read or write. * * Example usage to set ERC1967 implementation slot: * ``` * contract ERC1967 { * bytes32 internal constant _IMPLEMENTATION_SLOT = 0x360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc; * * function _getImplementation() internal view returns (address) { * return StorageSlot.getAddressSlot(_IMPLEMENTATION_SLOT).value; * } * * function _setImplementation(address newImplementation) internal { * require(Address.isContract(newImplementation), "ERC1967: new implementation is not a contract"); * StorageSlot.getAddressSlot(_IMPLEMENTATION_SLOT).value = newImplementation; * } * } * ``` * * _Available since v4.1 for `address`, `bool`, `bytes32`, and `uint256`._ */ library StorageSlot { struct AddressSlot { address value; } struct BooleanSlot { bool value; } struct Bytes32Slot { bytes32 value; } struct Uint256Slot { uint256 value; } /** * @dev Returns an `AddressSlot` with member `value` located at `slot`. */ function getAddressSlot(bytes32 slot) internal pure returns (AddressSlot storage r) { assembly { r.slot := slot } } /** * @dev Returns an `BooleanSlot` with member `value` located at `slot`. */ function getBooleanSlot(bytes32 slot) internal pure returns (BooleanSlot storage r) { assembly { r.slot := slot } } /** * @dev Returns an `Bytes32Slot` with member `value` located at `slot`. */ function getBytes32Slot(bytes32 slot) internal pure returns (Bytes32Slot storage r) { assembly { r.slot := slot } } /** * @dev Returns an `Uint256Slot` with member `value` located at `slot`. */ function getUint256Slot(bytes32 slot) internal pure returns (Uint256Slot storage r) { assembly { r.slot := slot } } }
{ "remappings": [], "optimizer": { "enabled": true, "runs": 1000 }, "evmVersion": "istanbul", "libraries": {}, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"previousAdmin","type":"address"},{"indexed":false,"internalType":"address","name":"newAdmin","type":"address"}],"name":"AdminChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"beacon","type":"address"}],"name":"BeaconUpgraded","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"oldContract","type":"address"},{"indexed":true,"internalType":"address","name":"newContract","type":"address"}],"name":"ContractUpgraded","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint32","name":"index","type":"uint32"}],"name":"GuardianSetAdded","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"sender","type":"address"},{"indexed":false,"internalType":"uint64","name":"sequence","type":"uint64"},{"indexed":false,"internalType":"uint32","name":"nonce","type":"uint32"},{"indexed":false,"internalType":"bytes","name":"payload","type":"bytes"},{"indexed":false,"internalType":"uint8","name":"consistencyLevel","type":"uint8"}],"name":"LogMessagePublished","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"implementation","type":"address"}],"name":"Upgraded","type":"event"},{"stateMutability":"payable","type":"fallback"},{"inputs":[],"name":"chainId","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getCurrentGuardianSetIndex","outputs":[{"internalType":"uint32","name":"","type":"uint32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint32","name":"index","type":"uint32"}],"name":"getGuardianSet","outputs":[{"components":[{"internalType":"address[]","name":"keys","type":"address[]"},{"internalType":"uint32","name":"expirationTime","type":"uint32"}],"internalType":"struct Structs.GuardianSet","name":"","type":"tuple"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getGuardianSetExpiry","outputs":[{"internalType":"uint32","name":"","type":"uint32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"hash","type":"bytes32"}],"name":"governanceActionIsConsumed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"governanceChainId","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"governanceContract","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"impl","type":"address"}],"name":"isInitialized","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"messageFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"emitter","type":"address"}],"name":"nextSequence","outputs":[{"internalType":"uint64","name":"","type":"uint64"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes","name":"encodedVM","type":"bytes"}],"name":"parseAndVerifyVM","outputs":[{"components":[{"internalType":"uint8","name":"version","type":"uint8"},{"internalType":"uint32","name":"timestamp","type":"uint32"},{"internalType":"uint32","name":"nonce","type":"uint32"},{"internalType":"uint16","name":"emitterChainId","type":"uint16"},{"internalType":"bytes32","name":"emitterAddress","type":"bytes32"},{"internalType":"uint64","name":"sequence","type":"uint64"},{"internalType":"uint8","name":"consistencyLevel","type":"uint8"},{"internalType":"bytes","name":"payload","type":"bytes"},{"internalType":"uint32","name":"guardianSetIndex","type":"uint32"},{"components":[{"internalType":"bytes32","name":"r","type":"bytes32"},{"internalType":"bytes32","name":"s","type":"bytes32"},{"internalType":"uint8","name":"v","type":"uint8"},{"internalType":"uint8","name":"guardianIndex","type":"uint8"}],"internalType":"struct Structs.Signature[]","name":"signatures","type":"tuple[]"},{"internalType":"bytes32","name":"hash","type":"bytes32"}],"internalType":"struct Structs.VM","name":"vm","type":"tuple"},{"internalType":"bool","name":"valid","type":"bool"},{"internalType":"string","name":"reason","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes","name":"encodedUpgrade","type":"bytes"}],"name":"parseContractUpgrade","outputs":[{"components":[{"internalType":"bytes32","name":"module","type":"bytes32"},{"internalType":"uint8","name":"action","type":"uint8"},{"internalType":"uint16","name":"chain","type":"uint16"},{"internalType":"address","name":"newContract","type":"address"}],"internalType":"struct GovernanceStructs.ContractUpgrade","name":"cu","type":"tuple"}],"stateMutability":"pure","type":"function"},{"inputs":[{"internalType":"bytes","name":"encodedUpgrade","type":"bytes"}],"name":"parseGuardianSetUpgrade","outputs":[{"components":[{"internalType":"bytes32","name":"module","type":"bytes32"},{"internalType":"uint8","name":"action","type":"uint8"},{"internalType":"uint16","name":"chain","type":"uint16"},{"components":[{"internalType":"address[]","name":"keys","type":"address[]"},{"internalType":"uint32","name":"expirationTime","type":"uint32"}],"internalType":"struct Structs.GuardianSet","name":"newGuardianSet","type":"tuple"},{"internalType":"uint32","name":"newGuardianSetIndex","type":"uint32"}],"internalType":"struct GovernanceStructs.GuardianSetUpgrade","name":"gsu","type":"tuple"}],"stateMutability":"pure","type":"function"},{"inputs":[{"internalType":"bytes","name":"encodedSetMessageFee","type":"bytes"}],"name":"parseSetMessageFee","outputs":[{"components":[{"internalType":"bytes32","name":"module","type":"bytes32"},{"internalType":"uint8","name":"action","type":"uint8"},{"internalType":"uint16","name":"chain","type":"uint16"},{"internalType":"uint256","name":"messageFee","type":"uint256"}],"internalType":"struct GovernanceStructs.SetMessageFee","name":"smf","type":"tuple"}],"stateMutability":"pure","type":"function"},{"inputs":[{"internalType":"bytes","name":"encodedTransferFees","type":"bytes"}],"name":"parseTransferFees","outputs":[{"components":[{"internalType":"bytes32","name":"module","type":"bytes32"},{"internalType":"uint8","name":"action","type":"uint8"},{"internalType":"uint16","name":"chain","type":"uint16"},{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"bytes32","name":"recipient","type":"bytes32"}],"internalType":"struct GovernanceStructs.TransferFees","name":"tf","type":"tuple"}],"stateMutability":"pure","type":"function"},{"inputs":[{"internalType":"bytes","name":"encodedVM","type":"bytes"}],"name":"parseVM","outputs":[{"components":[{"internalType":"uint8","name":"version","type":"uint8"},{"internalType":"uint32","name":"timestamp","type":"uint32"},{"internalType":"uint32","name":"nonce","type":"uint32"},{"internalType":"uint16","name":"emitterChainId","type":"uint16"},{"internalType":"bytes32","name":"emitterAddress","type":"bytes32"},{"internalType":"uint64","name":"sequence","type":"uint64"},{"internalType":"uint8","name":"consistencyLevel","type":"uint8"},{"internalType":"bytes","name":"payload","type":"bytes"},{"internalType":"uint32","name":"guardianSetIndex","type":"uint32"},{"components":[{"internalType":"bytes32","name":"r","type":"bytes32"},{"internalType":"bytes32","name":"s","type":"bytes32"},{"internalType":"uint8","name":"v","type":"uint8"},{"internalType":"uint8","name":"guardianIndex","type":"uint8"}],"internalType":"struct Structs.Signature[]","name":"signatures","type":"tuple[]"},{"internalType":"bytes32","name":"hash","type":"bytes32"}],"internalType":"struct Structs.VM","name":"vm","type":"tuple"}],"stateMutability":"pure","type":"function"},{"inputs":[{"internalType":"uint32","name":"nonce","type":"uint32"},{"internalType":"bytes","name":"payload","type":"bytes"},{"internalType":"uint8","name":"consistencyLevel","type":"uint8"}],"name":"publishMessage","outputs":[{"internalType":"uint64","name":"sequence","type":"uint64"}],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"bytes","name":"_vm","type":"bytes"}],"name":"submitContractUpgrade","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes","name":"_vm","type":"bytes"}],"name":"submitNewGuardianSet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes","name":"_vm","type":"bytes"}],"name":"submitSetMessageFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes","name":"_vm","type":"bytes"}],"name":"submitTransferFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"hash","type":"bytes32"},{"components":[{"internalType":"bytes32","name":"r","type":"bytes32"},{"internalType":"bytes32","name":"s","type":"bytes32"},{"internalType":"uint8","name":"v","type":"uint8"},{"internalType":"uint8","name":"guardianIndex","type":"uint8"}],"internalType":"struct Structs.Signature[]","name":"signatures","type":"tuple[]"},{"components":[{"internalType":"address[]","name":"keys","type":"address[]"},{"internalType":"uint32","name":"expirationTime","type":"uint32"}],"internalType":"struct Structs.GuardianSet","name":"guardianSet","type":"tuple"}],"name":"verifySignatures","outputs":[{"internalType":"bool","name":"valid","type":"bool"},{"internalType":"string","name":"reason","type":"string"}],"stateMutability":"pure","type":"function"},{"inputs":[{"components":[{"internalType":"uint8","name":"version","type":"uint8"},{"internalType":"uint32","name":"timestamp","type":"uint32"},{"internalType":"uint32","name":"nonce","type":"uint32"},{"internalType":"uint16","name":"emitterChainId","type":"uint16"},{"internalType":"bytes32","name":"emitterAddress","type":"bytes32"},{"internalType":"uint64","name":"sequence","type":"uint64"},{"internalType":"uint8","name":"consistencyLevel","type":"uint8"},{"internalType":"bytes","name":"payload","type":"bytes"},{"internalType":"uint32","name":"guardianSetIndex","type":"uint32"},{"components":[{"internalType":"bytes32","name":"r","type":"bytes32"},{"internalType":"bytes32","name":"s","type":"bytes32"},{"internalType":"uint8","name":"v","type":"uint8"},{"internalType":"uint8","name":"guardianIndex","type":"uint8"}],"internalType":"struct Structs.Signature[]","name":"signatures","type":"tuple[]"},{"internalType":"bytes32","name":"hash","type":"bytes32"}],"internalType":"struct Structs.VM","name":"vm","type":"tuple"}],"name":"verifyVM","outputs":[{"internalType":"bool","name":"valid","type":"bool"},{"internalType":"string","name":"reason","type":"string"}],"stateMutability":"view","type":"function"},{"stateMutability":"payable","type":"receive"}]
Contract Creation Code
608060405234801561001057600080fd5b50613142806100206000396000f3fe6080604052600436106101845760003560e01c806393df337e116100d6578063c0fd8bde1161007f578063f42bc64111610059578063f42bc6411461063c578063f951975a1461065c578063fbe3c2cd14610689576101fc565b8063c0fd8bde146105b1578063d60b347f146105e0578063eb8d3f1214610619576101fc565b8063a9e11893116100b0578063a9e118931461055c578063b172b22214610589578063b19a437e1461059e576101fc565b806393df337e146104f45780639a8a059214610514578063a0cce1b31461053c576101fc565b80634cf842b5116101385780635cb8cae2116101125780635cb8cae2146104845780636606b4e0146104a6578063875be02a146104c6576101fc565b80634cf842b51461036e5780634fdc60fa146103c7578063515f32471461042a576101fc565b80631a90a219116101695780631a90a219146102e35780631cfe7951146103025780632c3c02a41461032e576101fc565b80630319e59c1461024457806304ca84cf146102b6576101fc565b366101fc5760405162461bcd60e51b815260206004820152602c60248201527f74686520576f726d686f6c6520636f6e747261637420646f6573206e6f74206160448201527f636365707420617373657473000000000000000000000000000000000000000060648201526084015b60405180910390fd5b60405162461bcd60e51b815260206004820152600b60248201527f756e737570706f7274656400000000000000000000000000000000000000000060448201526064016101f3565b34801561025057600080fd5b5061026461025f3660046129b7565b6106a8565b6040516102ad9190600060a0820190508251825260ff602084015116602083015261ffff6040840151166040830152606083015160608301526080830151608083015292915050565b60405180910390f35b3480156102c257600080fd5b506102d66102d13660046129b7565b610810565b6040516102ad9190612db1565b3480156102ef57600080fd5b506007545b6040519081526020016102ad565b34801561030e57600080fd5b5060035463ffffffff165b60405163ffffffff90911681526020016102ad565b34801561033a57600080fd5b5061035e61034936600461282a565b60009081526005602052604090205460ff1690565b60405190151581526020016102ad565b34801561037a57600080fd5b506103ae610389366004612809565b6001600160a01b031660009081526004602052604090205467ffffffffffffffff1690565b60405167ffffffffffffffff90911681526020016102ad565b3480156103d357600080fd5b506103e76103e23660046129b7565b610a44565b6040516102ad91908151815260208083015160ff169082015260408083015161ffff16908201526060918201516001600160a01b03169181019190915260800190565b34801561043657600080fd5b5061044a6104453660046129b7565b610b8c565b6040516102ad91908151815260208083015160ff169082015260408083015161ffff16908201526060918201519181019190915260800190565b34801561049057600080fd5b506104a461049f3660046129b7565b610ccb565b005b3480156104b257600080fd5b506104a46104c13660046129b7565b610df8565b3480156104d257600080fd5b506104e66104e13660046129f2565b611059565b6040516102ad929190612d83565b34801561050057600080fd5b506104a461050f3660046129b7565b61120a565b34801561052057600080fd5b5060005461ffff165b60405161ffff90911681526020016102ad565b34801561054857600080fd5b506104e6610557366004612842565b61137b565b34801561056857600080fd5b5061057c6105773660046129b7565b61157b565b6040516102ad9190612e21565b34801561059557600080fd5b506001546102f4565b6103ae6105ac366004612b2c565b6119a9565b3480156105bd57600080fd5b506105d16105cc36600461294a565b611a5b565b6040516102ad93929190612e34565b3480156105ec57600080fd5b5061035e6105fb366004612809565b6001600160a01b031660009081526006602052604090205460ff1690565b34801561062557600080fd5b50600354640100000000900463ffffffff16610319565b34801561064857600080fd5b506104a46106573660046129b7565b611b0d565b34801561066857600080fd5b5061067c610677366004612b12565b611c33565b6040516102ad9190612e0e565b34801561069557600080fd5b5060005462010000900461ffff16610529565b6040805160a0810182526000808252602082018190529181018290526060810182905260808101829052906106dd8382611cd2565b82526106ea602082612f73565b90506106f68382611d38565b60ff166020830152610709600182612f73565b9050816020015160ff166004146107625760405162461bcd60e51b815260206004820152601460248201527f696e76616c6964205472616e736665724665657300000000000000000000000060448201526064016101f3565b61076c8382611d9e565b61ffff166040830152610780600282612f73565b905061078c8382611e04565b606083015261079c602082612f73565b90506107a88382611cd2565b60808301526107b8602082612f73565b90508083511461080a5760405162461bcd60e51b815260206004820152601460248201527f696e76616c6964205472616e736665724665657300000000000000000000000060448201526064016101f3565b50919050565b6108186125a3565b60006108248382611cd2565b8252610831602082612f73565b905061083d8382611d38565b60ff166020830152610850600182612f73565b9050816020015160ff166002146108a95760405162461bcd60e51b815260206004820152601a60248201527f696e76616c696420477561726469616e5365745570677261646500000000000060448201526064016101f3565b6108b38382611d9e565b61ffff1660408301526108c7600282612f73565b90506108d38382611e61565b63ffffffff1660808301526108e9600482612f73565b905060006108f78483611d38565b9050610904600183612f73565b915060405180604001604052808260ff1667ffffffffffffffff81111561093b57634e487b7160e01b600052604160045260246000fd5b604051908082528060200260200182016040528015610964578160200160208202803683370190505b5081526000602090910181905260608501919091525b8160ff168110156109ec5761098f8584611ec7565b6060850151518051839081106109b557634e487b7160e01b600052603260045260246000fd5b6001600160a01b03909216602092830291909101909101526109d8601484612f73565b9250806109e481613081565b91505061097a565b5081845114610a3d5760405162461bcd60e51b815260206004820152601a60248201527f696e76616c696420477561726469616e5365745570677261646500000000000060448201526064016101f3565b5050919050565b604080516080810182526000808252602082018190529181018290526060810182905290610a728382611cd2565b8252610a7f602082612f73565b9050610a8b8382611d38565b60ff166020830152610a9e600182612f73565b9050816020015160ff16600114610af75760405162461bcd60e51b815260206004820152601760248201527f696e76616c696420436f6e74726163745570677261646500000000000000000060448201526064016101f3565b610b018382611d9e565b61ffff166040830152610b15600282612f73565b9050610b218382611cd2565b6001600160a01b03166060830152610b3a602082612f73565b90508083511461080a5760405162461bcd60e51b815260206004820152601760248201527f696e76616c696420436f6e74726163745570677261646500000000000000000060448201526064016101f3565b604080516080810182526000808252602082018190529181018290526060810182905290610bba8382611cd2565b8252610bc7602082612f73565b9050610bd38382611d38565b60ff166020830152610be6600182612f73565b9050816020015160ff16600314610c3f5760405162461bcd60e51b815260206004820152601560248201527f696e76616c6964205365744d657373616765466565000000000000000000000060448201526064016101f3565b610c498382611d9e565b61ffff166040830152610c5d600282612f73565b9050610c698382611e04565b6060830152610c79602082612f73565b90508083511461080a5760405162461bcd60e51b815260206004820152601560248201527f696e76616c6964205365744d657373616765466565000000000000000000000060448201526064016101f3565b6000610cd68261157b565b9050600080610ce483611f3d565b91509150818190610d085760405162461bcd60e51b81526004016101f39190612d9e565b506000610d188460e00151610a44565b805190915063436f726514610d6f5760405162461bcd60e51b815260206004820152600e60248201527f496e76616c6964204d6f64756c6500000000000000000000000000000000000060448201526064016101f3565b60005461ffff1661ffff16816040015161ffff1614610dc05760405162461bcd60e51b815260206004820152600d60248201526c24b73b30b634b21021b430b4b760991b60448201526064016101f3565b610de48461014001516000908152600560205260409020805460ff19166001179055565b610df181606001516120ba565b5050505050565b6000610e038261157b565b9050600080610e1183611f3d565b91509150818190610e355760405162461bcd60e51b81526004016101f39190612d9e565b506000610e458460e00151610810565b805190915063436f726514610e9c5760405162461bcd60e51b815260206004820152600e60248201527f696e76616c6964204d6f64756c6500000000000000000000000000000000000060448201526064016101f3565b60005461ffff1661ffff16816040015161ffff161480610ec25750604081015161ffff16155b610efe5760405162461bcd60e51b815260206004820152600d60248201526c34b73b30b634b21021b430b4b760991b60448201526064016101f3565b60608101515151610f515760405162461bcd60e51b815260206004820152601960248201527f6e657720677561726469616e2073657420697320656d7074790000000000000060448201526064016101f3565b60035463ffffffff16610f65906001612f8b565b63ffffffff16816080015163ffffffff1614610fe95760405162461bcd60e51b815260206004820152602160248201527f696e646578206d75737420696e63726561736520696e207374657073206f662060448201527f310000000000000000000000000000000000000000000000000000000000000060648201526084016101f3565b61100d8461014001516000908152600560205260409020805460ff19166001179055565b61102461101f60035463ffffffff1690565b612215565b6110368160600151826080015161224d565b60808101516003805463ffffffff191663ffffffff909216919091179055610df1565b60006060600061106d846101000151611c33565b8051519091506110b95760006040518060400160405280601481526020017f696e76616c696420677561726469616e207365740000000000000000000000008152509250925050915091565b60035463ffffffff1663ffffffff1684610100015163ffffffff16141580156110eb575042816020015163ffffffff16105b156111325760006040518060400160405280601881526020017f677561726469616e2073657420686173206578706972656400000000000000008152509250925050915091565b61012084015151815151600a9060039061114c908361301b565b6111569190612ffb565b61116190600261301b565b61116b9190612ffb565b611176906001612f73565b11156111be5760006040518060400160405280600981526020017f6e6f2071756f72756d00000000000000000000000000000000000000000000008152509250925050915091565b6000806111d68661014001518761012001518561137b565b91509150816111ec576000969095509350505050565b60016040518060200160405280600081525094509450505050915091565b60006112158261157b565b905060008061122383611f3d565b915091508181906112475760405162461bcd60e51b81526004016101f39190612d9e565b5060006112578460e001516106a8565b805190915063436f7265146112ae5760405162461bcd60e51b815260206004820152600e60248201527f696e76616c6964204d6f64756c6500000000000000000000000000000000000060448201526064016101f3565b60005461ffff1661ffff16816040015161ffff1614806112d45750604081015161ffff16155b6113105760405162461bcd60e51b815260206004820152600d60248201526c34b73b30b634b21021b430b4b760991b60448201526064016101f3565b6113348461014001516000908152600560205260409020805460ff19166001179055565b608081015160608201516040516001600160a01b0383169180156108fc02916000818181858888f19350505050158015611372573d6000803e3d6000fd5b50505050505050565b600060606000805b855181101561155a5760008682815181106113ae57634e487b7160e01b600052603260045260246000fd5b6020026020010151905081600014806113d057508260ff16816060015160ff16115b6114425760405162461bcd60e51b815260206004820152602360248201527f7369676e617475726520696e6469636573206d75737420626520617363656e6460448201527f696e67000000000000000000000000000000000000000000000000000000000060648201526084016101f3565b6060810151865180519194509060ff851690811061147057634e487b7160e01b600052603260045260246000fd5b60200260200101516001600160a01b0316600189836040015184600001518560200151604051600081526020016040526040516114c9949392919093845260ff9290921660208401526040830152606082015260800190565b6020604051602081039080840390855afa1580156114eb573d6000803e3d6000fd5b505050602060405103516001600160a01b0316146115475760006040518060400160405280601481526020017f564d207369676e617475726520696e76616c696400000000000000000000000081525094509450505050611573565b508061155281613081565b915050611383565b5060016040518060200160405280600081525092509250505b935093915050565b604080516101608101825260008082526020820181905291810182905260608082018390526080820183905260a0820183905260c0820183905260e0820181905261010082018390526101208201526101408101829052906115dd8382611d38565b60ff1682526115ed600182612f73565b9050816000015160ff166001146116465760405162461bcd60e51b815260206004820152601760248201527f564d2076657273696f6e20696e636f6d70617469626c6500000000000000000060448201526064016101f3565b6116508382611e61565b63ffffffff16610100830152611667600482612f73565b905060006116758483611d38565b60ff169050611685600183612f73565b91508067ffffffffffffffff8111156116ae57634e487b7160e01b600052604160045260246000fd5b60405190808252806020026020018201604052801561170057816020015b6040805160808101825260008082526020808301829052928201819052606082015282526000199092019101816116cc5790505b5061012084015260005b8181101561186f5761171c8584611d38565b846101200151828151811061174157634e487b7160e01b600052603260045260246000fd5b602090810291909101015160ff909116606090910152611762600184612f73565b925061176e8584611cd2565b846101200151828151811061179357634e487b7160e01b600052603260045260246000fd5b602002602001015160000181815250506020836117b09190612f73565b92506117bc8584611cd2565b84610120015182815181106117e157634e487b7160e01b600052603260045260246000fd5b602002602001015160200181815250506020836117fe9190612f73565b925061180a8584611d38565b61181590601b612fd6565b846101200151828151811061183a57634e487b7160e01b600052603260045260246000fd5b602090810291909101015160ff90911660409091015261185b600184612f73565b92508061186781613081565b91505061170a565b50600061188b83848751611883919061303a565b8791906122a1565b905080805190602001206040516020016118a791815260200190565b60408051601f1981840301815291905280516020909101206101408501526118cf8584611e61565b63ffffffff1660208501526118e5600484612f73565b92506118f18584611e61565b63ffffffff166040850152611907600484612f73565b92506119138584611d9e565b61ffff166060850152611927600284612f73565b92506119338584611cd2565b6080850152611943602084612f73565b925061194f85846123c9565b67ffffffffffffffff1660a0850152611969600884612f73565b92506119758584611d38565b60ff1660c0850152611988600184612f73565b925061199b83848751611883919061303a565b60e085015250919392505050565b60006119b460075490565b3414611a025760405162461bcd60e51b815260206004820152600b60248201527f696e76616c69642066656500000000000000000000000000000000000000000060448201526064016101f3565b611a0b3361242f565b9050336001600160a01b03167f6eb224fb001ed210e379b335e35efe88672a8ce935d981a6896b27ffdf52a3b282868686604051611a4c9493929190612e6b565b60405180910390a29392505050565b604080516101608101825260008082526020820181905291810182905260608082018390526080820183905260a0820183905260c0820183905260e08201819052610100820183905261012082015261014081019190915260006060611af685858080601f01602080910402602001604051908101604052809392919081815260200183838082843760009201919091525061157b92505050565b9250611b0183611059565b93969095509293505050565b6000611b188261157b565b9050600080611b2683611f3d565b91509150818190611b4a5760405162461bcd60e51b81526004016101f39190612d9e565b506000611b5a8460e00151610b8c565b805190915063436f726514611bb15760405162461bcd60e51b815260206004820152600e60248201527f496e76616c6964204d6f64756c6500000000000000000000000000000000000060448201526064016101f3565b60005461ffff1661ffff16816040015161ffff1614611c025760405162461bcd60e51b815260206004820152600d60248201526c24b73b30b634b21021b430b4b760991b60448201526064016101f3565b611c268461014001516000908152600560205260409020805460ff19166001179055565b610df18160600151600755565b60408051808201825260608082526000602080840182905263ffffffff86168252600281529084902084518154928302810184018652948501828152939493909284928491840182828015611cb157602002820191906000526020600020905b81546001600160a01b03168152600190910190602001808311611c93575b50505091835250506001919091015463ffffffff1660209091015292915050565b6000611cdf826020612f73565b83511015611d2f5760405162461bcd60e51b815260206004820152601560248201527f746f427974657333325f6f75744f66426f756e6473000000000000000000000060448201526064016101f3565b50016020015190565b6000611d45826001612f73565b83511015611d955760405162461bcd60e51b815260206004820152601360248201527f746f55696e74385f6f75744f66426f756e64730000000000000000000000000060448201526064016101f3565b50016001015190565b6000611dab826002612f73565b83511015611dfb5760405162461bcd60e51b815260206004820152601460248201527f746f55696e7431365f6f75744f66426f756e647300000000000000000000000060448201526064016101f3565b50016002015190565b6000611e11826020612f73565b83511015611d2f5760405162461bcd60e51b815260206004820152601560248201527f746f55696e743235365f6f75744f66426f756e6473000000000000000000000060448201526064016101f3565b6000611e6e826004612f73565b83511015611ebe5760405162461bcd60e51b815260206004820152601460248201527f746f55696e7433325f6f75744f66426f756e647300000000000000000000000060448201526064016101f3565b50016004015190565b6000611ed4826014612f73565b83511015611f245760405162461bcd60e51b815260206004820152601560248201527f746f416464726573735f6f75744f66426f756e6473000000000000000000000060448201526064016101f3565b5001602001516c01000000000000000000000000900490565b60006060600080611f4d85611059565b9150915081611f625760009590945092505050565b60035463ffffffff1663ffffffff1685610100015163ffffffff1614611fa85760006040518060600160405280602281526020016130c960229139935093505050915091565b60005462010000900461ffff1661ffff16856060015161ffff161461200a5760006040518060400160405280601681526020017f77726f6e6720676f7665726e616e636520636861696e00000000000000000000815250935093505050915091565b60015485608001511461205a5760006040518060400160405280601981526020017f77726f6e6720676f7665726e616e636520636f6e747261637400000000000000815250935093505050915091565b61014085015160009081526005602052604090205460ff161561209d5760006040518060600160405280602281526020016130eb60229139935093505050915091565b600160405180602001604052806000815250935093505050915091565b60006120ed7f360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc546001600160a01b031690565b90506120f8826124a1565b60408051600481526024810182526020810180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff167f8129fc1c00000000000000000000000000000000000000000000000000000000179052905160009182916001600160a01b0386169161216991612d67565b600060405180830381855af49150503d80600081146121a4576040519150601f19603f3d011682016040523d82523d6000602084013e6121a9565b606091505b50915091508181906121ce5760405162461bcd60e51b81526004016101f39190612d9e565b50836001600160a01b0316836001600160a01b03167f2e4cc16c100f0b55e2df82ab0b1a7e294aa9cbd01b48fbaf622683fbc0507a4960405160405180910390a350505050565b6122224262015180612f8b565b63ffffffff9182166000908152600260205260409020600101805463ffffffff191691909216179055565b63ffffffff811660009081526002602090815260409091208351805185936122799284929101906125fd565b50602091909101516001909101805463ffffffff191663ffffffff9092169190911790555050565b6060816122af81601f612f73565b10156122fd5760405162461bcd60e51b815260206004820152600e60248201527f736c6963655f6f766572666c6f7700000000000000000000000000000000000060448201526064016101f3565b6123078284612f73565b845110156123575760405162461bcd60e51b815260206004820152601160248201527f736c6963655f6f75744f66426f756e647300000000000000000000000000000060448201526064016101f3565b60608215801561237657604051915060008252602082016040526123c0565b6040519150601f8416801560200281840101858101878315602002848b0101015b818310156123af578051835260209283019201612397565b5050858452601f01601f1916604052505b50949350505050565b60006123d6826008612f73565b835110156124265760405162461bcd60e51b815260206004820152601460248201527f746f55696e7436345f6f75744f66426f756e647300000000000000000000000060448201526064016101f3565b50016008015190565b6001600160a01b03811660009081526004602052604090205467ffffffffffffffff1661249c82612461836001612fb3565b6001600160a01b03919091166000908152600460205260409020805467ffffffffffffffff191667ffffffffffffffff909216919091179055565b919050565b6124aa816124e1565b6040516001600160a01b038216907fbc7cd75a20ee27fd9adebab32041f755214dbc6bffa90cc0225b39da2e5c2d3b90600090a250565b803b6125555760405162461bcd60e51b815260206004820152602d60248201527f455243313936373a206e657720696d706c656d656e746174696f6e206973206e60448201527f6f74206120636f6e74726163740000000000000000000000000000000000000060648201526084016101f3565b7f360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0392909216919091179055565b6040518060a0016040528060008019168152602001600060ff168152602001600061ffff1681526020016125f0604051806040016040528060608152602001600063ffffffff1681525090565b8152600060209091015290565b82805482825590600052602060002090810192821561265f579160200282015b8281111561265f578251825473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0390911617825560209092019160019091019061261d565b5061266b92915061266f565b5090565b5b8082111561266b5760008155600101612670565b80356001600160a01b038116811461249c57600080fd5b600082601f8301126126ab578081fd5b813560206126c06126bb83612f4f565b612f1e565b80838252828201915082860187848660071b89010111156126df578586fd5b855b8581101561274257608080838b0312156126f9578788fd5b612701612eae565b833581528684013587820152604061271a8186016127f8565b90820152606061272b8582016127f8565b9082015285529385019391909101906001016126e1565b5090979650505050505050565b600082601f83011261275f578081fd5b813567ffffffffffffffff811115612779576127796130b2565b61278c601f8201601f1916602001612f1e565b8181528460208386010111156127a0578283fd5b816020850160208301379081016020019190915292915050565b803561ffff8116811461249c57600080fd5b803563ffffffff8116811461249c57600080fd5b803567ffffffffffffffff8116811461249c57600080fd5b803560ff8116811461249c57600080fd5b60006020828403121561281a578081fd5b61282382612684565b9392505050565b60006020828403121561283b578081fd5b5035919050565b600080600060608486031215612856578182fd5b8335925060208085013567ffffffffffffffff80821115612875578485fd5b6128818883890161269b565b94506040870135915080821115612896578384fd5b90860190604082890312156128a9578384fd5b6128b1612ed7565b8235828111156128bf578586fd5b83019150601f820189136128d1578485fd5b81356128df6126bb82612f4f565b8082825286820191508685018c888560051b88010111156128fe578889fd5b8895505b838610156129275761291381612684565b835260019590950194918701918701612902565b5083525061293890508385016127cc565b84820152809450505050509250925092565b6000806020838503121561295c578182fd5b823567ffffffffffffffff80821115612973578384fd5b818501915085601f830112612986578384fd5b813581811115612994578485fd5b8660208285010111156129a5578485fd5b60209290920196919550909350505050565b6000602082840312156129c8578081fd5b813567ffffffffffffffff8111156129de578182fd5b6129ea8482850161274f565b949350505050565b600060208284031215612a03578081fd5b813567ffffffffffffffff80821115612a1a578283fd5b908301906101608286031215612a2e578283fd5b612a36612efa565b612a3f836127f8565b8152612a4d602084016127cc565b6020820152612a5e604084016127cc565b6040820152612a6f606084016127ba565b606082015260808301356080820152612a8a60a084016127e0565b60a0820152612a9b60c084016127f8565b60c082015260e083013582811115612ab1578485fd5b612abd8782860161274f565b60e083015250610100612ad18185016127cc565b908201526101208381013583811115612ae8578586fd5b612af48882870161269b565b91830191909152506101409283013592810192909252509392505050565b600060208284031215612b23578081fd5b612823826127cc565b600080600060608486031215612b40578081fd5b612b49846127cc565b9250602084013567ffffffffffffffff811115612b64578182fd5b612b708682870161274f565b925050612b7f604085016127f8565b90509250925092565b6000815180845260208085019450808401835b83811015612be057815180518852838101518489015260408082015160ff908116918a0191909152606091820151169088015260809096019590820190600101612b9b565b509495945050505050565b60008151808452612c03816020860160208601613051565b601f01601f19169290920160200192915050565b805160408084528151908401819052600091602091908201906060860190845b81811015612c5c5783516001600160a01b031683529284019291840191600101612c37565b50509382015163ffffffff16949091019390935250919050565b805160ff16825260006101606020830151612c99602086018263ffffffff169052565b506040830151612cb1604086018263ffffffff169052565b506060830151612cc7606086018261ffff169052565b506080830151608085015260a0830151612ced60a086018267ffffffffffffffff169052565b5060c0830151612d0260c086018260ff169052565b5060e08301518160e0860152612d1a82860182612beb565b91505061010080840151612d358287018263ffffffff169052565b50506101208084015185830382870152612d4f8382612b88565b61014095860151969095019590955250919392505050565b60008251612d79818460208701613051565b9190910192915050565b82151581526040602082015260006129ea6040830184612beb565b6020815260006128236020830184612beb565b602081528151602082015260ff602083015116604082015261ffff60408301511660608201526000606083015160a06080840152612df260c0840182612c17565b905063ffffffff60808501511660a08401528091505092915050565b6020815260006128236020830184612c17565b6020815260006128236020830184612c76565b606081526000612e476060830186612c76565b84151560208401528281036040840152612e618185612beb565b9695505050505050565b67ffffffffffffffff8516815263ffffffff84166020820152608060408201526000612e9a6080830185612beb565b905060ff8316606083015295945050505050565b6040516080810167ffffffffffffffff81118282101715612ed157612ed16130b2565b60405290565b6040805190810167ffffffffffffffff81118282101715612ed157612ed16130b2565b604051610160810167ffffffffffffffff81118282101715612ed157612ed16130b2565b604051601f8201601f1916810167ffffffffffffffff81118282101715612f4757612f476130b2565b604052919050565b600067ffffffffffffffff821115612f6957612f696130b2565b5060051b60200190565b60008219821115612f8657612f8661309c565b500190565b600063ffffffff808316818516808303821115612faa57612faa61309c565b01949350505050565b600067ffffffffffffffff808316818516808303821115612faa57612faa61309c565b600060ff821660ff84168060ff03821115612ff357612ff361309c565b019392505050565b60008261301657634e487b7160e01b81526012600452602481fd5b500490565b60008160001904831182151516156130355761303561309c565b500290565b60008282101561304c5761304c61309c565b500390565b60005b8381101561306c578181015183820152602001613054565b8381111561307b576000848401525b50505050565b60006000198214156130955761309561309c565b5060010190565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052604160045260246000fdfe6e6f74207369676e65642062792063757272656e7420677561726469616e20736574676f7665726e616e636520616374696f6e20616c726561647920636f6e73756d6564a264697066735822122039ddb3c7b525e30d42b7da53b7f81221d7c1a7c41b9359397f512f27e590de1164736f6c63430008040033
Deployed Bytecode
0x6080604052600436106101845760003560e01c806393df337e116100d6578063c0fd8bde1161007f578063f42bc64111610059578063f42bc6411461063c578063f951975a1461065c578063fbe3c2cd14610689576101fc565b8063c0fd8bde146105b1578063d60b347f146105e0578063eb8d3f1214610619576101fc565b8063a9e11893116100b0578063a9e118931461055c578063b172b22214610589578063b19a437e1461059e576101fc565b806393df337e146104f45780639a8a059214610514578063a0cce1b31461053c576101fc565b80634cf842b5116101385780635cb8cae2116101125780635cb8cae2146104845780636606b4e0146104a6578063875be02a146104c6576101fc565b80634cf842b51461036e5780634fdc60fa146103c7578063515f32471461042a576101fc565b80631a90a219116101695780631a90a219146102e35780631cfe7951146103025780632c3c02a41461032e576101fc565b80630319e59c1461024457806304ca84cf146102b6576101fc565b366101fc5760405162461bcd60e51b815260206004820152602c60248201527f74686520576f726d686f6c6520636f6e747261637420646f6573206e6f74206160448201527f636365707420617373657473000000000000000000000000000000000000000060648201526084015b60405180910390fd5b60405162461bcd60e51b815260206004820152600b60248201527f756e737570706f7274656400000000000000000000000000000000000000000060448201526064016101f3565b34801561025057600080fd5b5061026461025f3660046129b7565b6106a8565b6040516102ad9190600060a0820190508251825260ff602084015116602083015261ffff6040840151166040830152606083015160608301526080830151608083015292915050565b60405180910390f35b3480156102c257600080fd5b506102d66102d13660046129b7565b610810565b6040516102ad9190612db1565b3480156102ef57600080fd5b506007545b6040519081526020016102ad565b34801561030e57600080fd5b5060035463ffffffff165b60405163ffffffff90911681526020016102ad565b34801561033a57600080fd5b5061035e61034936600461282a565b60009081526005602052604090205460ff1690565b60405190151581526020016102ad565b34801561037a57600080fd5b506103ae610389366004612809565b6001600160a01b031660009081526004602052604090205467ffffffffffffffff1690565b60405167ffffffffffffffff90911681526020016102ad565b3480156103d357600080fd5b506103e76103e23660046129b7565b610a44565b6040516102ad91908151815260208083015160ff169082015260408083015161ffff16908201526060918201516001600160a01b03169181019190915260800190565b34801561043657600080fd5b5061044a6104453660046129b7565b610b8c565b6040516102ad91908151815260208083015160ff169082015260408083015161ffff16908201526060918201519181019190915260800190565b34801561049057600080fd5b506104a461049f3660046129b7565b610ccb565b005b3480156104b257600080fd5b506104a46104c13660046129b7565b610df8565b3480156104d257600080fd5b506104e66104e13660046129f2565b611059565b6040516102ad929190612d83565b34801561050057600080fd5b506104a461050f3660046129b7565b61120a565b34801561052057600080fd5b5060005461ffff165b60405161ffff90911681526020016102ad565b34801561054857600080fd5b506104e6610557366004612842565b61137b565b34801561056857600080fd5b5061057c6105773660046129b7565b61157b565b6040516102ad9190612e21565b34801561059557600080fd5b506001546102f4565b6103ae6105ac366004612b2c565b6119a9565b3480156105bd57600080fd5b506105d16105cc36600461294a565b611a5b565b6040516102ad93929190612e34565b3480156105ec57600080fd5b5061035e6105fb366004612809565b6001600160a01b031660009081526006602052604090205460ff1690565b34801561062557600080fd5b50600354640100000000900463ffffffff16610319565b34801561064857600080fd5b506104a46106573660046129b7565b611b0d565b34801561066857600080fd5b5061067c610677366004612b12565b611c33565b6040516102ad9190612e0e565b34801561069557600080fd5b5060005462010000900461ffff16610529565b6040805160a0810182526000808252602082018190529181018290526060810182905260808101829052906106dd8382611cd2565b82526106ea602082612f73565b90506106f68382611d38565b60ff166020830152610709600182612f73565b9050816020015160ff166004146107625760405162461bcd60e51b815260206004820152601460248201527f696e76616c6964205472616e736665724665657300000000000000000000000060448201526064016101f3565b61076c8382611d9e565b61ffff166040830152610780600282612f73565b905061078c8382611e04565b606083015261079c602082612f73565b90506107a88382611cd2565b60808301526107b8602082612f73565b90508083511461080a5760405162461bcd60e51b815260206004820152601460248201527f696e76616c6964205472616e736665724665657300000000000000000000000060448201526064016101f3565b50919050565b6108186125a3565b60006108248382611cd2565b8252610831602082612f73565b905061083d8382611d38565b60ff166020830152610850600182612f73565b9050816020015160ff166002146108a95760405162461bcd60e51b815260206004820152601a60248201527f696e76616c696420477561726469616e5365745570677261646500000000000060448201526064016101f3565b6108b38382611d9e565b61ffff1660408301526108c7600282612f73565b90506108d38382611e61565b63ffffffff1660808301526108e9600482612f73565b905060006108f78483611d38565b9050610904600183612f73565b915060405180604001604052808260ff1667ffffffffffffffff81111561093b57634e487b7160e01b600052604160045260246000fd5b604051908082528060200260200182016040528015610964578160200160208202803683370190505b5081526000602090910181905260608501919091525b8160ff168110156109ec5761098f8584611ec7565b6060850151518051839081106109b557634e487b7160e01b600052603260045260246000fd5b6001600160a01b03909216602092830291909101909101526109d8601484612f73565b9250806109e481613081565b91505061097a565b5081845114610a3d5760405162461bcd60e51b815260206004820152601a60248201527f696e76616c696420477561726469616e5365745570677261646500000000000060448201526064016101f3565b5050919050565b604080516080810182526000808252602082018190529181018290526060810182905290610a728382611cd2565b8252610a7f602082612f73565b9050610a8b8382611d38565b60ff166020830152610a9e600182612f73565b9050816020015160ff16600114610af75760405162461bcd60e51b815260206004820152601760248201527f696e76616c696420436f6e74726163745570677261646500000000000000000060448201526064016101f3565b610b018382611d9e565b61ffff166040830152610b15600282612f73565b9050610b218382611cd2565b6001600160a01b03166060830152610b3a602082612f73565b90508083511461080a5760405162461bcd60e51b815260206004820152601760248201527f696e76616c696420436f6e74726163745570677261646500000000000000000060448201526064016101f3565b604080516080810182526000808252602082018190529181018290526060810182905290610bba8382611cd2565b8252610bc7602082612f73565b9050610bd38382611d38565b60ff166020830152610be6600182612f73565b9050816020015160ff16600314610c3f5760405162461bcd60e51b815260206004820152601560248201527f696e76616c6964205365744d657373616765466565000000000000000000000060448201526064016101f3565b610c498382611d9e565b61ffff166040830152610c5d600282612f73565b9050610c698382611e04565b6060830152610c79602082612f73565b90508083511461080a5760405162461bcd60e51b815260206004820152601560248201527f696e76616c6964205365744d657373616765466565000000000000000000000060448201526064016101f3565b6000610cd68261157b565b9050600080610ce483611f3d565b91509150818190610d085760405162461bcd60e51b81526004016101f39190612d9e565b506000610d188460e00151610a44565b805190915063436f726514610d6f5760405162461bcd60e51b815260206004820152600e60248201527f496e76616c6964204d6f64756c6500000000000000000000000000000000000060448201526064016101f3565b60005461ffff1661ffff16816040015161ffff1614610dc05760405162461bcd60e51b815260206004820152600d60248201526c24b73b30b634b21021b430b4b760991b60448201526064016101f3565b610de48461014001516000908152600560205260409020805460ff19166001179055565b610df181606001516120ba565b5050505050565b6000610e038261157b565b9050600080610e1183611f3d565b91509150818190610e355760405162461bcd60e51b81526004016101f39190612d9e565b506000610e458460e00151610810565b805190915063436f726514610e9c5760405162461bcd60e51b815260206004820152600e60248201527f696e76616c6964204d6f64756c6500000000000000000000000000000000000060448201526064016101f3565b60005461ffff1661ffff16816040015161ffff161480610ec25750604081015161ffff16155b610efe5760405162461bcd60e51b815260206004820152600d60248201526c34b73b30b634b21021b430b4b760991b60448201526064016101f3565b60608101515151610f515760405162461bcd60e51b815260206004820152601960248201527f6e657720677561726469616e2073657420697320656d7074790000000000000060448201526064016101f3565b60035463ffffffff16610f65906001612f8b565b63ffffffff16816080015163ffffffff1614610fe95760405162461bcd60e51b815260206004820152602160248201527f696e646578206d75737420696e63726561736520696e207374657073206f662060448201527f310000000000000000000000000000000000000000000000000000000000000060648201526084016101f3565b61100d8461014001516000908152600560205260409020805460ff19166001179055565b61102461101f60035463ffffffff1690565b612215565b6110368160600151826080015161224d565b60808101516003805463ffffffff191663ffffffff909216919091179055610df1565b60006060600061106d846101000151611c33565b8051519091506110b95760006040518060400160405280601481526020017f696e76616c696420677561726469616e207365740000000000000000000000008152509250925050915091565b60035463ffffffff1663ffffffff1684610100015163ffffffff16141580156110eb575042816020015163ffffffff16105b156111325760006040518060400160405280601881526020017f677561726469616e2073657420686173206578706972656400000000000000008152509250925050915091565b61012084015151815151600a9060039061114c908361301b565b6111569190612ffb565b61116190600261301b565b61116b9190612ffb565b611176906001612f73565b11156111be5760006040518060400160405280600981526020017f6e6f2071756f72756d00000000000000000000000000000000000000000000008152509250925050915091565b6000806111d68661014001518761012001518561137b565b91509150816111ec576000969095509350505050565b60016040518060200160405280600081525094509450505050915091565b60006112158261157b565b905060008061122383611f3d565b915091508181906112475760405162461bcd60e51b81526004016101f39190612d9e565b5060006112578460e001516106a8565b805190915063436f7265146112ae5760405162461bcd60e51b815260206004820152600e60248201527f696e76616c6964204d6f64756c6500000000000000000000000000000000000060448201526064016101f3565b60005461ffff1661ffff16816040015161ffff1614806112d45750604081015161ffff16155b6113105760405162461bcd60e51b815260206004820152600d60248201526c34b73b30b634b21021b430b4b760991b60448201526064016101f3565b6113348461014001516000908152600560205260409020805460ff19166001179055565b608081015160608201516040516001600160a01b0383169180156108fc02916000818181858888f19350505050158015611372573d6000803e3d6000fd5b50505050505050565b600060606000805b855181101561155a5760008682815181106113ae57634e487b7160e01b600052603260045260246000fd5b6020026020010151905081600014806113d057508260ff16816060015160ff16115b6114425760405162461bcd60e51b815260206004820152602360248201527f7369676e617475726520696e6469636573206d75737420626520617363656e6460448201527f696e67000000000000000000000000000000000000000000000000000000000060648201526084016101f3565b6060810151865180519194509060ff851690811061147057634e487b7160e01b600052603260045260246000fd5b60200260200101516001600160a01b0316600189836040015184600001518560200151604051600081526020016040526040516114c9949392919093845260ff9290921660208401526040830152606082015260800190565b6020604051602081039080840390855afa1580156114eb573d6000803e3d6000fd5b505050602060405103516001600160a01b0316146115475760006040518060400160405280601481526020017f564d207369676e617475726520696e76616c696400000000000000000000000081525094509450505050611573565b508061155281613081565b915050611383565b5060016040518060200160405280600081525092509250505b935093915050565b604080516101608101825260008082526020820181905291810182905260608082018390526080820183905260a0820183905260c0820183905260e0820181905261010082018390526101208201526101408101829052906115dd8382611d38565b60ff1682526115ed600182612f73565b9050816000015160ff166001146116465760405162461bcd60e51b815260206004820152601760248201527f564d2076657273696f6e20696e636f6d70617469626c6500000000000000000060448201526064016101f3565b6116508382611e61565b63ffffffff16610100830152611667600482612f73565b905060006116758483611d38565b60ff169050611685600183612f73565b91508067ffffffffffffffff8111156116ae57634e487b7160e01b600052604160045260246000fd5b60405190808252806020026020018201604052801561170057816020015b6040805160808101825260008082526020808301829052928201819052606082015282526000199092019101816116cc5790505b5061012084015260005b8181101561186f5761171c8584611d38565b846101200151828151811061174157634e487b7160e01b600052603260045260246000fd5b602090810291909101015160ff909116606090910152611762600184612f73565b925061176e8584611cd2565b846101200151828151811061179357634e487b7160e01b600052603260045260246000fd5b602002602001015160000181815250506020836117b09190612f73565b92506117bc8584611cd2565b84610120015182815181106117e157634e487b7160e01b600052603260045260246000fd5b602002602001015160200181815250506020836117fe9190612f73565b925061180a8584611d38565b61181590601b612fd6565b846101200151828151811061183a57634e487b7160e01b600052603260045260246000fd5b602090810291909101015160ff90911660409091015261185b600184612f73565b92508061186781613081565b91505061170a565b50600061188b83848751611883919061303a565b8791906122a1565b905080805190602001206040516020016118a791815260200190565b60408051601f1981840301815291905280516020909101206101408501526118cf8584611e61565b63ffffffff1660208501526118e5600484612f73565b92506118f18584611e61565b63ffffffff166040850152611907600484612f73565b92506119138584611d9e565b61ffff166060850152611927600284612f73565b92506119338584611cd2565b6080850152611943602084612f73565b925061194f85846123c9565b67ffffffffffffffff1660a0850152611969600884612f73565b92506119758584611d38565b60ff1660c0850152611988600184612f73565b925061199b83848751611883919061303a565b60e085015250919392505050565b60006119b460075490565b3414611a025760405162461bcd60e51b815260206004820152600b60248201527f696e76616c69642066656500000000000000000000000000000000000000000060448201526064016101f3565b611a0b3361242f565b9050336001600160a01b03167f6eb224fb001ed210e379b335e35efe88672a8ce935d981a6896b27ffdf52a3b282868686604051611a4c9493929190612e6b565b60405180910390a29392505050565b604080516101608101825260008082526020820181905291810182905260608082018390526080820183905260a0820183905260c0820183905260e08201819052610100820183905261012082015261014081019190915260006060611af685858080601f01602080910402602001604051908101604052809392919081815260200183838082843760009201919091525061157b92505050565b9250611b0183611059565b93969095509293505050565b6000611b188261157b565b9050600080611b2683611f3d565b91509150818190611b4a5760405162461bcd60e51b81526004016101f39190612d9e565b506000611b5a8460e00151610b8c565b805190915063436f726514611bb15760405162461bcd60e51b815260206004820152600e60248201527f496e76616c6964204d6f64756c6500000000000000000000000000000000000060448201526064016101f3565b60005461ffff1661ffff16816040015161ffff1614611c025760405162461bcd60e51b815260206004820152600d60248201526c24b73b30b634b21021b430b4b760991b60448201526064016101f3565b611c268461014001516000908152600560205260409020805460ff19166001179055565b610df18160600151600755565b60408051808201825260608082526000602080840182905263ffffffff86168252600281529084902084518154928302810184018652948501828152939493909284928491840182828015611cb157602002820191906000526020600020905b81546001600160a01b03168152600190910190602001808311611c93575b50505091835250506001919091015463ffffffff1660209091015292915050565b6000611cdf826020612f73565b83511015611d2f5760405162461bcd60e51b815260206004820152601560248201527f746f427974657333325f6f75744f66426f756e6473000000000000000000000060448201526064016101f3565b50016020015190565b6000611d45826001612f73565b83511015611d955760405162461bcd60e51b815260206004820152601360248201527f746f55696e74385f6f75744f66426f756e64730000000000000000000000000060448201526064016101f3565b50016001015190565b6000611dab826002612f73565b83511015611dfb5760405162461bcd60e51b815260206004820152601460248201527f746f55696e7431365f6f75744f66426f756e647300000000000000000000000060448201526064016101f3565b50016002015190565b6000611e11826020612f73565b83511015611d2f5760405162461bcd60e51b815260206004820152601560248201527f746f55696e743235365f6f75744f66426f756e6473000000000000000000000060448201526064016101f3565b6000611e6e826004612f73565b83511015611ebe5760405162461bcd60e51b815260206004820152601460248201527f746f55696e7433325f6f75744f66426f756e647300000000000000000000000060448201526064016101f3565b50016004015190565b6000611ed4826014612f73565b83511015611f245760405162461bcd60e51b815260206004820152601560248201527f746f416464726573735f6f75744f66426f756e6473000000000000000000000060448201526064016101f3565b5001602001516c01000000000000000000000000900490565b60006060600080611f4d85611059565b9150915081611f625760009590945092505050565b60035463ffffffff1663ffffffff1685610100015163ffffffff1614611fa85760006040518060600160405280602281526020016130c960229139935093505050915091565b60005462010000900461ffff1661ffff16856060015161ffff161461200a5760006040518060400160405280601681526020017f77726f6e6720676f7665726e616e636520636861696e00000000000000000000815250935093505050915091565b60015485608001511461205a5760006040518060400160405280601981526020017f77726f6e6720676f7665726e616e636520636f6e747261637400000000000000815250935093505050915091565b61014085015160009081526005602052604090205460ff161561209d5760006040518060600160405280602281526020016130eb60229139935093505050915091565b600160405180602001604052806000815250935093505050915091565b60006120ed7f360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc546001600160a01b031690565b90506120f8826124a1565b60408051600481526024810182526020810180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff167f8129fc1c00000000000000000000000000000000000000000000000000000000179052905160009182916001600160a01b0386169161216991612d67565b600060405180830381855af49150503d80600081146121a4576040519150601f19603f3d011682016040523d82523d6000602084013e6121a9565b606091505b50915091508181906121ce5760405162461bcd60e51b81526004016101f39190612d9e565b50836001600160a01b0316836001600160a01b03167f2e4cc16c100f0b55e2df82ab0b1a7e294aa9cbd01b48fbaf622683fbc0507a4960405160405180910390a350505050565b6122224262015180612f8b565b63ffffffff9182166000908152600260205260409020600101805463ffffffff191691909216179055565b63ffffffff811660009081526002602090815260409091208351805185936122799284929101906125fd565b50602091909101516001909101805463ffffffff191663ffffffff9092169190911790555050565b6060816122af81601f612f73565b10156122fd5760405162461bcd60e51b815260206004820152600e60248201527f736c6963655f6f766572666c6f7700000000000000000000000000000000000060448201526064016101f3565b6123078284612f73565b845110156123575760405162461bcd60e51b815260206004820152601160248201527f736c6963655f6f75744f66426f756e647300000000000000000000000000000060448201526064016101f3565b60608215801561237657604051915060008252602082016040526123c0565b6040519150601f8416801560200281840101858101878315602002848b0101015b818310156123af578051835260209283019201612397565b5050858452601f01601f1916604052505b50949350505050565b60006123d6826008612f73565b835110156124265760405162461bcd60e51b815260206004820152601460248201527f746f55696e7436345f6f75744f66426f756e647300000000000000000000000060448201526064016101f3565b50016008015190565b6001600160a01b03811660009081526004602052604090205467ffffffffffffffff1661249c82612461836001612fb3565b6001600160a01b03919091166000908152600460205260409020805467ffffffffffffffff191667ffffffffffffffff909216919091179055565b919050565b6124aa816124e1565b6040516001600160a01b038216907fbc7cd75a20ee27fd9adebab32041f755214dbc6bffa90cc0225b39da2e5c2d3b90600090a250565b803b6125555760405162461bcd60e51b815260206004820152602d60248201527f455243313936373a206e657720696d706c656d656e746174696f6e206973206e60448201527f6f74206120636f6e74726163740000000000000000000000000000000000000060648201526084016101f3565b7f360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0392909216919091179055565b6040518060a0016040528060008019168152602001600060ff168152602001600061ffff1681526020016125f0604051806040016040528060608152602001600063ffffffff1681525090565b8152600060209091015290565b82805482825590600052602060002090810192821561265f579160200282015b8281111561265f578251825473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0390911617825560209092019160019091019061261d565b5061266b92915061266f565b5090565b5b8082111561266b5760008155600101612670565b80356001600160a01b038116811461249c57600080fd5b600082601f8301126126ab578081fd5b813560206126c06126bb83612f4f565b612f1e565b80838252828201915082860187848660071b89010111156126df578586fd5b855b8581101561274257608080838b0312156126f9578788fd5b612701612eae565b833581528684013587820152604061271a8186016127f8565b90820152606061272b8582016127f8565b9082015285529385019391909101906001016126e1565b5090979650505050505050565b600082601f83011261275f578081fd5b813567ffffffffffffffff811115612779576127796130b2565b61278c601f8201601f1916602001612f1e565b8181528460208386010111156127a0578283fd5b816020850160208301379081016020019190915292915050565b803561ffff8116811461249c57600080fd5b803563ffffffff8116811461249c57600080fd5b803567ffffffffffffffff8116811461249c57600080fd5b803560ff8116811461249c57600080fd5b60006020828403121561281a578081fd5b61282382612684565b9392505050565b60006020828403121561283b578081fd5b5035919050565b600080600060608486031215612856578182fd5b8335925060208085013567ffffffffffffffff80821115612875578485fd5b6128818883890161269b565b94506040870135915080821115612896578384fd5b90860190604082890312156128a9578384fd5b6128b1612ed7565b8235828111156128bf578586fd5b83019150601f820189136128d1578485fd5b81356128df6126bb82612f4f565b8082825286820191508685018c888560051b88010111156128fe578889fd5b8895505b838610156129275761291381612684565b835260019590950194918701918701612902565b5083525061293890508385016127cc565b84820152809450505050509250925092565b6000806020838503121561295c578182fd5b823567ffffffffffffffff80821115612973578384fd5b818501915085601f830112612986578384fd5b813581811115612994578485fd5b8660208285010111156129a5578485fd5b60209290920196919550909350505050565b6000602082840312156129c8578081fd5b813567ffffffffffffffff8111156129de578182fd5b6129ea8482850161274f565b949350505050565b600060208284031215612a03578081fd5b813567ffffffffffffffff80821115612a1a578283fd5b908301906101608286031215612a2e578283fd5b612a36612efa565b612a3f836127f8565b8152612a4d602084016127cc565b6020820152612a5e604084016127cc565b6040820152612a6f606084016127ba565b606082015260808301356080820152612a8a60a084016127e0565b60a0820152612a9b60c084016127f8565b60c082015260e083013582811115612ab1578485fd5b612abd8782860161274f565b60e083015250610100612ad18185016127cc565b908201526101208381013583811115612ae8578586fd5b612af48882870161269b565b91830191909152506101409283013592810192909252509392505050565b600060208284031215612b23578081fd5b612823826127cc565b600080600060608486031215612b40578081fd5b612b49846127cc565b9250602084013567ffffffffffffffff811115612b64578182fd5b612b708682870161274f565b925050612b7f604085016127f8565b90509250925092565b6000815180845260208085019450808401835b83811015612be057815180518852838101518489015260408082015160ff908116918a0191909152606091820151169088015260809096019590820190600101612b9b565b509495945050505050565b60008151808452612c03816020860160208601613051565b601f01601f19169290920160200192915050565b805160408084528151908401819052600091602091908201906060860190845b81811015612c5c5783516001600160a01b031683529284019291840191600101612c37565b50509382015163ffffffff16949091019390935250919050565b805160ff16825260006101606020830151612c99602086018263ffffffff169052565b506040830151612cb1604086018263ffffffff169052565b506060830151612cc7606086018261ffff169052565b506080830151608085015260a0830151612ced60a086018267ffffffffffffffff169052565b5060c0830151612d0260c086018260ff169052565b5060e08301518160e0860152612d1a82860182612beb565b91505061010080840151612d358287018263ffffffff169052565b50506101208084015185830382870152612d4f8382612b88565b61014095860151969095019590955250919392505050565b60008251612d79818460208701613051565b9190910192915050565b82151581526040602082015260006129ea6040830184612beb565b6020815260006128236020830184612beb565b602081528151602082015260ff602083015116604082015261ffff60408301511660608201526000606083015160a06080840152612df260c0840182612c17565b905063ffffffff60808501511660a08401528091505092915050565b6020815260006128236020830184612c17565b6020815260006128236020830184612c76565b606081526000612e476060830186612c76565b84151560208401528281036040840152612e618185612beb565b9695505050505050565b67ffffffffffffffff8516815263ffffffff84166020820152608060408201526000612e9a6080830185612beb565b905060ff8316606083015295945050505050565b6040516080810167ffffffffffffffff81118282101715612ed157612ed16130b2565b60405290565b6040805190810167ffffffffffffffff81118282101715612ed157612ed16130b2565b604051610160810167ffffffffffffffff81118282101715612ed157612ed16130b2565b604051601f8201601f1916810167ffffffffffffffff81118282101715612f4757612f476130b2565b604052919050565b600067ffffffffffffffff821115612f6957612f696130b2565b5060051b60200190565b60008219821115612f8657612f8661309c565b500190565b600063ffffffff808316818516808303821115612faa57612faa61309c565b01949350505050565b600067ffffffffffffffff808316818516808303821115612faa57612faa61309c565b600060ff821660ff84168060ff03821115612ff357612ff361309c565b019392505050565b60008261301657634e487b7160e01b81526012600452602481fd5b500490565b60008160001904831182151516156130355761303561309c565b500290565b60008282101561304c5761304c61309c565b500390565b60005b8381101561306c578181015183820152602001613054565b8381111561307b576000848401525b50505050565b60006000198214156130955761309561309c565b5060010190565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052604160045260246000fdfe6e6f74207369676e65642062792063757272656e7420677561726469616e20736574676f7665726e616e636520616374696f6e20616c726561647920636f6e73756d6564a264697066735822122039ddb3c7b525e30d42b7da53b7f81221d7c1a7c41b9359397f512f27e590de1164736f6c63430008040033
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 30 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|
[ 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.