ERC-721
Overview
Max Total Supply
74 TheCollectors
Holders
29
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
2 TheCollectorsLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
TheCollectors
Compiler Version
v0.8.6+commit.11564f7e
Optimization Enabled:
Yes with 1 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: MIT pragma solidity ^0.8.6; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/token/ERC721/ERC721.sol"; import "@openzeppelin/contracts/token/ERC1155/IERC1155.sol"; import "@openzeppelin/contracts/security/ReentrancyGuard.sol"; interface IPunk { function punkIndexToAddress(uint256 index) external view returns (address); } contract TheCollectors is ERC721, Ownable, ReentrancyGuard { struct EmbedInfo { address collection; uint256 tokenId; } uint256 public constant MAX_SUPPLY = 10000; IPunk public constant PUNK = IPunk(0xb47e3cd837dDF8e4c57F05d70Ab865de6e193BBB); mapping(address => IERC721) public erc721WhitelistedCollections; mapping(address => IERC1155) public erc1155WhitelistedCollections; mapping(uint256 => EmbedInfo) public embeddedTokensInfo; mapping(address => mapping(uint256 => bool)) public embeddedTokens; uint256 public endWhitelistMintingPeriodDateAndTime; address public signerPublicAddress; uint256 public totalSupply; bool public forceEndMinting; uint256 public maxMintsPerWhitelistedAddress; uint256 public maxMintsPerAddress; uint256 public mintFee; string private _baseTokenURI; mapping(uint256 => string) private _tokenURIs; event EmbedTokens(uint256 indexed theCollectorTokenId, address indexed embeddedCollection, uint256 indexed embeddedTokenId); // -------------------- Modifiers -------------------- modifier onlyInMintingPeriod { require(!mintingOver(), "Minting over"); _; } modifier includesMintFee(uint256 amountToMint) { require(msg.value >= mintFee * amountToMint, "<mint cost"); _; } // -------------------- Constructor -------------------- constructor( address _signerPublicAddress, uint256 _endWhitelistMintingPeriodDateAndTime, string memory __baseTokenURI ) ERC721("The Collectors", "TheCollectors") { signerPublicAddress = _signerPublicAddress; endWhitelistMintingPeriodDateAndTime = _endWhitelistMintingPeriodDateAndTime; _baseTokenURI = __baseTokenURI; maxMintsPerWhitelistedAddress = 10; maxMintsPerAddress = 10; mintFee = 0.08 ether; } // -------------------- Management -------------------- function addERC721WhitelistedCollections(address[] memory whitelistedCollectionsArray) external onlyOwner { for (uint256 i; i < whitelistedCollectionsArray.length; i++) { erc721WhitelistedCollections[whitelistedCollectionsArray[i]] = IERC721(whitelistedCollectionsArray[i]); } } function addERC1155WhitelistedCollections(address[] memory whitelistedCollectionsArray) external onlyOwner { for (uint256 i; i < whitelistedCollectionsArray.length; i++) { erc1155WhitelistedCollections[whitelistedCollectionsArray[i]] = IERC1155(whitelistedCollectionsArray[i]); } } function removeERC721WhitelistedCollection(address whitelistedCollection) external onlyOwner { delete erc721WhitelistedCollections[whitelistedCollection]; } function removeERC1155WhitelistedCollection(address whitelistedCollection) external onlyOwner { delete erc1155WhitelistedCollections[whitelistedCollection]; } function setMaxMintsPerWhitelistedAddress(uint256 _maxMintsPerWhitelistedAddress) external onlyOwner { maxMintsPerWhitelistedAddress = _maxMintsPerWhitelistedAddress; } function setMaxMintsPerAddress(uint256 _maxMintsPerAddress) external onlyOwner { maxMintsPerAddress = _maxMintsPerAddress; } function setForceEndMinting(bool _forceEndMinting) external onlyOwner { forceEndMinting = _forceEndMinting; } function setSignerPublicAddress(address _signerPublicAddress) external onlyOwner { signerPublicAddress = _signerPublicAddress; } function setEndWhitelistMintingPeriodDateAndTime(uint256 _endWhitelistMintingPeriodDateAndTime) external onlyOwner { endWhitelistMintingPeriodDateAndTime = _endWhitelistMintingPeriodDateAndTime; } function setBaseTokenURI(string memory __baseTokenURI) external onlyOwner { _baseTokenURI = __baseTokenURI; } function setMintFee(uint256 _mintFee) external onlyOwner { mintFee = _mintFee; } // -------------------- Mints -------------------- function mintTokenForWhitelistedAddresses(address whitelistAddress, uint8 v, bytes32 r, bytes32 s, uint256 amountToMint) external payable nonReentrant onlyInMintingPeriod includesMintFee(amountToMint) { require(endWhitelistMintingPeriodDateAndTime > block.timestamp, "Can't mint"); require(_validateSignature(keccak256(abi.encodePacked(whitelistAddress)), v, r, s) && whitelistAddress == msg.sender, "Nice try"); require(maxMintsPerWhitelistedAddress >= amountToMint, ">max"); uint256 i; // Since i can be lower than amountToMint after loop ends for ( ; i < amountToMint && MAX_SUPPLY > totalSupply; i++ ) { _mintNextToken(msg.sender); } uint256 mintingFee = i * mintFee; Address.sendValue(payable(owner()), mintingFee); if (msg.value - mintingFee > 0) { Address.sendValue(payable(msg.sender), msg.value - mintingFee); } } function mintToken(uint256 amountToMint) external payable nonReentrant onlyInMintingPeriod includesMintFee(amountToMint) { require(block.timestamp > endWhitelistMintingPeriodDateAndTime, "Only whitelist"); require(maxMintsPerAddress >= amountToMint, ">max"); uint256 i; // Since i can be lower than amountToMint after loop ends for ( ; i < amountToMint && MAX_SUPPLY > totalSupply; i++ ) { _mintNextToken(msg.sender); } uint256 mintingFee = i * mintFee; Address.sendValue(payable(owner()), mintingFee); if (msg.value - mintingFee > 0) { Address.sendValue(payable(msg.sender), msg.value - mintingFee); } } function embedToken( uint256 theCollectorsTokenId, address whitelistCollection, uint256 whitelistCollectionTokenId, string memory uri, string memory typeOfSignature, uint8 v, bytes32 r, bytes32 s ) external { require(_validateSignature(keccak256(abi.encodePacked(uri, typeOfSignature)), v, r, s), "Really?"); require(bytes(_tokenURIs[theCollectorsTokenId]).length == 0, "Already embedded"); require(ownerOf(theCollectorsTokenId) == msg.sender, "Not token owner"); require( address(erc721WhitelistedCollections[whitelistCollection]) != address(0) || address(erc1155WhitelistedCollections[whitelistCollection]) != address(0) || whitelistCollection == address(PUNK), "Bad collection" ); require( (whitelistCollection == address(PUNK) && PUNK.punkIndexToAddress(whitelistCollectionTokenId) == msg.sender) || (address(erc1155WhitelistedCollections[whitelistCollection]) != address(0) && erc1155WhitelistedCollections[whitelistCollection].balanceOf(msg.sender, whitelistCollectionTokenId) > 0) || erc721WhitelistedCollections[whitelistCollection].ownerOf(whitelistCollectionTokenId) == msg.sender, "Bad token owner" ); require(!wasTokenUsed(whitelistCollection, whitelistCollectionTokenId), "Already used"); embeddedTokensInfo[theCollectorsTokenId] = EmbedInfo(whitelistCollection, whitelistCollectionTokenId); embeddedTokens[whitelistCollection][whitelistCollectionTokenId] = true; _tokenURIs[theCollectorsTokenId] = uri; emit EmbedTokens(theCollectorsTokenId, whitelistCollection, whitelistCollectionTokenId); } // -------------------- Views -------------------- function wasTokenUsed(address collection, uint256 token) public view returns (bool) { return embeddedTokens[collection][token]; } function mintingOver() public view returns (bool) { return totalSupply == MAX_SUPPLY || forceEndMinting; } function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { require(_exists(tokenId), "URI query for nonexistent token"); if (bytes(_tokenURIs[tokenId]).length != 0) { return _tokenURIs[tokenId]; } else { string memory uri = super.tokenURI(tokenId); return string(abi.encodePacked(uri, ".json")); } } // -------------------- Internal -------------------- function _baseURI() internal view override returns (string memory) { return _baseTokenURI; } function _mintNextToken(address to) internal { _safeMint(to, totalSupply); totalSupply++; } function _validateSignature(bytes32 hashOfText, uint8 v, bytes32 r, bytes32 s) internal view returns (bool) { bytes memory prefix = "\x19Ethereum Signed Message:\n32"; bytes32 hashOfSignature = keccak256(abi.encodePacked(prefix, hashOfText)); return ecrecover(hashOfSignature, v, r, s) == signerPublicAddress; } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "../utils/Context.sol"; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _setOwner(_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 { _setOwner(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"); _setOwner(newOwner); } function _setOwner(address newOwner) private { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "./IERC721.sol"; import "./IERC721Receiver.sol"; import "./extensions/IERC721Metadata.sol"; import "../../utils/Address.sol"; import "../../utils/Context.sol"; import "../../utils/Strings.sol"; import "../../utils/introspection/ERC165.sol"; /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including * the Metadata extension, but not including the Enumerable extension, which is available separately as * {ERC721Enumerable}. */ contract ERC721 is Context, ERC165, IERC721, IERC721Metadata { using Address for address; using Strings for uint256; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to owner address mapping(uint256 => address) private _owners; // Mapping owner address to token count mapping(address => uint256) private _balances; // 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; /** * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @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 || super.supportsInterface(interfaceId); } /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address owner) public view virtual override returns (uint256) { require(owner != address(0), "ERC721: balance query for the zero address"); return _balances[owner]; } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view virtual override returns (address) { address owner = _owners[tokenId]; require(owner != address(0), "ERC721: owner query for nonexistent token"); return owner; } /** * @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) { require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token"); 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 virtual override { address owner = ERC721.ownerOf(tokenId); require(to != owner, "ERC721: approval to current owner"); require( _msgSender() == owner || isApprovedForAll(owner, _msgSender()), "ERC721: approve caller is not owner nor approved for all" ); _approve(to, tokenId); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view virtual override returns (address) { require(_exists(tokenId), "ERC721: approved query for nonexistent token"); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public virtual override { require(operator != _msgSender(), "ERC721: approve to caller"); _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 { //solhint-disable-next-line max-line-length require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved"); _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 virtual override { require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved"); _safeTransfer(from, to, tokenId, _data); } /** * @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. * * `_data` is additional data, it has no specified format and it is sent in call to `to`. * * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g. * implement alternative mechanisms to perform token transfer, such as signature-based. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeTransfer( address from, address to, uint256 tokenId, bytes memory _data ) internal virtual { _transfer(from, to, tokenId); require(_checkOnERC721Received(from, to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer"); } /** * @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`), * and stop existing when they are burned (`_burn`). */ function _exists(uint256 tokenId) internal view virtual returns (bool) { return _owners[tokenId] != address(0); } /** * @dev Returns whether `spender` is allowed to manage `tokenId`. * * Requirements: * * - `tokenId` must exist. */ function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) { require(_exists(tokenId), "ERC721: operator query for nonexistent token"); address owner = ERC721.ownerOf(tokenId); return (spender == owner || getApproved(tokenId) == spender || isApprovedForAll(owner, spender)); } /** * @dev Safely mints `tokenId` and transfers it to `to`. * * Requirements: * * - `tokenId` must not exist. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeMint(address to, uint256 tokenId) internal virtual { _safeMint(to, tokenId, ""); } /** * @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is * forwarded in {IERC721Receiver-onERC721Received} to contract recipients. */ function _safeMint( address to, uint256 tokenId, bytes memory _data ) internal virtual { _mint(to, tokenId); require( _checkOnERC721Received(address(0), to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer" ); } /** * @dev Mints `tokenId` and transfers it to `to`. * * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible * * Requirements: * * - `tokenId` must not exist. * - `to` cannot be the zero address. * * Emits a {Transfer} event. */ function _mint(address to, uint256 tokenId) internal virtual { require(to != address(0), "ERC721: mint to the zero address"); require(!_exists(tokenId), "ERC721: token already minted"); _beforeTokenTransfer(address(0), to, tokenId); _balances[to] += 1; _owners[tokenId] = to; emit Transfer(address(0), to, tokenId); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId) internal virtual { address owner = ERC721.ownerOf(tokenId); _beforeTokenTransfer(owner, address(0), tokenId); // Clear approvals _approve(address(0), tokenId); _balances[owner] -= 1; delete _owners[tokenId]; emit Transfer(owner, address(0), tokenId); } /** * @dev Transfers `tokenId` from `from` to `to`. * As opposed to {transferFrom}, this imposes no restrictions on msg.sender. * * 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 ) internal virtual { require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer of token that is not own"); require(to != address(0), "ERC721: transfer to the zero address"); _beforeTokenTransfer(from, to, tokenId); // Clear approvals from the previous owner _approve(address(0), tokenId); _balances[from] -= 1; _balances[to] += 1; _owners[tokenId] = to; emit Transfer(from, to, tokenId); } /** * @dev Approve `to` to operate on `tokenId` * * Emits a {Approval} event. */ function _approve(address to, uint256 tokenId) internal virtual { _tokenApprovals[tokenId] = to; emit Approval(ERC721.ownerOf(tokenId), 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.onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert("ERC721: transfer to non ERC721Receiver implementer"); } else { assembly { revert(add(32, reason), mload(reason)) } } } } else { return true; } } /** * @dev Hook that is called before any token transfer. This includes minting * and burning. * * 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`. * - When `to` is zero, ``from``'s `tokenId` will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 tokenId ) internal virtual {} }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "../../utils/introspection/IERC165.sol"; /** * @dev Required interface of an ERC1155 compliant contract, as defined in the * https://eips.ethereum.org/EIPS/eip-1155[EIP]. * * _Available since v3.1._ */ interface IERC1155 is IERC165 { /** * @dev Emitted when `value` tokens of token type `id` are transferred from `from` to `to` by `operator`. */ event TransferSingle(address indexed operator, address indexed from, address indexed to, uint256 id, uint256 value); /** * @dev Equivalent to multiple {TransferSingle} events, where `operator`, `from` and `to` are the same for all * transfers. */ event TransferBatch( address indexed operator, address indexed from, address indexed to, uint256[] ids, uint256[] values ); /** * @dev Emitted when `account` grants or revokes permission to `operator` to transfer their tokens, according to * `approved`. */ event ApprovalForAll(address indexed account, address indexed operator, bool approved); /** * @dev Emitted when the URI for token type `id` changes to `value`, if it is a non-programmatic URI. * * If an {URI} event was emitted for `id`, the standard * https://eips.ethereum.org/EIPS/eip-1155#metadata-extensions[guarantees] that `value` will equal the value * returned by {IERC1155MetadataURI-uri}. */ event URI(string value, uint256 indexed id); /** * @dev Returns the amount of tokens of token type `id` owned by `account`. * * Requirements: * * - `account` cannot be the zero address. */ function balanceOf(address account, uint256 id) external view returns (uint256); /** * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {balanceOf}. * * Requirements: * * - `accounts` and `ids` must have the same length. */ function balanceOfBatch(address[] calldata accounts, uint256[] calldata ids) external view returns (uint256[] memory); /** * @dev Grants or revokes permission to `operator` to transfer the caller's tokens, according to `approved`, * * Emits an {ApprovalForAll} event. * * Requirements: * * - `operator` cannot be the caller. */ function setApprovalForAll(address operator, bool approved) external; /** * @dev Returns true if `operator` is approved to transfer ``account``'s tokens. * * See {setApprovalForAll}. */ function isApprovedForAll(address account, address operator) external view returns (bool); /** * @dev Transfers `amount` tokens of token type `id` from `from` to `to`. * * Emits a {TransferSingle} event. * * Requirements: * * - `to` cannot be the zero address. * - If the caller is not `from`, it must be have been approved to spend ``from``'s tokens via {setApprovalForAll}. * - `from` must have a balance of tokens of type `id` of at least `amount`. * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155Received} and return the * acceptance magic value. */ function safeTransferFrom( address from, address to, uint256 id, uint256 amount, bytes calldata data ) external; /** * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {safeTransferFrom}. * * Emits a {TransferBatch} event. * * Requirements: * * - `ids` and `amounts` must have the same length. * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155BatchReceived} and return the * acceptance magic value. */ function safeBatchTransferFrom( address from, address to, uint256[] calldata ids, uint256[] calldata amounts, bytes calldata data ) external; }
// SPDX-License-Identifier: MIT 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 make 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; } }
// SPDX-License-Identifier: MIT 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; } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "../../utils/introspection/IERC165.sol"; /** * @dev Required interface of an ERC721 compliant contract. */ interface IERC721 is IERC165 { /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @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`, 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 Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @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 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); /** * @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; }
// SPDX-License-Identifier: MIT 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 `IERC721.onERC721Received.selector`. */ function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "../IERC721.sol"; /** * @title ERC-721 Non-Fungible Token Standard, optional metadata extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Metadata is IERC721 { /** * @dev Returns the token collection name. */ function name() external view returns (string memory); /** * @dev Returns the token collection symbol. */ function symbol() external view returns (string memory); /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) external view returns (string memory); }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; /** * @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 * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize, which returns 0 for contracts in // construction, since the code is only stored at the end of the // constructor execution. uint256 size; assembly { size := extcodesize(account) } return size > 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); } } } }
// SPDX-License-Identifier: MIT 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); } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "./IERC165.sol"; /** * @dev Implementation of the {IERC165} interface. * * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check * for the additional interface id that will be supported. For example: * * ```solidity * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { * return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId); * } * ``` * * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation. */ abstract contract ERC165 is IERC165 { /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IERC165).interfaceId; } }
// SPDX-License-Identifier: MIT 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); }
{ "optimizer": { "enabled": true, "runs": 1 }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } }, "libraries": {} }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"address","name":"_signerPublicAddress","type":"address"},{"internalType":"uint256","name":"_endWhitelistMintingPeriodDateAndTime","type":"uint256"},{"internalType":"string","name":"__baseTokenURI","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"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":"uint256","name":"theCollectorTokenId","type":"uint256"},{"indexed":true,"internalType":"address","name":"embeddedCollection","type":"address"},{"indexed":true,"internalType":"uint256","name":"embeddedTokenId","type":"uint256"}],"name":"EmbedTokens","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PUNK","outputs":[{"internalType":"contract IPunk","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"whitelistedCollectionsArray","type":"address[]"}],"name":"addERC1155WhitelistedCollections","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"whitelistedCollectionsArray","type":"address[]"}],"name":"addERC721WhitelistedCollections","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":[{"internalType":"uint256","name":"theCollectorsTokenId","type":"uint256"},{"internalType":"address","name":"whitelistCollection","type":"address"},{"internalType":"uint256","name":"whitelistCollectionTokenId","type":"uint256"},{"internalType":"string","name":"uri","type":"string"},{"internalType":"string","name":"typeOfSignature","type":"string"},{"internalType":"uint8","name":"v","type":"uint8"},{"internalType":"bytes32","name":"r","type":"bytes32"},{"internalType":"bytes32","name":"s","type":"bytes32"}],"name":"embedToken","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"uint256","name":"","type":"uint256"}],"name":"embeddedTokens","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"embeddedTokensInfo","outputs":[{"internalType":"address","name":"collection","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"endWhitelistMintingPeriodDateAndTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"erc1155WhitelistedCollections","outputs":[{"internalType":"contract IERC1155","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"erc721WhitelistedCollections","outputs":[{"internalType":"contract IERC721","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"forceEndMinting","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"maxMintsPerAddress","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintsPerWhitelistedAddress","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mintFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amountToMint","type":"uint256"}],"name":"mintToken","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"whitelistAddress","type":"address"},{"internalType":"uint8","name":"v","type":"uint8"},{"internalType":"bytes32","name":"r","type":"bytes32"},{"internalType":"bytes32","name":"s","type":"bytes32"},{"internalType":"uint256","name":"amountToMint","type":"uint256"}],"name":"mintTokenForWhitelistedAddresses","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"mintingOver","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"whitelistedCollection","type":"address"}],"name":"removeERC1155WhitelistedCollection","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"whitelistedCollection","type":"address"}],"name":"removeERC721WhitelistedCollection","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"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":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"__baseTokenURI","type":"string"}],"name":"setBaseTokenURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_endWhitelistMintingPeriodDateAndTime","type":"uint256"}],"name":"setEndWhitelistMintingPeriodDateAndTime","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_forceEndMinting","type":"bool"}],"name":"setForceEndMinting","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxMintsPerAddress","type":"uint256"}],"name":"setMaxMintsPerAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxMintsPerWhitelistedAddress","type":"uint256"}],"name":"setMaxMintsPerWhitelistedAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintFee","type":"uint256"}],"name":"setMintFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_signerPublicAddress","type":"address"}],"name":"setSignerPublicAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"signerPublicAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"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":"collection","type":"address"},{"internalType":"uint256","name":"token","type":"uint256"}],"name":"wasTokenUsed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"}]
Contract Creation Code
60806040523480156200001157600080fd5b50604051620032a7380380620032a7833981016040819052620000349162000218565b604080518082018252600e81526d54686520436f6c6c6563746f727360901b60208083019182528351808501909452600d84526c546865436f6c6c6563746f727360981b9084015281519192916200008f9160009162000172565b508051620000a590600190602084019062000172565b505050620000c2620000bc6200011c60201b60201c565b62000120565b6001600755600d80546001600160a01b0319166001600160a01b038516179055600c8290558051620000fc90601390602084019062000172565b5050600a6010819055601155505067011c37937e08000060125562000374565b3390565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b828054620001809062000321565b90600052602060002090601f016020900481019282620001a45760008555620001ef565b82601f10620001bf57805160ff1916838001178555620001ef565b82800160010185558215620001ef579182015b82811115620001ef578251825591602001919060010190620001d2565b50620001fd92915062000201565b5090565b5b80821115620001fd576000815560010162000202565b6000806000606084860312156200022e57600080fd5b83516001600160a01b03811681146200024657600080fd5b60208581015160408701519295509350906001600160401b03808211156200026d57600080fd5b818701915087601f8301126200028257600080fd5b8151818111156200029757620002976200035e565b604051601f8201601f19908116603f01168101908382118183101715620002c257620002c26200035e565b816040528281528a86848701011115620002db57600080fd5b600093505b82841015620002ff5784840186015181850187015292850192620002e0565b82841115620003115760008684830101525b8096505050505050509250925092565b600181811c908216806200033657607f821691505b602082108114156200035857634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052604160045260246000fd5b612f2380620003846000396000f3fe6080604052600436106102025760003560e01c806301ffc9a714610207578063061019b11461023c57806306fdde0314610256578063081812fc14610278578063081ea4eb146102b0578063095ea7b3146102e65780630a1f697f1461030857806313966db51461032c57806314a57dd91461034257806318160ddd1461036257806323b872dd14610378578063296f76b31461039857806330176e13146103c057806332cb6b0c146103e057806336bdbed2146103f657806342842e0e1461041657806343d65289146104365780634b3bee0a1461047157806353d44dd9146104865780636352211e146104a657806366abbcad146104c65780636d7c18b2146104fc57806370a082311461050f57806370b34c901461052f578063715018a61461054f57806371ab7a34146105645780638b169a0a146105845780638d4e4cc5146105a45780638da5cb5b146105c45780638e964ba4146105d957806390046fe514610627578063928e17db1461064757806395d89b411461065d578063a22cb46514610672578063ae6a80d514610692578063b8691787146106a8578063b88d4fde146106c8578063ba40a96a146106e8578063c634d03214610708578063c87b56dd1461071b578063e4e9b4dd1461073b578063e985e9c51461075b578063eddd0d9c1461077b578063f2fde38b1461079b578063fb6639df146107bb575b600080fd5b34801561021357600080fd5b5061022761022236600461294f565b6107db565b60405190151581526020015b60405180910390f35b34801561024857600080fd5b50600f546102279060ff1681565b34801561026257600080fd5b5061026b61082d565b6040516102339190612b98565b34801561028457600080fd5b506102986102933660046129bd565b6108bf565b6040516001600160a01b039091168152602001610233565b3480156102bc57600080fd5b506102986102cb366004612699565b6008602052600090815260409020546001600160a01b031681565b3480156102f257600080fd5b50610306610301366004612801565b61094c565b005b34801561031457600080fd5b5061031e600c5481565b604051908152602001610233565b34801561033857600080fd5b5061031e60125481565b34801561034e57600080fd5b5061022761035d366004612801565b610a5d565b34801561036e57600080fd5b5061031e600e5481565b34801561038457600080fd5b5061030661039336600461270c565b610a88565b3480156103a457600080fd5b5061029873b47e3cd837ddf8e4c57f05d70ab865de6e193bbb81565b3480156103cc57600080fd5b506103066103db366004612989565b610ab9565b3480156103ec57600080fd5b5061031e61271081565b34801561040257600080fd5b506103066104113660046129bd565b610aff565b34801561042257600080fd5b5061030661043136600461270c565b610b33565b34801561044257600080fd5b50610227610451366004612801565b600b60209081526000928352604080842090915290825290205460ff1681565b34801561047d57600080fd5b50610227610b4e565b34801561049257600080fd5b506103066104a13660046129bd565b610b69565b3480156104b257600080fd5b506102986104c13660046129bd565b610b9d565b3480156104d257600080fd5b506102986104e1366004612699565b6009602052600090815260409020546001600160a01b031681565b61030661050a36600461282d565b610c14565b34801561051b57600080fd5b5061031e61052a366004612699565b610e02565b34801561053b57600080fd5b5061030661054a36600461287c565b610e89565b34801561055b57600080fd5b50610306610f53565b34801561057057600080fd5b5061030661057f36600461287c565b610f8e565b34801561059057600080fd5b5061030661059f366004612699565b611058565b3480156105b057600080fd5b506103066105bf3660046129bd565b6110ae565b3480156105d057600080fd5b506102986110e2565b3480156105e557600080fd5b506106196105f43660046129bd565b600a60205260009081526040902080546001909101546001600160a01b039091169082565b604051610233929190612b7f565b34801561063357600080fd5b50610306610642366004612699565b6110f1565b34801561065357600080fd5b5061031e60105481565b34801561066957600080fd5b5061026b611147565b34801561067e57600080fd5b5061030661068d3660046127cc565b611156565b34801561069e57600080fd5b5061031e60115481565b3480156106b457600080fd5b506103066106c3366004612699565b611217565b3480156106d457600080fd5b506103066106e336600461274d565b611268565b3480156106f457600080fd5b50600d54610298906001600160a01b031681565b6103066107163660046129bd565b6112a0565b34801561072757600080fd5b5061026b6107363660046129bd565b6113fc565b34801561074757600080fd5b50610306610756366004612934565b61154b565b34801561076757600080fd5b506102276107763660046126d3565b61158d565b34801561078757600080fd5b506103066107963660046129bd565b6115bb565b3480156107a757600080fd5b506103066107b6366004612699565b6115ef565b3480156107c757600080fd5b506103066107d63660046129ef565b61168f565b60006001600160e01b031982166380ac58cd60e01b148061080c57506001600160e01b03198216635b5e139f60e01b145b8061082757506301ffc9a760e01b6001600160e01b03198316145b92915050565b60606000805461083c90612de0565b80601f016020809104026020016040519081016040528092919081815260200182805461086890612de0565b80156108b55780601f1061088a576101008083540402835291602001916108b5565b820191906000526020600020905b81548152906001019060200180831161089857829003601f168201915b5050505050905090565b60006108ca82611ba3565b6109305760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b600061095782610b9d565b9050806001600160a01b0316836001600160a01b031614156109c55760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610927565b336001600160a01b03821614806109e157506109e1813361158d565b610a4e5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f776044820152771b995c881b9bdc88185c1c1c9bdd995908199bdc88185b1b60421b6064820152608401610927565b610a588383611bc0565b505050565b6001600160a01b03919091166000908152600b60209081526040808320938352929052205460ff1690565b610a923382611c2e565b610aae5760405162461bcd60e51b815260040161092790612c74565b610a58838383611cf8565b33610ac26110e2565b6001600160a01b031614610ae85760405162461bcd60e51b815260040161092790612c3f565b8051610afb906013906020840190612568565b5050565b33610b086110e2565b6001600160a01b031614610b2e5760405162461bcd60e51b815260040161092790612c3f565b600c55565b610a5883838360405180602001604052806000815250611268565b6000612710600e541480610b645750600f5460ff165b905090565b33610b726110e2565b6001600160a01b031614610b985760405162461bcd60e51b815260040161092790612c3f565b601155565b6000818152600260205260408120546001600160a01b0316806108275760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610927565b60026007541415610c375760405162461bcd60e51b815260040161092790612cc5565b6002600755610c44610b4e565b15610c615760405162461bcd60e51b815260040161092790612cfc565b8080601254610c709190612d7e565b341015610c8f5760405162461bcd60e51b815260040161092790612bfd565b42600c5411610ccd5760405162461bcd60e51b815260206004820152600a60248201526910d85b89dd081b5a5b9d60b21b6044820152606401610927565b6040516001600160601b0319606088901b166020820152610d099060340160405160208183030381529060405280519060200120868686611e86565b8015610d1d57506001600160a01b03861633145b610d545760405162461bcd60e51b81526020600482015260086024820152674e6963652074727960c01b6044820152606401610927565b816010541015610d765760405162461bcd60e51b815260040161092790612c21565b60005b8281108015610d8b5750600e54612710115b15610dab57610d9933611f6b565b80610da381612e1b565b915050610d79565b600060125482610dbb9190612d7e565b9050610dce610dc86110e2565b82611f8f565b6000610dda8234612d9d565b1115610df357610df333610dee8334612d9d565b611f8f565b50506001600755505050505050565b60006001600160a01b038216610e6d5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610927565b506001600160a01b031660009081526003602052604090205490565b33610e926110e2565b6001600160a01b031614610eb85760405162461bcd60e51b815260040161092790612c3f565b60005b8151811015610afb57818181518110610ed657610ed6612e76565b602002602001015160096000848481518110610ef457610ef4612e76565b60200260200101516001600160a01b03166001600160a01b0316815260200190815260200160002060006101000a8154816001600160a01b0302191690836001600160a01b031602179055508080610f4b90612e1b565b915050610ebb565b33610f5c6110e2565b6001600160a01b031614610f825760405162461bcd60e51b815260040161092790612c3f565b610f8c60006120a5565b565b33610f976110e2565b6001600160a01b031614610fbd5760405162461bcd60e51b815260040161092790612c3f565b60005b8151811015610afb57818181518110610fdb57610fdb612e76565b602002602001015160086000848481518110610ff957610ff9612e76565b60200260200101516001600160a01b03166001600160a01b0316815260200190815260200160002060006101000a8154816001600160a01b0302191690836001600160a01b03160217905550808061105090612e1b565b915050610fc0565b336110616110e2565b6001600160a01b0316146110875760405162461bcd60e51b815260040161092790612c3f565b6001600160a01b0316600090815260086020526040902080546001600160a01b0319169055565b336110b76110e2565b6001600160a01b0316146110dd5760405162461bcd60e51b815260040161092790612c3f565b601055565b6006546001600160a01b031690565b336110fa6110e2565b6001600160a01b0316146111205760405162461bcd60e51b815260040161092790612c3f565b6001600160a01b0316600090815260096020526040902080546001600160a01b0319169055565b60606001805461083c90612de0565b6001600160a01b0382163314156111ab5760405162461bcd60e51b815260206004820152601960248201527822a9219b99189d1030b8383937bb32903a379031b0b63632b960391b6044820152606401610927565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b336112206110e2565b6001600160a01b0316146112465760405162461bcd60e51b815260040161092790612c3f565b600d80546001600160a01b0319166001600160a01b0392909216919091179055565b6112723383611c2e565b61128e5760405162461bcd60e51b815260040161092790612c74565b61129a848484846120f7565b50505050565b600260075414156112c35760405162461bcd60e51b815260040161092790612cc5565b60026007556112d0610b4e565b156112ed5760405162461bcd60e51b815260040161092790612cfc565b80806012546112fc9190612d7e565b34101561131b5760405162461bcd60e51b815260040161092790612bfd565b600c54421161135d5760405162461bcd60e51b815260206004820152600e60248201526d13db9b1e481dda1a5d195b1a5cdd60921b6044820152606401610927565b81601154101561137f5760405162461bcd60e51b815260040161092790612c21565b60005b82811080156113945750600e54612710115b156113b4576113a233611f6b565b806113ac81612e1b565b915050611382565b6000601254826113c49190612d7e565b90506113d1610dc86110e2565b60006113dd8234612d9d565b11156113f1576113f133610dee8334612d9d565b505060016007555050565b606061140782611ba3565b6114535760405162461bcd60e51b815260206004820152601f60248201527f55524920717565727920666f72206e6f6e6578697374656e7420746f6b656e006044820152606401610927565b6000828152601460205260409020805461146c90612de0565b159050611511576000828152601460205260409020805461148c90612de0565b80601f01602080910402602001604051908101604052809291908181526020018280546114b890612de0565b80156115055780601f106114da57610100808354040283529160200191611505565b820191906000526020600020905b8154815290600101906020018083116114e857829003601f168201915b50505050509050919050565b600061151c8361212a565b90508060405160200161152f9190612b19565b604051602081830303815290604052915050919050565b919050565b336115546110e2565b6001600160a01b03161461157a5760405162461bcd60e51b815260040161092790612c3f565b600f805460ff1916911515919091179055565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b336115c46110e2565b6001600160a01b0316146115ea5760405162461bcd60e51b815260040161092790612c3f565b601255565b336115f86110e2565b6001600160a01b03161461161e5760405162461bcd60e51b815260040161092790612c3f565b6001600160a01b0381166116835760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610927565b61168c816120a5565b50565b6116c385856040516020016116a5929190612aea565b60405160208183030381529060405280519060200120848484611e86565b6116f95760405162461bcd60e51b81526020600482015260076024820152665265616c6c793f60c81b6044820152606401610927565b6000888152601460205260409020805461171290612de0565b1590506117545760405162461bcd60e51b815260206004820152601060248201526f105b1c9958591e48195b58995919195960821b6044820152606401610927565b3361175e89610b9d565b6001600160a01b0316146117a65760405162461bcd60e51b815260206004820152600f60248201526e2737ba103a37b5b2b71037bbb732b960891b6044820152606401610927565b6001600160a01b03878116600090815260086020526040902054161515806117e757506001600160a01b038781166000908152600960205260409020541615155b8061180e57506001600160a01b03871673b47e3cd837ddf8e4c57f05d70ab865de6e193bbb145b61184b5760405162461bcd60e51b815260206004820152600e60248201526d2130b21031b7b63632b1ba34b7b760911b6044820152606401610927565b6001600160a01b03871673b47e3cd837ddf8e4c57f05d70ab865de6e193bbb1480156119025750604051630b02f02d60e31b815260048101879052339073b47e3cd837ddf8e4c57f05d70ab865de6e193bbb9063581781689060240160206040518083038186803b1580156118bf57600080fd5b505afa1580156118d3573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906118f791906126b6565b6001600160a01b0316145b806119bd57506001600160a01b0387811660009081526009602052604090205416158015906119bd57506001600160a01b03808816600090815260096020526040808220549051627eeac760e11b81529192169062fdd58e9061196b9033908b90600401612b7f565b60206040518083038186803b15801561198357600080fd5b505afa158015611997573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906119bb91906129d6565b115b80611a5d57506001600160a01b03878116600090815260086020526040908190205490516331a9108f60e11b81526004810189905233929190911690636352211e9060240160206040518083038186803b158015611a1a57600080fd5b505afa158015611a2e573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611a5291906126b6565b6001600160a01b0316145b611a9b5760405162461bcd60e51b815260206004820152600f60248201526e2130b2103a37b5b2b71037bbb732b960891b6044820152606401610927565b611aa58787610a5d565b15611ae15760405162461bcd60e51b815260206004820152600c60248201526b105b1c9958591e481d5cd95960a21b6044820152606401610927565b6040805180820182526001600160a01b0389811680835260208084018b815260008e8152600a8352868120955186546001600160a01b031916951694909417855551600194850155908252600b81528382208a83528152838220805460ff19169093179092558a815260148252919091208651611b6092880190612568565b5085876001600160a01b0316897f10636a742a569a36cb5332421676b48578668dbb1415dc9a1b96809182ddd06f60405160405180910390a45050505050505050565b6000908152600260205260409020546001600160a01b0316151590565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190611bf582610b9d565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000611c3982611ba3565b611c9a5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610927565b6000611ca583610b9d565b9050806001600160a01b0316846001600160a01b03161480611ce05750836001600160a01b0316611cd5846108bf565b6001600160a01b0316145b80611cf05750611cf0818561158d565b949350505050565b826001600160a01b0316611d0b82610b9d565b6001600160a01b031614611d735760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b6064820152608401610927565b6001600160a01b038216611dd55760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610927565b611de0600082611bc0565b6001600160a01b0383166000908152600360205260408120805460019290611e09908490612d9d565b90915550506001600160a01b0382166000908152600360205260408120805460019290611e37908490612d52565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b038681169182179092559151849391871691600080516020612ece83398151915291a4505050565b6000806040518060400160405280601c81526020017b0ca2ba3432b932bab69029b4b3b732b21026b2b9b9b0b3b29d05199960211b815250905060008187604051602001611ed5929190612ac8565b60408051808303601f190181528282528051602091820120600d546000855291840180845281905260ff8a169284019290925260608301889052608083018790529092506001600160a01b03169060019060a0016020604051602081039080840390855afa158015611f4b573d6000803e3d6000fd5b505050602060405103516001600160a01b03161492505050949350505050565b611f7781600e546121e5565b600e8054906000611f8783612e1b565b919050555050565b80471015611fdf5760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a20696e73756666696369656e742062616c616e63650000006044820152606401610927565b6000826001600160a01b03168260405160006040518083038185875af1925050503d806000811461202c576040519150601f19603f3d011682016040523d82523d6000602084013e612031565b606091505b5050905080610a585760405162461bcd60e51b815260206004820152603a60248201527f416464726573733a20756e61626c6520746f2073656e642076616c75652c20726044820152791958da5c1a595b9d081b585e481a185d99481c995d995c9d195960321b6064820152608401610927565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b612102848484611cf8565b61210e848484846121ff565b61129a5760405162461bcd60e51b815260040161092790612bab565b606061213582611ba3565b6121995760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610927565b60006121a3612309565b905060008151116121c357604051806020016040528060008152506121de565b806121cd84612318565b60405160200161152f929190612aea565b9392505050565b610afb828260405180602001604052806000815250612415565b60006001600160a01b0384163b1561230157604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290612243903390899088908890600401612b42565b602060405180830381600087803b15801561225d57600080fd5b505af192505050801561228d575060408051601f3d908101601f1916820190925261228a9181019061296c565b60015b6122e7573d8080156122bb576040519150601f19603f3d011682016040523d82523d6000602084013e6122c0565b606091505b5080516122df5760405162461bcd60e51b815260040161092790612bab565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611cf0565b506001611cf0565b60606013805461083c90612de0565b60608161233c5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115612366578061235081612e1b565b915061235f9050600a83612d6a565b9150612340565b6000816001600160401b0381111561238057612380612e8c565b6040519080825280601f01601f1916602001820160405280156123aa576020820181803683370190505b5090505b8415611cf0576123bf600183612d9d565b91506123cc600a86612e36565b6123d7906030612d52565b60f81b8183815181106123ec576123ec612e76565b60200101906001600160f81b031916908160001a90535061240e600a86612d6a565b94506123ae565b61241f8383612448565b61242c60008484846121ff565b610a585760405162461bcd60e51b815260040161092790612bab565b6001600160a01b03821661249e5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610927565b6124a781611ba3565b156124f35760405162461bcd60e51b815260206004820152601c60248201527b115490cdcc8c4e881d1bdad95b88185b1c9958591e481b5a5b9d195960221b6044820152606401610927565b6001600160a01b038216600090815260036020526040812080546001929061251c908490612d52565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386169081179091559051839290600080516020612ece833981519152908290a45050565b82805461257490612de0565b90600052602060002090601f01602090048101928261259657600085556125dc565b82601f106125af57805160ff19168380011785556125dc565b828001600101855582156125dc579182015b828111156125dc5782518255916020019190600101906125c1565b506125e89291506125ec565b5090565b5b808211156125e857600081556001016125ed565b60006001600160401b0383111561261a5761261a612e8c565b61262d601f8401601f1916602001612d22565b905082815283838301111561264157600080fd5b828260208301376000602084830101529392505050565b8035801515811461154657600080fd5b600082601f83011261267957600080fd5b6121de83833560208501612601565b803560ff8116811461154657600080fd5b6000602082840312156126ab57600080fd5b81356121de81612ea2565b6000602082840312156126c857600080fd5b81516121de81612ea2565b600080604083850312156126e657600080fd5b82356126f181612ea2565b9150602083013561270181612ea2565b809150509250929050565b60008060006060848603121561272157600080fd5b833561272c81612ea2565b9250602084013561273c81612ea2565b929592945050506040919091013590565b6000806000806080858703121561276357600080fd5b843561276e81612ea2565b9350602085013561277e81612ea2565b92506040850135915060608501356001600160401b038111156127a057600080fd5b8501601f810187136127b157600080fd5b6127c087823560208401612601565b91505092959194509250565b600080604083850312156127df57600080fd5b82356127ea81612ea2565b91506127f860208401612658565b90509250929050565b6000806040838503121561281457600080fd5b823561281f81612ea2565b946020939093013593505050565b600080600080600060a0868803121561284557600080fd5b853561285081612ea2565b945061285e60208701612688565b94979496505050506040830135926060810135926080909101359150565b6000602080838503121561288f57600080fd5b82356001600160401b03808211156128a657600080fd5b818501915085601f8301126128ba57600080fd5b8135818111156128cc576128cc612e8c565b8060051b91506128dd848301612d22565b8181528481019084860184860187018a10156128f857600080fd5b600095505b83861015612927578035945061291285612ea2565b848352600195909501949186019186016128fd565b5098975050505050505050565b60006020828403121561294657600080fd5b6121de82612658565b60006020828403121561296157600080fd5b81356121de81612eb7565b60006020828403121561297e57600080fd5b81516121de81612eb7565b60006020828403121561299b57600080fd5b81356001600160401b038111156129b157600080fd5b611cf084828501612668565b6000602082840312156129cf57600080fd5b5035919050565b6000602082840312156129e857600080fd5b5051919050565b600080600080600080600080610100898b031215612a0c57600080fd5b883597506020890135612a1e81612ea2565b96506040890135955060608901356001600160401b0380821115612a4157600080fd5b612a4d8c838d01612668565b965060808b0135915080821115612a6357600080fd5b50612a708b828c01612668565b945050612a7f60a08a01612688565b925060c0890135915060e089013590509295985092959890939650565b60008151808452612ab4816020860160208601612db4565b601f01601f19169290920160200192915050565b60008351612ada818460208801612db4565b9190910191825250602001919050565b60008351612afc818460208801612db4565b835190830190612b10818360208801612db4565b01949350505050565b60008251612b2b818460208701612db4565b64173539b7b760d91b920191825250600501919050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612b7590830184612a9c565b9695505050505050565b6001600160a01b03929092168252602082015260400190565b6020815260006121de6020830184612a9c565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252600a90820152690f1b5a5b9d0818dbdcdd60b21b604082015260600190565b60208082526004908201526307cdac2f60e31b604082015260600190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b6020808252601f908201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604082015260600190565b6020808252600c908201526b26b4b73a34b7339037bb32b960a11b604082015260600190565b604051601f8201601f191681016001600160401b0381118282101715612d4a57612d4a612e8c565b604052919050565b60008219821115612d6557612d65612e4a565b500190565b600082612d7957612d79612e60565b500490565b6000816000190483118215151615612d9857612d98612e4a565b500290565b600082821015612daf57612daf612e4a565b500390565b60005b83811015612dcf578181015183820152602001612db7565b8381111561129a5750506000910152565b600181811c90821680612df457607f821691505b60208210811415612e1557634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415612e2f57612e2f612e4a565b5060010190565b600082612e4557612e45612e60565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160a01b038116811461168c57600080fd5b6001600160e01b03198116811461168c57600080fdfeddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3efa264697066735822122086b876813763f176ecd588ab7d37946a18b57ff88a14742242e43544648f50c764736f6c634300080600330000000000000000000000006f5cf0fd35bcad84824bf9c26133118e106c17bd0000000000000000000000000000000000000000000000000000000061b8bf800000000000000000000000000000000000000000000000000000000000000060000000000000000000000000000000000000000000000000000000000000002a68747470733a2f2f7365727665722e746865636f6c6c6563746f72736e66742e78797a2f746f6b656e2f00000000000000000000000000000000000000000000
Deployed Bytecode
0x6080604052600436106102025760003560e01c806301ffc9a714610207578063061019b11461023c57806306fdde0314610256578063081812fc14610278578063081ea4eb146102b0578063095ea7b3146102e65780630a1f697f1461030857806313966db51461032c57806314a57dd91461034257806318160ddd1461036257806323b872dd14610378578063296f76b31461039857806330176e13146103c057806332cb6b0c146103e057806336bdbed2146103f657806342842e0e1461041657806343d65289146104365780634b3bee0a1461047157806353d44dd9146104865780636352211e146104a657806366abbcad146104c65780636d7c18b2146104fc57806370a082311461050f57806370b34c901461052f578063715018a61461054f57806371ab7a34146105645780638b169a0a146105845780638d4e4cc5146105a45780638da5cb5b146105c45780638e964ba4146105d957806390046fe514610627578063928e17db1461064757806395d89b411461065d578063a22cb46514610672578063ae6a80d514610692578063b8691787146106a8578063b88d4fde146106c8578063ba40a96a146106e8578063c634d03214610708578063c87b56dd1461071b578063e4e9b4dd1461073b578063e985e9c51461075b578063eddd0d9c1461077b578063f2fde38b1461079b578063fb6639df146107bb575b600080fd5b34801561021357600080fd5b5061022761022236600461294f565b6107db565b60405190151581526020015b60405180910390f35b34801561024857600080fd5b50600f546102279060ff1681565b34801561026257600080fd5b5061026b61082d565b6040516102339190612b98565b34801561028457600080fd5b506102986102933660046129bd565b6108bf565b6040516001600160a01b039091168152602001610233565b3480156102bc57600080fd5b506102986102cb366004612699565b6008602052600090815260409020546001600160a01b031681565b3480156102f257600080fd5b50610306610301366004612801565b61094c565b005b34801561031457600080fd5b5061031e600c5481565b604051908152602001610233565b34801561033857600080fd5b5061031e60125481565b34801561034e57600080fd5b5061022761035d366004612801565b610a5d565b34801561036e57600080fd5b5061031e600e5481565b34801561038457600080fd5b5061030661039336600461270c565b610a88565b3480156103a457600080fd5b5061029873b47e3cd837ddf8e4c57f05d70ab865de6e193bbb81565b3480156103cc57600080fd5b506103066103db366004612989565b610ab9565b3480156103ec57600080fd5b5061031e61271081565b34801561040257600080fd5b506103066104113660046129bd565b610aff565b34801561042257600080fd5b5061030661043136600461270c565b610b33565b34801561044257600080fd5b50610227610451366004612801565b600b60209081526000928352604080842090915290825290205460ff1681565b34801561047d57600080fd5b50610227610b4e565b34801561049257600080fd5b506103066104a13660046129bd565b610b69565b3480156104b257600080fd5b506102986104c13660046129bd565b610b9d565b3480156104d257600080fd5b506102986104e1366004612699565b6009602052600090815260409020546001600160a01b031681565b61030661050a36600461282d565b610c14565b34801561051b57600080fd5b5061031e61052a366004612699565b610e02565b34801561053b57600080fd5b5061030661054a36600461287c565b610e89565b34801561055b57600080fd5b50610306610f53565b34801561057057600080fd5b5061030661057f36600461287c565b610f8e565b34801561059057600080fd5b5061030661059f366004612699565b611058565b3480156105b057600080fd5b506103066105bf3660046129bd565b6110ae565b3480156105d057600080fd5b506102986110e2565b3480156105e557600080fd5b506106196105f43660046129bd565b600a60205260009081526040902080546001909101546001600160a01b039091169082565b604051610233929190612b7f565b34801561063357600080fd5b50610306610642366004612699565b6110f1565b34801561065357600080fd5b5061031e60105481565b34801561066957600080fd5b5061026b611147565b34801561067e57600080fd5b5061030661068d3660046127cc565b611156565b34801561069e57600080fd5b5061031e60115481565b3480156106b457600080fd5b506103066106c3366004612699565b611217565b3480156106d457600080fd5b506103066106e336600461274d565b611268565b3480156106f457600080fd5b50600d54610298906001600160a01b031681565b6103066107163660046129bd565b6112a0565b34801561072757600080fd5b5061026b6107363660046129bd565b6113fc565b34801561074757600080fd5b50610306610756366004612934565b61154b565b34801561076757600080fd5b506102276107763660046126d3565b61158d565b34801561078757600080fd5b506103066107963660046129bd565b6115bb565b3480156107a757600080fd5b506103066107b6366004612699565b6115ef565b3480156107c757600080fd5b506103066107d63660046129ef565b61168f565b60006001600160e01b031982166380ac58cd60e01b148061080c57506001600160e01b03198216635b5e139f60e01b145b8061082757506301ffc9a760e01b6001600160e01b03198316145b92915050565b60606000805461083c90612de0565b80601f016020809104026020016040519081016040528092919081815260200182805461086890612de0565b80156108b55780601f1061088a576101008083540402835291602001916108b5565b820191906000526020600020905b81548152906001019060200180831161089857829003601f168201915b5050505050905090565b60006108ca82611ba3565b6109305760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b600061095782610b9d565b9050806001600160a01b0316836001600160a01b031614156109c55760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610927565b336001600160a01b03821614806109e157506109e1813361158d565b610a4e5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f776044820152771b995c881b9bdc88185c1c1c9bdd995908199bdc88185b1b60421b6064820152608401610927565b610a588383611bc0565b505050565b6001600160a01b03919091166000908152600b60209081526040808320938352929052205460ff1690565b610a923382611c2e565b610aae5760405162461bcd60e51b815260040161092790612c74565b610a58838383611cf8565b33610ac26110e2565b6001600160a01b031614610ae85760405162461bcd60e51b815260040161092790612c3f565b8051610afb906013906020840190612568565b5050565b33610b086110e2565b6001600160a01b031614610b2e5760405162461bcd60e51b815260040161092790612c3f565b600c55565b610a5883838360405180602001604052806000815250611268565b6000612710600e541480610b645750600f5460ff165b905090565b33610b726110e2565b6001600160a01b031614610b985760405162461bcd60e51b815260040161092790612c3f565b601155565b6000818152600260205260408120546001600160a01b0316806108275760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610927565b60026007541415610c375760405162461bcd60e51b815260040161092790612cc5565b6002600755610c44610b4e565b15610c615760405162461bcd60e51b815260040161092790612cfc565b8080601254610c709190612d7e565b341015610c8f5760405162461bcd60e51b815260040161092790612bfd565b42600c5411610ccd5760405162461bcd60e51b815260206004820152600a60248201526910d85b89dd081b5a5b9d60b21b6044820152606401610927565b6040516001600160601b0319606088901b166020820152610d099060340160405160208183030381529060405280519060200120868686611e86565b8015610d1d57506001600160a01b03861633145b610d545760405162461bcd60e51b81526020600482015260086024820152674e6963652074727960c01b6044820152606401610927565b816010541015610d765760405162461bcd60e51b815260040161092790612c21565b60005b8281108015610d8b5750600e54612710115b15610dab57610d9933611f6b565b80610da381612e1b565b915050610d79565b600060125482610dbb9190612d7e565b9050610dce610dc86110e2565b82611f8f565b6000610dda8234612d9d565b1115610df357610df333610dee8334612d9d565b611f8f565b50506001600755505050505050565b60006001600160a01b038216610e6d5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610927565b506001600160a01b031660009081526003602052604090205490565b33610e926110e2565b6001600160a01b031614610eb85760405162461bcd60e51b815260040161092790612c3f565b60005b8151811015610afb57818181518110610ed657610ed6612e76565b602002602001015160096000848481518110610ef457610ef4612e76565b60200260200101516001600160a01b03166001600160a01b0316815260200190815260200160002060006101000a8154816001600160a01b0302191690836001600160a01b031602179055508080610f4b90612e1b565b915050610ebb565b33610f5c6110e2565b6001600160a01b031614610f825760405162461bcd60e51b815260040161092790612c3f565b610f8c60006120a5565b565b33610f976110e2565b6001600160a01b031614610fbd5760405162461bcd60e51b815260040161092790612c3f565b60005b8151811015610afb57818181518110610fdb57610fdb612e76565b602002602001015160086000848481518110610ff957610ff9612e76565b60200260200101516001600160a01b03166001600160a01b0316815260200190815260200160002060006101000a8154816001600160a01b0302191690836001600160a01b03160217905550808061105090612e1b565b915050610fc0565b336110616110e2565b6001600160a01b0316146110875760405162461bcd60e51b815260040161092790612c3f565b6001600160a01b0316600090815260086020526040902080546001600160a01b0319169055565b336110b76110e2565b6001600160a01b0316146110dd5760405162461bcd60e51b815260040161092790612c3f565b601055565b6006546001600160a01b031690565b336110fa6110e2565b6001600160a01b0316146111205760405162461bcd60e51b815260040161092790612c3f565b6001600160a01b0316600090815260096020526040902080546001600160a01b0319169055565b60606001805461083c90612de0565b6001600160a01b0382163314156111ab5760405162461bcd60e51b815260206004820152601960248201527822a9219b99189d1030b8383937bb32903a379031b0b63632b960391b6044820152606401610927565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b336112206110e2565b6001600160a01b0316146112465760405162461bcd60e51b815260040161092790612c3f565b600d80546001600160a01b0319166001600160a01b0392909216919091179055565b6112723383611c2e565b61128e5760405162461bcd60e51b815260040161092790612c74565b61129a848484846120f7565b50505050565b600260075414156112c35760405162461bcd60e51b815260040161092790612cc5565b60026007556112d0610b4e565b156112ed5760405162461bcd60e51b815260040161092790612cfc565b80806012546112fc9190612d7e565b34101561131b5760405162461bcd60e51b815260040161092790612bfd565b600c54421161135d5760405162461bcd60e51b815260206004820152600e60248201526d13db9b1e481dda1a5d195b1a5cdd60921b6044820152606401610927565b81601154101561137f5760405162461bcd60e51b815260040161092790612c21565b60005b82811080156113945750600e54612710115b156113b4576113a233611f6b565b806113ac81612e1b565b915050611382565b6000601254826113c49190612d7e565b90506113d1610dc86110e2565b60006113dd8234612d9d565b11156113f1576113f133610dee8334612d9d565b505060016007555050565b606061140782611ba3565b6114535760405162461bcd60e51b815260206004820152601f60248201527f55524920717565727920666f72206e6f6e6578697374656e7420746f6b656e006044820152606401610927565b6000828152601460205260409020805461146c90612de0565b159050611511576000828152601460205260409020805461148c90612de0565b80601f01602080910402602001604051908101604052809291908181526020018280546114b890612de0565b80156115055780601f106114da57610100808354040283529160200191611505565b820191906000526020600020905b8154815290600101906020018083116114e857829003601f168201915b50505050509050919050565b600061151c8361212a565b90508060405160200161152f9190612b19565b604051602081830303815290604052915050919050565b919050565b336115546110e2565b6001600160a01b03161461157a5760405162461bcd60e51b815260040161092790612c3f565b600f805460ff1916911515919091179055565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b336115c46110e2565b6001600160a01b0316146115ea5760405162461bcd60e51b815260040161092790612c3f565b601255565b336115f86110e2565b6001600160a01b03161461161e5760405162461bcd60e51b815260040161092790612c3f565b6001600160a01b0381166116835760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610927565b61168c816120a5565b50565b6116c385856040516020016116a5929190612aea565b60405160208183030381529060405280519060200120848484611e86565b6116f95760405162461bcd60e51b81526020600482015260076024820152665265616c6c793f60c81b6044820152606401610927565b6000888152601460205260409020805461171290612de0565b1590506117545760405162461bcd60e51b815260206004820152601060248201526f105b1c9958591e48195b58995919195960821b6044820152606401610927565b3361175e89610b9d565b6001600160a01b0316146117a65760405162461bcd60e51b815260206004820152600f60248201526e2737ba103a37b5b2b71037bbb732b960891b6044820152606401610927565b6001600160a01b03878116600090815260086020526040902054161515806117e757506001600160a01b038781166000908152600960205260409020541615155b8061180e57506001600160a01b03871673b47e3cd837ddf8e4c57f05d70ab865de6e193bbb145b61184b5760405162461bcd60e51b815260206004820152600e60248201526d2130b21031b7b63632b1ba34b7b760911b6044820152606401610927565b6001600160a01b03871673b47e3cd837ddf8e4c57f05d70ab865de6e193bbb1480156119025750604051630b02f02d60e31b815260048101879052339073b47e3cd837ddf8e4c57f05d70ab865de6e193bbb9063581781689060240160206040518083038186803b1580156118bf57600080fd5b505afa1580156118d3573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906118f791906126b6565b6001600160a01b0316145b806119bd57506001600160a01b0387811660009081526009602052604090205416158015906119bd57506001600160a01b03808816600090815260096020526040808220549051627eeac760e11b81529192169062fdd58e9061196b9033908b90600401612b7f565b60206040518083038186803b15801561198357600080fd5b505afa158015611997573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906119bb91906129d6565b115b80611a5d57506001600160a01b03878116600090815260086020526040908190205490516331a9108f60e11b81526004810189905233929190911690636352211e9060240160206040518083038186803b158015611a1a57600080fd5b505afa158015611a2e573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611a5291906126b6565b6001600160a01b0316145b611a9b5760405162461bcd60e51b815260206004820152600f60248201526e2130b2103a37b5b2b71037bbb732b960891b6044820152606401610927565b611aa58787610a5d565b15611ae15760405162461bcd60e51b815260206004820152600c60248201526b105b1c9958591e481d5cd95960a21b6044820152606401610927565b6040805180820182526001600160a01b0389811680835260208084018b815260008e8152600a8352868120955186546001600160a01b031916951694909417855551600194850155908252600b81528382208a83528152838220805460ff19169093179092558a815260148252919091208651611b6092880190612568565b5085876001600160a01b0316897f10636a742a569a36cb5332421676b48578668dbb1415dc9a1b96809182ddd06f60405160405180910390a45050505050505050565b6000908152600260205260409020546001600160a01b0316151590565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190611bf582610b9d565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000611c3982611ba3565b611c9a5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610927565b6000611ca583610b9d565b9050806001600160a01b0316846001600160a01b03161480611ce05750836001600160a01b0316611cd5846108bf565b6001600160a01b0316145b80611cf05750611cf0818561158d565b949350505050565b826001600160a01b0316611d0b82610b9d565b6001600160a01b031614611d735760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b6064820152608401610927565b6001600160a01b038216611dd55760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610927565b611de0600082611bc0565b6001600160a01b0383166000908152600360205260408120805460019290611e09908490612d9d565b90915550506001600160a01b0382166000908152600360205260408120805460019290611e37908490612d52565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b038681169182179092559151849391871691600080516020612ece83398151915291a4505050565b6000806040518060400160405280601c81526020017b0ca2ba3432b932bab69029b4b3b732b21026b2b9b9b0b3b29d05199960211b815250905060008187604051602001611ed5929190612ac8565b60408051808303601f190181528282528051602091820120600d546000855291840180845281905260ff8a169284019290925260608301889052608083018790529092506001600160a01b03169060019060a0016020604051602081039080840390855afa158015611f4b573d6000803e3d6000fd5b505050602060405103516001600160a01b03161492505050949350505050565b611f7781600e546121e5565b600e8054906000611f8783612e1b565b919050555050565b80471015611fdf5760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a20696e73756666696369656e742062616c616e63650000006044820152606401610927565b6000826001600160a01b03168260405160006040518083038185875af1925050503d806000811461202c576040519150601f19603f3d011682016040523d82523d6000602084013e612031565b606091505b5050905080610a585760405162461bcd60e51b815260206004820152603a60248201527f416464726573733a20756e61626c6520746f2073656e642076616c75652c20726044820152791958da5c1a595b9d081b585e481a185d99481c995d995c9d195960321b6064820152608401610927565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b612102848484611cf8565b61210e848484846121ff565b61129a5760405162461bcd60e51b815260040161092790612bab565b606061213582611ba3565b6121995760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610927565b60006121a3612309565b905060008151116121c357604051806020016040528060008152506121de565b806121cd84612318565b60405160200161152f929190612aea565b9392505050565b610afb828260405180602001604052806000815250612415565b60006001600160a01b0384163b1561230157604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290612243903390899088908890600401612b42565b602060405180830381600087803b15801561225d57600080fd5b505af192505050801561228d575060408051601f3d908101601f1916820190925261228a9181019061296c565b60015b6122e7573d8080156122bb576040519150601f19603f3d011682016040523d82523d6000602084013e6122c0565b606091505b5080516122df5760405162461bcd60e51b815260040161092790612bab565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611cf0565b506001611cf0565b60606013805461083c90612de0565b60608161233c5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115612366578061235081612e1b565b915061235f9050600a83612d6a565b9150612340565b6000816001600160401b0381111561238057612380612e8c565b6040519080825280601f01601f1916602001820160405280156123aa576020820181803683370190505b5090505b8415611cf0576123bf600183612d9d565b91506123cc600a86612e36565b6123d7906030612d52565b60f81b8183815181106123ec576123ec612e76565b60200101906001600160f81b031916908160001a90535061240e600a86612d6a565b94506123ae565b61241f8383612448565b61242c60008484846121ff565b610a585760405162461bcd60e51b815260040161092790612bab565b6001600160a01b03821661249e5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610927565b6124a781611ba3565b156124f35760405162461bcd60e51b815260206004820152601c60248201527b115490cdcc8c4e881d1bdad95b88185b1c9958591e481b5a5b9d195960221b6044820152606401610927565b6001600160a01b038216600090815260036020526040812080546001929061251c908490612d52565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386169081179091559051839290600080516020612ece833981519152908290a45050565b82805461257490612de0565b90600052602060002090601f01602090048101928261259657600085556125dc565b82601f106125af57805160ff19168380011785556125dc565b828001600101855582156125dc579182015b828111156125dc5782518255916020019190600101906125c1565b506125e89291506125ec565b5090565b5b808211156125e857600081556001016125ed565b60006001600160401b0383111561261a5761261a612e8c565b61262d601f8401601f1916602001612d22565b905082815283838301111561264157600080fd5b828260208301376000602084830101529392505050565b8035801515811461154657600080fd5b600082601f83011261267957600080fd5b6121de83833560208501612601565b803560ff8116811461154657600080fd5b6000602082840312156126ab57600080fd5b81356121de81612ea2565b6000602082840312156126c857600080fd5b81516121de81612ea2565b600080604083850312156126e657600080fd5b82356126f181612ea2565b9150602083013561270181612ea2565b809150509250929050565b60008060006060848603121561272157600080fd5b833561272c81612ea2565b9250602084013561273c81612ea2565b929592945050506040919091013590565b6000806000806080858703121561276357600080fd5b843561276e81612ea2565b9350602085013561277e81612ea2565b92506040850135915060608501356001600160401b038111156127a057600080fd5b8501601f810187136127b157600080fd5b6127c087823560208401612601565b91505092959194509250565b600080604083850312156127df57600080fd5b82356127ea81612ea2565b91506127f860208401612658565b90509250929050565b6000806040838503121561281457600080fd5b823561281f81612ea2565b946020939093013593505050565b600080600080600060a0868803121561284557600080fd5b853561285081612ea2565b945061285e60208701612688565b94979496505050506040830135926060810135926080909101359150565b6000602080838503121561288f57600080fd5b82356001600160401b03808211156128a657600080fd5b818501915085601f8301126128ba57600080fd5b8135818111156128cc576128cc612e8c565b8060051b91506128dd848301612d22565b8181528481019084860184860187018a10156128f857600080fd5b600095505b83861015612927578035945061291285612ea2565b848352600195909501949186019186016128fd565b5098975050505050505050565b60006020828403121561294657600080fd5b6121de82612658565b60006020828403121561296157600080fd5b81356121de81612eb7565b60006020828403121561297e57600080fd5b81516121de81612eb7565b60006020828403121561299b57600080fd5b81356001600160401b038111156129b157600080fd5b611cf084828501612668565b6000602082840312156129cf57600080fd5b5035919050565b6000602082840312156129e857600080fd5b5051919050565b600080600080600080600080610100898b031215612a0c57600080fd5b883597506020890135612a1e81612ea2565b96506040890135955060608901356001600160401b0380821115612a4157600080fd5b612a4d8c838d01612668565b965060808b0135915080821115612a6357600080fd5b50612a708b828c01612668565b945050612a7f60a08a01612688565b925060c0890135915060e089013590509295985092959890939650565b60008151808452612ab4816020860160208601612db4565b601f01601f19169290920160200192915050565b60008351612ada818460208801612db4565b9190910191825250602001919050565b60008351612afc818460208801612db4565b835190830190612b10818360208801612db4565b01949350505050565b60008251612b2b818460208701612db4565b64173539b7b760d91b920191825250600501919050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612b7590830184612a9c565b9695505050505050565b6001600160a01b03929092168252602082015260400190565b6020815260006121de6020830184612a9c565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252600a90820152690f1b5a5b9d0818dbdcdd60b21b604082015260600190565b60208082526004908201526307cdac2f60e31b604082015260600190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b6020808252601f908201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604082015260600190565b6020808252600c908201526b26b4b73a34b7339037bb32b960a11b604082015260600190565b604051601f8201601f191681016001600160401b0381118282101715612d4a57612d4a612e8c565b604052919050565b60008219821115612d6557612d65612e4a565b500190565b600082612d7957612d79612e60565b500490565b6000816000190483118215151615612d9857612d98612e4a565b500290565b600082821015612daf57612daf612e4a565b500390565b60005b83811015612dcf578181015183820152602001612db7565b8381111561129a5750506000910152565b600181811c90821680612df457607f821691505b60208210811415612e1557634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415612e2f57612e2f612e4a565b5060010190565b600082612e4557612e45612e60565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160a01b038116811461168c57600080fd5b6001600160e01b03198116811461168c57600080fdfeddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3efa264697066735822122086b876813763f176ecd588ab7d37946a18b57ff88a14742242e43544648f50c764736f6c63430008060033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
0000000000000000000000006f5cf0fd35bcad84824bf9c26133118e106c17bd0000000000000000000000000000000000000000000000000000000061b8bf800000000000000000000000000000000000000000000000000000000000000060000000000000000000000000000000000000000000000000000000000000002a68747470733a2f2f7365727665722e746865636f6c6c6563746f72736e66742e78797a2f746f6b656e2f00000000000000000000000000000000000000000000
-----Decoded View---------------
Arg [0] : _signerPublicAddress (address): 0x6f5CF0Fd35Bcad84824Bf9c26133118E106C17bD
Arg [1] : _endWhitelistMintingPeriodDateAndTime (uint256): 1639497600
Arg [2] : __baseTokenURI (string): https://server.thecollectorsnft.xyz/token/
-----Encoded View---------------
6 Constructor Arguments found :
Arg [0] : 0000000000000000000000006f5cf0fd35bcad84824bf9c26133118e106c17bd
Arg [1] : 0000000000000000000000000000000000000000000000000000000061b8bf80
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [3] : 000000000000000000000000000000000000000000000000000000000000002a
Arg [4] : 68747470733a2f2f7365727665722e746865636f6c6c6563746f72736e66742e
Arg [5] : 78797a2f746f6b656e2f00000000000000000000000000000000000000000000
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.