Feature Tip: Add private address tag to any address under My Name Tag !
NFT
Overview
TokenID
4740
Total Transfers
-
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract
Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
Hikari
Compiler Version
v0.8.13+commit.abaa5c0e
Optimization Enabled:
Yes with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: MIT pragma solidity ^0.8.7; import "https://github.com/chiru-labs/ERC721A/blob/main/contracts/ERC721A.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/utils/cryptography/MerkleProof.sol"; import "@openzeppelin/contracts/security/ReentrancyGuard.sol"; contract Hikari is ERC721A, Ownable, ReentrancyGuard { using Strings for string; uint public constant MAX_TOKENS = 5555; uint public PRESALE_LIMIT = 5555; uint public presaleTokensSold = 0; uint public constant NUMBER_RESERVED_TOKENS = 10; uint256 public PRICE = 0.09 ether; //for stage 2 uint public perAddressLimit = 1; bool public saleIsActive = false; bool public preSaleIsActive = false; bool public whitelist = true; bool public revealed = false; uint public reservedTokensMinted = 0; string private _baseTokenURI; string public notRevealedUri; bytes32 root; bytes32 rootML; //for Mark of Legends whitelist mapping(address => uint) public addressMintedBalance; //Dutch auction settings struct TokenBatchPriceData { uint128 pricePaid; uint8 quantityMinted; } mapping(address => TokenBatchPriceData[]) public userToTokenBatchPriceData; mapping(address => uint) public addressMintedBalanceDA; uint256 public DA_STARTING_TIMESTAMP = 1649620800; //10th April 4pm EST uint256 public DA_QUANTITY = 1850; uint256 public DA_STARTING_PRICE = 0.3 ether; uint256 public DA_ENDING_PRICE = 0.1 ether; uint256 public DA_DECREMENT = 0.05 ether; uint256 public DA_DECREMENT_FREQUENCY = 1200; //decrement price every 1200 seconds (20 minutes). uint256 public DA_FINAL_PRICE; bool public DA_FINISHED = false; constructor() ERC721A("Hikari", "Hikari") {} function currentPrice() public view returns (uint256) { require(block.timestamp >= DA_STARTING_TIMESTAMP, "Dutch auction has not started!"); if (DA_FINAL_PRICE > 0) return DA_FINAL_PRICE; uint256 timeSinceStart = block.timestamp - DA_STARTING_TIMESTAMP; uint256 decrementsSinceStart = timeSinceStart / DA_DECREMENT_FREQUENCY; uint256 totalDecrement = decrementsSinceStart * DA_DECREMENT; //How much eth to remove //If how much we want to reduce is greater or equal to the range, return the lowest value if (totalDecrement >= DA_STARTING_PRICE - DA_ENDING_PRICE) { return DA_ENDING_PRICE; } return DA_STARTING_PRICE - totalDecrement; } function mintDutchAuction(uint8 amount) public payable { require(block.timestamp >= DA_STARTING_TIMESTAMP, "Dutch auction has not started!"); require(!DA_FINISHED, "Dutch auction not active"); require(amount > 0 && amount <= 4, "Max 4 NFTs per transaction"); require(addressMintedBalanceDA[msg.sender] + amount <= 100, "Max NFT per address exceeded"); uint256 _currentPrice = currentPrice(); require(msg.value >= amount * _currentPrice, "Not enough ETH for transaction"); require(totalSupply() + amount <= DA_QUANTITY, "Purchase would exceed max supply"); require(totalSupply() + amount <= MAX_TOKENS - (NUMBER_RESERVED_TOKENS - reservedTokensMinted), "Purchase would exceed max supply"); require(msg.sender == tx.origin, "No transaction from smart contracts!"); if (totalSupply() + amount == DA_QUANTITY) DA_FINAL_PRICE = _currentPrice; userToTokenBatchPriceData[msg.sender].push(TokenBatchPriceData(uint128(msg.value), amount)); addressMintedBalanceDA[msg.sender] += amount; _safeMint(msg.sender, amount); } function refundExtraETH() public nonReentrant { require(msg.sender == tx.origin, "No transaction from smart contracts!"); require(DA_FINAL_PRICE > 0, "Dutch action must be over!"); uint256 totalRefund; for (uint256 i = userToTokenBatchPriceData[msg.sender].length; i > 0; i--) { uint256 expectedPrice = userToTokenBatchPriceData[msg.sender][i - 1].quantityMinted * DA_FINAL_PRICE; uint256 refund = userToTokenBatchPriceData[msg.sender][i - 1].pricePaid - expectedPrice; userToTokenBatchPriceData[msg.sender].pop(); totalRefund += refund; } (bool success, ) = payable(msg.sender).call{value: totalRefund}(""); require(success, "Transfer failed"); } function mintToken(uint8 amount, bytes32[] memory proof, bool isMarkOfLegends) external payable { require(preSaleIsActive || saleIsActive, "Sale must be active to mint"); require(!preSaleIsActive || presaleTokensSold + amount <= PRESALE_LIMIT, "Purchase would exceed max supply"); if (isMarkOfLegends) { require(!whitelist || verifyML(proof), "Address not whitelisted"); require(!preSaleIsActive || addressMintedBalance[msg.sender] + amount <= 2, "Max NFT per address exceeded"); } else { require(!whitelist || verify(proof), "Address not whitelisted"); require(!preSaleIsActive || addressMintedBalance[msg.sender] + amount <= perAddressLimit, "Max NFT per address exceeded"); } require(amount > 0 && amount <= 4, "Max 4 NFTs per transaction"); require(totalSupply() + amount <= MAX_TOKENS - (NUMBER_RESERVED_TOKENS - reservedTokensMinted), "Purchase would exceed max supply"); require(msg.value >= PRICE * amount, "Not enough ETH for transaction"); require(msg.sender == tx.origin, "No transaction from smart contracts!"); if (preSaleIsActive) { presaleTokensSold += amount; addressMintedBalance[msg.sender] += amount; } _safeMint(msg.sender, amount); } function setDA_STARTING_TIMESTAMP(uint256 newDA_STARTING_TIMESTAMP) external onlyOwner { DA_STARTING_TIMESTAMP = newDA_STARTING_TIMESTAMP; } function finishDA(uint256 _price) external onlyOwner { DA_FINISHED = true; DA_FINAL_PRICE = _price; } //case ethereum does something crazy, and for setting stage 3 price function setPrice(uint256 newPrice) external onlyOwner { PRICE = newPrice; } function setPresaleLimit(uint newLimit) external onlyOwner { PRESALE_LIMIT = newLimit; } function setPerAddressLimit(uint newLimit) external onlyOwner { perAddressLimit = newLimit; } function setNotRevealedURI(string memory _notRevealedURI) public onlyOwner { notRevealedUri = _notRevealedURI; } function reveal() public onlyOwner { revealed = true; } function flipSaleState() external onlyOwner { saleIsActive = !saleIsActive; } function flipPreSaleState() external onlyOwner { preSaleIsActive = !preSaleIsActive; } function flipWhitelistingState() external onlyOwner { whitelist = !whitelist; } function mintReservedTokens(address to, uint256 amount) external onlyOwner { require(reservedTokensMinted + amount <= NUMBER_RESERVED_TOKENS, "This amount is more than max allowed"); reservedTokensMinted+= amount; _safeMint(to, amount); } function withdraw() external nonReentrant onlyOwner { (bool success, ) = owner().call{value: address(this).balance}(""); require(success, "Transfer failed"); } function setRoot(bytes32 _root) external onlyOwner { root = _root; } function setRootML(bytes32 _root) external onlyOwner { rootML = _root; //for Mark of Legends whitelist } function verify(bytes32[] memory proof) internal view returns (bool) { bytes32 leaf = keccak256(abi.encodePacked(msg.sender)); return MerkleProof.verify(proof, root, leaf); } function verifyML(bytes32[] memory proof) internal view returns (bool) { bytes32 leaf = keccak256(abi.encodePacked(msg.sender)); //for Mark of Legends whitelist return MerkleProof.verify(proof, rootML, leaf); } function tokenOfOwnerByIndex(address owner, uint256 index) public view returns (uint256) { uint256 numMintedSoFar = _currentIndex; uint256 tokenIdsIdx; address currOwnershipAddr; // Counter overflow is impossible as the loop breaks when // uint256 i is equal to another uint256 numMintedSoFar. unchecked { for (uint256 i; i < numMintedSoFar; i++) { TokenOwnership memory ownership = _ownerships[i]; if (ownership.burned) { continue; } if (ownership.addr != address(0)) { currOwnershipAddr = ownership.addr; } if (currOwnershipAddr == owner) { if (tokenIdsIdx == index) { return i; } tokenIdsIdx++; } } } // Execution should never reach this point. revert(); } //// //URI management part //// function _baseURI() internal view virtual override returns (string memory) { return _baseTokenURI; } function setBaseURI(string calldata baseURI) external onlyOwner { _baseTokenURI = baseURI; } function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token"); if(revealed == false) { return notRevealedUri; } string memory _tokenURI = super.tokenURI(tokenId); return bytes(_tokenURI).length > 0 ? string(abi.encodePacked(_tokenURI, ".json")) : ""; } }
// 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 // 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 // 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/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 MintToZeroAddress(); error MintZeroQuantity(); error OwnerQueryForNonexistentToken(); 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 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) { 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) { 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) { 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 { _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 virtual 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); if (prevOwnership.addr != from) revert TransferFromIncorrectOwner(); bool isApprovedOrOwner = (_msgSender() == from || isApprovedForAll(from, _msgSender()) || getApproved(tokenId) == _msgSender()); if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved(); if (to == address(0)) revert TransferToZeroAddress(); _beforeTokenTransfers(from, to, tokenId, 1); // Clear approvals from the previous owner _approve(address(0), tokenId, from); // 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; TokenOwnership storage currSlot = _ownerships[tokenId]; currSlot.addr = to; currSlot.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; TokenOwnership storage nextSlot = _ownerships[nextTokenId]; if (nextSlot.addr == address(0)) { // This will suffice for checking _exists(nextTokenId), // as a burned slot cannot contain the zero address. if (nextTokenId != _currentIndex) { nextSlot.addr = from; nextSlot.startTimestamp = prevOwnership.startTimestamp; } } } emit Transfer(from, to, tokenId); _afterTokenTransfers(from, to, tokenId, 1); } /** * @dev This is equivalent to _burn(tokenId, false) */ function _burn(uint256 tokenId) internal virtual { _burn(tokenId, false); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId, bool approvalCheck) internal virtual { TokenOwnership memory prevOwnership = _ownershipOf(tokenId); address from = prevOwnership.addr; if (approvalCheck) { bool isApprovedOrOwner = (_msgSender() == from || isApprovedForAll(from, _msgSender()) || getApproved(tokenId) == _msgSender()); if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved(); } _beforeTokenTransfers(from, address(0), tokenId, 1); // Clear approvals from the previous owner _approve(address(0), tokenId, from); // 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 storage addressData = _addressData[from]; addressData.balance -= 1; addressData.numberBurned += 1; // Keep track of who burned the token, and the timestamp of burning. TokenOwnership storage currSlot = _ownerships[tokenId]; currSlot.addr = from; currSlot.startTimestamp = uint64(block.timestamp); currSlot.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; TokenOwnership storage nextSlot = _ownerships[nextTokenId]; if (nextSlot.addr == address(0)) { // This will suffice for checking _exists(nextTokenId), // as a burned slot cannot contain the zero address. if (nextTokenId != _currentIndex) { nextSlot.addr = from; nextSlot.startTimestamp = prevOwnership.startTimestamp; } } } emit Transfer(from, address(0), tokenId); _afterTokenTransfers(from, 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 (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/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/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 // 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 (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 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/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 (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" ] } } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"DA_DECREMENT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"DA_DECREMENT_FREQUENCY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"DA_ENDING_PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"DA_FINAL_PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"DA_FINISHED","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"DA_QUANTITY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"DA_STARTING_PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"DA_STARTING_TIMESTAMP","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_TOKENS","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"NUMBER_RESERVED_TOKENS","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PRESALE_LIMIT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"addressMintedBalance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"addressMintedBalanceDA","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","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":"currentPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_price","type":"uint256"}],"name":"finishDA","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"flipPreSaleState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"flipSaleState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"flipWhitelistingState","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":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint8","name":"amount","type":"uint8"}],"name":"mintDutchAuction","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mintReservedTokens","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint8","name":"amount","type":"uint8"},{"internalType":"bytes32[]","name":"proof","type":"bytes32[]"},{"internalType":"bool","name":"isMarkOfLegends","type":"bool"}],"name":"mintToken","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"notRevealedUri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"perAddressLimit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"preSaleIsActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"presaleTokensSold","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"refundExtraETH","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"reservedTokensMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"reveal","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"saleIsActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newDA_STARTING_TIMESTAMP","type":"uint256"}],"name":"setDA_STARTING_TIMESTAMP","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_notRevealedURI","type":"string"}],"name":"setNotRevealedURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newLimit","type":"uint256"}],"name":"setPerAddressLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newLimit","type":"uint256"}],"name":"setPresaleLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newPrice","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_root","type":"bytes32"}],"name":"setRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_root","type":"bytes32"}],"name":"setRootML","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":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"uint256","name":"","type":"uint256"}],"name":"userToTokenBatchPriceData","outputs":[{"internalType":"uint128","name":"pricePaid","type":"uint128"},{"internalType":"uint8","name":"quantityMinted","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"whitelist","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60806040526115b3600a556000600b81905567013fbe85edc90000600c556001600d55600e805463ffffffff191662010000179055600f55636253374060175561073a601855670429d069189e000060195567016345785d8a0000601a5566b1a2bc2ec50000601b556104b0601c55601e805460ff191690553480156200008557600080fd5b5060408051808201825260068082526548696b61726960d01b602080840182815285518087019096529285528401528151919291620000c7916002916200014c565b508051620000dd9060039060208401906200014c565b50506000805550620000ef33620000fa565b60016009556200022e565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b8280546200015a90620001f2565b90600052602060002090601f0160209004810192826200017e5760008555620001c9565b82601f106200019957805160ff1916838001178555620001c9565b82800160010185558215620001c9579182015b82811115620001c9578251825591602001919060010190620001ac565b50620001d7929150620001db565b5090565b5b80821115620001d75760008155600101620001dc565b600181811c908216806200020757607f821691505b6020821081036200022857634e487b7160e01b600052602260045260246000fd5b50919050565b613261806200023e6000396000f3fe6080604052600436106103975760003560e01c80638da5cb5b116101dc578063b92441e111610102578063eb8d2444116100a0578063f3e388211161006f578063f3e3882114610a39578063f47c84c514610a4f578063f5998ed814610a65578063f89d2e4d14610a7b57600080fd5b8063eb8d2444146109ca578063f0325549146109e4578063f2c4ce1e146109f9578063f2fde38b14610a1957600080fd5b8063dab5f340116100dc578063dab5f3401461092b578063e7edcd931461094b578063e985e9c51461096b578063ea18dc5c146109b457600080fd5b8063b92441e1146108c9578063b9765a1f146108f6578063c87b56dd1461090b57600080fd5b80639d1b464a1161017a578063afdaaf3411610149578063afdaaf3414610864578063b22edfbc1461087e578063b812937114610893578063b88d4fde146108a957600080fd5b80639d1b464a146107fa5780639dcfb8a91461080f578063a22cb4651461082f578063a475b5dd1461084f57600080fd5b806395d89b41116101b657806395d89b41146107a4578063969a55ec146107b957806397f65c08146107ce578063996e52b5146107e457600080fd5b80638da5cb5b1461074657806391b7f5ed1461076457806393e59dc11461078457600080fd5b806334918dfd116102c15780636007eeed1161025f57806378615c321161022e57806378615c32146106e75780637fd255f1146106fd57806383e6848d1461071d5780638d859f3e1461073057600080fd5b80636007eeed1461067c5780636352211e1461069257806370a08231146106b2578063715018a6146106d257600080fd5b806342842e0e1161029b57806342842e0e146105fb578063518302271461061b57806355f804b31461063c57806357535c431461065c57600080fd5b806334918dfd146105b15780633ccfd60b146105c65780633fb6ffdf146105db57600080fd5b80631aee3f911161033957806329f767e81161030857806329f767e81461051a5780632b4519fb1461053a5780632f745c591461057b578063341c33041461059b57600080fd5b80631aee3f91146104b25780631eeabf2d146104c85780631f0234d8146104db57806323b872dd146104fa57600080fd5b8063081c8c4411610375578063081c8c441461042b578063095ea7b31461044057806318160ddd1461046257806318cae2691461048557600080fd5b806301ffc9a71461039c57806306fdde03146103d1578063081812fc146103f3575b600080fd5b3480156103a857600080fd5b506103bc6103b7366004612aec565b610a91565b60405190151581526020015b60405180910390f35b3480156103dd57600080fd5b506103e6610ae3565b6040516103c89190612b61565b3480156103ff57600080fd5b5061041361040e366004612b74565b610b75565b6040516001600160a01b0390911681526020016103c8565b34801561043757600080fd5b506103e6610bb9565b34801561044c57600080fd5b5061046061045b366004612ba9565b610c47565b005b34801561046e57600080fd5b50600154600054035b6040519081526020016103c8565b34801561049157600080fd5b506104776104a0366004612bd3565b60146020526000908152604090205481565b3480156104be57600080fd5b50610477600a5481565b6104606104d6366004612c55565b610cd4565b3480156104e757600080fd5b50600e546103bc90610100900460ff1681565b34801561050657600080fd5b50610460610515366004612d1d565b611089565b34801561052657600080fd5b50610460610535366004612b74565b611094565b34801561054657600080fd5b5061055a610555366004612ba9565b6110c3565b604080516001600160801b03909316835260ff9091166020830152016103c8565b34801561058757600080fd5b50610477610596366004612ba9565b611106565b3480156105a757600080fd5b50610477600b5481565b3480156105bd57600080fd5b506104606111cd565b3480156105d257600080fd5b5061046061120b565b3480156105e757600080fd5b506104606105f6366004612b74565b61133a565b34801561060757600080fd5b50610460610616366004612d1d565b611369565b34801561062757600080fd5b50600e546103bc906301000000900460ff1681565b34801561064857600080fd5b50610460610657366004612d59565b611384565b34801561066857600080fd5b50610460610677366004612ba9565b6113ba565b34801561068857600080fd5b50610477600d5481565b34801561069e57600080fd5b506104136106ad366004612b74565b611474565b3480156106be57600080fd5b506104776106cd366004612bd3565b611486565b3480156106de57600080fd5b506104606114d4565b3480156106f357600080fd5b5061047760175481565b34801561070957600080fd5b50610460610718366004612b74565b61150a565b61046061072b366004612dca565b611539565b34801561073c57600080fd5b50610477600c5481565b34801561075257600080fd5b506008546001600160a01b0316610413565b34801561077057600080fd5b5061046061077f366004612b74565b611858565b34801561079057600080fd5b50600e546103bc9062010000900460ff1681565b3480156107b057600080fd5b506103e6611887565b3480156107c557600080fd5b50610460611896565b3480156107da57600080fd5b50610477601a5481565b3480156107f057600080fd5b50610477601c5481565b34801561080657600080fd5b506104776118df565b34801561081b57600080fd5b5061046061082a366004612b74565b6119af565b34801561083b57600080fd5b5061046061084a366004612de5565b6119eb565b34801561085b57600080fd5b50610460611a80565b34801561087057600080fd5b50601e546103bc9060ff1681565b34801561088a57600080fd5b50610477600a81565b34801561089f57600080fd5b50610477601b5481565b3480156108b557600080fd5b506104606108c4366004612e6f565b611abf565b3480156108d557600080fd5b506104776108e4366004612bd3565b60166020526000908152604090205481565b34801561090257600080fd5b50610460611b10565b34801561091757600080fd5b506103e6610926366004612b74565b611d87565b34801561093757600080fd5b50610460610946366004612b74565b611ef1565b34801561095757600080fd5b50610460610966366004612b74565b611f20565b34801561097757600080fd5b506103bc610986366004612eea565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b3480156109c057600080fd5b5061047760185481565b3480156109d657600080fd5b50600e546103bc9060ff1681565b3480156109f057600080fd5b50610460611f4f565b348015610a0557600080fd5b50610460610a14366004612f14565b611f96565b348015610a2557600080fd5b50610460610a34366004612bd3565b611fd3565b348015610a4557600080fd5b50610477600f5481565b348015610a5b57600080fd5b506104776115b381565b348015610a7157600080fd5b50610477601d5481565b348015610a8757600080fd5b5061047760195481565b60006001600160e01b031982166380ac58cd60e01b1480610ac257506001600160e01b03198216635b5e139f60e01b145b80610add57506301ffc9a760e01b6001600160e01b03198316145b92915050565b606060028054610af290612f5c565b80601f0160208091040260200160405190810160405280929190818152602001828054610b1e90612f5c565b8015610b6b5780601f10610b4057610100808354040283529160200191610b6b565b820191906000526020600020905b815481529060010190602001808311610b4e57829003601f168201915b5050505050905090565b6000610b808261206e565b610b9d576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b60118054610bc690612f5c565b80601f0160208091040260200160405190810160405280929190818152602001828054610bf290612f5c565b8015610c3f5780601f10610c1457610100808354040283529160200191610c3f565b820191906000526020600020905b815481529060010190602001808311610c2257829003601f168201915b505050505081565b6000610c5282611474565b9050806001600160a01b0316836001600160a01b031603610c865760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b03821614801590610ca65750610ca48133610986565b155b15610cc4576040516367d9dca160e11b815260040160405180910390fd5b610ccf838383612099565b505050565b600e54610100900460ff1680610cec5750600e5460ff165b610d3d5760405162461bcd60e51b815260206004820152601b60248201527f53616c65206d7573742062652061637469766520746f206d696e74000000000060448201526064015b60405180910390fd5b600e54610100900460ff161580610d665750600a548360ff16600b54610d639190612fac565b11155b610d825760405162461bcd60e51b8152600401610d3490612fc4565b8015610e4157600e5462010000900460ff161580610da45750610da4826120f5565b610dea5760405162461bcd60e51b81526020600482015260176024820152761059191c995cdcc81b9bdd081dda1a5d195b1a5cdd1959604a1b6044820152606401610d34565b600e54610100900460ff161580610e20575033600090815260146020526040902054600290610e1d9060ff861690612fac565b11155b610e3c5760405162461bcd60e51b8152600401610d3490612ff9565b610ef5565b600e5462010000900460ff161580610e5d5750610e5d8261213d565b610ea35760405162461bcd60e51b81526020600482015260176024820152761059191c995cdcc81b9bdd081dda1a5d195b1a5cdd1959604a1b6044820152606401610d34565b600e54610100900460ff161580610ed95750600d5433600090815260146020526040902054610ed69060ff861690612fac565b11155b610ef55760405162461bcd60e51b8152600401610d3490612ff9565b60008360ff16118015610f0c575060048360ff1611155b610f585760405162461bcd60e51b815260206004820152601a60248201527f4d61782034204e46547320706572207472616e73616374696f6e0000000000006044820152606401610d34565b600f54610f6690600a613030565b610f72906115b3613030565b8360ff16610f836001546000540390565b610f8d9190612fac565b1115610fab5760405162461bcd60e51b8152600401610d3490612fc4565b8260ff16600c54610fbc9190613047565b34101561100b5760405162461bcd60e51b815260206004820152601e60248201527f4e6f7420656e6f7567682045544820666f72207472616e73616374696f6e00006044820152606401610d34565b33321461102a5760405162461bcd60e51b8152600401610d3490613066565b600e54610100900460ff161561107c578260ff16600b600082825461104f9190612fac565b9091555050336000908152601460205260408120805460ff86169290611076908490612fac565b90915550505b610ccf338460ff16612185565b610ccf83838361219f565b6008546001600160a01b031633146110be5760405162461bcd60e51b8152600401610d34906130aa565b600d55565b601560205281600052604060002081815481106110df57600080fd5b6000918252602090912001546001600160801b0381169250600160801b900460ff16905082565b600080548180805b838110156111c757600081815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff16158015928201929092529061117557506111bf565b80516001600160a01b03161561118a57805192505b876001600160a01b0316836001600160a01b0316036111bd578684036111b657509350610add92505050565b6001909301925b505b60010161110e565b50600080fd5b6008546001600160a01b031633146111f75760405162461bcd60e51b8152600401610d34906130aa565b600e805460ff19811660ff90911615179055565b60026009540361125d5760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610d34565b60026009556008546001600160a01b0316331461128c5760405162461bcd60e51b8152600401610d34906130aa565b60006112a06008546001600160a01b031690565b6001600160a01b03164760405160006040518083038185875af1925050503d80600081146112ea576040519150601f19603f3d011682016040523d82523d6000602084013e6112ef565b606091505b50509050806113325760405162461bcd60e51b815260206004820152600f60248201526e151c985b9cd9995c8819985a5b1959608a1b6044820152606401610d34565b506001600955565b6008546001600160a01b031633146113645760405162461bcd60e51b8152600401610d34906130aa565b601755565b610ccf83838360405180602001604052806000815250611abf565b6008546001600160a01b031633146113ae5760405162461bcd60e51b8152600401610d34906130aa565b610ccf601083836129c9565b6008546001600160a01b031633146113e45760405162461bcd60e51b8152600401610d34906130aa565b600a81600f546113f49190612fac565b111561144e5760405162461bcd60e51b8152602060048201526024808201527f5468697320616d6f756e74206973206d6f7265207468616e206d617820616c6c6044820152631bddd95960e21b6064820152608401610d34565b80600f60008282546114609190612fac565b9091555061147090508282612185565b5050565b600061147f8261238d565b5192915050565b60006001600160a01b0382166114af576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b03166000908152600560205260409020546001600160401b031690565b6008546001600160a01b031633146114fe5760405162461bcd60e51b8152600401610d34906130aa565b61150860006124a7565b565b6008546001600160a01b031633146115345760405162461bcd60e51b8152600401610d34906130aa565b600a55565b60175442101561158b5760405162461bcd60e51b815260206004820152601e60248201527f44757463682061756374696f6e20686173206e6f7420737461727465642100006044820152606401610d34565b601e5460ff16156115de5760405162461bcd60e51b815260206004820152601860248201527f44757463682061756374696f6e206e6f742061637469766500000000000000006044820152606401610d34565b60008160ff161180156115f5575060048160ff1611155b6116415760405162461bcd60e51b815260206004820152601a60248201527f4d61782034204e46547320706572207472616e73616374696f6e0000000000006044820152606401610d34565b336000908152601660205260409020546064906116629060ff841690612fac565b11156116805760405162461bcd60e51b8152600401610d3490612ff9565b600061168a6118df565b90506116998160ff8416613047565b3410156116e85760405162461bcd60e51b815260206004820152601e60248201527f4e6f7420656e6f7567682045544820666f72207472616e73616374696f6e00006044820152606401610d34565b6018548260ff166116fc6001546000540390565b6117069190612fac565b11156117245760405162461bcd60e51b8152600401610d3490612fc4565b600f5461173290600a613030565b61173e906115b3613030565b8260ff1661174f6001546000540390565b6117599190612fac565b11156117775760405162461bcd60e51b8152600401610d3490612fc4565b3332146117965760405162461bcd60e51b8152600401610d3490613066565b6018548260ff166117aa6001546000540390565b6117b49190612fac565b036117bf57601d8190555b336000818152601560209081526040808320815180830183526001600160801b03348116825260ff808a16838701818152855460018101875595895287892094519490950180549551909216600160801b026001600160881b03199095169390921692909217929092179055938352601690915281208054909190611845908490612fac565b9091555061147090503360ff8416612185565b6008546001600160a01b031633146118825760405162461bcd60e51b8152600401610d34906130aa565b600c55565b606060038054610af290612f5c565b6008546001600160a01b031633146118c05760405162461bcd60e51b8152600401610d34906130aa565b600e805462ff0000198116620100009182900460ff1615909102179055565b60006017544210156119335760405162461bcd60e51b815260206004820152601e60248201527f44757463682061756374696f6e20686173206e6f7420737461727465642100006044820152606401610d34565b601d54156119425750601d5490565b6000601754426119529190613030565b90506000601c548261196491906130f5565b90506000601b54826119769190613047565b9050601a546019546119889190613030565b811061199957601a54935050505090565b806019546119a79190613030565b935050505090565b6008546001600160a01b031633146119d95760405162461bcd60e51b8152600401610d34906130aa565b601e805460ff19166001179055601d55565b336001600160a01b03831603611a145760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6008546001600160a01b03163314611aaa5760405162461bcd60e51b8152600401610d34906130aa565b600e805463ff00000019166301000000179055565b611aca84848461219f565b6001600160a01b0383163b15158015611aec5750611aea848484846124f9565b155b15611b0a576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b600260095403611b625760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610d34565b6002600955333214611b865760405162461bcd60e51b8152600401610d3490613066565b6000601d5411611bd85760405162461bcd60e51b815260206004820152601a60248201527f447574636820616374696f6e206d757374206265206f766572210000000000006044820152606401610d34565b336000908152601560205260408120545b8015611cf357601d54336000908152601560205260408120909190611c0f600185613030565b81548110611c1f57611c1f613109565b600091825260209091200154611c3f9190600160801b900460ff16613047565b336000908152601560205260408120919250908290611c5f600186613030565b81548110611c6f57611c6f613109565b600091825260209091200154611c8e91906001600160801b0316613030565b33600090815260156020526040902080549192509080611cb057611cb061311f565b600082815260209020810160001990810180546001600160881b0319169055019055611cdc8185612fac565b935050508080611ceb90613135565b915050611be9565b50604051600090339083908381818185875af1925050503d8060008114611d36576040519150601f19603f3d011682016040523d82523d6000602084013e611d3b565b606091505b5050905080611d7e5760405162461bcd60e51b815260206004820152600f60248201526e151c985b9cd9995c8819985a5b1959608a1b6044820152606401610d34565b50506001600955565b6060611d928261206e565b611df65760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610d34565b600e546301000000900460ff161515600003611e9e5760118054611e1990612f5c565b80601f0160208091040260200160405190810160405280929190818152602001828054611e4590612f5c565b8015611e925780601f10611e6757610100808354040283529160200191611e92565b820191906000526020600020905b815481529060010190602001808311611e7557829003601f168201915b50505050509050919050565b6000611ea9836125e5565b90506000815111611ec95760405180602001604052806000815250611eea565b80604051602001611eda919061314c565b6040516020818303038152906040525b9392505050565b6008546001600160a01b03163314611f1b5760405162461bcd60e51b8152600401610d34906130aa565b601255565b6008546001600160a01b03163314611f4a5760405162461bcd60e51b8152600401610d34906130aa565b601355565b6008546001600160a01b03163314611f795760405162461bcd60e51b8152600401610d34906130aa565b600e805461ff001981166101009182900460ff1615909102179055565b6008546001600160a01b03163314611fc05760405162461bcd60e51b8152600401610d34906130aa565b8051611470906011906020840190612a4d565b6008546001600160a01b03163314611ffd5760405162461bcd60e51b8152600401610d34906130aa565b6001600160a01b0381166120625760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610d34565b61206b816124a7565b50565b6000805482108015610add575050600090815260046020526040902054600160e01b900460ff161590565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6040516bffffffffffffffffffffffff193360601b1660208201526000908190603401604051602081830303815290604052805190602001209050611eea8360135483612652565b6040516bffffffffffffffffffffffff193360601b1660208201526000908190603401604051602081830303815290604052805190602001209050611eea8360125483612652565b611470828260405180602001604052806000815250612668565b60006121aa8261238d565b9050836001600160a01b031681600001516001600160a01b0316146121e15760405162a1148160e81b815260040160405180910390fd5b6000336001600160a01b03861614806121ff57506121ff8533610986565b8061221a57503361220f84610b75565b6001600160a01b0316145b90508061223a57604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b03841661226157604051633a954ecd60e21b815260040160405180910390fd5b61226d60008487612099565b6001600160a01b038581166000908152600560209081526040808320805467ffffffffffffffff198082166001600160401b0392831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600490945282852080546001600160e01b031916909417600160a01b4290921691909102178355870180845292208054919390911661234157600054821461234157805460208601516001600160401b0316600160a01b026001600160e01b03199091166001600160a01b038a16171781555b50505082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b60408051606081018252600080825260208201819052918101919091528160005481101561248e57600081815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff1615159181018290529061248c5780516001600160a01b031615612423579392505050565b5060001901600081815260046020908152604091829020825160608101845290546001600160a01b038116808352600160a01b82046001600160401b031693830193909352600160e01b900460ff1615159281019290925215612487579392505050565b612423565b505b604051636f96cda160e11b815260040160405180910390fd5b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a029061252e903390899088908890600401613175565b6020604051808303816000875af1925050508015612569575060408051601f3d908101601f19168201909252612566918101906131b2565b60015b6125c7573d808015612597576040519150601f19603f3d011682016040523d82523d6000602084013e61259c565b606091505b5080516000036125bf576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b60606125f08261206e565b61260d57604051630a14c4b560e41b815260040160405180910390fd5b6000612617612675565b905080516000036126375760405180602001604052806000815250611eea565b8061264184612684565b604051602001611eda9291906131cf565b60008261265f8584612784565b14949350505050565b610ccf83838360016127f8565b606060108054610af290612f5c565b6060816000036126ab5750506040805180820190915260018152600360fc1b602082015290565b8160005b81156126d557806126bf816131fe565b91506126ce9050600a836130f5565b91506126af565b6000816001600160401b038111156126ef576126ef612bff565b6040519080825280601f01601f191660200182016040528015612719576020820181803683370190505b5090505b84156125dd5761272e600183613030565b915061273b600a86613217565b612746906030612fac565b60f81b81838151811061275b5761275b613109565b60200101906001600160f81b031916908160001a90535061277d600a866130f5565b945061271d565b600081815b84518110156127f05760008582815181106127a6576127a6613109565b602002602001015190508083116127cc57600083815260208290526040902092506127dd565b600081815260208490526040902092505b50806127e8816131fe565b915050612789565b509392505050565b6000546001600160a01b03851661282157604051622e076360e81b815260040160405180910390fd5b836000036128425760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038516600081815260056020908152604080832080546fffffffffffffffffffffffffffffffff1981166001600160401b038083168c0181169182176801000000000000000067ffffffffffffffff1990941690921783900481168c01811690920217909155858452600490925290912080546001600160e01b031916909217600160a01b4290921691909102179055808085018380156128f357506001600160a01b0387163b15155b1561297b575b60405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a461294460008884806001019550886124f9565b612961576040516368d2bf6b60e11b815260040160405180910390fd5b8082036128f957826000541461297657600080fd5b6129c0565b5b6040516001830192906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a480820361297c575b50600055612386565b8280546129d590612f5c565b90600052602060002090601f0160209004810192826129f75760008555612a3d565b82601f10612a105782800160ff19823516178555612a3d565b82800160010185558215612a3d579182015b82811115612a3d578235825591602001919060010190612a22565b50612a49929150612ac1565b5090565b828054612a5990612f5c565b90600052602060002090601f016020900481019282612a7b5760008555612a3d565b82601f10612a9457805160ff1916838001178555612a3d565b82800160010185558215612a3d579182015b82811115612a3d578251825591602001919060010190612aa6565b5b80821115612a495760008155600101612ac2565b6001600160e01b03198116811461206b57600080fd5b600060208284031215612afe57600080fd5b8135611eea81612ad6565b60005b83811015612b24578181015183820152602001612b0c565b83811115611b0a5750506000910152565b60008151808452612b4d816020860160208601612b09565b601f01601f19169290920160200192915050565b602081526000611eea6020830184612b35565b600060208284031215612b8657600080fd5b5035919050565b80356001600160a01b0381168114612ba457600080fd5b919050565b60008060408385031215612bbc57600080fd5b612bc583612b8d565b946020939093013593505050565b600060208284031215612be557600080fd5b611eea82612b8d565b803560ff81168114612ba457600080fd5b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f191681016001600160401b0381118282101715612c3d57612c3d612bff565b604052919050565b80358015158114612ba457600080fd5b600080600060608486031215612c6a57600080fd5b612c7384612bee565b92506020808501356001600160401b0380821115612c9057600080fd5b818701915087601f830112612ca457600080fd5b813581811115612cb657612cb6612bff565b8060051b9150612cc7848301612c15565b818152918301840191848101908a841115612ce157600080fd5b938501935b83851015612cff57843582529385019390850190612ce6565b809750505050505050612d1460408501612c45565b90509250925092565b600080600060608486031215612d3257600080fd5b612d3b84612b8d565b9250612d4960208501612b8d565b9150604084013590509250925092565b60008060208385031215612d6c57600080fd5b82356001600160401b0380821115612d8357600080fd5b818501915085601f830112612d9757600080fd5b813581811115612da657600080fd5b866020828501011115612db857600080fd5b60209290920196919550909350505050565b600060208284031215612ddc57600080fd5b611eea82612bee565b60008060408385031215612df857600080fd5b612e0183612b8d565b9150612e0f60208401612c45565b90509250929050565b60006001600160401b03831115612e3157612e31612bff565b612e44601f8401601f1916602001612c15565b9050828152838383011115612e5857600080fd5b828260208301376000602084830101529392505050565b60008060008060808587031215612e8557600080fd5b612e8e85612b8d565b9350612e9c60208601612b8d565b92506040850135915060608501356001600160401b03811115612ebe57600080fd5b8501601f81018713612ecf57600080fd5b612ede87823560208401612e18565b91505092959194509250565b60008060408385031215612efd57600080fd5b612f0683612b8d565b9150612e0f60208401612b8d565b600060208284031215612f2657600080fd5b81356001600160401b03811115612f3c57600080fd5b8201601f81018413612f4d57600080fd5b6125dd84823560208401612e18565b600181811c90821680612f7057607f821691505b602082108103612f9057634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b60008219821115612fbf57612fbf612f96565b500190565b6020808252818101527f507572636861736520776f756c6420657863656564206d617820737570706c79604082015260600190565b6020808252601c908201527f4d6178204e465420706572206164647265737320657863656564656400000000604082015260600190565b60008282101561304257613042612f96565b500390565b600081600019048311821515161561306157613061612f96565b500290565b60208082526024908201527f4e6f207472616e73616374696f6e2066726f6d20736d61727420636f6e7472616040820152636374732160e01b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601260045260246000fd5b600082613104576131046130df565b500490565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052603160045260246000fd5b60008161314457613144612f96565b506000190190565b6000825161315e818460208701612b09565b64173539b7b760d91b920191825250600501919050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906131a890830184612b35565b9695505050505050565b6000602082840312156131c457600080fd5b8151611eea81612ad6565b600083516131e1818460208801612b09565b8351908301906131f5818360208801612b09565b01949350505050565b60006001820161321057613210612f96565b5060010190565b600082613226576132266130df565b50069056fea2646970667358221220b29621f4dacb7a781e4caf5f40b5b40318de6864267d0a0ea40975c60819d93b64736f6c634300080d0033
Deployed Bytecode
0x6080604052600436106103975760003560e01c80638da5cb5b116101dc578063b92441e111610102578063eb8d2444116100a0578063f3e388211161006f578063f3e3882114610a39578063f47c84c514610a4f578063f5998ed814610a65578063f89d2e4d14610a7b57600080fd5b8063eb8d2444146109ca578063f0325549146109e4578063f2c4ce1e146109f9578063f2fde38b14610a1957600080fd5b8063dab5f340116100dc578063dab5f3401461092b578063e7edcd931461094b578063e985e9c51461096b578063ea18dc5c146109b457600080fd5b8063b92441e1146108c9578063b9765a1f146108f6578063c87b56dd1461090b57600080fd5b80639d1b464a1161017a578063afdaaf3411610149578063afdaaf3414610864578063b22edfbc1461087e578063b812937114610893578063b88d4fde146108a957600080fd5b80639d1b464a146107fa5780639dcfb8a91461080f578063a22cb4651461082f578063a475b5dd1461084f57600080fd5b806395d89b41116101b657806395d89b41146107a4578063969a55ec146107b957806397f65c08146107ce578063996e52b5146107e457600080fd5b80638da5cb5b1461074657806391b7f5ed1461076457806393e59dc11461078457600080fd5b806334918dfd116102c15780636007eeed1161025f57806378615c321161022e57806378615c32146106e75780637fd255f1146106fd57806383e6848d1461071d5780638d859f3e1461073057600080fd5b80636007eeed1461067c5780636352211e1461069257806370a08231146106b2578063715018a6146106d257600080fd5b806342842e0e1161029b57806342842e0e146105fb578063518302271461061b57806355f804b31461063c57806357535c431461065c57600080fd5b806334918dfd146105b15780633ccfd60b146105c65780633fb6ffdf146105db57600080fd5b80631aee3f911161033957806329f767e81161030857806329f767e81461051a5780632b4519fb1461053a5780632f745c591461057b578063341c33041461059b57600080fd5b80631aee3f91146104b25780631eeabf2d146104c85780631f0234d8146104db57806323b872dd146104fa57600080fd5b8063081c8c4411610375578063081c8c441461042b578063095ea7b31461044057806318160ddd1461046257806318cae2691461048557600080fd5b806301ffc9a71461039c57806306fdde03146103d1578063081812fc146103f3575b600080fd5b3480156103a857600080fd5b506103bc6103b7366004612aec565b610a91565b60405190151581526020015b60405180910390f35b3480156103dd57600080fd5b506103e6610ae3565b6040516103c89190612b61565b3480156103ff57600080fd5b5061041361040e366004612b74565b610b75565b6040516001600160a01b0390911681526020016103c8565b34801561043757600080fd5b506103e6610bb9565b34801561044c57600080fd5b5061046061045b366004612ba9565b610c47565b005b34801561046e57600080fd5b50600154600054035b6040519081526020016103c8565b34801561049157600080fd5b506104776104a0366004612bd3565b60146020526000908152604090205481565b3480156104be57600080fd5b50610477600a5481565b6104606104d6366004612c55565b610cd4565b3480156104e757600080fd5b50600e546103bc90610100900460ff1681565b34801561050657600080fd5b50610460610515366004612d1d565b611089565b34801561052657600080fd5b50610460610535366004612b74565b611094565b34801561054657600080fd5b5061055a610555366004612ba9565b6110c3565b604080516001600160801b03909316835260ff9091166020830152016103c8565b34801561058757600080fd5b50610477610596366004612ba9565b611106565b3480156105a757600080fd5b50610477600b5481565b3480156105bd57600080fd5b506104606111cd565b3480156105d257600080fd5b5061046061120b565b3480156105e757600080fd5b506104606105f6366004612b74565b61133a565b34801561060757600080fd5b50610460610616366004612d1d565b611369565b34801561062757600080fd5b50600e546103bc906301000000900460ff1681565b34801561064857600080fd5b50610460610657366004612d59565b611384565b34801561066857600080fd5b50610460610677366004612ba9565b6113ba565b34801561068857600080fd5b50610477600d5481565b34801561069e57600080fd5b506104136106ad366004612b74565b611474565b3480156106be57600080fd5b506104776106cd366004612bd3565b611486565b3480156106de57600080fd5b506104606114d4565b3480156106f357600080fd5b5061047760175481565b34801561070957600080fd5b50610460610718366004612b74565b61150a565b61046061072b366004612dca565b611539565b34801561073c57600080fd5b50610477600c5481565b34801561075257600080fd5b506008546001600160a01b0316610413565b34801561077057600080fd5b5061046061077f366004612b74565b611858565b34801561079057600080fd5b50600e546103bc9062010000900460ff1681565b3480156107b057600080fd5b506103e6611887565b3480156107c557600080fd5b50610460611896565b3480156107da57600080fd5b50610477601a5481565b3480156107f057600080fd5b50610477601c5481565b34801561080657600080fd5b506104776118df565b34801561081b57600080fd5b5061046061082a366004612b74565b6119af565b34801561083b57600080fd5b5061046061084a366004612de5565b6119eb565b34801561085b57600080fd5b50610460611a80565b34801561087057600080fd5b50601e546103bc9060ff1681565b34801561088a57600080fd5b50610477600a81565b34801561089f57600080fd5b50610477601b5481565b3480156108b557600080fd5b506104606108c4366004612e6f565b611abf565b3480156108d557600080fd5b506104776108e4366004612bd3565b60166020526000908152604090205481565b34801561090257600080fd5b50610460611b10565b34801561091757600080fd5b506103e6610926366004612b74565b611d87565b34801561093757600080fd5b50610460610946366004612b74565b611ef1565b34801561095757600080fd5b50610460610966366004612b74565b611f20565b34801561097757600080fd5b506103bc610986366004612eea565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b3480156109c057600080fd5b5061047760185481565b3480156109d657600080fd5b50600e546103bc9060ff1681565b3480156109f057600080fd5b50610460611f4f565b348015610a0557600080fd5b50610460610a14366004612f14565b611f96565b348015610a2557600080fd5b50610460610a34366004612bd3565b611fd3565b348015610a4557600080fd5b50610477600f5481565b348015610a5b57600080fd5b506104776115b381565b348015610a7157600080fd5b50610477601d5481565b348015610a8757600080fd5b5061047760195481565b60006001600160e01b031982166380ac58cd60e01b1480610ac257506001600160e01b03198216635b5e139f60e01b145b80610add57506301ffc9a760e01b6001600160e01b03198316145b92915050565b606060028054610af290612f5c565b80601f0160208091040260200160405190810160405280929190818152602001828054610b1e90612f5c565b8015610b6b5780601f10610b4057610100808354040283529160200191610b6b565b820191906000526020600020905b815481529060010190602001808311610b4e57829003601f168201915b5050505050905090565b6000610b808261206e565b610b9d576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b60118054610bc690612f5c565b80601f0160208091040260200160405190810160405280929190818152602001828054610bf290612f5c565b8015610c3f5780601f10610c1457610100808354040283529160200191610c3f565b820191906000526020600020905b815481529060010190602001808311610c2257829003601f168201915b505050505081565b6000610c5282611474565b9050806001600160a01b0316836001600160a01b031603610c865760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b03821614801590610ca65750610ca48133610986565b155b15610cc4576040516367d9dca160e11b815260040160405180910390fd5b610ccf838383612099565b505050565b600e54610100900460ff1680610cec5750600e5460ff165b610d3d5760405162461bcd60e51b815260206004820152601b60248201527f53616c65206d7573742062652061637469766520746f206d696e74000000000060448201526064015b60405180910390fd5b600e54610100900460ff161580610d665750600a548360ff16600b54610d639190612fac565b11155b610d825760405162461bcd60e51b8152600401610d3490612fc4565b8015610e4157600e5462010000900460ff161580610da45750610da4826120f5565b610dea5760405162461bcd60e51b81526020600482015260176024820152761059191c995cdcc81b9bdd081dda1a5d195b1a5cdd1959604a1b6044820152606401610d34565b600e54610100900460ff161580610e20575033600090815260146020526040902054600290610e1d9060ff861690612fac565b11155b610e3c5760405162461bcd60e51b8152600401610d3490612ff9565b610ef5565b600e5462010000900460ff161580610e5d5750610e5d8261213d565b610ea35760405162461bcd60e51b81526020600482015260176024820152761059191c995cdcc81b9bdd081dda1a5d195b1a5cdd1959604a1b6044820152606401610d34565b600e54610100900460ff161580610ed95750600d5433600090815260146020526040902054610ed69060ff861690612fac565b11155b610ef55760405162461bcd60e51b8152600401610d3490612ff9565b60008360ff16118015610f0c575060048360ff1611155b610f585760405162461bcd60e51b815260206004820152601a60248201527f4d61782034204e46547320706572207472616e73616374696f6e0000000000006044820152606401610d34565b600f54610f6690600a613030565b610f72906115b3613030565b8360ff16610f836001546000540390565b610f8d9190612fac565b1115610fab5760405162461bcd60e51b8152600401610d3490612fc4565b8260ff16600c54610fbc9190613047565b34101561100b5760405162461bcd60e51b815260206004820152601e60248201527f4e6f7420656e6f7567682045544820666f72207472616e73616374696f6e00006044820152606401610d34565b33321461102a5760405162461bcd60e51b8152600401610d3490613066565b600e54610100900460ff161561107c578260ff16600b600082825461104f9190612fac565b9091555050336000908152601460205260408120805460ff86169290611076908490612fac565b90915550505b610ccf338460ff16612185565b610ccf83838361219f565b6008546001600160a01b031633146110be5760405162461bcd60e51b8152600401610d34906130aa565b600d55565b601560205281600052604060002081815481106110df57600080fd5b6000918252602090912001546001600160801b0381169250600160801b900460ff16905082565b600080548180805b838110156111c757600081815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff16158015928201929092529061117557506111bf565b80516001600160a01b03161561118a57805192505b876001600160a01b0316836001600160a01b0316036111bd578684036111b657509350610add92505050565b6001909301925b505b60010161110e565b50600080fd5b6008546001600160a01b031633146111f75760405162461bcd60e51b8152600401610d34906130aa565b600e805460ff19811660ff90911615179055565b60026009540361125d5760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610d34565b60026009556008546001600160a01b0316331461128c5760405162461bcd60e51b8152600401610d34906130aa565b60006112a06008546001600160a01b031690565b6001600160a01b03164760405160006040518083038185875af1925050503d80600081146112ea576040519150601f19603f3d011682016040523d82523d6000602084013e6112ef565b606091505b50509050806113325760405162461bcd60e51b815260206004820152600f60248201526e151c985b9cd9995c8819985a5b1959608a1b6044820152606401610d34565b506001600955565b6008546001600160a01b031633146113645760405162461bcd60e51b8152600401610d34906130aa565b601755565b610ccf83838360405180602001604052806000815250611abf565b6008546001600160a01b031633146113ae5760405162461bcd60e51b8152600401610d34906130aa565b610ccf601083836129c9565b6008546001600160a01b031633146113e45760405162461bcd60e51b8152600401610d34906130aa565b600a81600f546113f49190612fac565b111561144e5760405162461bcd60e51b8152602060048201526024808201527f5468697320616d6f756e74206973206d6f7265207468616e206d617820616c6c6044820152631bddd95960e21b6064820152608401610d34565b80600f60008282546114609190612fac565b9091555061147090508282612185565b5050565b600061147f8261238d565b5192915050565b60006001600160a01b0382166114af576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b03166000908152600560205260409020546001600160401b031690565b6008546001600160a01b031633146114fe5760405162461bcd60e51b8152600401610d34906130aa565b61150860006124a7565b565b6008546001600160a01b031633146115345760405162461bcd60e51b8152600401610d34906130aa565b600a55565b60175442101561158b5760405162461bcd60e51b815260206004820152601e60248201527f44757463682061756374696f6e20686173206e6f7420737461727465642100006044820152606401610d34565b601e5460ff16156115de5760405162461bcd60e51b815260206004820152601860248201527f44757463682061756374696f6e206e6f742061637469766500000000000000006044820152606401610d34565b60008160ff161180156115f5575060048160ff1611155b6116415760405162461bcd60e51b815260206004820152601a60248201527f4d61782034204e46547320706572207472616e73616374696f6e0000000000006044820152606401610d34565b336000908152601660205260409020546064906116629060ff841690612fac565b11156116805760405162461bcd60e51b8152600401610d3490612ff9565b600061168a6118df565b90506116998160ff8416613047565b3410156116e85760405162461bcd60e51b815260206004820152601e60248201527f4e6f7420656e6f7567682045544820666f72207472616e73616374696f6e00006044820152606401610d34565b6018548260ff166116fc6001546000540390565b6117069190612fac565b11156117245760405162461bcd60e51b8152600401610d3490612fc4565b600f5461173290600a613030565b61173e906115b3613030565b8260ff1661174f6001546000540390565b6117599190612fac565b11156117775760405162461bcd60e51b8152600401610d3490612fc4565b3332146117965760405162461bcd60e51b8152600401610d3490613066565b6018548260ff166117aa6001546000540390565b6117b49190612fac565b036117bf57601d8190555b336000818152601560209081526040808320815180830183526001600160801b03348116825260ff808a16838701818152855460018101875595895287892094519490950180549551909216600160801b026001600160881b03199095169390921692909217929092179055938352601690915281208054909190611845908490612fac565b9091555061147090503360ff8416612185565b6008546001600160a01b031633146118825760405162461bcd60e51b8152600401610d34906130aa565b600c55565b606060038054610af290612f5c565b6008546001600160a01b031633146118c05760405162461bcd60e51b8152600401610d34906130aa565b600e805462ff0000198116620100009182900460ff1615909102179055565b60006017544210156119335760405162461bcd60e51b815260206004820152601e60248201527f44757463682061756374696f6e20686173206e6f7420737461727465642100006044820152606401610d34565b601d54156119425750601d5490565b6000601754426119529190613030565b90506000601c548261196491906130f5565b90506000601b54826119769190613047565b9050601a546019546119889190613030565b811061199957601a54935050505090565b806019546119a79190613030565b935050505090565b6008546001600160a01b031633146119d95760405162461bcd60e51b8152600401610d34906130aa565b601e805460ff19166001179055601d55565b336001600160a01b03831603611a145760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6008546001600160a01b03163314611aaa5760405162461bcd60e51b8152600401610d34906130aa565b600e805463ff00000019166301000000179055565b611aca84848461219f565b6001600160a01b0383163b15158015611aec5750611aea848484846124f9565b155b15611b0a576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b600260095403611b625760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610d34565b6002600955333214611b865760405162461bcd60e51b8152600401610d3490613066565b6000601d5411611bd85760405162461bcd60e51b815260206004820152601a60248201527f447574636820616374696f6e206d757374206265206f766572210000000000006044820152606401610d34565b336000908152601560205260408120545b8015611cf357601d54336000908152601560205260408120909190611c0f600185613030565b81548110611c1f57611c1f613109565b600091825260209091200154611c3f9190600160801b900460ff16613047565b336000908152601560205260408120919250908290611c5f600186613030565b81548110611c6f57611c6f613109565b600091825260209091200154611c8e91906001600160801b0316613030565b33600090815260156020526040902080549192509080611cb057611cb061311f565b600082815260209020810160001990810180546001600160881b0319169055019055611cdc8185612fac565b935050508080611ceb90613135565b915050611be9565b50604051600090339083908381818185875af1925050503d8060008114611d36576040519150601f19603f3d011682016040523d82523d6000602084013e611d3b565b606091505b5050905080611d7e5760405162461bcd60e51b815260206004820152600f60248201526e151c985b9cd9995c8819985a5b1959608a1b6044820152606401610d34565b50506001600955565b6060611d928261206e565b611df65760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610d34565b600e546301000000900460ff161515600003611e9e5760118054611e1990612f5c565b80601f0160208091040260200160405190810160405280929190818152602001828054611e4590612f5c565b8015611e925780601f10611e6757610100808354040283529160200191611e92565b820191906000526020600020905b815481529060010190602001808311611e7557829003601f168201915b50505050509050919050565b6000611ea9836125e5565b90506000815111611ec95760405180602001604052806000815250611eea565b80604051602001611eda919061314c565b6040516020818303038152906040525b9392505050565b6008546001600160a01b03163314611f1b5760405162461bcd60e51b8152600401610d34906130aa565b601255565b6008546001600160a01b03163314611f4a5760405162461bcd60e51b8152600401610d34906130aa565b601355565b6008546001600160a01b03163314611f795760405162461bcd60e51b8152600401610d34906130aa565b600e805461ff001981166101009182900460ff1615909102179055565b6008546001600160a01b03163314611fc05760405162461bcd60e51b8152600401610d34906130aa565b8051611470906011906020840190612a4d565b6008546001600160a01b03163314611ffd5760405162461bcd60e51b8152600401610d34906130aa565b6001600160a01b0381166120625760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610d34565b61206b816124a7565b50565b6000805482108015610add575050600090815260046020526040902054600160e01b900460ff161590565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6040516bffffffffffffffffffffffff193360601b1660208201526000908190603401604051602081830303815290604052805190602001209050611eea8360135483612652565b6040516bffffffffffffffffffffffff193360601b1660208201526000908190603401604051602081830303815290604052805190602001209050611eea8360125483612652565b611470828260405180602001604052806000815250612668565b60006121aa8261238d565b9050836001600160a01b031681600001516001600160a01b0316146121e15760405162a1148160e81b815260040160405180910390fd5b6000336001600160a01b03861614806121ff57506121ff8533610986565b8061221a57503361220f84610b75565b6001600160a01b0316145b90508061223a57604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b03841661226157604051633a954ecd60e21b815260040160405180910390fd5b61226d60008487612099565b6001600160a01b038581166000908152600560209081526040808320805467ffffffffffffffff198082166001600160401b0392831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600490945282852080546001600160e01b031916909417600160a01b4290921691909102178355870180845292208054919390911661234157600054821461234157805460208601516001600160401b0316600160a01b026001600160e01b03199091166001600160a01b038a16171781555b50505082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b60408051606081018252600080825260208201819052918101919091528160005481101561248e57600081815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff1615159181018290529061248c5780516001600160a01b031615612423579392505050565b5060001901600081815260046020908152604091829020825160608101845290546001600160a01b038116808352600160a01b82046001600160401b031693830193909352600160e01b900460ff1615159281019290925215612487579392505050565b612423565b505b604051636f96cda160e11b815260040160405180910390fd5b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a029061252e903390899088908890600401613175565b6020604051808303816000875af1925050508015612569575060408051601f3d908101601f19168201909252612566918101906131b2565b60015b6125c7573d808015612597576040519150601f19603f3d011682016040523d82523d6000602084013e61259c565b606091505b5080516000036125bf576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b60606125f08261206e565b61260d57604051630a14c4b560e41b815260040160405180910390fd5b6000612617612675565b905080516000036126375760405180602001604052806000815250611eea565b8061264184612684565b604051602001611eda9291906131cf565b60008261265f8584612784565b14949350505050565b610ccf83838360016127f8565b606060108054610af290612f5c565b6060816000036126ab5750506040805180820190915260018152600360fc1b602082015290565b8160005b81156126d557806126bf816131fe565b91506126ce9050600a836130f5565b91506126af565b6000816001600160401b038111156126ef576126ef612bff565b6040519080825280601f01601f191660200182016040528015612719576020820181803683370190505b5090505b84156125dd5761272e600183613030565b915061273b600a86613217565b612746906030612fac565b60f81b81838151811061275b5761275b613109565b60200101906001600160f81b031916908160001a90535061277d600a866130f5565b945061271d565b600081815b84518110156127f05760008582815181106127a6576127a6613109565b602002602001015190508083116127cc57600083815260208290526040902092506127dd565b600081815260208490526040902092505b50806127e8816131fe565b915050612789565b509392505050565b6000546001600160a01b03851661282157604051622e076360e81b815260040160405180910390fd5b836000036128425760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038516600081815260056020908152604080832080546fffffffffffffffffffffffffffffffff1981166001600160401b038083168c0181169182176801000000000000000067ffffffffffffffff1990941690921783900481168c01811690920217909155858452600490925290912080546001600160e01b031916909217600160a01b4290921691909102179055808085018380156128f357506001600160a01b0387163b15155b1561297b575b60405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a461294460008884806001019550886124f9565b612961576040516368d2bf6b60e11b815260040160405180910390fd5b8082036128f957826000541461297657600080fd5b6129c0565b5b6040516001830192906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a480820361297c575b50600055612386565b8280546129d590612f5c565b90600052602060002090601f0160209004810192826129f75760008555612a3d565b82601f10612a105782800160ff19823516178555612a3d565b82800160010185558215612a3d579182015b82811115612a3d578235825591602001919060010190612a22565b50612a49929150612ac1565b5090565b828054612a5990612f5c565b90600052602060002090601f016020900481019282612a7b5760008555612a3d565b82601f10612a9457805160ff1916838001178555612a3d565b82800160010185558215612a3d579182015b82811115612a3d578251825591602001919060010190612aa6565b5b80821115612a495760008155600101612ac2565b6001600160e01b03198116811461206b57600080fd5b600060208284031215612afe57600080fd5b8135611eea81612ad6565b60005b83811015612b24578181015183820152602001612b0c565b83811115611b0a5750506000910152565b60008151808452612b4d816020860160208601612b09565b601f01601f19169290920160200192915050565b602081526000611eea6020830184612b35565b600060208284031215612b8657600080fd5b5035919050565b80356001600160a01b0381168114612ba457600080fd5b919050565b60008060408385031215612bbc57600080fd5b612bc583612b8d565b946020939093013593505050565b600060208284031215612be557600080fd5b611eea82612b8d565b803560ff81168114612ba457600080fd5b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f191681016001600160401b0381118282101715612c3d57612c3d612bff565b604052919050565b80358015158114612ba457600080fd5b600080600060608486031215612c6a57600080fd5b612c7384612bee565b92506020808501356001600160401b0380821115612c9057600080fd5b818701915087601f830112612ca457600080fd5b813581811115612cb657612cb6612bff565b8060051b9150612cc7848301612c15565b818152918301840191848101908a841115612ce157600080fd5b938501935b83851015612cff57843582529385019390850190612ce6565b809750505050505050612d1460408501612c45565b90509250925092565b600080600060608486031215612d3257600080fd5b612d3b84612b8d565b9250612d4960208501612b8d565b9150604084013590509250925092565b60008060208385031215612d6c57600080fd5b82356001600160401b0380821115612d8357600080fd5b818501915085601f830112612d9757600080fd5b813581811115612da657600080fd5b866020828501011115612db857600080fd5b60209290920196919550909350505050565b600060208284031215612ddc57600080fd5b611eea82612bee565b60008060408385031215612df857600080fd5b612e0183612b8d565b9150612e0f60208401612c45565b90509250929050565b60006001600160401b03831115612e3157612e31612bff565b612e44601f8401601f1916602001612c15565b9050828152838383011115612e5857600080fd5b828260208301376000602084830101529392505050565b60008060008060808587031215612e8557600080fd5b612e8e85612b8d565b9350612e9c60208601612b8d565b92506040850135915060608501356001600160401b03811115612ebe57600080fd5b8501601f81018713612ecf57600080fd5b612ede87823560208401612e18565b91505092959194509250565b60008060408385031215612efd57600080fd5b612f0683612b8d565b9150612e0f60208401612b8d565b600060208284031215612f2657600080fd5b81356001600160401b03811115612f3c57600080fd5b8201601f81018413612f4d57600080fd5b6125dd84823560208401612e18565b600181811c90821680612f7057607f821691505b602082108103612f9057634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b60008219821115612fbf57612fbf612f96565b500190565b6020808252818101527f507572636861736520776f756c6420657863656564206d617820737570706c79604082015260600190565b6020808252601c908201527f4d6178204e465420706572206164647265737320657863656564656400000000604082015260600190565b60008282101561304257613042612f96565b500390565b600081600019048311821515161561306157613061612f96565b500290565b60208082526024908201527f4e6f207472616e73616374696f6e2066726f6d20736d61727420636f6e7472616040820152636374732160e01b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601260045260246000fd5b600082613104576131046130df565b500490565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052603160045260246000fd5b60008161314457613144612f96565b506000190190565b6000825161315e818460208701612b09565b64173539b7b760d91b920191825250600501919050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906131a890830184612b35565b9695505050505050565b6000602082840312156131c457600080fd5b8151611eea81612ad6565b600083516131e1818460208801612b09565b8351908301906131f5818360208801612b09565b01949350505050565b60006001820161321057613210612f96565b5060010190565b600082613226576132266130df565b50069056fea2646970667358221220b29621f4dacb7a781e4caf5f40b5b40318de6864267d0a0ea40975c60819d93b64736f6c634300080d0033
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.