ERC-721
Overview
Max Total Supply
999 ZZC02C
Holders
344
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
1 ZZC02CLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
ComicCover
Compiler Version
v0.8.7+commit.e28d00a7
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-05-18 */ // File: @openzeppelin/contracts/utils/cryptography/MerkleProof.sol // OpenZeppelin Contracts (last updated v4.6.0) (utils/cryptography/MerkleProof.sol) pragma solidity ^0.8.0; /** * @dev These functions deal with verification of Merkle Trees proofs. * * The proofs can be generated using the JavaScript library * https://github.com/miguelmota/merkletreejs[merkletreejs]. * Note: the hashing algorithm should be keccak256 and pair sorting should be enabled. * * See `test/utils/cryptography/MerkleProof.test.js` for some examples. * * WARNING: You should avoid using leaf values that are 64 bytes long prior to * hashing, or use a hash function other than keccak256 for hashing leaves. * This is because the concatenation of a sorted pair of internal nodes in * the merkle tree could be reinterpreted as a leaf value. */ library MerkleProof { /** * @dev Returns true if a `leaf` can be proved to be a part of a Merkle tree * defined by `root`. For this, a `proof` must be provided, containing * sibling hashes on the branch from the leaf to the root of the tree. Each * pair of leaves and each pair of pre-images are assumed to be sorted. */ function verify( bytes32[] memory proof, bytes32 root, bytes32 leaf ) internal pure returns (bool) { return processProof(proof, leaf) == root; } /** * @dev Returns the rebuilt hash obtained by traversing a Merkle tree up * from `leaf` using `proof`. A `proof` is valid if and only if the rebuilt * hash matches the root of the tree. When processing the proof, the pairs * of leafs & pre-images are assumed to be sorted. * * _Available since v4.4._ */ function processProof(bytes32[] memory proof, bytes32 leaf) internal pure returns (bytes32) { bytes32 computedHash = leaf; for (uint256 i = 0; i < proof.length; i++) { bytes32 proofElement = proof[i]; if (computedHash <= proofElement) { // Hash(current computed hash + current element of the proof) computedHash = _efficientHash(computedHash, proofElement); } else { // Hash(current element of the proof + current computed hash) computedHash = _efficientHash(proofElement, computedHash); } } return computedHash; } function _efficientHash(bytes32 a, bytes32 b) private pure returns (bytes32 value) { assembly { mstore(0x00, a) mstore(0x20, b) value := keccak256(0x00, 0x40) } } } // File: @openzeppelin/contracts/security/ReentrancyGuard.sol // OpenZeppelin Contracts v4.4.1 (security/ReentrancyGuard.sol) pragma solidity ^0.8.0; /** * @dev Contract module that helps prevent reentrant calls to a function. * * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier * available, which can be applied to functions to make sure there are no nested * (reentrant) calls to them. * * Note that because there is a single `nonReentrant` guard, functions marked as * `nonReentrant` may not call one another. This can be worked around by making * those functions `private`, and then adding `external` `nonReentrant` entry * points to them. * * TIP: If you would like to learn more about reentrancy and alternative ways * to protect against it, check out our blog post * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul]. */ abstract contract ReentrancyGuard { // Booleans are more expensive than uint256 or any type that takes up a full // word because each write operation emits an extra SLOAD to first read the // slot's contents, replace the bits taken up by the boolean, and then write // back. This is the compiler's defense against contract upgrades and // pointer aliasing, and it cannot be disabled. // The values being non-zero value makes deployment a bit more expensive, // but in exchange the refund on every call to nonReentrant will be lower in // amount. Since refunds are capped to a percentage of the total // transaction's gas, it is best to keep them low in cases like this one, to // increase the likelihood of the full refund coming into effect. uint256 private constant _NOT_ENTERED = 1; uint256 private constant _ENTERED = 2; uint256 private _status; constructor() { _status = _NOT_ENTERED; } /** * @dev Prevents a contract from calling itself, directly or indirectly. * Calling a `nonReentrant` function from another `nonReentrant` * function is not supported. It is possible to prevent this from happening * by making the `nonReentrant` function external, and making it call a * `private` function that does the actual work. */ modifier nonReentrant() { // On the first call to nonReentrant, _notEntered will be true require(_status != _ENTERED, "ReentrancyGuard: reentrant call"); // Any calls to nonReentrant after this point will fail _status = _ENTERED; _; // By storing the original value once again, a refund is triggered (see // https://eips.ethereum.org/EIPS/eip-2200) _status = _NOT_ENTERED; } } // File: @openzeppelin/contracts/utils/Strings.sol // OpenZeppelin Contracts v4.4.1 (utils/Strings.sol) pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef"; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { // Inspired by OraclizeAPI's implementation - MIT licence // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol if (value == 0) { return "0"; } uint256 temp = value; uint256 digits; while (temp != 0) { digits++; temp /= 10; } bytes memory buffer = new bytes(digits); while (value != 0) { digits -= 1; buffer[digits] = bytes1(uint8(48 + uint256(value % 10))); value /= 10; } return string(buffer); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { if (value == 0) { return "0x00"; } uint256 temp = value; uint256 length = 0; while (temp != 0) { length++; temp >>= 8; } return toHexString(value, length); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = _HEX_SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } } // File: @openzeppelin/contracts/utils/Context.sol // 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; } } // File: @openzeppelin/contracts/access/Ownable.sol // OpenZeppelin Contracts v4.4.1 (access/Ownable.sol) pragma solidity ^0.8.0; /** * @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. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } // File: @openzeppelin/contracts/utils/Address.sol // OpenZeppelin Contracts (last updated v4.5.0) (utils/Address.sol) pragma solidity ^0.8.1; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== * * [IMPORTANT] * ==== * You shouldn't rely on `isContract` to protect against flash loan attacks! * * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract * constructor. * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize/address.code.length, which returns 0 // for contracts in construction, since the code is only stored at the end // of the constructor execution. return account.code.length > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } } // File: @openzeppelin/contracts/token/ERC721/IERC721Receiver.sol // OpenZeppelin Contracts (last updated v4.6.0) (token/ERC721/IERC721Receiver.sol) pragma solidity ^0.8.0; /** * @title ERC721 token receiver interface * @dev Interface for any contract that wants to support safeTransfers * from ERC721 asset contracts. */ interface IERC721Receiver { /** * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom} * by `operator` from `from`, this function is called. * * It must return its Solidity selector to confirm the token transfer. * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted. * * The selector can be obtained in Solidity with `IERC721Receiver.onERC721Received.selector`. */ function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); } // File: @openzeppelin/contracts/utils/introspection/IERC165.sol // 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); } // File: @openzeppelin/contracts/utils/introspection/ERC165.sol // OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol) pragma solidity ^0.8.0; /** * @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) { return interfaceId == type(IERC165).interfaceId; } } // File: @openzeppelin/contracts/token/ERC721/IERC721.sol // OpenZeppelin Contracts (last updated v4.6.0) (token/ERC721/IERC721.sol) pragma solidity ^0.8.0; /** * @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); /** * @dev Returns the number of tokens in ``owner``'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes calldata data ) external; /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Transfers `tokenId` token from `from` to `to`. * * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external; /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool _approved) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll} */ function isApprovedForAll(address owner, address operator) external view returns (bool); } // File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Enumerable.sol // OpenZeppelin Contracts (last updated v4.5.0) (token/ERC721/extensions/IERC721Enumerable.sol) pragma solidity ^0.8.0; /** * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Enumerable is IERC721 { /** * @dev Returns the total amount of tokens stored by the contract. */ function totalSupply() external view returns (uint256); /** * @dev Returns a token ID owned by `owner` at a given `index` of its token list. * Use along with {balanceOf} to enumerate all of ``owner``'s tokens. */ function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256); /** * @dev Returns a token ID at a given `index` of all the tokens stored by the contract. * Use along with {totalSupply} to enumerate all tokens. */ function tokenByIndex(uint256 index) external view returns (uint256); } // File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol // OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol) pragma solidity ^0.8.0; /** * @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); } // File: ERC721A.sol // Creator: Chiru Labs pragma solidity ^0.8.4; error ApprovalCallerNotOwnerNorApproved(); error ApprovalQueryForNonexistentToken(); error ApproveToCaller(); error ApprovalToCurrentOwner(); error BalanceQueryForZeroAddress(); error MintedQueryForZeroAddress(); error MintToZeroAddress(); error MintZeroQuantity(); error OwnerIndexOutOfBounds(); error OwnerQueryForNonexistentToken(); error TokenIndexOutOfBounds(); error TransferCallerNotOwnerNorApproved(); error TransferFromIncorrectOwner(); error TransferToNonERC721ReceiverImplementer(); error TransferToZeroAddress(); error UnableDetermineTokenOwner(); error URIQueryForNonexistentToken(); /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including * the Metadata and Enumerable extension. Built to optimize for lower gas during batch mints. * * Assumes serials are sequentially minted starting at 0 (e.g. 0, 1, 2, 3..). * * Does not support burning tokens to address(0). * * Assumes that an owner cannot have more than the 2**128 - 1 (max value of uint128) of supply */ contract ERC721A is Context, ERC165, IERC721, IERC721Metadata, IERC721Enumerable { using Address for address; using Strings for uint256; struct TokenOwnership { address addr; uint64 startTimestamp; } struct AddressData { uint128 balance; uint128 numberMinted; } uint256 internal _currentIndex; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to ownership details // An empty struct value does not necessarily mean the token is unowned. See ownershipOf implementation for details. mapping(uint256 => TokenOwnership) internal _ownerships; // Mapping owner address to address data mapping(address => AddressData) private _addressData; // Mapping from token ID to approved address mapping(uint256 => address) private _tokenApprovals; // Mapping from owner to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev See {IERC721Enumerable-totalSupply}. */ function totalSupply() public view override returns (uint256) { return _currentIndex; } /** * @dev See {IERC721Enumerable-tokenByIndex}. */ function tokenByIndex(uint256 index) public view override returns (uint256) { if (index >= totalSupply()) revert TokenIndexOutOfBounds(); return index; } /** * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}. * This read function is O(totalSupply). If calling from a separate contract, be sure to test gas first. * It may also degrade with extremely large collection sizes (e.g >> 10000), test for your use case. */ function tokenOfOwnerByIndex(address owner, uint256 index) public view override returns (uint256) { if (index >= balanceOf(owner)) revert OwnerIndexOutOfBounds(); uint256 numMintedSoFar = totalSupply(); uint256 tokenIdsIdx; address currOwnershipAddr; // Counter overflow is impossible as the loop breaks when uint256 i is equal to another uint256 numMintedSoFar. unchecked { for (uint256 i; i < numMintedSoFar; i++) { TokenOwnership memory ownership = _ownerships[i]; if (ownership.addr != address(0)) { currOwnershipAddr = ownership.addr; } if (currOwnershipAddr == owner) { if (tokenIdsIdx == index) { return i; } tokenIdsIdx++; } } } // Execution should never reach this point. assert(false); } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) { return interfaceId == type(IERC721).interfaceId || interfaceId == type(IERC721Metadata).interfaceId || interfaceId == type(IERC721Enumerable).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address owner) public view override returns (uint256) { if (owner == address(0)) revert BalanceQueryForZeroAddress(); return uint256(_addressData[owner].balance); } function _numberMinted(address owner) internal view returns (uint256) { if (owner == address(0)) revert MintedQueryForZeroAddress(); return uint256(_addressData[owner].numberMinted); } /** * Gas spent here starts off proportional to the maximum mint batch size. * It gradually moves to O(1) as tokens get transferred around in the collection over time. */ function ownershipOf(uint256 tokenId) internal view returns (TokenOwnership memory) { if (!_exists(tokenId)) revert OwnerQueryForNonexistentToken(); unchecked { for (uint256 curr = tokenId;; curr--) { TokenOwnership memory ownership = _ownerships[curr]; if (ownership.addr != address(0)) { return ownership; } } } } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view override returns (address) { return ownershipOf(tokenId).addr; } /** * @dev See {IERC721Metadata-name}. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev See {IERC721Metadata-symbol}. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev See {IERC721Metadata-tokenURI}. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { if (!_exists(tokenId)) revert URIQueryForNonexistentToken(); string memory baseURI = _baseURI(); return bytes(baseURI).length != 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : ''; } /** * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each * token will be the concatenation of the `baseURI` and the `tokenId`. Empty * by default, can be overriden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ''; } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public override { address owner = ERC721A.ownerOf(tokenId); if (to == owner) revert ApprovalToCurrentOwner(); if (_msgSender() != owner && !isApprovedForAll(owner, _msgSender())) revert ApprovalCallerNotOwnerNorApproved(); _approve(to, tokenId, owner); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view override returns (address) { if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken(); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public override { if (operator == _msgSender()) revert ApproveToCaller(); _operatorApprovals[_msgSender()][operator] = approved; emit ApprovalForAll(_msgSender(), operator, approved); } /** * @dev See {IERC721-isApprovedForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev See {IERC721-transferFrom}. */ function transferFrom( address from, address to, uint256 tokenId ) public virtual override { _transfer(from, to, tokenId); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public virtual override { safeTransferFrom(from, to, tokenId, ''); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory _data ) public override { _transfer(from, to, tokenId); if (!_checkOnERC721Received(from, to, tokenId, _data)) revert TransferToNonERC721ReceiverImplementer(); } /** * @dev Returns whether `tokenId` exists. * * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}. * * Tokens start existing when they are minted (`_mint`), */ function _exists(uint256 tokenId) internal view returns (bool) { return tokenId < _currentIndex; } function _safeMint(address to, uint256 quantity) internal { _safeMint(to, quantity, ''); } /** * @dev Safely mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called for each safe transfer. * - `quantity` must be greater than 0. * * Emits a {Transfer} event. */ function _safeMint( address to, uint256 quantity, bytes memory _data ) internal { _mint(to, quantity, _data, true); } /** * @dev Mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - `to` cannot be the zero address. * - `quantity` must be greater than 0. * * Emits a {Transfer} event. */ function _mint( address to, uint256 quantity, bytes memory _data, bool safe ) internal { uint256 startTokenId = _currentIndex; if (to == address(0)) revert MintToZeroAddress(); if (quantity == 0) revert MintZeroQuantity(); _beforeTokenTransfers(address(0), to, startTokenId, quantity); // Overflows are incredibly unrealistic. // balance or numberMinted overflow if current value of either + quantity > 3.4e38 (2**128) - 1 // updatedIndex overflows if _currentIndex + quantity > 1.56e77 (2**256) - 1 unchecked { _addressData[to].balance += uint128(quantity); _addressData[to].numberMinted += uint128(quantity); _ownerships[startTokenId].addr = to; _ownerships[startTokenId].startTimestamp = uint64(block.timestamp); uint256 updatedIndex = startTokenId; for (uint256 i; i < quantity; i++) { emit Transfer(address(0), to, updatedIndex); if (safe && !_checkOnERC721Received(address(0), to, updatedIndex, _data)) { revert TransferToNonERC721ReceiverImplementer(); } updatedIndex++; } _currentIndex = updatedIndex; } _afterTokenTransfers(address(0), to, startTokenId, quantity); } /** * @dev Transfers `tokenId` from `from` to `to`. * * Requirements: * * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * * Emits a {Transfer} event. */ function _transfer( address from, address to, uint256 tokenId ) private { TokenOwnership memory prevOwnership = ownershipOf(tokenId); bool isApprovedOrOwner = (_msgSender() == prevOwnership.addr || isApprovedForAll(prevOwnership.addr, _msgSender()) || getApproved(tokenId) == _msgSender()); if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved(); if (prevOwnership.addr != from) revert TransferFromIncorrectOwner(); if (to == address(0)) revert TransferToZeroAddress(); _beforeTokenTransfers(from, to, tokenId, 1); // Clear approvals from the previous owner _approve(address(0), tokenId, prevOwnership.addr); // Underflow of the sender's balance is impossible because we check for // ownership above and the recipient's balance can't realistically overflow. // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256. unchecked { _addressData[from].balance -= 1; _addressData[to].balance += 1; _ownerships[tokenId].addr = to; _ownerships[tokenId].startTimestamp = uint64(block.timestamp); // If the ownership slot of tokenId+1 is not explicitly set, that means the transfer initiator owns it. // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls. uint256 nextTokenId = tokenId + 1; if (_ownerships[nextTokenId].addr == address(0)) { if (_exists(nextTokenId)) { _ownerships[nextTokenId].addr = prevOwnership.addr; _ownerships[nextTokenId].startTimestamp = prevOwnership.startTimestamp; } } } emit Transfer(from, to, tokenId); _afterTokenTransfers(from, to, tokenId, 1); } /** * @dev Approve `to` to operate on `tokenId` * * Emits a {Approval} event. */ function _approve( address to, uint256 tokenId, address owner ) private { _tokenApprovals[tokenId] = to; emit Approval(owner, to, tokenId); } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address. * The call is not executed if the target address is not a contract. * * @param from address representing the previous owner of the given token ID * @param to target address that will receive the tokens * @param tokenId uint256 ID of the token to be transferred * @param _data bytes optional data to send along with the call * @return bool whether the call correctly returned the expected magic value */ function _checkOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { if (to.isContract()) { try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) { return retval == IERC721Receiver(to).onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) revert TransferToNonERC721ReceiverImplementer(); else { assembly { revert(add(32, reason), mload(reason)) } } } } else { return true; } } /** * @dev Hook that is called before a set of serially-ordered token ids are about to be transferred. This includes minting. * * startTokenId - the first token id to be transferred * quantity - the amount to be transferred * * Calling conditions: * * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. */ function _beforeTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} /** * @dev Hook that is called after a set of serially-ordered token ids have been transferred. This includes * minting. * * startTokenId - the first token id to be transferred * quantity - the amount to be transferred * * Calling conditions: * * - when `from` and `to` are both non-zero. * - `from` and `to` are never both zero. */ function _afterTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} } // File: ComicCover.sol // Creator: ZombieDaoDev pragma solidity ^0.8.4; contract IERC20 { function transferFrom( address sender, address recipient, uint256 amount ) public returns (bool) {} function transfer(address recipient, uint256 amount) public returns (bool) {} function balanceOf(address account) public view returns (uint256) {} } contract ComicCover is ERC721A, Ownable, ReentrancyGuard { uint256 public nftPrice = 0.02 ether; uint256 public tknPrice = 500 ether; uint256 public nftLimit = 999; uint256 public reserved = 99; uint256 public capPublic = 4; uint256 public capToken = 4; uint256 public freeMultiple = 2; address public tokenAddress; bool public saleOpen = false; bool public saleToken = false; bool public whitelistLimit = true; bytes32 public merkleRoot; string public baseURI = ""; mapping(address => uint256) public whitelistAddresses; constructor( string memory _name, string memory _symbol, string memory _initURI, bytes32 _merkleRoot, address _tokenAddress ) ERC721A(_name, _symbol) { baseURI = _initURI; merkleRoot = _merkleRoot; tokenAddress = _tokenAddress; } function _mint(address _to, uint256 _amount) internal { require(tx.origin == msg.sender, "ComicCover: Self Mint Only"); uint256 _mintAmount = _amount + (_amount / freeMultiple); require( totalSupply() + _mintAmount <= (nftLimit - reserved), "ComicCover: Sold Out" ); _safeMint(_to, _mintAmount); } function mint(address _to, uint256 _amount) public payable { require(saleOpen == true, "ComicCover: Not Started"); require(_amount <= capPublic, "ComicCover: Amount Limit"); require(msg.value == nftPrice * _amount, "ComicCover: Incorrect Value"); _mint(_to, _amount); } function mintToken(uint256 _amount, bytes32[] calldata proof) public { require(saleToken == true, "ComicCover: Not Started"); require(_amount <= capToken, "ComicCover: Amount Limit"); if (whitelistLimit) { require( MerkleProof.verify( proof, merkleRoot, keccak256(abi.encodePacked(_msgSender())) ), "ComicCover: Not Whitelisted" ); require( whitelistAddresses[_msgSender()] + _amount <= capToken, "ComicCover: Token Limit" ); } IERC20(tokenAddress).transferFrom( _msgSender(), address(this), tknPrice * _amount ); _mint(_msgSender(), _amount); whitelistAddresses[_msgSender()] += _amount; } function airdrop(address[] memory _to, uint256[] memory _amount) public onlyOwner { require(_to.length == _amount.length, "ComicCover: Length Missmatch"); for (uint256 i = 0; i < _to.length; i++) { require( totalSupply() + _amount[i] <= nftLimit, "ComicCover: Sold Out" ); _safeMint(_to[i], _amount[i]); if (reserved > 0 && reserved >= _amount[i]) { reserved -= _amount[i]; } else { reserved = 0; } } } function tokensOfOwnerByIndex(address _owner, uint256 _index) public view returns (uint256) { return tokensOfOwner(_owner)[_index]; } function tokensOfOwner(address _owner) public view returns (uint256[] memory) { uint256 _tokenCount = balanceOf(_owner); uint256[] memory _tokenIds = new uint256[](_tokenCount); uint256 _tokenIndex = 0; for (uint256 i = 0; i < totalSupply(); i++) { if (ownerOf(i) == _owner) { _tokenIds[_tokenIndex] = i; _tokenIndex++; } } return _tokenIds; } function toggleSaleOpen() public onlyOwner { saleOpen = !saleOpen; } function toggleSaleToken() public onlyOwner { saleToken = !saleToken; } function toggleWhitelistLimit() public onlyOwner { whitelistLimit = !whitelistLimit; } function setNftPrice(uint256 _nftPrice) public onlyOwner { nftPrice = _nftPrice; } function setTknPrice(uint256 _tknPrice) public onlyOwner { tknPrice = _tknPrice; } function withdraw() public onlyOwner { (bool transfer, ) = payable(_msgSender()).call{ value: address(this).balance }(""); require(transfer, "ComicCover: Transfer Failed"); IERC20(tokenAddress).transfer( _msgSender(), IERC20(tokenAddress).balanceOf(address(this)) ); } function setBaseURI(string memory _newBaseURI) public onlyOwner { baseURI = _newBaseURI; } function _baseURI() internal view virtual override returns (string memory) { return baseURI; } function contractURI() public view returns (string memory) { return string(abi.encodePacked(baseURI, "contract")); } function setMerkleRoot(bytes32 _merkleRoot) public onlyOwner { merkleRoot = _merkleRoot; } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_symbol","type":"string"},{"internalType":"string","name":"_initURI","type":"string"},{"internalType":"bytes32","name":"_merkleRoot","type":"bytes32"},{"internalType":"address","name":"_tokenAddress","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerIndexOutOfBounds","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TokenIndexOutOfBounds","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","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":"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":[{"internalType":"address[]","name":"_to","type":"address[]"},{"internalType":"uint256[]","name":"_amount","type":"uint256[]"}],"name":"airdrop","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","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":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"capPublic","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"capToken","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"contractURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"freeMultiple","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"merkleRoot","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"},{"internalType":"bytes32[]","name":"proof","type":"bytes32[]"}],"name":"mintToken","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"nftLimit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"nftPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"reserved","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"saleOpen","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"saleToken","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_merkleRoot","type":"bytes32"}],"name":"setMerkleRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_nftPrice","type":"uint256"}],"name":"setNftPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tknPrice","type":"uint256"}],"name":"setTknPrice","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":[],"name":"tknPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"toggleSaleOpen","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"toggleSaleToken","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"toggleWhitelistLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"tokenAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"_owner","type":"address"}],"name":"tokensOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"},{"internalType":"uint256","name":"_index","type":"uint256"}],"name":"tokensOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","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":"","type":"address"}],"name":"whitelistAddresses","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"whitelistLimit","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
66470de4df820000600955681b1ae4d6e2ef500000600a556103e7600b556063600c556004600d819055600e556002600f556010805462ffffff60a01b1916600160b01b17905560a060408190526000608081905262000062916012916200017f565b503480156200007057600080fd5b5060405162002d9a38038062002d9a8339810160408190526200009391620002dc565b845185908590620000ac9060019060208501906200017f565b508051620000c29060029060208401906200017f565b505050620000df620000d96200012960201b60201c565b6200012d565b60016008558251620000f99060129060208601906200017f565b50601191909155601080546001600160a01b0319166001600160a01b0390921691909117905550620003ee915050565b3390565b600780546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b8280546200018d906200039b565b90600052602060002090601f016020900481019282620001b15760008555620001fc565b82601f10620001cc57805160ff1916838001178555620001fc565b82800160010185558215620001fc579182015b82811115620001fc578251825591602001919060010190620001df565b506200020a9291506200020e565b5090565b5b808211156200020a57600081556001016200020f565b600082601f8301126200023757600080fd5b81516001600160401b0380821115620002545762000254620003d8565b604051601f8301601f19908116603f011681019082821181831017156200027f576200027f620003d8565b816040528381526020925086838588010111156200029c57600080fd5b600091505b83821015620002c05785820183015181830184015290820190620002a1565b83821115620002d25760008385830101525b9695505050505050565b600080600080600060a08688031215620002f557600080fd5b85516001600160401b03808211156200030d57600080fd5b6200031b89838a0162000225565b965060208801519150808211156200033257600080fd5b6200034089838a0162000225565b955060408801519150808211156200035757600080fd5b50620003668882890162000225565b60608801516080890151919550935090506001600160a01b03811681146200038d57600080fd5b809150509295509295909350565b600181811c90821680620003b057607f821691505b60208210811415620003d257634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052604160045260246000fd5b61299c80620003fe6000396000f3fe6080604052600436106102885760003560e01c806370a082311161015a578063a22cb465116100c1578063dd4ed4d31161007a578063dd4ed4d314610765578063e8a3d4851461077b578063e985e36714610790578063e985e9c5146107b1578063f2fde38b146107fa578063fe60d12c1461081a57600080fd5b8063a22cb465146106b9578063ae7c122e146106d9578063b4f666da146106f9578063b88d4fde1461070f578063c87b56dd1461072f578063cb4e83261461074f57600080fd5b80638393634c116101135780638393634c146106035780638462151c146106185780638da5cb5b1461064557806395d89b411461066357806399288dbb146106785780639d76ea581461069957600080fd5b806370a0823114610564578063715018a6146105845780637c620f95146105995780637cb64759146105ae5780637d020a29146105ce5780637d9a7a4c146105e357600080fd5b8063302150e5116101fe5780634f6ccce7116101b75780634f6ccce7146104a257806355f804b3146104c25780636352211e146104e2578063672434821461050257806369ddd67d146105225780636c0360eb1461054f57600080fd5b8063302150e5146103f9578063374329dc1461041a5780633ccfd60b1461043a57806340c10f191461044f57806342842e0e146104625780634707f44f1461048257600080fd5b80630d39fc81116102505780630d39fc811461036257806318160ddd1461037857806323b872dd1461038d5780632a7065ea146103ad5780632eb4a7ab146103c35780632f745c59146103d957600080fd5b806301ffc9a71461028d57806302fe4728146102c257806306fdde03146102e6578063081812fc14610308578063095ea7b314610340575b600080fd5b34801561029957600080fd5b506102ad6102a83660046124a0565b610830565b60405190151581526020015b60405180910390f35b3480156102ce57600080fd5b506102d8600f5481565b6040519081526020016102b9565b3480156102f257600080fd5b506102fb61089d565b6040516102b99190612741565b34801561031457600080fd5b50610328610323366004612487565b61092f565b6040516001600160a01b0390911681526020016102b9565b34801561034c57600080fd5b5061036061035b36600461237a565b610975565b005b34801561036e57600080fd5b506102d860095481565b34801561038457600080fd5b506000546102d8565b34801561039957600080fd5b506103606103a836600461228c565b610a03565b3480156103b957600080fd5b506102d8600b5481565b3480156103cf57600080fd5b506102d860115481565b3480156103e557600080fd5b506102d86103f436600461237a565b610a0e565b34801561040557600080fd5b506010546102ad90600160b01b900460ff1681565b34801561042657600080fd5b50610360610435366004612487565b610ae2565b34801561044657600080fd5b50610360610b1a565b61036061045d36600461237a565b610ceb565b34801561046e57600080fd5b5061036061047d36600461228c565b610df6565b34801561048e57600080fd5b506102d861049d36600461237a565b610e11565b3480156104ae57600080fd5b506102d86104bd366004612487565b610e3d565b3480156104ce57600080fd5b506103606104dd3660046124da565b610e64565b3480156104ee57600080fd5b506103286104fd366004612487565b610ea1565b34801561050e57600080fd5b5061036061051d3660046123a4565b610eb3565b34801561052e57600080fd5b506102d861053d36600461223e565b60136020526000908152604090205481565b34801561055b57600080fd5b506102fb61106b565b34801561057057600080fd5b506102d861057f36600461223e565b6110f9565b34801561059057600080fd5b50610360611147565b3480156105a557600080fd5b5061036061117d565b3480156105ba57600080fd5b506103606105c9366004612487565b6111c8565b3480156105da57600080fd5b506103606111f7565b3480156105ef57600080fd5b506103606105fe366004612487565b611242565b34801561060f57600080fd5b50610360611271565b34801561062457600080fd5b5061063861063336600461223e565b6112bc565b6040516102b991906126fd565b34801561065157600080fd5b506007546001600160a01b0316610328565b34801561066f57600080fd5b506102fb611389565b34801561068457600080fd5b506010546102ad90600160a01b900460ff1681565b3480156106a557600080fd5b50601054610328906001600160a01b031681565b3480156106c557600080fd5b506103606106d4366004612343565b611398565b3480156106e557600080fd5b506103606106f436600461253b565b61142e565b34801561070557600080fd5b506102d8600e5481565b34801561071b57600080fd5b5061036061072a3660046122c8565b6116ee565b34801561073b57600080fd5b506102fb61074a366004612487565b611728565b34801561075b57600080fd5b506102d8600d5481565b34801561077157600080fd5b506102d8600a5481565b34801561078757600080fd5b506102fb6117af565b34801561079c57600080fd5b506010546102ad90600160a81b900460ff1681565b3480156107bd57600080fd5b506102ad6107cc366004612259565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b34801561080657600080fd5b5061036061081536600461223e565b6117d7565b34801561082657600080fd5b506102d8600c5481565b60006001600160e01b031982166380ac58cd60e01b148061086157506001600160e01b03198216635b5e139f60e01b145b8061087c57506001600160e01b0319821663780e9d6360e01b145b8061089757506301ffc9a760e01b6001600160e01b03198316145b92915050565b6060600180546108ac9061286a565b80601f01602080910402602001604051908101604052809291908181526020018280546108d89061286a565b80156109255780601f106108fa57610100808354040283529160200191610925565b820191906000526020600020905b81548152906001019060200180831161090857829003601f168201915b5050505050905090565b600061093c826000541190565b610959576040516333d1c03960e21b815260040160405180910390fd5b506000908152600560205260409020546001600160a01b031690565b600061098082610ea1565b9050806001600160a01b0316836001600160a01b031614156109b55760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b038216148015906109d557506109d381336107cc565b155b156109f3576040516367d9dca160e11b815260040160405180910390fd5b6109fe838383611872565b505050565b6109fe8383836118ce565b6000610a19836110f9565b8210610a38576040516306ed618760e11b815260040160405180910390fd5b600080549080805b83811015610ad0576000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b9091046001600160401b03169183019190915215610a9257805192505b876001600160a01b0316836001600160a01b03161415610ac75786841415610ac05750935061089792505050565b6001909301925b50600101610a40565b50610ad96128d4565b50505092915050565b6007546001600160a01b03163314610b155760405162461bcd60e51b8152600401610b0c90612754565b60405180910390fd5b600a55565b6007546001600160a01b03163314610b445760405162461bcd60e51b8152600401610b0c90612754565b604051600090339047908381818185875af1925050503d8060008114610b86576040519150601f19603f3d011682016040523d82523d6000602084013e610b8b565b606091505b5050905080610bdc5760405162461bcd60e51b815260206004820152601b60248201527f436f6d6963436f7665723a205472616e73666572204661696c656400000000006044820152606401610b0c565b6010546001600160a01b031663a9059cbb336010546040516370a0823160e01b81523060048201526001600160a01b03909116906370a082319060240160206040518083038186803b158015610c3157600080fd5b505afa158015610c45573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610c699190612522565b6040516001600160e01b031960e085901b1681526001600160a01b0390921660048301526024820152604401602060405180830381600087803b158015610caf57600080fd5b505af1158015610cc3573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610ce7919061246a565b5050565b601054600160a01b900460ff161515600114610d435760405162461bcd60e51b815260206004820152601760248201527610dbdb5a58d0dbdd995c8e88139bdd0814dd185c9d1959604a1b6044820152606401610b0c565b600d54811115610d905760405162461bcd60e51b815260206004820152601860248201527710dbdb5a58d0dbdd995c8e88105b5bdd5b9d08131a5b5a5d60421b6044820152606401610b0c565b80600954610d9e9190612808565b3414610dec5760405162461bcd60e51b815260206004820152601b60248201527f436f6d6963436f7665723a20496e636f72726563742056616c756500000000006044820152606401610b0c565b610ce78282611aeb565b6109fe838383604051806020016040528060008152506116ee565b6000610e1c836112bc565b8281518110610e2d57610e2d612916565b6020026020010151905092915050565b600080548210610e60576040516329c8c00760e21b815260040160405180910390fd5b5090565b6007546001600160a01b03163314610e8e5760405162461bcd60e51b8152600401610b0c90612754565b8051610ce79060129060208401906120c9565b6000610eac82611bc9565b5192915050565b6007546001600160a01b03163314610edd5760405162461bcd60e51b8152600401610b0c90612754565b8051825114610f2e5760405162461bcd60e51b815260206004820152601c60248201527f436f6d6963436f7665723a204c656e677468204d6973736d61746368000000006044820152606401610b0c565b60005b82518110156109fe57600b54828281518110610f4f57610f4f612916565b6020026020010151610f6060005490565b610f6a91906127dc565b1115610faf5760405162461bcd60e51b815260206004820152601460248201527310dbdb5a58d0dbdd995c8e8814dbdb190813dd5d60621b6044820152606401610b0c565b610feb838281518110610fc457610fc4612916565b6020026020010151838381518110610fde57610fde612916565b6020026020010151611c5d565b6000600c54118015611018575081818151811061100a5761100a612916565b6020026020010151600c5410155b156110535781818151811061102f5761102f612916565b6020026020010151600c60008282546110489190612827565b909155506110599050565b6000600c555b80611063816128a5565b915050610f31565b601280546110789061286a565b80601f01602080910402602001604051908101604052809291908181526020018280546110a49061286a565b80156110f15780601f106110c6576101008083540402835291602001916110f1565b820191906000526020600020905b8154815290600101906020018083116110d457829003601f168201915b505050505081565b60006001600160a01b038216611122576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b03166000908152600460205260409020546001600160801b031690565b6007546001600160a01b031633146111715760405162461bcd60e51b8152600401610b0c90612754565b61117b6000611c77565b565b6007546001600160a01b031633146111a75760405162461bcd60e51b8152600401610b0c90612754565b6010805460ff60a81b198116600160a81b9182900460ff1615909102179055565b6007546001600160a01b031633146111f25760405162461bcd60e51b8152600401610b0c90612754565b601155565b6007546001600160a01b031633146112215760405162461bcd60e51b8152600401610b0c90612754565b6010805460ff60b01b198116600160b01b9182900460ff1615909102179055565b6007546001600160a01b0316331461126c5760405162461bcd60e51b8152600401610b0c90612754565b600955565b6007546001600160a01b0316331461129b5760405162461bcd60e51b8152600401610b0c90612754565b6010805460ff60a01b198116600160a01b9182900460ff1615909102179055565b606060006112c9836110f9565b90506000816001600160401b038111156112e5576112e561292c565b60405190808252806020026020018201604052801561130e578160200160208202803683370190505b5090506000805b60005481101561137f57856001600160a01b031661133282610ea1565b6001600160a01b0316141561136d578083838151811061135457611354612916565b602090810291909101015281611369816128a5565b9250505b80611377816128a5565b915050611315565b5090949350505050565b6060600280546108ac9061286a565b6001600160a01b0382163314156113c25760405163b06307db60e01b815260040160405180910390fd5b3360008181526006602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b601054600160a81b900460ff1615156001146114865760405162461bcd60e51b815260206004820152601760248201527610dbdb5a58d0dbdd995c8e88139bdd0814dd185c9d1959604a1b6044820152606401610b0c565b600e548311156114d35760405162461bcd60e51b815260206004820152601860248201527710dbdb5a58d0dbdd995c8e88105b5bdd5b9d08131a5b5a5d60421b6044820152606401610b0c565b601054600160b01b900460ff16156116125761155a828280806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250506011546040516bffffffffffffffffffffffff193360601b166020820152909250603401905060405160208183030381529060405280519060200120611cc9565b6115a65760405162461bcd60e51b815260206004820152601b60248201527f436f6d6963436f7665723a204e6f742057686974656c697374656400000000006044820152606401610b0c565b600e54336000908152601360205260409020546115c49085906127dc565b11156116125760405162461bcd60e51b815260206004820152601760248201527f436f6d6963436f7665723a20546f6b656e204c696d69740000000000000000006044820152606401610b0c565b6010546001600160a01b03166323b872dd333086600a546116339190612808565b6040516001600160e01b031960e086901b1681526001600160a01b0393841660048201529290911660248301526044820152606401602060405180830381600087803b15801561168257600080fd5b505af1158015611696573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906116ba919061246a565b506116c53384611aeb565b33600090815260136020526040812080548592906116e49084906127dc565b9091555050505050565b6116f98484846118ce565b61170584848484611cdf565b611722576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b6060611735826000541190565b61175257604051630a14c4b560e41b815260040160405180910390fd5b600061175c611dee565b905080516000141561177d57604051806020016040528060008152506117a8565b8061178784611dfd565b6040516020016117989291906125e5565b6040516020818303038152906040525b9392505050565b606060126040516020016117c39190612614565b604051602081830303815290604052905090565b6007546001600160a01b031633146118015760405162461bcd60e51b8152600401610b0c90612754565b6001600160a01b0381166118665760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610b0c565b61186f81611c77565b50565b60008281526005602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b60006118d982611bc9565b80519091506000906001600160a01b0316336001600160a01b031614806119075750815161190790336107cc565b806119225750336119178461092f565b6001600160a01b0316145b90508061194257604051632ce44b5f60e11b815260040160405180910390fd5b846001600160a01b031682600001516001600160a01b0316146119775760405162a1148160e81b815260040160405180910390fd5b6001600160a01b03841661199e57604051633a954ecd60e21b815260040160405180910390fd5b6119ae6000848460000151611872565b6001600160a01b03858116600090815260046020908152604080832080546001600160801b03198082166001600160801b03928316600019018316179092558986168086528386208054938416938316600190810190931693909317909255888552600390935281842080546001600160e01b031916909117600160a01b426001600160401b031602179055908601808352912054909116611aa157611a55816000541190565b15611aa157825160008281526003602090815260409091208054918601516001600160401b0316600160a01b026001600160e01b03199092166001600160a01b03909316929092171790555b5082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b323314611b3a5760405162461bcd60e51b815260206004820152601a60248201527f436f6d6963436f7665723a2053656c66204d696e74204f6e6c790000000000006044820152606401610b0c565b6000600f5482611b4a91906127f4565b611b5490836127dc565b9050600c54600b54611b669190612827565b81611b7060005490565b611b7a91906127dc565b1115611bbf5760405162461bcd60e51b815260206004820152601460248201527310dbdb5a58d0dbdd995c8e8814dbdb190813dd5d60621b6044820152606401610b0c565b6109fe8382611c5d565b6040805180820190915260008082526020820152611be8826000541190565b611c0557604051636f96cda160e11b815260040160405180910390fd5b815b6000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b9091046001600160401b03169183019190915215611c53579392505050565b5060001901611c07565b610ce7828260405180602001604052806000815250611efa565b600780546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600082611cd68584611f07565b14949350505050565b60006001600160a01b0384163b15611de257604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611d239033908990889088906004016126c0565b602060405180830381600087803b158015611d3d57600080fd5b505af1925050508015611d6d575060408051601f3d908101601f19168201909252611d6a918101906124bd565b60015b611dc8573d808015611d9b576040519150601f19603f3d011682016040523d82523d6000602084013e611da0565b606091505b508051611dc0576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611de6565b5060015b949350505050565b6060601280546108ac9061286a565b606081611e215750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611e4b5780611e35816128a5565b9150611e449050600a836127f4565b9150611e25565b6000816001600160401b03811115611e6557611e6561292c565b6040519080825280601f01601f191660200182016040528015611e8f576020820181803683370190505b5090505b8415611de657611ea4600183612827565b9150611eb1600a866128c0565b611ebc9060306127dc565b60f81b818381518110611ed157611ed1612916565b60200101906001600160f81b031916908160001a905350611ef3600a866127f4565b9450611e93565b6109fe8383836001611f7b565b600081815b8451811015611f73576000858281518110611f2957611f29612916565b60200260200101519050808311611f4f5760008381526020829052604090209250611f60565b600081815260208490526040902092505b5080611f6b816128a5565b915050611f0c565b509392505050565b6000546001600160a01b038516611fa457604051622e076360e81b815260040160405180910390fd5b83611fc25760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b03851660008181526004602090815260408083208054600160801b6001600160801b031982166001600160801b039283168c01831690811782900483168c01909216021790558483526003909152812080546001600160e01b031916909217600160a01b426001600160401b0316021790915581905b858110156120c05760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a483801561209657506120946000888488611cdf565b155b156120b4576040516368d2bf6b60e11b815260040160405180910390fd5b6001918201910161203f565b50600055611ae4565b8280546120d59061286a565b90600052602060002090601f0160209004810192826120f7576000855561213d565b82601f1061211057805160ff191683800117855561213d565b8280016001018555821561213d579182015b8281111561213d578251825591602001919060010190612122565b50610e609291505b80821115610e605760008155600101612145565b60006001600160401b038311156121725761217261292c565b612185601f8401601f1916602001612789565b905082815283838301111561219957600080fd5b828260208301376000602084830101529392505050565b80356001600160a01b03811681146121c757600080fd5b919050565b600082601f8301126121dd57600080fd5b813560206121f26121ed836127b9565b612789565b80838252828201915082860187848660051b890101111561221257600080fd5b60005b8581101561223157813584529284019290840190600101612215565b5090979650505050505050565b60006020828403121561225057600080fd5b6117a8826121b0565b6000806040838503121561226c57600080fd5b612275836121b0565b9150612283602084016121b0565b90509250929050565b6000806000606084860312156122a157600080fd5b6122aa846121b0565b92506122b8602085016121b0565b9150604084013590509250925092565b600080600080608085870312156122de57600080fd5b6122e7856121b0565b93506122f5602086016121b0565b92506040850135915060608501356001600160401b0381111561231757600080fd5b8501601f8101871361232857600080fd5b61233787823560208401612159565b91505092959194509250565b6000806040838503121561235657600080fd5b61235f836121b0565b9150602083013561236f81612942565b809150509250929050565b6000806040838503121561238d57600080fd5b612396836121b0565b946020939093013593505050565b600080604083850312156123b757600080fd5b82356001600160401b03808211156123ce57600080fd5b818501915085601f8301126123e257600080fd5b813560206123f26121ed836127b9565b8083825282820191508286018a848660051b890101111561241257600080fd5b600096505b8487101561243c57612428816121b0565b835260019690960195918301918301612417565b509650508601359250508082111561245357600080fd5b50612460858286016121cc565b9150509250929050565b60006020828403121561247c57600080fd5b81516117a881612942565b60006020828403121561249957600080fd5b5035919050565b6000602082840312156124b257600080fd5b81356117a881612950565b6000602082840312156124cf57600080fd5b81516117a881612950565b6000602082840312156124ec57600080fd5b81356001600160401b0381111561250257600080fd5b8201601f8101841361251357600080fd5b611de684823560208401612159565b60006020828403121561253457600080fd5b5051919050565b60008060006040848603121561255057600080fd5b8335925060208401356001600160401b038082111561256e57600080fd5b818601915086601f83011261258257600080fd5b81358181111561259157600080fd5b8760208260051b85010111156125a657600080fd5b6020830194508093505050509250925092565b600081518084526125d181602086016020860161283e565b601f01601f19169290920160200192915050565b600083516125f781846020880161283e565b83519083019061260b81836020880161283e565b01949350505050565b600080835481600182811c91508083168061263057607f831692505b602080841082141561265057634e487b7160e01b86526022600452602486fd5b8180156126645760018114612675576126a2565b60ff198616895284890196506126a2565b60008a81526020902060005b8681101561269a5781548b820152908501908301612681565b505084890196505b505050505050611de6816718dbdb9d1c9858dd60c21b815260080190565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906126f3908301846125b9565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b8181101561273557835183529284019291840191600101612719565b50909695505050505050565b6020815260006117a860208301846125b9565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b604051601f8201601f191681016001600160401b03811182821017156127b1576127b161292c565b604052919050565b60006001600160401b038211156127d2576127d261292c565b5060051b60200190565b600082198211156127ef576127ef6128ea565b500190565b60008261280357612803612900565b500490565b6000816000190483118215151615612822576128226128ea565b500290565b600082821015612839576128396128ea565b500390565b60005b83811015612859578181015183820152602001612841565b838111156117225750506000910152565b600181811c9082168061287e57607f821691505b6020821081141561289f57634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156128b9576128b96128ea565b5060010190565b6000826128cf576128cf612900565b500690565b634e487b7160e01b600052600160045260246000fd5b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b801515811461186f57600080fd5b6001600160e01b03198116811461186f57600080fdfea2646970667358221220278ee875d6a2e20f7ccd80e39fea461e2680c5356371e9e49ae0c1f13408606e64736f6c6343000807003300000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000014070d83d56e412d6ac208d5591de90c91d9b66ed3ba9b0a316798382cb3b924d87000000000000000000000000ceb726e6383468dd8ac0b513c8330cc9fb4024a800000000000000000000000000000000000000000000000000000000000000215a6f6d626965205a656272617320436f6d6963204973737565203220436f7665720000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000065a5a433032430000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002468747470733a2f2f6d657461646174612e7a6f6d626965636f6d6963732e696f2f32632f00000000000000000000000000000000000000000000000000000000
Deployed Bytecode
0x6080604052600436106102885760003560e01c806370a082311161015a578063a22cb465116100c1578063dd4ed4d31161007a578063dd4ed4d314610765578063e8a3d4851461077b578063e985e36714610790578063e985e9c5146107b1578063f2fde38b146107fa578063fe60d12c1461081a57600080fd5b8063a22cb465146106b9578063ae7c122e146106d9578063b4f666da146106f9578063b88d4fde1461070f578063c87b56dd1461072f578063cb4e83261461074f57600080fd5b80638393634c116101135780638393634c146106035780638462151c146106185780638da5cb5b1461064557806395d89b411461066357806399288dbb146106785780639d76ea581461069957600080fd5b806370a0823114610564578063715018a6146105845780637c620f95146105995780637cb64759146105ae5780637d020a29146105ce5780637d9a7a4c146105e357600080fd5b8063302150e5116101fe5780634f6ccce7116101b75780634f6ccce7146104a257806355f804b3146104c25780636352211e146104e2578063672434821461050257806369ddd67d146105225780636c0360eb1461054f57600080fd5b8063302150e5146103f9578063374329dc1461041a5780633ccfd60b1461043a57806340c10f191461044f57806342842e0e146104625780634707f44f1461048257600080fd5b80630d39fc81116102505780630d39fc811461036257806318160ddd1461037857806323b872dd1461038d5780632a7065ea146103ad5780632eb4a7ab146103c35780632f745c59146103d957600080fd5b806301ffc9a71461028d57806302fe4728146102c257806306fdde03146102e6578063081812fc14610308578063095ea7b314610340575b600080fd5b34801561029957600080fd5b506102ad6102a83660046124a0565b610830565b60405190151581526020015b60405180910390f35b3480156102ce57600080fd5b506102d8600f5481565b6040519081526020016102b9565b3480156102f257600080fd5b506102fb61089d565b6040516102b99190612741565b34801561031457600080fd5b50610328610323366004612487565b61092f565b6040516001600160a01b0390911681526020016102b9565b34801561034c57600080fd5b5061036061035b36600461237a565b610975565b005b34801561036e57600080fd5b506102d860095481565b34801561038457600080fd5b506000546102d8565b34801561039957600080fd5b506103606103a836600461228c565b610a03565b3480156103b957600080fd5b506102d8600b5481565b3480156103cf57600080fd5b506102d860115481565b3480156103e557600080fd5b506102d86103f436600461237a565b610a0e565b34801561040557600080fd5b506010546102ad90600160b01b900460ff1681565b34801561042657600080fd5b50610360610435366004612487565b610ae2565b34801561044657600080fd5b50610360610b1a565b61036061045d36600461237a565b610ceb565b34801561046e57600080fd5b5061036061047d36600461228c565b610df6565b34801561048e57600080fd5b506102d861049d36600461237a565b610e11565b3480156104ae57600080fd5b506102d86104bd366004612487565b610e3d565b3480156104ce57600080fd5b506103606104dd3660046124da565b610e64565b3480156104ee57600080fd5b506103286104fd366004612487565b610ea1565b34801561050e57600080fd5b5061036061051d3660046123a4565b610eb3565b34801561052e57600080fd5b506102d861053d36600461223e565b60136020526000908152604090205481565b34801561055b57600080fd5b506102fb61106b565b34801561057057600080fd5b506102d861057f36600461223e565b6110f9565b34801561059057600080fd5b50610360611147565b3480156105a557600080fd5b5061036061117d565b3480156105ba57600080fd5b506103606105c9366004612487565b6111c8565b3480156105da57600080fd5b506103606111f7565b3480156105ef57600080fd5b506103606105fe366004612487565b611242565b34801561060f57600080fd5b50610360611271565b34801561062457600080fd5b5061063861063336600461223e565b6112bc565b6040516102b991906126fd565b34801561065157600080fd5b506007546001600160a01b0316610328565b34801561066f57600080fd5b506102fb611389565b34801561068457600080fd5b506010546102ad90600160a01b900460ff1681565b3480156106a557600080fd5b50601054610328906001600160a01b031681565b3480156106c557600080fd5b506103606106d4366004612343565b611398565b3480156106e557600080fd5b506103606106f436600461253b565b61142e565b34801561070557600080fd5b506102d8600e5481565b34801561071b57600080fd5b5061036061072a3660046122c8565b6116ee565b34801561073b57600080fd5b506102fb61074a366004612487565b611728565b34801561075b57600080fd5b506102d8600d5481565b34801561077157600080fd5b506102d8600a5481565b34801561078757600080fd5b506102fb6117af565b34801561079c57600080fd5b506010546102ad90600160a81b900460ff1681565b3480156107bd57600080fd5b506102ad6107cc366004612259565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b34801561080657600080fd5b5061036061081536600461223e565b6117d7565b34801561082657600080fd5b506102d8600c5481565b60006001600160e01b031982166380ac58cd60e01b148061086157506001600160e01b03198216635b5e139f60e01b145b8061087c57506001600160e01b0319821663780e9d6360e01b145b8061089757506301ffc9a760e01b6001600160e01b03198316145b92915050565b6060600180546108ac9061286a565b80601f01602080910402602001604051908101604052809291908181526020018280546108d89061286a565b80156109255780601f106108fa57610100808354040283529160200191610925565b820191906000526020600020905b81548152906001019060200180831161090857829003601f168201915b5050505050905090565b600061093c826000541190565b610959576040516333d1c03960e21b815260040160405180910390fd5b506000908152600560205260409020546001600160a01b031690565b600061098082610ea1565b9050806001600160a01b0316836001600160a01b031614156109b55760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b038216148015906109d557506109d381336107cc565b155b156109f3576040516367d9dca160e11b815260040160405180910390fd5b6109fe838383611872565b505050565b6109fe8383836118ce565b6000610a19836110f9565b8210610a38576040516306ed618760e11b815260040160405180910390fd5b600080549080805b83811015610ad0576000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b9091046001600160401b03169183019190915215610a9257805192505b876001600160a01b0316836001600160a01b03161415610ac75786841415610ac05750935061089792505050565b6001909301925b50600101610a40565b50610ad96128d4565b50505092915050565b6007546001600160a01b03163314610b155760405162461bcd60e51b8152600401610b0c90612754565b60405180910390fd5b600a55565b6007546001600160a01b03163314610b445760405162461bcd60e51b8152600401610b0c90612754565b604051600090339047908381818185875af1925050503d8060008114610b86576040519150601f19603f3d011682016040523d82523d6000602084013e610b8b565b606091505b5050905080610bdc5760405162461bcd60e51b815260206004820152601b60248201527f436f6d6963436f7665723a205472616e73666572204661696c656400000000006044820152606401610b0c565b6010546001600160a01b031663a9059cbb336010546040516370a0823160e01b81523060048201526001600160a01b03909116906370a082319060240160206040518083038186803b158015610c3157600080fd5b505afa158015610c45573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610c699190612522565b6040516001600160e01b031960e085901b1681526001600160a01b0390921660048301526024820152604401602060405180830381600087803b158015610caf57600080fd5b505af1158015610cc3573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610ce7919061246a565b5050565b601054600160a01b900460ff161515600114610d435760405162461bcd60e51b815260206004820152601760248201527610dbdb5a58d0dbdd995c8e88139bdd0814dd185c9d1959604a1b6044820152606401610b0c565b600d54811115610d905760405162461bcd60e51b815260206004820152601860248201527710dbdb5a58d0dbdd995c8e88105b5bdd5b9d08131a5b5a5d60421b6044820152606401610b0c565b80600954610d9e9190612808565b3414610dec5760405162461bcd60e51b815260206004820152601b60248201527f436f6d6963436f7665723a20496e636f72726563742056616c756500000000006044820152606401610b0c565b610ce78282611aeb565b6109fe838383604051806020016040528060008152506116ee565b6000610e1c836112bc565b8281518110610e2d57610e2d612916565b6020026020010151905092915050565b600080548210610e60576040516329c8c00760e21b815260040160405180910390fd5b5090565b6007546001600160a01b03163314610e8e5760405162461bcd60e51b8152600401610b0c90612754565b8051610ce79060129060208401906120c9565b6000610eac82611bc9565b5192915050565b6007546001600160a01b03163314610edd5760405162461bcd60e51b8152600401610b0c90612754565b8051825114610f2e5760405162461bcd60e51b815260206004820152601c60248201527f436f6d6963436f7665723a204c656e677468204d6973736d61746368000000006044820152606401610b0c565b60005b82518110156109fe57600b54828281518110610f4f57610f4f612916565b6020026020010151610f6060005490565b610f6a91906127dc565b1115610faf5760405162461bcd60e51b815260206004820152601460248201527310dbdb5a58d0dbdd995c8e8814dbdb190813dd5d60621b6044820152606401610b0c565b610feb838281518110610fc457610fc4612916565b6020026020010151838381518110610fde57610fde612916565b6020026020010151611c5d565b6000600c54118015611018575081818151811061100a5761100a612916565b6020026020010151600c5410155b156110535781818151811061102f5761102f612916565b6020026020010151600c60008282546110489190612827565b909155506110599050565b6000600c555b80611063816128a5565b915050610f31565b601280546110789061286a565b80601f01602080910402602001604051908101604052809291908181526020018280546110a49061286a565b80156110f15780601f106110c6576101008083540402835291602001916110f1565b820191906000526020600020905b8154815290600101906020018083116110d457829003601f168201915b505050505081565b60006001600160a01b038216611122576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b03166000908152600460205260409020546001600160801b031690565b6007546001600160a01b031633146111715760405162461bcd60e51b8152600401610b0c90612754565b61117b6000611c77565b565b6007546001600160a01b031633146111a75760405162461bcd60e51b8152600401610b0c90612754565b6010805460ff60a81b198116600160a81b9182900460ff1615909102179055565b6007546001600160a01b031633146111f25760405162461bcd60e51b8152600401610b0c90612754565b601155565b6007546001600160a01b031633146112215760405162461bcd60e51b8152600401610b0c90612754565b6010805460ff60b01b198116600160b01b9182900460ff1615909102179055565b6007546001600160a01b0316331461126c5760405162461bcd60e51b8152600401610b0c90612754565b600955565b6007546001600160a01b0316331461129b5760405162461bcd60e51b8152600401610b0c90612754565b6010805460ff60a01b198116600160a01b9182900460ff1615909102179055565b606060006112c9836110f9565b90506000816001600160401b038111156112e5576112e561292c565b60405190808252806020026020018201604052801561130e578160200160208202803683370190505b5090506000805b60005481101561137f57856001600160a01b031661133282610ea1565b6001600160a01b0316141561136d578083838151811061135457611354612916565b602090810291909101015281611369816128a5565b9250505b80611377816128a5565b915050611315565b5090949350505050565b6060600280546108ac9061286a565b6001600160a01b0382163314156113c25760405163b06307db60e01b815260040160405180910390fd5b3360008181526006602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b601054600160a81b900460ff1615156001146114865760405162461bcd60e51b815260206004820152601760248201527610dbdb5a58d0dbdd995c8e88139bdd0814dd185c9d1959604a1b6044820152606401610b0c565b600e548311156114d35760405162461bcd60e51b815260206004820152601860248201527710dbdb5a58d0dbdd995c8e88105b5bdd5b9d08131a5b5a5d60421b6044820152606401610b0c565b601054600160b01b900460ff16156116125761155a828280806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250506011546040516bffffffffffffffffffffffff193360601b166020820152909250603401905060405160208183030381529060405280519060200120611cc9565b6115a65760405162461bcd60e51b815260206004820152601b60248201527f436f6d6963436f7665723a204e6f742057686974656c697374656400000000006044820152606401610b0c565b600e54336000908152601360205260409020546115c49085906127dc565b11156116125760405162461bcd60e51b815260206004820152601760248201527f436f6d6963436f7665723a20546f6b656e204c696d69740000000000000000006044820152606401610b0c565b6010546001600160a01b03166323b872dd333086600a546116339190612808565b6040516001600160e01b031960e086901b1681526001600160a01b0393841660048201529290911660248301526044820152606401602060405180830381600087803b15801561168257600080fd5b505af1158015611696573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906116ba919061246a565b506116c53384611aeb565b33600090815260136020526040812080548592906116e49084906127dc565b9091555050505050565b6116f98484846118ce565b61170584848484611cdf565b611722576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b6060611735826000541190565b61175257604051630a14c4b560e41b815260040160405180910390fd5b600061175c611dee565b905080516000141561177d57604051806020016040528060008152506117a8565b8061178784611dfd565b6040516020016117989291906125e5565b6040516020818303038152906040525b9392505050565b606060126040516020016117c39190612614565b604051602081830303815290604052905090565b6007546001600160a01b031633146118015760405162461bcd60e51b8152600401610b0c90612754565b6001600160a01b0381166118665760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610b0c565b61186f81611c77565b50565b60008281526005602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b60006118d982611bc9565b80519091506000906001600160a01b0316336001600160a01b031614806119075750815161190790336107cc565b806119225750336119178461092f565b6001600160a01b0316145b90508061194257604051632ce44b5f60e11b815260040160405180910390fd5b846001600160a01b031682600001516001600160a01b0316146119775760405162a1148160e81b815260040160405180910390fd5b6001600160a01b03841661199e57604051633a954ecd60e21b815260040160405180910390fd5b6119ae6000848460000151611872565b6001600160a01b03858116600090815260046020908152604080832080546001600160801b03198082166001600160801b03928316600019018316179092558986168086528386208054938416938316600190810190931693909317909255888552600390935281842080546001600160e01b031916909117600160a01b426001600160401b031602179055908601808352912054909116611aa157611a55816000541190565b15611aa157825160008281526003602090815260409091208054918601516001600160401b0316600160a01b026001600160e01b03199092166001600160a01b03909316929092171790555b5082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b323314611b3a5760405162461bcd60e51b815260206004820152601a60248201527f436f6d6963436f7665723a2053656c66204d696e74204f6e6c790000000000006044820152606401610b0c565b6000600f5482611b4a91906127f4565b611b5490836127dc565b9050600c54600b54611b669190612827565b81611b7060005490565b611b7a91906127dc565b1115611bbf5760405162461bcd60e51b815260206004820152601460248201527310dbdb5a58d0dbdd995c8e8814dbdb190813dd5d60621b6044820152606401610b0c565b6109fe8382611c5d565b6040805180820190915260008082526020820152611be8826000541190565b611c0557604051636f96cda160e11b815260040160405180910390fd5b815b6000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b9091046001600160401b03169183019190915215611c53579392505050565b5060001901611c07565b610ce7828260405180602001604052806000815250611efa565b600780546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600082611cd68584611f07565b14949350505050565b60006001600160a01b0384163b15611de257604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611d239033908990889088906004016126c0565b602060405180830381600087803b158015611d3d57600080fd5b505af1925050508015611d6d575060408051601f3d908101601f19168201909252611d6a918101906124bd565b60015b611dc8573d808015611d9b576040519150601f19603f3d011682016040523d82523d6000602084013e611da0565b606091505b508051611dc0576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611de6565b5060015b949350505050565b6060601280546108ac9061286a565b606081611e215750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611e4b5780611e35816128a5565b9150611e449050600a836127f4565b9150611e25565b6000816001600160401b03811115611e6557611e6561292c565b6040519080825280601f01601f191660200182016040528015611e8f576020820181803683370190505b5090505b8415611de657611ea4600183612827565b9150611eb1600a866128c0565b611ebc9060306127dc565b60f81b818381518110611ed157611ed1612916565b60200101906001600160f81b031916908160001a905350611ef3600a866127f4565b9450611e93565b6109fe8383836001611f7b565b600081815b8451811015611f73576000858281518110611f2957611f29612916565b60200260200101519050808311611f4f5760008381526020829052604090209250611f60565b600081815260208490526040902092505b5080611f6b816128a5565b915050611f0c565b509392505050565b6000546001600160a01b038516611fa457604051622e076360e81b815260040160405180910390fd5b83611fc25760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b03851660008181526004602090815260408083208054600160801b6001600160801b031982166001600160801b039283168c01831690811782900483168c01909216021790558483526003909152812080546001600160e01b031916909217600160a01b426001600160401b0316021790915581905b858110156120c05760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a483801561209657506120946000888488611cdf565b155b156120b4576040516368d2bf6b60e11b815260040160405180910390fd5b6001918201910161203f565b50600055611ae4565b8280546120d59061286a565b90600052602060002090601f0160209004810192826120f7576000855561213d565b82601f1061211057805160ff191683800117855561213d565b8280016001018555821561213d579182015b8281111561213d578251825591602001919060010190612122565b50610e609291505b80821115610e605760008155600101612145565b60006001600160401b038311156121725761217261292c565b612185601f8401601f1916602001612789565b905082815283838301111561219957600080fd5b828260208301376000602084830101529392505050565b80356001600160a01b03811681146121c757600080fd5b919050565b600082601f8301126121dd57600080fd5b813560206121f26121ed836127b9565b612789565b80838252828201915082860187848660051b890101111561221257600080fd5b60005b8581101561223157813584529284019290840190600101612215565b5090979650505050505050565b60006020828403121561225057600080fd5b6117a8826121b0565b6000806040838503121561226c57600080fd5b612275836121b0565b9150612283602084016121b0565b90509250929050565b6000806000606084860312156122a157600080fd5b6122aa846121b0565b92506122b8602085016121b0565b9150604084013590509250925092565b600080600080608085870312156122de57600080fd5b6122e7856121b0565b93506122f5602086016121b0565b92506040850135915060608501356001600160401b0381111561231757600080fd5b8501601f8101871361232857600080fd5b61233787823560208401612159565b91505092959194509250565b6000806040838503121561235657600080fd5b61235f836121b0565b9150602083013561236f81612942565b809150509250929050565b6000806040838503121561238d57600080fd5b612396836121b0565b946020939093013593505050565b600080604083850312156123b757600080fd5b82356001600160401b03808211156123ce57600080fd5b818501915085601f8301126123e257600080fd5b813560206123f26121ed836127b9565b8083825282820191508286018a848660051b890101111561241257600080fd5b600096505b8487101561243c57612428816121b0565b835260019690960195918301918301612417565b509650508601359250508082111561245357600080fd5b50612460858286016121cc565b9150509250929050565b60006020828403121561247c57600080fd5b81516117a881612942565b60006020828403121561249957600080fd5b5035919050565b6000602082840312156124b257600080fd5b81356117a881612950565b6000602082840312156124cf57600080fd5b81516117a881612950565b6000602082840312156124ec57600080fd5b81356001600160401b0381111561250257600080fd5b8201601f8101841361251357600080fd5b611de684823560208401612159565b60006020828403121561253457600080fd5b5051919050565b60008060006040848603121561255057600080fd5b8335925060208401356001600160401b038082111561256e57600080fd5b818601915086601f83011261258257600080fd5b81358181111561259157600080fd5b8760208260051b85010111156125a657600080fd5b6020830194508093505050509250925092565b600081518084526125d181602086016020860161283e565b601f01601f19169290920160200192915050565b600083516125f781846020880161283e565b83519083019061260b81836020880161283e565b01949350505050565b600080835481600182811c91508083168061263057607f831692505b602080841082141561265057634e487b7160e01b86526022600452602486fd5b8180156126645760018114612675576126a2565b60ff198616895284890196506126a2565b60008a81526020902060005b8681101561269a5781548b820152908501908301612681565b505084890196505b505050505050611de6816718dbdb9d1c9858dd60c21b815260080190565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906126f3908301846125b9565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b8181101561273557835183529284019291840191600101612719565b50909695505050505050565b6020815260006117a860208301846125b9565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b604051601f8201601f191681016001600160401b03811182821017156127b1576127b161292c565b604052919050565b60006001600160401b038211156127d2576127d261292c565b5060051b60200190565b600082198211156127ef576127ef6128ea565b500190565b60008261280357612803612900565b500490565b6000816000190483118215151615612822576128226128ea565b500290565b600082821015612839576128396128ea565b500390565b60005b83811015612859578181015183820152602001612841565b838111156117225750506000910152565b600181811c9082168061287e57607f821691505b6020821081141561289f57634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156128b9576128b96128ea565b5060010190565b6000826128cf576128cf612900565b500690565b634e487b7160e01b600052600160045260246000fd5b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b801515811461186f57600080fd5b6001600160e01b03198116811461186f57600080fdfea2646970667358221220278ee875d6a2e20f7ccd80e39fea461e2680c5356371e9e49ae0c1f13408606e64736f6c63430008070033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
00000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000014070d83d56e412d6ac208d5591de90c91d9b66ed3ba9b0a316798382cb3b924d87000000000000000000000000ceb726e6383468dd8ac0b513c8330cc9fb4024a800000000000000000000000000000000000000000000000000000000000000215a6f6d626965205a656272617320436f6d6963204973737565203220436f7665720000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000065a5a433032430000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002468747470733a2f2f6d657461646174612e7a6f6d626965636f6d6963732e696f2f32632f00000000000000000000000000000000000000000000000000000000
-----Decoded View---------------
Arg [0] : _name (string): Zombie Zebras Comic Issue 2 Cover
Arg [1] : _symbol (string): ZZC02C
Arg [2] : _initURI (string): https://metadata.zombiecomics.io/2c/
Arg [3] : _merkleRoot (bytes32): 0x70d83d56e412d6ac208d5591de90c91d9b66ed3ba9b0a316798382cb3b924d87
Arg [4] : _tokenAddress (address): 0xceb726e6383468dD8AC0b513c8330CC9Fb4024a8
-----Encoded View---------------
13 Constructor Arguments found :
Arg [0] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000100
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000140
Arg [3] : 70d83d56e412d6ac208d5591de90c91d9b66ed3ba9b0a316798382cb3b924d87
Arg [4] : 000000000000000000000000ceb726e6383468dd8ac0b513c8330cc9fb4024a8
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000021
Arg [6] : 5a6f6d626965205a656272617320436f6d6963204973737565203220436f7665
Arg [7] : 7200000000000000000000000000000000000000000000000000000000000000
Arg [8] : 0000000000000000000000000000000000000000000000000000000000000006
Arg [9] : 5a5a433032430000000000000000000000000000000000000000000000000000
Arg [10] : 0000000000000000000000000000000000000000000000000000000000000024
Arg [11] : 68747470733a2f2f6d657461646174612e7a6f6d626965636f6d6963732e696f
Arg [12] : 2f32632f00000000000000000000000000000000000000000000000000000000
Deployed Bytecode Sourcemap
46518:5184:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33417:372;;;;;;;;;;-1:-1:-1;33417:372:0;;;;;:::i;:::-;;:::i;:::-;;;11643:14:1;;11636:22;11618:41;;11606:2;11591:18;33417:372:0;;;;;;;;46811:31;;;;;;;;;;;;;;;;;;;11816:25:1;;;11804:2;11789:18;46811:31:0;11670:177:1;35176:100:0;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;36653:204::-;;;;;;;;;;-1:-1:-1;36653:204:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;9645:32:1;;;9627:51;;9615:2;9600:18;36653:204:0;9481:203:1;36242:345:0;;;;;;;;;;-1:-1:-1;36242:345:0;;;;;:::i;:::-;;:::i;:::-;;46582:36;;;;;;;;;;;;;;;;31684:101;;;;;;;;;;-1:-1:-1;31737:7:0;31764:13;31684:101;;37510:170;;;;;;;;;;-1:-1:-1;37510:170:0;;;;;:::i;:::-;;:::i;46669:29::-;;;;;;;;;;;;;;;;47000:25;;;;;;;;;;;;;;;;32338:1007;;;;;;;;;;-1:-1:-1;32338:1007:0;;;;;:::i;:::-;;:::i;46958:33::-;;;;;;;;;;-1:-1:-1;46958:33:0;;;;-1:-1:-1;;;46958:33:0;;;;;;50760:96;;;;;;;;;;-1:-1:-1;50760:96:0;;;;;:::i;:::-;;:::i;50864:357::-;;;;;;;;;;;;;:::i;47831:310::-;;;;;;:::i;:::-;;:::i;37751:185::-;;;;;;;;;;-1:-1:-1;37751:185:0;;;;;:::i;:::-;;:::i;49676:179::-;;;;;;;;;;-1:-1:-1;49676:179:0;;;;;:::i;:::-;;:::i;31862:176::-;;;;;;;;;;-1:-1:-1;31862:176:0;;;;;:::i;:::-;;:::i;51229:104::-;;;;;;;;;;-1:-1:-1;51229:104:0;;;;;:::i;:::-;;:::i;34985:124::-;;;;;;;;;;-1:-1:-1;34985:124:0;;;;;:::i;:::-;;:::i;49063:605::-;;;;;;;;;;-1:-1:-1;49063:605:0;;;;;:::i;:::-;;:::i;47069:53::-;;;;;;;;;;-1:-1:-1;47069:53:0;;;;;:::i;:::-;;;;;;;;;;;;;;47034:26;;;;;;;;;;;;;:::i;33853:206::-;;;;;;;;;;-1:-1:-1;33853:206:0;;;;;:::i;:::-;;:::i;10174:103::-;;;;;;;;;;;;;:::i;50455:85::-;;;;;;;;;;;;;:::i;51595:104::-;;;;;;;;;;-1:-1:-1;51595:104:0;;;;;:::i;:::-;;:::i;50548:100::-;;;;;;;;;;;;;:::i;50656:96::-;;;;;;;;;;-1:-1:-1;50656:96:0;;;;;:::i;:::-;;:::i;50365:82::-;;;;;;;;;;;;;:::i;49863:494::-;;;;;;;;;;-1:-1:-1;49863:494:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;9523:87::-;;;;;;;;;;-1:-1:-1;9596:6:0;;-1:-1:-1;;;;;9596:6:0;9523:87;;35345:104;;;;;;;;;;;;;:::i;46885:28::-;;;;;;;;;;-1:-1:-1;46885:28:0;;;;-1:-1:-1;;;46885:28:0;;;;;;46849:27;;;;;;;;;;-1:-1:-1;46849:27:0;;;;-1:-1:-1;;;;;46849:27:0;;;36929:279;;;;;;;;;;-1:-1:-1;36929:279:0;;;;;:::i;:::-;;:::i;48149:906::-;;;;;;;;;;-1:-1:-1;48149:906:0;;;;;:::i;:::-;;:::i;46775:27::-;;;;;;;;;;;;;;;;38007:308;;;;;;;;;;-1:-1:-1;38007:308:0;;;;;:::i;:::-;;:::i;35520:318::-;;;;;;;;;;-1:-1:-1;35520:318:0;;;;;:::i;:::-;;:::i;46740:28::-;;;;;;;;;;;;;;;;46625:35;;;;;;;;;;;;;;;;51457:130;;;;;;;;;;;;;:::i;46920:29::-;;;;;;;;;;-1:-1:-1;46920:29:0;;;;-1:-1:-1;;;46920:29:0;;;;;;37279:164;;;;;;;;;;-1:-1:-1;37279:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;37400:25:0;;;37376:4;37400:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;37279:164;10432:201;;;;;;;;;;-1:-1:-1;10432:201:0;;;;;:::i;:::-;;:::i;46705:28::-;;;;;;;;;;;;;;;;33417:372;33519:4;-1:-1:-1;;;;;;33556:40:0;;-1:-1:-1;;;33556:40:0;;:105;;-1:-1:-1;;;;;;;33613:48:0;;-1:-1:-1;;;33613:48:0;33556:105;:172;;;-1:-1:-1;;;;;;;33678:50:0;;-1:-1:-1;;;33678:50:0;33556:172;:225;;;-1:-1:-1;;;;;;;;;;22439:40:0;;;33745:36;33536:245;33417:372;-1:-1:-1;;33417:372:0:o;35176:100::-;35230:13;35263:5;35256:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35176:100;:::o;36653:204::-;36721:7;36746:16;36754:7;38627:4;38661:13;-1:-1:-1;38651:23:0;38570:112;36746:16;36741:64;;36771:34;;-1:-1:-1;;;36771:34:0;;;;;;;;;;;36741:64;-1:-1:-1;36825:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;36825:24:0;;36653:204::o;36242:345::-;36315:13;36331:24;36347:7;36331:15;:24::i;:::-;36315:40;;36376:5;-1:-1:-1;;;;;36370:11:0;:2;-1:-1:-1;;;;;36370:11:0;;36366:48;;;36390:24;;-1:-1:-1;;;36390:24:0;;;;;;;;;;;36366:48;8327:10;-1:-1:-1;;;;;36431:21:0;;;;;;:63;;-1:-1:-1;36457:37:0;36474:5;8327:10;37279:164;:::i;36457:37::-;36456:38;36431:63;36427:111;;;36503:35;;-1:-1:-1;;;36503:35:0;;;;;;;;;;;36427:111;36551:28;36560:2;36564:7;36573:5;36551:8;:28::i;:::-;36304:283;36242:345;;:::o;37510:170::-;37644:28;37654:4;37660:2;37664:7;37644:9;:28::i;32338:1007::-;32427:7;32460:16;32470:5;32460:9;:16::i;:::-;32451:5;:25;32447:61;;32485:23;;-1:-1:-1;;;32485:23:0;;;;;;;;;;;32447:61;32519:22;31764:13;;;32519:22;;32782:466;32802:14;32798:1;:18;32782:466;;;32842:31;32876:14;;;:11;:14;;;;;;;;;32842:48;;;;;;;;;-1:-1:-1;;;;;32842:48:0;;;;;-1:-1:-1;;;32842:48:0;;;-1:-1:-1;;;;;32842:48:0;;;;;;;;32913:28;32909:111;;32986:14;;;-1:-1:-1;32909:111:0;33063:5;-1:-1:-1;;;;;33042:26:0;:17;-1:-1:-1;;;;;33042:26:0;;33038:195;;;33112:5;33097:11;:20;33093:85;;;-1:-1:-1;33153:1:0;-1:-1:-1;33146:8:0;;-1:-1:-1;;;33146:8:0;33093:85;33200:13;;;;;33038:195;-1:-1:-1;32818:3:0;;32782:466;;;-1:-1:-1;33324:13:0;;:::i;:::-;32436:909;;;32338:1007;;;;:::o;50760:96::-;9596:6;;-1:-1:-1;;;;;9596:6:0;8327:10;9743:23;9735:68;;;;-1:-1:-1;;;9735:68:0;;;;;;;:::i;:::-;;;;;;;;;50828:8:::1;:20:::0;50760:96::o;50864:357::-;9596:6;;-1:-1:-1;;;;;9596:6:0;8327:10;9743:23;9735:68;;;;-1:-1:-1;;;9735:68:0;;;;;;;:::i;:::-;50932:84:::1;::::0;50913:13:::1;::::0;8327:10;;50980:21:::1;::::0;50913:13;50932:84;50913:13;50932:84;50980:21;8327:10;50932:84:::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50912:104;;;51035:8;51027:48;;;::::0;-1:-1:-1;;;51027:48:0;;14812:2:1;51027:48:0::1;::::0;::::1;14794:21:1::0;14851:2;14831:18;;;14824:30;14890:29;14870:18;;;14863:57;14937:18;;51027:48:0::1;14610:351:1::0;51027:48:0::1;51093:12;::::0;-1:-1:-1;;;;;51093:12:0::1;51086:29;8327:10:::0;51164:12:::1;::::0;51157:45:::1;::::0;-1:-1:-1;;;51157:45:0;;51196:4:::1;51157:45;::::0;::::1;9627:51:1::0;-1:-1:-1;;;;;51164:12:0;;::::1;::::0;51157:30:::1;::::0;9600:18:1;;51157:45:0::1;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;51086:127;::::0;-1:-1:-1;;;;;;51086:127:0::1;::::0;;;;;;-1:-1:-1;;;;;10754:32:1;;;51086:127:0::1;::::0;::::1;10736:51:1::0;10803:18;;;10796:34;10709:18;;51086:127:0::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;50901:320;50864:357::o:0;47831:310::-;47909:8;;-1:-1:-1;;;47909:8:0;;;;:16;;47921:4;47909:16;47901:52;;;;-1:-1:-1;;;47901:52:0;;15523:2:1;47901:52:0;;;15505:21:1;15562:2;15542:18;;;15535:30;-1:-1:-1;;;15581:18:1;;;15574:53;15644:18;;47901:52:0;15321:347:1;47901:52:0;47983:9;;47972:7;:20;;47964:57;;;;-1:-1:-1;;;47964:57:0;;12278:2:1;47964:57:0;;;12260:21:1;12317:2;12297:18;;;12290:30;-1:-1:-1;;;12336:18:1;;;12329:54;12400:18;;47964:57:0;12076:348:1;47964:57:0;48064:7;48053:8;;:18;;;;:::i;:::-;48040:9;:31;48032:71;;;;-1:-1:-1;;;48032:71:0;;14456:2:1;48032:71:0;;;14438:21:1;14495:2;14475:18;;;14468:30;14534:29;14514:18;;;14507:57;14581:18;;48032:71:0;14254:351:1;48032:71:0;48114:19;48120:3;48125:7;48114:5;:19::i;37751:185::-;37889:39;37906:4;37912:2;37916:7;37889:39;;;;;;;;;;;;:16;:39::i;49676:179::-;49786:7;49818:21;49832:6;49818:13;:21::i;:::-;49840:6;49818:29;;;;;;;;:::i;:::-;;;;;;;49811:36;;49676:179;;;;:::o;31862:176::-;31929:7;31764:13;;31953:5;:22;31949:58;;31984:23;;-1:-1:-1;;;31984:23:0;;;;;;;;;;;31949:58;-1:-1:-1;32025:5:0;31862:176::o;51229:104::-;9596:6;;-1:-1:-1;;;;;9596:6:0;8327:10;9743:23;9735:68;;;;-1:-1:-1;;;9735:68:0;;;;;;;:::i;:::-;51304:21;;::::1;::::0;:7:::1;::::0;:21:::1;::::0;::::1;::::0;::::1;:::i;34985:124::-:0;35049:7;35076:20;35088:7;35076:11;:20::i;:::-;:25;;34985:124;-1:-1:-1;;34985:124:0:o;49063:605::-;9596:6;;-1:-1:-1;;;;;9596:6:0;8327:10;9743:23;9735:68;;;;-1:-1:-1;;;9735:68:0;;;;;;;:::i;:::-;49201:7:::1;:14;49187:3;:10;:28;49179:69;;;::::0;-1:-1:-1;;;49179:69:0;;15875:2:1;49179:69:0::1;::::0;::::1;15857:21:1::0;15914:2;15894:18;;;15887:30;15953;15933:18;;;15926:58;16001:18;;49179:69:0::1;15673:352:1::0;49179:69:0::1;49264:9;49259:402;49283:3;:10;49279:1;:14;49259:402;;;49371:8;;49357:7;49365:1;49357:10;;;;;;;;:::i;:::-;;;;;;;49341:13;31737:7:::0;31764:13;;31684:101;49341:13:::1;:26;;;;:::i;:::-;:38;;49315:120;;;::::0;-1:-1:-1;;;49315:120:0;;13390:2:1;49315:120:0::1;::::0;::::1;13372:21:1::0;13429:2;13409:18;;;13402:30;-1:-1:-1;;;13448:18:1;;;13441:50;13508:18;;49315:120:0::1;13188:344:1::0;49315:120:0::1;49450:29;49460:3;49464:1;49460:6;;;;;;;;:::i;:::-;;;;;;;49468:7;49476:1;49468:10;;;;;;;;:::i;:::-;;;;;;;49450:9;:29::i;:::-;49511:1;49500:8;;:12;:38;;;;;49528:7;49536:1;49528:10;;;;;;;;:::i;:::-;;;;;;;49516:8;;:22;;49500:38;49496:154;;;49571:7;49579:1;49571:10;;;;;;;;:::i;:::-;;;;;;;49559:8;;:22;;;;;;;:::i;:::-;::::0;;;-1:-1:-1;49496:154:0::1;::::0;-1:-1:-1;49496:154:0::1;;49633:1;49622:8;:12:::0;49496:154:::1;49295:3:::0;::::1;::::0;::::1;:::i;:::-;;;;49259:402;;47034:26:::0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;33853:206::-;33917:7;-1:-1:-1;;;;;33941:19:0;;33937:60;;33969:28;;-1:-1:-1;;;33969:28:0;;;;;;;;;;;33937:60;-1:-1:-1;;;;;;34023:19:0;;;;;:12;:19;;;;;:27;-1:-1:-1;;;;;34023:27:0;;33853:206::o;10174:103::-;9596:6;;-1:-1:-1;;;;;9596:6:0;8327:10;9743:23;9735:68;;;;-1:-1:-1;;;9735:68:0;;;;;;;:::i;:::-;10239:30:::1;10266:1;10239:18;:30::i;:::-;10174:103::o:0;50455:85::-;9596:6;;-1:-1:-1;;;;;9596:6:0;8327:10;9743:23;9735:68;;;;-1:-1:-1;;;9735:68:0;;;;;;;:::i;:::-;50523:9:::1;::::0;;-1:-1:-1;;;;50510:22:0;::::1;-1:-1:-1::0;;;50523:9:0;;;::::1;;;50522:10;50510:22:::0;;::::1;;::::0;;50455:85::o;51595:104::-;9596:6;;-1:-1:-1;;;;;9596:6:0;8327:10;9743:23;9735:68;;;;-1:-1:-1;;;9735:68:0;;;;;;;:::i;:::-;51667:10:::1;:24:::0;51595:104::o;50548:100::-;9596:6;;-1:-1:-1;;;;;9596:6:0;8327:10;9743:23;9735:68;;;;-1:-1:-1;;;9735:68:0;;;;;;;:::i;:::-;50626:14:::1;::::0;;-1:-1:-1;;;;50608:32:0;::::1;-1:-1:-1::0;;;50626:14:0;;;::::1;;;50625:15;50608:32:::0;;::::1;;::::0;;50548:100::o;50656:96::-;9596:6;;-1:-1:-1;;;;;9596:6:0;8327:10;9743:23;9735:68;;;;-1:-1:-1;;;9735:68:0;;;;;;;:::i;:::-;50724:8:::1;:20:::0;50656:96::o;50365:82::-;9596:6;;-1:-1:-1;;;;;9596:6:0;8327:10;9743:23;9735:68;;;;-1:-1:-1;;;9735:68:0;;;;;;;:::i;:::-;50431:8:::1;::::0;;-1:-1:-1;;;;50419:20:0;::::1;-1:-1:-1::0;;;50431:8:0;;;::::1;;;50430:9;50419:20:::0;;::::1;;::::0;;50365:82::o;49863:494::-;49950:16;49984:19;50006:17;50016:6;50006:9;:17::i;:::-;49984:39;;50034:26;50077:11;-1:-1:-1;;;;;50063:26:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;50063:26:0;;50034:55;;50100:19;50139:9;50134:189;31737:7;31764:13;50154:1;:17;50134:189;;;50211:6;-1:-1:-1;;;;;50197:20:0;:10;50205:1;50197:7;:10::i;:::-;-1:-1:-1;;;;;50197:20:0;;50193:119;;;50263:1;50238:9;50248:11;50238:22;;;;;;;;:::i;:::-;;;;;;;;;;:26;50283:13;;;;:::i;:::-;;;;50193:119;50173:3;;;;:::i;:::-;;;;50134:189;;;-1:-1:-1;50340:9:0;;49863:494;-1:-1:-1;;;;49863:494:0:o;35345:104::-;35401:13;35434:7;35427:14;;;;;:::i;36929:279::-;-1:-1:-1;;;;;37020:24:0;;8327:10;37020:24;37016:54;;;37053:17;;-1:-1:-1;;;37053:17:0;;;;;;;;;;;37016:54;8327:10;37083:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;37083:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;37083:53:0;;;;;;;;;;37152:48;;11618:41:1;;;37083:42:0;;8327:10;37152:48;;11591:18:1;37152:48:0;;;;;;;36929:279;;:::o;48149:906::-;48237:9;;-1:-1:-1;;;48237:9:0;;;;:17;;48250:4;48237:17;48229:53;;;;-1:-1:-1;;;48229:53:0;;15523:2:1;48229:53:0;;;15505:21:1;15562:2;15542:18;;;15535:30;-1:-1:-1;;;15581:18:1;;;15574:53;15644:18;;48229:53:0;15321:347:1;48229:53:0;48312:8;;48301:7;:19;;48293:56;;;;-1:-1:-1;;;48293:56:0;;12278:2:1;48293:56:0;;;12260:21:1;12317:2;12297:18;;;12290:30;-1:-1:-1;;;12336:18:1;;;12329:54;12400:18;;48293:56:0;12076:348:1;48293:56:0;48364:14;;-1:-1:-1;;;48364:14:0;;;;48360:452;;;48421:162;48462:5;;48421:162;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;48490:10:0;;48533:30;;-1:-1:-1;;8327:10:0;7475:2:1;7471:15;7467:53;48533:30:0;;;7455:66:1;48490:10:0;;-1:-1:-1;7537:12:1;;;-1:-1:-1;48533:30:0;;;;;;;;;;;;48523:41;;;;;;48421:18;:162::i;:::-;48395:251;;;;-1:-1:-1;;;48395:251:0;;13739:2:1;48395:251:0;;;13721:21:1;13778:2;13758:18;;;13751:30;13817:29;13797:18;;;13790:57;13864:18;;48395:251:0;13537:351:1;48395:251:0;48733:8;;8327:10;48687:32;;;;:18;:32;;;;;;:42;;48722:7;;48687:42;:::i;:::-;:54;;48661:139;;;;-1:-1:-1;;;48661:139:0;;12631:2:1;48661:139:0;;;12613:21:1;12670:2;12650:18;;;12643:30;12709:25;12689:18;;;12682:53;12752:18;;48661:139:0;12429:347:1;48661:139:0;48829:12;;-1:-1:-1;;;;;48829:12:0;48822:33;8327:10;48905:4;48936:7;48925:8;;:18;;;;:::i;:::-;48822:132;;-1:-1:-1;;;;;;48822:132:0;;;;;;;-1:-1:-1;;;;;9947:15:1;;;48822:132:0;;;9929:34:1;9999:15;;;;9979:18;;;9972:43;10031:18;;;10024:34;9864:18;;48822:132:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1;48965:28:0;8327:10;48985:7;48965:5;:28::i;:::-;8327:10;49004:32;;;;:18;:32;;;;;:43;;49040:7;;49004:32;:43;;49040:7;;49004:43;:::i;:::-;;;;-1:-1:-1;;;;;48149:906:0:o;38007:308::-;38166:28;38176:4;38182:2;38186:7;38166:9;:28::i;:::-;38210:48;38233:4;38239:2;38243:7;38252:5;38210:22;:48::i;:::-;38205:102;;38267:40;;-1:-1:-1;;;38267:40:0;;;;;;;;;;;38205:102;38007:308;;;;:::o;35520:318::-;35593:13;35624:16;35632:7;38627:4;38661:13;-1:-1:-1;38651:23:0;38570:112;35624:16;35619:59;;35649:29;;-1:-1:-1;;;35649:29:0;;;;;;;;;;;35619:59;35691:21;35715:10;:8;:10::i;:::-;35691:34;;35749:7;35743:21;35768:1;35743:26;;:87;;;;;;;;;;;;;;;;;35796:7;35805:18;:7;:16;:18::i;:::-;35779:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;35743:87;35736:94;35520:318;-1:-1:-1;;;35520:318:0:o;51457:130::-;51501:13;51558:7;51541:37;;;;;;;;:::i;:::-;;;;;;;;;;;;;51527:52;;51457:130;:::o;10432:201::-;9596:6;;-1:-1:-1;;;;;9596:6:0;8327:10;9743:23;9735:68;;;;-1:-1:-1;;;9735:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;10521:22:0;::::1;10513:73;;;::::0;-1:-1:-1;;;10513:73:0;;12983:2:1;10513:73:0::1;::::0;::::1;12965:21:1::0;13022:2;13002:18;;;12995:30;13061:34;13041:18;;;13034:62;-1:-1:-1;;;13112:18:1;;;13105:36;13158:19;;10513:73:0::1;12781:402:1::0;10513:73:0::1;10597:28;10616:8;10597:18;:28::i;:::-;10432:201:::0;:::o;43333:196::-;43448:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;43448:29:0;-1:-1:-1;;;;;43448:29:0;;;;;;;;;43493:28;;43448:24;;43493:28;;;;;;;43333:196;;;:::o;41253:1962::-;41368:35;41406:20;41418:7;41406:11;:20::i;:::-;41481:18;;41368:58;;-1:-1:-1;41439:22:0;;-1:-1:-1;;;;;41465:34:0;8327:10;-1:-1:-1;;;;;41465:34:0;;:101;;;-1:-1:-1;41533:18:0;;41516:50;;8327:10;37279:164;:::i;41516:50::-;41465:154;;;-1:-1:-1;8327:10:0;41583:20;41595:7;41583:11;:20::i;:::-;-1:-1:-1;;;;;41583:36:0;;41465:154;41439:181;;41638:17;41633:66;;41664:35;;-1:-1:-1;;;41664:35:0;;;;;;;;;;;41633:66;41736:4;-1:-1:-1;;;;;41714:26:0;:13;:18;;;-1:-1:-1;;;;;41714:26:0;;41710:67;;41749:28;;-1:-1:-1;;;41749:28:0;;;;;;;;;;;41710:67;-1:-1:-1;;;;;41792:16:0;;41788:52;;41817:23;;-1:-1:-1;;;41817:23:0;;;;;;;;;;;41788:52;41961:49;41978:1;41982:7;41991:13;:18;;;41961:8;:49::i;:::-;-1:-1:-1;;;;;42306:18:0;;;;;;;:12;:18;;;;;;;;:31;;-1:-1:-1;;;;;;42306:31:0;;;-1:-1:-1;;;;;42306:31:0;;;-1:-1:-1;;42306:31:0;;;;;;;42352:16;;;;;;;;;:29;;;;;;;;-1:-1:-1;42352:29:0;;;;;;;;;;;;;42398:20;;;:11;:20;;;;;;:30;;-1:-1:-1;;;;;;42443:61:0;;;;-1:-1:-1;;;42488:15:0;-1:-1:-1;;;;;42443:61:0;;;;;42778:11;;;42808:24;;;;;:29;42778:11;;42808:29;42804:295;;42876:20;42884:11;38627:4;38661:13;-1:-1:-1;38651:23:0;38570:112;42876:20;42872:212;;;42953:18;;;42921:24;;;:11;:24;;;;;;;;:50;;43036:28;;;;-1:-1:-1;;;;;42994:70:0;-1:-1:-1;;;42994:70:0;-1:-1:-1;;;;;;42994:70:0;;;-1:-1:-1;;;;;42921:50:0;;;42994:70;;;;;;;42872:212;42281:829;43146:7;43142:2;-1:-1:-1;;;;;43127:27:0;43136:4;-1:-1:-1;;;;;43127:27:0;;;;;;;;;;;43165:42;41357:1858;;41253:1962;;;:::o;47450:373::-;47523:9;47536:10;47523:23;47515:62;;;;-1:-1:-1;;;47515:62:0;;15168:2:1;47515:62:0;;;15150:21:1;15207:2;15187:18;;;15180:30;15246:28;15226:18;;;15219:56;15292:18;;47515:62:0;14966:350:1;47515:62:0;47588:19;47631:12;;47621:7;:22;;;;:::i;:::-;47610:34;;:7;:34;:::i;:::-;47588:56;;47720:8;;47709;;:19;;;;:::i;:::-;47693:11;47677:13;31737:7;31764:13;;31684:101;47677:13;:27;;;;:::i;:::-;:52;;47655:122;;;;-1:-1:-1;;;47655:122:0;;13390:2:1;47655:122:0;;;13372:21:1;13429:2;13409:18;;;13402:30;-1:-1:-1;;;13448:18:1;;;13441:50;13508:18;;47655:122:0;13188:344:1;47655:122:0;47788:27;47798:3;47803:11;47788:9;:27::i;34476:447::-;-1:-1:-1;;;;;;;;;;;;;;;;;34576:16:0;34584:7;38627:4;38661:13;-1:-1:-1;38651:23:0;38570:112;34576:16;34571:61;;34601:31;;-1:-1:-1;;;34601:31:0;;;;;;;;;;;34571:61;34690:7;34670:235;34727:31;34761:17;;;:11;:17;;;;;;;;;34727:51;;;;;;;;;-1:-1:-1;;;;;34727:51:0;;;;;-1:-1:-1;;;34727:51:0;;;-1:-1:-1;;;;;34727:51:0;;;;;;;;34801:28;34797:93;;34861:9;34476:447;-1:-1:-1;;;34476:447:0:o;34797:93::-;-1:-1:-1;;;34700:6:0;34670:235;;38690:104;38759:27;38769:2;38773:8;38759:27;;;;;;;;;;;;:9;:27::i;10793:191::-;10886:6;;;-1:-1:-1;;;;;10903:17:0;;;-1:-1:-1;;;;;;10903:17:0;;;;;;;10936:40;;10886:6;;;10903:17;10886:6;;10936:40;;10867:16;;10936:40;10856:128;10793:191;:::o;1220:190::-;1345:4;1398;1369:25;1382:5;1389:4;1369:12;:25::i;:::-;:33;;1220:190;-1:-1:-1;;;;1220:190:0:o;44094:765::-;44249:4;-1:-1:-1;;;;;44270:13:0;;12519:19;:23;44266:586;;44306:72;;-1:-1:-1;;;44306:72:0;;-1:-1:-1;;;;;44306:36:0;;;;;:72;;8327:10;;44357:4;;44363:7;;44372:5;;44306:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;44306:72:0;;;;;;;;-1:-1:-1;;44306:72:0;;;;;;;;;;;;:::i;:::-;;;44302:495;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;44552:13:0;;44548:234;;44579:40;;-1:-1:-1;;;44579:40:0;;;;;;;;;;;44548:234;44732:6;44726:13;44717:6;44713:2;44709:15;44702:38;44302:495;-1:-1:-1;;;;;;44429:55:0;-1:-1:-1;;;44429:55:0;;-1:-1:-1;44422:62:0;;44266:586;-1:-1:-1;44836:4:0;44266:586;44094:765;;;;;;:::o;51341:108::-;51401:13;51434:7;51427:14;;;;;:::i;5809:723::-;5865:13;6086:10;6082:53;;-1:-1:-1;;6113:10:0;;;;;;;;;;;;-1:-1:-1;;;6113:10:0;;;;;5809:723::o;6082:53::-;6160:5;6145:12;6201:78;6208:9;;6201:78;;6234:8;;;;:::i;:::-;;-1:-1:-1;6257:10:0;;-1:-1:-1;6265:2:0;6257:10;;:::i;:::-;;;6201:78;;;6289:19;6321:6;-1:-1:-1;;;;;6311:17:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;6311:17:0;;6289:39;;6339:154;6346:10;;6339:154;;6373:11;6383:1;6373:11;;:::i;:::-;;-1:-1:-1;6442:10:0;6450:2;6442:5;:10;:::i;:::-;6429:24;;:2;:24;:::i;:::-;6416:39;;6399:6;6406;6399:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;6399:56:0;;;;;;;;-1:-1:-1;6470:11:0;6479:2;6470:11;;:::i;:::-;;;6339:154;;39157:163;39280:32;39286:2;39290:8;39300:5;39307:4;39280:5;:32::i;1771:675::-;1854:7;1897:4;1854:7;1912:497;1936:5;:12;1932:1;:16;1912:497;;;1970:20;1993:5;1999:1;1993:8;;;;;;;;:::i;:::-;;;;;;;1970:31;;2036:12;2020;:28;2016:382;;2522:13;2572:15;;;2608:4;2601:15;;;2655:4;2639:21;;2148:57;;2016:382;;;2522:13;2572:15;;;2608:4;2601:15;;;2655:4;2639:21;;2325:57;;2016:382;-1:-1:-1;1950:3:0;;;;:::i;:::-;;;;1912:497;;;-1:-1:-1;2426:12:0;1771:675;-1:-1:-1;;;1771:675:0:o;39579:1420::-;39718:20;39741:13;-1:-1:-1;;;;;39769:16:0;;39765:48;;39794:19;;-1:-1:-1;;;39794:19:0;;;;;;;;;;;39765:48;39828:13;39824:44;;39850:18;;-1:-1:-1;;;39850:18:0;;;;;;;;;;;39824:44;-1:-1:-1;;;;;40221:16:0;;;;;;:12;:16;;;;;;;;:45;;-1:-1:-1;;;;;;;;;40221:45:0;;-1:-1:-1;;;;;40221:45:0;;;;;;;;;;40281:50;;;;;;;;;;;;;;40348:25;;;:11;:25;;;;;:35;;-1:-1:-1;;;;;;40398:66:0;;;;-1:-1:-1;;;40448:15:0;-1:-1:-1;;;;;40398:66:0;;;;;;40348:25;;40533:330;40553:8;40549:1;:12;40533:330;;;40592:38;;40617:12;;-1:-1:-1;;;;;40592:38:0;;;40609:1;;40592:38;;40609:1;;40592:38;40653:4;:68;;;;;40662:59;40693:1;40697:2;40701:12;40715:5;40662:22;:59::i;:::-;40661:60;40653:68;40649:164;;;40753:40;;-1:-1:-1;;;40753:40:0;;;;;;;;;;;40649:164;40833:14;;;;;40563:3;40533:330;;;-1:-1:-1;40879:13:0;:28;40931:60;38007:308;-1:-1:-1;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14:406:1;78:5;-1:-1:-1;;;;;104:6:1;101:30;98:56;;;134:18;;:::i;:::-;172:57;217:2;196:15;;-1:-1:-1;;192:29:1;223:4;188:40;172:57;:::i;:::-;163:66;;252:6;245:5;238:21;292:3;283:6;278:3;274:16;271:25;268:45;;;309:1;306;299:12;268:45;358:6;353:3;346:4;339:5;335:16;322:43;412:1;405:4;396:6;389:5;385:18;381:29;374:40;14:406;;;;;:::o;425:173::-;493:20;;-1:-1:-1;;;;;542:31:1;;532:42;;522:70;;588:1;585;578:12;522:70;425:173;;;:::o;603:673::-;657:5;710:3;703:4;695:6;691:17;687:27;677:55;;728:1;725;718:12;677:55;764:6;751:20;790:4;814:60;830:43;870:2;830:43;:::i;:::-;814:60;:::i;:::-;896:3;920:2;915:3;908:15;948:2;943:3;939:12;932:19;;983:2;975:6;971:15;1035:3;1030:2;1024;1021:1;1017:10;1009:6;1005:23;1001:32;998:41;995:61;;;1052:1;1049;1042:12;995:61;1074:1;1084:163;1098:2;1095:1;1092:9;1084:163;;;1155:17;;1143:30;;1193:12;;;;1225;;;;1116:1;1109:9;1084:163;;;-1:-1:-1;1265:5:1;;603:673;-1:-1:-1;;;;;;;603:673:1:o;1281:186::-;1340:6;1393:2;1381:9;1372:7;1368:23;1364:32;1361:52;;;1409:1;1406;1399:12;1361:52;1432:29;1451:9;1432:29;:::i;1472:260::-;1540:6;1548;1601:2;1589:9;1580:7;1576:23;1572:32;1569:52;;;1617:1;1614;1607:12;1569:52;1640:29;1659:9;1640:29;:::i;:::-;1630:39;;1688:38;1722:2;1711:9;1707:18;1688:38;:::i;:::-;1678:48;;1472:260;;;;;:::o;1737:328::-;1814:6;1822;1830;1883:2;1871:9;1862:7;1858:23;1854:32;1851:52;;;1899:1;1896;1889:12;1851:52;1922:29;1941:9;1922:29;:::i;:::-;1912:39;;1970:38;2004:2;1993:9;1989:18;1970:38;:::i;:::-;1960:48;;2055:2;2044:9;2040:18;2027:32;2017:42;;1737:328;;;;;:::o;2070:666::-;2165:6;2173;2181;2189;2242:3;2230:9;2221:7;2217:23;2213:33;2210:53;;;2259:1;2256;2249:12;2210:53;2282:29;2301:9;2282:29;:::i;:::-;2272:39;;2330:38;2364:2;2353:9;2349:18;2330:38;:::i;:::-;2320:48;;2415:2;2404:9;2400:18;2387:32;2377:42;;2470:2;2459:9;2455:18;2442:32;-1:-1:-1;;;;;2489:6:1;2486:30;2483:50;;;2529:1;2526;2519:12;2483:50;2552:22;;2605:4;2597:13;;2593:27;-1:-1:-1;2583:55:1;;2634:1;2631;2624:12;2583:55;2657:73;2722:7;2717:2;2704:16;2699:2;2695;2691:11;2657:73;:::i;:::-;2647:83;;;2070:666;;;;;;;:::o;2741:315::-;2806:6;2814;2867:2;2855:9;2846:7;2842:23;2838:32;2835:52;;;2883:1;2880;2873:12;2835:52;2906:29;2925:9;2906:29;:::i;:::-;2896:39;;2985:2;2974:9;2970:18;2957:32;2998:28;3020:5;2998:28;:::i;:::-;3045:5;3035:15;;;2741:315;;;;;:::o;3061:254::-;3129:6;3137;3190:2;3178:9;3169:7;3165:23;3161:32;3158:52;;;3206:1;3203;3196:12;3158:52;3229:29;3248:9;3229:29;:::i;:::-;3219:39;3305:2;3290:18;;;;3277:32;;-1:-1:-1;;;3061:254:1:o;3320:1157::-;3438:6;3446;3499:2;3487:9;3478:7;3474:23;3470:32;3467:52;;;3515:1;3512;3505:12;3467:52;3555:9;3542:23;-1:-1:-1;;;;;3625:2:1;3617:6;3614:14;3611:34;;;3641:1;3638;3631:12;3611:34;3679:6;3668:9;3664:22;3654:32;;3724:7;3717:4;3713:2;3709:13;3705:27;3695:55;;3746:1;3743;3736:12;3695:55;3782:2;3769:16;3804:4;3828:60;3844:43;3884:2;3844:43;:::i;3828:60::-;3910:3;3934:2;3929:3;3922:15;3962:2;3957:3;3953:12;3946:19;;3993:2;3989;3985:11;4041:7;4036:2;4030;4027:1;4023:10;4019:2;4015:19;4011:28;4008:41;4005:61;;;4062:1;4059;4052:12;4005:61;4084:1;4075:10;;4094:169;4108:2;4105:1;4102:9;4094:169;;;4165:23;4184:3;4165:23;:::i;:::-;4153:36;;4126:1;4119:9;;;;;4209:12;;;;4241;;4094:169;;;-1:-1:-1;4282:5:1;-1:-1:-1;;4325:18:1;;4312:32;;-1:-1:-1;;4356:16:1;;;4353:36;;;4385:1;4382;4375:12;4353:36;;4408:63;4463:7;4452:8;4441:9;4437:24;4408:63;:::i;:::-;4398:73;;;3320:1157;;;;;:::o;4482:245::-;4549:6;4602:2;4590:9;4581:7;4577:23;4573:32;4570:52;;;4618:1;4615;4608:12;4570:52;4650:9;4644:16;4669:28;4691:5;4669:28;:::i;4732:180::-;4791:6;4844:2;4832:9;4823:7;4819:23;4815:32;4812:52;;;4860:1;4857;4850:12;4812:52;-1:-1:-1;4883:23:1;;4732:180;-1:-1:-1;4732:180:1:o;4917:245::-;4975:6;5028:2;5016:9;5007:7;5003:23;4999:32;4996:52;;;5044:1;5041;5034:12;4996:52;5083:9;5070:23;5102:30;5126:5;5102:30;:::i;5167:249::-;5236:6;5289:2;5277:9;5268:7;5264:23;5260:32;5257:52;;;5305:1;5302;5295:12;5257:52;5337:9;5331:16;5356:30;5380:5;5356:30;:::i;5421:450::-;5490:6;5543:2;5531:9;5522:7;5518:23;5514:32;5511:52;;;5559:1;5556;5549:12;5511:52;5599:9;5586:23;-1:-1:-1;;;;;5624:6:1;5621:30;5618:50;;;5664:1;5661;5654:12;5618:50;5687:22;;5740:4;5732:13;;5728:27;-1:-1:-1;5718:55:1;;5769:1;5766;5759:12;5718:55;5792:73;5857:7;5852:2;5839:16;5834:2;5830;5826:11;5792:73;:::i;6061:184::-;6131:6;6184:2;6172:9;6163:7;6159:23;6155:32;6152:52;;;6200:1;6197;6190:12;6152:52;-1:-1:-1;6223:16:1;;6061:184;-1:-1:-1;6061:184:1:o;6250:683::-;6345:6;6353;6361;6414:2;6402:9;6393:7;6389:23;6385:32;6382:52;;;6430:1;6427;6420:12;6382:52;6466:9;6453:23;6443:33;;6527:2;6516:9;6512:18;6499:32;-1:-1:-1;;;;;6591:2:1;6583:6;6580:14;6577:34;;;6607:1;6604;6597:12;6577:34;6645:6;6634:9;6630:22;6620:32;;6690:7;6683:4;6679:2;6675:13;6671:27;6661:55;;6712:1;6709;6702:12;6661:55;6752:2;6739:16;6778:2;6770:6;6767:14;6764:34;;;6794:1;6791;6784:12;6764:34;6847:7;6842:2;6832:6;6829:1;6825:14;6821:2;6817:23;6813:32;6810:45;6807:65;;;6868:1;6865;6858:12;6807:65;6899:2;6895;6891:11;6881:21;;6921:6;6911:16;;;;;6250:683;;;;;:::o;6938:257::-;6979:3;7017:5;7011:12;7044:6;7039:3;7032:19;7060:63;7116:6;7109:4;7104:3;7100:14;7093:4;7086:5;7082:16;7060:63;:::i;:::-;7177:2;7156:15;-1:-1:-1;;7152:29:1;7143:39;;;;7184:4;7139:50;;6938:257;-1:-1:-1;;6938:257:1:o;7560:470::-;7739:3;7777:6;7771:13;7793:53;7839:6;7834:3;7827:4;7819:6;7815:17;7793:53;:::i;:::-;7909:13;;7868:16;;;;7931:57;7909:13;7868:16;7965:4;7953:17;;7931:57;:::i;:::-;8004:20;;7560:470;-1:-1:-1;;;;7560:470:1:o;8035:1231::-;8264:3;8293:1;8326:6;8320:13;8356:3;8378:1;8406:9;8402:2;8398:18;8388:28;;8466:2;8455:9;8451:18;8488;8478:61;;8532:4;8524:6;8520:17;8510:27;;8478:61;8558:2;8606;8598:6;8595:14;8575:18;8572:38;8569:165;;;-1:-1:-1;;;8633:33:1;;8689:4;8686:1;8679:15;8719:4;8640:3;8707:17;8569:165;8750:18;8777:104;;;;8895:1;8890:320;;;;8743:467;;8777:104;-1:-1:-1;;8810:24:1;;8798:37;;8855:16;;;;-1:-1:-1;8777:104:1;;8890:320;16753:1;16746:14;;;16790:4;16777:18;;8985:1;8999:165;9013:6;9010:1;9007:13;8999:165;;;9091:14;;9078:11;;;9071:35;9134:16;;;;9028:10;;8999:165;;;9003:3;;9193:6;9188:3;9184:16;9177:23;;8743:467;;;;;;;9226:34;9256:3;-1:-1:-1;;;7265:23:1;;7313:1;7304:11;;7200:121;10069:488;-1:-1:-1;;;;;10338:15:1;;;10320:34;;10390:15;;10385:2;10370:18;;10363:43;10437:2;10422:18;;10415:34;;;10485:3;10480:2;10465:18;;10458:31;;;10263:4;;10506:45;;10531:19;;10523:6;10506:45;:::i;:::-;10498:53;10069:488;-1:-1:-1;;;;;;10069:488:1:o;10841:632::-;11012:2;11064:21;;;11134:13;;11037:18;;;11156:22;;;10983:4;;11012:2;11235:15;;;;11209:2;11194:18;;;10983:4;11278:169;11292:6;11289:1;11286:13;11278:169;;;11353:13;;11341:26;;11422:15;;;;11387:12;;;;11314:1;11307:9;11278:169;;;-1:-1:-1;11464:3:1;;10841:632;-1:-1:-1;;;;;;10841:632:1:o;11852:219::-;12001:2;11990:9;11983:21;11964:4;12021:44;12061:2;12050:9;12046:18;12038:6;12021:44;:::i;13893:356::-;14095:2;14077:21;;;14114:18;;;14107:30;14173:34;14168:2;14153:18;;14146:62;14240:2;14225:18;;13893:356::o;16212:275::-;16283:2;16277:9;16348:2;16329:13;;-1:-1:-1;;16325:27:1;16313:40;;-1:-1:-1;;;;;16368:34:1;;16404:22;;;16365:62;16362:88;;;16430:18;;:::i;:::-;16466:2;16459:22;16212:275;;-1:-1:-1;16212:275:1:o;16492:183::-;16552:4;-1:-1:-1;;;;;16577:6:1;16574:30;16571:56;;;16607:18;;:::i;:::-;-1:-1:-1;16652:1:1;16648:14;16664:4;16644:25;;16492:183::o;16806:128::-;16846:3;16877:1;16873:6;16870:1;16867:13;16864:39;;;16883:18;;:::i;:::-;-1:-1:-1;16919:9:1;;16806:128::o;16939:120::-;16979:1;17005;16995:35;;17010:18;;:::i;:::-;-1:-1:-1;17044:9:1;;16939:120::o;17064:168::-;17104:7;17170:1;17166;17162:6;17158:14;17155:1;17152:21;17147:1;17140:9;17133:17;17129:45;17126:71;;;17177:18;;:::i;:::-;-1:-1:-1;17217:9:1;;17064:168::o;17237:125::-;17277:4;17305:1;17302;17299:8;17296:34;;;17310:18;;:::i;:::-;-1:-1:-1;17347:9:1;;17237:125::o;17367:258::-;17439:1;17449:113;17463:6;17460:1;17457:13;17449:113;;;17539:11;;;17533:18;17520:11;;;17513:39;17485:2;17478:10;17449:113;;;17580:6;17577:1;17574:13;17571:48;;;-1:-1:-1;;17615:1:1;17597:16;;17590:27;17367:258::o;17630:380::-;17709:1;17705:12;;;;17752;;;17773:61;;17827:4;17819:6;17815:17;17805:27;;17773:61;17880:2;17872:6;17869:14;17849:18;17846:38;17843:161;;;17926:10;17921:3;17917:20;17914:1;17907:31;17961:4;17958:1;17951:15;17989:4;17986:1;17979:15;17843:161;;17630:380;;;:::o;18015:135::-;18054:3;-1:-1:-1;;18075:17:1;;18072:43;;;18095:18;;:::i;:::-;-1:-1:-1;18142:1:1;18131:13;;18015:135::o;18155:112::-;18187:1;18213;18203:35;;18218:18;;:::i;:::-;-1:-1:-1;18252:9:1;;18155:112::o;18272:127::-;18333:10;18328:3;18324:20;18321:1;18314:31;18364:4;18361:1;18354:15;18388:4;18385:1;18378:15;18404:127;18465:10;18460:3;18456:20;18453:1;18446:31;18496:4;18493:1;18486:15;18520:4;18517:1;18510:15;18536:127;18597:10;18592:3;18588:20;18585:1;18578:31;18628:4;18625:1;18618:15;18652:4;18649:1;18642:15;18668:127;18729:10;18724:3;18720:20;18717:1;18710:31;18760:4;18757:1;18750:15;18784:4;18781:1;18774:15;18800:127;18861:10;18856:3;18852:20;18849:1;18842:31;18892:4;18889:1;18882:15;18916:4;18913:1;18906:15;18932:118;19018:5;19011:13;19004:21;18997:5;18994:32;18984:60;;19040:1;19037;19030:12;19055:131;-1:-1:-1;;;;;;19129:32:1;;19119:43;;19109:71;;19176:1;19173;19166:12
Swarm Source
ipfs://278ee875d6a2e20f7ccd80e39fea461e2680c5356371e9e49ae0c1f13408606e
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.