Warning! Contract bytecode has been changed and doesn't match the verified one. Therefore, interaction with this smart contract may be risky.
- Contract name:
- SupraOraclePull
- Optimization enabled
- true
- Compiler version
- v0.8.24+commit.e11b9ed9
- Optimization runs
- 200
- Verified at
- 2024-07-09T07:31:16.021564Z
src/SupraOraclePull_V2.sol
// SPDX-License-Identifier: UNLICENSEDpragma solidity 0.8.24;import "./SupraErrors.sol";import "./Smr.sol";import "./BytesLib.sol";import {ISupraSValueFeed} from "./ISupraSValueFeed.sol";import {ISupraSValueFeedVerifier} from "./ISupraSValueFeedVerifier.sol";import {UUPSUpgradeable} from "../lib/openzeppelin-contracts/contracts/proxy/utils/UUPSUpgradeable.sol";import {MerkleProof} from "../lib/openzeppelin-contracts/contracts/utils/cryptography/MerkleProof.sol";import {EnumerableSetRing} from "./EnumerableSetRing.sol";import "../lib/openzeppelin-contracts-upgradeable/contracts/proxy/utils/Initializable.sol";import {Ownable2StepUpgradeable} from "../lib/openzeppelin-contracts-upgradeable/contracts/access/Ownable2StepUpgradeable.sol";/// @title Supra Oracle Pull Model Contract/// @notice This contract verifies DORA committee Price feeds and returns the price data to the caller/// @notice The contract does not make assumptions about its owner, but its recommended to be a multisig walletcontract SupraOraclePull is UUPSUpgradeable, Ownable2StepUpgradeable {using EnumerableSetRing for EnumerableSetRing.EnumerableSetRing;/// @notice Push Based Supra Svalue Feed Storage contract/// @dev This is used to check if a pair is staleISupraSValueFeed internal supraSValueFeedStorage;ISupraSValueFeedVerifier internal supraSValueVerifier;// Max Future time is 3sec from the current block time.uint256 public constant TIME_DELTA_ALLOWANCE = 3000;EnumerableSetRing.EnumerableSetRing private merkleSet;event SupraSValueFeedUpdated(address supraSValueFeedStorage);event SupraSValueVerifierUpdated(address supraSValueVerifier);event PriceUpdate(uint256[] pairs, uint256[] prices, uint256[] updateMask);/// @notice Price Pair Feed From Oracle Committeestruct CommitteeFeed {uint32 pair;uint128 price;uint64 timestamp;uint16 decimals;uint64 round;}
lib/openzeppelin-contracts-upgradeable/contracts/access/Ownable2StepUpgradeable.sol
// SPDX-License-Identifier: MIT// OpenZeppelin Contracts (last updated v4.9.0) (access/Ownable2Step.sol)pragma solidity ^0.8.0;import "./OwnableUpgradeable.sol";import "../proxy/utils/Initializable.sol";/*** @dev Contract module which provides access control mechanism, where* there is an account (an owner) that can be granted exclusive access to* specific functions.** By default, the owner account will be the one that deploys the contract. This* can later be changed with {transferOwnership} and {acceptOwnership}.** This module is used through inheritance. It will make available all functions* from parent (Ownable).*/abstract contract Ownable2StepUpgradeable is Initializable, OwnableUpgradeable {function __Ownable2Step_init() internal onlyInitializing {__Ownable_init_unchained();}function __Ownable2Step_init_unchained() internal onlyInitializing {}address private _pendingOwner;event OwnershipTransferStarted(address indexed previousOwner, address indexed newOwner);/*** @dev Returns the address of the pending owner.*/function pendingOwner() public view virtual returns (address) {return _pendingOwner;}/*** @dev Starts the ownership transfer of the contract to a new account. Replaces the pending transfer if there is one.* Can only be called by the current owner.*/
lib/openzeppelin-contracts-upgradeable/contracts/access/OwnableUpgradeable.sol
// SPDX-License-Identifier: MIT// OpenZeppelin Contracts (last updated v4.9.0) (access/Ownable.sol)pragma solidity ^0.8.0;import "../utils/ContextUpgradeable.sol";import "../proxy/utils/Initializable.sol";/*** @dev Contract module which provides a basic access control mechanism, where* there is an account (an owner) that can be granted exclusive access to* specific functions.** By default, the owner account will be the one that deploys the contract. This* can later be changed with {transferOwnership}.** This module is used through inheritance. It will make available the modifier* `onlyOwner`, which can be applied to your functions to restrict their use to* the owner.*/abstract contract OwnableUpgradeable is Initializable, ContextUpgradeable {address private _owner;event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);/*** @dev Initializes the contract setting the deployer as the initial owner.*/function __Ownable_init() internal onlyInitializing {__Ownable_init_unchained();}function __Ownable_init_unchained() internal onlyInitializing {_transferOwnership(_msgSender());}/*** @dev Throws if called by any account other than the owner.*/modifier onlyOwner() {_checkOwner();
lib/openzeppelin-contracts-upgradeable/contracts/proxy/utils/Initializable.sol
// SPDX-License-Identifier: MIT// OpenZeppelin Contracts (last updated v4.9.0) (proxy/utils/Initializable.sol)pragma solidity ^0.8.2;import "../../utils/AddressUpgradeable.sol";/*** @dev This is a base contract to aid in writing upgradeable contracts, or any kind of contract that will be deployed* behind a proxy. Since proxied contracts do not make use of a constructor, it's common to move constructor logic to an* external initializer function, usually called `initialize`. It then becomes necessary to protect this initializer* function so it can only be called once. The {initializer} modifier provided by this contract will have this effect.** The initialization functions use a version number. Once a version number is used, it is consumed and cannot be* reused. This mechanism prevents re-execution of each "step" but allows the creation of new initialization steps in* case an upgrade adds a module that needs to be initialized.** For example:** [.hljs-theme-light.nopadding]* ```solidity* contract MyToken is ERC20Upgradeable {* function initialize() initializer public {* __ERC20_init("MyToken", "MTK");* }* }** contract MyTokenV2 is MyToken, ERC20PermitUpgradeable {* function initializeV2() reinitializer(2) public {* __ERC20Permit_init("MyToken");* }* }* ```** TIP: To avoid leaving the proxy in an uninitialized state, the initializer function should be called as early as* possible by providing the encoded function call as the `_data` argument to {ERC1967Proxy-constructor}.** CAUTION: When used with inheritance, manual care must be taken to not invoke a parent initializer twice, or to ensure* that all initializers are idempotent. This is not verified automatically as constructors are by Solidity.** [CAUTION]
lib/openzeppelin-contracts-upgradeable/contracts/utils/AddressUpgradeable.sol
// SPDX-License-Identifier: MIT// OpenZeppelin Contracts (last updated v4.9.0) (utils/Address.sol)pragma solidity ^0.8.1;/*** @dev Collection of functions related to the address type*/library AddressUpgradeable {/*** @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** Furthermore, `isContract` will also return true if the target contract within* the same transaction is already scheduled for destruction by `SELFDESTRUCT`,* which only has an effect at the end of a transaction.* ====** [IMPORTANT]* ====* You shouldn't rely on `isContract` to protect against flash loan attacks!** Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets* like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract* constructor.* ====*/function isContract(address account) internal view returns (bool) {// This method relies on extcodesize/address.code.length, which returns 0
lib/openzeppelin-contracts-upgradeable/contracts/utils/ContextUpgradeable.sol
// SPDX-License-Identifier: MIT// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)pragma solidity ^0.8.0;import "../proxy/utils/Initializable.sol";/*** @dev Provides information about the current execution context, including the* sender of the transaction and its data. While these are generally available* via msg.sender and msg.data, they should not be accessed in such a direct* manner, since when dealing with meta-transactions the account sending and* paying for execution may not be the actual sender (as far as an application* is concerned).** This contract is only required for intermediate, library-like contracts.*/abstract contract ContextUpgradeable is Initializable {function __Context_init() internal onlyInitializing {}function __Context_init_unchained() internal onlyInitializing {}function _msgSender() internal view virtual returns (address) {return msg.sender;}function _msgData() internal view virtual returns (bytes calldata) {return msg.data;}/*** @dev This empty reserved space is put in place to allow future versions to add new* variables without shifting down storage in the inheritance chain.* See https://docs.openzeppelin.com/contracts/4.x/upgradeable#storage_gaps*/uint256[50] private __gap;}
lib/openzeppelin-contracts/contracts/interfaces/IERC1967.sol
// SPDX-License-Identifier: MIT// OpenZeppelin Contracts (last updated v4.9.0) (interfaces/IERC1967.sol)pragma solidity ^0.8.0;/*** @dev ERC-1967: Proxy Storage Slots. This interface contains the events defined in the ERC.** _Available since v4.8.3._*/interface IERC1967 {/*** @dev Emitted when the implementation is upgraded.*/event Upgraded(address indexed implementation);/*** @dev Emitted when the admin account has changed.*/event AdminChanged(address previousAdmin, address newAdmin);/*** @dev Emitted when the beacon is changed.*/event BeaconUpgraded(address indexed beacon);}
lib/openzeppelin-contracts/contracts/interfaces/draft-IERC1822.sol
// SPDX-License-Identifier: MIT// OpenZeppelin Contracts (last updated v4.5.0) (interfaces/draft-IERC1822.sol)pragma solidity ^0.8.0;/*** @dev ERC1822: Universal Upgradeable Proxy Standard (UUPS) documents a method for upgradeability through a simplified* proxy whose upgrades are fully controlled by the current implementation.*/interface IERC1822Proxiable {/*** @dev Returns the storage slot that the proxiable contract assumes is being used to store the implementation* address.** IMPORTANT: A proxy pointing at a proxiable contract should not be considered proxiable itself, because this risks* bricking a proxy that upgrades to it, by delegating to itself until out of gas. Thus it is critical that this* function revert if invoked through a proxy.*/function proxiableUUID() external view returns (bytes32);}
lib/openzeppelin-contracts/contracts/proxy/ERC1967/ERC1967Upgrade.sol
// SPDX-License-Identifier: MIT// OpenZeppelin Contracts (last updated v4.9.0) (proxy/ERC1967/ERC1967Upgrade.sol)pragma solidity ^0.8.2;import "../beacon/IBeacon.sol";import "../../interfaces/IERC1967.sol";import "../../interfaces/draft-IERC1822.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._*/abstract contract ERC1967Upgrade is IERC1967 {// This is the keccak-256 hash of "eip1967.proxy.rollback" subtracted by 1bytes32 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 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;
lib/openzeppelin-contracts/contracts/proxy/beacon/IBeacon.sol
// SPDX-License-Identifier: MIT// OpenZeppelin Contracts v4.4.1 (proxy/beacon/IBeacon.sol)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);}
lib/openzeppelin-contracts/contracts/proxy/utils/UUPSUpgradeable.sol
// SPDX-License-Identifier: MIT// OpenZeppelin Contracts (last updated v4.9.0) (proxy/utils/UUPSUpgradeable.sol)pragma solidity ^0.8.0;import "../../interfaces/draft-IERC1822.sol";import "../ERC1967/ERC1967Upgrade.sol";/*** @dev An upgradeability mechanism designed for UUPS proxies. The functions included here can perform an upgrade of an* {ERC1967Proxy}, when this contract is set as the implementation behind such a proxy.** A security mechanism ensures that an upgrade does not turn off upgradeability accidentally, although this risk is* reinstated if the upgrade retains upgradeability but removes the security mechanism, e.g. by replacing* `UUPSUpgradeable` with a custom implementation of upgrades.** The {_authorizeUpgrade} function must be overridden to include access restriction to the upgrade mechanism.** _Available since v4.1._*/abstract contract UUPSUpgradeable is IERC1822Proxiable, ERC1967Upgrade {/// @custom:oz-upgrades-unsafe-allow state-variable-immutable state-variable-assignmentaddress private immutable __self = address(this);/*** @dev Check that the execution is being performed through a delegatecall call and that the execution context is* a proxy contract with an implementation (as defined in ERC1967) pointing to self. This should only be the case* for UUPS and transparent proxies that are using the current contract as their implementation. Execution of a* function through ERC1167 minimal proxies (clones) would not normally pass this test, but is not guaranteed to* fail.*/modifier onlyProxy() {require(address(this) != __self, "Function must be called through delegatecall");require(_getImplementation() == __self, "Function must be called through active proxy");_;}/*** @dev Check that the execution is not being performed through a delegate call. This allows a function to be* callable on the implementing contract but not through proxies.*/
lib/openzeppelin-contracts/contracts/utils/Address.sol
// SPDX-License-Identifier: MIT// OpenZeppelin Contracts (last updated v4.9.0) (utils/Address.sol)pragma solidity ^0.8.1;/*** @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** Furthermore, `isContract` will also return true if the target contract within* the same transaction is already scheduled for destruction by `SELFDESTRUCT`,* which only has an effect at the end of a transaction.* ====** [IMPORTANT]* ====* You shouldn't rely on `isContract` to protect against flash loan attacks!** Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets* like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract* constructor.* ====*/function isContract(address account) internal view returns (bool) {// This method relies on extcodesize/address.code.length, which returns 0
lib/openzeppelin-contracts/contracts/utils/StorageSlot.sol
// SPDX-License-Identifier: MIT// OpenZeppelin Contracts (last updated v4.9.0) (utils/StorageSlot.sol)// This file was procedurally generated from scripts/generate/templates/StorageSlot.js.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:* ```solidity* 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`, `uint256`._* _Available since v4.9 for `string`, `bytes`._*/library StorageSlot {struct AddressSlot {address value;}struct BooleanSlot {bool value;}
lib/openzeppelin-contracts/contracts/utils/cryptography/MerkleProof.sol
// SPDX-License-Identifier: MIT// OpenZeppelin Contracts (last updated v4.9.2) (utils/cryptography/MerkleProof.sol)pragma solidity ^0.8.0;/*** @dev These functions deal with verification of Merkle Tree proofs.** The tree and the proofs can be generated using our* https://github.com/OpenZeppelin/merkle-tree[JavaScript library].* You will find a quickstart guide in the readme.** WARNING: You should avoid using leaf values that are 64 bytes long prior to* hashing, or use a hash function other than keccak256 for hashing leaves.* This is because the concatenation of a sorted pair of internal nodes in* the merkle tree could be reinterpreted as a leaf value.* OpenZeppelin's JavaScript library generates merkle trees that are safe* against this attack out of the box.*/library MerkleProof {/*** @dev Returns true if a `leaf` can be proved to be a part of a Merkle tree* defined by `root`. For this, a `proof` must be provided, containing* sibling hashes on the branch from the leaf to the root of the tree. Each* pair of leaves and each pair of pre-images are assumed to be sorted.*/function verify(bytes32[] memory proof, bytes32 root, bytes32 leaf) internal pure returns (bool) {return processProof(proof, leaf) == root;}/*** @dev Calldata version of {verify}** _Available since v4.7._*/function verifyCalldata(bytes32[] calldata proof, bytes32 root, bytes32 leaf) internal pure returns (bool) {return processProofCalldata(proof, leaf) == root;}/*** @dev Returns the rebuilt hash obtained by traversing a Merkle tree up
src/BytesLib.sol
// SPDX-License-Identifier: UNLICENSEDpragma solidity 0.8.24;library BytesLib {/// @notice Helper function to convert Big Endian 16 bytes Data To Little Endian or vice versafunction betole_16(bytes16 a) internal pure returns (bytes16) {bytes16 b;for (uint256 i; i < 16; i++) {bytes1 c = bytes1(a << (i * 8) & bytes1(0xff));b = b >> 8 | c;}return b;}/// @notice Helper function to convert Big Endian 8 bytes Data To Little Endian or vice versafunction betole_8(bytes8 a) internal pure returns (bytes8) {bytes8 b;for (uint256 i; i < 8; i++) {bytes1 c = bytes1(a << (i * 8) & bytes1(0xff));b = b >> 8 | c;}return b;}/// @notice Helper function to convert Big Endian 4 bytes Data To Little Endian or vice versafunction betole_4(bytes4 a) internal pure returns (bytes4) {bytes4 b;for (uint256 i; i < 4; i++) {bytes1 c = bytes1(a << (i * 8) & bytes1(0xff));b = b >> 8 | c;}return b;}/// @notice Helper function to convert Big Endian 2 bytes Data To Little Endian or vice versafunction betole_2(bytes2 a) internal pure returns (bytes2) {bytes2 b;for (uint256 i; i < 2; i++) {bytes1 c = bytes1(a << (i * 8) & bytes1(0xff));b = b >> 8 | c;}
src/EnumerableSetRing.sol
// SPDX-License-Identifier: UNLICENSEDpragma solidity 0.8.24;library EnumerableSetRing {struct EnumerableSetRing {bytes32[] list;uint256 position;mapping(bytes32 key => uint256 position) map;}uint256 public constant MAX_BUFFER_SIZE = 1000;/*** @dev Adds a key-value pair to a Set, or updates the value for an existing* key. O(1).** For Vector The operation old_value -> 0 then 0 -> new_value will be more gas consuming than old_value -> new_value.* Returns true if the key was added to the Set, that is if it was not* already present.*/function set(EnumerableSetRing storage set, bytes32 value) internal returns (bool) {if(!contains(set,value)) {uint256 position = set.position;if (set.list.length == MAX_BUFFER_SIZE) {bytes32 old_value = set.list[position];delete set.map[old_value];set.list[position] = value;} else {set.list.push(value);}set.map[value] = position;set.position = ++set.position % MAX_BUFFER_SIZE;return true;}else {return false;}}/**
src/ISupraSValueFeed.sol
// SPDX-License-Identifier: MITpragma solidity ^0.8.19;interface ISupraSValueFeed {struct priceFeed {uint256 round;uint256 decimals;uint256 time;uint256 price;}struct derivedData {int256 roundDifference;int256 timeDifference;uint256 derivedPrice;uint256 decimals;}function restrictedSetSupraStorage(uint256 _index, bytes32 _bytes) external;function restrictedSetTimestamp(uint256 _tradingPair, uint256 timestamp) external;function getTimestamp(uint256 _tradingPair) external view returns (uint256);function getRound(uint256 _tradingPair) external view returns (uint256);function getSvalue(uint64 _pairIndex) external view returns (bytes32, bool);function getSvalues(uint64[] memory _pairIndexes) external view returns (bytes32[] memory, bool[] memory);function getDerivedSvalue(uint256 _derivedPairId) external view returns (derivedData memory);function getSvalue(uint256 _pairIndex) external view returns (priceFeed memory);function getSvalues(uint256[] memory _pairIndexes) external view returns (priceFeed[] memory);}
src/ISupraSValueFeedVerifier.sol
pragma solidity ^0.8.19;interface ISupraSValueFeedVerifier {function isPairAlreadyAddedForHCC(uint256[] calldata _pairIndexes) external view returns (bool);function isPairAlreadyAddedForHCC(uint256 _pairId) external view returns (bool);function requireHashVerified_V2(bytes32 message, uint256[2] memory signature, uint256 committee_id) external view;function requireHashVerified_V1(bytes memory message, uint256[2] memory signature) external view;}
src/Smr.sol
// SPDX-License-Identifier: UNLICENSEDpragma solidity 0.8.24;/// @title Supra SMR Block Utilities/// @notice This library contains the data structures and functions for hashing SMR blocks.library Smr {/// @notice A vote is a block with a round number./// @dev The library assumes the round number is passed in little endian formatstruct Vote {MinBlock smrBlock;// SPEC: smrBlock.round.to_le_bytes()bytes8 roundLE;}/// @notice A partial SMR block containing the bare-minimum for hashingstruct MinBlock {uint64 round;uint128 timestamp;bytes32 author;bytes32 qcHash;bytes32[] batchHashes;}/// @notice An SMR Transactionstruct MinTxn {bytes32[] clusterHashes;bytes32 sender;bytes10 protocol;bytes1 tx_sub_type;// SPEC: Index of the transaction in its batchuint256 txnIdx;}/// @notice A partial SMR batch containing the bare-minimum for hashing/// @dev The library assumes that txnHashes is a list of keccak256 hashes of abi encoded SMR transactionstruct MinBatch {bytes10 protocol;// SPEC: List of keccak256(Txn.clusterHashes, Txn.sender, Txn.protocol, Txn.tx_sub_type)bytes32[] txnHashes;// SPEC: Index of the batch in its blockuint256 batchIdx;
src/SupraErrors.sol
// SPDX-License-Identifier: UNLICENSEDpragma solidity 0.8.24;error ZeroAddress();error InvalidBatch();error InvalidTransaction();error DuplicateCluster();error ClusterNotVerified();error BLSInvalidPubllicKeyorSignaturePoints();error BLSIncorrectInputMessaage();error DataNotVerified();error ArrayLengthMismatch();error InvalidProof();error DataProofMismatch();error IncorrectFutureUpdate(uint256 FutureLengthInMsecs);error RootIsZero();error SentinalAlreadySet();
Compiler Settings
{"viaIR":true,"remappings":["ds-test/=lib/forge-std/lib/ds-test/src/","erc4626-tests/=lib/openzeppelin-contracts-upgradeable/lib/erc4626-tests/","forge-std/=lib/forge-std/src/","openzeppelin-contracts-upgradeable/=lib/openzeppelin-contracts-upgradeable/","openzeppelin-contracts/=lib/openzeppelin-contracts/","openzeppelin/=lib/openzeppelin-contracts-upgradeable/contracts/"],"outputSelection":{"*":{"*":["abi","evm.bytecode","evm.deployedBytecode","evm.methodIdentifiers","metadata"]}},"optimizer":{"runs":200,"enabled":true},"metadata":{"useLiteralContent":false,"bytecodeHash":"ipfs","appendCBOR":true},"libraries":{},"evmVersion":"paris"}
Contract ABI
[{"type":"error","name":"DataNotVerified","inputs":[]},{"type":"error","name":"IncorrectFutureUpdate","inputs":[{"type":"uint256","name":"FutureLengthInMsecs","internalType":"uint256"}]},{"type":"error","name":"InvalidProof","inputs":[]},{"type":"error","name":"RootIsZero","inputs":[]},{"type":"error","name":"ZeroAddress","inputs":[]},{"type":"event","name":"AdminChanged","inputs":[{"type":"address","name":"previousAdmin","internalType":"address","indexed":false},{"type":"address","name":"newAdmin","internalType":"address","indexed":false}],"anonymous":false},{"type":"event","name":"BeaconUpgraded","inputs":[{"type":"address","name":"beacon","internalType":"address","indexed":true}],"anonymous":false},{"type":"event","name":"Initialized","inputs":[{"type":"uint8","name":"version","internalType":"uint8","indexed":false}],"anonymous":false},{"type":"event","name":"OwnershipTransferStarted","inputs":[{"type":"address","name":"previousOwner","internalType":"address","indexed":true},{"type":"address","name":"newOwner","internalType":"address","indexed":true}],"anonymous":false},{"type":"event","name":"OwnershipTransferred","inputs":[{"type":"address","name":"previousOwner","internalType":"address","indexed":true},{"type":"address","name":"newOwner","internalType":"address","indexed":true}],"anonymous":false},{"type":"event","name":"PriceUpdate","inputs":[{"type":"uint256[]","name":"pairs","internalType":"uint256[]","indexed":false},{"type":"uint256[]","name":"prices","internalType":"uint256[]","indexed":false},{"type":"uint256[]","name":"updateMask","internalType":"uint256[]","indexed":false}],"anonymous":false},{"type":"event","name":"SupraSValueFeedUpdated","inputs":[{"type":"address","name":"supraSValueFeedStorage","internalType":"address","indexed":false}],"anonymous":false},{"type":"event","name":"SupraSValueVerifierUpdated","inputs":[{"type":"address","name":"supraSValueVerifier","internalType":"address","indexed":false}],"anonymous":false},{"type":"event","name":"Upgraded","inputs":[{"type":"address","name":"implementation","internalType":"address","indexed":true}],"anonymous":false},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"TIME_DELTA_ALLOWANCE","inputs":[]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"acceptOwnership","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"address","name":"","internalType":"address"}],"name":"checkSupraSValueFeed","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"address","name":"","internalType":"address"}],"name":"checkSupraSValueVerifier","inputs":[]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"initialize","inputs":[{"type":"address","name":"_supraSValueFeedStorage","internalType":"address"},{"type":"address","name":"_supraSValueVerifier","internalType":"address"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"address","name":"","internalType":"address"}],"name":"owner","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"address","name":"","internalType":"address"}],"name":"pendingOwner","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"bytes32","name":"","internalType":"bytes32"}],"name":"proxiableUUID","inputs":[]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"renounceOwnership","inputs":[]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"transferOwnership","inputs":[{"type":"address","name":"newOwner","internalType":"address"}]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"updateSupraSValueFeed","inputs":[{"type":"address","name":"supraSValueFeed","internalType":"contract ISupraSValueFeed"}]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"updateSupraSValueVerifier","inputs":[{"type":"address","name":"supraSvalueVerifier","internalType":"contract ISupraSValueFeedVerifier"}]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"upgradeTo","inputs":[{"type":"address","name":"newImplementation","internalType":"address"}]},{"type":"function","stateMutability":"payable","outputs":[],"name":"upgradeToAndCall","inputs":[{"type":"address","name":"newImplementation","internalType":"address"},{"type":"bytes","name":"data","internalType":"bytes"}]},{"type":"function","stateMutability":"nonpayable","outputs":[{"type":"tuple","name":"","internalType":"struct SupraOraclePull.PriceData","components":[{"type":"uint256[]","name":"pairs","internalType":"uint256[]"},{"type":"uint256[]","name":"prices","internalType":"uint256[]"},{"type":"uint256[]","name":"decimal","internalType":"uint256[]"}]}],"name":"verifyOracleProof","inputs":[{"type":"bytes","name":"_bytesProof","internalType":"bytes"}]},{"type":"function","stateMutability":"nonpayable","outputs":[{"type":"tuple","name":"","internalType":"struct SupraOraclePull.PriceInfo","components":[{"type":"uint256[]","name":"pairs","internalType":"uint256[]"},{"type":"uint256[]","name":"prices","internalType":"uint256[]"},{"type":"uint256[]","name":"timestamp","internalType":"uint256[]"},{"type":"uint256[]","name":"decimal","internalType":"uint256[]"},{"type":"uint256[]","name":"round","internalType":"uint256[]"}]}],"name":"verifyOracleProofV2","inputs":[{"type":"bytes","name":"_bytesProof","internalType":"bytes"}]}]
Contract Creation Code
0x60a0806040523461003157306080526128b2908161003782396080518181816109b401528181610ae101526115f50152f35b600080fdfe61010080604052600436101561001457600080fd5b60003560e01c9081632e89c1e3146117b9575080633659cfe6146115d15780633dcd979314610ea2578063485cc95514610d3f5780634a755aec14610d225780634f1ef28614610a6557806352d1902d146109a15780635580d8c21461097857806357bbe2f814610943578063715018a6146108dc5780637851383e146108a757806379ba5097146108205780638da5cb5b146107f7578063b3a076f41461016b578063e30c3978146101425763f2fde38b146100d057600080fd5b3461013d57602036600319011261013d576100e96117dd565b6100f16125ce565b606580546001600160a01b0319166001600160a01b039283169081179091556033549091167f38d16b8cac22d99fc7c124b9cd0de2d3fa1faef420bfe791d8c362d765e22700600080a3005b600080fd5b3461013d57600036600319011261013d576065546040516001600160a01b039091168152602090f35b3461013d5761019e61017c366117f3565b60606040805161018b8161188b565b8281528260208201520152810190611a05565b600090815b81518051841015610266579060606101be856101c894611d4e565b5101515190611d78565b916101e160206101d9838551611d4e565b510151611f49565b61025e5761022460206101f5838551611d4e565b5101516040610205848651611d4e565b5101516001600160401b0361021b858751611d4e565b51511691611ffc565b61023c6020610234838551611d4e565b51015161209a565b1561024c576001905b01916101a3565b6040516333dc095d60e11b8152600490fd5b600190610245565b5061027081611d85565b61027982611d85565b9161028c61028682611d85565b91611d85565b906040519361029a8561188b565b8452602084015260408301526000916103e893428542020485144215171561059757428502610bb881011061059757600060e0959495525b80515160e05110156107645760005b60606102f060e0518451611d4e565b510151518110156107555761033261031982606061031160e0518751611d4e565b510151611d4e565b51602061032960e0518651611d4e565b51015190612186565b63ffffffff61034a82606061031160e0518751611d4e565b51515116610359878551611d4e565b5260018060a01b036097541663ffffffff61037d83606061031160e0518851611d4e565b51515160405163023c4c9f60e61b815291166004820152602081602481855afa90811561068a57600091610723575b50806001600160401b0360806103cb86606061031160e0518b51611d4e565b515101511611806106f2575b1561050857505063ffffffff6103f682606061031160e0518751611d4e565b5151511660c0526001600160401b03608061041a83606061031160e0518851611d4e565b515101511660a05261ffff608052608051606061043f838261031160e0518851611d4e565b515101511661049a6001600160401b03604061046485606061031160e0518a51611d4e565b5151015116916001600160801b039283602061048987606061031160e0518c51611d4e565b51510151169160a05160c0516124fc565b60206104af83606061031160e0518851611d4e565b51510151166104c2876020860151611d4e565b5260805160606104da838261031160e0518851611d4e565b51510151166104ed876040860151611d4e565b5260016104fa8786611d4e565b525b600195860195016102e1565b836001600160401b036080610534866060610311610bb89a9e9b999c9a8e4202019660e0519051611d4e565b515101511611156105ad57866001600160401b03608061055e8960606103118e60e0519051611d4e565b51510151169042814202048114421517156105975760249161058291420290611df3565b6040519063628c210b60e11b82526004820152fd5b634e487b7160e01b600052601160045260246000fd5b6001600160401b0360806105d088606061031160e09d999b989a9d518a51611d4e565b5151015116101561069657608063ffffffff6105f584606061031160e0518951611d4e565b515151166024604051809481936344dca75160e11b835260048301525afa801561068a5760209160009161065b575b5060608101516106378984880151611d4e565b520151610648876040860151611d4e565b5260006106558786611d4e565b526104fc565b61067d915060803d608011610683575b61067581836118dc565b810190611db7565b88610624565b503d61066b565b6040513d6000823e3d90fd5b506001600160801b0360206106b483606061031160e0518851611d4e565b51510151166106c7876020860151611d4e565b5261ffff60606106df838261031160e0518851611d4e565b5151015116610648876040860151611d4e565b50610bb8874202016001600160401b03608061071786606061031160e0518b51611d4e565b515101511611156103d7565b90506020813d60201161074d575b8161073e602093836118dc565b8101031261013d5751886103ac565b3d9150610731565b5060e0805160010190526102d2565b507ff77b9be227a199cb89ec5a0163ecdfe805c3f5c706b314c1962cd3e1ea5068246107f39282516107a160208501519260405193849384611e34565b0390a1604051918291602083526107c4815160606020860152608085019061183c565b60406107e1602084015192601f199384888303018489015261183c565b9201519084830301606085015261183c565b0390f35b3461013d57600036600319011261013d576033546040516001600160a01b039091168152602090f35b3461013d57600036600319011261013d57606554336001600160a01b03909116036108505761084e33612648565b005b60405162461bcd60e51b815260206004820152602960248201527f4f776e61626c6532537465703a2063616c6c6572206973206e6f7420746865206044820152683732bb9037bbb732b960b91b6064820152608490fd5b3461013d57602036600319011261013d576004356001600160a01b038116810361013d5761084e906108d76125ce565b611ec0565b3461013d57600036600319011261013d576108f56125ce565b606580546001600160a01b03199081169091556033805491821690556000906001600160a01b03167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e08280a3005b3461013d57602036600319011261013d576004356001600160a01b038116810361013d5761084e906109736125ce565b611e6e565b3461013d57600036600319011261013d576098546040516001600160a01b039091168152602090f35b3461013d57600036600319011261013d577f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031630036109fa57602060405160008051602061285d8339815191528152f35b60405162461bcd60e51b815260206004820152603860248201527f555550535570677261646561626c653a206d757374206e6f742062652063616c60448201527f6c6564207468726f7567682064656c656761746563616c6c00000000000000006064820152608490fd5b604036600319011261013d57610a796117dd565b602435906001600160401b03821161013d573660238301121561013d578160040135610aa4816118fd565b92610ab260405194856118dc565b81845260209182850191366024838301011161013d578160009260248693018537860101526001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000811690610b0f30831415611918565b610b2c60008051602061285d833981519152928284541614611979565b610b346125ce565b7f4910fdfa16fed3260ed0e7147f7cc6da11a60208b5b9406d12a635614ffd91435460ff1615610b6c575050505061084e915061269e565b84939416906040516352d1902d60e01b81528581600481865afa60009181610cf3575b50610bf05760405162461bcd60e51b815260048101879052602e60248201527f45524331393637557067726164653a206e657720696d706c656d656e7461746960448201526d6f6e206973206e6f74205555505360901b6064820152608490fd5b03610c9c57610bfe8361269e565b7fbc7cd75a20ee27fd9adebab32041f755214dbc6bffa90cc0225b39da2e5c2d3b600080a2835115801590610c94575b610c3457005b6000809161084e957f416464726573733a206c6f772d6c6576656c2064656c65676174652063616c6c60405196610c6a8861188b565b60278852870152660819985a5b195960ca1b60408701525190845af4610c8e611fcc565b91612788565b506001610c2e565b60405162461bcd60e51b815260048101859052602960248201527f45524331393637557067726164653a20756e737570706f727465642070726f786044820152681a58589b195555525160ba1b6064820152608490fd5b9091508681813d8311610d1b575b610d0b81836118dc565b8101031261013d57519088610b8f565b503d610d01565b3461013d57600036600319011261013d576020604051610bb88152f35b3461013d57604036600319011261013d57610d586117dd565b6001600160a01b03906024358281169081900361013d5760005460ff8160081c161593848095610e95575b8015610e7e575b15610e225760ff198216600117600055610dd2936109739286610e10575b50610dc360ff60005460081c16610dbe8161256e565b61256e565b610dcc33612648565b16611ec0565b610dd857005b61ff0019600054166000557f7f26b83ff96e1f2b6a682f133852f6798a09c465da95921460cefb3847402498602060405160018152a1005b61ffff19166101011760005586610da8565b60405162461bcd60e51b815260206004820152602e60248201527f496e697469616c697a61626c653a20636f6e747261637420697320616c72656160448201526d191e481a5b9a5d1a585b1a5e995960921b6064820152608490fd5b50303b158015610d8a5750600160ff831614610d8a565b50600160ff831610610d83565b3461013d57610ee1610eb3366117f3565b60606080604051610ec381611870565b82815282602082015282604082015282808201520152810190611a05565b600090815b81518051841015610f4e579060606101be85610f0194611d4e565b91610f1260206101d9838551611d4e565b610f4657610f2660206101f5838551611d4e565b610f366020610234838551611d4e565b1561024c576001905b0191610ee6565b600190610f3f565b50610f5881611d85565b610f6182611d85565b91610f6b81611d85565b90610f7581611d85565b610f87610f8183611d85565b92611d85565b9260405195610f9587611870565b865260208601526040850152606084015260808301526000916103e893428542020485144215171561059757428502610bb8810110610597576000949394905b8051518210156115145760005b6060610fef848451611d4e565b510151518110156115085761101c61100e826060610311878751611d4e565b516020610329868651611d4e565b63ffffffff611032826060610311878751611d4e565b51515116611041888651611d4e565b5260018060a01b036097541663ffffffff611063836060610311888851611d4e565b51515160405163023c4c9f60e61b815291166004820152602081602481855afa90811561068a576000916114d6575b50806001600160401b0360806110af8660606103118b8b51611d4e565b515101511611806114a7575b156112a457505080838351906110d091611d4e565b5160600151906110df91611d4e565b51515163ffffffff1681848451906110f691611d4e565b51606001519061110591611d4e565b5151608001516001600160401b031690828585519061112391611d4e565b51606001519061113291611d4e565b51516060015161ffff1691838686519061114b91611d4e565b51606001519061115a91611d4e565b5151604001516001600160401b03166001600160801b039384868989519061118191611d4e565b51606001519061119091611d4e565b51516020015116926111a1946124fc565b81848451906111af91611d4e565b5160600151906111be91611d4e565b51516020015116876020860151906111d591611d4e565b5280838351906111e491611d4e565b5160600151906111f391611d4e565b5151608001516001600160401b03168760808601519061121291611d4e565b52808383519061122191611d4e565b51606001519061123091611d4e565b5151604001516001600160401b03168760408601519061124f91611d4e565b52808383519061125e91611d4e565b51606001519061126d91611d4e565b51516060015161ffff168760608601519061128791611d4e565b526112928786611d4e565b60019052600180915b01960195610fe2565b610bb888999597949693984202016001600160401b0360806112cd8b60606103118d8d51611d4e565b515101511611156112f457886001600160401b03608061055e8b60606103118d8d51611d4e565b9091949295939796816001600160401b0360806113188460606103118b8b51611d4e565b515101511610156113eb57608063ffffffff61133b8360606103118a8a51611d4e565b515151166024604051809681936344dca75160e11b835260048301525afa92831561068a5760019384936020926000926113ca575b5060608201516113838d858c0151611d4e565b526113928c60808b0151611d4e565b5260408101516113a68c60408b0151611d4e565b5201516113b78a6060890151611d4e565b5260006113c48a89611d4e565b5261129b565b6113e491925060803d6080116106835761067581836118dc565b908c611370565b600192508291506001600160801b03602061140d8360606103118a8a51611d4e565b51510151166114208a6020890151611d4e565b526001600160401b03608061143c8360606103118a8a51611d4e565b515101511661144f8a6080890151611d4e565b526001600160401b03604061146b8360606103118a8a51611d4e565b515101511661147e8a6040890151611d4e565b5261ffff606061149483826103118a8a51611d4e565b51510151166113b78a6060890151611d4e565b50610bb8884202016001600160401b0360806114ca8660606103118b8b51611d4e565b515101511611156110bb565b90506020813d602011611500575b816114f1602093836118dc565b8101031261013d575189611092565b3d91506114e4565b50600190910190610fd5565b6107f3837ff77b9be227a199cb89ec5a0163ecdfe805c3f5c706b314c1962cd3e1ea50682486825161155160208501519260405193849384611e34565b0390a160405191829160208352611574815160a0602086015260c085019061183c565b60806115bf6115ac611598602086015194601f1995868a83030160408b015261183c565b6040860151858983030160608a015261183c565b606085015184888303018489015261183c565b920151908483030160a085015261183c565b3461013d5760208060031936011261013d576115eb6117dd565b6001600160a01b037f00000000000000000000000000000000000000000000000000000000000000008116929061162430851415611918565b61164160008051602061285d833981519152948286541614611979565b6116496125ce565b60405193828501918583106001600160401b038411176117a357826040526000865260ff7f4910fdfa16fed3260ed0e7147f7cc6da11a60208b5b9406d12a635614ffd914354166000146116a5575050505061084e915061269e565b84939416906040516352d1902d60e01b81528581600481865afa60009181611774575b506117295760405162461bcd60e51b815260048101879052602e60248201527f45524331393637557067726164653a206e657720696d706c656d656e7461746960448201526d6f6e206973206e6f74205555505360901b6064820152608490fd5b03610c9c576117378361269e565b7fbc7cd75a20ee27fd9adebab32041f755214dbc6bffa90cc0225b39da2e5c2d3b600080a283511580159061176c57610c3457005b506000610c2e565b9091508681813d831161179c575b61178c81836118dc565b8101031261013d575190886116c8565b503d611782565b634e487b7160e01b600052604160045260246000fd5b3461013d57600036600319011261013d576097546001600160a01b03168152602090f35b600435906001600160a01b038216820361013d57565b90602060031983011261013d576004356001600160401b039283821161013d578060238301121561013d57816004013593841161013d576024848301011161013d576024019190565b90815180825260208080930193019160005b82811061185c575050505090565b83518552938101939281019260010161184e565b60a081019081106001600160401b038211176117a357604052565b606081019081106001600160401b038211176117a357604052565b608081019081106001600160401b038211176117a357604052565b604081019081106001600160401b038211176117a357604052565b90601f801991011681019081106001600160401b038211176117a357604052565b6001600160401b0381116117a357601f01601f191660200190565b1561191f57565b60405162461bcd60e51b815260206004820152602c60248201527f46756e6374696f6e206d7573742062652063616c6c6564207468726f7567682060448201526b19195b1959d85d1958d85b1b60a21b6064820152608490fd5b1561198057565b60405162461bcd60e51b815260206004820152602c60248201527f46756e6374696f6e206d7573742062652063616c6c6564207468726f7567682060448201526b6163746976652070726f787960a01b6064820152608490fd5b6001600160401b0381116117a35760051b60200190565b35906001600160401b038216820361013d57565b60208183031261013d578035906001600160401b03821161013d570160208183031261013d5760405191602083018381106001600160401b038211176117a35760405281356001600160401b03811161013d5781601f82850101121561013d578083013590611a73826119da565b93611a8160405195866118dc565b82855260208501918460208560051b83850101011161013d57602081830101925b60208560051b83850101018410611abe57505050505050815290565b83356001600160401b03811161013d578383010160a0818803601f19011261013d5760405190611aed826118a6565b611af9602082016119f1565b82526040810135602083015287607f8201121561013d57604051611b1c816118c1565b8060a08301918a831161013d5760608401905b838210611d3e575050604084015235906001600160401b03821161013d5788603f83830101121561013d5760208282010135611b6a816119da565b92611b7860405194856118dc565b81845260208401908b60408460051b83870101011161013d57604081850101915b60408460051b83870101018310611bc25750505050506060820152815260209384019301611aa2565b6001600160401b0383351161013d578482018335018d03603f190160c0811261013d5760a060405191611bf4836118c1565b1261013d57604051611c0581611870565b6040853585890101013563ffffffff8116810361013d578152606085358589010101356001600160801b038116810361013d5760208201526080611c4f818735878b0101016119f1565b604083015260a08635868a0101013561ffff8116810361013d576060830152611c7f60c08735878b0101016119f1565b90820152815260e084358488010101356001600160401b03811161013d578e605f828735878b01010101121561013d578684018535018101604001358f611cc5826119da565b92611cd360405194856118dc565b828452602084019160608460051b838d8b8d359101010101011161013d576060818935898d01010101915b60608460051b838d8b8d359101010101018310611d2e575050505091816020938480940152815201920191611b99565b8235815260209283019201611cfe565b8135815260209182019101611b2f565b8051821015611d625760209160051b010190565b634e487b7160e01b600052603260045260246000fd5b9190820180921161059757565b90611d8f826119da565b611d9c60405191826118dc565b8281528092611dad601f19916119da565b0190602036910137565b9081608091031261013d57606060405191611dd1836118a6565b8051835260208101516020840152604081015160408401520151606082015290565b9190820391821161059757565b90815180825260208080930193019160005b828110611e20575050505090565b835185529381019392810192600101611e12565b91611e5d90611e4f611e6b9593606086526060860190611e00565b908482036020860152611e00565b916040818403910152611e00565b90565b7fda52bd66d138416c3a3ddc3bd0931b7fd43e8566ae54be77d52e767f336f29dd906020906001600160a01b0316611ea581612626565b609880546001600160a01b03191682179055604051908152a1565b7f063406dd506522b1ab1821a883e917769e0877ddf955ba27f5f63acc58069c45906020906001600160a01b0316611ef781612626565b609780546001600160a01b03191682179055604051908152a1565b609954811015611d625760996000527f72a152ddfb8e864297c917af52ea6c1c68aead0fee1a62673fcc7e0c94979d000190600090565b60995415611f735780600052609b602052611f68604060002054611f12565b90549060031b1c1490565b50600090565b6099548015611fc55781600052609b60205260406000205490811015611d625760996000527f72a152ddfb8e864297c917af52ea6c1c68aead0fee1a62673fcc7e0c94979d0001541490565b5050600090565b3d15611ff7573d90611fdd826118fd565b91611feb60405193846118dc565b82523d6000602084013e565b606090565b909160018060a01b0360985416906040519360208086019463140c180760e11b86526024870152604486016000905b60028210612085575050505060848401526084835260c08301918383106001600160401b038411176117a357600093849360405251915afa61206b611fcc565b501561207357565b604051632077b28160e11b8152600490fd5b8280600192865181520194019101909261202b565b6120a381611f79565b611f7357609a546099546103e8929083810361212657506120c382611f12565b90549060031b1c600052609b60205260006040812055806120fd6120e684611f12565b819391549060031b91821b91600019901b19161790565b90555b600052609b602052604060002055609a5460001981146105975760010106609a55600190565b680100000000000000008110156117a35761214b6120e6826001859401609955611f12565b9055612100565b90602082519201516001600160401b0360c01b90818116936008811061217757505050565b60080360031b82901b16169150565b9081515192604051602081019463ffffffff60e01b9060e01b168552600481526121af816118c1565b5193516001600160e01b031981169490600482106124dc575b50506000936000905b6004821061249a575050602083510151936040519460208601906001600160801b03199060801b1681526010956010815261220b816118c1565b5190516001600160801b0319811691906010821061247a575b5050946000956000915b80831061242a5750505061227461226f604086510151604051906001600160401b0360c01b9060c01b1660208201526008815261226a816118c1565b612152565b61272e565b9460608551015195604051602081019761ffff60f01b9060f01b1688526002815261229e816118c1565b5196516001600160f01b0319811697906002821061240a575b50506000805b600281106123cb57508697506122fe61226f60806020979899510151604051906001600160401b0360c01b9060c01b16888201526008815261226a816118c1565b6040516001600160e01b03199095168686019081526001600160801b031990941660248601526001600160c01b031992831660348601526001600160f01b031991909116603c85015216603e830152602682529061235b8161188b565b51902093015192906000915b84518310156123ae5761237a8386611d4e565b519060008282101561239d5750600052602052600160406000205b920191612367565b604091600193825260205220612395565b91509250036123b957565b6040516309bde33960e01b8152600490fd5b908160031b90828204600814831517156105975760081c60ff60f01b166001600160f01b03198a1690911b6001600160f81b03191617906001016122bd565b6001600160f01b031960029290920360031b82901b1616965038806122b7565b9091968760031b90600889830481148a151715610597571c6effffffffffffffffffffffffffffff60801b166001600160801b0319841690911b6001600160f81b0319161796600101919061222e565b6001600160801b031960109290920360031b82901b161690503880612224565b90948560031b906008878304811488151715610597571c62ffffff60e01b166001600160e01b0319831690911b6001600160f81b0319161794600101906121d1565b6001600160e01b031960049290920360031b82901b1616935038806121c8565b60975491946001600160a01b03909216939192843b1561013d5760009460449386926040519889978896635f6ce8c360e11b8852600488015260181b9260781b9160b81b9060c01b17171760248401525af1801561068a5761255b5750565b6001600160401b0381116117a357604052565b1561257557565b60405162461bcd60e51b815260206004820152602b60248201527f496e697469616c697a61626c653a20636f6e7472616374206973206e6f74206960448201526a6e697469616c697a696e6760a81b6064820152608490fd5b6033546001600160a01b031633036125e257565b606460405162461bcd60e51b815260206004820152602060248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152fd5b6001600160a01b03161561263657565b60405163d92e233d60e01b8152600490fd5b6bffffffffffffffffffffffff60a01b90816065541660655560335460018060a01b038092168093821617603355167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0600080a3565b803b156126d35760008051602061285d83398151915280546001600160a01b0319166001600160a01b03909216919091179055565b60405162461bcd60e51b815260206004820152602d60248201527f455243313936373a206e657720696d706c656d656e746174696f6e206973206e60448201526c1bdd08184818dbdb9d1c9858dd609a1b6064820152608490fd5b906000805b60089081831015612782578260031b9183830481148415171561059757600193909301921c66ffffffffffffff60c01b166001600160c01b0319851690911b6001600160f81b03191617612733565b93505050565b919290156127ea575081511561279c575090565b3b156127a55790565b60405162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e74726163740000006044820152606490fd5b8251909150156127fd5750805190602001fd5b6040519062461bcd60e51b82528160208060048301528251908160248401526000935b828510612843575050604492506000838284010152601f80199101168101030190fd5b848101820151868601604401529381019385935061282056fe360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbca2646970667358221220361e34d159a39933af4f9f5532432cec8db6945d856879e762d2548264c9b2b164736f6c63430008180033
Deployed ByteCode
0x61010080604052600436101561001457600080fd5b60003560e01c9081632e89c1e3146117b9575080633659cfe6146115d15780633dcd979314610ea2578063485cc95514610d3f5780634a755aec14610d225780634f1ef28614610a6557806352d1902d146109a15780635580d8c21461097857806357bbe2f814610943578063715018a6146108dc5780637851383e146108a757806379ba5097146108205780638da5cb5b146107f7578063b3a076f41461016b578063e30c3978146101425763f2fde38b146100d057600080fd5b3461013d57602036600319011261013d576100e96117dd565b6100f16125ce565b606580546001600160a01b0319166001600160a01b039283169081179091556033549091167f38d16b8cac22d99fc7c124b9cd0de2d3fa1faef420bfe791d8c362d765e22700600080a3005b600080fd5b3461013d57600036600319011261013d576065546040516001600160a01b039091168152602090f35b3461013d5761019e61017c366117f3565b60606040805161018b8161188b565b8281528260208201520152810190611a05565b600090815b81518051841015610266579060606101be856101c894611d4e565b5101515190611d78565b916101e160206101d9838551611d4e565b510151611f49565b61025e5761022460206101f5838551611d4e565b5101516040610205848651611d4e565b5101516001600160401b0361021b858751611d4e565b51511691611ffc565b61023c6020610234838551611d4e565b51015161209a565b1561024c576001905b01916101a3565b6040516333dc095d60e11b8152600490fd5b600190610245565b5061027081611d85565b61027982611d85565b9161028c61028682611d85565b91611d85565b906040519361029a8561188b565b8452602084015260408301526000916103e893428542020485144215171561059757428502610bb881011061059757600060e0959495525b80515160e05110156107645760005b60606102f060e0518451611d4e565b510151518110156107555761033261031982606061031160e0518751611d4e565b510151611d4e565b51602061032960e0518651611d4e565b51015190612186565b63ffffffff61034a82606061031160e0518751611d4e565b51515116610359878551611d4e565b5260018060a01b036097541663ffffffff61037d83606061031160e0518851611d4e565b51515160405163023c4c9f60e61b815291166004820152602081602481855afa90811561068a57600091610723575b50806001600160401b0360806103cb86606061031160e0518b51611d4e565b515101511611806106f2575b1561050857505063ffffffff6103f682606061031160e0518751611d4e565b5151511660c0526001600160401b03608061041a83606061031160e0518851611d4e565b515101511660a05261ffff608052608051606061043f838261031160e0518851611d4e565b515101511661049a6001600160401b03604061046485606061031160e0518a51611d4e565b5151015116916001600160801b039283602061048987606061031160e0518c51611d4e565b51510151169160a05160c0516124fc565b60206104af83606061031160e0518851611d4e565b51510151166104c2876020860151611d4e565b5260805160606104da838261031160e0518851611d4e565b51510151166104ed876040860151611d4e565b5260016104fa8786611d4e565b525b600195860195016102e1565b836001600160401b036080610534866060610311610bb89a9e9b999c9a8e4202019660e0519051611d4e565b515101511611156105ad57866001600160401b03608061055e8960606103118e60e0519051611d4e565b51510151169042814202048114421517156105975760249161058291420290611df3565b6040519063628c210b60e11b82526004820152fd5b634e487b7160e01b600052601160045260246000fd5b6001600160401b0360806105d088606061031160e09d999b989a9d518a51611d4e565b5151015116101561069657608063ffffffff6105f584606061031160e0518951611d4e565b515151166024604051809481936344dca75160e11b835260048301525afa801561068a5760209160009161065b575b5060608101516106378984880151611d4e565b520151610648876040860151611d4e565b5260006106558786611d4e565b526104fc565b61067d915060803d608011610683575b61067581836118dc565b810190611db7565b88610624565b503d61066b565b6040513d6000823e3d90fd5b506001600160801b0360206106b483606061031160e0518851611d4e565b51510151166106c7876020860151611d4e565b5261ffff60606106df838261031160e0518851611d4e565b5151015116610648876040860151611d4e565b50610bb8874202016001600160401b03608061071786606061031160e0518b51611d4e565b515101511611156103d7565b90506020813d60201161074d575b8161073e602093836118dc565b8101031261013d5751886103ac565b3d9150610731565b5060e0805160010190526102d2565b507ff77b9be227a199cb89ec5a0163ecdfe805c3f5c706b314c1962cd3e1ea5068246107f39282516107a160208501519260405193849384611e34565b0390a1604051918291602083526107c4815160606020860152608085019061183c565b60406107e1602084015192601f199384888303018489015261183c565b9201519084830301606085015261183c565b0390f35b3461013d57600036600319011261013d576033546040516001600160a01b039091168152602090f35b3461013d57600036600319011261013d57606554336001600160a01b03909116036108505761084e33612648565b005b60405162461bcd60e51b815260206004820152602960248201527f4f776e61626c6532537465703a2063616c6c6572206973206e6f7420746865206044820152683732bb9037bbb732b960b91b6064820152608490fd5b3461013d57602036600319011261013d576004356001600160a01b038116810361013d5761084e906108d76125ce565b611ec0565b3461013d57600036600319011261013d576108f56125ce565b606580546001600160a01b03199081169091556033805491821690556000906001600160a01b03167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e08280a3005b3461013d57602036600319011261013d576004356001600160a01b038116810361013d5761084e906109736125ce565b611e6e565b3461013d57600036600319011261013d576098546040516001600160a01b039091168152602090f35b3461013d57600036600319011261013d577f000000000000000000000000607f5dc1890abd080110a2f9567b46ace0e4e25b6001600160a01b031630036109fa57602060405160008051602061285d8339815191528152f35b60405162461bcd60e51b815260206004820152603860248201527f555550535570677261646561626c653a206d757374206e6f742062652063616c60448201527f6c6564207468726f7567682064656c656761746563616c6c00000000000000006064820152608490fd5b604036600319011261013d57610a796117dd565b602435906001600160401b03821161013d573660238301121561013d578160040135610aa4816118fd565b92610ab260405194856118dc565b81845260209182850191366024838301011161013d578160009260248693018537860101526001600160a01b037f000000000000000000000000607f5dc1890abd080110a2f9567b46ace0e4e25b811690610b0f30831415611918565b610b2c60008051602061285d833981519152928284541614611979565b610b346125ce565b7f4910fdfa16fed3260ed0e7147f7cc6da11a60208b5b9406d12a635614ffd91435460ff1615610b6c575050505061084e915061269e565b84939416906040516352d1902d60e01b81528581600481865afa60009181610cf3575b50610bf05760405162461bcd60e51b815260048101879052602e60248201527f45524331393637557067726164653a206e657720696d706c656d656e7461746960448201526d6f6e206973206e6f74205555505360901b6064820152608490fd5b03610c9c57610bfe8361269e565b7fbc7cd75a20ee27fd9adebab32041f755214dbc6bffa90cc0225b39da2e5c2d3b600080a2835115801590610c94575b610c3457005b6000809161084e957f416464726573733a206c6f772d6c6576656c2064656c65676174652063616c6c60405196610c6a8861188b565b60278852870152660819985a5b195960ca1b60408701525190845af4610c8e611fcc565b91612788565b506001610c2e565b60405162461bcd60e51b815260048101859052602960248201527f45524331393637557067726164653a20756e737570706f727465642070726f786044820152681a58589b195555525160ba1b6064820152608490fd5b9091508681813d8311610d1b575b610d0b81836118dc565b8101031261013d57519088610b8f565b503d610d01565b3461013d57600036600319011261013d576020604051610bb88152f35b3461013d57604036600319011261013d57610d586117dd565b6001600160a01b03906024358281169081900361013d5760005460ff8160081c161593848095610e95575b8015610e7e575b15610e225760ff198216600117600055610dd2936109739286610e10575b50610dc360ff60005460081c16610dbe8161256e565b61256e565b610dcc33612648565b16611ec0565b610dd857005b61ff0019600054166000557f7f26b83ff96e1f2b6a682f133852f6798a09c465da95921460cefb3847402498602060405160018152a1005b61ffff19166101011760005586610da8565b60405162461bcd60e51b815260206004820152602e60248201527f496e697469616c697a61626c653a20636f6e747261637420697320616c72656160448201526d191e481a5b9a5d1a585b1a5e995960921b6064820152608490fd5b50303b158015610d8a5750600160ff831614610d8a565b50600160ff831610610d83565b3461013d57610ee1610eb3366117f3565b60606080604051610ec381611870565b82815282602082015282604082015282808201520152810190611a05565b600090815b81518051841015610f4e579060606101be85610f0194611d4e565b91610f1260206101d9838551611d4e565b610f4657610f2660206101f5838551611d4e565b610f366020610234838551611d4e565b1561024c576001905b0191610ee6565b600190610f3f565b50610f5881611d85565b610f6182611d85565b91610f6b81611d85565b90610f7581611d85565b610f87610f8183611d85565b92611d85565b9260405195610f9587611870565b865260208601526040850152606084015260808301526000916103e893428542020485144215171561059757428502610bb8810110610597576000949394905b8051518210156115145760005b6060610fef848451611d4e565b510151518110156115085761101c61100e826060610311878751611d4e565b516020610329868651611d4e565b63ffffffff611032826060610311878751611d4e565b51515116611041888651611d4e565b5260018060a01b036097541663ffffffff611063836060610311888851611d4e565b51515160405163023c4c9f60e61b815291166004820152602081602481855afa90811561068a576000916114d6575b50806001600160401b0360806110af8660606103118b8b51611d4e565b515101511611806114a7575b156112a457505080838351906110d091611d4e565b5160600151906110df91611d4e565b51515163ffffffff1681848451906110f691611d4e565b51606001519061110591611d4e565b5151608001516001600160401b031690828585519061112391611d4e565b51606001519061113291611d4e565b51516060015161ffff1691838686519061114b91611d4e565b51606001519061115a91611d4e565b5151604001516001600160401b03166001600160801b039384868989519061118191611d4e565b51606001519061119091611d4e565b51516020015116926111a1946124fc565b81848451906111af91611d4e565b5160600151906111be91611d4e565b51516020015116876020860151906111d591611d4e565b5280838351906111e491611d4e565b5160600151906111f391611d4e565b5151608001516001600160401b03168760808601519061121291611d4e565b52808383519061122191611d4e565b51606001519061123091611d4e565b5151604001516001600160401b03168760408601519061124f91611d4e565b52808383519061125e91611d4e565b51606001519061126d91611d4e565b51516060015161ffff168760608601519061128791611d4e565b526112928786611d4e565b60019052600180915b01960195610fe2565b610bb888999597949693984202016001600160401b0360806112cd8b60606103118d8d51611d4e565b515101511611156112f457886001600160401b03608061055e8b60606103118d8d51611d4e565b9091949295939796816001600160401b0360806113188460606103118b8b51611d4e565b515101511610156113eb57608063ffffffff61133b8360606103118a8a51611d4e565b515151166024604051809681936344dca75160e11b835260048301525afa92831561068a5760019384936020926000926113ca575b5060608201516113838d858c0151611d4e565b526113928c60808b0151611d4e565b5260408101516113a68c60408b0151611d4e565b5201516113b78a6060890151611d4e565b5260006113c48a89611d4e565b5261129b565b6113e491925060803d6080116106835761067581836118dc565b908c611370565b600192508291506001600160801b03602061140d8360606103118a8a51611d4e565b51510151166114208a6020890151611d4e565b526001600160401b03608061143c8360606103118a8a51611d4e565b515101511661144f8a6080890151611d4e565b526001600160401b03604061146b8360606103118a8a51611d4e565b515101511661147e8a6040890151611d4e565b5261ffff606061149483826103118a8a51611d4e565b51510151166113b78a6060890151611d4e565b50610bb8884202016001600160401b0360806114ca8660606103118b8b51611d4e565b515101511611156110bb565b90506020813d602011611500575b816114f1602093836118dc565b8101031261013d575189611092565b3d91506114e4565b50600190910190610fd5565b6107f3837ff77b9be227a199cb89ec5a0163ecdfe805c3f5c706b314c1962cd3e1ea50682486825161155160208501519260405193849384611e34565b0390a160405191829160208352611574815160a0602086015260c085019061183c565b60806115bf6115ac611598602086015194601f1995868a83030160408b015261183c565b6040860151858983030160608a015261183c565b606085015184888303018489015261183c565b920151908483030160a085015261183c565b3461013d5760208060031936011261013d576115eb6117dd565b6001600160a01b037f000000000000000000000000607f5dc1890abd080110a2f9567b46ace0e4e25b8116929061162430851415611918565b61164160008051602061285d833981519152948286541614611979565b6116496125ce565b60405193828501918583106001600160401b038411176117a357826040526000865260ff7f4910fdfa16fed3260ed0e7147f7cc6da11a60208b5b9406d12a635614ffd914354166000146116a5575050505061084e915061269e565b84939416906040516352d1902d60e01b81528581600481865afa60009181611774575b506117295760405162461bcd60e51b815260048101879052602e60248201527f45524331393637557067726164653a206e657720696d706c656d656e7461746960448201526d6f6e206973206e6f74205555505360901b6064820152608490fd5b03610c9c576117378361269e565b7fbc7cd75a20ee27fd9adebab32041f755214dbc6bffa90cc0225b39da2e5c2d3b600080a283511580159061176c57610c3457005b506000610c2e565b9091508681813d831161179c575b61178c81836118dc565b8101031261013d575190886116c8565b503d611782565b634e487b7160e01b600052604160045260246000fd5b3461013d57600036600319011261013d576097546001600160a01b03168152602090f35b600435906001600160a01b038216820361013d57565b90602060031983011261013d576004356001600160401b039283821161013d578060238301121561013d57816004013593841161013d576024848301011161013d576024019190565b90815180825260208080930193019160005b82811061185c575050505090565b83518552938101939281019260010161184e565b60a081019081106001600160401b038211176117a357604052565b606081019081106001600160401b038211176117a357604052565b608081019081106001600160401b038211176117a357604052565b604081019081106001600160401b038211176117a357604052565b90601f801991011681019081106001600160401b038211176117a357604052565b6001600160401b0381116117a357601f01601f191660200190565b1561191f57565b60405162461bcd60e51b815260206004820152602c60248201527f46756e6374696f6e206d7573742062652063616c6c6564207468726f7567682060448201526b19195b1959d85d1958d85b1b60a21b6064820152608490fd5b1561198057565b60405162461bcd60e51b815260206004820152602c60248201527f46756e6374696f6e206d7573742062652063616c6c6564207468726f7567682060448201526b6163746976652070726f787960a01b6064820152608490fd5b6001600160401b0381116117a35760051b60200190565b35906001600160401b038216820361013d57565b60208183031261013d578035906001600160401b03821161013d570160208183031261013d5760405191602083018381106001600160401b038211176117a35760405281356001600160401b03811161013d5781601f82850101121561013d578083013590611a73826119da565b93611a8160405195866118dc565b82855260208501918460208560051b83850101011161013d57602081830101925b60208560051b83850101018410611abe57505050505050815290565b83356001600160401b03811161013d578383010160a0818803601f19011261013d5760405190611aed826118a6565b611af9602082016119f1565b82526040810135602083015287607f8201121561013d57604051611b1c816118c1565b8060a08301918a831161013d5760608401905b838210611d3e575050604084015235906001600160401b03821161013d5788603f83830101121561013d5760208282010135611b6a816119da565b92611b7860405194856118dc565b81845260208401908b60408460051b83870101011161013d57604081850101915b60408460051b83870101018310611bc25750505050506060820152815260209384019301611aa2565b6001600160401b0383351161013d578482018335018d03603f190160c0811261013d5760a060405191611bf4836118c1565b1261013d57604051611c0581611870565b6040853585890101013563ffffffff8116810361013d578152606085358589010101356001600160801b038116810361013d5760208201526080611c4f818735878b0101016119f1565b604083015260a08635868a0101013561ffff8116810361013d576060830152611c7f60c08735878b0101016119f1565b90820152815260e084358488010101356001600160401b03811161013d578e605f828735878b01010101121561013d578684018535018101604001358f611cc5826119da565b92611cd360405194856118dc565b828452602084019160608460051b838d8b8d359101010101011161013d576060818935898d01010101915b60608460051b838d8b8d359101010101018310611d2e575050505091816020938480940152815201920191611b99565b8235815260209283019201611cfe565b8135815260209182019101611b2f565b8051821015611d625760209160051b010190565b634e487b7160e01b600052603260045260246000fd5b9190820180921161059757565b90611d8f826119da565b611d9c60405191826118dc565b8281528092611dad601f19916119da565b0190602036910137565b9081608091031261013d57606060405191611dd1836118a6565b8051835260208101516020840152604081015160408401520151606082015290565b9190820391821161059757565b90815180825260208080930193019160005b828110611e20575050505090565b835185529381019392810192600101611e12565b91611e5d90611e4f611e6b9593606086526060860190611e00565b908482036020860152611e00565b916040818403910152611e00565b90565b7fda52bd66d138416c3a3ddc3bd0931b7fd43e8566ae54be77d52e767f336f29dd906020906001600160a01b0316611ea581612626565b609880546001600160a01b03191682179055604051908152a1565b7f063406dd506522b1ab1821a883e917769e0877ddf955ba27f5f63acc58069c45906020906001600160a01b0316611ef781612626565b609780546001600160a01b03191682179055604051908152a1565b609954811015611d625760996000527f72a152ddfb8e864297c917af52ea6c1c68aead0fee1a62673fcc7e0c94979d000190600090565b60995415611f735780600052609b602052611f68604060002054611f12565b90549060031b1c1490565b50600090565b6099548015611fc55781600052609b60205260406000205490811015611d625760996000527f72a152ddfb8e864297c917af52ea6c1c68aead0fee1a62673fcc7e0c94979d0001541490565b5050600090565b3d15611ff7573d90611fdd826118fd565b91611feb60405193846118dc565b82523d6000602084013e565b606090565b909160018060a01b0360985416906040519360208086019463140c180760e11b86526024870152604486016000905b60028210612085575050505060848401526084835260c08301918383106001600160401b038411176117a357600093849360405251915afa61206b611fcc565b501561207357565b604051632077b28160e11b8152600490fd5b8280600192865181520194019101909261202b565b6120a381611f79565b611f7357609a546099546103e8929083810361212657506120c382611f12565b90549060031b1c600052609b60205260006040812055806120fd6120e684611f12565b819391549060031b91821b91600019901b19161790565b90555b600052609b602052604060002055609a5460001981146105975760010106609a55600190565b680100000000000000008110156117a35761214b6120e6826001859401609955611f12565b9055612100565b90602082519201516001600160401b0360c01b90818116936008811061217757505050565b60080360031b82901b16169150565b9081515192604051602081019463ffffffff60e01b9060e01b168552600481526121af816118c1565b5193516001600160e01b031981169490600482106124dc575b50506000936000905b6004821061249a575050602083510151936040519460208601906001600160801b03199060801b1681526010956010815261220b816118c1565b5190516001600160801b0319811691906010821061247a575b5050946000956000915b80831061242a5750505061227461226f604086510151604051906001600160401b0360c01b9060c01b1660208201526008815261226a816118c1565b612152565b61272e565b9460608551015195604051602081019761ffff60f01b9060f01b1688526002815261229e816118c1565b5196516001600160f01b0319811697906002821061240a575b50506000805b600281106123cb57508697506122fe61226f60806020979899510151604051906001600160401b0360c01b9060c01b16888201526008815261226a816118c1565b6040516001600160e01b03199095168686019081526001600160801b031990941660248601526001600160c01b031992831660348601526001600160f01b031991909116603c85015216603e830152602682529061235b8161188b565b51902093015192906000915b84518310156123ae5761237a8386611d4e565b519060008282101561239d5750600052602052600160406000205b920191612367565b604091600193825260205220612395565b91509250036123b957565b6040516309bde33960e01b8152600490fd5b908160031b90828204600814831517156105975760081c60ff60f01b166001600160f01b03198a1690911b6001600160f81b03191617906001016122bd565b6001600160f01b031960029290920360031b82901b1616965038806122b7565b9091968760031b90600889830481148a151715610597571c6effffffffffffffffffffffffffffff60801b166001600160801b0319841690911b6001600160f81b0319161796600101919061222e565b6001600160801b031960109290920360031b82901b161690503880612224565b90948560031b906008878304811488151715610597571c62ffffff60e01b166001600160e01b0319831690911b6001600160f81b0319161794600101906121d1565b6001600160e01b031960049290920360031b82901b1616935038806121c8565b60975491946001600160a01b03909216939192843b1561013d5760009460449386926040519889978896635f6ce8c360e11b8852600488015260181b9260781b9160b81b9060c01b17171760248401525af1801561068a5761255b5750565b6001600160401b0381116117a357604052565b1561257557565b60405162461bcd60e51b815260206004820152602b60248201527f496e697469616c697a61626c653a20636f6e7472616374206973206e6f74206960448201526a6e697469616c697a696e6760a81b6064820152608490fd5b6033546001600160a01b031633036125e257565b606460405162461bcd60e51b815260206004820152602060248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152fd5b6001600160a01b03161561263657565b60405163d92e233d60e01b8152600490fd5b6bffffffffffffffffffffffff60a01b90816065541660655560335460018060a01b038092168093821617603355167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0600080a3565b803b156126d35760008051602061285d83398151915280546001600160a01b0319166001600160a01b03909216919091179055565b60405162461bcd60e51b815260206004820152602d60248201527f455243313936373a206e657720696d706c656d656e746174696f6e206973206e60448201526c1bdd08184818dbdb9d1c9858dd609a1b6064820152608490fd5b906000805b60089081831015612782578260031b9183830481148415171561059757600193909301921c66ffffffffffffff60c01b166001600160c01b0319851690911b6001600160f81b03191617612733565b93505050565b919290156127ea575081511561279c575090565b3b156127a55790565b60405162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e74726163740000006044820152606490fd5b8251909150156127fd5750805190602001fd5b6040519062461bcd60e51b82528160208060048301528251908160248401526000935b828510612843575050604492506000838284010152601f80199101168101030190fd5b848101820151868601604401529381019385935061282056fe360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbca2646970667358221220361e34d159a39933af4f9f5532432cec8db6945d856879e762d2548264c9b2b164736f6c63430008180033