Source Code
Multichain Info
N/A
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Advanced mode: Intended for advanced users or developers and will display all Internal Transactions including zero value transfers.
Latest 25 internal transactions (View All)
Advanced mode:
Parent Transaction Hash | Block | From | To | ||||
---|---|---|---|---|---|---|---|
11990002 | 6 mins ago | 0 ETH | |||||
11990002 | 6 mins ago | 0 ETH | |||||
11990002 | 6 mins ago | 0 ETH | |||||
11990002 | 6 mins ago | 0 ETH | |||||
11990002 | 6 mins ago | 0 ETH | |||||
11989942 | 7 mins ago | 0 ETH | |||||
11989942 | 7 mins ago | 0 ETH | |||||
11989942 | 7 mins ago | 0 ETH | |||||
11989942 | 7 mins ago | 0 ETH | |||||
11989942 | 7 mins ago | 0 ETH | |||||
11989942 | 7 mins ago | 0 ETH | |||||
11989942 | 7 mins ago | 0 ETH | |||||
11989942 | 7 mins ago | 0 ETH | |||||
11989460 | 15 mins ago | 0 ETH | |||||
11989460 | 15 mins ago | 0 ETH | |||||
11989460 | 15 mins ago | 0 ETH | |||||
11989460 | 15 mins ago | 0 ETH | |||||
11989460 | 15 mins ago | 0 ETH | |||||
11988359 | 33 mins ago | 0 ETH | |||||
11988359 | 33 mins ago | 0 ETH | |||||
11988359 | 33 mins ago | 0 ETH | |||||
11988359 | 33 mins ago | 0 ETH | |||||
11988359 | 33 mins ago | 0 ETH | |||||
11988359 | 33 mins ago | 0 ETH | |||||
11988359 | 33 mins ago | 0 ETH |
Loading...
Loading
Contract Source Code Verified (Exact Match)
Contract Name:
EnsoShortcuts
Compiler Version
v0.8.28+commit.7893614a
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: GPL-3.0-only pragma solidity ^0.8.28; import { AbstractEnsoShortcuts } from "./AbstractEnsoShortcuts.sol"; contract EnsoShortcuts is AbstractEnsoShortcuts { address public immutable executor; error NotPermitted(); constructor(address executor_) { executor = executor_; } function _checkMsgSender() internal view override { if (msg.sender != executor) revert NotPermitted(); } }
// SPDX-License-Identifier: GPL-3.0-only pragma solidity ^0.8.16; library CommandBuilder { uint256 constant IDX_VARIABLE_LENGTH = 0x80; uint256 constant IDX_VALUE_MASK = 0x7f; uint256 constant IDX_END_OF_ARGS = 0xff; uint256 constant IDX_USE_STATE = 0xfe; uint256 constant IDX_ARRAY_START = 0xfd; uint256 constant IDX_TUPLE_START = 0xfc; uint256 constant IDX_DYNAMIC_END = 0xfb; function buildInputs( bytes[] memory state, bytes4 selector, bytes32 indices, uint256 indicesLength ) internal view returns (bytes memory ret) { uint256 idx; // The current command index uint256 offsetIdx; // The index of the current free offset uint256 count; // Number of bytes in whole ABI encoded message uint256 free; // Pointer to first free byte in tail part of message uint256[] memory dynamicLengths = new uint256[](10); // Optionally store the length of all dynamic types (a command cannot fit more than 10 dynamic types) bytes memory stateData; // Optionally encode the current state if the call requires it // Determine the length of the encoded data for (uint256 i; i < indicesLength; ) { idx = uint8(indices[i]); if (idx == IDX_END_OF_ARGS) { indicesLength = i; break; } if (idx & IDX_VARIABLE_LENGTH != 0) { if (idx == IDX_USE_STATE) { if (stateData.length == 0) { stateData = abi.encode(state); } unchecked { count += stateData.length; } } else { (dynamicLengths, offsetIdx, count, i) = setupDynamicType( state, indices, dynamicLengths, idx, offsetIdx, count, i ); } } else { count = setupStaticVariable(state, count, idx); } unchecked { free += 32; ++i; } } // Encode it ret = new bytes(count + 4); assembly { mstore(add(ret, 32), selector) } offsetIdx = 0; // Use count to track current memory slot assembly { count := add(ret, 36) } for (uint256 i; i < indicesLength; ) { idx = uint8(indices[i]); if (idx & IDX_VARIABLE_LENGTH != 0) { if (idx == IDX_USE_STATE) { assembly { mstore(count, free) } memcpy(stateData, 32, ret, free + 4, stateData.length - 32); unchecked { free += stateData.length - 32; } } else if (idx == IDX_ARRAY_START) { // Start of dynamic type, put pointer in current slot assembly { mstore(count, free) } (offsetIdx, free, i, ) = encodeDynamicArray( ret, state, indices, dynamicLengths, offsetIdx, free, i ); } else if (idx == IDX_TUPLE_START) { // Start of dynamic type, put pointer in current slot assembly { mstore(count, free) } (offsetIdx, free, i, ) = encodeDynamicTuple( ret, state, indices, dynamicLengths, offsetIdx, free, i ); } else { // Variable length data uint256 argLen = state[idx & IDX_VALUE_MASK].length; // Put a pointer in the current slot and write the data to first free slot assembly { mstore(count, free) } memcpy( state[idx & IDX_VALUE_MASK], 0, ret, free + 4, argLen ); unchecked { free += argLen; } } } else { // Fixed length data (length previously checked to be 32 bytes) bytes memory stateVar = state[idx & IDX_VALUE_MASK]; // Write the data to current slot assembly { mstore(count, mload(add(stateVar, 32))) } } unchecked { count += 32; ++i; } } } function setupStaticVariable( bytes[] memory state, uint256 count, uint256 idx ) internal pure returns (uint256 newCount) { require( state[idx & IDX_VALUE_MASK].length == 32, "Static state variables must be 32 bytes" ); unchecked { newCount = count + 32; } } function setupDynamicVariable( bytes[] memory state, uint256 count, uint256 idx ) internal pure returns (uint256 newCount) { bytes memory arg = state[idx & IDX_VALUE_MASK]; // Validate the length of the data in state is a multiple of 32 uint256 argLen = arg.length; require( argLen != 0 && argLen % 32 == 0, "Dynamic state variables must be a multiple of 32 bytes" ); // Add the length of the value, rounded up to the next word boundary, plus space for pointer unchecked { newCount = count + argLen + 32; } } function setupDynamicType( bytes[] memory state, bytes32 indices, uint256[] memory dynamicLengths, uint256 idx, uint256 offsetIdx, uint256 count, uint256 index ) internal view returns ( uint256[] memory newDynamicLengths, uint256 newOffsetIdx, uint256 newCount, uint256 newIndex ) { if (idx == IDX_ARRAY_START) { (newDynamicLengths, newOffsetIdx, newCount, newIndex) = setupDynamicArray( state, indices, dynamicLengths, offsetIdx, count, index ); } else if (idx == IDX_TUPLE_START) { (newDynamicLengths, newOffsetIdx, newCount, newIndex) = setupDynamicTuple( state, indices, dynamicLengths, offsetIdx, count, index ); } else { newDynamicLengths = dynamicLengths; newOffsetIdx = offsetIdx; newIndex = index; newCount = setupDynamicVariable(state, count, idx); } } function setupDynamicArray( bytes[] memory state, bytes32 indices, uint256[] memory dynamicLengths, uint256 offsetIdx, uint256 count, uint256 index ) internal view returns ( uint256[] memory newDynamicLengths, uint256 newOffsetIdx, uint256 newCount, uint256 newIndex ) { // Current idx is IDX_ARRAY_START, next idx will contain the array length unchecked { newIndex = index + 1; newCount = count + 32; } uint256 idx = uint8(indices[newIndex]); require( state[idx & IDX_VALUE_MASK].length == 32, "Array length must be 32 bytes" ); (newDynamicLengths, newOffsetIdx, newCount, newIndex) = setupDynamicTuple( state, indices, dynamicLengths, offsetIdx, newCount, newIndex ); } function setupDynamicTuple( bytes[] memory state, bytes32 indices, uint256[] memory dynamicLengths, uint256 offsetIdx, uint256 count, uint256 index ) internal view returns ( uint256[] memory newDynamicLengths, uint256 newOffsetIdx, uint256 newCount, uint256 newIndex ) { uint256 idx; uint256 offset; newDynamicLengths = dynamicLengths; // Progress to first index of the data and progress the next offset idx unchecked { newIndex = index + 1; newOffsetIdx = offsetIdx + 1; newCount = count + 32; } while (newIndex < 32) { idx = uint8(indices[newIndex]); if (idx & IDX_VARIABLE_LENGTH != 0) { if (idx == IDX_DYNAMIC_END) { newDynamicLengths[offsetIdx] = offset; // explicit return saves gas ¯\_(?)_/¯ return (newDynamicLengths, newOffsetIdx, newCount, newIndex); } else { require(idx != IDX_USE_STATE, "Cannot use state from inside dynamic type"); (newDynamicLengths, newOffsetIdx, newCount, newIndex) = setupDynamicType( state, indices, newDynamicLengths, idx, newOffsetIdx, newCount, newIndex ); } } else { newCount = setupStaticVariable(state, newCount, idx); } unchecked { offset += 32; ++newIndex; } } revert("Dynamic type was not properly closed"); } function encodeDynamicArray( bytes memory ret, bytes[] memory state, bytes32 indices, uint256[] memory dynamicLengths, uint256 offsetIdx, uint256 currentSlot, uint256 index ) internal view returns ( uint256 newOffsetIdx, uint256 newSlot, uint256 newIndex, uint256 length ) { // Progress to array length metadata unchecked { newIndex = index + 1; newSlot = currentSlot + 32; } // Encode array length uint256 idx = uint8(indices[newIndex]); // Array length value previously checked to be 32 bytes bytes memory stateVar = state[idx & IDX_VALUE_MASK]; assembly { mstore(add(add(ret, 36), currentSlot), mload(add(stateVar, 32))) } (newOffsetIdx, newSlot, newIndex, length) = encodeDynamicTuple( ret, state, indices, dynamicLengths, offsetIdx, newSlot, newIndex ); unchecked { length += 32; // Increase length to account for array length metadata } } function encodeDynamicTuple( bytes memory ret, bytes[] memory state, bytes32 indices, uint256[] memory dynamicLengths, uint256 offsetIdx, uint256 currentSlot, uint256 index ) internal view returns ( uint256 newOffsetIdx, uint256 newSlot, uint256 newIndex, uint256 length ) { uint256 idx; uint256 argLen; uint256 freePointer = dynamicLengths[offsetIdx]; // The pointer to the next free slot unchecked { newSlot = currentSlot + freePointer; // Update the next slot newOffsetIdx = offsetIdx + 1; // Progress to next offsetIdx newIndex = index + 1; // Progress to first index of the data } // Shift currentSlot to correct location in memory assembly { currentSlot := add(add(ret, 36), currentSlot) } while (newIndex < 32) { idx = uint8(indices[newIndex]); if (idx & IDX_VARIABLE_LENGTH != 0) { if (idx == IDX_DYNAMIC_END) { break; } else if (idx == IDX_ARRAY_START) { // Start of dynamic type, put pointer in current slot assembly { mstore(currentSlot, freePointer) } (newOffsetIdx, newSlot, newIndex, argLen) = encodeDynamicArray( ret, state, indices, dynamicLengths, newOffsetIdx, newSlot, newIndex ); unchecked { freePointer += argLen; length += (argLen + 32); // data + pointer } } else if (idx == IDX_TUPLE_START) { // Start of dynamic type, put pointer in current slot assembly { mstore(currentSlot, freePointer) } (newOffsetIdx, newSlot, newIndex, argLen) = encodeDynamicTuple( ret, state, indices, dynamicLengths, newOffsetIdx, newSlot, newIndex ); unchecked { freePointer += argLen; length += (argLen + 32); // data + pointer } } else { // Variable length data argLen = state[idx & IDX_VALUE_MASK].length; // Start of dynamic type, put pointer in current slot assembly { mstore(currentSlot, freePointer) } memcpy( state[idx & IDX_VALUE_MASK], 0, ret, newSlot + 4, argLen ); unchecked { newSlot += argLen; freePointer += argLen; length += (argLen + 32); // data + pointer } } } else { // Fixed length data (length previously checked to be 32 bytes) bytes memory stateVar = state[idx & IDX_VALUE_MASK]; // Write to first free slot assembly { mstore(currentSlot, mload(add(stateVar, 32))) } unchecked { length += 32; } } unchecked { currentSlot += 32; ++newIndex; } } } function writeOutputs( bytes[] memory state, bytes1 index, bytes memory output ) internal pure returns (bytes[] memory) { uint256 idx = uint8(index); if (idx == IDX_END_OF_ARGS) return state; if (idx & IDX_VARIABLE_LENGTH != 0) { if (idx == IDX_USE_STATE) { state = abi.decode(output, (bytes[])); } else { require(idx & IDX_VALUE_MASK < state.length, "Index out-of-bounds"); // Check the first field is 0x20 (because we have only a single return value) uint256 argPtr; assembly { argPtr := mload(add(output, 32)) } require( argPtr == 32, "Only one return value permitted (variable)" ); assembly { // Overwrite the first word of the return data with the length - 32 mstore(add(output, 32), sub(mload(output), 32)) // Insert a pointer to the return data, starting at the second word, into state mstore( add(add(state, 32), mul(and(idx, IDX_VALUE_MASK), 32)), add(output, 32) ) } } } else { require(idx & IDX_VALUE_MASK < state.length, "Index out-of-bounds"); // Single word require( output.length == 32, "Only one return value permitted (static)" ); state[idx & IDX_VALUE_MASK] = output; } return state; } function writeTuple( bytes[] memory state, bytes1 index, bytes memory output ) internal view { uint256 idx = uint8(index); if (idx == IDX_END_OF_ARGS) return; bytes memory entry = state[idx & IDX_VALUE_MASK] = new bytes(output.length + 32); memcpy(output, 0, entry, 32, output.length); assembly { let l := mload(output) mstore(add(entry, 32), l) } } function memcpy( bytes memory src, uint256 srcIdx, bytes memory dest, uint256 destIdx, uint256 len ) internal view { assembly { pop( staticcall( gas(), 4, add(add(src, 32), srcIdx), len, add(add(dest, 32), destIdx), len ) ) } } }
// SPDX-License-Identifier: GPL-3.0-only pragma solidity ^0.8.16; import "./CommandBuilder.sol"; abstract contract VM { using CommandBuilder for bytes[]; uint256 constant FLAG_CT_DELEGATECALL = 0x00; // Delegate call not currently supported uint256 constant FLAG_CT_CALL = 0x01; uint256 constant FLAG_CT_STATICCALL = 0x02; uint256 constant FLAG_CT_VALUECALL = 0x03; uint256 constant FLAG_CT_MASK = 0x03; uint256 constant FLAG_DATA = 0x20; uint256 constant FLAG_EXTENDED_COMMAND = 0x40; uint256 constant FLAG_TUPLE_RETURN = 0x80; uint256 constant SHORT_COMMAND_FILL = 0x000000000000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF; error ExecutionFailed( uint256 command_index, address target, string message ); function _execute(bytes32[] calldata commands, bytes[] memory state) internal returns (bytes[] memory) { bytes32 command; uint256 flags; bytes32 indices; bool success; bytes memory outData; uint256 commandsLength = commands.length; uint256 indicesLength; for (uint256 i; i < commandsLength; i = _uncheckedIncrement(i)) { command = commands[i]; flags = uint256(uint8(bytes1(command << 32))); if (flags & FLAG_EXTENDED_COMMAND != 0) { i = _uncheckedIncrement(i); indices = commands[i]; indicesLength = 32; } else { indices = bytes32(uint256(command << 40) | SHORT_COMMAND_FILL); indicesLength = 6; } if (flags & FLAG_CT_MASK == FLAG_CT_CALL) { (success, outData) = address(uint160(uint256(command))).call( // target // inputs flags & FLAG_DATA == 0 ? state.buildInputs( bytes4(command), // selector indices, indicesLength ) : state[ uint8(bytes1(indices)) & CommandBuilder.IDX_VALUE_MASK ] ); } else if (flags & FLAG_CT_MASK == FLAG_CT_STATICCALL) { (success, outData) = address(uint160(uint256(command))) // target .staticcall( // inputs flags & FLAG_DATA == 0 ? state.buildInputs( bytes4(command), // selector indices, indicesLength ) : state[ uint8(bytes1(indices)) & CommandBuilder.IDX_VALUE_MASK ] ); } else if (flags & FLAG_CT_MASK == FLAG_CT_VALUECALL) { bytes memory v = state[ uint8(bytes1(indices)) & CommandBuilder.IDX_VALUE_MASK ]; require(v.length == 32, "Value must be 32 bytes"); uint256 callEth = uint256(bytes32(v)); (success, outData) = address(uint160(uint256(command))).call{ // target value: callEth }( // inputs flags & FLAG_DATA == 0 ? state.buildInputs( bytes4(command), // selector indices << 8, // skip value input indicesLength - 1 // max indices length reduced by value input ) : state[ uint8(bytes1(indices << 8)) & // first byte after value input CommandBuilder.IDX_VALUE_MASK ] ); } else { revert("Invalid calltype"); } if (!success) { string memory message = "Unknown"; if (outData.length > 68) { // This might be an error message, parse the outData // Estimate the bytes length of the possible error message uint256 estimatedLength = _estimateBytesLength(outData, 68); // Remove selector. First 32 bytes should be a pointer that indicates the start of data in memory assembly { outData := add(outData, 4) } uint256 pointer = uint256(bytes32(outData)); if (pointer == 32) { // Remove pointer. If it is a string, the next 32 bytes will hold the size assembly { outData := add(outData, 32) } uint256 size = uint256(bytes32(outData)); // If the size variable is the same as the estimated bytes length, we can be fairly certain // this is a dynamic string, so convert the bytes to a string and emit the message. While an // error function with 3 static parameters is capable of producing a similar output, there is // low risk of a contract unintentionally emitting a message. if (size == estimatedLength) { // Remove size. The remaining data should be the string content assembly { outData := add(outData, 32) } message = string(outData); } } } revert ExecutionFailed({ command_index: flags & FLAG_EXTENDED_COMMAND == 0 ? i : i - 1, target: address(uint160(uint256(command))), message: message }); } if (flags & FLAG_TUPLE_RETURN != 0) { state.writeTuple(bytes1(command << 88), outData); } else { state = state.writeOutputs(bytes1(command << 88), outData); } } return state; } function _estimateBytesLength(bytes memory data, uint256 pos) internal pure returns (uint256 estimate) { uint256 length = data.length; estimate = length - pos; // Assume length equals alloted space for (uint256 i = pos; i < length; ) { if (data[i] == 0) { // Zero bytes found, adjust estimated length estimate = i - pos; break; } unchecked { ++i; } } } function _uncheckedIncrement(uint256 i) private pure returns (uint256) { unchecked { ++i; } return i; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.1.0) (token/ERC1155/IERC1155Receiver.sol) pragma solidity ^0.8.20; import {IERC165} from "../../utils/introspection/IERC165.sol"; /** * @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); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.1.0) (token/ERC1155/utils/ERC1155Holder.sol) pragma solidity ^0.8.20; import {IERC165, ERC165} from "../../../utils/introspection/ERC165.sol"; import {IERC1155Receiver} from "../IERC1155Receiver.sol"; /** * @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; } }
// SPDX-License-Identifier: MIT // 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); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.0.0) (token/ERC721/utils/ERC721Holder.sol) pragma solidity ^0.8.20; import {IERC721Receiver} from "../IERC721Receiver.sol"; /** * @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; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.1.0) (utils/introspection/ERC165.sol) pragma solidity ^0.8.20; import {IERC165} from "./IERC165.sol"; /** * @dev Implementation of the {IERC165} interface. * * Contracts that want to implement ERC-165 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; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.1.0) (utils/introspection/IERC165.sol) pragma solidity ^0.8.20; /** * @dev Interface of the ERC-165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[ERC]. * * 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[ERC 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); }
// SPDX-License-Identifier: GPL-3.0-only pragma solidity ^0.8.28; import { VM } from "enso-weiroll/VM.sol"; import { ERC1155Holder } from "openzeppelin-contracts/token/ERC1155/utils/ERC1155Holder.sol"; import { ERC721Holder } from "openzeppelin-contracts/token/ERC721/utils/ERC721Holder.sol"; abstract contract AbstractEnsoShortcuts is VM, ERC721Holder, ERC1155Holder { event ShortcutExecuted(bytes32 accountId, bytes32 requestId); // @notice Execute a shortcut // @param accountId The bytes32 value representing an API user // @param requestId The bytes32 value representing an API request // @param commands An array of bytes32 values that encode calls // @param state An array of bytes that are used to generate call data for each command function executeShortcut( bytes32 accountId, bytes32 requestId, bytes32[] calldata commands, bytes[] calldata state ) public payable virtual returns (bytes[] memory response) { _checkMsgSender(); response = _execute(commands, state); emit ShortcutExecuted(accountId, requestId); } //@notice Abstract function to validate msg.sender function _checkMsgSender() internal view virtual; receive() external payable virtual { } }
{ "evmVersion": "cancun", "metadata": { "appendCBOR": false, "bytecodeHash": "none", "useLiteralContent": false }, "optimizer": { "enabled": true, "runs": 200 }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "abi" ] } }, "remappings": [ "@layerzerolabs/oapp-evm/=lib/devtools/packages/oapp-evm/", "@layerzerolabs/lz-evm-protocol-v2/=lib/layerzero-v2/packages/layerzero-v2/evm/protocol/", "@layerzerolabs/lz-evm-oapp-v2/=lib/layerzero-v2/packages/layerzero-v2/evm/oapp/", "@uniswap/v4-core/=lib/v4-core/", "@uniswap/v4-periphery/=lib/v4-periphery/", "devtools/=lib/devtools/packages/toolbox-foundry/src/", "ds-test/=lib/forge-std/lib/ds-test/src/", "enso-weiroll/=lib/enso-weiroll/contracts/", "erc4626-tests/=lib/openzeppelin-contracts/lib/erc4626-tests/", "forge-std/=lib/forge-std/src/", "halmos-cheatcodes/=lib/openzeppelin-contracts/lib/halmos-cheatcodes/src/", "layerzero-v2/=lib/layerzero-v2/", "openzeppelin-contracts/=lib/openzeppelin-contracts/contracts/", "safe-contracts/=lib/safe-tools/lib/safe-contracts/contracts/", "safe-tools/=lib/safe-tools/src/", "solady/=lib/solady/src/", "solmate/=lib/solady/lib/solmate/src/", "@ensdomains/=lib/v4-core/node_modules/@ensdomains/", "@openzeppelin/=lib/v4-core/lib/openzeppelin-contracts/", "forge-gas-snapshot/=lib/v4-periphery/lib/permit2/lib/forge-gas-snapshot/src/", "hardhat/=lib/v4-core/node_modules/hardhat/", "permit2/=lib/v4-periphery/lib/permit2/", "v4-core/=lib/v4-core/src/", "v4-periphery/=lib/v4-periphery/" ], "viaIR": true }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"inputs":[{"internalType":"address","name":"executor_","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[{"internalType":"uint256","name":"command_index","type":"uint256"},{"internalType":"address","name":"target","type":"address"},{"internalType":"string","name":"message","type":"string"}],"name":"ExecutionFailed","type":"error"},{"inputs":[],"name":"NotPermitted","type":"error"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"bytes32","name":"accountId","type":"bytes32"},{"indexed":false,"internalType":"bytes32","name":"requestId","type":"bytes32"}],"name":"ShortcutExecuted","type":"event"},{"inputs":[{"internalType":"bytes32","name":"accountId","type":"bytes32"},{"internalType":"bytes32","name":"requestId","type":"bytes32"},{"internalType":"bytes32[]","name":"commands","type":"bytes32[]"},{"internalType":"bytes[]","name":"state","type":"bytes[]"}],"name":"executeShortcut","outputs":[{"internalType":"bytes[]","name":"response","type":"bytes[]"}],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"executor","outputs":[{"internalType":"address","name":"","type":"address"}],"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":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"stateMutability":"payable","type":"receive"}]
Contract Creation Code
60a034606d57601f61151238819003918201601f19168301916001600160401b03831184841017607157808492602094604052833981010312606d57516001600160a01b0381168103606d5760805260405161148c9081610086823960805181818161047201526105630152f35b5f80fd5b634e487b7160e01b5f52604160045260245ffdfe6080604052600436101561001a575b3615610018575f80fd5b005b5f3560e01c806301ffc9a714610079578063150b7a021461007457806395352c9f1461006f578063bc197c811461006a578063c34c08e5146100655763f23a6e610361000e576104a1565b61045d565b6103c8565b6102a0565b610198565b346100cd5760203660031901126100cd5760043563ffffffff60e01b81168091036100cd57630271189760e51b81149081156100bc575b50151560805260206080f35b6301ffc9a760e01b149050816100b0565b5f80fd5b600435906001600160a01b03821682036100cd57565b602435906001600160a01b03821682036100cd57565b634e487b7160e01b5f52604160045260245ffd5b90601f801991011681019081106001600160401b0382111761013257604052565b6100fd565b6001600160401b03811161013257601f01601f191660200190565b81601f820112156100cd5780359061016982610137565b926101776040519485610111565b828452602083830101116100cd57815f926020809301838601378301015290565b346100cd5760803660031901126100cd576101b16100d1565b506101ba6100e7565b506064356001600160401b0381116100cd576101da903690600401610152565b50604051630a85bd0160e11b8152602090f35b9181601f840112156100cd578235916001600160401b0383116100cd576020808501948460051b0101116100cd57565b805180835260209291819084018484015e5f828201840152601f01601f1916010190565b602081016020825282518091526040820191602060408360051b8301019401925f915b83831061027357505050505090565b9091929394602080610291600193603f19868203018752895161021d565b97019301930191939290610264565b60803660031901126100cd576024356004356044356001600160401b0381116100cd576102d19036906004016101ed565b90926064356001600160401b0381116100cd57610350947f049d8dd84b6a6cc45d5f68a74b23450bd3e54d84fd405d91b8b286c78d51d2499361032d61031e6103339436906004016101ed565b610326610561565b36916104f6565b916106fb565b60408051948552602085019290925292a160405191829182610241565b0390f35b6001600160401b0381116101325760051b60200190565b9080601f830112156100cd57813561038281610354565b926103906040519485610111565b81845260208085019260051b8201019283116100cd57602001905b8282106103b85750505090565b81358152602091820191016103ab565b346100cd5760a03660031901126100cd576103e16100d1565b506103ea6100e7565b506044356001600160401b0381116100cd5761040a90369060040161036b565b506064356001600160401b0381116100cd5761042a90369060040161036b565b506084356001600160401b0381116100cd5761044a903690600401610152565b5060405163bc197c8160e01b8152602090f35b346100cd575f3660031901126100cd576040517f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03168152602090f35b346100cd5760a03660031901126100cd576104ba6100d1565b506104c36100e7565b506084356001600160401b0381116100cd576104e3903690600401610152565b5060405163f23a6e6160e01b8152602090f35b92919061050281610354565b936105106040519586610111565b602085838152019160051b8101918383116100cd5781905b838210610536575050505050565b81356001600160401b0381116100cd576020916105568784938701610152565b815201910190610528565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316330361059357565b6339218f3b60e01b5f5260045ffd5b634e487b7160e01b5f52603260045260245ffd5b91908110156105c65760051b0190565b6105a2565b80518210156105c65760209160051b010190565b156105e657565b60405162461bcd60e51b815260206004820152601660248201527556616c7565206d75737420626520333220627974657360501b6044820152606490fd5b602081519101519060208110610638575090565b5f199060200360031b1b1690565b634e487b7160e01b5f52601160045260245ffd5b5f1981019190821161066857565b610646565b601f1981019190821161066857565b3d156106a6573d9061068d82610137565b9161069b6040519384610111565b82523d5f602084013e565b606090565b604051906106ba604083610111565b60078252662ab735b737bbb760c91b6020830152565b9081526001600160a01b0390911660208201526060604082018190526106f89291019061021d565b90565b905f5b81811061070b5750505090565b6107168183856105b6565b359061074461073e61073861072b8560201b90565b6001600160f81b03191690565b60f81c90565b60ff1690565b9160408316159182610a02576001019261075f8486886105b6565b356020905b60038316600181036108bd57505f91829190602085166108a657610793916001600160e01b031987168c610a7b565b805190602001826001600160a01b0387165af1926107af61067c565b935b84901561080a575050608016156107e8576107e392916107d761072b6107dd9360581b90565b87610f7f565b60010190565b6106fe565b906107e392956107fe61072b6108049460581b90565b90610ed4565b936107dd565b8592506108156106ab565b946044815111610865575b505090610852915f1461085657925b60405163ef3dcb2f60e01b81529384936001600160a01b031690600485016106d0565b0390fd5b61085f9061065a565b9261082f565b602061087c600461087584610ca8565b9301610624565b036108205761088d60248301610624565b14610899575b80610820565b6044019350610852610893565b50607f6108b79160f81c168a6105cb565b51610793565b6002810361092057505f9182919060208516610909576108e8916001600160e01b031987168c610a7b565b8051906020016001600160a01b0386165afa9261090361067c565b936107b1565b50607f61091a9160f81c168a6105cb565b516108e8565b6003036109ca575f918161095161093e607f869560f81c168d6105cb565b5161094c60208251146105df565b610624565b91602086161584146109a35761097361096d6109859360081b90565b9161065a565b906001600160e01b031988168d610a7b565b905b815191602001906001600160a01b0387165af19261090361067c565b50607f6109bc61073e61073861072b6109c39560081b90565b168b6105cb565b5190610987565b60405162461bcd60e51b815260206004820152601060248201526f496e76616c69642063616c6c7479706560801b6044820152606490fd5b926006602883901b6001600160d01b0317610764565b6040516101609190610a2a8382610111565b600a815291601f1901366020840137565b906004820180921161066857565b90610a5382610137565b610a606040519182610111565b8281528092610a71601f1991610137565b0190602036910137565b91939290935f5f915f92610a8d610a18565b906060935f905b878210610be9575b5050610aaa610aaf91610a3b565b610a49565b9760208901525f9060248901925f955b878710610ad157505050505050505050565b60208710156105c657888b83891a6080811615610bc75760fe8103610b2c575050506020816001928752610b198d610b0883610a3b565b610b128b5161066d565b918b61112d565b875101601f1901955b0196019593610abf565b60fd819794959697145f14610b61575092610b5592868660019b948a9998978560209c52611283565b50979195909594610b22565b60fc8103610b83575092610b5592868660019b948a9998978560209c5261113f565b93610bc0888293610baf602096607f6001999c9b9a1690610ba482826105cb565b5151978895526105cb565b5190610bba85610a3b565b9161111b565b0195610b22565b60209250600193979150610bdf607f8492168d6105cb565b5101518152610b22565b9093959160208510156105c65786851a60ff8114610c94576080811615610c7f5760fe8103610c5f5750855115610c2f575b6020600191875101935b0196940190610a94565b945060016020604051610c5681610c488d858301610241565b03601f198101835282610111565b96915050610c1b565b90610c739260019692602095968a8d61104c565b95919390939294610c25565b610c8e6020916001938c610fd9565b93610c25565b509396509094929050610aaa610aaf610a9c565b9081516043198101818111610668579260445b828110610cc757505050565b81518110156105c657818101602001516001600160f81b03191615610cee57600101610cbb565b929350505060431981019081116106685790565b15610d0957565b60405162461bcd60e51b8152602060048201526013602482015272496e646578206f75742d6f662d626f756e647360681b6044820152606490fd5b15610d4b57565b60405162461bcd60e51b815260206004820152602860248201527f4f6e6c79206f6e652072657475726e2076616c7565207065726d697474656420604482015267287374617469632960c01b6064820152608490fd5b15610da857565b60405162461bcd60e51b815260206004820152602a60248201527f4f6e6c79206f6e652072657475726e2076616c7565207065726d697474656420604482015269287661726961626c652960b01b6064820152608490fd5b6020818303126100cd578051906001600160401b0382116100cd57019080601f830112156100cd57815191610e3483610354565b92610e426040519485610111565b80845260208085019160051b830101918383116100cd5760208101915b838310610e6e57505050505090565b82516001600160401b0381116100cd57820185603f820112156100cd57602081015191610e9a83610137565b610ea76040519182610111565b83815260408385010188106100cd575f602085819660408397018386015e83010152815201920191610e5f565b91908060f81c60ff8114610f79576080811615610f415760fe8103610f095750506106f8915060208082518301019101610e00565b602091610f1f610fe092607f8751911610610d02565b82840193610f2f84865114610da1565b51601f1901845260f31c168301015290565b610f75929150607f1690610f5784518310610d02565b610f646020825114610d44565b610f6e82856105cb565b52826105cb565b5090565b50505090565b9060f81c60ff8114610fd4578251906020820180921161066857602092607f610faa610fbd94610a49565b921691610fb783836105cb565b526105cb565b51918051604084018184840160045afa5051910152565b505050565b610fea90607f6020939416906105cb565b515103610ff75760200190565b60405162461bcd60e51b815260206004820152602760248201527f537461746963207374617465207661726961626c6573206d75737420626520336044820152663220627974657360c81b6064820152608490fd5b90969594939260fd810361106c5750956110669596611410565b90919293565b60fc81036110805750956110669596611329565b919650919493929161109591607f16906105cb565b515180151580611110575b156110ac570160200191565b60405162461bcd60e51b815260206004820152603660248201527f44796e616d6963207374617465207661726961626c6573206d7573742062652060448201527561206d756c7469706c65206f6620333220627974657360501b6064820152608490fd5b50601f8116156110a0565b916020809185930101920160045afa50565b910160200190829060400160045afa50565b9193959692905f9461115188846105cb565b51936024600180878b019b019b0198820101915b60208910611176575b505050505050565b80891a608081161561125a5760fb8103611190575061116e565b60fd819c92959a9499969b93979c145f146111e15750906111b892918b89528a858b89611283565b9260209a93926001928c969480919d939d97929d9e01970101985b019301979291939490611165565b60fc810361121b5750906111fc92918b89528a858b8961113f565b9260209a93926001928c969480919d939d97929d9e01970101986111d3565b6020898b8e6001959f9e97989661124e607f869716948d610baf61123f88886105cb565b515197889788978895526105cb565b019d01970101986111d3565b602060019293979694998161127788607f999e99839616906105cb565b5101518b5201986111d3565b9392919094956001019460208610156105c65760206112bd97816112ac607f868b1a16856105cb565b51015160248289010152019461113f565b929391929091602090910190565b156112d257565b60405162461bcd60e51b815260206004820152602960248201527f43616e6e6f74207573652073746174652066726f6d20696e736964652064796e604482015268616d6963207479706560b81b6064820152608490fd5b6001808501976020909601960194935f929091905b602087106113975760405162461bcd60e51b8152602060048201526024808201527f44796e616d6963207479706520776173206e6f742070726f7065726c7920636c6044820152631bdcd95960e21b6064820152608490fd5b80871a60808116156113f85760fb81036113bf575050506113b890836105cb565b5293929190565b6113df94956113d860fe839c949a969b959c14156112cb565b888b61104c565b9197909692939192916001906020905b0193019561133e565b61140a60209160019399969a85610fd9565b986113ef565b92919093946001019360208510156105c6576020611433607f83881a16866105cb565b515103611447576020611066960193611329565b60405162461bcd60e51b815260206004820152601d60248201527f4172726179206c656e677468206d7573742062652033322062797465730000006044820152606490fd0000000000000000000000003067bdba0e6628497d527bef511c22da8b32ca3f
Deployed Bytecode
0x6080604052600436101561001a575b3615610018575f80fd5b005b5f3560e01c806301ffc9a714610079578063150b7a021461007457806395352c9f1461006f578063bc197c811461006a578063c34c08e5146100655763f23a6e610361000e576104a1565b61045d565b6103c8565b6102a0565b610198565b346100cd5760203660031901126100cd5760043563ffffffff60e01b81168091036100cd57630271189760e51b81149081156100bc575b50151560805260206080f35b6301ffc9a760e01b149050816100b0565b5f80fd5b600435906001600160a01b03821682036100cd57565b602435906001600160a01b03821682036100cd57565b634e487b7160e01b5f52604160045260245ffd5b90601f801991011681019081106001600160401b0382111761013257604052565b6100fd565b6001600160401b03811161013257601f01601f191660200190565b81601f820112156100cd5780359061016982610137565b926101776040519485610111565b828452602083830101116100cd57815f926020809301838601378301015290565b346100cd5760803660031901126100cd576101b16100d1565b506101ba6100e7565b506064356001600160401b0381116100cd576101da903690600401610152565b50604051630a85bd0160e11b8152602090f35b9181601f840112156100cd578235916001600160401b0383116100cd576020808501948460051b0101116100cd57565b805180835260209291819084018484015e5f828201840152601f01601f1916010190565b602081016020825282518091526040820191602060408360051b8301019401925f915b83831061027357505050505090565b9091929394602080610291600193603f19868203018752895161021d565b97019301930191939290610264565b60803660031901126100cd576024356004356044356001600160401b0381116100cd576102d19036906004016101ed565b90926064356001600160401b0381116100cd57610350947f049d8dd84b6a6cc45d5f68a74b23450bd3e54d84fd405d91b8b286c78d51d2499361032d61031e6103339436906004016101ed565b610326610561565b36916104f6565b916106fb565b60408051948552602085019290925292a160405191829182610241565b0390f35b6001600160401b0381116101325760051b60200190565b9080601f830112156100cd57813561038281610354565b926103906040519485610111565b81845260208085019260051b8201019283116100cd57602001905b8282106103b85750505090565b81358152602091820191016103ab565b346100cd5760a03660031901126100cd576103e16100d1565b506103ea6100e7565b506044356001600160401b0381116100cd5761040a90369060040161036b565b506064356001600160401b0381116100cd5761042a90369060040161036b565b506084356001600160401b0381116100cd5761044a903690600401610152565b5060405163bc197c8160e01b8152602090f35b346100cd575f3660031901126100cd576040517f0000000000000000000000003067bdba0e6628497d527bef511c22da8b32ca3f6001600160a01b03168152602090f35b346100cd5760a03660031901126100cd576104ba6100d1565b506104c36100e7565b506084356001600160401b0381116100cd576104e3903690600401610152565b5060405163f23a6e6160e01b8152602090f35b92919061050281610354565b936105106040519586610111565b602085838152019160051b8101918383116100cd5781905b838210610536575050505050565b81356001600160401b0381116100cd576020916105568784938701610152565b815201910190610528565b7f0000000000000000000000003067bdba0e6628497d527bef511c22da8b32ca3f6001600160a01b0316330361059357565b6339218f3b60e01b5f5260045ffd5b634e487b7160e01b5f52603260045260245ffd5b91908110156105c65760051b0190565b6105a2565b80518210156105c65760209160051b010190565b156105e657565b60405162461bcd60e51b815260206004820152601660248201527556616c7565206d75737420626520333220627974657360501b6044820152606490fd5b602081519101519060208110610638575090565b5f199060200360031b1b1690565b634e487b7160e01b5f52601160045260245ffd5b5f1981019190821161066857565b610646565b601f1981019190821161066857565b3d156106a6573d9061068d82610137565b9161069b6040519384610111565b82523d5f602084013e565b606090565b604051906106ba604083610111565b60078252662ab735b737bbb760c91b6020830152565b9081526001600160a01b0390911660208201526060604082018190526106f89291019061021d565b90565b905f5b81811061070b5750505090565b6107168183856105b6565b359061074461073e61073861072b8560201b90565b6001600160f81b03191690565b60f81c90565b60ff1690565b9160408316159182610a02576001019261075f8486886105b6565b356020905b60038316600181036108bd57505f91829190602085166108a657610793916001600160e01b031987168c610a7b565b805190602001826001600160a01b0387165af1926107af61067c565b935b84901561080a575050608016156107e8576107e392916107d761072b6107dd9360581b90565b87610f7f565b60010190565b6106fe565b906107e392956107fe61072b6108049460581b90565b90610ed4565b936107dd565b8592506108156106ab565b946044815111610865575b505090610852915f1461085657925b60405163ef3dcb2f60e01b81529384936001600160a01b031690600485016106d0565b0390fd5b61085f9061065a565b9261082f565b602061087c600461087584610ca8565b9301610624565b036108205761088d60248301610624565b14610899575b80610820565b6044019350610852610893565b50607f6108b79160f81c168a6105cb565b51610793565b6002810361092057505f9182919060208516610909576108e8916001600160e01b031987168c610a7b565b8051906020016001600160a01b0386165afa9261090361067c565b936107b1565b50607f61091a9160f81c168a6105cb565b516108e8565b6003036109ca575f918161095161093e607f869560f81c168d6105cb565b5161094c60208251146105df565b610624565b91602086161584146109a35761097361096d6109859360081b90565b9161065a565b906001600160e01b031988168d610a7b565b905b815191602001906001600160a01b0387165af19261090361067c565b50607f6109bc61073e61073861072b6109c39560081b90565b168b6105cb565b5190610987565b60405162461bcd60e51b815260206004820152601060248201526f496e76616c69642063616c6c7479706560801b6044820152606490fd5b926006602883901b6001600160d01b0317610764565b6040516101609190610a2a8382610111565b600a815291601f1901366020840137565b906004820180921161066857565b90610a5382610137565b610a606040519182610111565b8281528092610a71601f1991610137565b0190602036910137565b91939290935f5f915f92610a8d610a18565b906060935f905b878210610be9575b5050610aaa610aaf91610a3b565b610a49565b9760208901525f9060248901925f955b878710610ad157505050505050505050565b60208710156105c657888b83891a6080811615610bc75760fe8103610b2c575050506020816001928752610b198d610b0883610a3b565b610b128b5161066d565b918b61112d565b875101601f1901955b0196019593610abf565b60fd819794959697145f14610b61575092610b5592868660019b948a9998978560209c52611283565b50979195909594610b22565b60fc8103610b83575092610b5592868660019b948a9998978560209c5261113f565b93610bc0888293610baf602096607f6001999c9b9a1690610ba482826105cb565b5151978895526105cb565b5190610bba85610a3b565b9161111b565b0195610b22565b60209250600193979150610bdf607f8492168d6105cb565b5101518152610b22565b9093959160208510156105c65786851a60ff8114610c94576080811615610c7f5760fe8103610c5f5750855115610c2f575b6020600191875101935b0196940190610a94565b945060016020604051610c5681610c488d858301610241565b03601f198101835282610111565b96915050610c1b565b90610c739260019692602095968a8d61104c565b95919390939294610c25565b610c8e6020916001938c610fd9565b93610c25565b509396509094929050610aaa610aaf610a9c565b9081516043198101818111610668579260445b828110610cc757505050565b81518110156105c657818101602001516001600160f81b03191615610cee57600101610cbb565b929350505060431981019081116106685790565b15610d0957565b60405162461bcd60e51b8152602060048201526013602482015272496e646578206f75742d6f662d626f756e647360681b6044820152606490fd5b15610d4b57565b60405162461bcd60e51b815260206004820152602860248201527f4f6e6c79206f6e652072657475726e2076616c7565207065726d697474656420604482015267287374617469632960c01b6064820152608490fd5b15610da857565b60405162461bcd60e51b815260206004820152602a60248201527f4f6e6c79206f6e652072657475726e2076616c7565207065726d697474656420604482015269287661726961626c652960b01b6064820152608490fd5b6020818303126100cd578051906001600160401b0382116100cd57019080601f830112156100cd57815191610e3483610354565b92610e426040519485610111565b80845260208085019160051b830101918383116100cd5760208101915b838310610e6e57505050505090565b82516001600160401b0381116100cd57820185603f820112156100cd57602081015191610e9a83610137565b610ea76040519182610111565b83815260408385010188106100cd575f602085819660408397018386015e83010152815201920191610e5f565b91908060f81c60ff8114610f79576080811615610f415760fe8103610f095750506106f8915060208082518301019101610e00565b602091610f1f610fe092607f8751911610610d02565b82840193610f2f84865114610da1565b51601f1901845260f31c168301015290565b610f75929150607f1690610f5784518310610d02565b610f646020825114610d44565b610f6e82856105cb565b52826105cb565b5090565b50505090565b9060f81c60ff8114610fd4578251906020820180921161066857602092607f610faa610fbd94610a49565b921691610fb783836105cb565b526105cb565b51918051604084018184840160045afa5051910152565b505050565b610fea90607f6020939416906105cb565b515103610ff75760200190565b60405162461bcd60e51b815260206004820152602760248201527f537461746963207374617465207661726961626c6573206d75737420626520336044820152663220627974657360c81b6064820152608490fd5b90969594939260fd810361106c5750956110669596611410565b90919293565b60fc81036110805750956110669596611329565b919650919493929161109591607f16906105cb565b515180151580611110575b156110ac570160200191565b60405162461bcd60e51b815260206004820152603660248201527f44796e616d6963207374617465207661726961626c6573206d7573742062652060448201527561206d756c7469706c65206f6620333220627974657360501b6064820152608490fd5b50601f8116156110a0565b916020809185930101920160045afa50565b910160200190829060400160045afa50565b9193959692905f9461115188846105cb565b51936024600180878b019b019b0198820101915b60208910611176575b505050505050565b80891a608081161561125a5760fb8103611190575061116e565b60fd819c92959a9499969b93979c145f146111e15750906111b892918b89528a858b89611283565b9260209a93926001928c969480919d939d97929d9e01970101985b019301979291939490611165565b60fc810361121b5750906111fc92918b89528a858b8961113f565b9260209a93926001928c969480919d939d97929d9e01970101986111d3565b6020898b8e6001959f9e97989661124e607f869716948d610baf61123f88886105cb565b515197889788978895526105cb565b019d01970101986111d3565b602060019293979694998161127788607f999e99839616906105cb565b5101518b5201986111d3565b9392919094956001019460208610156105c65760206112bd97816112ac607f868b1a16856105cb565b51015160248289010152019461113f565b929391929091602090910190565b156112d257565b60405162461bcd60e51b815260206004820152602960248201527f43616e6e6f74207573652073746174652066726f6d20696e736964652064796e604482015268616d6963207479706560b81b6064820152608490fd5b6001808501976020909601960194935f929091905b602087106113975760405162461bcd60e51b8152602060048201526024808201527f44796e616d6963207479706520776173206e6f742070726f7065726c7920636c6044820152631bdcd95960e21b6064820152608490fd5b80871a60808116156113f85760fb81036113bf575050506113b890836105cb565b5293929190565b6113df94956113d860fe839c949a969b959c14156112cb565b888b61104c565b9197909692939192916001906020905b0193019561133e565b61140a60209160019399969a85610fd9565b986113ef565b92919093946001019360208510156105c6576020611433607f83881a16866105cb565b515103611447576020611066960193611329565b60405162461bcd60e51b815260206004820152601d60248201527f4172726179206c656e677468206d7573742062652033322062797465730000006044820152606490fd
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
0000000000000000000000003067bdba0e6628497d527bef511c22da8b32ca3f
-----Decoded View---------------
Arg [0] : executor_ (address): 0x3067BDBa0e6628497d527bEF511c22DA8b32cA3F
-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 0000000000000000000000003067bdba0e6628497d527bef511c22da8b32ca3f
Deployed Bytecode Sourcemap
137:313:9:-:0;;;;;;;;;-1:-1:-1;137:313:9;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;:::i;:::-;;:::i;:::-;;:::i;:::-;;;;;;-1:-1:-1;;137:313:9;;;;;;;;;;;;;;;;-1:-1:-1;;;775:49:3;;;:89;;;;137:313:9;;;;;;;;;775:89:3;-1:-1:-1;;;862:40:6;;-1:-1:-1;775:89:3;;;137:313:9;;;;;;;;-1:-1:-1;;;;;137:313:9;;;;;;:::o;:::-;;;;-1:-1:-1;;;;;137:313:9;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;137:313:9;;;;;;;:::o;:::-;;:::i;:::-;-1:-1:-1;;;;;137:313:9;;;;;;-1:-1:-1;;137:313:9;;;;:::o;:::-;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;:::i;:::-;;;;;;;;;;;;;-1:-1:-1;137:313:9;;;;;;;;;;;;;;:::o;:::-;;;;;;-1:-1:-1;;137:313:9;;;;;;:::i;:::-;;;;:::i;:::-;;;;-1:-1:-1;;;;;137:313:9;;;;;;;;;;;:::i;:::-;-1:-1:-1;137:313:9;;-1:-1:-1;;;137:313:9;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;137:313:9;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;-1:-1:-1;137:313:9;;;;;;;;-1:-1:-1;;137:313:9;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;-1:-1:-1;;137:313:9;;;;;;;;;;-1:-1:-1;;;;;137:313:9;;;;;;;;;;;:::i;:::-;;;;;-1:-1:-1;;;;;137:313:9;;;;;;1109:38:8;137:313:9;;;1069:25:8;137:313:9;;;;;;:::i;:::-;992:23:8;;:::i;:::-;137:313:9;;;:::i;:::-;1069:25:8;;:::i;:::-;137:313:9;;;;;;;;;;;;;;1109:38:8;137:313:9;;;;;;;:::i;:::-;;;;;-1:-1:-1;;;;;137:313:9;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;-1:-1:-1;;137:313:9;;;;;;:::i;:::-;;;;:::i;:::-;;;;-1:-1:-1;;;;;137:313:9;;;;;;;;;;;:::i;:::-;;;;-1:-1:-1;;;;;137:313:9;;;;;;;;;;;:::i;:::-;;;;-1:-1:-1;;;;;137:313:9;;;;;;;;;;;:::i;:::-;-1:-1:-1;137:313:9;;-1:-1:-1;;;137:313:9;;;;;;;;;;;-1:-1:-1;;137:313:9;;;;;;191:33;-1:-1:-1;;;;;137:313:9;;;;;;;;;;;;-1:-1:-1;;137:313:9;;;;;;:::i;:::-;;;;:::i;:::-;;;;-1:-1:-1;;;;;137:313:9;;;;;;;;;;;:::i;:::-;-1:-1:-1;137:313:9;;-1:-1:-1;;;137:313:9;;;;;;;;;;;;:::i;:::-;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;-1:-1:-1;;;;;137:313:9;;;;;;;;;;;;;:::i;:::-;;;;;;;;;332:116;410:8;-1:-1:-1;;;;;137:313:9;396:10;:22;392:49;;332:116::o;392:49::-;427:14;;;;;;;;137:313;;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;:::i;180:4:0:-;137:313:9;;180:4:0;;;;;;;;;;;;:::o;:::-;;;;:::o;:::-;137:313:9;;-1:-1:-1;;;180:4:0;;;;;;;;;;;137:313:9;-1:-1:-1;;;137:313:9;;;180:4:0;;;;;137:313:9;;;;;180:4:0;;137:313:9;180:4:0;;;;;;:::o;:::-;;;;137:313:9;180:4:0;;;137:313:9;180:4:0;;:::o;465::1:-;137:313:9;;;465:4:1;;;;;;;;;-1:-1:-1;;465:4:1;;;;;;;;:::o;:::-;;:::i;:::-;-1:-1:-1;;465:4:1;;;;;;;;:::o;:::-;;;;;;;;;;:::i;:::-;137:313:9;;;;;;;:::i;:::-;465:4:1;;;-1:-1:-1;465:4:1;;;;:::o;:::-;137:313:9;465:4:1;:::o;:::-;137:313:9;;;;;;;:::i;:::-;465:4:1;;;-1:-1:-1;;;137:313:9;465:4:1;;;:::o;:::-;137:313:9;;;-1:-1:-1;;;;;137:313:9;;;465:4:1;;;137:313:9;465:4:1;;;;;;;;;;;;;:::i;:::-;;:::o;806:5657::-;;137:313:9;1163:18:1;;;;;;6444:12;;;806:5657;:::o;1183:26::-;1235:11;;;;;:::i;:::-;137:313:9;1289:13:1;1268:37;1276:28;1282:21;1289:13;;137:313:9;;;;1289:13:1;-1:-1:-1;;;;;;137:313:9;;;1282:21:1;137:313:9;;;;1276:28:1;137:313:9;;;;1268:37:1;1324:29;516:4;1324:29;;:34;;;;;137:313:9;;1432:11:1;;;;;;:::i;:::-;137:313:9;1300:2:1;1320:310;;426:4;1648:20;;289:4;1648:36;;289:4;;-1:-1:-1;137:313:9;;;;1826:399:1;1300:2;1826:17;;1300:2;;1875:180;;-1:-1:-1;;;;;;137:313:9;;1875:180:1;;:::i;:::-;1725:518;;;1300:2;1725:518;137:313:9;-1:-1:-1;;;;;137:313:9;;1725:518:1;;;;;:::i;:::-;1704:539;1644:2446;4109:7;4108:8;;4104:2093;;-1:-1:-1;;563:4:1;6215:25;:30;563:4;;7080:3;6289:13;;6282:21;6289:13;6305:7;6289:13;137:313:9;;;;6282:21:1;6305:7;;:::i;:::-;137:313:9;;;;7080:3:1;1152:9;;6211:214;6386:13;7080:3;6386:13;;6379:21;6386:13;6360:50;6386:13;137:313:9;;;;6379:21:1;6360:50;;:::i;:::-;6211:214;7080:3;:::i;4104:2093::-;465:4;;;;;:::i;:::-;137:313:9;4208:2:1;137:313:9;;4191:19:1;4187:1703;;4104:2093;5967:94;;;5914:268;5967:94;;;;;;;516:4;137:313:9;-1:-1:-1;;;5914:268:1;;137:313:9;;;-1:-1:-1;;;;;137:313:9;;5914:268:1;;;;:::i;:::-;;;;5967:94;6056:5;;;:::i;:::-;5967:94;;;4187:1703;1300:2;4715:16;4585:83;4412:33;;;:::i;:::-;4585:83;;4715:16;:::i;:::-;4758:13;4187:1703;4754:1118;5038:16;4898:92;;;5038:16;:::i;:::-;5522:23;5518:332;;4754:1118;;4187:1703;;5518:332;4208:2;5669:100;;-1:-1:-1;5914:268:1;5518:332;;1826:399;137:313:9;180:4:0;2082:143:1;137:313:9;;;2117:82:1;2082:143;;:::i;:::-;;1826:399;;1644:2446;337:4;2268:42;;337:4;;-1:-1:-1;137:313:9;;;;2487:435:1;1300:2;2487:17;;1300:2;;2540:196;;-1:-1:-1;;;;;;137:313:9;;2540:196:1;;:::i;:::-;2351:593;;;1300:2;2351:593;-1:-1:-1;;;;;137:313:9;;2351:593:1;;;;;:::i;:::-;2330:614;1644:2446;;2487:435;137:313:9;180:4:0;2767:155:1;137:313:9;;;2806:86:1;2767:155;;:::i;:::-;;2487:435;;2264:1826;426:4;2969:41;426:4;;137:313:9;;;3277:10:1;3047:119;180:4:0;137:313:9;;;;3074:74:1;3047:119;;:::i;:::-;;3184:49;1300:2;137:313:9;;3192:14:1;3184:49;:::i;:::-;3277:10;:::i;:::-;3482:510;1300:2;3482:17;;:22;1300:2;;;;3697:17;3635:12;3531:254;3635:12;137:313:9;;;;3635:12:1;3697:17;;:::i;:::-;137:313:9;-1:-1:-1;;;;;;137:313:9;;3531:254:1;;:::i;:::-;3482:510;;3327:683;;;1300:2;3327:683;;-1:-1:-1;;;;;137:313:9;;3327:683:1;;;;;:::i;3482:510::-;3860:12;180:4:0;3847:119:1;:27;3853:20;3860:12;3812:180;3860:12;137:313:9;;;;3847:119:1;;3812:180;;:::i;:::-;;3482:510;;;2965:1125;516:4;137:313:9;-1:-1:-1;;;4049:26:1;;384:4;4049:26;;;384:4;;;;;137:313:9;-1:-1:-1;;;137:313:9;;;384:4:1;;;5914:268;1320:310;620:66;1614:1;137:313:9;;;;-1:-1:-1;;;;;1536:43:1;1320:310;;137:313:9;;;;;;;;;;:::i;:::-;916:2:0;137:313:9;;;-1:-1:-1;;137:313:9;;;;;;:::o;268:4:0:-;;2314:1;268:4;;;;;;;:::o;:::-;;465::1;;;:::i;:::-;137:313:9;;;;;;:::i;:::-;465:4:1;;;268::0;137:313:9;268:4:0;137:313:9;;268:4:0;;:::i;:::-;;137:313:9;268:4:0;137:313:9;268:4:0;;137:313:9;268:4:0:o;414:4762::-;;;;;;137:313:9;;792:12:0;137:313:9;902:17:0;;;:::i;:::-;1032:22;137:313:9;1185:9:0;137:313:9;1180:1079:0;1196:17;;;;;;1180:1079;2306:9;;;2296:20;2306:9;;:::i;:::-;2296:20;:::i;:::-;2326:63;1243:10;2326:63;;;137:313:9;2471:54:0;;;;2539:9;137:313:9;2534:2636:0;2550:17;;;;;;414:4762;;;;;;;;;:::o;2539:9::-;1243:10;2597;;;;;;;;;;563:4:1;2626:25:0;;:30;563:4:1;;268::0;2680:20;;268:4;;2724:76;;;1243:10;2724:76;137:313:9;2724:76:0;;;2821:59;2848:8;;;;:::i;:::-;2858:21;137:313:9;;2858:21:0;:::i;:::-;2821:59;;;:::i;:::-;137:313:9;;268:4:0;-1:-1:-1;;268:4:0;;2676:2057;268:4;137:313:9;;2539:9:0;;;;2676:2057;313:4;3018:22;;;;;;;3014:1719;313:4;;;3138:76;;3260:265;3138:76;;;137:313:9;3138:76:0;;;;;;;1243:10;3138:76;;3260:265;:::i;:::-;3235:290;;;;;;3014:1719;2676:2057;;3014:1719;358:4;3554:22;;358:4;;3674:76;;3796:265;3674:76;;;137:313:9;3674:76:0;;;;;;;1243:10;3674:76;;3796:265;:::i;3550:1183::-;4175:20;4417:203;4175:20;;;4449:27;1243:10;4175:20;180:4;137:313:9;4175:20:0;;;;;4169:27;;;;;:::i;:::-;;137:313:9;4320:76:0;;;;4449:27;:::i;:::-;;4558:8;;;;:::i;:::-;4417:203;;:::i;:::-;268:4;3550:1183;2676:2057;;2622:2450;1243:10;4881:20;;137:313:9;4881:20:0;;;;4875:27;180:4;4881:20;;;4875:27;;:::i;:::-;;4970:88;;;;2622:2450;;1185:9;1243:10;;;;;;;;;;;;;225:4;1272:22;;1268:101;;563:4:1;1386:25:0;;:30;563:4:1;;268::0;1440:20;;268:4;;137:313:9;;;1488:21:0;1484:105;;1436:627;1243:10;137:313:9;;;;268:4:0;1436:627;;268:4;;1185:9;137:313:9;;1185:9:0;;1484:105;137:313:9;;;1243:10:0;137:313:9;;1549:17:0;;;;;;;;:::i;:::-;;137:313:9;;1549:17:0;;;;;;:::i;:::-;1484:105;;;;;;1436:627;1780:264;;;137:313:9;1780:264:0;;1243:10;1780:264;;;;;:::i;:::-;1740:304;;;;;;1436:627;;;1382:780;2109:38;1243:10;2109:38;137:313:9;2109:38:0;;;:::i;:::-;1382:780;;;1268:101;-1:-1:-1;1314:17:0;;-1:-1:-1;1314:17:0;;1349:5;1314:17;-1:-1:-1;2306:9:0;2296:20;1349:5;;6469:500:1;;137:313:9;;465:4:1;;;;;;;;;6696:15;4208:2;6713:10;;;;;;6469:500;;;:::o;6696:15::-;137:313:9;;;;;;;;;;;;;-1:-1:-1;;;;;;137:313:9;6745:12:1;6741:153;;137:313:9;;6696:15:1;;6741:153;6849:7;;;;;465:4;;;;;;;;;6874:5;6469:500::o;137:313:9:-;;;;:::o;:::-;;;-1:-1:-1;;;137:313:9;;;;;;;;;;;;-1:-1:-1;;;137:313:9;;;;;;;;;;;:::o;:::-;;;-1:-1:-1;;;137:313:9;;;;;;;;;;;;;;;;;-1:-1:-1;;;137:313:9;;;;;;;;;;;:::o;:::-;;;-1:-1:-1;;;137:313:9;;;;;;;;;;;;;;;;;-1:-1:-1;;;137:313:9;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;137:313:9;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;-1:-1:-1;;;;;137:313:9;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;;;-1:-1:-1;137:313:9;;-1:-1:-1;137:313:9;;;;;;;;;;;;;;;;;;;;;;;;15255:1683:0;;;137:313:9;;;;15453:22:0;;15449:40;;563:4:1;15504:25:0;;:30;563:4:1;;268::0;15554:20;;268:4;;137:313:9;;15602:29:0;137:313:9;;15602:29:0;137:313:9;;;15602:29:0;;;;;;:::i;15550:1041::-;15881:81;137:313:9;15670:67:0;16123:454;137:313:9;180:4:0;137:313:9;;15678:20:0;;:35;15670:67;:::i;:::-;15881:81;;;;15979:125;15881:81;;;16008:12;15979:125;:::i;:::-;16123:454;-1:-1:-1;;16123:454:0;;;;;;;;;;465:4:1;:::o;15500:1409:0:-;16862:36;16629:20;;;180:4;16629:20;137:313:9;16621:67:0;137:313:9;;16629:35:0;;16621:67;:::i;:::-;16729:118;16771:2;137:313:9;;16754:19:0;16729:118;:::i;:::-;16862:36;;;;:::i;:::-;;;;:::i;:::-;;15255:1683;:::o;15449:40::-;15477:12;;;;:::o;16944:454::-;;137:313:9;;;17115:22:0;;17111:35;;137:313:9;;268:4:0;17233:2;268:4;;;;;;;17233:2;17207:29;180:4;17207:29;17177:59;17207:29;;:::i;:::-;17183:20;;17177:59;;;;;:::i;:::-;;;:::i;:::-;;137:313:9;;;17573:292:0;;;;;;;;;;;17299:93;17573:292;;17299:93;16944:454::o;17111:35::-;17139:7;;;:::o;5182:358::-;5363:27;5182:358;180:4;5401:2;5182:358;;5369:20;5363:27;;:::i;:::-;;137:313:9;5363:40:0;137:313:9;;5401:2:0;268:4;5182:358;:::o;137:313:9:-;;;-1:-1:-1;;;137:313:9;;5401:2:0;137:313:9;;;;;;;;;;;;;;-1:-1:-1;;;137:313:9;;;;;;;6192:1182:0;;;;;;;313:4;6583:22;;313:4;;6677:184;;;;;;:::i;:::-;6621:240;;;6579:789;6192:1182::o;6579:789::-;358:4;6882:22;;358:4;;6976:184;;;;;;:::i;6878:490::-;7191:34;;-1:-1:-1;7191:34:0;;;;;5726:27;;180:4;5732:20;;5726:27;:::i;:::-;;137:313:9;5893:11:0;;;:31;;;6878:490;137:313:9;;;268:4:0;6167:2;268:4;;6192:1182::o;137:313:9:-;;;-1:-1:-1;;;137:313:9;;;;;;;;;;;;;;;;;-1:-1:-1;;;137:313:9;;;;;;;5893:31:0;137:313:9;;;;5908:16:0;5893:31;;17404:467;;17573:292;17404:467;;;;17573:292;;;;;;;;17404:467::o;:::-;17573:292;;1243:10;17573:292;;17404:467;;17573:292;;;;;;17404:467::o;11337:3912::-;;;;;;;137:313:9;11783:25:0;;;;;:::i;:::-;137:313:9;268:4:0;12162:78;11979:1;268:4;;;;;;;;12162:78;;;;12249:2994;12256:13;12267:2;12256:13;;;;12249:2994;11337:3912;;;;;;:::o;12249:2994::-;12297:17;;;563:4:1;12333:25:0;;:30;563:4:1;;403::0;12387:22;;403:4;;12433:5;;;12383:2330;313:4;12467:22;;;;;;;;;;;;;12463:2250;313:4;;;12587:89;;12741:278;12587:89;;;;;12741:278;;;;;:::i;:::-;;12267:2;12741:278;;;11979:1;12741:278;;;;12697:322;;;;;;;;268:4;;;;;12463:2250;;268:4;137:313:9;;12249:2994:0;;;;;;;;12463:2250;358:4;13216:22;;358:4;;13336:89;;13490:278;13336:89;;;;;13490:278;;;;;:::i;:::-;;12267:2;13490:278;;;11979:1;13490:278;;;;13446:322;;;;;;;;268:4;;;;;13212:1501;12463:2250;;13212:1501;12267:2;14043:20;;;11979:1;14043:20;;;;;;14277:206;180:4;14043:20;;;14037:27;;14309;14037;;;;:::i;:::-;;137:313:9;14167:89:0;;;;;;;;14309:27;:::i;14277:206::-;268:4;;;;;;13212:1501;12463:2250;;12329:2803;12267:2;11979:1;14861:20;;;;;;;14855:27;14861:20;180:4;14861:20;;;;;;14855:27;;:::i;:::-;;14944:94;;;;268:4;12329:2803;;;10151:1180;;;;;;;10618:1;268:4;10730:17;10657:2;10730:17;;;;;10657:2;11033:179;10730:17;;10846:27;180:4;10730:17;;;10852:20;10846:27;;:::i;:::-;;10883:97;;;;;;;;268:4;11033:179;;:::i;:::-;;;;;;;10657:2;268:4;;;;10151:1180::o;137:313:9:-;;;;:::o;:::-;;;-1:-1:-1;;;137:313:9;;;;;;;;;;;;;;;;;-1:-1:-1;;;137:313:9;;;;;;;8333:1812:0;8912:1;268:4;;;;8988:2;268:4;;;;;;8333:1812;137:313:9;;8333:1812:0;;;9017:13;8988:2;9017:13;;;;137:313:9;;-1:-1:-1;;;10092:46:0;;137:313:9;10092:46:0;;;137:313:9;;;;;;;;;;;-1:-1:-1;;;137:313:9;;;;;;5914:268:1;9010:1073:0;9058:17;;;563:4:1;9094:25:0;;:30;563:4:1;;403::0;9148:22;;403:4;;9194:37;;;;;;;:::i;:::-;137:313:9;9314:60:0;;;;:::o;9144:728::-;9573:280;9429:20;;9421:74;268:4;9429:20;;;;;;;;;;9421:74;:::i;:::-;9573:280;;;:::i;:::-;;;;;;;;;;8912:1;;8988:2;;9090:887;268:4;137:313:9;;9010:1073:0;;;9090:887;9921:41;8988:2;9921:41;8912:1;9921:41;;;;;;:::i;:::-;9090:887;;;7380:947;;;;;;7872:1;268:4;7948:17;7906:2;7948:17;;;;;7906:2;7997:27;180:4;7948:17;;;8003:20;7997:27;;:::i;:::-;;137:313:9;7997:40:0;137:313:9;;7906:2:0;8158:162;268:4;;8158:162;;:::i;137:313:9:-;;;-1:-1:-1;;;137:313:9;;7906:2:0;137:313:9;;;;;;;;;;;;;;;;
Loading...
Loading
Loading...
Loading
Loading...
Loading
Loading...
Loading
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.