Feature Tip: Add private address tag to any address under My Name Tag !
More Info
Private Name Tags
ContractCreator
TokenTracker
Latest 25 from a total of 29 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Safe Transfer Fr... | 20842930 | 195 days ago | IN | 0 ETH | 0.00302962 | ||||
Safe Transfer Fr... | 20842700 | 195 days ago | IN | 0 ETH | 0.00222663 | ||||
Safe Transfer Fr... | 20842690 | 195 days ago | IN | 0 ETH | 0.00262261 | ||||
Safe Transfer Fr... | 20842684 | 195 days ago | IN | 0 ETH | 0.00266386 | ||||
Set Approval For... | 20842646 | 195 days ago | IN | 0 ETH | 0.00091263 | ||||
Safe Transfer Fr... | 20842624 | 195 days ago | IN | 0 ETH | 0.00357136 | ||||
Safe Transfer Fr... | 16628824 | 785 days ago | IN | 0 ETH | 0.01202218 | ||||
Set Approval For... | 16628388 | 786 days ago | IN | 0 ETH | 0.00145015 | ||||
Safe Transfer Fr... | 16411442 | 816 days ago | IN | 0 ETH | 0.00094225 | ||||
Withdraw Funds | 16292957 | 832 days ago | IN | 0 ETH | 0.00052696 | ||||
Set Approval For... | 15919654 | 885 days ago | IN | 0 ETH | 0.00076072 | ||||
Safe Transfer Fr... | 15886494 | 889 days ago | IN | 0 ETH | 0.0026465 | ||||
Safe Transfer Fr... | 15886485 | 889 days ago | IN | 0 ETH | 0.00291933 | ||||
Safe Transfer Fr... | 15886461 | 889 days ago | IN | 0 ETH | 0.00304416 | ||||
Safe Transfer Fr... | 15886446 | 889 days ago | IN | 0 ETH | 0.00276786 | ||||
Enable Public Mi... | 15797299 | 902 days ago | IN | 0 ETH | 0.00110076 | ||||
Allow List Mint | 15794560 | 902 days ago | IN | 0.05 ETH | 0.00172525 | ||||
Allow List Mint | 15792915 | 902 days ago | IN | 0.1 ETH | 0.00210991 | ||||
Allow List Mint | 15791670 | 902 days ago | IN | 0.05 ETH | 0.00277684 | ||||
Allow List Mint | 15791597 | 902 days ago | IN | 0.05 ETH | 0.00414071 | ||||
Allow List Mint | 15791166 | 902 days ago | IN | 0.05 ETH | 0.0029413 | ||||
Allow List Mint | 15790961 | 902 days ago | IN | 0.05 ETH | 0.00404564 | ||||
Allow List Mint | 15790632 | 903 days ago | IN | 0.05 ETH | 0.00402853 | ||||
Allow List Mint | 15790370 | 903 days ago | IN | 0.05 ETH | 0.00165297 | ||||
Allow List Mint | 15790355 | 903 days ago | IN | 0.05 ETH | 0.00363197 |
Latest 1 internal transaction
Advanced mode:
Parent Transaction Hash | Method | Block |
From
|
To
|
|||
---|---|---|---|---|---|---|---|
Transfer | 16292957 | 832 days ago | 0.45 ETH |
Loading...
Loading
Contract Name:
FutureNFTMints
Compiler Version
v0.8.4+commit.c7e474f2
Optimization Enabled:
Yes with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
//SPDX-License-Identifier: Unlicense pragma solidity ^0.8.0; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/security/Pausable.sol"; import "@openzeppelin/contracts/security/ReentrancyGuard.sol"; import "@openzeppelin/contracts/utils/cryptography/MerkleProof.sol"; import "erc721a/contracts/extensions/ERC721AOwnersExplicit.sol"; contract FutureNFTMints is Ownable, Pausable, ReentrancyGuard, ERC721AOwnersExplicit { uint256 public immutable collectionSize; uint256 public immutable numberOfTeamTokens; uint8 public immutable maxPerAddressDuringPresaleMint; uint8 public immutable maxPerAddressDuringPublicMint; uint256 public mintPrice = 50000000000000000; //0.05 ETH priced in WEI bytes32 public allowList; bytes32 public presaleList; bool allowListMintEnabled; bool presaleMintEnabled; bool publicMintEnabled; constructor( uint256 _collectionSize, uint256 _numberOfTeamTokens, uint8 _maxPerAddressDuringPresaleMint, uint8 _maxPerAddressDuringPublicMint ) ERC721A("Future Mints - Annual Pass - Season One", "FMAPS1") { collectionSize = _collectionSize; numberOfTeamTokens = _numberOfTeamTokens; maxPerAddressDuringPresaleMint = _maxPerAddressDuringPresaleMint; maxPerAddressDuringPublicMint = _maxPerAddressDuringPublicMint; require( _numberOfTeamTokens <= _collectionSize, "Team token reserve is smaller than collection size." ); } function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { if (!_exists(tokenId)) revert URIQueryForNonexistentToken(); return 'ipfs://QmNuUQQPvRm5d15GT6LiEoPXja52M2z1w3D6WpDTkZsTdB'; } function _startTokenId() internal pure override returns (uint256) { return 1; } function setMintPrice(uint256 _mintPrice) external onlyOwner { mintPrice = _mintPrice; } function setAllowList(bytes32 _merkleRoot) external onlyOwner { allowList = _merkleRoot; } function setPresaleList(bytes32 _merkleRoot) external onlyOwner { presaleList = _merkleRoot; } function ownerMint(uint256 quantity) external onlyOwner { require(totalSupply() + quantity <= numberOfTeamTokens, "too many already minted before owner mint"); _safeMint(msg.sender, quantity); } modifier callerIsUser() { require(tx.origin == msg.sender, "The caller is another contract"); _; } function allowListMint(uint256 quantity, bytes32[] calldata _merkleProof) external payable callerIsUser { require(isAllowListMintEnabled(), "allow list mint has not begun"); bytes32 leaf = keccak256(abi.encodePacked(msg.sender)); require(MerkleProof.verify(_merkleProof, allowList, leaf), "Address not in allow list"); require(numberMinted(msg.sender) + quantity <= maxPerAddressDuringPresaleMint, "user mint total exceeds maxPerAddressDuringPresaleMint"); require(totalSupply() + quantity <= collectionSize, "mint total exceeds collectionSize"); requireSufficientPayment(quantity * mintPrice); _safeMint(msg.sender, quantity); } function presaleMint(uint256 quantity, bytes32[] calldata _merkleProof) external payable callerIsUser { require(isPresaleMintEnabled(), "presale has not begun"); bytes32 leaf = keccak256(abi.encodePacked(msg.sender)); require(MerkleProof.verify(_merkleProof, presaleList, leaf), "Address not in presale list"); require(numberMinted(msg.sender) + quantity <= maxPerAddressDuringPresaleMint, "user mint total exceeds maxPerAddressDuringPresaleMint"); require(totalSupply() + quantity <= collectionSize, "mint total exceeds collectionSize"); requireSufficientPayment(quantity * mintPrice); _safeMint(msg.sender, quantity); } function publicMint(uint256 quantity) external payable callerIsUser { require(isPublicMintEnabled(), "public mint has not begun"); require(numberMinted(msg.sender) + quantity <= maxPerAddressDuringPublicMint, "user mint total exceeds maxPerAddressDuringPublicMint"); require(totalSupply() + quantity <= collectionSize, "mint total exceeds collectionSize"); requireSufficientPayment(quantity * mintPrice); _safeMint(msg.sender, quantity); } function numberMinted(address owner) public view returns (uint256) { return _numberMinted(owner); } function requireSufficientPayment(uint256 totalCost) private { require(msg.value >= totalCost, "insufficient ETH payment"); } function isAllowListMintEnabled() public view returns(bool) { return allowListMintEnabled; } function isPresaleMintEnabled() public view returns(bool) { return presaleMintEnabled; } function isPublicMintEnabled() public view returns(bool) { return publicMintEnabled; } function enableAllowListMint() external onlyOwner { allowListMintEnabled = true; } function enablePresaleMint() external onlyOwner { presaleMintEnabled = true; } function enablePublicMint() external onlyOwner { publicMintEnabled = true; } function pause() public onlyOwner { _pause(); } function unpause() public onlyOwner { _unpause(); } function setOwnersExplicit(uint256 quantity) external onlyOwner nonReentrant { _setOwnersExplicit(quantity); } function getOwnershipAt(uint256 index) public view returns (TokenOwnership memory) { return _ownerships[index]; } function withdrawFunds() external onlyOwner nonReentrant { (bool success, ) = msg.sender.call{value: address(this).balance}(""); require(success, "Transfer failed."); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (access/Ownable.sol) pragma solidity ^0.8.0; import "../utils/Context.sol"; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (security/Pausable.sol) pragma solidity ^0.8.0; import "../utils/Context.sol"; /** * @dev Contract module which allows children to implement an emergency stop * mechanism that can be triggered by an authorized account. * * This module is used through inheritance. It will make available the * modifiers `whenNotPaused` and `whenPaused`, which can be applied to * the functions of your contract. Note that they will not be pausable by * simply including this module, only once the modifiers are put in place. */ abstract contract Pausable is Context { /** * @dev Emitted when the pause is triggered by `account`. */ event Paused(address account); /** * @dev Emitted when the pause is lifted by `account`. */ event Unpaused(address account); bool private _paused; /** * @dev Initializes the contract in unpaused state. */ constructor() { _paused = false; } /** * @dev Returns true if the contract is paused, and false otherwise. */ function paused() public view virtual returns (bool) { return _paused; } /** * @dev Modifier to make a function callable only when the contract is not paused. * * Requirements: * * - The contract must not be paused. */ modifier whenNotPaused() { require(!paused(), "Pausable: paused"); _; } /** * @dev Modifier to make a function callable only when the contract is paused. * * Requirements: * * - The contract must be paused. */ modifier whenPaused() { require(paused(), "Pausable: not paused"); _; } /** * @dev Triggers stopped state. * * Requirements: * * - The contract must not be paused. */ function _pause() internal virtual whenNotPaused { _paused = true; emit Paused(_msgSender()); } /** * @dev Returns to normal state. * * Requirements: * * - The contract must be paused. */ function _unpause() internal virtual whenPaused { _paused = false; emit Unpaused(_msgSender()); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (security/ReentrancyGuard.sol) pragma solidity ^0.8.0; /** * @dev Contract module that helps prevent reentrant calls to a function. * * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier * available, which can be applied to functions to make sure there are no nested * (reentrant) calls to them. * * Note that because there is a single `nonReentrant` guard, functions marked as * `nonReentrant` may not call one another. This can be worked around by making * those functions `private`, and then adding `external` `nonReentrant` entry * points to them. * * TIP: If you would like to learn more about reentrancy and alternative ways * to protect against it, check out our blog post * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul]. */ abstract contract ReentrancyGuard { // Booleans are more expensive than uint256 or any type that takes up a full // word because each write operation emits an extra SLOAD to first read the // slot's contents, replace the bits taken up by the boolean, and then write // back. This is the compiler's defense against contract upgrades and // pointer aliasing, and it cannot be disabled. // The values being non-zero value makes deployment a bit more expensive, // but in exchange the refund on every call to nonReentrant will be lower in // amount. Since refunds are capped to a percentage of the total // transaction's gas, it is best to keep them low in cases like this one, to // increase the likelihood of the full refund coming into effect. uint256 private constant _NOT_ENTERED = 1; uint256 private constant _ENTERED = 2; uint256 private _status; constructor() { _status = _NOT_ENTERED; } /** * @dev Prevents a contract from calling itself, directly or indirectly. * Calling a `nonReentrant` function from another `nonReentrant` * function is not supported. It is possible to prevent this from happening * by making the `nonReentrant` function external, and making it call a * `private` function that does the actual work. */ modifier nonReentrant() { // On the first call to nonReentrant, _notEntered will be true require(_status != _ENTERED, "ReentrancyGuard: reentrant call"); // Any calls to nonReentrant after this point will fail _status = _ENTERED; _; // By storing the original value once again, a refund is triggered (see // https://eips.ethereum.org/EIPS/eip-2200) _status = _NOT_ENTERED; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.5.0) (utils/cryptography/MerkleProof.sol) pragma solidity ^0.8.0; /** * @dev These functions deal with verification of Merkle Trees proofs. * * The proofs can be generated using the JavaScript library * https://github.com/miguelmota/merkletreejs[merkletreejs]. * Note: the hashing algorithm should be keccak256 and pair sorting should be enabled. * * See `test/utils/cryptography/MerkleProof.test.js` for some examples. */ library MerkleProof { /** * @dev Returns true if a `leaf` can be proved to be a part of a Merkle tree * defined by `root`. For this, a `proof` must be provided, containing * sibling hashes on the branch from the leaf to the root of the tree. Each * pair of leaves and each pair of pre-images are assumed to be sorted. */ function verify( bytes32[] memory proof, bytes32 root, bytes32 leaf ) internal pure returns (bool) { return processProof(proof, leaf) == root; } /** * @dev Returns the rebuilt hash obtained by traversing a Merklee tree up * from `leaf` using `proof`. A `proof` is valid if and only if the rebuilt * hash matches the root of the tree. When processing the proof, the pairs * of leafs & pre-images are assumed to be sorted. * * _Available since v4.4._ */ function processProof(bytes32[] memory proof, bytes32 leaf) internal pure returns (bytes32) { bytes32 computedHash = leaf; for (uint256 i = 0; i < proof.length; i++) { bytes32 proofElement = proof[i]; if (computedHash <= proofElement) { // Hash(current computed hash + current element of the proof) computedHash = _efficientHash(computedHash, proofElement); } else { // Hash(current element of the proof + current computed hash) computedHash = _efficientHash(proofElement, computedHash); } } return computedHash; } function _efficientHash(bytes32 a, bytes32 b) private pure returns (bytes32 value) { assembly { mstore(0x00, a) mstore(0x20, b) value := keccak256(0x00, 0x40) } } }
// SPDX-License-Identifier: MIT // Creator: Chiru Labs pragma solidity ^0.8.4; import '../ERC721A.sol'; error AllOwnershipsHaveBeenSet(); error QuantityMustBeNonZero(); error NoTokensMintedYet(); abstract contract ERC721AOwnersExplicit is ERC721A { uint256 public nextOwnerToExplicitlySet; /** * @dev Explicitly set `owners` to eliminate loops in future calls of ownerOf(). */ function _setOwnersExplicit(uint256 quantity) internal { if (quantity == 0) revert QuantityMustBeNonZero(); if (_currentIndex == _startTokenId()) revert NoTokensMintedYet(); uint256 _nextOwnerToExplicitlySet = nextOwnerToExplicitlySet; if (_nextOwnerToExplicitlySet == 0) { _nextOwnerToExplicitlySet = _startTokenId(); } if (_nextOwnerToExplicitlySet >= _currentIndex) revert AllOwnershipsHaveBeenSet(); // Index underflow is impossible. // Counter or index overflow is incredibly unrealistic. unchecked { uint256 endIndex = _nextOwnerToExplicitlySet + quantity - 1; // Set the end index to be the last token index if (endIndex + 1 > _currentIndex) { endIndex = _currentIndex - 1; } for (uint256 i = _nextOwnerToExplicitlySet; i <= endIndex; i++) { if (_ownerships[i].addr == address(0) && !_ownerships[i].burned) { TokenOwnership memory ownership = ownershipOf(i); _ownerships[i].addr = ownership.addr; _ownerships[i].startTimestamp = ownership.startTimestamp; } } nextOwnerToExplicitlySet = endIndex + 1; } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } }
// SPDX-License-Identifier: MIT // Creator: Chiru Labs pragma solidity ^0.8.4; import '@openzeppelin/contracts/token/ERC721/IERC721.sol'; import '@openzeppelin/contracts/token/ERC721/IERC721Receiver.sol'; import '@openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol'; import '@openzeppelin/contracts/token/ERC721/extensions/IERC721Enumerable.sol'; import '@openzeppelin/contracts/utils/Address.sol'; import '@openzeppelin/contracts/utils/Context.sol'; import '@openzeppelin/contracts/utils/Strings.sol'; import '@openzeppelin/contracts/utils/introspection/ERC165.sol'; error ApprovalCallerNotOwnerNorApproved(); error ApprovalQueryForNonexistentToken(); error ApproveToCaller(); error ApprovalToCurrentOwner(); error BalanceQueryForZeroAddress(); error MintedQueryForZeroAddress(); error BurnedQueryForZeroAddress(); error AuxQueryForZeroAddress(); error MintToZeroAddress(); error MintZeroQuantity(); error OwnerIndexOutOfBounds(); error OwnerQueryForNonexistentToken(); error TokenIndexOutOfBounds(); error TransferCallerNotOwnerNorApproved(); error TransferFromIncorrectOwner(); error TransferToNonERC721ReceiverImplementer(); error TransferToZeroAddress(); error URIQueryForNonexistentToken(); /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including * the Metadata extension. Built to optimize for lower gas during batch mints. * * Assumes serials are sequentially minted starting at _startTokenId() (defaults to 0, e.g. 0, 1, 2, 3..). * * Assumes that an owner cannot have more than 2**64 - 1 (max value of uint64) of supply. * * Assumes that the maximum token id cannot exceed 2**256 - 1 (max value of uint256). */ contract ERC721A is Context, ERC165, IERC721, IERC721Metadata { using Address for address; using Strings for uint256; // Compiler will pack this into a single 256bit word. struct TokenOwnership { // The address of the owner. address addr; // Keeps track of the start time of ownership with minimal overhead for tokenomics. uint64 startTimestamp; // Whether the token has been burned. bool burned; } // Compiler will pack this into a single 256bit word. struct AddressData { // Realistically, 2**64-1 is more than enough. uint64 balance; // Keeps track of mint count with minimal overhead for tokenomics. uint64 numberMinted; // Keeps track of burn count with minimal overhead for tokenomics. uint64 numberBurned; // For miscellaneous variable(s) pertaining to the address // (e.g. number of whitelist mint slots used). // If there are multiple variables, please pack them into a uint64. uint64 aux; } // The tokenId of the next token to be minted. uint256 internal _currentIndex; // The number of tokens burned. uint256 internal _burnCounter; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to ownership details // An empty struct value does not necessarily mean the token is unowned. See ownershipOf implementation for details. mapping(uint256 => TokenOwnership) internal _ownerships; // Mapping owner address to address data mapping(address => AddressData) private _addressData; // Mapping from token ID to approved address mapping(uint256 => address) private _tokenApprovals; // Mapping from owner to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; _currentIndex = _startTokenId(); } /** * To change the starting tokenId, please override this function. */ function _startTokenId() internal view virtual returns (uint256) { return 0; } /** * @dev See {IERC721Enumerable-totalSupply}. * @dev Burned tokens are calculated here, use _totalMinted() if you want to count just minted tokens. */ function totalSupply() public view returns (uint256) { // Counter underflow is impossible as _burnCounter cannot be incremented // more than _currentIndex - _startTokenId() times unchecked { return _currentIndex - _burnCounter - _startTokenId(); } } /** * Returns the total amount of tokens minted in the contract. */ function _totalMinted() internal view returns (uint256) { // Counter underflow is impossible as _currentIndex does not decrement, // and it is initialized to _startTokenId() unchecked { return _currentIndex - _startTokenId(); } } /** * @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 override returns (uint256) { if (owner == address(0)) revert BalanceQueryForZeroAddress(); return uint256(_addressData[owner].balance); } /** * Returns the number of tokens minted by `owner`. */ function _numberMinted(address owner) internal view returns (uint256) { if (owner == address(0)) revert MintedQueryForZeroAddress(); return uint256(_addressData[owner].numberMinted); } /** * Returns the number of tokens burned by or on behalf of `owner`. */ function _numberBurned(address owner) internal view returns (uint256) { if (owner == address(0)) revert BurnedQueryForZeroAddress(); return uint256(_addressData[owner].numberBurned); } /** * Returns the auxillary data for `owner`. (e.g. number of whitelist mint slots used). */ function _getAux(address owner) internal view returns (uint64) { if (owner == address(0)) revert AuxQueryForZeroAddress(); return _addressData[owner].aux; } /** * Sets the auxillary data for `owner`. (e.g. number of whitelist mint slots used). * If there are multiple variables, please pack them into a uint64. */ function _setAux(address owner, uint64 aux) internal { if (owner == address(0)) revert AuxQueryForZeroAddress(); _addressData[owner].aux = aux; } /** * Gas spent here starts off proportional to the maximum mint batch size. * It gradually moves to O(1) as tokens get transferred around in the collection over time. */ function ownershipOf(uint256 tokenId) internal view returns (TokenOwnership memory) { uint256 curr = tokenId; unchecked { if (_startTokenId() <= curr && curr < _currentIndex) { TokenOwnership memory ownership = _ownerships[curr]; if (!ownership.burned) { if (ownership.addr != address(0)) { return ownership; } // Invariant: // There will always be an ownership that has an address and is not burned // before an ownership that does not have an address and is not burned. // Hence, curr will not underflow. while (true) { curr--; ownership = _ownerships[curr]; if (ownership.addr != address(0)) { return ownership; } } } } } revert OwnerQueryForNonexistentToken(); } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view override returns (address) { return ownershipOf(tokenId).addr; } /** * @dev See {IERC721Metadata-name}. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev See {IERC721Metadata-symbol}. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev See {IERC721Metadata-tokenURI}. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { if (!_exists(tokenId)) revert URIQueryForNonexistentToken(); string memory baseURI = _baseURI(); return bytes(baseURI).length != 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : ''; } /** * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each * token will be the concatenation of the `baseURI` and the `tokenId`. Empty * by default, can be overriden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ''; } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public override { address owner = ERC721A.ownerOf(tokenId); if (to == owner) revert ApprovalToCurrentOwner(); if (_msgSender() != owner && !isApprovedForAll(owner, _msgSender())) { revert ApprovalCallerNotOwnerNorApproved(); } _approve(to, tokenId, owner); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view override returns (address) { if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken(); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public override { if (operator == _msgSender()) revert ApproveToCaller(); _operatorApprovals[_msgSender()][operator] = approved; emit ApprovalForAll(_msgSender(), operator, approved); } /** * @dev See {IERC721-isApprovedForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev See {IERC721-transferFrom}. */ function transferFrom( address from, address to, uint256 tokenId ) public virtual override { _transfer(from, to, tokenId); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public virtual override { safeTransferFrom(from, to, tokenId, ''); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory _data ) public virtual override { _transfer(from, to, tokenId); if (to.isContract() && !_checkContractOnERC721Received(from, to, tokenId, _data)) { revert TransferToNonERC721ReceiverImplementer(); } } /** * @dev Returns whether `tokenId` exists. * * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}. * * Tokens start existing when they are minted (`_mint`), */ function _exists(uint256 tokenId) internal view returns (bool) { return _startTokenId() <= tokenId && tokenId < _currentIndex && !_ownerships[tokenId].burned; } function _safeMint(address to, uint256 quantity) internal { _safeMint(to, quantity, ''); } /** * @dev Safely mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called for each safe transfer. * - `quantity` must be greater than 0. * * Emits a {Transfer} event. */ function _safeMint( address to, uint256 quantity, bytes memory _data ) internal { _mint(to, quantity, _data, true); } /** * @dev Mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - `to` cannot be the zero address. * - `quantity` must be greater than 0. * * Emits a {Transfer} event. */ function _mint( address to, uint256 quantity, bytes memory _data, bool safe ) internal { uint256 startTokenId = _currentIndex; if (to == address(0)) revert MintToZeroAddress(); if (quantity == 0) revert MintZeroQuantity(); _beforeTokenTransfers(address(0), to, startTokenId, quantity); // Overflows are incredibly unrealistic. // balance or numberMinted overflow if current value of either + quantity > 1.8e19 (2**64) - 1 // updatedIndex overflows if _currentIndex + quantity > 1.2e77 (2**256) - 1 unchecked { _addressData[to].balance += uint64(quantity); _addressData[to].numberMinted += uint64(quantity); _ownerships[startTokenId].addr = to; _ownerships[startTokenId].startTimestamp = uint64(block.timestamp); uint256 updatedIndex = startTokenId; uint256 end = updatedIndex + quantity; if (safe && to.isContract()) { do { emit Transfer(address(0), to, updatedIndex); if (!_checkContractOnERC721Received(address(0), to, updatedIndex++, _data)) { revert TransferToNonERC721ReceiverImplementer(); } } while (updatedIndex != end); // Reentrancy protection if (_currentIndex != startTokenId) revert(); } else { do { emit Transfer(address(0), to, updatedIndex++); } while (updatedIndex != end); } _currentIndex = updatedIndex; } _afterTokenTransfers(address(0), to, startTokenId, quantity); } /** * @dev Transfers `tokenId` from `from` to `to`. * * Requirements: * * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * * Emits a {Transfer} event. */ function _transfer( address from, address to, uint256 tokenId ) private { TokenOwnership memory prevOwnership = ownershipOf(tokenId); bool isApprovedOrOwner = (_msgSender() == prevOwnership.addr || isApprovedForAll(prevOwnership.addr, _msgSender()) || getApproved(tokenId) == _msgSender()); if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved(); if (prevOwnership.addr != from) revert TransferFromIncorrectOwner(); if (to == address(0)) revert TransferToZeroAddress(); _beforeTokenTransfers(from, to, tokenId, 1); // Clear approvals from the previous owner _approve(address(0), tokenId, prevOwnership.addr); // Underflow of the sender's balance is impossible because we check for // ownership above and the recipient's balance can't realistically overflow. // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256. unchecked { _addressData[from].balance -= 1; _addressData[to].balance += 1; _ownerships[tokenId].addr = to; _ownerships[tokenId].startTimestamp = uint64(block.timestamp); // If the ownership slot of tokenId+1 is not explicitly set, that means the transfer initiator owns it. // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls. uint256 nextTokenId = tokenId + 1; if (_ownerships[nextTokenId].addr == address(0)) { // This will suffice for checking _exists(nextTokenId), // as a burned slot cannot contain the zero address. if (nextTokenId < _currentIndex) { _ownerships[nextTokenId].addr = prevOwnership.addr; _ownerships[nextTokenId].startTimestamp = prevOwnership.startTimestamp; } } } emit Transfer(from, to, tokenId); _afterTokenTransfers(from, to, tokenId, 1); } /** * @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 { TokenOwnership memory prevOwnership = ownershipOf(tokenId); _beforeTokenTransfers(prevOwnership.addr, address(0), tokenId, 1); // Clear approvals from the previous owner _approve(address(0), tokenId, prevOwnership.addr); // Underflow of the sender's balance is impossible because we check for // ownership above and the recipient's balance can't realistically overflow. // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256. unchecked { _addressData[prevOwnership.addr].balance -= 1; _addressData[prevOwnership.addr].numberBurned += 1; // Keep track of who burned the token, and the timestamp of burning. _ownerships[tokenId].addr = prevOwnership.addr; _ownerships[tokenId].startTimestamp = uint64(block.timestamp); _ownerships[tokenId].burned = true; // If the ownership slot of tokenId+1 is not explicitly set, that means the burn initiator owns it. // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls. uint256 nextTokenId = tokenId + 1; if (_ownerships[nextTokenId].addr == address(0)) { // This will suffice for checking _exists(nextTokenId), // as a burned slot cannot contain the zero address. if (nextTokenId < _currentIndex) { _ownerships[nextTokenId].addr = prevOwnership.addr; _ownerships[nextTokenId].startTimestamp = prevOwnership.startTimestamp; } } } emit Transfer(prevOwnership.addr, address(0), tokenId); _afterTokenTransfers(prevOwnership.addr, address(0), tokenId, 1); // Overflow not possible, as _burnCounter cannot be exceed _currentIndex times. unchecked { _burnCounter++; } } /** * @dev Approve `to` to operate on `tokenId` * * Emits a {Approval} event. */ function _approve( address to, uint256 tokenId, address owner ) private { _tokenApprovals[tokenId] = to; emit Approval(owner, to, tokenId); } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target 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 _checkContractOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) { return retval == IERC721Receiver(to).onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert TransferToNonERC721ReceiverImplementer(); } else { assembly { revert(add(32, reason), mload(reason)) } } } } /** * @dev Hook that is called before a set of serially-ordered token ids are about to be transferred. This includes minting. * And also called before burning one token. * * startTokenId - the first token id to be transferred * quantity - the amount to be transferred * * Calling conditions: * * - When `from` and `to` are both non-zero, `from`'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, `tokenId` will be burned by `from`. * - `from` and `to` are never both zero. */ function _beforeTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} /** * @dev Hook that is called after a set of serially-ordered token ids have been transferred. This includes * minting. * And also called after one token has been burned. * * startTokenId - the first token id to be transferred * quantity - the amount to be transferred * * Calling conditions: * * - When `from` and `to` are both non-zero, `from`'s `tokenId` has been * transferred to `to`. * - When `from` is zero, `tokenId` has been minted for `to`. * - When `to` is zero, `tokenId` has been burned by `from`. * - `from` and `to` are never both zero. */ function _afterTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721.sol) pragma solidity ^0.8.0; import "../../utils/introspection/IERC165.sol"; /** * @dev Required interface of an ERC721 compliant contract. */ interface IERC721 is IERC165 { /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @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 // OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721Receiver.sol) pragma solidity ^0.8.0; /** * @title ERC721 token receiver interface * @dev Interface for any contract that wants to support safeTransfers * from ERC721 asset contracts. */ interface IERC721Receiver { /** * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom} * by `operator` from `from`, this function is called. * * It must return its Solidity selector to confirm the token transfer. * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted. * * The selector can be obtained in Solidity with `IERC721.onERC721Received.selector`. */ function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol) pragma solidity ^0.8.0; import "../IERC721.sol"; /** * @title ERC-721 Non-Fungible Token Standard, optional metadata extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Metadata is IERC721 { /** * @dev Returns the token collection name. */ function name() external view returns (string memory); /** * @dev Returns the token collection symbol. */ function symbol() external view returns (string memory); /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) external view returns (string memory); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.5.0) (token/ERC721/extensions/IERC721Enumerable.sol) pragma solidity ^0.8.0; import "../IERC721.sol"; /** * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Enumerable is IERC721 { /** * @dev Returns the total amount of tokens stored by the contract. */ function totalSupply() external view returns (uint256); /** * @dev Returns a token ID owned by `owner` at a given `index` of its token list. * Use along with {balanceOf} to enumerate all of ``owner``'s tokens. */ function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256); /** * @dev Returns a token ID at a given `index` of all the tokens stored by the contract. * Use along with {totalSupply} to enumerate all tokens. */ function tokenByIndex(uint256 index) external view returns (uint256); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.5.0) (utils/Address.sol) pragma solidity ^0.8.1; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== * * [IMPORTANT] * ==== * You shouldn't rely on `isContract` to protect against flash loan attacks! * * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract * constructor. * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize/address.code.length, which returns 0 // for contracts in construction, since the code is only stored at the end // of the constructor execution. return account.code.length > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/Strings.sol) pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef"; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { // Inspired by OraclizeAPI's implementation - MIT licence // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol if (value == 0) { return "0"; } uint256 temp = value; uint256 digits; while (temp != 0) { digits++; temp /= 10; } bytes memory buffer = new bytes(digits); while (value != 0) { digits -= 1; buffer[digits] = bytes1(uint8(48 + uint256(value % 10))); value /= 10; } return string(buffer); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { if (value == 0) { return "0x00"; } uint256 temp = value; uint256 length = 0; while (temp != 0) { length++; temp >>= 8; } return toHexString(value, length); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = _HEX_SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol) pragma solidity ^0.8.0; import "./IERC165.sol"; /** * @dev Implementation of the {IERC165} interface. * * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check * for the additional interface id that will be supported. For example: * * ```solidity * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { * return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId); * } * ``` * * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation. */ abstract contract ERC165 is IERC165 { /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IERC165).interfaceId; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165 { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); }
{ "optimizer": { "enabled": true, "runs": 200 }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } }, "libraries": {} }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"inputs":[{"internalType":"uint256","name":"_collectionSize","type":"uint256"},{"internalType":"uint256","name":"_numberOfTeamTokens","type":"uint256"},{"internalType":"uint8","name":"_maxPerAddressDuringPresaleMint","type":"uint8"},{"internalType":"uint8","name":"_maxPerAddressDuringPublicMint","type":"uint8"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"AllOwnershipsHaveBeenSet","type":"error"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"MintedQueryForZeroAddress","type":"error"},{"inputs":[],"name":"NoTokensMintedYet","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"QuantityMustBeNonZero","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","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"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"inputs":[],"name":"allowList","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"},{"internalType":"bytes32[]","name":"_merkleProof","type":"bytes32[]"}],"name":"allowListMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"collectionSize","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"enableAllowListMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"enablePresaleMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"enablePublicMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"getOwnershipAt","outputs":[{"components":[{"internalType":"address","name":"addr","type":"address"},{"internalType":"uint64","name":"startTimestamp","type":"uint64"},{"internalType":"bool","name":"burned","type":"bool"}],"internalType":"struct ERC721A.TokenOwnership","name":"","type":"tuple"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isAllowListMintEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"isPresaleMintEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isPublicMintEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPerAddressDuringPresaleMint","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPerAddressDuringPublicMint","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mintPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"nextOwnerToExplicitlySet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"numberMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"numberOfTeamTokens","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"ownerMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"presaleList","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"},{"internalType":"bytes32[]","name":"_merkleProof","type":"bytes32[]"}],"name":"presaleMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"publicMint","outputs":[],"stateMutability":"payable","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":"bytes32","name":"_merkleRoot","type":"bytes32"}],"name":"setAllowList","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":"uint256","name":"_mintPrice","type":"uint256"}],"name":"setMintPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"setOwnersExplicit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_merkleRoot","type":"bytes32"}],"name":"setPresaleList","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"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":[],"name":"unpause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdrawFunds","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
61010060405266b1a2bc2ec50000600b553480156200001d57600080fd5b50604051620029c5380380620029c5833981016040819052620000409162000294565b6040518060600160405280602781526020016200299e60279139604080518082019091526006815265464d4150533160d01b6020820152620000823362000187565b6000805460ff60a01b19169055600180558151620000a8906004906020850190620001d7565b508051620000be906005906020840190620001d7565b5060016002555050608084905260a08390527fff0000000000000000000000000000000000000000000000000000000000000060f883811b821660c05282901b1660e052838311156200017d5760405162461bcd60e51b815260206004820152603360248201527f5465616d20746f6b656e207265736572766520697320736d616c6c657220746860448201527f616e20636f6c6c656374696f6e2073697a652e00000000000000000000000000606482015260840160405180910390fd5b505050506200031b565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b828054620001e590620002de565b90600052602060002090601f01602090048101928262000209576000855562000254565b82601f106200022457805160ff191683800117855562000254565b8280016001018555821562000254579182015b828111156200025457825182559160200191906001019062000237565b506200026292915062000266565b5090565b5b8082111562000262576000815560010162000267565b805160ff811681146200028f57600080fd5b919050565b60008060008060808587031215620002aa578384fd5b8451935060208501519250620002c3604086016200027d565b9150620002d3606086016200027d565b905092959194509250565b600181811c90821680620002f357607f821691505b602082108114156200031557634e487b7160e01b600052602260045260246000fd5b50919050565b60805160a05160c05160f81c60e05160f81c6126206200037e6000396000818161058e0152610ca0015260008181610668015261126301526000818161052501526114df01526000818161046701528181610d44015261130801526126206000f3fe6080604052600436106102725760003560e01c806370a082311161014f578063b88d4fde116100c1578063e985e9c51161007a578063e985e9c514610748578063ec8bda8e14610791578063f19e75d4146107a4578063f2523633146107c4578063f2fde38b1461087e578063f4a0a5281461089e57600080fd5b8063b88d4fde146106aa578063c87b56dd146106ca578063d62f3b1c146106ea578063d7224ba0146106ff578063dc33e68114610715578063e3e1e8ef1461073557600080fd5b806387b9d25c1161011357806387b9d25c146105f75780638da5cb5b1461060d57806395d89b411461062b57806398de1450146106405780639c5d637614610656578063a22cb4651461068a57600080fd5b806370a0823114610547578063715018a614610567578063828b03801461057c5780638456cb59146105c257806384584d07146105d757600080fd5b80633b6ea4af116101e8578063586a894d116101ac578063586a894d146104895780635c975abb146104a95780636352211e146104c85780636817c76c146104e85780636ad9b279146104fe5780636c9887d61461051357600080fd5b80633b6ea4af146103ee5780633f4ba83a1461040b57806341603eba1461042057806342842e0e1461043557806345c0f5331461045557600080fd5b80630f1ec42a1161023a5780630f1ec42a1461034257806318160ddd1461035a57806323b872dd1461038657806324600fc3146103a65780632d20fb60146103bb5780632db11544146103db57600080fd5b80630116bc2d1461027757806301ffc9a7146102a657806306fdde03146102c6578063081812fc146102e8578063095ea7b314610320575b600080fd5b34801561028357600080fd5b50600e5462010000900460ff165b60405190151581526020015b60405180910390f35b3480156102b257600080fd5b506102916102c13660046122ec565b6108be565b3480156102d257600080fd5b506102db610910565b60405161029d9190612426565b3480156102f457600080fd5b506103086103033660046122d4565b6109a2565b6040516001600160a01b03909116815260200161029d565b34801561032c57600080fd5b5061034061033b3660046122ab565b6109e6565b005b34801561034e57600080fd5b50600e5460ff16610291565b34801561036657600080fd5b50610378600354600254036000190190565b60405190815260200161029d565b34801561039257600080fd5b506103406103a1366004612161565b610a74565b3480156103b257600080fd5b50610340610a7f565b3480156103c757600080fd5b506103406103d63660046122d4565b610b9c565b6103406103e93660046122d4565b610c27565b3480156103fa57600080fd5b50600e54610100900460ff16610291565b34801561041757600080fd5b50610340610dc0565b34801561042c57600080fd5b50610340610df4565b34801561044157600080fd5b50610340610450366004612161565b610e2f565b34801561046157600080fd5b506103787f000000000000000000000000000000000000000000000000000000000000000081565b34801561049557600080fd5b506103406104a43660046122d4565b610e4a565b3480156104b557600080fd5b50600054600160a01b900460ff16610291565b3480156104d457600080fd5b506103086104e33660046122d4565b610e79565b3480156104f457600080fd5b50610378600b5481565b34801561050a57600080fd5b50610340610e8b565b34801561051f57600080fd5b506103787f000000000000000000000000000000000000000000000000000000000000000081565b34801561055357600080fd5b5061037861056236600461210e565b610ec4565b34801561057357600080fd5b50610340610f13565b34801561058857600080fd5b506105b07f000000000000000000000000000000000000000000000000000000000000000081565b60405160ff909116815260200161029d565b3480156105ce57600080fd5b50610340610f47565b3480156105e357600080fd5b506103406105f23660046122d4565b610f79565b34801561060357600080fd5b50610378600c5481565b34801561061957600080fd5b506000546001600160a01b0316610308565b34801561063757600080fd5b506102db610fa8565b34801561064c57600080fd5b50610378600d5481565b34801561066257600080fd5b506105b07f000000000000000000000000000000000000000000000000000000000000000081565b34801561069657600080fd5b506103406106a5366004612271565b610fb7565b3480156106b657600080fd5b506103406106c536600461219c565b61104d565b3480156106d657600080fd5b506102db6106e53660046122d4565b61109e565b3480156106f657600080fd5b506103406110e5565b34801561070b57600080fd5b50610378600a5481565b34801561072157600080fd5b5061037861073036600461210e565b611122565b610340610743366004612324565b61112d565b34801561075457600080fd5b5061029161076336600461212f565b6001600160a01b03918216600090815260096020908152604080832093909416825291909152205460ff1690565b61034061079f366004612324565b61137c565b3480156107b057600080fd5b506103406107bf3660046122d4565b6114b3565b3480156107d057600080fd5b506108476107df3660046122d4565b604080516060808201835260008083526020808401829052928401819052938452600682529282902082519384018352546001600160a01b0381168452600160a01b810467ffffffffffffffff1691840191909152600160e01b900460ff1615159082015290565b6040805182516001600160a01b0316815260208084015167ffffffffffffffff16908201529181015115159082015260600161029d565b34801561088a57600080fd5b5061034061089936600461210e565b61157a565b3480156108aa57600080fd5b506103406108b93660046122d4565b611612565b60006001600160e01b031982166380ac58cd60e01b14806108ef57506001600160e01b03198216635b5e139f60e01b145b8061090a57506301ffc9a760e01b6001600160e01b03198316145b92915050565b60606004805461091f9061251d565b80601f016020809104026020016040519081016040528092919081815260200182805461094b9061251d565b80156109985780601f1061096d57610100808354040283529160200191610998565b820191906000526020600020905b81548152906001019060200180831161097b57829003601f168201915b5050505050905090565b60006109ad82611641565b6109ca576040516333d1c03960e21b815260040160405180910390fd5b506000908152600860205260409020546001600160a01b031690565b60006109f182610e79565b9050806001600160a01b0316836001600160a01b03161415610a265760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b03821614801590610a465750610a448133610763565b155b15610a64576040516367d9dca160e11b815260040160405180910390fd5b610a6f83838361167a565b505050565b610a6f8383836116d6565b6000546001600160a01b03163314610ab25760405162461bcd60e51b8152600401610aa990612470565b60405180910390fd5b60026001541415610b055760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610aa9565b6002600155604051600090339047908381818185875af1925050503d8060008114610b4c576040519150601f19603f3d011682016040523d82523d6000602084013e610b51565b606091505b5050905080610b955760405162461bcd60e51b815260206004820152601060248201526f2a3930b739b332b9103330b4b632b21760811b6044820152606401610aa9565b5060018055565b6000546001600160a01b03163314610bc65760405162461bcd60e51b8152600401610aa990612470565b60026001541415610c195760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610aa9565b6002600155610b95816118ec565b323314610c465760405162461bcd60e51b8152600401610aa990612439565b600e5462010000900460ff16610c9e5760405162461bcd60e51b815260206004820152601960248201527f7075626c6963206d696e7420686173206e6f7420626567756e000000000000006044820152606401610aa9565b7f000000000000000000000000000000000000000000000000000000000000000060ff1681610ccc33611122565b610cd691906124e6565b1115610d425760405162461bcd60e51b815260206004820152603560248201527f75736572206d696e7420746f74616c2065786365656473206d61785065724164604482015274191c995cdcd11d5c9a5b99d41d589b1a58d35a5b9d605a1b6064820152608401610aa9565b7f000000000000000000000000000000000000000000000000000000000000000081610d75600354600254036000190190565b610d7f91906124e6565b1115610d9d5760405162461bcd60e51b8152600401610aa9906124a5565b610db3600b5482610dae91906124fe565b611a28565b610dbd3382611a78565b50565b6000546001600160a01b03163314610dea5760405162461bcd60e51b8152600401610aa990612470565b610df2611a96565b565b6000546001600160a01b03163314610e1e5760405162461bcd60e51b8152600401610aa990612470565b600e805461ff001916610100179055565b610a6f8383836040518060200160405280600081525061104d565b6000546001600160a01b03163314610e745760405162461bcd60e51b8152600401610aa990612470565b600d55565b6000610e8482611b33565b5192915050565b6000546001600160a01b03163314610eb55760405162461bcd60e51b8152600401610aa990612470565b600e805460ff19166001179055565b60006001600160a01b038216610eed576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526007602052604090205467ffffffffffffffff1690565b6000546001600160a01b03163314610f3d5760405162461bcd60e51b8152600401610aa990612470565b610df26000611c5c565b6000546001600160a01b03163314610f715760405162461bcd60e51b8152600401610aa990612470565b610df2611cac565b6000546001600160a01b03163314610fa35760405162461bcd60e51b8152600401610aa990612470565b600c55565b60606005805461091f9061251d565b6001600160a01b038216331415610fe15760405163b06307db60e01b815260040160405180910390fd5b3360008181526009602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6110588484846116d6565b6001600160a01b0383163b1515801561107a575061107884848484611d34565b155b15611098576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b60606110a982611641565b6110c657604051630a14c4b560e41b815260040160405180910390fd5b6040518060600160405280603581526020016125b66035913992915050565b6000546001600160a01b0316331461110f5760405162461bcd60e51b8152600401610aa990612470565b600e805462ff0000191662010000179055565b600061090a82611e2b565b32331461114c5760405162461bcd60e51b8152600401610aa990612439565b600e54610100900460ff1661119b5760405162461bcd60e51b8152602060048201526015602482015274383932b9b0b632903430b9903737ba103132b3bab760591b6044820152606401610aa9565b6040516bffffffffffffffffffffffff193360601b16602082015260009060340160405160208183030381529060405280519060200120905061121583838080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525050600d549150849050611e81565b6112615760405162461bcd60e51b815260206004820152601b60248201527f41646472657373206e6f7420696e2070726573616c65206c69737400000000006044820152606401610aa9565b7f000000000000000000000000000000000000000000000000000000000000000060ff168461128f33611122565b61129991906124e6565b11156113065760405162461bcd60e51b815260206004820152603660248201527f75736572206d696e7420746f74616c2065786365656473206d61785065724164604482015275191c995cdcd11d5c9a5b99d41c995cd85b19535a5b9d60521b6064820152608401610aa9565b7f000000000000000000000000000000000000000000000000000000000000000084611339600354600254036000190190565b61134391906124e6565b11156113615760405162461bcd60e51b8152600401610aa9906124a5565b611372600b5485610dae91906124fe565b6110983385611a78565b32331461139b5760405162461bcd60e51b8152600401610aa990612439565b600e5460ff166113ed5760405162461bcd60e51b815260206004820152601d60248201527f616c6c6f77206c697374206d696e7420686173206e6f7420626567756e0000006044820152606401610aa9565b6040516bffffffffffffffffffffffff193360601b16602082015260009060340160405160208183030381529060405280519060200120905061146783838080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525050600c549150849050611e81565b6112615760405162461bcd60e51b815260206004820152601960248201527f41646472657373206e6f7420696e20616c6c6f77206c697374000000000000006044820152606401610aa9565b6000546001600160a01b031633146114dd5760405162461bcd60e51b8152600401610aa990612470565b7f000000000000000000000000000000000000000000000000000000000000000081611510600354600254036000190190565b61151a91906124e6565b1115610db35760405162461bcd60e51b815260206004820152602960248201527f746f6f206d616e7920616c7265616479206d696e746564206265666f7265206f6044820152681ddb995c881b5a5b9d60ba1b6064820152608401610aa9565b6000546001600160a01b031633146115a45760405162461bcd60e51b8152600401610aa990612470565b6001600160a01b0381166116095760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610aa9565b610dbd81611c5c565b6000546001600160a01b0316331461163c5760405162461bcd60e51b8152600401610aa990612470565b600b55565b600081600111158015611655575060025482105b801561090a575050600090815260066020526040902054600160e01b900460ff161590565b60008281526008602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b60006116e182611b33565b80519091506000906001600160a01b0316336001600160a01b0316148061170f5750815161170f9033610763565b8061172a57503361171f846109a2565b6001600160a01b0316145b90508061174a57604051632ce44b5f60e11b815260040160405180910390fd5b846001600160a01b031682600001516001600160a01b03161461177f5760405162a1148160e81b815260040160405180910390fd5b6001600160a01b0384166117a657604051633a954ecd60e21b815260040160405180910390fd5b6117b6600084846000015161167a565b6001600160a01b038581166000908152600760209081526040808320805467ffffffffffffffff1980821667ffffffffffffffff92831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600690945282852080546001600160e01b031916909417600160a01b4290921691909102179092559086018083529120549091166118a2576002548110156118a2578251600082815260066020908152604090912080549186015167ffffffffffffffff16600160a01b026001600160e01b03199092166001600160a01b03909316929092171790555b5082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b8061190a576040516356be441560e01b815260040160405180910390fd5b6001600254141561192e5760405163c0367cab60e01b815260040160405180910390fd5b600a548061193a575060015b600254811061195c576040516370e89b1b60e01b815260040160405180910390fd5b60025482820160001981019110156119775750600254600019015b815b818111611a1d576000818152600660205260409020546001600160a01b03161580156119bb5750600081815260066020526040902054600160e01b900460ff16155b15611a155760006119cb82611b33565b805160008481526006602090815260409091208054919093015167ffffffffffffffff16600160a01b026001600160e01b03199091166001600160a01b0390921691909117179055505b600101611979565b50600101600a555050565b80341015610dbd5760405162461bcd60e51b815260206004820152601860248201527f696e73756666696369656e7420455448207061796d656e7400000000000000006044820152606401610aa9565b611a92828260405180602001604052806000815250611e97565b5050565b600054600160a01b900460ff16611ae65760405162461bcd60e51b815260206004820152601460248201527314185d5cd8589b194e881b9bdd081c185d5cd95960621b6044820152606401610aa9565b6000805460ff60a01b191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa335b6040516001600160a01b03909116815260200160405180910390a1565b60408051606081018252600080825260208201819052918101919091528180600111158015611b63575060025481105b15611c4357600081815260066020908152604091829020825160608101845290546001600160a01b0381168252600160a01b810467ffffffffffffffff1692820192909252600160e01b90910460ff16151591810182905290611c415780516001600160a01b031615611bd7579392505050565b5060001901600081815260066020908152604091829020825160608101845290546001600160a01b038116808352600160a01b820467ffffffffffffffff1693830193909352600160e01b900460ff1615159281019290925215611c3c579392505050565b611bd7565b505b604051636f96cda160e11b815260040160405180910390fd5b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b600054600160a01b900460ff1615611cf95760405162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b6044820152606401610aa9565b6000805460ff60a01b1916600160a01b1790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258611b163390565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a0290611d699033908990889088906004016123e9565b602060405180830381600087803b158015611d8357600080fd5b505af1925050508015611db3575060408051601f3d908101601f19168201909252611db091810190612308565b60015b611e0e573d808015611de1576040519150601f19603f3d011682016040523d82523d6000602084013e611de6565b606091505b508051611e06576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050949350505050565b60006001600160a01b038216611e54576040516335ebb31960e01b815260040160405180910390fd5b506001600160a01b0316600090815260076020526040902054600160401b900467ffffffffffffffff1690565b600082611e8e8584611ea4565b14949350505050565b610a6f8383836001611f26565b600081815b8451811015611f1e576000858281518110611ed457634e487b7160e01b600052603260045260246000fd5b60200260200101519050808311611efa5760008381526020829052604090209250611f0b565b600081815260208490526040902092505b5080611f1681612558565b915050611ea9565b509392505050565b6002546001600160a01b038516611f4f57604051622e076360e81b815260040160405180910390fd5b83611f6d5760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038516600081815260076020908152604080832080546fffffffffffffffffffffffffffffffff19811667ffffffffffffffff8083168c018116918217600160401b67ffffffffffffffff1990941690921783900481168c01811690920217909155858452600690925290912080546001600160e01b031916909217600160a01b42909216919091021790558080850183801561201a57506001600160a01b0387163b15155b156120a3575b60405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a461206b6000888480600101955088611d34565b612088576040516368d2bf6b60e11b815260040160405180910390fd5b8082141561202057826002541461209e57600080fd5b6120e9565b5b6040516001830192906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4808214156120a4575b506002556118e5565b80356001600160a01b038116811461210957600080fd5b919050565b60006020828403121561211f578081fd5b612128826120f2565b9392505050565b60008060408385031215612141578081fd5b61214a836120f2565b9150612158602084016120f2565b90509250929050565b600080600060608486031215612175578081fd5b61217e846120f2565b925061218c602085016120f2565b9150604084013590509250925092565b600080600080608085870312156121b1578081fd5b6121ba856120f2565b93506121c8602086016120f2565b925060408501359150606085013567ffffffffffffffff808211156121eb578283fd5b818701915087601f8301126121fe578283fd5b81358181111561221057612210612589565b604051601f8201601f19908116603f0116810190838211818310171561223857612238612589565b816040528281528a6020848701011115612250578586fd5b82602086016020830137918201602001949094529598949750929550505050565b60008060408385031215612283578182fd5b61228c836120f2565b9150602083013580151581146122a0578182fd5b809150509250929050565b600080604083850312156122bd578182fd5b6122c6836120f2565b946020939093013593505050565b6000602082840312156122e5578081fd5b5035919050565b6000602082840312156122fd578081fd5b81356121288161259f565b600060208284031215612319578081fd5b81516121288161259f565b600080600060408486031215612338578283fd5b83359250602084013567ffffffffffffffff80821115612356578384fd5b818601915086601f830112612369578384fd5b813581811115612377578485fd5b8760208260051b850101111561238b578485fd5b6020830194508093505050509250925092565b60008151808452815b818110156123c3576020818501810151868301820152016123a7565b818111156123d45782602083870101525b50601f01601f19169290920160200192915050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061241c9083018461239e565b9695505050505050565b602081526000612128602083018461239e565b6020808252601e908201527f5468652063616c6c657220697320616e6f7468657220636f6e74726163740000604082015260600190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526021908201527f6d696e7420746f74616c206578636565647320636f6c6c656374696f6e53697a6040820152606560f81b606082015260800190565b600082198211156124f9576124f9612573565b500190565b600081600019048311821515161561251857612518612573565b500290565b600181811c9082168061253157607f821691505b6020821081141561255257634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561256c5761256c612573565b5060010190565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610dbd57600080fdfe697066733a2f2f516d4e755551515076526d356431354754364c69456f50586a6135324d327a3177334436577044546b5a73546442a2646970667358221220b76293aacbeddde28b70a43bd96498b5d6b84573910bf04f318f7e32f824a39064736f6c63430008040033467574757265204d696e7473202d20416e6e75616c2050617373202d20536561736f6e204f6e650000000000000000000000000000000000000000000000000000000000000226000000000000000000000000000000000000000000000000000000000000003200000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000005
Deployed Bytecode
0x6080604052600436106102725760003560e01c806370a082311161014f578063b88d4fde116100c1578063e985e9c51161007a578063e985e9c514610748578063ec8bda8e14610791578063f19e75d4146107a4578063f2523633146107c4578063f2fde38b1461087e578063f4a0a5281461089e57600080fd5b8063b88d4fde146106aa578063c87b56dd146106ca578063d62f3b1c146106ea578063d7224ba0146106ff578063dc33e68114610715578063e3e1e8ef1461073557600080fd5b806387b9d25c1161011357806387b9d25c146105f75780638da5cb5b1461060d57806395d89b411461062b57806398de1450146106405780639c5d637614610656578063a22cb4651461068a57600080fd5b806370a0823114610547578063715018a614610567578063828b03801461057c5780638456cb59146105c257806384584d07146105d757600080fd5b80633b6ea4af116101e8578063586a894d116101ac578063586a894d146104895780635c975abb146104a95780636352211e146104c85780636817c76c146104e85780636ad9b279146104fe5780636c9887d61461051357600080fd5b80633b6ea4af146103ee5780633f4ba83a1461040b57806341603eba1461042057806342842e0e1461043557806345c0f5331461045557600080fd5b80630f1ec42a1161023a5780630f1ec42a1461034257806318160ddd1461035a57806323b872dd1461038657806324600fc3146103a65780632d20fb60146103bb5780632db11544146103db57600080fd5b80630116bc2d1461027757806301ffc9a7146102a657806306fdde03146102c6578063081812fc146102e8578063095ea7b314610320575b600080fd5b34801561028357600080fd5b50600e5462010000900460ff165b60405190151581526020015b60405180910390f35b3480156102b257600080fd5b506102916102c13660046122ec565b6108be565b3480156102d257600080fd5b506102db610910565b60405161029d9190612426565b3480156102f457600080fd5b506103086103033660046122d4565b6109a2565b6040516001600160a01b03909116815260200161029d565b34801561032c57600080fd5b5061034061033b3660046122ab565b6109e6565b005b34801561034e57600080fd5b50600e5460ff16610291565b34801561036657600080fd5b50610378600354600254036000190190565b60405190815260200161029d565b34801561039257600080fd5b506103406103a1366004612161565b610a74565b3480156103b257600080fd5b50610340610a7f565b3480156103c757600080fd5b506103406103d63660046122d4565b610b9c565b6103406103e93660046122d4565b610c27565b3480156103fa57600080fd5b50600e54610100900460ff16610291565b34801561041757600080fd5b50610340610dc0565b34801561042c57600080fd5b50610340610df4565b34801561044157600080fd5b50610340610450366004612161565b610e2f565b34801561046157600080fd5b506103787f000000000000000000000000000000000000000000000000000000000000022681565b34801561049557600080fd5b506103406104a43660046122d4565b610e4a565b3480156104b557600080fd5b50600054600160a01b900460ff16610291565b3480156104d457600080fd5b506103086104e33660046122d4565b610e79565b3480156104f457600080fd5b50610378600b5481565b34801561050a57600080fd5b50610340610e8b565b34801561051f57600080fd5b506103787f000000000000000000000000000000000000000000000000000000000000003281565b34801561055357600080fd5b5061037861056236600461210e565b610ec4565b34801561057357600080fd5b50610340610f13565b34801561058857600080fd5b506105b07f000000000000000000000000000000000000000000000000000000000000000581565b60405160ff909116815260200161029d565b3480156105ce57600080fd5b50610340610f47565b3480156105e357600080fd5b506103406105f23660046122d4565b610f79565b34801561060357600080fd5b50610378600c5481565b34801561061957600080fd5b506000546001600160a01b0316610308565b34801561063757600080fd5b506102db610fa8565b34801561064c57600080fd5b50610378600d5481565b34801561066257600080fd5b506105b07f000000000000000000000000000000000000000000000000000000000000000281565b34801561069657600080fd5b506103406106a5366004612271565b610fb7565b3480156106b657600080fd5b506103406106c536600461219c565b61104d565b3480156106d657600080fd5b506102db6106e53660046122d4565b61109e565b3480156106f657600080fd5b506103406110e5565b34801561070b57600080fd5b50610378600a5481565b34801561072157600080fd5b5061037861073036600461210e565b611122565b610340610743366004612324565b61112d565b34801561075457600080fd5b5061029161076336600461212f565b6001600160a01b03918216600090815260096020908152604080832093909416825291909152205460ff1690565b61034061079f366004612324565b61137c565b3480156107b057600080fd5b506103406107bf3660046122d4565b6114b3565b3480156107d057600080fd5b506108476107df3660046122d4565b604080516060808201835260008083526020808401829052928401819052938452600682529282902082519384018352546001600160a01b0381168452600160a01b810467ffffffffffffffff1691840191909152600160e01b900460ff1615159082015290565b6040805182516001600160a01b0316815260208084015167ffffffffffffffff16908201529181015115159082015260600161029d565b34801561088a57600080fd5b5061034061089936600461210e565b61157a565b3480156108aa57600080fd5b506103406108b93660046122d4565b611612565b60006001600160e01b031982166380ac58cd60e01b14806108ef57506001600160e01b03198216635b5e139f60e01b145b8061090a57506301ffc9a760e01b6001600160e01b03198316145b92915050565b60606004805461091f9061251d565b80601f016020809104026020016040519081016040528092919081815260200182805461094b9061251d565b80156109985780601f1061096d57610100808354040283529160200191610998565b820191906000526020600020905b81548152906001019060200180831161097b57829003601f168201915b5050505050905090565b60006109ad82611641565b6109ca576040516333d1c03960e21b815260040160405180910390fd5b506000908152600860205260409020546001600160a01b031690565b60006109f182610e79565b9050806001600160a01b0316836001600160a01b03161415610a265760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b03821614801590610a465750610a448133610763565b155b15610a64576040516367d9dca160e11b815260040160405180910390fd5b610a6f83838361167a565b505050565b610a6f8383836116d6565b6000546001600160a01b03163314610ab25760405162461bcd60e51b8152600401610aa990612470565b60405180910390fd5b60026001541415610b055760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610aa9565b6002600155604051600090339047908381818185875af1925050503d8060008114610b4c576040519150601f19603f3d011682016040523d82523d6000602084013e610b51565b606091505b5050905080610b955760405162461bcd60e51b815260206004820152601060248201526f2a3930b739b332b9103330b4b632b21760811b6044820152606401610aa9565b5060018055565b6000546001600160a01b03163314610bc65760405162461bcd60e51b8152600401610aa990612470565b60026001541415610c195760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610aa9565b6002600155610b95816118ec565b323314610c465760405162461bcd60e51b8152600401610aa990612439565b600e5462010000900460ff16610c9e5760405162461bcd60e51b815260206004820152601960248201527f7075626c6963206d696e7420686173206e6f7420626567756e000000000000006044820152606401610aa9565b7f000000000000000000000000000000000000000000000000000000000000000560ff1681610ccc33611122565b610cd691906124e6565b1115610d425760405162461bcd60e51b815260206004820152603560248201527f75736572206d696e7420746f74616c2065786365656473206d61785065724164604482015274191c995cdcd11d5c9a5b99d41d589b1a58d35a5b9d605a1b6064820152608401610aa9565b7f000000000000000000000000000000000000000000000000000000000000022681610d75600354600254036000190190565b610d7f91906124e6565b1115610d9d5760405162461bcd60e51b8152600401610aa9906124a5565b610db3600b5482610dae91906124fe565b611a28565b610dbd3382611a78565b50565b6000546001600160a01b03163314610dea5760405162461bcd60e51b8152600401610aa990612470565b610df2611a96565b565b6000546001600160a01b03163314610e1e5760405162461bcd60e51b8152600401610aa990612470565b600e805461ff001916610100179055565b610a6f8383836040518060200160405280600081525061104d565b6000546001600160a01b03163314610e745760405162461bcd60e51b8152600401610aa990612470565b600d55565b6000610e8482611b33565b5192915050565b6000546001600160a01b03163314610eb55760405162461bcd60e51b8152600401610aa990612470565b600e805460ff19166001179055565b60006001600160a01b038216610eed576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526007602052604090205467ffffffffffffffff1690565b6000546001600160a01b03163314610f3d5760405162461bcd60e51b8152600401610aa990612470565b610df26000611c5c565b6000546001600160a01b03163314610f715760405162461bcd60e51b8152600401610aa990612470565b610df2611cac565b6000546001600160a01b03163314610fa35760405162461bcd60e51b8152600401610aa990612470565b600c55565b60606005805461091f9061251d565b6001600160a01b038216331415610fe15760405163b06307db60e01b815260040160405180910390fd5b3360008181526009602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6110588484846116d6565b6001600160a01b0383163b1515801561107a575061107884848484611d34565b155b15611098576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b60606110a982611641565b6110c657604051630a14c4b560e41b815260040160405180910390fd5b6040518060600160405280603581526020016125b66035913992915050565b6000546001600160a01b0316331461110f5760405162461bcd60e51b8152600401610aa990612470565b600e805462ff0000191662010000179055565b600061090a82611e2b565b32331461114c5760405162461bcd60e51b8152600401610aa990612439565b600e54610100900460ff1661119b5760405162461bcd60e51b8152602060048201526015602482015274383932b9b0b632903430b9903737ba103132b3bab760591b6044820152606401610aa9565b6040516bffffffffffffffffffffffff193360601b16602082015260009060340160405160208183030381529060405280519060200120905061121583838080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525050600d549150849050611e81565b6112615760405162461bcd60e51b815260206004820152601b60248201527f41646472657373206e6f7420696e2070726573616c65206c69737400000000006044820152606401610aa9565b7f000000000000000000000000000000000000000000000000000000000000000260ff168461128f33611122565b61129991906124e6565b11156113065760405162461bcd60e51b815260206004820152603660248201527f75736572206d696e7420746f74616c2065786365656473206d61785065724164604482015275191c995cdcd11d5c9a5b99d41c995cd85b19535a5b9d60521b6064820152608401610aa9565b7f000000000000000000000000000000000000000000000000000000000000022684611339600354600254036000190190565b61134391906124e6565b11156113615760405162461bcd60e51b8152600401610aa9906124a5565b611372600b5485610dae91906124fe565b6110983385611a78565b32331461139b5760405162461bcd60e51b8152600401610aa990612439565b600e5460ff166113ed5760405162461bcd60e51b815260206004820152601d60248201527f616c6c6f77206c697374206d696e7420686173206e6f7420626567756e0000006044820152606401610aa9565b6040516bffffffffffffffffffffffff193360601b16602082015260009060340160405160208183030381529060405280519060200120905061146783838080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525050600c549150849050611e81565b6112615760405162461bcd60e51b815260206004820152601960248201527f41646472657373206e6f7420696e20616c6c6f77206c697374000000000000006044820152606401610aa9565b6000546001600160a01b031633146114dd5760405162461bcd60e51b8152600401610aa990612470565b7f000000000000000000000000000000000000000000000000000000000000003281611510600354600254036000190190565b61151a91906124e6565b1115610db35760405162461bcd60e51b815260206004820152602960248201527f746f6f206d616e7920616c7265616479206d696e746564206265666f7265206f6044820152681ddb995c881b5a5b9d60ba1b6064820152608401610aa9565b6000546001600160a01b031633146115a45760405162461bcd60e51b8152600401610aa990612470565b6001600160a01b0381166116095760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610aa9565b610dbd81611c5c565b6000546001600160a01b0316331461163c5760405162461bcd60e51b8152600401610aa990612470565b600b55565b600081600111158015611655575060025482105b801561090a575050600090815260066020526040902054600160e01b900460ff161590565b60008281526008602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b60006116e182611b33565b80519091506000906001600160a01b0316336001600160a01b0316148061170f5750815161170f9033610763565b8061172a57503361171f846109a2565b6001600160a01b0316145b90508061174a57604051632ce44b5f60e11b815260040160405180910390fd5b846001600160a01b031682600001516001600160a01b03161461177f5760405162a1148160e81b815260040160405180910390fd5b6001600160a01b0384166117a657604051633a954ecd60e21b815260040160405180910390fd5b6117b6600084846000015161167a565b6001600160a01b038581166000908152600760209081526040808320805467ffffffffffffffff1980821667ffffffffffffffff92831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600690945282852080546001600160e01b031916909417600160a01b4290921691909102179092559086018083529120549091166118a2576002548110156118a2578251600082815260066020908152604090912080549186015167ffffffffffffffff16600160a01b026001600160e01b03199092166001600160a01b03909316929092171790555b5082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b8061190a576040516356be441560e01b815260040160405180910390fd5b6001600254141561192e5760405163c0367cab60e01b815260040160405180910390fd5b600a548061193a575060015b600254811061195c576040516370e89b1b60e01b815260040160405180910390fd5b60025482820160001981019110156119775750600254600019015b815b818111611a1d576000818152600660205260409020546001600160a01b03161580156119bb5750600081815260066020526040902054600160e01b900460ff16155b15611a155760006119cb82611b33565b805160008481526006602090815260409091208054919093015167ffffffffffffffff16600160a01b026001600160e01b03199091166001600160a01b0390921691909117179055505b600101611979565b50600101600a555050565b80341015610dbd5760405162461bcd60e51b815260206004820152601860248201527f696e73756666696369656e7420455448207061796d656e7400000000000000006044820152606401610aa9565b611a92828260405180602001604052806000815250611e97565b5050565b600054600160a01b900460ff16611ae65760405162461bcd60e51b815260206004820152601460248201527314185d5cd8589b194e881b9bdd081c185d5cd95960621b6044820152606401610aa9565b6000805460ff60a01b191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa335b6040516001600160a01b03909116815260200160405180910390a1565b60408051606081018252600080825260208201819052918101919091528180600111158015611b63575060025481105b15611c4357600081815260066020908152604091829020825160608101845290546001600160a01b0381168252600160a01b810467ffffffffffffffff1692820192909252600160e01b90910460ff16151591810182905290611c415780516001600160a01b031615611bd7579392505050565b5060001901600081815260066020908152604091829020825160608101845290546001600160a01b038116808352600160a01b820467ffffffffffffffff1693830193909352600160e01b900460ff1615159281019290925215611c3c579392505050565b611bd7565b505b604051636f96cda160e11b815260040160405180910390fd5b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b600054600160a01b900460ff1615611cf95760405162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b6044820152606401610aa9565b6000805460ff60a01b1916600160a01b1790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258611b163390565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a0290611d699033908990889088906004016123e9565b602060405180830381600087803b158015611d8357600080fd5b505af1925050508015611db3575060408051601f3d908101601f19168201909252611db091810190612308565b60015b611e0e573d808015611de1576040519150601f19603f3d011682016040523d82523d6000602084013e611de6565b606091505b508051611e06576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050949350505050565b60006001600160a01b038216611e54576040516335ebb31960e01b815260040160405180910390fd5b506001600160a01b0316600090815260076020526040902054600160401b900467ffffffffffffffff1690565b600082611e8e8584611ea4565b14949350505050565b610a6f8383836001611f26565b600081815b8451811015611f1e576000858281518110611ed457634e487b7160e01b600052603260045260246000fd5b60200260200101519050808311611efa5760008381526020829052604090209250611f0b565b600081815260208490526040902092505b5080611f1681612558565b915050611ea9565b509392505050565b6002546001600160a01b038516611f4f57604051622e076360e81b815260040160405180910390fd5b83611f6d5760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038516600081815260076020908152604080832080546fffffffffffffffffffffffffffffffff19811667ffffffffffffffff8083168c018116918217600160401b67ffffffffffffffff1990941690921783900481168c01811690920217909155858452600690925290912080546001600160e01b031916909217600160a01b42909216919091021790558080850183801561201a57506001600160a01b0387163b15155b156120a3575b60405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a461206b6000888480600101955088611d34565b612088576040516368d2bf6b60e11b815260040160405180910390fd5b8082141561202057826002541461209e57600080fd5b6120e9565b5b6040516001830192906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4808214156120a4575b506002556118e5565b80356001600160a01b038116811461210957600080fd5b919050565b60006020828403121561211f578081fd5b612128826120f2565b9392505050565b60008060408385031215612141578081fd5b61214a836120f2565b9150612158602084016120f2565b90509250929050565b600080600060608486031215612175578081fd5b61217e846120f2565b925061218c602085016120f2565b9150604084013590509250925092565b600080600080608085870312156121b1578081fd5b6121ba856120f2565b93506121c8602086016120f2565b925060408501359150606085013567ffffffffffffffff808211156121eb578283fd5b818701915087601f8301126121fe578283fd5b81358181111561221057612210612589565b604051601f8201601f19908116603f0116810190838211818310171561223857612238612589565b816040528281528a6020848701011115612250578586fd5b82602086016020830137918201602001949094529598949750929550505050565b60008060408385031215612283578182fd5b61228c836120f2565b9150602083013580151581146122a0578182fd5b809150509250929050565b600080604083850312156122bd578182fd5b6122c6836120f2565b946020939093013593505050565b6000602082840312156122e5578081fd5b5035919050565b6000602082840312156122fd578081fd5b81356121288161259f565b600060208284031215612319578081fd5b81516121288161259f565b600080600060408486031215612338578283fd5b83359250602084013567ffffffffffffffff80821115612356578384fd5b818601915086601f830112612369578384fd5b813581811115612377578485fd5b8760208260051b850101111561238b578485fd5b6020830194508093505050509250925092565b60008151808452815b818110156123c3576020818501810151868301820152016123a7565b818111156123d45782602083870101525b50601f01601f19169290920160200192915050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061241c9083018461239e565b9695505050505050565b602081526000612128602083018461239e565b6020808252601e908201527f5468652063616c6c657220697320616e6f7468657220636f6e74726163740000604082015260600190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526021908201527f6d696e7420746f74616c206578636565647320636f6c6c656374696f6e53697a6040820152606560f81b606082015260800190565b600082198211156124f9576124f9612573565b500190565b600081600019048311821515161561251857612518612573565b500290565b600181811c9082168061253157607f821691505b6020821081141561255257634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561256c5761256c612573565b5060010190565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610dbd57600080fdfe697066733a2f2f516d4e755551515076526d356431354754364c69456f50586a6135324d327a3177334436577044546b5a73546442a2646970667358221220b76293aacbeddde28b70a43bd96498b5d6b84573910bf04f318f7e32f824a39064736f6c63430008040033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
0000000000000000000000000000000000000000000000000000000000000226000000000000000000000000000000000000000000000000000000000000003200000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000005
-----Decoded View---------------
Arg [0] : _collectionSize (uint256): 550
Arg [1] : _numberOfTeamTokens (uint256): 50
Arg [2] : _maxPerAddressDuringPresaleMint (uint8): 2
Arg [3] : _maxPerAddressDuringPublicMint (uint8): 5
-----Encoded View---------------
4 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000226
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000032
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000002
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000005
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 34 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|
Loading...
Loading
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.