ERC-721
Overview
Max Total Supply
0 SCAPEXT
Holders
2,915
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
1 SCAPEXTLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Source Code Verified (Exact Match)
Contract Name:
ScapeExtensions
Compiler Version
v0.8.16+commit.07a7930e
Optimization Enabled:
Yes with 1000 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
1234567891011121314151617181920212223242526// SPDX-License-Identifier: MITpragma solidity ^0.8.16;import {ERC721ChildMulti} from "./ERC721ChildMulti.sol";/// @title ScapeExtensions/// @author akuti.eth | scapes.eth/// @notice Child tokens following the Scapes./// @dev Child tokens following the parent contract.contract ScapeExtensions is ERC721ChildMulti {constructor(address parent_)ERC721ChildMulti("ScapeExtensions", "SCAPEXT", parent_){}/// @notice Adds a new child token by baseURI before the parent contract minted any token./// @param baseURI The base URI for the new child token.function addBaseURIBeforeMint(string memory baseURI) external onlyOwner {if (_baseURIs.length >= MAX_CHILD_COLLECTIONS)revert ERC721Child__MaxChildContractsReached();_baseURIs.push(baseURI);}/// @notice Adds a new child token by baseURI after the parent contract minted tokens./// @param baseURI The base URI for the new child token./// @param tokenOwners The owners of the parent NFTs.
1234567891011121314151617181920212223242526// SPDX-License-Identifier: MIT// OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol)pragma solidity ^0.8.0;import "../utils/Context.sol";/*** @dev Contract module which provides a basic access control mechanism, where* there is an account (an owner) that can be granted exclusive access to* specific functions.** By default, the owner account will be the one that deploys the contract. This* can later be changed with {transferOwnership}.** This module is used through inheritance. It will make available the modifier* `onlyOwner`, which can be applied to your functions to restrict their use to* the owner.*/abstract contract Ownable is Context {address private _owner;event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);/*** @dev Initializes the contract setting the deployer as the initial owner.
1234567891011121314151617181920212223242526// SPDX-License-Identifier: MIT// OpenZeppelin Contracts (last updated v4.8.0) (access/Ownable2Step.sol)pragma solidity ^0.8.0;import "./Ownable.sol";/*** @dev Contract module which provides access control mechanism, where* there is an account (an owner) that can be granted exclusive access to* specific functions.** By default, the owner account will be the one that deploys the contract. This* can later be changed with {transferOwnership} and {acceptOwnership}.** This module is used through inheritance. It will make available all functions* from parent (Ownable).*/abstract contract Ownable2Step is Ownable {address private _pendingOwner;event OwnershipTransferStarted(address indexed previousOwner, address indexed newOwner);/*** @dev Returns the address of the pending owner.*/
1234567891011121314151617181920212223242526// SPDX-License-Identifier: MIT// OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol)pragma solidity ^0.8.0;import "../IERC721.sol";/*** @title ERC-721 Non-Fungible Token Standard, optional metadata extension* @dev See https://eips.ethereum.org/EIPS/eip-721*/interface IERC721Metadata is IERC721 {/*** @dev Returns the token collection name.*/function name() external view returns (string memory);/*** @dev Returns the token collection symbol.*/function symbol() external view returns (string memory);/*** @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token.*/function tokenURI(uint256 tokenId) external view returns (string memory);
1234567891011121314151617181920212223242526// SPDX-License-Identifier: MIT// OpenZeppelin Contracts (last updated v4.8.0) (token/ERC721/IERC721.sol)pragma solidity ^0.8.0;import "../../utils/introspection/IERC165.sol";/*** @dev Required interface of an ERC721 compliant contract.*/interface IERC721 is IERC165 {/*** @dev Emitted when `tokenId` token is transferred from `from` to `to`.*/event Transfer(address indexed from, address indexed to, uint256 indexed tokenId);/*** @dev Emitted when `owner` enables `approved` to manage the `tokenId` token.*/event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId);/*** @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets.*/event ApprovalForAll(address indexed owner, address indexed operator, bool approved);
123456789101112131415161718192021222324// SPDX-License-Identifier: MIT// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)pragma solidity ^0.8.0;/*** @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;}}
1234567891011121314151617181920212223242526// SPDX-License-Identifier: MIT// OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol)pragma solidity ^0.8.0;import "./IERC165.sol";/*** @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);* }* ```** Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation.*/abstract contract ERC165 is IERC165 {/*** @dev See {IERC165-supportsInterface}.*/function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
12345678910111213141516171819202122232425// SPDX-License-Identifier: MIT// OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol)pragma solidity ^0.8.0;/*** @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);}
1234567891011121314151617181920212223242526// SPDX-License-Identifier: MIT// OpenZeppelin Contracts (last updated v4.8.0) (utils/math/Math.sol)pragma solidity ^0.8.0;/*** @dev Standard math utilities missing in the Solidity language.*/library Math {enum Rounding {Down, // Toward negative infinityUp, // Toward infinityZero // Toward zero}/*** @dev Returns the largest of two numbers.*/function max(uint256 a, uint256 b) internal pure returns (uint256) {return a > b ? a : b;}/*** @dev Returns the smallest of two numbers.*/function min(uint256 a, uint256 b) internal pure returns (uint256) {
1234567891011121314151617181920212223242526// SPDX-License-Identifier: MIT// OpenZeppelin Contracts (last updated v4.8.0) (utils/Strings.sol)pragma solidity ^0.8.0;import "./math/Math.sol";/*** @dev String operations.*/library Strings {bytes16 private constant _SYMBOLS = "0123456789abcdef";uint8 private constant _ADDRESS_LENGTH = 20;/*** @dev Converts a `uint256` to its ASCII `string` decimal representation.*/function toString(uint256 value) internal pure returns (string memory) {unchecked {uint256 length = Math.log10(value) + 1;string memory buffer = new string(length);uint256 ptr;/// @solidity memory-safe-assemblyassembly {ptr := add(buffer, add(32, length))}
1234567891011121314151617181920212223242526// SPDX-License-Identifier: MIT// Based on OpenZeppelin Contracts (last updated v4.7.0) (token/ERC721/ERC721.sol)// Modified by Akuti (Scapes.Studio)pragma solidity ^0.8.16;import {IERC721} from "@openzeppelin/contracts/token/ERC721/IERC721.sol";import {IERC721Metadata} from "@openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol";import {Strings} from "@openzeppelin/contracts/utils/Strings.sol";import {ERC165, IERC165} from "@openzeppelin/contracts/utils/introspection/ERC165.sol";import {Ownable2Step} from "@openzeppelin/contracts/access/Ownable2Step.sol";import {IERC721Child} from "./IERC721Child.sol";interface IERC721WithMergeBalance is IERC721 {function balanceOfMerges(address account)externalviewreturns (uint256 balance);}/*** @title ERC721ChildMulti* @author akuti.eth | scapes.eth* @notice Child collection that is attached to a parent ERC721 contract.* @dev Modification based on ERC721, including the Metadata and custom Child* extension which supports multiple sub-collections. This one is modified for Scapes
1234567891011121314151617181920212223242526// SPDX-License-Identifier: MITpragma solidity ^0.8.16;import {IERC721} from "@openzeppelin/contracts/token/ERC721/IERC721.sol";/*** @title ERC-721 Non-Fungible Token Standard, optional child extension* @dev See https://eips.ethereum.org/EIPS/eip-721** A child token does not store it's own token balances and does not support* minting, transfer, approval. All view methods are passed along to the* parent contract.*/interface IERC721Child is IERC721 {error ERC721Child__InvalidCaller();error ERC721Child__InvalidArgument();error ERC721Child__NonExistentToken();error ERC721Child__ApprovalNotSupported();error ERC721Child__TransferNotSupported();error ERC721Child__MaxChildContractsReached();/*** @dev Returns the parent collection.*/function parent() external view returns (address);
12345678910111213141516171819{"optimizer": {"enabled": true,"runs": 1000},"outputSelection": {"*": {"*": ["evm.bytecode","evm.deployedBytecode","devdoc","userdoc","metadata","abi"]}},"libraries": {}}
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"inputs":[{"internalType":"address","name":"parent_","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ERC721Child__ApprovalNotSupported","type":"error"},{"inputs":[],"name":"ERC721Child__InvalidArgument","type":"error"},{"inputs":[],"name":"ERC721Child__InvalidCaller","type":"error"},{"inputs":[],"name":"ERC721Child__MaxChildContractsReached","type":"error"},{"inputs":[],"name":"ERC721Child__NonExistentToken","type":"error"},{"inputs":[],"name":"ERC721Child__TransferNotSupported","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferStarted","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"acceptOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI","type":"string"},{"internalType":"address[]","name":"tokenOwners","type":"address[]"}],"name":"addBaseURIAfterMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"name":"addBaseURIBeforeMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"uint256","name":"","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"address","name":"","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"uint256","name":"childTokenId","type":"uint256"}],"name":"manualUpdate","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"parent","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pendingOwner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"address","name":"","type":"address"},{"internalType":"uint256","name":"","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"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":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"bool","name":"","type":"bool"}],"name":"setApprovalForAll","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":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"address","name":"","type":"address"},{"internalType":"uint256","name":"","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"update","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI","type":"string"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"updateBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"name":"updateMergeBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60806040523480156200001157600080fd5b5060405162001ad238038062001ad2833981016040819052620000349162000167565b6040518060400160405280600f81526020016e5363617065457874656e73696f6e7360881b8152506040518060400160405280600781526020016614d0d05411561560ca1b815250826200009762000091620000e960201b60201c565b620000ed565b6002620000a584826200023e565b506003620000b483826200023e565b50600480546001600160a01b039092166001600160a01b0319928316811790915560058054909216179055506200030a915050565b3390565b600180546001600160a01b0319169055620001148162000117602090811b62000cf217901c565b50565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6000602082840312156200017a57600080fd5b81516001600160a01b03811681146200019257600080fd5b9392505050565b634e487b7160e01b600052604160045260246000fd5b600181811c90821680620001c457607f821691505b602082108103620001e557634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156200023957600081815260208120601f850160051c81016020861015620002145750805b601f850160051c820191505b81811015620002355782815560010162000220565b5050505b505050565b81516001600160401b038111156200025a576200025a62000199565b62000272816200026b8454620001af565b84620001eb565b602080601f831160018114620002aa5760008415620002915750858301515b600019600386901b1c1916600185901b17855562000235565b600085815260208120601f198616915b82811015620002db57888601518255948401946001909101908401620002ba565b5085821015620002fa5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b6117b8806200031a6000396000f3fe608060405234801561001057600080fd5b50600436106101a35760003560e01c806379ba5097116100ee578063a85c79f711610097578063de15f1dd11610071578063de15f1dd14610335578063e30c397814610348578063e985e9c514610359578063f2fde38b1461036f57600080fd5b8063a85c79f714610301578063b88d4fde14610314578063c87b56dd1461032257600080fd5b806395d89b41116100c857806395d89b41146102d8578063a22cb465146102e0578063a83225c0146102ee57600080fd5b806379ba5097146102ac5780638ce516da146102b45780638da5cb5b146102c757600080fd5b80634310fe7d116101505780636352211e1161012a5780636352211e1461027057806370a0823114610283578063715018a6146102a457600080fd5b80634310fe7d14610239578063567c904e1461024c57806360f96a8f1461025f57600080fd5b8063095ea7b311610181578063095ea7b31461021157806323b872dd1461022657806342842e0e1461022657600080fd5b806301ffc9a7146101a857806306fdde03146101d0578063081812fc146101e5575b600080fd5b6101bb6101b6366004611147565b610382565b60405190151581526020015b60405180910390f35b6101d8610453565b6040516101c79190611195565b6101f96101f33660046111c8565b50600090565b6040516001600160a01b0390911681526020016101c7565b61022461021f3660046111f6565b6104e5565b005b610224610234366004611222565b610517565b6102246102473660046111f6565b610549565b61022461025a36600461130f565b61059e565b6005546001600160a01b03166101f9565b6101f961027e3660046111c8565b6105b6565b610296610291366004611344565b610657565b6040519081526020016101c7565b6102246107b5565b6102246107c9565b6102246102c2366004611222565b61085c565b6000546001600160a01b03166101f9565b6101d861095b565b61022461021f366004611361565b6102246102fc36600461130f565b61096a565b61022461030f36600461139f565b6109d1565b6102246102343660046113e4565b6101d86103303660046111c8565b610a43565b610224610343366004611464565b610c0c565b6001546001600160a01b03166101f9565b6101bb6103673660046114fe565b600092915050565b61022461037d366004611344565b610c74565b60006001600160e01b031982167f80ac58cd0000000000000000000000000000000000000000000000000000000014806103e557506001600160e01b031982167f5b5e139f00000000000000000000000000000000000000000000000000000000145b8061041957506001600160e01b031982167fec1c7c5500000000000000000000000000000000000000000000000000000000145b8061044d57507f01ffc9a7000000000000000000000000000000000000000000000000000000006001600160e01b03198316145b92915050565b6060600280546104629061152c565b80601f016020809104026020016040519081016040528092919081815260200182805461048e9061152c565b80156104db5780601f106104b0576101008083540402835291602001916104db565b820191906000526020600020905b8154815290600101906020018083116104be57829003601f168201915b5050505050905090565b6040517fddda210e00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6040517f1739cd1b00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610551610d4f565b8061055b826105b6565b6001600160a01b0316836001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b6105a6610d4f565b60076105b282826115ae565b5050565b60006105c182610da9565b6105de57604051630f81ffef60e21b815260040160405180910390fd5b6004546001600160a01b0316636352211e6105f884610e52565b6040518263ffffffff1660e01b815260040161061691815260200190565b602060405180830381865afa158015610633573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061044d919061166e565b600480546040517f70a082310000000000000000000000000000000000000000000000000000000081526001600160a01b0384811693820193909352600092839216906370a0823190602401602060405180830381865afa1580156106c0573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906106e4919061168b565b600480546040517fe0e037f60000000000000000000000000000000000000000000000000000000081526001600160a01b0387811693820193909352929350169063e0e037f690602401602060405180830381865afa925050508015610767575060408051601f3d908101601f191682019092526107649181019061168b565b60015b61077f5760065461077890826116ba565b9392505050565b8061078960065490565b61079383856116d9565b61079d91906116ba565b6107a791906116ec565b949350505050565b50919050565b6107bd610d4f565b6107c76000610ed4565b565b60015433906001600160a01b031681146108505760405162461bcd60e51b815260206004820152602960248201527f4f776e61626c6532537465703a2063616c6c6572206973206e6f74207468652060448201527f6e6577206f776e6572000000000000000000000000000000000000000000000060648201526084015b60405180910390fd5b61085981610ed4565b50565b6005546001600160a01b031633146108a0576040517f0a9aa24500000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6108ad600a6127106116ba565b8111156108fa5780826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b60065460005b8181101561095457604051612710820284019081906001600160a01b0380881691908916907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90600090a450600101610900565b5050505050565b6060600380546104629061152c565b610972610d4f565b600654600a116109955760405163d70d190f60e01b815260040160405180910390fd5b600680546001810182556000919091527ff652222313e28459528d920b65115c16c04f3efc82aaedc97be59f3f377c0d3f016105b282826115ae565b6109d9610d4f565b6006548110610a14576040517f4b19284f00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8160068281548110610a2857610a286116ff565b906000526020600020019081610a3e91906115ae565b505050565b6060610a4e82610da9565b610a6b57604051630f81ffef60e21b815260040160405180910390fd5b6060610a7a600a6127106116ba565b8311610b44576006612710610a906001866116d9565b610a9a919061172b565b81548110610aaa57610aaa6116ff565b906000526020600020018054610abf9061152c565b80601f0160208091040260200160405190810160405280929190818152602001828054610aeb9061152c565b8015610b385780601f10610b0d57610100808354040283529160200191610b38565b820191906000526020600020905b815481529060010190602001808311610b1b57829003601f168201915b50505050509050610bd2565b60078054610b519061152c565b80601f0160208091040260200160405190810160405280929190818152602001828054610b7d9061152c565b8015610bca5780601f10610b9f57610100808354040283529160200191610bca565b820191906000526020600020905b815481529060010190602001808311610bad57829003601f168201915b505050505090505b80610be4610bdf85610e52565b610efa565b604051602001610bf592919061173f565b604051602081830303815290604052915050919050565b610c14610d4f565b600654600a11610c375760405163d70d190f60e01b815260040160405180910390fd5b610a3e83838380806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250610f9a92505050565b610c7c610d4f565b600180546001600160a01b03831673ffffffffffffffffffffffffffffffffffffffff199091168117909155610cba6000546001600160a01b031690565b6001600160a01b03167f38d16b8cac22d99fc7c124b9cd0de2d3fa1faef420bfe791d8c362d765e2270060405160405180910390a350565b600080546001600160a01b0383811673ffffffffffffffffffffffffffffffffffffffff19831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6000546001600160a01b031633146107c75760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610847565b600080610db583610e52565b600480546040517f6352211e0000000000000000000000000000000000000000000000000000000081529293506001600160a01b031691636352211e91610e029185910190815260200190565b602060405180830381865afa925050508015610e3b575060408051601f3d908101601f19168201909252610e389181019061166e565b60015b610e485750600092915050565b5060019392505050565b6000610e61600a6127106116ba565b821115610e6c575090565b6000612710610e7c6001856116d9565b610e86919061172b565b9050610e9160065490565b811015610ebb57612710610ea66001856116d9565b610eb0919061176e565b6107789060016116ec565b604051630f81ffef60e21b815260040160405180910390fd5b6001805473ffffffffffffffffffffffffffffffffffffffff1916905561085981610cf2565b60606000610f0783611065565b600101905060008167ffffffffffffffff811115610f2757610f27611263565b6040519080825280601f01601f191660200182016040528015610f51576020820181803683370190505b5090508181016020015b600019017f3031323334353637383961626364656600000000000000000000000000000000600a86061a8153600a8504945084610f5b57509392505050565b600680546001810182556000919091527ff652222313e28459528d920b65115c16c04f3efc82aaedc97be59f3f377c0d3f01610fd683826115ae565b50600654600090610fe9906001906116d9565b825190915060005b818110156109545780600184612710020101848281518110611015576110156116ff565b60200260200101516001600160a01b031660006001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4600101610ff1565b6000807a184f03e93ff9f4daa797ed6e38ed64bf6a1f01000000000000000083106110ae577a184f03e93ff9f4daa797ed6e38ed64bf6a1f010000000000000000830492506040015b6d04ee2d6d415b85acef810000000083106110da576d04ee2d6d415b85acef8100000000830492506020015b662386f26fc1000083106110f857662386f26fc10000830492506010015b6305f5e1008310611110576305f5e100830492506008015b612710831061112457612710830492506004015b60648310611136576064830492506002015b600a831061044d5760010192915050565b60006020828403121561115957600080fd5b81356001600160e01b03198116811461077857600080fd5b60005b8381101561118c578181015183820152602001611174565b50506000910152565b60208152600082518060208401526111b4816040850160208701611171565b601f01601f19169190910160400192915050565b6000602082840312156111da57600080fd5b5035919050565b6001600160a01b038116811461085957600080fd5b6000806040838503121561120957600080fd5b8235611214816111e1565b946020939093013593505050565b60008060006060848603121561123757600080fd5b8335611242816111e1565b92506020840135611252816111e1565b929592945050506040919091013590565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff8084111561129457611294611263565b604051601f8501601f19908116603f011681019082821181831017156112bc576112bc611263565b816040528093508581528686860111156112d557600080fd5b858560208301376000602087830101525050509392505050565b600082601f83011261130057600080fd5b61077883833560208501611279565b60006020828403121561132157600080fd5b813567ffffffffffffffff81111561133857600080fd5b6107a7848285016112ef565b60006020828403121561135657600080fd5b8135610778816111e1565b6000806040838503121561137457600080fd5b823561137f816111e1565b91506020830135801515811461139457600080fd5b809150509250929050565b600080604083850312156113b257600080fd5b823567ffffffffffffffff8111156113c957600080fd5b6113d5858286016112ef565b95602094909401359450505050565b600080600080608085870312156113fa57600080fd5b8435611405816111e1565b93506020850135611415816111e1565b925060408501359150606085013567ffffffffffffffff81111561143857600080fd5b8501601f8101871361144957600080fd5b61145887823560208401611279565b91505092959194509250565b60008060006040848603121561147957600080fd5b833567ffffffffffffffff8082111561149157600080fd5b61149d878388016112ef565b945060208601359150808211156114b357600080fd5b818601915086601f8301126114c757600080fd5b8135818111156114d657600080fd5b8760208260051b85010111156114eb57600080fd5b6020830194508093505050509250925092565b6000806040838503121561151157600080fd5b823561151c816111e1565b91506020830135611394816111e1565b600181811c9082168061154057607f821691505b6020821081036107af57634e487b7160e01b600052602260045260246000fd5b601f821115610a3e57600081815260208120601f850160051c810160208610156115875750805b601f850160051c820191505b818110156115a657828155600101611593565b505050505050565b815167ffffffffffffffff8111156115c8576115c8611263565b6115dc816115d6845461152c565b84611560565b602080601f83116001811461161157600084156115f95750858301515b600019600386901b1c1916600185901b1785556115a6565b600085815260208120601f198616915b8281101561164057888601518255948401946001909101908401611621565b508582101561165e5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b60006020828403121561168057600080fd5b8151610778816111e1565b60006020828403121561169d57600080fd5b5051919050565b634e487b7160e01b600052601160045260246000fd5b60008160001904831182151516156116d4576116d46116a4565b500290565b8181038181111561044d5761044d6116a4565b8082018082111561044d5761044d6116a4565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601260045260246000fd5b60008261173a5761173a611715565b500490565b60008351611751818460208801611171565b835190830190611765818360208801611171565b01949350505050565b60008261177d5761177d611715565b50069056fea264697066735822122040a6b05be914d80717a4accc47d66cd6bd0f31042aa33150bf7aa83d3b793e7964736f6c63430008100033000000000000000000000000b7def63a9040ad5dc431aff79045617922f4023a
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106101a35760003560e01c806379ba5097116100ee578063a85c79f711610097578063de15f1dd11610071578063de15f1dd14610335578063e30c397814610348578063e985e9c514610359578063f2fde38b1461036f57600080fd5b8063a85c79f714610301578063b88d4fde14610314578063c87b56dd1461032257600080fd5b806395d89b41116100c857806395d89b41146102d8578063a22cb465146102e0578063a83225c0146102ee57600080fd5b806379ba5097146102ac5780638ce516da146102b45780638da5cb5b146102c757600080fd5b80634310fe7d116101505780636352211e1161012a5780636352211e1461027057806370a0823114610283578063715018a6146102a457600080fd5b80634310fe7d14610239578063567c904e1461024c57806360f96a8f1461025f57600080fd5b8063095ea7b311610181578063095ea7b31461021157806323b872dd1461022657806342842e0e1461022657600080fd5b806301ffc9a7146101a857806306fdde03146101d0578063081812fc146101e5575b600080fd5b6101bb6101b6366004611147565b610382565b60405190151581526020015b60405180910390f35b6101d8610453565b6040516101c79190611195565b6101f96101f33660046111c8565b50600090565b6040516001600160a01b0390911681526020016101c7565b61022461021f3660046111f6565b6104e5565b005b610224610234366004611222565b610517565b6102246102473660046111f6565b610549565b61022461025a36600461130f565b61059e565b6005546001600160a01b03166101f9565b6101f961027e3660046111c8565b6105b6565b610296610291366004611344565b610657565b6040519081526020016101c7565b6102246107b5565b6102246107c9565b6102246102c2366004611222565b61085c565b6000546001600160a01b03166101f9565b6101d861095b565b61022461021f366004611361565b6102246102fc36600461130f565b61096a565b61022461030f36600461139f565b6109d1565b6102246102343660046113e4565b6101d86103303660046111c8565b610a43565b610224610343366004611464565b610c0c565b6001546001600160a01b03166101f9565b6101bb6103673660046114fe565b600092915050565b61022461037d366004611344565b610c74565b60006001600160e01b031982167f80ac58cd0000000000000000000000000000000000000000000000000000000014806103e557506001600160e01b031982167f5b5e139f00000000000000000000000000000000000000000000000000000000145b8061041957506001600160e01b031982167fec1c7c5500000000000000000000000000000000000000000000000000000000145b8061044d57507f01ffc9a7000000000000000000000000000000000000000000000000000000006001600160e01b03198316145b92915050565b6060600280546104629061152c565b80601f016020809104026020016040519081016040528092919081815260200182805461048e9061152c565b80156104db5780601f106104b0576101008083540402835291602001916104db565b820191906000526020600020905b8154815290600101906020018083116104be57829003601f168201915b5050505050905090565b6040517fddda210e00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6040517f1739cd1b00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610551610d4f565b8061055b826105b6565b6001600160a01b0316836001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b6105a6610d4f565b60076105b282826115ae565b5050565b60006105c182610da9565b6105de57604051630f81ffef60e21b815260040160405180910390fd5b6004546001600160a01b0316636352211e6105f884610e52565b6040518263ffffffff1660e01b815260040161061691815260200190565b602060405180830381865afa158015610633573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061044d919061166e565b600480546040517f70a082310000000000000000000000000000000000000000000000000000000081526001600160a01b0384811693820193909352600092839216906370a0823190602401602060405180830381865afa1580156106c0573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906106e4919061168b565b600480546040517fe0e037f60000000000000000000000000000000000000000000000000000000081526001600160a01b0387811693820193909352929350169063e0e037f690602401602060405180830381865afa925050508015610767575060408051601f3d908101601f191682019092526107649181019061168b565b60015b61077f5760065461077890826116ba565b9392505050565b8061078960065490565b61079383856116d9565b61079d91906116ba565b6107a791906116ec565b949350505050565b50919050565b6107bd610d4f565b6107c76000610ed4565b565b60015433906001600160a01b031681146108505760405162461bcd60e51b815260206004820152602960248201527f4f776e61626c6532537465703a2063616c6c6572206973206e6f74207468652060448201527f6e6577206f776e6572000000000000000000000000000000000000000000000060648201526084015b60405180910390fd5b61085981610ed4565b50565b6005546001600160a01b031633146108a0576040517f0a9aa24500000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6108ad600a6127106116ba565b8111156108fa5780826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b60065460005b8181101561095457604051612710820284019081906001600160a01b0380881691908916907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90600090a450600101610900565b5050505050565b6060600380546104629061152c565b610972610d4f565b600654600a116109955760405163d70d190f60e01b815260040160405180910390fd5b600680546001810182556000919091527ff652222313e28459528d920b65115c16c04f3efc82aaedc97be59f3f377c0d3f016105b282826115ae565b6109d9610d4f565b6006548110610a14576040517f4b19284f00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8160068281548110610a2857610a286116ff565b906000526020600020019081610a3e91906115ae565b505050565b6060610a4e82610da9565b610a6b57604051630f81ffef60e21b815260040160405180910390fd5b6060610a7a600a6127106116ba565b8311610b44576006612710610a906001866116d9565b610a9a919061172b565b81548110610aaa57610aaa6116ff565b906000526020600020018054610abf9061152c565b80601f0160208091040260200160405190810160405280929190818152602001828054610aeb9061152c565b8015610b385780601f10610b0d57610100808354040283529160200191610b38565b820191906000526020600020905b815481529060010190602001808311610b1b57829003601f168201915b50505050509050610bd2565b60078054610b519061152c565b80601f0160208091040260200160405190810160405280929190818152602001828054610b7d9061152c565b8015610bca5780601f10610b9f57610100808354040283529160200191610bca565b820191906000526020600020905b815481529060010190602001808311610bad57829003601f168201915b505050505090505b80610be4610bdf85610e52565b610efa565b604051602001610bf592919061173f565b604051602081830303815290604052915050919050565b610c14610d4f565b600654600a11610c375760405163d70d190f60e01b815260040160405180910390fd5b610a3e83838380806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250610f9a92505050565b610c7c610d4f565b600180546001600160a01b03831673ffffffffffffffffffffffffffffffffffffffff199091168117909155610cba6000546001600160a01b031690565b6001600160a01b03167f38d16b8cac22d99fc7c124b9cd0de2d3fa1faef420bfe791d8c362d765e2270060405160405180910390a350565b600080546001600160a01b0383811673ffffffffffffffffffffffffffffffffffffffff19831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6000546001600160a01b031633146107c75760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610847565b600080610db583610e52565b600480546040517f6352211e0000000000000000000000000000000000000000000000000000000081529293506001600160a01b031691636352211e91610e029185910190815260200190565b602060405180830381865afa925050508015610e3b575060408051601f3d908101601f19168201909252610e389181019061166e565b60015b610e485750600092915050565b5060019392505050565b6000610e61600a6127106116ba565b821115610e6c575090565b6000612710610e7c6001856116d9565b610e86919061172b565b9050610e9160065490565b811015610ebb57612710610ea66001856116d9565b610eb0919061176e565b6107789060016116ec565b604051630f81ffef60e21b815260040160405180910390fd5b6001805473ffffffffffffffffffffffffffffffffffffffff1916905561085981610cf2565b60606000610f0783611065565b600101905060008167ffffffffffffffff811115610f2757610f27611263565b6040519080825280601f01601f191660200182016040528015610f51576020820181803683370190505b5090508181016020015b600019017f3031323334353637383961626364656600000000000000000000000000000000600a86061a8153600a8504945084610f5b57509392505050565b600680546001810182556000919091527ff652222313e28459528d920b65115c16c04f3efc82aaedc97be59f3f377c0d3f01610fd683826115ae565b50600654600090610fe9906001906116d9565b825190915060005b818110156109545780600184612710020101848281518110611015576110156116ff565b60200260200101516001600160a01b031660006001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4600101610ff1565b6000807a184f03e93ff9f4daa797ed6e38ed64bf6a1f01000000000000000083106110ae577a184f03e93ff9f4daa797ed6e38ed64bf6a1f010000000000000000830492506040015b6d04ee2d6d415b85acef810000000083106110da576d04ee2d6d415b85acef8100000000830492506020015b662386f26fc1000083106110f857662386f26fc10000830492506010015b6305f5e1008310611110576305f5e100830492506008015b612710831061112457612710830492506004015b60648310611136576064830492506002015b600a831061044d5760010192915050565b60006020828403121561115957600080fd5b81356001600160e01b03198116811461077857600080fd5b60005b8381101561118c578181015183820152602001611174565b50506000910152565b60208152600082518060208401526111b4816040850160208701611171565b601f01601f19169190910160400192915050565b6000602082840312156111da57600080fd5b5035919050565b6001600160a01b038116811461085957600080fd5b6000806040838503121561120957600080fd5b8235611214816111e1565b946020939093013593505050565b60008060006060848603121561123757600080fd5b8335611242816111e1565b92506020840135611252816111e1565b929592945050506040919091013590565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff8084111561129457611294611263565b604051601f8501601f19908116603f011681019082821181831017156112bc576112bc611263565b816040528093508581528686860111156112d557600080fd5b858560208301376000602087830101525050509392505050565b600082601f83011261130057600080fd5b61077883833560208501611279565b60006020828403121561132157600080fd5b813567ffffffffffffffff81111561133857600080fd5b6107a7848285016112ef565b60006020828403121561135657600080fd5b8135610778816111e1565b6000806040838503121561137457600080fd5b823561137f816111e1565b91506020830135801515811461139457600080fd5b809150509250929050565b600080604083850312156113b257600080fd5b823567ffffffffffffffff8111156113c957600080fd5b6113d5858286016112ef565b95602094909401359450505050565b600080600080608085870312156113fa57600080fd5b8435611405816111e1565b93506020850135611415816111e1565b925060408501359150606085013567ffffffffffffffff81111561143857600080fd5b8501601f8101871361144957600080fd5b61145887823560208401611279565b91505092959194509250565b60008060006040848603121561147957600080fd5b833567ffffffffffffffff8082111561149157600080fd5b61149d878388016112ef565b945060208601359150808211156114b357600080fd5b818601915086601f8301126114c757600080fd5b8135818111156114d657600080fd5b8760208260051b85010111156114eb57600080fd5b6020830194508093505050509250925092565b6000806040838503121561151157600080fd5b823561151c816111e1565b91506020830135611394816111e1565b600181811c9082168061154057607f821691505b6020821081036107af57634e487b7160e01b600052602260045260246000fd5b601f821115610a3e57600081815260208120601f850160051c810160208610156115875750805b601f850160051c820191505b818110156115a657828155600101611593565b505050505050565b815167ffffffffffffffff8111156115c8576115c8611263565b6115dc816115d6845461152c565b84611560565b602080601f83116001811461161157600084156115f95750858301515b600019600386901b1c1916600185901b1785556115a6565b600085815260208120601f198616915b8281101561164057888601518255948401946001909101908401611621565b508582101561165e5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b60006020828403121561168057600080fd5b8151610778816111e1565b60006020828403121561169d57600080fd5b5051919050565b634e487b7160e01b600052601160045260246000fd5b60008160001904831182151516156116d4576116d46116a4565b500290565b8181038181111561044d5761044d6116a4565b8082018082111561044d5761044d6116a4565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601260045260246000fd5b60008261173a5761173a611715565b500490565b60008351611751818460208801611171565b835190830190611765818360208801611171565b01949350505050565b60008261177d5761177d611715565b50069056fea264697066735822122040a6b05be914d80717a4accc47d66cd6bd0f31042aa33150bf7aa83d3b793e7964736f6c63430008100033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000b7def63a9040ad5dc431aff79045617922f4023a
-----Decoded View---------------
Arg [0] : parent_ (address): 0xb7def63A9040ad5dC431afF79045617922f4023A
-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 000000000000000000000000b7def63a9040ad5dc431aff79045617922f4023a
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.