Overview
S Balance
0 S
S Value
$0.00More Info
Private Name Tags
ContractCreator
Loading...
Loading
Contract Source Code Verified (Exact Match)
Contract Name:
ShadowTimelock
Compiler Version
v0.8.26+commit.8a97fa7a
Contract Source Code (Solidity)
/** *Submitted for verification at SonicScan.org on 2024-12-17 */ // File: @openzeppelin/contracts/access/IAccessControl.sol // OpenZeppelin Contracts (last updated v5.0.0) (access/IAccessControl.sol) pragma solidity ^0.8.20; /** * @dev External interface of AccessControl declared to support ERC165 detection. */ interface IAccessControl { /** * @dev The `account` is missing a role. */ error AccessControlUnauthorizedAccount(address account, bytes32 neededRole); /** * @dev The caller of a function is not the expected one. * * NOTE: Don't confuse with {AccessControlUnauthorizedAccount}. */ error AccessControlBadConfirmation(); /** * @dev Emitted when `newAdminRole` is set as ``role``'s admin role, replacing `previousAdminRole` * * `DEFAULT_ADMIN_ROLE` is the starting admin for all roles, despite * {RoleAdminChanged} not being emitted signaling this. */ event RoleAdminChanged(bytes32 indexed role, bytes32 indexed previousAdminRole, bytes32 indexed newAdminRole); /** * @dev Emitted when `account` is granted `role`. * * `sender` is the account that originated the contract call, an admin role * bearer except when using {AccessControl-_setupRole}. */ event RoleGranted(bytes32 indexed role, address indexed account, address indexed sender); /** * @dev Emitted when `account` is revoked `role`. * * `sender` is the account that originated the contract call: * - if using `revokeRole`, it is the admin role bearer * - if using `renounceRole`, it is the role bearer (i.e. `account`) */ event RoleRevoked(bytes32 indexed role, address indexed account, address indexed sender); /** * @dev Returns `true` if `account` has been granted `role`. */ function hasRole(bytes32 role, address account) external view returns (bool); /** * @dev Returns the admin role that controls `role`. See {grantRole} and * {revokeRole}. * * To change a role's admin, use {AccessControl-_setRoleAdmin}. */ function getRoleAdmin(bytes32 role) external view returns (bytes32); /** * @dev Grants `role` to `account`. * * If `account` had not been already granted `role`, emits a {RoleGranted} * event. * * Requirements: * * - the caller must have ``role``'s admin role. */ function grantRole(bytes32 role, address account) external; /** * @dev Revokes `role` from `account`. * * If `account` had been granted `role`, emits a {RoleRevoked} event. * * Requirements: * * - the caller must have ``role``'s admin role. */ function revokeRole(bytes32 role, address account) external; /** * @dev Revokes `role` from the calling account. * * Roles are often managed via {grantRole} and {revokeRole}: this function's * purpose is to provide a mechanism for accounts to lose their privileges * if they are compromised (such as when a trusted device is misplaced). * * If the calling account had been granted `role`, emits a {RoleRevoked} * event. * * Requirements: * * - the caller must be `callerConfirmation`. */ function renounceRole(bytes32 role, address callerConfirmation) external; } // File: @openzeppelin/contracts/utils/Context.sol // OpenZeppelin Contracts (last updated v5.0.1) (utils/Context.sol) pragma solidity ^0.8.20; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } function _contextSuffixLength() internal view virtual returns (uint256) { return 0; } } // File: @openzeppelin/contracts/utils/introspection/IERC165.sol // OpenZeppelin Contracts (last updated v5.0.0) (utils/introspection/IERC165.sol) pragma solidity ^0.8.20; /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165 { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); } // File: @openzeppelin/contracts/utils/introspection/ERC165.sol // OpenZeppelin Contracts (last updated v5.0.0) (utils/introspection/ERC165.sol) pragma solidity ^0.8.20; /** * @dev Implementation of the {IERC165} interface. * * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check * for the additional interface id that will be supported. For example: * * ```solidity * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { * return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId); * } * ``` */ abstract contract ERC165 is IERC165 { /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual returns (bool) { return interfaceId == type(IERC165).interfaceId; } } // File: @openzeppelin/contracts/access/AccessControl.sol // OpenZeppelin Contracts (last updated v5.0.0) (access/AccessControl.sol) pragma solidity ^0.8.20; /** * @dev Contract module that allows children to implement role-based access * control mechanisms. This is a lightweight version that doesn't allow enumerating role * members except through off-chain means by accessing the contract event logs. Some * applications may benefit from on-chain enumerability, for those cases see * {AccessControlEnumerable}. * * Roles are referred to by their `bytes32` identifier. These should be exposed * in the external API and be unique. The best way to achieve this is by * using `public constant` hash digests: * * ```solidity * bytes32 public constant MY_ROLE = keccak256("MY_ROLE"); * ``` * * Roles can be used to represent a set of permissions. To restrict access to a * function call, use {hasRole}: * * ```solidity * function foo() public { * require(hasRole(MY_ROLE, msg.sender)); * ... * } * ``` * * Roles can be granted and revoked dynamically via the {grantRole} and * {revokeRole} functions. Each role has an associated admin role, and only * accounts that have a role's admin role can call {grantRole} and {revokeRole}. * * By default, the admin role for all roles is `DEFAULT_ADMIN_ROLE`, which means * that only accounts with this role will be able to grant or revoke other * roles. More complex role relationships can be created by using * {_setRoleAdmin}. * * WARNING: The `DEFAULT_ADMIN_ROLE` is also its own admin: it has permission to * grant and revoke this role. Extra precautions should be taken to secure * accounts that have been granted it. We recommend using {AccessControlDefaultAdminRules} * to enforce additional security measures for this role. */ abstract contract AccessControl is Context, IAccessControl, ERC165 { struct RoleData { mapping(address account => bool) hasRole; bytes32 adminRole; } mapping(bytes32 role => RoleData) private _roles; bytes32 public constant DEFAULT_ADMIN_ROLE = 0x00; /** * @dev Modifier that checks that an account has a specific role. Reverts * with an {AccessControlUnauthorizedAccount} error including the required role. */ modifier onlyRole(bytes32 role) { _checkRole(role); _; } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IAccessControl).interfaceId || super.supportsInterface(interfaceId); } /** * @dev Returns `true` if `account` has been granted `role`. */ function hasRole(bytes32 role, address account) public view virtual returns (bool) { return _roles[role].hasRole[account]; } /** * @dev Reverts with an {AccessControlUnauthorizedAccount} error if `_msgSender()` * is missing `role`. Overriding this function changes the behavior of the {onlyRole} modifier. */ function _checkRole(bytes32 role) internal view virtual { _checkRole(role, _msgSender()); } /** * @dev Reverts with an {AccessControlUnauthorizedAccount} error if `account` * is missing `role`. */ function _checkRole(bytes32 role, address account) internal view virtual { if (!hasRole(role, account)) { revert AccessControlUnauthorizedAccount(account, role); } } /** * @dev Returns the admin role that controls `role`. See {grantRole} and * {revokeRole}. * * To change a role's admin, use {_setRoleAdmin}. */ function getRoleAdmin(bytes32 role) public view virtual returns (bytes32) { return _roles[role].adminRole; } /** * @dev Grants `role` to `account`. * * If `account` had not been already granted `role`, emits a {RoleGranted} * event. * * Requirements: * * - the caller must have ``role``'s admin role. * * May emit a {RoleGranted} event. */ function grantRole(bytes32 role, address account) public virtual onlyRole(getRoleAdmin(role)) { _grantRole(role, account); } /** * @dev Revokes `role` from `account`. * * If `account` had been granted `role`, emits a {RoleRevoked} event. * * Requirements: * * - the caller must have ``role``'s admin role. * * May emit a {RoleRevoked} event. */ function revokeRole(bytes32 role, address account) public virtual onlyRole(getRoleAdmin(role)) { _revokeRole(role, account); } /** * @dev Revokes `role` from the calling account. * * Roles are often managed via {grantRole} and {revokeRole}: this function's * purpose is to provide a mechanism for accounts to lose their privileges * if they are compromised (such as when a trusted device is misplaced). * * If the calling account had been revoked `role`, emits a {RoleRevoked} * event. * * Requirements: * * - the caller must be `callerConfirmation`. * * May emit a {RoleRevoked} event. */ function renounceRole(bytes32 role, address callerConfirmation) public virtual { if (callerConfirmation != _msgSender()) { revert AccessControlBadConfirmation(); } _revokeRole(role, callerConfirmation); } /** * @dev Sets `adminRole` as ``role``'s admin role. * * Emits a {RoleAdminChanged} event. */ function _setRoleAdmin(bytes32 role, bytes32 adminRole) internal virtual { bytes32 previousAdminRole = getRoleAdmin(role); _roles[role].adminRole = adminRole; emit RoleAdminChanged(role, previousAdminRole, adminRole); } /** * @dev Attempts to grant `role` to `account` and returns a boolean indicating if `role` was granted. * * Internal function without access restriction. * * May emit a {RoleGranted} event. */ function _grantRole(bytes32 role, address account) internal virtual returns (bool) { if (!hasRole(role, account)) { _roles[role].hasRole[account] = true; emit RoleGranted(role, account, _msgSender()); return true; } else { return false; } } /** * @dev Attempts to revoke `role` to `account` and returns a boolean indicating if `role` was revoked. * * Internal function without access restriction. * * May emit a {RoleRevoked} event. */ function _revokeRole(bytes32 role, address account) internal virtual returns (bool) { if (hasRole(role, account)) { _roles[role].hasRole[account] = false; emit RoleRevoked(role, account, _msgSender()); return true; } else { return false; } } } // File: @openzeppelin/contracts/token/ERC721/IERC721Receiver.sol // OpenZeppelin Contracts (last updated v5.1.0) (token/ERC721/IERC721Receiver.sol) pragma solidity ^0.8.20; /** * @title ERC-721 token receiver interface * @dev Interface for any contract that wants to support safeTransfers * from ERC-721 asset contracts. */ interface IERC721Receiver { /** * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom} * by `operator` from `from`, this function is called. * * It must return its Solidity selector to confirm the token transfer. * If any other value is returned or the interface is not implemented by the recipient, the transfer will be * reverted. * * The selector can be obtained in Solidity with `IERC721Receiver.onERC721Received.selector`. */ function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); } // File: @openzeppelin/contracts/token/ERC721/utils/ERC721Holder.sol // OpenZeppelin Contracts (last updated v5.0.0) (token/ERC721/utils/ERC721Holder.sol) pragma solidity ^0.8.20; /** * @dev Implementation of the {IERC721Receiver} interface. * * Accepts all token transfers. * Make sure the contract is able to use its token with {IERC721-safeTransferFrom}, {IERC721-approve} or * {IERC721-setApprovalForAll}. */ abstract contract ERC721Holder is IERC721Receiver { /** * @dev See {IERC721Receiver-onERC721Received}. * * Always returns `IERC721Receiver.onERC721Received.selector`. */ function onERC721Received(address, address, uint256, bytes memory) public virtual returns (bytes4) { return this.onERC721Received.selector; } } // File: @openzeppelin/contracts/token/ERC1155/IERC1155Receiver.sol // OpenZeppelin Contracts (last updated v5.1.0) (token/ERC1155/IERC1155Receiver.sol) pragma solidity ^0.8.20; /** * @dev Interface that must be implemented by smart contracts in order to receive * ERC-1155 token transfers. */ interface IERC1155Receiver is IERC165 { /** * @dev Handles the receipt of a single ERC-1155 token type. This function is * called at the end of a `safeTransferFrom` after the balance has been updated. * * NOTE: To accept the transfer, this must return * `bytes4(keccak256("onERC1155Received(address,address,uint256,uint256,bytes)"))` * (i.e. 0xf23a6e61, or its own function selector). * * @param operator The address which initiated the transfer (i.e. msg.sender) * @param from The address which previously owned the token * @param id The ID of the token being transferred * @param value The amount of tokens being transferred * @param data Additional data with no specified format * @return `bytes4(keccak256("onERC1155Received(address,address,uint256,uint256,bytes)"))` if transfer is allowed */ function onERC1155Received( address operator, address from, uint256 id, uint256 value, bytes calldata data ) external returns (bytes4); /** * @dev Handles the receipt of a multiple ERC-1155 token types. This function * is called at the end of a `safeBatchTransferFrom` after the balances have * been updated. * * NOTE: To accept the transfer(s), this must return * `bytes4(keccak256("onERC1155BatchReceived(address,address,uint256[],uint256[],bytes)"))` * (i.e. 0xbc197c81, or its own function selector). * * @param operator The address which initiated the batch transfer (i.e. msg.sender) * @param from The address which previously owned the token * @param ids An array containing ids of each token being transferred (order and length must match values array) * @param values An array containing amounts of each token being transferred (order and length must match ids array) * @param data Additional data with no specified format * @return `bytes4(keccak256("onERC1155BatchReceived(address,address,uint256[],uint256[],bytes)"))` if transfer is allowed */ function onERC1155BatchReceived( address operator, address from, uint256[] calldata ids, uint256[] calldata values, bytes calldata data ) external returns (bytes4); } // File: @openzeppelin/contracts/token/ERC1155/utils/ERC1155Holder.sol // OpenZeppelin Contracts (last updated v5.1.0) (token/ERC1155/utils/ERC1155Holder.sol) pragma solidity ^0.8.20; /** * @dev Simple implementation of `IERC1155Receiver` that will allow a contract to hold ERC-1155 tokens. * * IMPORTANT: When inheriting this contract, you must include a way to use the received tokens, otherwise they will be * stuck. */ abstract contract ERC1155Holder is ERC165, IERC1155Receiver { /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) { return interfaceId == type(IERC1155Receiver).interfaceId || super.supportsInterface(interfaceId); } function onERC1155Received( address, address, uint256, uint256, bytes memory ) public virtual override returns (bytes4) { return this.onERC1155Received.selector; } function onERC1155BatchReceived( address, address, uint256[] memory, uint256[] memory, bytes memory ) public virtual override returns (bytes4) { return this.onERC1155BatchReceived.selector; } } // File: @openzeppelin/contracts/utils/Address.sol // OpenZeppelin Contracts (last updated v5.0.0) (utils/Address.sol) pragma solidity ^0.8.20; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev The ETH balance of the account is not enough to perform the operation. */ error AddressInsufficientBalance(address account); /** * @dev There's no code at `target` (it is not a contract). */ error AddressEmptyCode(address target); /** * @dev A call to an address target failed. The target may have reverted. */ error FailedInnerCall(); /** * @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://consensys.net/diligence/blog/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.8.20/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { if (address(this).balance < amount) { revert AddressInsufficientBalance(address(this)); } (bool success, ) = recipient.call{value: amount}(""); if (!success) { revert FailedInnerCall(); } } /** * @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 or custom error, it is bubbled * up by this function (like regular Solidity function calls). However, if * the call reverted with no returned reason, this function reverts with a * {FailedInnerCall} error. * * 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. */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCallWithValue(target, data, 0); } /** * @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`. */ function functionCallWithValue(address target, bytes memory data, uint256 value) internal returns (bytes memory) { if (address(this).balance < value) { revert AddressInsufficientBalance(address(this)); } (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResultFromTarget(target, success, returndata); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResultFromTarget(target, success, returndata); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResultFromTarget(target, success, returndata); } /** * @dev Tool to verify that a low level call to smart-contract was successful, and reverts if the target * was not a contract or bubbling up the revert reason (falling back to {FailedInnerCall}) in case of an * unsuccessful call. */ function verifyCallResultFromTarget( address target, bool success, bytes memory returndata ) internal view returns (bytes memory) { if (!success) { _revert(returndata); } else { // only check if target is a contract if the call was successful and the return data is empty // otherwise we already know that it was a contract if (returndata.length == 0 && target.code.length == 0) { revert AddressEmptyCode(target); } return returndata; } } /** * @dev Tool to verify that a low level call was successful, and reverts if it wasn't, either by bubbling the * revert reason or with a default {FailedInnerCall} error. */ function verifyCallResult(bool success, bytes memory returndata) internal pure returns (bytes memory) { if (!success) { _revert(returndata); } else { return returndata; } } /** * @dev Reverts with returndata if present. Otherwise reverts with {FailedInnerCall}. */ function _revert(bytes memory returndata) private pure { // 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 /// @solidity memory-safe-assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert FailedInnerCall(); } } } // File: @openzeppelin/contracts/governance/TimelockController.sol // OpenZeppelin Contracts (last updated v5.0.0) (governance/TimelockController.sol) pragma solidity ^0.8.20; /** * @dev Contract module which acts as a timelocked controller. When set as the * owner of an `Ownable` smart contract, it enforces a timelock on all * `onlyOwner` maintenance operations. This gives time for users of the * controlled contract to exit before a potentially dangerous maintenance * operation is applied. * * By default, this contract is self administered, meaning administration tasks * have to go through the timelock process. The proposer (resp executor) role * is in charge of proposing (resp executing) operations. A common use case is * to position this {TimelockController} as the owner of a smart contract, with * a multisig or a DAO as the sole proposer. */ contract TimelockController is AccessControl, ERC721Holder, ERC1155Holder { bytes32 public constant PROPOSER_ROLE = keccak256("PROPOSER_ROLE"); bytes32 public constant EXECUTOR_ROLE = keccak256("EXECUTOR_ROLE"); bytes32 public constant CANCELLER_ROLE = keccak256("CANCELLER_ROLE"); uint256 internal constant _DONE_TIMESTAMP = uint256(1); mapping(bytes32 id => uint256) private _timestamps; uint256 private _minDelay; enum OperationState { Unset, Waiting, Ready, Done } /** * @dev Mismatch between the parameters length for an operation call. */ error TimelockInvalidOperationLength(uint256 targets, uint256 payloads, uint256 values); /** * @dev The schedule operation doesn't meet the minimum delay. */ error TimelockInsufficientDelay(uint256 delay, uint256 minDelay); /** * @dev The current state of an operation is not as required. * The `expectedStates` is a bitmap with the bits enabled for each OperationState enum position * counting from right to left. * * See {_encodeStateBitmap}. */ error TimelockUnexpectedOperationState(bytes32 operationId, bytes32 expectedStates); /** * @dev The predecessor to an operation not yet done. */ error TimelockUnexecutedPredecessor(bytes32 predecessorId); /** * @dev The caller account is not authorized. */ error TimelockUnauthorizedCaller(address caller); /** * @dev Emitted when a call is scheduled as part of operation `id`. */ event CallScheduled( bytes32 indexed id, uint256 indexed index, address target, uint256 value, bytes data, bytes32 predecessor, uint256 delay ); /** * @dev Emitted when a call is performed as part of operation `id`. */ event CallExecuted(bytes32 indexed id, uint256 indexed index, address target, uint256 value, bytes data); /** * @dev Emitted when new proposal is scheduled with non-zero salt. */ event CallSalt(bytes32 indexed id, bytes32 salt); /** * @dev Emitted when operation `id` is cancelled. */ event Cancelled(bytes32 indexed id); /** * @dev Emitted when the minimum delay for future operations is modified. */ event MinDelayChange(uint256 oldDuration, uint256 newDuration); /** * @dev Initializes the contract with the following parameters: * * - `minDelay`: initial minimum delay in seconds for operations * - `proposers`: accounts to be granted proposer and canceller roles * - `executors`: accounts to be granted executor role * - `admin`: optional account to be granted admin role; disable with zero address * * IMPORTANT: The optional admin can aid with initial configuration of roles after deployment * without being subject to delay, but this role should be subsequently renounced in favor of * administration through timelocked proposals. Previous versions of this contract would assign * this admin to the deployer automatically and should be renounced as well. */ constructor(uint256 minDelay, address[] memory proposers, address[] memory executors, address admin) { // self administration _grantRole(DEFAULT_ADMIN_ROLE, address(this)); // optional admin if (admin != address(0)) { _grantRole(DEFAULT_ADMIN_ROLE, admin); } // register proposers and cancellers for (uint256 i = 0; i < proposers.length; ++i) { _grantRole(PROPOSER_ROLE, proposers[i]); _grantRole(CANCELLER_ROLE, proposers[i]); } // register executors for (uint256 i = 0; i < executors.length; ++i) { _grantRole(EXECUTOR_ROLE, executors[i]); } _minDelay = minDelay; emit MinDelayChange(0, minDelay); } /** * @dev Modifier to make a function callable only by a certain role. In * addition to checking the sender's role, `address(0)` 's role is also * considered. Granting a role to `address(0)` is equivalent to enabling * this role for everyone. */ modifier onlyRoleOrOpenRole(bytes32 role) { if (!hasRole(role, address(0))) { _checkRole(role, _msgSender()); } _; } /** * @dev Contract might receive/hold ETH as part of the maintenance process. */ receive() external payable {} /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface( bytes4 interfaceId ) public view virtual override(AccessControl, ERC1155Holder) returns (bool) { return super.supportsInterface(interfaceId); } /** * @dev Returns whether an id corresponds to a registered operation. This * includes both Waiting, Ready, and Done operations. */ function isOperation(bytes32 id) public view returns (bool) { return getOperationState(id) != OperationState.Unset; } /** * @dev Returns whether an operation is pending or not. Note that a "pending" operation may also be "ready". */ function isOperationPending(bytes32 id) public view returns (bool) { OperationState state = getOperationState(id); return state == OperationState.Waiting || state == OperationState.Ready; } /** * @dev Returns whether an operation is ready for execution. Note that a "ready" operation is also "pending". */ function isOperationReady(bytes32 id) public view returns (bool) { return getOperationState(id) == OperationState.Ready; } /** * @dev Returns whether an operation is done or not. */ function isOperationDone(bytes32 id) public view returns (bool) { return getOperationState(id) == OperationState.Done; } /** * @dev Returns the timestamp at which an operation becomes ready (0 for * unset operations, 1 for done operations). */ function getTimestamp(bytes32 id) public view virtual returns (uint256) { return _timestamps[id]; } /** * @dev Returns operation state. */ function getOperationState(bytes32 id) public view virtual returns (OperationState) { uint256 timestamp = getTimestamp(id); if (timestamp == 0) { return OperationState.Unset; } else if (timestamp == _DONE_TIMESTAMP) { return OperationState.Done; } else if (timestamp > block.timestamp) { return OperationState.Waiting; } else { return OperationState.Ready; } } /** * @dev Returns the minimum delay in seconds for an operation to become valid. * * This value can be changed by executing an operation that calls `updateDelay`. */ function getMinDelay() public view virtual returns (uint256) { return _minDelay; } /** * @dev Returns the identifier of an operation containing a single * transaction. */ function hashOperation( address target, uint256 value, bytes calldata data, bytes32 predecessor, bytes32 salt ) public pure virtual returns (bytes32) { return keccak256(abi.encode(target, value, data, predecessor, salt)); } /** * @dev Returns the identifier of an operation containing a batch of * transactions. */ function hashOperationBatch( address[] calldata targets, uint256[] calldata values, bytes[] calldata payloads, bytes32 predecessor, bytes32 salt ) public pure virtual returns (bytes32) { return keccak256(abi.encode(targets, values, payloads, predecessor, salt)); } /** * @dev Schedule an operation containing a single transaction. * * Emits {CallSalt} if salt is nonzero, and {CallScheduled}. * * Requirements: * * - the caller must have the 'proposer' role. */ function schedule( address target, uint256 value, bytes calldata data, bytes32 predecessor, bytes32 salt, uint256 delay ) public virtual onlyRole(PROPOSER_ROLE) { bytes32 id = hashOperation(target, value, data, predecessor, salt); _schedule(id, delay); emit CallScheduled(id, 0, target, value, data, predecessor, delay); if (salt != bytes32(0)) { emit CallSalt(id, salt); } } /** * @dev Schedule an operation containing a batch of transactions. * * Emits {CallSalt} if salt is nonzero, and one {CallScheduled} event per transaction in the batch. * * Requirements: * * - the caller must have the 'proposer' role. */ function scheduleBatch( address[] calldata targets, uint256[] calldata values, bytes[] calldata payloads, bytes32 predecessor, bytes32 salt, uint256 delay ) public virtual onlyRole(PROPOSER_ROLE) { if (targets.length != values.length || targets.length != payloads.length) { revert TimelockInvalidOperationLength(targets.length, payloads.length, values.length); } bytes32 id = hashOperationBatch(targets, values, payloads, predecessor, salt); _schedule(id, delay); for (uint256 i = 0; i < targets.length; ++i) { emit CallScheduled(id, i, targets[i], values[i], payloads[i], predecessor, delay); } if (salt != bytes32(0)) { emit CallSalt(id, salt); } } /** * @dev Schedule an operation that is to become valid after a given delay. */ function _schedule(bytes32 id, uint256 delay) private { if (isOperation(id)) { revert TimelockUnexpectedOperationState(id, _encodeStateBitmap(OperationState.Unset)); } uint256 minDelay = getMinDelay(); if (delay < minDelay) { revert TimelockInsufficientDelay(delay, minDelay); } _timestamps[id] = block.timestamp + delay; } /** * @dev Cancel an operation. * * Requirements: * * - the caller must have the 'canceller' role. */ function cancel(bytes32 id) public virtual onlyRole(CANCELLER_ROLE) { if (!isOperationPending(id)) { revert TimelockUnexpectedOperationState( id, _encodeStateBitmap(OperationState.Waiting) | _encodeStateBitmap(OperationState.Ready) ); } delete _timestamps[id]; emit Cancelled(id); } /** * @dev Execute an (ready) operation containing a single transaction. * * Emits a {CallExecuted} event. * * Requirements: * * - the caller must have the 'executor' role. */ // This function can reenter, but it doesn't pose a risk because _afterCall checks that the proposal is pending, // thus any modifications to the operation during reentrancy should be caught. // slither-disable-next-line reentrancy-eth function execute( address target, uint256 value, bytes calldata payload, bytes32 predecessor, bytes32 salt ) public payable virtual onlyRoleOrOpenRole(EXECUTOR_ROLE) { bytes32 id = hashOperation(target, value, payload, predecessor, salt); _beforeCall(id, predecessor); _execute(target, value, payload); emit CallExecuted(id, 0, target, value, payload); _afterCall(id); } /** * @dev Execute an (ready) operation containing a batch of transactions. * * Emits one {CallExecuted} event per transaction in the batch. * * Requirements: * * - the caller must have the 'executor' role. */ // This function can reenter, but it doesn't pose a risk because _afterCall checks that the proposal is pending, // thus any modifications to the operation during reentrancy should be caught. // slither-disable-next-line reentrancy-eth function executeBatch( address[] calldata targets, uint256[] calldata values, bytes[] calldata payloads, bytes32 predecessor, bytes32 salt ) public payable virtual onlyRoleOrOpenRole(EXECUTOR_ROLE) { if (targets.length != values.length || targets.length != payloads.length) { revert TimelockInvalidOperationLength(targets.length, payloads.length, values.length); } bytes32 id = hashOperationBatch(targets, values, payloads, predecessor, salt); _beforeCall(id, predecessor); for (uint256 i = 0; i < targets.length; ++i) { address target = targets[i]; uint256 value = values[i]; bytes calldata payload = payloads[i]; _execute(target, value, payload); emit CallExecuted(id, i, target, value, payload); } _afterCall(id); } /** * @dev Execute an operation's call. */ function _execute(address target, uint256 value, bytes calldata data) internal virtual { (bool success, bytes memory returndata) = target.call{value: value}(data); Address.verifyCallResult(success, returndata); } /** * @dev Checks before execution of an operation's calls. */ function _beforeCall(bytes32 id, bytes32 predecessor) private view { if (!isOperationReady(id)) { revert TimelockUnexpectedOperationState(id, _encodeStateBitmap(OperationState.Ready)); } if (predecessor != bytes32(0) && !isOperationDone(predecessor)) { revert TimelockUnexecutedPredecessor(predecessor); } } /** * @dev Checks after execution of an operation's calls. */ function _afterCall(bytes32 id) private { if (!isOperationReady(id)) { revert TimelockUnexpectedOperationState(id, _encodeStateBitmap(OperationState.Ready)); } _timestamps[id] = _DONE_TIMESTAMP; } /** * @dev Changes the minimum timelock duration for future operations. * * Emits a {MinDelayChange} event. * * Requirements: * * - the caller must be the timelock itself. This can only be achieved by scheduling and later executing * an operation where the timelock is the target and the data is the ABI-encoded call to this function. */ function updateDelay(uint256 newDelay) external virtual { address sender = _msgSender(); if (sender != address(this)) { revert TimelockUnauthorizedCaller(sender); } emit MinDelayChange(_minDelay, newDelay); _minDelay = newDelay; } /** * @dev Encodes a `OperationState` into a `bytes32` representation where each bit enabled corresponds to * the underlying position in the `OperationState` enum. For example: * * 0x000...1000 * ^^^^^^----- ... * ^---- Done * ^--- Ready * ^-- Waiting * ^- Unset */ function _encodeStateBitmap(OperationState operationState) internal pure returns (bytes32) { return bytes32(1 << uint8(operationState)); } } // File: contracts/ShadowTimelock.sol pragma solidity ^0.8.26; contract ShadowTimelock is TimelockController { constructor( uint256 minDelay, address[] memory proposers, address[] memory executors, address admin ) TimelockController(minDelay, proposers, executors, admin) {} }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"uint256","name":"minDelay","type":"uint256"},{"internalType":"address[]","name":"proposers","type":"address[]"},{"internalType":"address[]","name":"executors","type":"address[]"},{"internalType":"address","name":"admin","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"AccessControlBadConfirmation","type":"error"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bytes32","name":"neededRole","type":"bytes32"}],"name":"AccessControlUnauthorizedAccount","type":"error"},{"inputs":[],"name":"FailedInnerCall","type":"error"},{"inputs":[{"internalType":"uint256","name":"delay","type":"uint256"},{"internalType":"uint256","name":"minDelay","type":"uint256"}],"name":"TimelockInsufficientDelay","type":"error"},{"inputs":[{"internalType":"uint256","name":"targets","type":"uint256"},{"internalType":"uint256","name":"payloads","type":"uint256"},{"internalType":"uint256","name":"values","type":"uint256"}],"name":"TimelockInvalidOperationLength","type":"error"},{"inputs":[{"internalType":"address","name":"caller","type":"address"}],"name":"TimelockUnauthorizedCaller","type":"error"},{"inputs":[{"internalType":"bytes32","name":"predecessorId","type":"bytes32"}],"name":"TimelockUnexecutedPredecessor","type":"error"},{"inputs":[{"internalType":"bytes32","name":"operationId","type":"bytes32"},{"internalType":"bytes32","name":"expectedStates","type":"bytes32"}],"name":"TimelockUnexpectedOperationState","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"id","type":"bytes32"},{"indexed":true,"internalType":"uint256","name":"index","type":"uint256"},{"indexed":false,"internalType":"address","name":"target","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"},{"indexed":false,"internalType":"bytes","name":"data","type":"bytes"}],"name":"CallExecuted","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"id","type":"bytes32"},{"indexed":false,"internalType":"bytes32","name":"salt","type":"bytes32"}],"name":"CallSalt","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"id","type":"bytes32"},{"indexed":true,"internalType":"uint256","name":"index","type":"uint256"},{"indexed":false,"internalType":"address","name":"target","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"},{"indexed":false,"internalType":"bytes","name":"data","type":"bytes"},{"indexed":false,"internalType":"bytes32","name":"predecessor","type":"bytes32"},{"indexed":false,"internalType":"uint256","name":"delay","type":"uint256"}],"name":"CallScheduled","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"id","type":"bytes32"}],"name":"Cancelled","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"oldDuration","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"newDuration","type":"uint256"}],"name":"MinDelayChange","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"bytes32","name":"previousAdminRole","type":"bytes32"},{"indexed":true,"internalType":"bytes32","name":"newAdminRole","type":"bytes32"}],"name":"RoleAdminChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"sender","type":"address"}],"name":"RoleGranted","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"sender","type":"address"}],"name":"RoleRevoked","type":"event"},{"inputs":[],"name":"CANCELLER_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"DEFAULT_ADMIN_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"EXECUTOR_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PROPOSER_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"id","type":"bytes32"}],"name":"cancel","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"target","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"},{"internalType":"bytes","name":"payload","type":"bytes"},{"internalType":"bytes32","name":"predecessor","type":"bytes32"},{"internalType":"bytes32","name":"salt","type":"bytes32"}],"name":"execute","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address[]","name":"targets","type":"address[]"},{"internalType":"uint256[]","name":"values","type":"uint256[]"},{"internalType":"bytes[]","name":"payloads","type":"bytes[]"},{"internalType":"bytes32","name":"predecessor","type":"bytes32"},{"internalType":"bytes32","name":"salt","type":"bytes32"}],"name":"executeBatch","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"getMinDelay","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"id","type":"bytes32"}],"name":"getOperationState","outputs":[{"internalType":"enum TimelockController.OperationState","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"}],"name":"getRoleAdmin","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"id","type":"bytes32"}],"name":"getTimestamp","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"grantRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"hasRole","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"target","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"},{"internalType":"bytes32","name":"predecessor","type":"bytes32"},{"internalType":"bytes32","name":"salt","type":"bytes32"}],"name":"hashOperation","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"pure","type":"function"},{"inputs":[{"internalType":"address[]","name":"targets","type":"address[]"},{"internalType":"uint256[]","name":"values","type":"uint256[]"},{"internalType":"bytes[]","name":"payloads","type":"bytes[]"},{"internalType":"bytes32","name":"predecessor","type":"bytes32"},{"internalType":"bytes32","name":"salt","type":"bytes32"}],"name":"hashOperationBatch","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"pure","type":"function"},{"inputs":[{"internalType":"bytes32","name":"id","type":"bytes32"}],"name":"isOperation","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"id","type":"bytes32"}],"name":"isOperationDone","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"id","type":"bytes32"}],"name":"isOperationPending","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"id","type":"bytes32"}],"name":"isOperationReady","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"address","name":"","type":"address"},{"internalType":"uint256[]","name":"","type":"uint256[]"},{"internalType":"uint256[]","name":"","type":"uint256[]"},{"internalType":"bytes","name":"","type":"bytes"}],"name":"onERC1155BatchReceived","outputs":[{"internalType":"bytes4","name":"","type":"bytes4"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"address","name":"","type":"address"},{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"bytes","name":"","type":"bytes"}],"name":"onERC1155Received","outputs":[{"internalType":"bytes4","name":"","type":"bytes4"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"address","name":"","type":"address"},{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"bytes","name":"","type":"bytes"}],"name":"onERC721Received","outputs":[{"internalType":"bytes4","name":"","type":"bytes4"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"callerConfirmation","type":"address"}],"name":"renounceRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"revokeRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"target","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"},{"internalType":"bytes32","name":"predecessor","type":"bytes32"},{"internalType":"bytes32","name":"salt","type":"bytes32"},{"internalType":"uint256","name":"delay","type":"uint256"}],"name":"schedule","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"targets","type":"address[]"},{"internalType":"uint256[]","name":"values","type":"uint256[]"},{"internalType":"bytes[]","name":"payloads","type":"bytes[]"},{"internalType":"bytes32","name":"predecessor","type":"bytes32"},{"internalType":"bytes32","name":"salt","type":"bytes32"},{"internalType":"uint256","name":"delay","type":"uint256"}],"name":"scheduleBatch","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"newDelay","type":"uint256"}],"name":"updateDelay","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]
Contract Creation Code
608060405234801561000f575f80fd5b5060405161226c38038061226c83398101604081905261002e916102fe565b8383838361003c5f30610183565b506001600160a01b03811615610058576100565f82610183565b505b5f5b83518110156100ec576100ac7fb09aa5aeb3702cfd50b6b62bc4532604938f21248a27a1d5ca736082b6819cc18583815181106100995761009961037d565b602002602001015161018360201b60201c565b506100e37ffd643c72710c63c0180259aba6b2d05451e3591a24e58b62239378085726f7838583815181106100995761009961037d565b5060010161005a565b505f5b82518110156101375761012e7fd8aa0f3194971a2a116679f7c2090f6939c8d4e01a2a8d7e41d55e5351469e638483815181106100995761009961037d565b506001016100ef565b506002849055604080515f8152602081018690527f11c24f4ead16507c69ac467fbd5e4eed5fb5c699626d2cc6d66421df253886d5910160405180910390a15050505050505050610391565b5f828152602081815260408083206001600160a01b038516845290915281205460ff16610223575f838152602081815260408083206001600160a01b03861684529091529020805460ff191660011790556101db3390565b6001600160a01b0316826001600160a01b0316847f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a4506001610226565b505f5b92915050565b634e487b7160e01b5f52604160045260245ffd5b80516001600160a01b0381168114610256575f80fd5b919050565b5f82601f83011261026a575f80fd5b81516001600160401b038111156102835761028361022c565b604051600582901b90603f8201601f191681016001600160401b03811182821017156102b1576102b161022c565b6040529182526020818501810192908101868411156102ce575f80fd5b6020860192505b838310156102f4576102e683610240565b8152602092830192016102d5565b5095945050505050565b5f805f8060808587031215610311575f80fd5b845160208601519094506001600160401b0381111561032e575f80fd5b61033a8782880161025b565b604087015190945090506001600160401b03811115610357575f80fd5b6103638782880161025b565b92505061037260608601610240565b905092959194509250565b634e487b7160e01b5f52603260045260245ffd5b611ece8061039e5f395ff3fe6080604052600436106101b2575f3560e01c80638065657f116100e7578063bc197c8111610087578063d547741f11610062578063d547741f146105c0578063e38335e5146105df578063f23a6e61146105f2578063f27a0c9214610636575f80fd5b8063bc197c8114610532578063c4d252f514610576578063d45c443514610595575f80fd5b806391d14854116100c257806391d148541461047e578063a217fddf146104cd578063b08e51c0146104e0578063b1c5f42714610513575f80fd5b80638065657f1461040d5780638f2a0bb01461042c5780638f61f4f51461044b575f80fd5b80632ab0f5291161015257806336568abe1161012d57806336568abe14610384578063584b153e146103a357806364d62353146103c25780637958004c146103e1575f80fd5b80632ab0f529146103275780632f2ff15d1461034657806331d5075014610365575f80fd5b8063134008d31161018d578063134008d31461025357806313bc9f2014610266578063150b7a0214610285578063248a9ca3146102f9575f80fd5b806301d5062a146101bd57806301ffc9a7146101de57806307bd026514610212575f80fd5b366101b957005b5f80fd5b3480156101c8575f80fd5b506101dc6101d73660046114fd565b61064a565b005b3480156101e9575f80fd5b506101fd6101f836600461156c565b61071e565b60405190151581526020015b60405180910390f35b34801561021d575f80fd5b506102457fd8aa0f3194971a2a116679f7c2090f6939c8d4e01a2a8d7e41d55e5351469e6381565b604051908152602001610209565b6101dc6102613660046115ab565b61072e565b348015610271575f80fd5b506101fd610280366004611612565b610823565b348015610290575f80fd5b506102c861029f36600461172f565b7f150b7a0200000000000000000000000000000000000000000000000000000000949350505050565b6040517fffffffff000000000000000000000000000000000000000000000000000000009091168152602001610209565b348015610304575f80fd5b50610245610313366004611612565b5f9081526020819052604090206001015490565b348015610332575f80fd5b506101fd610341366004611612565b610848565b348015610351575f80fd5b506101dc610360366004611793565b610850565b348015610370575f80fd5b506101fd61037f366004611612565b61087a565b34801561038f575f80fd5b506101dc61039e366004611793565b61089e565b3480156103ae575f80fd5b506101fd6103bd366004611612565b6108fc565b3480156103cd575f80fd5b506101dc6103dc366004611612565b610941565b3480156103ec575f80fd5b506104006103fb366004611612565b6109da565b60405161020991906117ea565b348015610418575f80fd5b506102456104273660046115ab565b610a22565b348015610437575f80fd5b506101dc61044636600461186a565b610a60565b348015610456575f80fd5b506102457fb09aa5aeb3702cfd50b6b62bc4532604938f21248a27a1d5ca736082b6819cc181565b348015610489575f80fd5b506101fd610498366004611793565b5f9182526020828152604080842073ffffffffffffffffffffffffffffffffffffffff93909316845291905290205460ff1690565b3480156104d8575f80fd5b506102455f81565b3480156104eb575f80fd5b506102457ffd643c72710c63c0180259aba6b2d05451e3591a24e58b62239378085726f78381565b34801561051e575f80fd5b5061024561052d36600461191f565b610c02565b34801561053d575f80fd5b506102c861054c366004611a4c565b7fbc197c810000000000000000000000000000000000000000000000000000000095945050505050565b348015610581575f80fd5b506101dc610590366004611612565b610c46565b3480156105a0575f80fd5b506102456105af366004611612565b5f9081526001602052604090205490565b3480156105cb575f80fd5b506101dc6105da366004611793565b610d09565b6101dc6105ed36600461191f565b610d2d565b3480156105fd575f80fd5b506102c861060c366004611afb565b7ff23a6e610000000000000000000000000000000000000000000000000000000095945050505050565b348015610641575f80fd5b50600254610245565b7fb09aa5aeb3702cfd50b6b62bc4532604938f21248a27a1d5ca736082b6819cc161067481610f07565b5f610683898989898989610a22565b905061068f8184610f14565b5f817f4cf4410cc57040e44862ef0f45f3dd5a5e02db8eb8add648d4b0e236f1d07dca8b8b8b8b8b8a6040516106ca96959493929190611b96565b60405180910390a3831561071357807f20fda5fd27a1ea7bf5b9567f143ac5470bb059374a27e8f67cb44f946f6d03878560405161070a91815260200190565b60405180910390a25b505050505050505050565b5f61072882610fd7565b92915050565b5f80527fdae2aa361dfd1ca020a396615627d436107c35eff9fe7738a3512819782d70696020527f5ba6852781629bcdcd4bdaa6de76d786f1c64b16acdac474e55bebc0ea157951547fd8aa0f3194971a2a116679f7c2090f6939c8d4e01a2a8d7e41d55e5351469e639060ff166107aa576107aa813361102c565b5f6107b9888888888888610a22565b90506107c581856110b5565b6107d18888888861111c565b5f817fc2617efa69bab66782fa219543714338489c4e9e178271560a91b82c3f612b588a8a8a8a6040516108089493929190611be0565b60405180910390a36108198161119d565b5050505050505050565b5f60025b610830836109da565b6003811115610841576108416117bd565b1492915050565b5f6003610827565b5f8281526020819052604090206001015461086a81610f07565b61087483836111c8565b50505050565b5f80610885836109da565b6003811115610896576108966117bd565b141592915050565b73ffffffffffffffffffffffffffffffffffffffff811633146108ed576040517f6697b23200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6108f782826112c1565b505050565b5f80610907836109da565b9050600181600381111561091d5761091d6117bd565b148061093a57506002816003811115610938576109386117bd565b145b9392505050565b33308114610998576040517fe2850c5900000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff821660048201526024015b60405180910390fd5b60025460408051918252602082018490527f11c24f4ead16507c69ac467fbd5e4eed5fb5c699626d2cc6d66421df253886d5910160405180910390a150600255565b5f81815260016020526040812054805f036109f757505f92915050565b60018103610a085750600392915050565b42811115610a195750600192915050565b50600292915050565b5f868686868686604051602001610a3e96959493929190611b96565b6040516020818303038152906040528051906020012090509695505050505050565b7fb09aa5aeb3702cfd50b6b62bc4532604938f21248a27a1d5ca736082b6819cc1610a8a81610f07565b8887141580610a995750888514155b15610ae1576040517fffb03211000000000000000000000000000000000000000000000000000000008152600481018a9052602481018690526044810188905260640161098f565b5f610af28b8b8b8b8b8b8b8b610c02565b9050610afe8184610f14565b5f5b8a811015610bb35780827f4cf4410cc57040e44862ef0f45f3dd5a5e02db8eb8add648d4b0e236f1d07dca8e8e85818110610b3d57610b3d611c15565b9050602002016020810190610b529190611c42565b8d8d86818110610b6457610b64611c15565b905060200201358c8c87818110610b7d57610b7d611c15565b9050602002810190610b8f9190611c5b565b8c8b604051610ba396959493929190611b96565b60405180910390a3600101610b00565b508315610bf557807f20fda5fd27a1ea7bf5b9567f143ac5470bb059374a27e8f67cb44f946f6d038785604051610bec91815260200190565b60405180910390a25b5050505050505050505050565b5f8888888888888888604051602001610c22989796959493929190611d8c565b60405160208183030381529060405280519060200120905098975050505050505050565b7ffd643c72710c63c0180259aba6b2d05451e3591a24e58b62239378085726f783610c7081610f07565b610c79826108fc565b610cce5781610c88600261137a565b610c92600161137a565b6040517f5ead8eb5000000000000000000000000000000000000000000000000000000008152600481019390935217602482015260440161098f565b5f828152600160205260408082208290555183917fbaa1eb22f2a492ba1a5fea61b8df4d27c6c8b5f3971e63bb58fa14ff72eedb7091a25050565b5f82815260208190526040902060010154610d2381610f07565b61087483836112c1565b5f80527fdae2aa361dfd1ca020a396615627d436107c35eff9fe7738a3512819782d70696020527f5ba6852781629bcdcd4bdaa6de76d786f1c64b16acdac474e55bebc0ea157951547fd8aa0f3194971a2a116679f7c2090f6939c8d4e01a2a8d7e41d55e5351469e639060ff16610da957610da9813361102c565b8786141580610db85750878414155b15610e00576040517fffb0321100000000000000000000000000000000000000000000000000000000815260048101899052602481018590526044810187905260640161098f565b5f610e118a8a8a8a8a8a8a8a610c02565b9050610e1d81856110b5565b5f5b89811015610ef1575f8b8b83818110610e3a57610e3a611c15565b9050602002016020810190610e4f9190611c42565b90505f8a8a84818110610e6457610e64611c15565b905060200201359050365f8a8a86818110610e8157610e81611c15565b9050602002810190610e939190611c5b565b91509150610ea38484848461111c565b84867fc2617efa69bab66782fa219543714338489c4e9e178271560a91b82c3f612b5886868686604051610eda9493929190611be0565b60405180910390a350505050806001019050610e1f565b50610efb8161119d565b50505050505050505050565b610f11813361102c565b50565b610f1d8261087a565b15610f675781610f2c5f61137a565b6040517f5ead8eb50000000000000000000000000000000000000000000000000000000081526004810192909252602482015260440161098f565b5f610f7160025490565b905080821015610fb7576040517f54336609000000000000000000000000000000000000000000000000000000008152600481018390526024810182905260440161098f565b610fc18242611e51565b5f93845260016020526040909320929092555050565b5f7fffffffff0000000000000000000000000000000000000000000000000000000082167f4e2312e000000000000000000000000000000000000000000000000000000000148061072857506107288261139c565b5f8281526020818152604080832073ffffffffffffffffffffffffffffffffffffffff8516845290915290205460ff166110b1576040517fe2517d3f00000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff821660048201526024810183905260440161098f565b5050565b6110be82610823565b6110cd5781610f2c600261137a565b80158015906110e257506110e081610848565b155b156110b1576040517f90a9a6180000000000000000000000000000000000000000000000000000000081526004810182905260240161098f565b5f808573ffffffffffffffffffffffffffffffffffffffff16858585604051611146929190611e89565b5f6040518083038185875af1925050503d805f8114611180576040519150601f19603f3d011682016040523d82523d5f602084013e611185565b606091505b50915091506111948282611432565b50505050505050565b6111a681610823565b6111b55780610f2c600261137a565b5f90815260016020819052604090912055565b5f8281526020818152604080832073ffffffffffffffffffffffffffffffffffffffff8516845290915281205460ff166112ba575f8381526020818152604080832073ffffffffffffffffffffffffffffffffffffffff86168452909152902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001660011790556112583390565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16847f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a4506001610728565b505f610728565b5f8281526020818152604080832073ffffffffffffffffffffffffffffffffffffffff8516845290915281205460ff16156112ba575f8381526020818152604080832073ffffffffffffffffffffffffffffffffffffffff8616808552925280832080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0016905551339286917ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b9190a4506001610728565b5f81600381111561138d5761138d6117bd565b600160ff919091161b92915050565b5f7fffffffff0000000000000000000000000000000000000000000000000000000082167f7965db0b00000000000000000000000000000000000000000000000000000000148061072857507f01ffc9a7000000000000000000000000000000000000000000000000000000007fffffffff00000000000000000000000000000000000000000000000000000000831614610728565b606082611447576114428261144e565b610728565b5080610728565b80511561145e5780518082602001fd5b6040517f1425ea4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b803573ffffffffffffffffffffffffffffffffffffffff811681146114b3575f80fd5b919050565b5f8083601f8401126114c8575f80fd5b50813567ffffffffffffffff8111156114df575f80fd5b6020830191508360208285010111156114f6575f80fd5b9250929050565b5f805f805f805f60c0888a031215611513575f80fd5b61151c88611490565b965060208801359550604088013567ffffffffffffffff81111561153e575f80fd5b61154a8a828b016114b8565b989b979a50986060810135976080820135975060a09091013595509350505050565b5f6020828403121561157c575f80fd5b81357fffffffff000000000000000000000000000000000000000000000000000000008116811461093a575f80fd5b5f805f805f8060a087890312156115c0575f80fd5b6115c987611490565b955060208701359450604087013567ffffffffffffffff8111156115eb575f80fd5b6115f789828a016114b8565b979a9699509760608101359660809091013595509350505050565b5f60208284031215611622575f80fd5b5035919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b604051601f82017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe016810167ffffffffffffffff8111828210171561169d5761169d611629565b604052919050565b5f82601f8301126116b4575f80fd5b813567ffffffffffffffff8111156116ce576116ce611629565b6116ff60207fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0601f84011601611656565b818152846020838601011115611713575f80fd5b816020850160208301375f918101602001919091529392505050565b5f805f8060808587031215611742575f80fd5b61174b85611490565b935061175960208601611490565b925060408501359150606085013567ffffffffffffffff81111561177b575f80fd5b611787878288016116a5565b91505092959194509250565b5f80604083850312156117a4575f80fd5b823591506117b460208401611490565b90509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602160045260245ffd5b6020810160048310611823577f4e487b71000000000000000000000000000000000000000000000000000000005f52602160045260245ffd5b91905290565b5f8083601f840112611839575f80fd5b50813567ffffffffffffffff811115611850575f80fd5b6020830191508360208260051b85010111156114f6575f80fd5b5f805f805f805f805f60c08a8c031215611882575f80fd5b893567ffffffffffffffff811115611898575f80fd5b6118a48c828d01611829565b909a5098505060208a013567ffffffffffffffff8111156118c3575f80fd5b6118cf8c828d01611829565b90985096505060408a013567ffffffffffffffff8111156118ee575f80fd5b6118fa8c828d01611829565b9a9d999c50979a969997986060880135976080810135975060a0013595509350505050565b5f805f805f805f8060a0898b031215611936575f80fd5b883567ffffffffffffffff81111561194c575f80fd5b6119588b828c01611829565b909950975050602089013567ffffffffffffffff811115611977575f80fd5b6119838b828c01611829565b909750955050604089013567ffffffffffffffff8111156119a2575f80fd5b6119ae8b828c01611829565b999c989b509699959896976060870135966080013595509350505050565b5f82601f8301126119db575f80fd5b813567ffffffffffffffff8111156119f5576119f5611629565b8060051b611a0560208201611656565b91825260208185018101929081019086841115611a20575f80fd5b6020860192505b83831015611a42578235825260209283019290910190611a27565b9695505050505050565b5f805f805f60a08688031215611a60575f80fd5b611a6986611490565b9450611a7760208701611490565b9350604086013567ffffffffffffffff811115611a92575f80fd5b611a9e888289016119cc565b935050606086013567ffffffffffffffff811115611aba575f80fd5b611ac6888289016119cc565b925050608086013567ffffffffffffffff811115611ae2575f80fd5b611aee888289016116a5565b9150509295509295909350565b5f805f805f60a08688031215611b0f575f80fd5b611b1886611490565b9450611b2660208701611490565b93506040860135925060608601359150608086013567ffffffffffffffff811115611ae2575f80fd5b81835281816020850137505f602082840101525f60207fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0601f840116840101905092915050565b73ffffffffffffffffffffffffffffffffffffffff8716815285602082015260a060408201525f611bcb60a083018688611b4f565b60608301949094525060800152949350505050565b73ffffffffffffffffffffffffffffffffffffffff85168152836020820152606060408201525f611a42606083018486611b4f565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603260045260245ffd5b5f60208284031215611c52575f80fd5b61093a82611490565b5f8083357fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe1843603018112611c8e575f80fd5b83018035915067ffffffffffffffff821115611ca8575f80fd5b6020019150368190038213156114f6575f80fd5b5f8383855260208501945060208460051b820101835f5b86811015611d80577fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe084840301885281357fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe1873603018112611d33575f80fd5b860160208101903567ffffffffffffffff811115611d4f575f80fd5b803603821315611d5d575f80fd5b611d68858284611b4f565b60209a8b019a90955093909301925050600101611cd3565b50909695505050505050565b60a080825281018890525f8960c08301825b8b811015611dd95773ffffffffffffffffffffffffffffffffffffffff611dc484611490565b16825260209283019290910190600101611d9e565b5083810360208501528881527f07ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff891115611e11575f80fd5b8860051b9150818a60208301370182810360209081016040850152611e399082018789611cbc565b60608401959095525050608001529695505050505050565b80820180821115610728577f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b818382375f910190815291905056fea2646970667358221220a0bfa52e2414fd4b5258fcc9ad1e45dc7be7e7e828a9f7291126904ebd36f29f64736f6c634300081a00330000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c00000000000000000000000005be2e859d0c2453c9aa062860ca27711ff55343200000000000000000000000000000000000000000000000000000000000000010000000000000000000000005be2e859d0c2453c9aa062860ca27711ff55343200000000000000000000000000000000000000000000000000000000000000010000000000000000000000005be2e859d0c2453c9aa062860ca27711ff553432
Deployed Bytecode
0x6080604052600436106101b2575f3560e01c80638065657f116100e7578063bc197c8111610087578063d547741f11610062578063d547741f146105c0578063e38335e5146105df578063f23a6e61146105f2578063f27a0c9214610636575f80fd5b8063bc197c8114610532578063c4d252f514610576578063d45c443514610595575f80fd5b806391d14854116100c257806391d148541461047e578063a217fddf146104cd578063b08e51c0146104e0578063b1c5f42714610513575f80fd5b80638065657f1461040d5780638f2a0bb01461042c5780638f61f4f51461044b575f80fd5b80632ab0f5291161015257806336568abe1161012d57806336568abe14610384578063584b153e146103a357806364d62353146103c25780637958004c146103e1575f80fd5b80632ab0f529146103275780632f2ff15d1461034657806331d5075014610365575f80fd5b8063134008d31161018d578063134008d31461025357806313bc9f2014610266578063150b7a0214610285578063248a9ca3146102f9575f80fd5b806301d5062a146101bd57806301ffc9a7146101de57806307bd026514610212575f80fd5b366101b957005b5f80fd5b3480156101c8575f80fd5b506101dc6101d73660046114fd565b61064a565b005b3480156101e9575f80fd5b506101fd6101f836600461156c565b61071e565b60405190151581526020015b60405180910390f35b34801561021d575f80fd5b506102457fd8aa0f3194971a2a116679f7c2090f6939c8d4e01a2a8d7e41d55e5351469e6381565b604051908152602001610209565b6101dc6102613660046115ab565b61072e565b348015610271575f80fd5b506101fd610280366004611612565b610823565b348015610290575f80fd5b506102c861029f36600461172f565b7f150b7a0200000000000000000000000000000000000000000000000000000000949350505050565b6040517fffffffff000000000000000000000000000000000000000000000000000000009091168152602001610209565b348015610304575f80fd5b50610245610313366004611612565b5f9081526020819052604090206001015490565b348015610332575f80fd5b506101fd610341366004611612565b610848565b348015610351575f80fd5b506101dc610360366004611793565b610850565b348015610370575f80fd5b506101fd61037f366004611612565b61087a565b34801561038f575f80fd5b506101dc61039e366004611793565b61089e565b3480156103ae575f80fd5b506101fd6103bd366004611612565b6108fc565b3480156103cd575f80fd5b506101dc6103dc366004611612565b610941565b3480156103ec575f80fd5b506104006103fb366004611612565b6109da565b60405161020991906117ea565b348015610418575f80fd5b506102456104273660046115ab565b610a22565b348015610437575f80fd5b506101dc61044636600461186a565b610a60565b348015610456575f80fd5b506102457fb09aa5aeb3702cfd50b6b62bc4532604938f21248a27a1d5ca736082b6819cc181565b348015610489575f80fd5b506101fd610498366004611793565b5f9182526020828152604080842073ffffffffffffffffffffffffffffffffffffffff93909316845291905290205460ff1690565b3480156104d8575f80fd5b506102455f81565b3480156104eb575f80fd5b506102457ffd643c72710c63c0180259aba6b2d05451e3591a24e58b62239378085726f78381565b34801561051e575f80fd5b5061024561052d36600461191f565b610c02565b34801561053d575f80fd5b506102c861054c366004611a4c565b7fbc197c810000000000000000000000000000000000000000000000000000000095945050505050565b348015610581575f80fd5b506101dc610590366004611612565b610c46565b3480156105a0575f80fd5b506102456105af366004611612565b5f9081526001602052604090205490565b3480156105cb575f80fd5b506101dc6105da366004611793565b610d09565b6101dc6105ed36600461191f565b610d2d565b3480156105fd575f80fd5b506102c861060c366004611afb565b7ff23a6e610000000000000000000000000000000000000000000000000000000095945050505050565b348015610641575f80fd5b50600254610245565b7fb09aa5aeb3702cfd50b6b62bc4532604938f21248a27a1d5ca736082b6819cc161067481610f07565b5f610683898989898989610a22565b905061068f8184610f14565b5f817f4cf4410cc57040e44862ef0f45f3dd5a5e02db8eb8add648d4b0e236f1d07dca8b8b8b8b8b8a6040516106ca96959493929190611b96565b60405180910390a3831561071357807f20fda5fd27a1ea7bf5b9567f143ac5470bb059374a27e8f67cb44f946f6d03878560405161070a91815260200190565b60405180910390a25b505050505050505050565b5f61072882610fd7565b92915050565b5f80527fdae2aa361dfd1ca020a396615627d436107c35eff9fe7738a3512819782d70696020527f5ba6852781629bcdcd4bdaa6de76d786f1c64b16acdac474e55bebc0ea157951547fd8aa0f3194971a2a116679f7c2090f6939c8d4e01a2a8d7e41d55e5351469e639060ff166107aa576107aa813361102c565b5f6107b9888888888888610a22565b90506107c581856110b5565b6107d18888888861111c565b5f817fc2617efa69bab66782fa219543714338489c4e9e178271560a91b82c3f612b588a8a8a8a6040516108089493929190611be0565b60405180910390a36108198161119d565b5050505050505050565b5f60025b610830836109da565b6003811115610841576108416117bd565b1492915050565b5f6003610827565b5f8281526020819052604090206001015461086a81610f07565b61087483836111c8565b50505050565b5f80610885836109da565b6003811115610896576108966117bd565b141592915050565b73ffffffffffffffffffffffffffffffffffffffff811633146108ed576040517f6697b23200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6108f782826112c1565b505050565b5f80610907836109da565b9050600181600381111561091d5761091d6117bd565b148061093a57506002816003811115610938576109386117bd565b145b9392505050565b33308114610998576040517fe2850c5900000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff821660048201526024015b60405180910390fd5b60025460408051918252602082018490527f11c24f4ead16507c69ac467fbd5e4eed5fb5c699626d2cc6d66421df253886d5910160405180910390a150600255565b5f81815260016020526040812054805f036109f757505f92915050565b60018103610a085750600392915050565b42811115610a195750600192915050565b50600292915050565b5f868686868686604051602001610a3e96959493929190611b96565b6040516020818303038152906040528051906020012090509695505050505050565b7fb09aa5aeb3702cfd50b6b62bc4532604938f21248a27a1d5ca736082b6819cc1610a8a81610f07565b8887141580610a995750888514155b15610ae1576040517fffb03211000000000000000000000000000000000000000000000000000000008152600481018a9052602481018690526044810188905260640161098f565b5f610af28b8b8b8b8b8b8b8b610c02565b9050610afe8184610f14565b5f5b8a811015610bb35780827f4cf4410cc57040e44862ef0f45f3dd5a5e02db8eb8add648d4b0e236f1d07dca8e8e85818110610b3d57610b3d611c15565b9050602002016020810190610b529190611c42565b8d8d86818110610b6457610b64611c15565b905060200201358c8c87818110610b7d57610b7d611c15565b9050602002810190610b8f9190611c5b565b8c8b604051610ba396959493929190611b96565b60405180910390a3600101610b00565b508315610bf557807f20fda5fd27a1ea7bf5b9567f143ac5470bb059374a27e8f67cb44f946f6d038785604051610bec91815260200190565b60405180910390a25b5050505050505050505050565b5f8888888888888888604051602001610c22989796959493929190611d8c565b60405160208183030381529060405280519060200120905098975050505050505050565b7ffd643c72710c63c0180259aba6b2d05451e3591a24e58b62239378085726f783610c7081610f07565b610c79826108fc565b610cce5781610c88600261137a565b610c92600161137a565b6040517f5ead8eb5000000000000000000000000000000000000000000000000000000008152600481019390935217602482015260440161098f565b5f828152600160205260408082208290555183917fbaa1eb22f2a492ba1a5fea61b8df4d27c6c8b5f3971e63bb58fa14ff72eedb7091a25050565b5f82815260208190526040902060010154610d2381610f07565b61087483836112c1565b5f80527fdae2aa361dfd1ca020a396615627d436107c35eff9fe7738a3512819782d70696020527f5ba6852781629bcdcd4bdaa6de76d786f1c64b16acdac474e55bebc0ea157951547fd8aa0f3194971a2a116679f7c2090f6939c8d4e01a2a8d7e41d55e5351469e639060ff16610da957610da9813361102c565b8786141580610db85750878414155b15610e00576040517fffb0321100000000000000000000000000000000000000000000000000000000815260048101899052602481018590526044810187905260640161098f565b5f610e118a8a8a8a8a8a8a8a610c02565b9050610e1d81856110b5565b5f5b89811015610ef1575f8b8b83818110610e3a57610e3a611c15565b9050602002016020810190610e4f9190611c42565b90505f8a8a84818110610e6457610e64611c15565b905060200201359050365f8a8a86818110610e8157610e81611c15565b9050602002810190610e939190611c5b565b91509150610ea38484848461111c565b84867fc2617efa69bab66782fa219543714338489c4e9e178271560a91b82c3f612b5886868686604051610eda9493929190611be0565b60405180910390a350505050806001019050610e1f565b50610efb8161119d565b50505050505050505050565b610f11813361102c565b50565b610f1d8261087a565b15610f675781610f2c5f61137a565b6040517f5ead8eb50000000000000000000000000000000000000000000000000000000081526004810192909252602482015260440161098f565b5f610f7160025490565b905080821015610fb7576040517f54336609000000000000000000000000000000000000000000000000000000008152600481018390526024810182905260440161098f565b610fc18242611e51565b5f93845260016020526040909320929092555050565b5f7fffffffff0000000000000000000000000000000000000000000000000000000082167f4e2312e000000000000000000000000000000000000000000000000000000000148061072857506107288261139c565b5f8281526020818152604080832073ffffffffffffffffffffffffffffffffffffffff8516845290915290205460ff166110b1576040517fe2517d3f00000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff821660048201526024810183905260440161098f565b5050565b6110be82610823565b6110cd5781610f2c600261137a565b80158015906110e257506110e081610848565b155b156110b1576040517f90a9a6180000000000000000000000000000000000000000000000000000000081526004810182905260240161098f565b5f808573ffffffffffffffffffffffffffffffffffffffff16858585604051611146929190611e89565b5f6040518083038185875af1925050503d805f8114611180576040519150601f19603f3d011682016040523d82523d5f602084013e611185565b606091505b50915091506111948282611432565b50505050505050565b6111a681610823565b6111b55780610f2c600261137a565b5f90815260016020819052604090912055565b5f8281526020818152604080832073ffffffffffffffffffffffffffffffffffffffff8516845290915281205460ff166112ba575f8381526020818152604080832073ffffffffffffffffffffffffffffffffffffffff86168452909152902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001660011790556112583390565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16847f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a4506001610728565b505f610728565b5f8281526020818152604080832073ffffffffffffffffffffffffffffffffffffffff8516845290915281205460ff16156112ba575f8381526020818152604080832073ffffffffffffffffffffffffffffffffffffffff8616808552925280832080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0016905551339286917ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b9190a4506001610728565b5f81600381111561138d5761138d6117bd565b600160ff919091161b92915050565b5f7fffffffff0000000000000000000000000000000000000000000000000000000082167f7965db0b00000000000000000000000000000000000000000000000000000000148061072857507f01ffc9a7000000000000000000000000000000000000000000000000000000007fffffffff00000000000000000000000000000000000000000000000000000000831614610728565b606082611447576114428261144e565b610728565b5080610728565b80511561145e5780518082602001fd5b6040517f1425ea4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b803573ffffffffffffffffffffffffffffffffffffffff811681146114b3575f80fd5b919050565b5f8083601f8401126114c8575f80fd5b50813567ffffffffffffffff8111156114df575f80fd5b6020830191508360208285010111156114f6575f80fd5b9250929050565b5f805f805f805f60c0888a031215611513575f80fd5b61151c88611490565b965060208801359550604088013567ffffffffffffffff81111561153e575f80fd5b61154a8a828b016114b8565b989b979a50986060810135976080820135975060a09091013595509350505050565b5f6020828403121561157c575f80fd5b81357fffffffff000000000000000000000000000000000000000000000000000000008116811461093a575f80fd5b5f805f805f8060a087890312156115c0575f80fd5b6115c987611490565b955060208701359450604087013567ffffffffffffffff8111156115eb575f80fd5b6115f789828a016114b8565b979a9699509760608101359660809091013595509350505050565b5f60208284031215611622575f80fd5b5035919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b604051601f82017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe016810167ffffffffffffffff8111828210171561169d5761169d611629565b604052919050565b5f82601f8301126116b4575f80fd5b813567ffffffffffffffff8111156116ce576116ce611629565b6116ff60207fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0601f84011601611656565b818152846020838601011115611713575f80fd5b816020850160208301375f918101602001919091529392505050565b5f805f8060808587031215611742575f80fd5b61174b85611490565b935061175960208601611490565b925060408501359150606085013567ffffffffffffffff81111561177b575f80fd5b611787878288016116a5565b91505092959194509250565b5f80604083850312156117a4575f80fd5b823591506117b460208401611490565b90509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602160045260245ffd5b6020810160048310611823577f4e487b71000000000000000000000000000000000000000000000000000000005f52602160045260245ffd5b91905290565b5f8083601f840112611839575f80fd5b50813567ffffffffffffffff811115611850575f80fd5b6020830191508360208260051b85010111156114f6575f80fd5b5f805f805f805f805f60c08a8c031215611882575f80fd5b893567ffffffffffffffff811115611898575f80fd5b6118a48c828d01611829565b909a5098505060208a013567ffffffffffffffff8111156118c3575f80fd5b6118cf8c828d01611829565b90985096505060408a013567ffffffffffffffff8111156118ee575f80fd5b6118fa8c828d01611829565b9a9d999c50979a969997986060880135976080810135975060a0013595509350505050565b5f805f805f805f8060a0898b031215611936575f80fd5b883567ffffffffffffffff81111561194c575f80fd5b6119588b828c01611829565b909950975050602089013567ffffffffffffffff811115611977575f80fd5b6119838b828c01611829565b909750955050604089013567ffffffffffffffff8111156119a2575f80fd5b6119ae8b828c01611829565b999c989b509699959896976060870135966080013595509350505050565b5f82601f8301126119db575f80fd5b813567ffffffffffffffff8111156119f5576119f5611629565b8060051b611a0560208201611656565b91825260208185018101929081019086841115611a20575f80fd5b6020860192505b83831015611a42578235825260209283019290910190611a27565b9695505050505050565b5f805f805f60a08688031215611a60575f80fd5b611a6986611490565b9450611a7760208701611490565b9350604086013567ffffffffffffffff811115611a92575f80fd5b611a9e888289016119cc565b935050606086013567ffffffffffffffff811115611aba575f80fd5b611ac6888289016119cc565b925050608086013567ffffffffffffffff811115611ae2575f80fd5b611aee888289016116a5565b9150509295509295909350565b5f805f805f60a08688031215611b0f575f80fd5b611b1886611490565b9450611b2660208701611490565b93506040860135925060608601359150608086013567ffffffffffffffff811115611ae2575f80fd5b81835281816020850137505f602082840101525f60207fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0601f840116840101905092915050565b73ffffffffffffffffffffffffffffffffffffffff8716815285602082015260a060408201525f611bcb60a083018688611b4f565b60608301949094525060800152949350505050565b73ffffffffffffffffffffffffffffffffffffffff85168152836020820152606060408201525f611a42606083018486611b4f565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603260045260245ffd5b5f60208284031215611c52575f80fd5b61093a82611490565b5f8083357fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe1843603018112611c8e575f80fd5b83018035915067ffffffffffffffff821115611ca8575f80fd5b6020019150368190038213156114f6575f80fd5b5f8383855260208501945060208460051b820101835f5b86811015611d80577fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe084840301885281357fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe1873603018112611d33575f80fd5b860160208101903567ffffffffffffffff811115611d4f575f80fd5b803603821315611d5d575f80fd5b611d68858284611b4f565b60209a8b019a90955093909301925050600101611cd3565b50909695505050505050565b60a080825281018890525f8960c08301825b8b811015611dd95773ffffffffffffffffffffffffffffffffffffffff611dc484611490565b16825260209283019290910190600101611d9e565b5083810360208501528881527f07ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff891115611e11575f80fd5b8860051b9150818a60208301370182810360209081016040850152611e399082018789611cbc565b60608401959095525050608001529695505050505050565b80820180821115610728577f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b818382375f910190815291905056fea2646970667358221220a0bfa52e2414fd4b5258fcc9ad1e45dc7be7e7e828a9f7291126904ebd36f29f64736f6c634300081a0033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
0000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c00000000000000000000000005be2e859d0c2453c9aa062860ca27711ff55343200000000000000000000000000000000000000000000000000000000000000010000000000000000000000005be2e859d0c2453c9aa062860ca27711ff55343200000000000000000000000000000000000000000000000000000000000000010000000000000000000000005be2e859d0c2453c9aa062860ca27711ff553432
-----Decoded View---------------
Arg [0] : minDelay (uint256): 1
Arg [1] : proposers (address[]): 0x5Be2e859D0c2453C9aA062860cA27711ff553432
Arg [2] : executors (address[]): 0x5Be2e859D0c2453C9aA062860cA27711ff553432
Arg [3] : admin (address): 0x5Be2e859D0c2453C9aA062860cA27711ff553432
-----Encoded View---------------
8 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000001
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [2] : 00000000000000000000000000000000000000000000000000000000000000c0
Arg [3] : 0000000000000000000000005be2e859d0c2453c9aa062860ca27711ff553432
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000001
Arg [5] : 0000000000000000000000005be2e859d0c2453c9aa062860ca27711ff553432
Arg [6] : 0000000000000000000000000000000000000000000000000000000000000001
Arg [7] : 0000000000000000000000005be2e859d0c2453c9aa062860ca27711ff553432
Deployed Bytecode Sourcemap
42302:260:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34826:497;;;;;;;;;;-1:-1:-1;34826:497:0;;;;;:::i;:::-;;:::i;:::-;;31269:199;;;;;;;;;;-1:-1:-1;31269:199:0;;;;;:::i;:::-;;:::i;:::-;;;2034:14:1;;2027:22;2009:41;;1997:2;1982:18;31269:199:0;;;;;;;;26726:66;;;;;;;;;;;;26766:26;26726:66;;;;;2207:25:1;;;2195:2;2180:18;26726:66:0;2061:177:1;37988:472:0;;;;;;:::i;:::-;;:::i;32256:136::-;;;;;;;;;;-1:-1:-1;32256:136:0;;;;;:::i;:::-;;:::i;15118:155::-;;;;;;;;;;-1:-1:-1;15118:155:0;;;;;:::i;:::-;15235:30;15118:155;;;;;;;;;;5230:66:1;5218:79;;;5200:98;;5188:2;5173:18;15118:155:0;5056:248:1;10064:122:0;;;;;;;;;;-1:-1:-1;10064:122:0;;;;;:::i;:::-;10129:7;10156:12;;;;;;;;;;:22;;;;10064:122;32476:134;;;;;;;;;;-1:-1:-1;32476:134:0;;;;;:::i;:::-;;:::i;10496:138::-;;;;;;;;;;-1:-1:-1;10496:138:0;;;;;:::i;:::-;;:::i;31632:131::-;;;;;;;;;;-1:-1:-1;31632:131:0;;;;;:::i;:::-;;:::i;11633:251::-;;;;;;;;;;-1:-1:-1;11633:251:0;;;;;:::i;:::-;;:::i;31903:212::-;;;;;;;;;;-1:-1:-1;31903:212:0;;;;;:::i;:::-;;:::i;41398:293::-;;;;;;;;;;-1:-1:-1;41398:293:0;;;;;:::i;:::-;;:::i;32941:471::-;;;;;;;;;;-1:-1:-1;32941:471:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;33831:287::-;;;;;;;;;;-1:-1:-1;33831:287:0;;;;;:::i;:::-;;:::i;35623:827::-;;;;;;;;;;-1:-1:-1;35623:827:0;;;;;:::i;:::-;;:::i;26653:66::-;;;;;;;;;;;;26693:26;26653:66;;9080:138;;;;;;;;;;-1:-1:-1;9080:138:0;;;;;:::i;:::-;9157:4;9181:12;;;;;;;;;;;:29;;;;;;;;;;;;;;;;9080:138;8392:49;;;;;;;;;;-1:-1:-1;8392:49:0;8437:4;8392:49;;26799:68;;;;;;;;;;;;26840:27;26799:68;;34240:328;;;;;;;;;;-1:-1:-1;34240:328:0;;;;;:::i;:::-;;:::i;18962:255::-;;;;;;;;;;-1:-1:-1;18962:255:0;;;;;:::i;:::-;19173:36;18962:255;;;;;;;;37115:385;;;;;;;;;;-1:-1:-1;37115:385:0;;;;;:::i;:::-;;:::i;32764:113::-;;;;;;;;;;-1:-1:-1;32764:113:0;;;;;:::i;:::-;32827:7;32854:15;;;:11;:15;;;;;;;32764:113;10927:140;;;;;;;;;;-1:-1:-1;10927:140:0;;;;;:::i;:::-;;:::i;38982:918::-;;;;;;:::i;:::-;;:::i;18727:227::-;;;;;;;;;;-1:-1:-1;18727:227:0;;;;;:::i;:::-;18915:31;18727:227;;;;;;;;33616:96;;;;;;;;;;-1:-1:-1;33695:9:0;;33616:96;;34826:497;26693:26;8676:16;8687:4;8676:10;:16::i;:::-;35057:10:::1;35070:53;35084:6;35092:5;35099:4;;35105:11;35118:4;35070:13;:53::i;:::-;35057:66;;35134:20;35144:2;35148:5;35134:9;:20::i;:::-;35188:1;35184:2;35170:61;35191:6;35199:5;35206:4;;35212:11;35225:5;35170:61;;;;;;;;;;;:::i;:::-;;;;;;;;35246:18:::0;;35242:74:::1;;35295:2;35286:18;35299:4;35286:18;;;;2207:25:1::0;;2195:2;2180:18;;2061:177;35286:18:0::1;;;;;;;;35242:74;35046:277;34826:497:::0;;;;;;;;:::o;31269:199::-;31400:4;31424:36;31448:11;31424:23;:36::i;:::-;31417:43;31269:199;-1:-1:-1;;31269:199:0:o;37988:472::-;30980:1;9181:29;;:12;;:29;;;26766:26;;9181:29;;30953:89;;31000:30;31011:4;4165:10;31000;:30::i;:::-;38215:10:::1;38228:56;38242:6;38250:5;38257:7;;38266:11;38279:4;38228:13;:56::i;:::-;38215:69;;38297:28;38309:2;38313:11;38297;:28::i;:::-;38336:32;38345:6;38353:5;38360:7;;38336:8;:32::i;:::-;38401:1;38397:2;38384:43;38404:6;38412:5;38419:7;;38384:43;;;;;;;;;:::i;:::-;;;;;;;;38438:14;38449:2;38438:10;:14::i;:::-;38204:256;37988:472:::0;;;;;;;:::o;32256:136::-;32315:4;32364:20;32339:45;:21;32357:2;32339:17;:21::i;:::-;:45;;;;;;;;:::i;:::-;;;32256:136;-1:-1:-1;;32256:136:0:o;32476:134::-;32534:4;32583:19;32558:44;;10496:138;10129:7;10156:12;;;;;;;;;;:22;;;8676:16;8687:4;8676:10;:16::i;:::-;10601:25:::1;10612:4;10618:7;10601:10;:25::i;:::-;;10496:138:::0;;;:::o;31632:131::-;31686:4;;31710:21;31728:2;31710:17;:21::i;:::-;:45;;;;;;;;:::i;:::-;;;;31632:131;-1:-1:-1;;31632:131:0:o;11633:251::-;11727:34;;;4165:10;11727:34;11723:104;;11785:30;;;;;;;;;;;;;;11723:104;11839:37;11851:4;11857:18;11839:11;:37::i;:::-;;11633:251;;:::o;31903:212::-;31964:4;31981:20;32004:21;32022:2;32004:17;:21::i;:::-;31981:44;-1:-1:-1;32052:22:0;32043:5;:31;;;;;;;;:::i;:::-;;:64;;;-1:-1:-1;32087:20:0;32078:5;:29;;;;;;;;:::i;:::-;;32043:64;32036:71;31903:212;-1:-1:-1;;;31903:212:0:o;41398:293::-;4165:10;41527:4;41509:23;;41505:97;;41556:34;;;;;13798:42:1;13786:55;;41556:34:0;;;13768:74:1;13741:18;;41556:34:0;;;;;;;;41505:97;41632:9;;41617:35;;;14027:25:1;;;14083:2;14068:18;;14061:34;;;41617:35:0;;14000:18:1;41617:35:0;;;;;;;-1:-1:-1;41663:9:0;:20;41398:293::o;32941:471::-;33009:14;32854:15;;;:11;:15;;;;;;33087:9;33100:1;33087:14;33083:322;;-1:-1:-1;33125:20:0;;32941:471;-1:-1:-1;;32941:471:0:o;33083:322::-;26926:1;33167:9;:28;33163:242;;-1:-1:-1;33219:19:0;;32941:471;-1:-1:-1;;32941:471:0:o;33163:242::-;33272:15;33260:9;:27;33256:149;;;-1:-1:-1;33311:22:0;;32941:471;-1:-1:-1;;32941:471:0:o;33256:149::-;-1:-1:-1;33373:20:0;;32941:471;-1:-1:-1;;32941:471:0:o;33831:287::-;34022:7;34070:6;34078:5;34085:4;;34091:11;34104:4;34059:50;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;34049:61;;;;;;34042:68;;33831:287;;;;;;;;:::o;35623:827::-;26693:26;8676:16;8687:4;8676:10;:16::i;:::-;35893:31;;::::1;;::::0;:68:::1;;-1:-1:-1::0;35928:33:0;;::::1;;35893:68;35889:186;;;35985:78;::::0;::::1;::::0;;::::1;::::0;::::1;14893:25:1::0;;;14934:18;;;14927:34;;;14977:18;;;14970:34;;;14866:18;;35985:78:0::1;14691:319:1::0;35889:186:0::1;36087:10;36100:64;36119:7;;36128:6;;36136:8;;36146:11;36159:4;36100:18;:64::i;:::-;36087:77;;36175:20;36185:2;36189:5;36175:9;:20::i;:::-;36211:9;36206:153;36226:18:::0;;::::1;36206:153;;;36289:1;36285:2;36271:76;36292:7;;36300:1;36292:10;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;36304:6;;36311:1;36304:9;;;;;;;:::i;:::-;;;;;;;36315:8;;36324:1;36315:11;;;;;;;:::i;:::-;;;;;;;;;;;;:::i;:::-;36328;36341:5;36271:76;;;;;;;;;;;:::i;:::-;;;;;;;;36246:3;;36206:153;;;-1:-1:-1::0;36373:18:0;;36369:74:::1;;36422:2;36413:18;36426:4;36413:18;;;;2207:25:1::0;;2195:2;2180:18;;2061:177;36413:18:0::1;;;;;;;;36369:74;35878:572;35623:827:::0;;;;;;;;;;:::o;34240:328::-;34466:7;34514;;34523:6;;34531:8;;34541:11;34554:4;34503:56;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;34493:67;;;;;;34486:74;;34240:328;;;;;;;;;;:::o;37115:385::-;26840:27;8676:16;8687:4;8676:10;:16::i;:::-;37199:22:::1;37218:2;37199:18;:22::i;:::-;37194:235;;37296:2;37362:40;37381:20;37362:18;:40::i;:::-;37317:42;37336:22;37317:18;:42::i;:::-;37245:172;::::0;::::1;::::0;;::::1;::::0;::::1;14027:25:1::0;;;;37317:85:0::1;14068:18:1::0;;;14061:34;14000:18;;37245:172:0::1;13853:248:1::0;37194:235:0::1;37446:15;::::0;;;:11:::1;:15;::::0;;;;;37439:22;;;37479:13;37458:2;;37479:13:::1;::::0;::::1;37115:385:::0;;:::o;10927:140::-;10129:7;10156:12;;;;;;;;;;:22;;;8676:16;8687:4;8676:10;:16::i;:::-;11033:26:::1;11045:4;11051:7;11033:11;:26::i;38982:918::-:0;30980:1;9181:29;;:12;;:29;;;26766:26;;9181:29;;30953:89;;31000:30;31011:4;4165:10;31000;:30::i;:::-;39245:31;;::::1;;::::0;:68:::1;;-1:-1:-1::0;39280:33:0;;::::1;;39245:68;39241:186;;;39337:78;::::0;::::1;::::0;;::::1;::::0;::::1;14893:25:1::0;;;14934:18;;;14927:34;;;14977:18;;;14970:34;;;14866:18;;39337:78:0::1;14691:319:1::0;39241:186:0::1;39439:10;39452:64;39471:7;;39480:6;;39488:8;;39498:11;39511:4;39452:18;:64::i;:::-;39439:77;;39529:28;39541:2;39545:11;39529;:28::i;:::-;39573:9;39568:300;39588:18:::0;;::::1;39568:300;;;39628:14;39645:7;;39653:1;39645:10;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;39628:27;;39670:13;39686:6;;39693:1;39686:9;;;;;;;:::i;:::-;;;;;;;39670:25;;39710:22;;39735:8;;39744:1;39735:11;;;;;;;:::i;:::-;;;;;;;;;;;;:::i;:::-;39710:36;;;;39761:32;39770:6;39778:5;39785:7;;39761:8;:32::i;:::-;39830:1;39826:2;39813:43;39833:6;39841:5;39848:7;;39813:43;;;;;;;;;:::i;:::-;;;;;;;;39613:255;;;;39608:3;;;;;39568:300;;;;39878:14;39889:2;39878:10;:14::i;:::-;39230:670;38982:918:::0;;;;;;;;;:::o;9433:105::-;9500:30;9511:4;4165:10;31000;:30::i;9500:::-;9433:105;:::o;36556:408::-;36625:15;36637:2;36625:11;:15::i;:::-;36621:133;;;36697:2;36701:40;36720:20;36701:18;:40::i;:::-;36664:78;;;;;;;;14027:25:1;;;;14068:18;;;14061:34;14000:18;;36664:78:0;13853:248:1;36621:133:0;36764:16;36783:13;33695:9;;;33616:96;36783:13;36764:32;;36819:8;36811:5;:16;36807:98;;;36851:42;;;;;;;;14027:25:1;;;14068:18;;;14061:34;;;14000:18;;36851:42:0;13853:248:1;36807:98:0;36933:23;36951:5;36933:15;:23;:::i;:::-;36915:15;;;;:11;:15;;;;;;:41;;;;-1:-1:-1;;36556:408:0:o;18496:223::-;18598:4;18622:49;;;18637:34;18622:49;;:89;;;18675:36;18699:11;18675:23;:36::i;9674:201::-;9157:4;9181:12;;;;;;;;;;;:29;;;;;;;;;;;;;9758:110;;9809:47;;;;;19319:42:1;19307:55;;9809:47:0;;;19289:74:1;19379:18;;;19372:34;;;19262:18;;9809:47:0;19115:297:1;9758:110:0;9674:201;;:::o;40291:374::-;40374:20;40391:2;40374:16;:20::i;:::-;40369:139;;40451:2;40455:40;40474:20;40455:18;:40::i;40369:139::-;40522:25;;;;;:58;;;40552:28;40568:11;40552:15;:28::i;:::-;40551:29;40522:58;40518:140;;;40604:42;;;;;;;;2207:25:1;;;2180:18;;40604:42:0;2061:177:1;39968:235:0;40067:12;40081:23;40108:6;:11;;40127:5;40134:4;;40108:31;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40066:73;;;;40150:45;40175:7;40184:10;40150:24;:45::i;:::-;;40055:148;;39968:235;;;;:::o;40752:241::-;40808:20;40825:2;40808:16;:20::i;:::-;40803:139;;40885:2;40889:40;40908:20;40889:18;:40::i;40803:139::-;40952:15;;;;26926:1;40952:15;;;;;;;;:33;40752:241::o;12510:324::-;12587:4;9181:12;;;;;;;;;;;:29;;;;;;;;;;;;;12604:223;;12648:6;:12;;;;;;;;;;;:29;;;;;;;;;;:36;;;;12680:4;12648:36;;;12731:12;4165:10;;4085:98;12731:12;12704:40;;12722:7;12704:40;;12716:4;12704:40;;;;;;;;;;-1:-1:-1;12766:4:0;12759:11;;12604:223;-1:-1:-1;12810:5:0;12803:12;;13078:325;13156:4;9181:12;;;;;;;;;;;:29;;;;;;;;;;;;;13173:223;;;13248:5;13216:12;;;;;;;;;;;:29;;;;;;;;;;;:37;;;;;;13273:40;4165:10;;13216:12;;13273:40;;13248:5;13273:40;-1:-1:-1;13335:4:0;13328:11;;42070:152;42152:7;42198:14;42192:21;;;;;;;;:::i;:::-;42187:1;:26;;;;;;;42070:152;-1:-1:-1;;42070:152:0:o;8784:204::-;8869:4;8893:47;;;8908:32;8893:47;;:87;;-1:-1:-1;6235:25:0;6220:40;;;;8944:36;6120:148;24788:230;24876:12;24906:7;24901:110;;24930:19;24938:10;24930:7;:19::i;:::-;24901:110;;;-1:-1:-1;24989:10:0;24982:17;;25135:528;25268:17;;:21;25264:392;;25500:10;25494:17;25557:15;25544:10;25540:2;25536:19;25529:44;25264:392;25627:17;;;;;;;;;;;;;;14:196:1;82:20;;142:42;131:54;;121:65;;111:93;;200:1;197;190:12;111:93;14:196;;;:::o;215:347::-;266:8;276:6;330:3;323:4;315:6;311:17;307:27;297:55;;348:1;345;338:12;297:55;-1:-1:-1;371:20:1;;414:18;403:30;;400:50;;;446:1;443;436:12;400:50;483:4;475:6;471:17;459:29;;535:3;528:4;519:6;511;507:19;503:30;500:39;497:59;;;552:1;549;542:12;497:59;215:347;;;;;:::o;567:960::-;682:6;690;698;706;714;722;730;783:3;771:9;762:7;758:23;754:33;751:53;;;800:1;797;790:12;751:53;823:29;842:9;823:29;:::i;:::-;813:39;-1:-1:-1;921:2:1;906:18;;893:32;;-1:-1:-1;1000:2:1;985:18;;972:32;1027:18;1016:30;;1013:50;;;1059:1;1056;1049:12;1013:50;1098:58;1148:7;1139:6;1128:9;1124:22;1098:58;:::i;:::-;567:960;;;;-1:-1:-1;1175:8:1;1283:2;1268:18;;1255:32;;1386:3;1371:19;;1358:33;;-1:-1:-1;1490:3:1;1475:19;;;1462:33;;-1:-1:-1;567:960:1;-1:-1:-1;;;;567:960:1:o;1532:332::-;1590:6;1643:2;1631:9;1622:7;1618:23;1614:32;1611:52;;;1659:1;1656;1649:12;1611:52;1698:9;1685:23;1748:66;1741:5;1737:78;1730:5;1727:89;1717:117;;1830:1;1827;1820:12;2243:839;2349:6;2357;2365;2373;2381;2389;2442:3;2430:9;2421:7;2417:23;2413:33;2410:53;;;2459:1;2456;2449:12;2410:53;2482:29;2501:9;2482:29;:::i;:::-;2472:39;-1:-1:-1;2580:2:1;2565:18;;2552:32;;-1:-1:-1;2659:2:1;2644:18;;2631:32;2686:18;2675:30;;2672:50;;;2718:1;2715;2708:12;2672:50;2757:58;2807:7;2798:6;2787:9;2783:22;2757:58;:::i;:::-;2243:839;;;;-1:-1:-1;2834:8:1;2942:2;2927:18;;2914:32;;3045:3;3030:19;;;3017:33;;-1:-1:-1;2243:839:1;-1:-1:-1;;;;2243:839:1:o;3087:226::-;3146:6;3199:2;3187:9;3178:7;3174:23;3170:32;3167:52;;;3215:1;3212;3205:12;3167:52;-1:-1:-1;3260:23:1;;3087:226;-1:-1:-1;3087:226:1:o;3318:184::-;3370:77;3367:1;3360:88;3467:4;3464:1;3457:15;3491:4;3488:1;3481:15;3507:334;3578:2;3572:9;3634:2;3624:13;;3639:66;3620:86;3608:99;;3737:18;3722:34;;3758:22;;;3719:62;3716:88;;;3784:18;;:::i;:::-;3820:2;3813:22;3507:334;;-1:-1:-1;3507:334:1:o;3846:617::-;3888:5;3941:3;3934:4;3926:6;3922:17;3918:27;3908:55;;3959:1;3956;3949:12;3908:55;3999:6;3986:20;4029:18;4021:6;4018:30;4015:56;;;4051:18;;:::i;:::-;4095:118;4207:4;4138:66;4131:4;4123:6;4119:17;4115:90;4111:101;4095:118;:::i;:::-;4238:6;4229:7;4222:23;4292:3;4285:4;4276:6;4268;4264:19;4260:30;4257:39;4254:59;;;4309:1;4306;4299:12;4254:59;4374:6;4367:4;4359:6;4355:17;4348:4;4339:7;4335:18;4322:59;4430:1;4401:20;;;4423:4;4397:31;4390:42;;;;4405:7;3846:617;-1:-1:-1;;;3846:617:1:o;4468:583::-;4563:6;4571;4579;4587;4640:3;4628:9;4619:7;4615:23;4611:33;4608:53;;;4657:1;4654;4647:12;4608:53;4680:29;4699:9;4680:29;:::i;:::-;4670:39;;4728:38;4762:2;4751:9;4747:18;4728:38;:::i;:::-;4718:48;-1:-1:-1;4835:2:1;4820:18;;4807:32;;-1:-1:-1;4914:2:1;4899:18;;4886:32;4941:18;4930:30;;4927:50;;;4973:1;4970;4963:12;4927:50;4996:49;5037:7;5028:6;5017:9;5013:22;4996:49;:::i;:::-;4986:59;;;4468:583;;;;;;;:::o;5309:300::-;5377:6;5385;5438:2;5426:9;5417:7;5413:23;5409:32;5406:52;;;5454:1;5451;5444:12;5406:52;5499:23;;;-1:-1:-1;5565:38:1;5599:2;5584:18;;5565:38;:::i;:::-;5555:48;;5309:300;;;;;:::o;5845:184::-;5897:77;5894:1;5887:88;5994:4;5991:1;5984:15;6018:4;6015:1;6008:15;6034:403;6184:2;6169:18;;6217:1;6206:13;;6196:201;;6253:77;6250:1;6243:88;6354:4;6351:1;6344:15;6382:4;6379:1;6372:15;6196:201;6406:25;;;6034:403;:::o;6442:367::-;6505:8;6515:6;6569:3;6562:4;6554:6;6550:17;6546:27;6536:55;;6587:1;6584;6577:12;6536:55;-1:-1:-1;6610:20:1;;6653:18;6642:30;;6639:50;;;6685:1;6682;6675:12;6639:50;6722:4;6714:6;6710:17;6698:29;;6782:3;6775:4;6765:6;6762:1;6758:14;6750:6;6746:27;6742:38;6739:47;6736:67;;;6799:1;6796;6789:12;6814:1467;7010:6;7018;7026;7034;7042;7050;7058;7066;7074;7127:3;7115:9;7106:7;7102:23;7098:33;7095:53;;;7144:1;7141;7134:12;7095:53;7184:9;7171:23;7217:18;7209:6;7206:30;7203:50;;;7249:1;7246;7239:12;7203:50;7288:70;7350:7;7341:6;7330:9;7326:22;7288:70;:::i;:::-;7377:8;;-1:-1:-1;7262:96:1;-1:-1:-1;;7465:2:1;7450:18;;7437:32;7494:18;7481:32;;7478:52;;;7526:1;7523;7516:12;7478:52;7565:72;7629:7;7618:8;7607:9;7603:24;7565:72;:::i;:::-;7656:8;;-1:-1:-1;7539:98:1;-1:-1:-1;;7744:2:1;7729:18;;7716:32;7773:18;7760:32;;7757:52;;;7805:1;7802;7795:12;7757:52;7844:72;7908:7;7897:8;7886:9;7882:24;7844:72;:::i;:::-;6814:1467;;;;-1:-1:-1;6814:1467:1;;;;7935:8;;8039:2;8024:18;;8011:32;;8140:3;8125:19;;8112:33;;-1:-1:-1;8244:3:1;8229:19;8216:33;;-1:-1:-1;6814:1467:1;-1:-1:-1;;;;6814:1467:1:o;8286:1346::-;8473:6;8481;8489;8497;8505;8513;8521;8529;8582:3;8570:9;8561:7;8557:23;8553:33;8550:53;;;8599:1;8596;8589:12;8550:53;8639:9;8626:23;8672:18;8664:6;8661:30;8658:50;;;8704:1;8701;8694:12;8658:50;8743:70;8805:7;8796:6;8785:9;8781:22;8743:70;:::i;:::-;8832:8;;-1:-1:-1;8717:96:1;-1:-1:-1;;8920:2:1;8905:18;;8892:32;8949:18;8936:32;;8933:52;;;8981:1;8978;8971:12;8933:52;9020:72;9084:7;9073:8;9062:9;9058:24;9020:72;:::i;:::-;9111:8;;-1:-1:-1;8994:98:1;-1:-1:-1;;9199:2:1;9184:18;;9171:32;9228:18;9215:32;;9212:52;;;9260:1;9257;9250:12;9212:52;9299:72;9363:7;9352:8;9341:9;9337:24;9299:72;:::i;:::-;8286:1346;;;;-1:-1:-1;8286:1346:1;;;;9390:8;;9494:2;9479:18;;9466:32;;9595:3;9580:19;9567:33;;-1:-1:-1;8286:1346:1;-1:-1:-1;;;;8286:1346:1:o;9637:775::-;9691:5;9744:3;9737:4;9729:6;9725:17;9721:27;9711:55;;9762:1;9759;9752:12;9711:55;9802:6;9789:20;9832:18;9824:6;9821:30;9818:56;;;9854:18;;:::i;:::-;9900:6;9897:1;9893:14;9927:30;9951:4;9947:2;9943:13;9927:30;:::i;:::-;9993:19;;;10037:4;10069:15;;;10065:26;;;10028:14;;;;10103:15;;;10100:35;;;10131:1;10128;10121:12;10100:35;10167:4;10159:6;10155:17;10144:28;;10181:200;10197:6;10192:3;10189:15;10181:200;;;10289:17;;10319:18;;10366:4;10214:14;;;;10357;;;;10181:200;;;10399:7;9637:775;-1:-1:-1;;;;;;9637:775:1:o;10417:954::-;10571:6;10579;10587;10595;10603;10656:3;10644:9;10635:7;10631:23;10627:33;10624:53;;;10673:1;10670;10663:12;10624:53;10696:29;10715:9;10696:29;:::i;:::-;10686:39;;10744:38;10778:2;10767:9;10763:18;10744:38;:::i;:::-;10734:48;;10833:2;10822:9;10818:18;10805:32;10860:18;10852:6;10849:30;10846:50;;;10892:1;10889;10882:12;10846:50;10915:61;10968:7;10959:6;10948:9;10944:22;10915:61;:::i;:::-;10905:71;;;11029:2;11018:9;11014:18;11001:32;11058:18;11048:8;11045:32;11042:52;;;11090:1;11087;11080:12;11042:52;11113:63;11168:7;11157:8;11146:9;11142:24;11113:63;:::i;:::-;11103:73;;;11229:3;11218:9;11214:19;11201:33;11259:18;11249:8;11246:32;11243:52;;;11291:1;11288;11281:12;11243:52;11314:51;11357:7;11346:8;11335:9;11331:24;11314:51;:::i;:::-;11304:61;;;10417:954;;;;;;;;:::o;11558:704::-;11662:6;11670;11678;11686;11694;11747:3;11735:9;11726:7;11722:23;11718:33;11715:53;;;11764:1;11761;11754:12;11715:53;11787:29;11806:9;11787:29;:::i;:::-;11777:39;;11835:38;11869:2;11858:9;11854:18;11835:38;:::i;:::-;11825:48;-1:-1:-1;11942:2:1;11927:18;;11914:32;;-1:-1:-1;12043:2:1;12028:18;;12015:32;;-1:-1:-1;12124:3:1;12109:19;;12096:33;12152:18;12141:30;;12138:50;;;12184:1;12181;12174:12;12267:325;12355:6;12350:3;12343:19;12407:6;12400:5;12393:4;12388:3;12384:14;12371:43;;12459:1;12452:4;12443:6;12438:3;12434:16;12430:27;12423:38;12325:3;12581:4;12511:66;12506:2;12498:6;12494:15;12490:88;12485:3;12481:98;12477:109;12470:116;;12267:325;;;;:::o;12597:580::-;12878:42;12870:6;12866:55;12855:9;12848:74;12958:6;12953:2;12942:9;12938:18;12931:34;13001:3;12996:2;12985:9;12981:18;12974:31;12829:4;13022:62;13079:3;13068:9;13064:19;13056:6;13048;13022:62;:::i;:::-;13115:2;13100:18;;13093:34;;;;-1:-1:-1;13158:3:1;13143:19;13136:35;13014:70;12597:580;-1:-1:-1;;;;12597:580:1:o;13182:435::-;13407:42;13399:6;13395:55;13384:9;13377:74;13487:6;13482:2;13471:9;13467:18;13460:34;13530:2;13525;13514:9;13510:18;13503:30;13358:4;13550:61;13607:2;13596:9;13592:18;13584:6;13576;13550:61;:::i;15015:184::-;15067:77;15064:1;15057:88;15164:4;15161:1;15154:15;15188:4;15185:1;15178:15;15204:186;15263:6;15316:2;15304:9;15295:7;15291:23;15287:32;15284:52;;;15332:1;15329;15322:12;15284:52;15355:29;15374:9;15355:29;:::i;15395:580::-;15472:4;15478:6;15538:11;15525:25;15628:66;15617:8;15601:14;15597:29;15593:102;15573:18;15569:127;15559:155;;15710:1;15707;15700:12;15559:155;15737:33;;15789:20;;;-1:-1:-1;15832:18:1;15821:30;;15818:50;;;15864:1;15861;15854:12;15818:50;15897:4;15885:17;;-1:-1:-1;15928:14:1;15924:27;;;15914:38;;15911:58;;;15965:1;15962;15955:12;15980:1148;16057:3;16088;16112:6;16107:3;16100:19;16144:4;16139:3;16135:14;16128:21;;16202:4;16192:6;16189:1;16185:14;16178:5;16174:26;16170:37;16230:5;16253:1;16263:839;16277:6;16274:1;16271:13;16263:839;;;16360:66;16352:5;16346:4;16342:16;16338:89;16333:3;16326:102;16480:6;16467:20;16566:66;16558:5;16542:14;16538:26;16534:99;16514:18;16510:124;16500:152;;16648:1;16645;16638:12;16500:152;16680:30;;16801:4;16788:18;;;16739:21;16835:18;16822:32;;16819:52;;;16867:1;16864;16857:12;16819:52;16920:8;16904:14;16900:29;16891:7;16887:43;16884:63;;;16943:1;16940;16933:12;16884:63;16968:50;17013:4;17003:8;16994:7;16968:50;:::i;:::-;17053:4;17078:14;;;;16960:58;;-1:-1:-1;17041:17:1;;;;;-1:-1:-1;;16299:1:1;16292:9;16263:839;;;-1:-1:-1;17118:4:1;;15980:1148;-1:-1:-1;;;;;;15980:1148:1:o;17133:1440::-;17585:3;17598:22;;;17570:19;;17655:22;;;17537:4;17735:6;17708:3;17693:19;;17537:4;17769:235;17783:6;17780:1;17777:13;17769:235;;;17876:42;17848:26;17867:6;17848:26;:::i;:::-;17844:75;17832:88;;17949:4;17977:17;;;;17940:14;;;;17805:1;17798:9;17769:235;;;17773:3;18051:9;18046:3;18042:19;18035:4;18024:9;18020:20;18013:49;18083:6;18078:3;18071:19;18113:66;18105:6;18102:78;18099:98;;;18193:1;18190;18183:12;18099:98;18227:6;18224:1;18220:14;18206:28;;18280:6;18272;18265:4;18260:3;18256:14;18243:44;18306:16;18362:18;;;18382:4;18358:29;;;18353:2;18338:18;;18331:57;18405:75;;18466:13;;18458:6;18450;18405:75;:::i;:::-;18511:2;18496:18;;18489:34;;;;-1:-1:-1;;18554:3:1;18539:19;18532:35;18397:83;17133:1440;-1:-1:-1;;;;;;17133:1440:1:o;18831:279::-;18896:9;;;18917:10;;;18914:190;;;18960:77;18957:1;18950:88;19061:4;19058:1;19051:15;19089:4;19086:1;19079:15;19417:271;19600:6;19592;19587:3;19574:33;19556:3;19626:16;;19651:13;;;19626:16;19417:271;-1:-1:-1;19417:271:1:o
Swarm Source
ipfs://a0bfa52e2414fd4b5258fcc9ad1e45dc7be7e7e828a9f7291126904ebd36f29f
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 30 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|
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.