ETH Price: $2,894.73 (-5.64%)
Gas: 1 Gwei

Token

Wonderers (WONDERERS)
 

Overview

Max Total Supply

2,048 WONDERERS

Holders

588

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
3 WONDERERS
0x1837A5F6cFE6299c16B8aD53148A4E7c521C091F
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information
# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
Wonderers

Compiler Version
v0.8.16+commit.07a7930e

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion
File 1 of 10 : Wonderers.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/utils/Strings.sol";
import "@openzeppelin/contracts/utils/cryptography/MerkleProof.sol";
import "@openzeppelin/contracts/utils/cryptography/ECDSA.sol";
import "./ERC721A.sol";
import "./ERC721AQueryable.sol";

contract Wonderers is ERC721AQueryable, Ownable {
    uint256 public constant RESERVE_SUPPLY = 20;
    uint256 public MAX_SUPPLY = 3000;

    uint256 public WL_PRICE = 0.029 ether;
    uint256 public PUBLIC_PRICE = 0.029 ether;

    uint256 public MINT_LIMIT = 2;
    uint256 public TRANSACTION_LIMIT = 2;

    bool public isPublicSaleActive = false;
    bool public isPresaleActive = false;

    bool _revealed = false;

    string private baseURI = "";

    bytes32 presaleRoot;
    bytes32 freemintRoot;

    struct UserPurchaseInfo {
        uint256 presaleMinted;
        uint256 freeMinted;
    }

    mapping(address => UserPurchaseInfo) public userPurchase;
    mapping(address => uint256) addressBlockBought;

    address public constant ADDRESS_1 =
        0xc09621b7B1e2Beb9f12354703555552C864A6F55; // Owner
    address public constant ADDRESS_2 =
        0xc9b5553910bA47719e0202fF9F617B8BE06b3A09; //RL
    address public constant ADDRESS_3 =
        0x0FbBcc510ec055732A72Eec6B243241753C3eD0D;

    address signer;
    mapping(bytes32 => bool) public usedDigests;

    constructor() ERC721A("Wonderers", "WONDERERS") {}

    modifier isSecured(uint8 mintType) {
        require(
            addressBlockBought[msg.sender] < block.timestamp,
            "CANNOT_MINT_ON_THE_SAME_BLOCK"
        );
        require(tx.origin == msg.sender, "CONTRACTS_NOT_ALLOWED_TO_MINT");

        if (mintType == 1) {
            require(isPublicSaleActive, "PUBLIC_MINT_IS_NOT_YET_ACTIVE");
        }

        if (mintType == 2) {
            require(isPresaleActive, "PRESALE_MINT_IS_NOT_YET_ACTIVE");
        }
        if (mintType == 3) {
            require(isPresaleActive, "FREE_MINT_IS_NOT_YET_ACTIVE");
        }

        _;
    }

    modifier supplyMintLimit(uint256 numberOfTokens) {
        require(
            numberOfTokens + totalSupply() <= MAX_SUPPLY,
            "NOT_ENOUGH_SUPPLY"
        );
        require(
            numberOfTokens + numberMinted(msg.sender) <= MINT_LIMIT,
            "EXCEED_MINT_LIMIT"
        );
        require(
            numberOfTokens <= TRANSACTION_LIMIT,
            "EXCEEDING_MAXIMUM_AMOUNT_PER_TRANSACTION"
        );
        _;
    }

    //Essential
    function mint(
        uint256 numberOfTokens,
        uint64 expireTime,
        bytes memory sig
    ) external payable isSecured(1) supplyMintLimit(numberOfTokens) {
        bytes32 digest = keccak256(
            abi.encodePacked(msg.sender, expireTime, numberOfTokens)
        );
        require(isAuthorized(sig, digest), "CONTRACT_MINT_NOT_ALLOWED");
        require(block.timestamp <= expireTime, "EXPIRED_SIGNATURE");
        require(!usedDigests[digest], "SIGNATURE_LOOPING_NOT_ALLOWED");

        require(msg.value == PUBLIC_PRICE * numberOfTokens, "INVALID_AMOUNT");
        addressBlockBought[msg.sender] = block.timestamp;
        usedDigests[digest] = true;
        _mint(msg.sender, numberOfTokens);
    }

    function presaleMint(
        bytes32[] memory proof,
        uint256 numberOfTokens,
        uint256 maxMint
    ) external payable isSecured(2) supplyMintLimit(numberOfTokens) {
        bytes32 leaf = keccak256(abi.encodePacked(msg.sender, maxMint));
        require(MerkleProof.verify(proof, presaleRoot, leaf), "PROOF_INVALID");
        require(
            userPurchase[msg.sender].presaleMinted + numberOfTokens <= maxMint,
            "EXCEED_ALLOCATED_MINT_LIMIT"
        );
        require(msg.value == WL_PRICE * numberOfTokens, "INVALID_AMOUNT");
        addressBlockBought[msg.sender] = block.timestamp;
        userPurchase[msg.sender].presaleMinted += numberOfTokens;
        _mint(msg.sender, numberOfTokens);
    }

    function freeMint(
        bytes32[] memory proof,
        uint256 numberOfTokens,
        uint256 maxMint
    ) external isSecured(3) supplyMintLimit(numberOfTokens) {
        bytes32 leaf = keccak256(abi.encodePacked(msg.sender, maxMint));
        require(MerkleProof.verify(proof, freemintRoot, leaf), "PROOF_INVALID");
        require(
            userPurchase[msg.sender].freeMinted + numberOfTokens <= maxMint,
            "EXCEED_ALLOCATED_MINT_LIMIT"
        );
        addressBlockBought[msg.sender] = block.timestamp;
        userPurchase[msg.sender].freeMinted += numberOfTokens;
        _mint(msg.sender, numberOfTokens);
    }

    function devMint(address[] memory _addresses, uint256[] memory quantities)
        external
        onlyOwner
    {
        require(_addresses.length == quantities.length, "WRONG_PARAMETERS");
        uint256 totalTokens = 0;
        for (uint256 i = 0; i < quantities.length; i++) {
            totalTokens += quantities[i];
        }
        require(totalTokens + totalSupply() <= MAX_SUPPLY, "NOT_ENOUGH_SUPPLY");
        for (uint256 i = 0; i < _addresses.length; i++) {
            _safeMint(_addresses[i], quantities[i]);
        }
    }

    //Essential
    function setBaseURI(string calldata URI) external onlyOwner {
        baseURI = URI;
    }

    function reveal(bool revealed, string calldata _baseURI) public onlyOwner {
        _revealed = revealed;
        baseURI = _baseURI;
    }

    //Essential
    function setPublicSaleStatus() external onlyOwner {
        isPublicSaleActive = !isPublicSaleActive;
    }

    function setPreSaleStatus() external onlyOwner {
        isPresaleActive = !isPresaleActive;
    }

    //Essential

    function withdraw() external onlyOwner {
        uint256 balance = address(this).balance;
        require(balance > 0, "No balance to withdraw");
        payable(ADDRESS_3).transfer((balance * 450) / 10000);
        payable(ADDRESS_2).transfer((balance * 1700) / 10000);
        payable(ADDRESS_1).transfer(address(this).balance);
    }

    function tokenURI(uint256 tokenId)
        public
        view
        virtual
        override (ERC721A,IERC721A)
        returns (string memory)
    {
        if (_revealed) {
            return string(abi.encodePacked(baseURI, Strings.toString(tokenId)));
        } else {
            return string(abi.encodePacked(baseURI));
        }
    }

    function numberMinted(address owner) public view returns (uint256) {
        return _numberMinted(owner);
    }

    function setPreSaleRoot(bytes32 _presaleRoot) external onlyOwner {
        presaleRoot = _presaleRoot;
    }

    function setFreeMintRoot(bytes32 _freemintRoot) external onlyOwner {
        freemintRoot = _freemintRoot;
    }

    function setSigner(address _signer) external onlyOwner {
        signer = _signer;
    }

    function isAuthorized(bytes memory sig, bytes32 digest)
        private
        view
        returns (bool)
    {
        return ECDSA.recover(digest, sig) == signer;
    }

    //Passed as wei
    function setPublicPrice(uint256 _publicPrice) external onlyOwner {
        PUBLIC_PRICE = _publicPrice;
    }

    //Passed as wei
    function setPresalePrice(uint256 _wlPrice) external onlyOwner {
        WL_PRICE = _wlPrice;
    }

    function decreaseSupply(uint256 _maxSupply) external onlyOwner {
        require(_maxSupply < MAX_SUPPLY, "CANT_INCREASE_SUPPLY");
        MAX_SUPPLY = _maxSupply;
    }

    function setMintLimit(uint256 _mintLimit) external onlyOwner {
        MINT_LIMIT = _mintLimit;
    }

    function setTransactionLimit(uint256 _transactionLimit) external onlyOwner {
        TRANSACTION_LIMIT = _transactionLimit;
    }
}

File 2 of 10 : IERC721AQueryable.sol
// SPDX-License-Identifier: MIT
// ERC721A Contracts v4.2.2
// Creator: Chiru Labs

pragma solidity ^0.8.4;

import './IERC721A.sol';

/**
 * @dev Interface of ERC721AQueryable.
 */
interface IERC721AQueryable is IERC721A {
    /**
     * Invalid query range (`start` >= `stop`).
     */
    error InvalidQueryRange();

    /**
     * @dev Returns the `TokenOwnership` struct at `tokenId` without reverting.
     *
     * If the `tokenId` is out of bounds:
     *
     * - `addr = address(0)`
     * - `startTimestamp = 0`
     * - `burned = false`
     * - `extraData = 0`
     *
     * If the `tokenId` is burned:
     *
     * - `addr = <Address of owner before token was burned>`
     * - `startTimestamp = <Timestamp when token was burned>`
     * - `burned = true`
     * - `extraData = <Extra data when token was burned>`
     *
     * Otherwise:
     *
     * - `addr = <Address of owner>`
     * - `startTimestamp = <Timestamp of start of ownership>`
     * - `burned = false`
     * - `extraData = <Extra data at start of ownership>`
     */
    function explicitOwnershipOf(uint256 tokenId) external view returns (TokenOwnership memory);

    /**
     * @dev Returns an array of `TokenOwnership` structs at `tokenIds` in order.
     * See {ERC721AQueryable-explicitOwnershipOf}
     */
    function explicitOwnershipsOf(uint256[] memory tokenIds) external view returns (TokenOwnership[] memory);

    /**
     * @dev Returns an array of token IDs owned by `owner`,
     * in the range [`start`, `stop`)
     * (i.e. `start <= tokenId < stop`).
     *
     * This function allows for tokens to be queried if the collection
     * grows too big for a single call of {ERC721AQueryable-tokensOfOwner}.
     *
     * Requirements:
     *
     * - `start < stop`
     */
    function tokensOfOwnerIn(
        address owner,
        uint256 start,
        uint256 stop
    ) external view returns (uint256[] memory);

    /**
     * @dev Returns an array of token IDs owned by `owner`.
     *
     * This function scans the ownership mapping and is O(`totalSupply`) in complexity.
     * It is meant to be called off-chain.
     *
     * See {ERC721AQueryable-tokensOfOwnerIn} for splitting the scan into
     * multiple smaller scans if the collection is large enough to cause
     * an out-of-gas error (10K collections should be fine).
     */
    function tokensOfOwner(address owner) external view returns (uint256[] memory);
}

File 3 of 10 : IERC721A.sol
// SPDX-License-Identifier: MIT
// ERC721A Contracts v4.0.0
// Creator: Chiru Labs

pragma solidity ^0.8.4;

/**
 * @dev Interface of an ERC721A compliant contract.
 */
interface IERC721A {
    /**
     * The caller must own the token or be an approved operator.
     */
    error ApprovalCallerNotOwnerNorApproved();

    /**
     * The token does not exist.
     */
    error ApprovalQueryForNonexistentToken();

    /**
     * The caller cannot approve to their own address.
     */
    error ApproveToCaller();

    /**
     * The caller cannot approve to the current owner.
     */
    error ApprovalToCurrentOwner();

    /**
     * Cannot query the balance for the zero address.
     */
    error BalanceQueryForZeroAddress();

    /**
     * Cannot mint to the zero address.
     */
    error MintToZeroAddress();

    /**
     * The quantity of tokens minted must be more than zero.
     */
    error MintZeroQuantity();

    /**
     * The token does not exist.
     */
    error OwnerQueryForNonexistentToken();

    /**
     * The caller must own the token or be an approved operator.
     */
    error TransferCallerNotOwnerNorApproved();

    /**
     * The token must be owned by `from`.
     */
    error TransferFromIncorrectOwner();

    /**
     * Cannot safely transfer to a contract that does not implement the ERC721Receiver interface.
     */
    error TransferToNonERC721ReceiverImplementer();

    /**
     * Cannot transfer to the zero address.
     */
    error TransferToZeroAddress();

    /**
     * The token does not exist.
     */
    error URIQueryForNonexistentToken();

    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;
    }

    /**
     * @dev Returns the total amount of tokens stored by the contract.
     *
     * Burned tokens are calculated here, use `_totalMinted()` if you want to count just minted tokens.
     */
    function totalSupply() external view returns (uint256);

    // ==============================
    //            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);

    // ==============================
    //            IERC721
    // ==============================

    /**
     * @dev Emitted when `tokenId` token is transferred from `from` to `to`.
     */
    event Transfer(address indexed from, address indexed to, uint256 indexed tokenId);

    /**
     * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token.
     */
    event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId);

    /**
     * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets.
     */
    event ApprovalForAll(address indexed owner, address indexed operator, bool approved);

    /**
     * @dev Returns the number of tokens in ``owner``'s account.
     */
    function balanceOf(address owner) external view returns (uint256 balance);

    /**
     * @dev Returns the owner of the `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function ownerOf(uint256 tokenId) external view returns (address owner);

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes calldata data
    ) external;

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients
     * are aware of the ERC721 protocol to prevent tokens from being forever locked.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) external;

    /**
     * @dev Transfers `tokenId` token from `from` to `to`.
     *
     * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) external;

    /**
     * @dev Gives permission to `to` to transfer `tokenId` token to another account.
     * The approval is cleared when the token is transferred.
     *
     * Only a single account can be approved at a time, so approving the zero address clears previous approvals.
     *
     * Requirements:
     *
     * - The caller must own the token or be an approved operator.
     * - `tokenId` must exist.
     *
     * Emits an {Approval} event.
     */
    function approve(address to, uint256 tokenId) external;

    /**
     * @dev Approve or remove `operator` as an operator for the caller.
     * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller.
     *
     * Requirements:
     *
     * - The `operator` cannot be the caller.
     *
     * Emits an {ApprovalForAll} event.
     */
    function setApprovalForAll(address operator, bool _approved) external;

    /**
     * @dev Returns the account approved for `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function getApproved(uint256 tokenId) external view returns (address operator);

    /**
     * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`.
     *
     * See {setApprovalForAll}
     */
    function isApprovedForAll(address owner, address operator) external view returns (bool);

    // ==============================
    //        IERC721Metadata
    // ==============================

    /**
     * @dev Returns the token collection name.
     */
    function name() external view returns (string memory);

    /**
     * @dev Returns the token collection symbol.
     */
    function symbol() external view returns (string memory);

    /**
     * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token.
     */
    function tokenURI(uint256 tokenId) external view returns (string memory);
}

File 4 of 10 : ERC721AQueryable.sol
// SPDX-License-Identifier: MIT
// ERC721A Contracts v4.2.2
// Creator: Chiru Labs

pragma solidity ^0.8.4;

import './IERC721AQueryable.sol';
import './ERC721A.sol';

/**
 * @title ERC721AQueryable.
 *
 * @dev ERC721A subclass with convenience query functions.
 */
abstract contract ERC721AQueryable is ERC721A, IERC721AQueryable {
    /**
     * @dev Returns the `TokenOwnership` struct at `tokenId` without reverting.
     *
     * If the `tokenId` is out of bounds:
     *
     * - `addr = address(0)`
     * - `startTimestamp = 0`
     * - `burned = false`
     * - `extraData = 0`
     *
     * If the `tokenId` is burned:
     *
     * - `addr = <Address of owner before token was burned>`
     * - `startTimestamp = <Timestamp when token was burned>`
     * - `burned = true`
     * - `extraData = <Extra data when token was burned>`
     *
     * Otherwise:
     *
     * - `addr = <Address of owner>`
     * - `startTimestamp = <Timestamp of start of ownership>`
     * - `burned = false`
     * - `extraData = <Extra data at start of ownership>`
     */
    function explicitOwnershipOf(uint256 tokenId) public view virtual override returns (TokenOwnership memory) {
        TokenOwnership memory ownership;
        if (tokenId < _startTokenId() || tokenId >= _nextTokenId()) {
            return ownership;
        }
        ownership = _ownershipAt(tokenId);
        if (ownership.burned) {
            return ownership;
        }
        return _ownershipOf(tokenId);
    }

    /**
     * @dev Returns an array of `TokenOwnership` structs at `tokenIds` in order.
     * See {ERC721AQueryable-explicitOwnershipOf}
     */
    function explicitOwnershipsOf(uint256[] calldata tokenIds)
        external
        view
        virtual
        override
        returns (TokenOwnership[] memory)
    {
        unchecked {
            uint256 tokenIdsLength = tokenIds.length;
            TokenOwnership[] memory ownerships = new TokenOwnership[](tokenIdsLength);
            for (uint256 i; i != tokenIdsLength; ++i) {
                ownerships[i] = explicitOwnershipOf(tokenIds[i]);
            }
            return ownerships;
        }
    }

    /**
     * @dev Returns an array of token IDs owned by `owner`,
     * in the range [`start`, `stop`)
     * (i.e. `start <= tokenId < stop`).
     *
     * This function allows for tokens to be queried if the collection
     * grows too big for a single call of {ERC721AQueryable-tokensOfOwner}.
     *
     * Requirements:
     *
     * - `start < stop`
     */
    function tokensOfOwnerIn(
        address owner,
        uint256 start,
        uint256 stop
    ) external view virtual override returns (uint256[] memory) {
        unchecked {
            if (start >= stop) revert InvalidQueryRange();
            uint256 tokenIdsIdx;
            uint256 stopLimit = _nextTokenId();
            // Set `start = max(start, _startTokenId())`.
            if (start < _startTokenId()) {
                start = _startTokenId();
            }
            // Set `stop = min(stop, stopLimit)`.
            if (stop > stopLimit) {
                stop = stopLimit;
            }
            uint256 tokenIdsMaxLength = balanceOf(owner);
            // Set `tokenIdsMaxLength = min(balanceOf(owner), stop - start)`,
            // to cater for cases where `balanceOf(owner)` is too big.
            if (start < stop) {
                uint256 rangeLength = stop - start;
                if (rangeLength < tokenIdsMaxLength) {
                    tokenIdsMaxLength = rangeLength;
                }
            } else {
                tokenIdsMaxLength = 0;
            }
            uint256[] memory tokenIds = new uint256[](tokenIdsMaxLength);
            if (tokenIdsMaxLength == 0) {
                return tokenIds;
            }
            // We need to call `explicitOwnershipOf(start)`,
            // because the slot at `start` may not be initialized.
            TokenOwnership memory ownership = explicitOwnershipOf(start);
            address currOwnershipAddr;
            // If the starting slot exists (i.e. not burned), initialize `currOwnershipAddr`.
            // `ownership.address` will not be zero, as `start` is clamped to the valid token ID range.
            if (!ownership.burned) {
                currOwnershipAddr = ownership.addr;
            }
            for (uint256 i = start; i != stop && tokenIdsIdx != tokenIdsMaxLength; ++i) {
                ownership = _ownershipAt(i);
                if (ownership.burned) {
                    continue;
                }
                if (ownership.addr != address(0)) {
                    currOwnershipAddr = ownership.addr;
                }
                if (currOwnershipAddr == owner) {
                    tokenIds[tokenIdsIdx++] = i;
                }
            }
            // Downsize the array to fit.
            assembly {
                mstore(tokenIds, tokenIdsIdx)
            }
            return tokenIds;
        }
    }

    /**
     * @dev Returns an array of token IDs owned by `owner`.
     *
     * This function scans the ownership mapping and is O(`totalSupply`) in complexity.
     * It is meant to be called off-chain.
     *
     * See {ERC721AQueryable-tokensOfOwnerIn} for splitting the scan into
     * multiple smaller scans if the collection is large enough to cause
     * an out-of-gas error (10K collections should be fine).
     */
    function tokensOfOwner(address owner) external view virtual override returns (uint256[] memory) {
        unchecked {
            uint256 tokenIdsIdx;
            address currOwnershipAddr;
            uint256 tokenIdsLength = balanceOf(owner);
            uint256[] memory tokenIds = new uint256[](tokenIdsLength);
            TokenOwnership memory ownership;
            for (uint256 i = _startTokenId(); tokenIdsIdx != tokenIdsLength; ++i) {
                ownership = _ownershipAt(i);
                if (ownership.burned) {
                    continue;
                }
                if (ownership.addr != address(0)) {
                    currOwnershipAddr = ownership.addr;
                }
                if (currOwnershipAddr == owner) {
                    tokenIds[tokenIdsIdx++] = i;
                }
            }
            return tokenIds;
        }
    }
}

File 5 of 10 : ERC721A.sol
// SPDX-License-Identifier: MIT
// ERC721A Contracts v4.0.0
// Creator: Chiru Labs

pragma solidity ^0.8.4;

import './IERC721A.sol';

/**
 * @dev ERC721 token receiver interface.
 */
interface ERC721A__IERC721Receiver {
    function onERC721Received(
        address operator,
        address from,
        uint256 tokenId,
        bytes calldata data
    ) external returns (bytes4);
}

/**
 * @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 IERC721A {
    // Mask of an entry in packed address data.
    uint256 private constant BITMASK_ADDRESS_DATA_ENTRY = (1 << 64) - 1;

    // The bit position of `numberMinted` in packed address data.
    uint256 private constant BITPOS_NUMBER_MINTED = 64;

    // The bit position of `numberBurned` in packed address data.
    uint256 private constant BITPOS_NUMBER_BURNED = 128;

    // The bit position of `aux` in packed address data.
    uint256 private constant BITPOS_AUX = 192;

    // Mask of all 256 bits in packed address data except the 64 bits for `aux`.
    uint256 private constant BITMASK_AUX_COMPLEMENT = (1 << 192) - 1;

    // The bit position of `startTimestamp` in packed ownership.
    uint256 private constant BITPOS_START_TIMESTAMP = 160;

    // The bit mask of the `burned` bit in packed ownership.
    uint256 private constant BITMASK_BURNED = 1 << 224;
    
    // The bit position of the `nextInitialized` bit in packed ownership.
    uint256 private constant BITPOS_NEXT_INITIALIZED = 225;

    // The bit mask of the `nextInitialized` bit in packed ownership.
    uint256 private constant BITMASK_NEXT_INITIALIZED = 1 << 225;

    // The tokenId of the next token to be minted.
    uint256 private _currentIndex;

    // The number of tokens burned.
    uint256 private _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 `_packedOwnershipOf` implementation for details.
    //
    // Bits Layout:
    // - [0..159]   `addr`
    // - [160..223] `startTimestamp`
    // - [224]      `burned`
    // - [225]      `nextInitialized`
    mapping(uint256 => uint256) private _packedOwnerships;

    // Mapping owner address to address data.
    //
    // Bits Layout:
    // - [0..63]    `balance`
    // - [64..127]  `numberMinted`
    // - [128..191] `numberBurned`
    // - [192..255] `aux`
    mapping(address => uint256) private _packedAddressData;

    // 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();
    }

    /**
     * @dev Returns the starting token ID. 
     * To change the starting token ID, please override this function.
     */
    function _startTokenId() internal view virtual returns (uint256) {
        return 0;
    }

    /**
     * @dev Returns the next token ID to be minted.
     */
    function _nextTokenId() internal view returns (uint256) {
        return _currentIndex;
    }

    /**
     * @dev Returns the total number of tokens in existence.
     * Burned tokens will reduce the count. 
     * To get the total number of tokens minted, please see `_totalMinted`.
     */
    function totalSupply() public view override returns (uint256) {
        // Counter underflow is impossible as _burnCounter cannot be incremented
        // more than `_currentIndex - _startTokenId()` times.
        unchecked {
            return _currentIndex - _burnCounter - _startTokenId();
        }
    }

    /**
     * @dev 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 Returns the total number of tokens burned.
     */
    function _totalBurned() internal view returns (uint256) {
        return _burnCounter;
    }

    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
        // The interface IDs are constants representing the first 4 bytes of the XOR of
        // all function selectors in the interface. See: https://eips.ethereum.org/EIPS/eip-165
        // e.g. `bytes4(i.functionA.selector ^ i.functionB.selector ^ ...)`
        return
            interfaceId == 0x01ffc9a7 || // ERC165 interface ID for ERC165.
            interfaceId == 0x80ac58cd || // ERC165 interface ID for ERC721.
            interfaceId == 0x5b5e139f; // ERC165 interface ID for ERC721Metadata.
    }

    /**
     * @dev See {IERC721-balanceOf}.
     */
    function balanceOf(address owner) public view override returns (uint256) {
        if (_addressToUint256(owner) == 0) revert BalanceQueryForZeroAddress();
        return _packedAddressData[owner] & BITMASK_ADDRESS_DATA_ENTRY;
    }

    /**
     * Returns the number of tokens minted by `owner`.
     */
    function _numberMinted(address owner) internal view returns (uint256) {
        return (_packedAddressData[owner] >> BITPOS_NUMBER_MINTED) & BITMASK_ADDRESS_DATA_ENTRY;
    }

    /**
     * Returns the number of tokens burned by or on behalf of `owner`.
     */
    function _numberBurned(address owner) internal view returns (uint256) {
        return (_packedAddressData[owner] >> BITPOS_NUMBER_BURNED) & BITMASK_ADDRESS_DATA_ENTRY;
    }

    /**
     * Returns the auxillary data for `owner`. (e.g. number of whitelist mint slots used).
     */
    function _getAux(address owner) internal view returns (uint64) {
        return uint64(_packedAddressData[owner] >> BITPOS_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 {
        uint256 packed = _packedAddressData[owner];
        uint256 auxCasted;
        assembly { // Cast aux without masking.
            auxCasted := aux
        }
        packed = (packed & BITMASK_AUX_COMPLEMENT) | (auxCasted << BITPOS_AUX);
        _packedAddressData[owner] = packed;
    }

    /**
     * Returns the packed ownership data of `tokenId`.
     */
    function _packedOwnershipOf(uint256 tokenId) private view returns (uint256) {
        uint256 curr = tokenId;

        unchecked {
            if (_startTokenId() <= curr)
                if (curr < _currentIndex) {
                    uint256 packed = _packedOwnerships[curr];
                    // If not burned.
                    if (packed & BITMASK_BURNED == 0) {
                        // 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.
                        //
                        // We can directly compare the packed value.
                        // If the address is zero, packed is zero.
                        while (packed == 0) {
                            packed = _packedOwnerships[--curr];
                        }
                        return packed;
                    }
                }
        }
        revert OwnerQueryForNonexistentToken();
    }

    /**
     * Returns the unpacked `TokenOwnership` struct from `packed`.
     */
    function _unpackedOwnership(uint256 packed) private pure returns (TokenOwnership memory ownership) {
        ownership.addr = address(uint160(packed));
        ownership.startTimestamp = uint64(packed >> BITPOS_START_TIMESTAMP);
        ownership.burned = packed & BITMASK_BURNED != 0;
    }

    /**
     * Returns the unpacked `TokenOwnership` struct at `index`.
     */
    function _ownershipAt(uint256 index) internal view returns (TokenOwnership memory) {
        return _unpackedOwnership(_packedOwnerships[index]);
    }

    /**
     * @dev Initializes the ownership slot minted at `index` for efficiency purposes.
     */
    function _initializeOwnershipAt(uint256 index) internal {
        if (_packedOwnerships[index] == 0) {
            _packedOwnerships[index] = _packedOwnershipOf(index);
        }
    }

    /**
     * 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) {
        return _unpackedOwnership(_packedOwnershipOf(tokenId));
    }

    /**
     * @dev See {IERC721-ownerOf}.
     */
    function ownerOf(uint256 tokenId) public view override returns (address) {
        return address(uint160(_packedOwnershipOf(tokenId)));
    }

    /**
     * @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, _toString(tokenId))) : '';
    }

    /**
     * @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 Casts the address to uint256 without masking.
     */
    function _addressToUint256(address value) private pure returns (uint256 result) {
        assembly {
            result := value
        }
    }

    /**
     * @dev Casts the boolean to uint256 without branching.
     */
    function _boolToUint256(bool value) private pure returns (uint256 result) {
        assembly {
            result := value
        }
    }

    /**
     * @dev See {IERC721-approve}.
     */
    function approve(address to, uint256 tokenId) public override {
        address owner = address(uint160(_packedOwnershipOf(tokenId)));
        if (to == owner) revert ApprovalToCurrentOwner();

        if (_msgSenderERC721A() != owner)
            if (!isApprovedForAll(owner, _msgSenderERC721A())) {
                revert ApprovalCallerNotOwnerNorApproved();
            }

        _tokenApprovals[tokenId] = to;
        emit Approval(owner, to, tokenId);
    }

    /**
     * @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 == _msgSenderERC721A()) revert ApproveToCaller();

        _operatorApprovals[_msgSenderERC721A()][operator] = approved;
        emit ApprovalForAll(_msgSenderERC721A(), 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.code.length != 0)
            if (!_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 && // If within bounds,
            _packedOwnerships[tokenId] & BITMASK_BURNED == 0; // and not burned.
    }

    /**
     * @dev Equivalent to `_safeMint(to, quantity, '')`.
     */
    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 {
        uint256 startTokenId = _currentIndex;
        if (_addressToUint256(to) == 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 {
            // Updates:
            // - `balance += quantity`.
            // - `numberMinted += quantity`.
            //
            // We can directly add to the balance and number minted.
            _packedAddressData[to] += quantity * ((1 << BITPOS_NUMBER_MINTED) | 1);

            // Updates:
            // - `address` to the owner.
            // - `startTimestamp` to the timestamp of minting.
            // - `burned` to `false`.
            // - `nextInitialized` to `quantity == 1`.
            _packedOwnerships[startTokenId] =
                _addressToUint256(to) |
                (block.timestamp << BITPOS_START_TIMESTAMP) |
                (_boolToUint256(quantity == 1) << BITPOS_NEXT_INITIALIZED);

            uint256 updatedIndex = startTokenId;
            uint256 end = updatedIndex + quantity;

            if (to.code.length != 0) {
                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 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) internal {
        uint256 startTokenId = _currentIndex;
        if (_addressToUint256(to) == 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 {
            // Updates:
            // - `balance += quantity`.
            // - `numberMinted += quantity`.
            //
            // We can directly add to the balance and number minted.
            _packedAddressData[to] += quantity * ((1 << BITPOS_NUMBER_MINTED) | 1);

            // Updates:
            // - `address` to the owner.
            // - `startTimestamp` to the timestamp of minting.
            // - `burned` to `false`.
            // - `nextInitialized` to `quantity == 1`.
            _packedOwnerships[startTokenId] =
                _addressToUint256(to) |
                (block.timestamp << BITPOS_START_TIMESTAMP) |
                (_boolToUint256(quantity == 1) << BITPOS_NEXT_INITIALIZED);

            uint256 updatedIndex = startTokenId;
            uint256 end = updatedIndex + quantity;

            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 {
        uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId);

        if (address(uint160(prevOwnershipPacked)) != from) revert TransferFromIncorrectOwner();

        address approvedAddress = _tokenApprovals[tokenId];

        bool isApprovedOrOwner = (_msgSenderERC721A() == from ||
            isApprovedForAll(from, _msgSenderERC721A()) ||
            approvedAddress == _msgSenderERC721A());

        if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        if (_addressToUint256(to) == 0) revert TransferToZeroAddress();

        _beforeTokenTransfers(from, to, tokenId, 1);

        // Clear approvals from the previous owner.
        if (_addressToUint256(approvedAddress) != 0) {
            delete _tokenApprovals[tokenId];
        }

        // 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 {
            // We can directly increment and decrement the balances.
            --_packedAddressData[from]; // Updates: `balance -= 1`.
            ++_packedAddressData[to]; // Updates: `balance += 1`.

            // Updates:
            // - `address` to the next owner.
            // - `startTimestamp` to the timestamp of transfering.
            // - `burned` to `false`.
            // - `nextInitialized` to `true`.
            _packedOwnerships[tokenId] =
                _addressToUint256(to) |
                (block.timestamp << BITPOS_START_TIMESTAMP) |
                BITMASK_NEXT_INITIALIZED;

            // If the next slot may not have been initialized (i.e. `nextInitialized == false`) .
            if (prevOwnershipPacked & BITMASK_NEXT_INITIALIZED == 0) {
                uint256 nextTokenId = tokenId + 1;
                // If the next slot's address is zero and not burned (i.e. packed value is zero).
                if (_packedOwnerships[nextTokenId] == 0) {
                    // If the next slot is within bounds.
                    if (nextTokenId != _currentIndex) {
                        // Initialize the next slot to maintain correctness for `ownerOf(tokenId + 1)`.
                        _packedOwnerships[nextTokenId] = prevOwnershipPacked;
                    }
                }
            }
        }

        emit Transfer(from, to, tokenId);
        _afterTokenTransfers(from, to, tokenId, 1);
    }

    /**
     * @dev 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 {
        uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId);

        address from = address(uint160(prevOwnershipPacked));
        address approvedAddress = _tokenApprovals[tokenId];

        if (approvalCheck) {
            bool isApprovedOrOwner = (_msgSenderERC721A() == from ||
                isApprovedForAll(from, _msgSenderERC721A()) ||
                approvedAddress == _msgSenderERC721A());

            if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        }

        _beforeTokenTransfers(from, address(0), tokenId, 1);

        // Clear approvals from the previous owner.
        if (_addressToUint256(approvedAddress) != 0) {
            delete _tokenApprovals[tokenId];
        }

        // 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 {
            // Updates:
            // - `balance -= 1`.
            // - `numberBurned += 1`.
            //
            // We can directly decrement the balance, and increment the number burned.
            // This is equivalent to `packed -= 1; packed += 1 << BITPOS_NUMBER_BURNED;`.
            _packedAddressData[from] += (1 << BITPOS_NUMBER_BURNED) - 1;

            // Updates:
            // - `address` to the last owner.
            // - `startTimestamp` to the timestamp of burning.
            // - `burned` to `true`.
            // - `nextInitialized` to `true`.
            _packedOwnerships[tokenId] =
                _addressToUint256(from) |
                (block.timestamp << BITPOS_START_TIMESTAMP) |
                BITMASK_BURNED | 
                BITMASK_NEXT_INITIALIZED;

            // If the next slot may not have been initialized (i.e. `nextInitialized == false`) .
            if (prevOwnershipPacked & BITMASK_NEXT_INITIALIZED == 0) {
                uint256 nextTokenId = tokenId + 1;
                // If the next slot's address is zero and not burned (i.e. packed value is zero).
                if (_packedOwnerships[nextTokenId] == 0) {
                    // If the next slot is within bounds.
                    if (nextTokenId != _currentIndex) {
                        // Initialize the next slot to maintain correctness for `ownerOf(tokenId + 1)`.
                        _packedOwnerships[nextTokenId] = prevOwnershipPacked;
                    }
                }
            }
        }

        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 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 ERC721A__IERC721Receiver(to).onERC721Received(_msgSenderERC721A(), from, tokenId, _data) returns (
            bytes4 retval
        ) {
            return retval == ERC721A__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 {}

    /**
     * @dev Returns the message sender (defaults to `msg.sender`).
     *
     * If you are writing GSN compatible contracts, you need to override this function.
     */
    function _msgSenderERC721A() internal view virtual returns (address) {
        return msg.sender;
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` decimal representation.
     */
    function _toString(uint256 value) internal pure returns (string memory ptr) {
        assembly {
            // The maximum value of a uint256 contains 78 digits (1 byte per digit), 
            // but we allocate 128 bytes to keep the free memory pointer 32-byte word aliged.
            // We will need 1 32-byte word to store the length, 
            // and 3 32-byte words to store a maximum of 78 digits. Total: 32 + 3 * 32 = 128.
            ptr := add(mload(0x40), 128)
            // Update the free memory pointer to allocate.
            mstore(0x40, ptr)

            // Cache the end of the memory to calculate the length later.
            let end := ptr

            // We write the string from the rightmost digit to the leftmost digit.
            // The following is essentially a do-while loop that also handles the zero case.
            // Costs a bit more than early returning for the zero case,
            // but cheaper in terms of deployment and overall runtime costs.
            for { 
                // Initialize and perform the first pass without check.
                let temp := value
                // Move the pointer 1 byte leftwards to point to an empty character slot.
                ptr := sub(ptr, 1)
                // Write the character to the pointer. 48 is the ASCII index of '0'.
                mstore8(ptr, add(48, mod(temp, 10)))
                temp := div(temp, 10)
            } temp { 
                // Keep dividing `temp` until zero.
                temp := div(temp, 10)
            } { // Body of the for loop.
                ptr := sub(ptr, 1)
                mstore8(ptr, add(48, mod(temp, 10)))
            }
            
            let length := sub(end, ptr)
            // Move the pointer 32 bytes leftwards to make room for the length.
            ptr := sub(ptr, 32)
            // Store the length.
            mstore(ptr, length)
        }
    }
}

File 6 of 10 : MerkleProof.sol
// 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)
        }
    }
}

File 7 of 10 : ECDSA.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.0) (utils/cryptography/ECDSA.sol)

pragma solidity ^0.8.0;

import "../Strings.sol";

/**
 * @dev Elliptic Curve Digital Signature Algorithm (ECDSA) operations.
 *
 * These functions can be used to verify that a message was signed by the holder
 * of the private keys of a given address.
 */
library ECDSA {
    enum RecoverError {
        NoError,
        InvalidSignature,
        InvalidSignatureLength,
        InvalidSignatureS,
        InvalidSignatureV
    }

    function _throwError(RecoverError error) private pure {
        if (error == RecoverError.NoError) {
            return; // no error: do nothing
        } else if (error == RecoverError.InvalidSignature) {
            revert("ECDSA: invalid signature");
        } else if (error == RecoverError.InvalidSignatureLength) {
            revert("ECDSA: invalid signature length");
        } else if (error == RecoverError.InvalidSignatureS) {
            revert("ECDSA: invalid signature 's' value");
        } else if (error == RecoverError.InvalidSignatureV) {
            revert("ECDSA: invalid signature 'v' value");
        }
    }

    /**
     * @dev Returns the address that signed a hashed message (`hash`) with
     * `signature` or error string. This address can then be used for verification purposes.
     *
     * The `ecrecover` EVM opcode allows for malleable (non-unique) signatures:
     * this function rejects them by requiring the `s` value to be in the lower
     * half order, and the `v` value to be either 27 or 28.
     *
     * IMPORTANT: `hash` _must_ be the result of a hash operation for the
     * verification to be secure: it is possible to craft signatures that
     * recover to arbitrary addresses for non-hashed data. A safe way to ensure
     * this is by receiving a hash of the original message (which may otherwise
     * be too long), and then calling {toEthSignedMessageHash} on it.
     *
     * Documentation for signature generation:
     * - with https://web3js.readthedocs.io/en/v1.3.4/web3-eth-accounts.html#sign[Web3.js]
     * - with https://docs.ethers.io/v5/api/signer/#Signer-signMessage[ethers]
     *
     * _Available since v4.3._
     */
    function tryRecover(bytes32 hash, bytes memory signature) internal pure returns (address, RecoverError) {
        // Check the signature length
        // - case 65: r,s,v signature (standard)
        // - case 64: r,vs signature (cf https://eips.ethereum.org/EIPS/eip-2098) _Available since v4.1._
        if (signature.length == 65) {
            bytes32 r;
            bytes32 s;
            uint8 v;
            // ecrecover takes the signature parameters, and the only way to get them
            // currently is to use assembly.
            assembly {
                r := mload(add(signature, 0x20))
                s := mload(add(signature, 0x40))
                v := byte(0, mload(add(signature, 0x60)))
            }
            return tryRecover(hash, v, r, s);
        } else if (signature.length == 64) {
            bytes32 r;
            bytes32 vs;
            // ecrecover takes the signature parameters, and the only way to get them
            // currently is to use assembly.
            assembly {
                r := mload(add(signature, 0x20))
                vs := mload(add(signature, 0x40))
            }
            return tryRecover(hash, r, vs);
        } else {
            return (address(0), RecoverError.InvalidSignatureLength);
        }
    }

    /**
     * @dev Returns the address that signed a hashed message (`hash`) with
     * `signature`. This address can then be used for verification purposes.
     *
     * The `ecrecover` EVM opcode allows for malleable (non-unique) signatures:
     * this function rejects them by requiring the `s` value to be in the lower
     * half order, and the `v` value to be either 27 or 28.
     *
     * IMPORTANT: `hash` _must_ be the result of a hash operation for the
     * verification to be secure: it is possible to craft signatures that
     * recover to arbitrary addresses for non-hashed data. A safe way to ensure
     * this is by receiving a hash of the original message (which may otherwise
     * be too long), and then calling {toEthSignedMessageHash} on it.
     */
    function recover(bytes32 hash, bytes memory signature) internal pure returns (address) {
        (address recovered, RecoverError error) = tryRecover(hash, signature);
        _throwError(error);
        return recovered;
    }

    /**
     * @dev Overload of {ECDSA-tryRecover} that receives the `r` and `vs` short-signature fields separately.
     *
     * See https://eips.ethereum.org/EIPS/eip-2098[EIP-2098 short signatures]
     *
     * _Available since v4.3._
     */
    function tryRecover(
        bytes32 hash,
        bytes32 r,
        bytes32 vs
    ) internal pure returns (address, RecoverError) {
        bytes32 s = vs & bytes32(0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff);
        uint8 v = uint8((uint256(vs) >> 255) + 27);
        return tryRecover(hash, v, r, s);
    }

    /**
     * @dev Overload of {ECDSA-recover} that receives the `r and `vs` short-signature fields separately.
     *
     * _Available since v4.2._
     */
    function recover(
        bytes32 hash,
        bytes32 r,
        bytes32 vs
    ) internal pure returns (address) {
        (address recovered, RecoverError error) = tryRecover(hash, r, vs);
        _throwError(error);
        return recovered;
    }

    /**
     * @dev Overload of {ECDSA-tryRecover} that receives the `v`,
     * `r` and `s` signature fields separately.
     *
     * _Available since v4.3._
     */
    function tryRecover(
        bytes32 hash,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) internal pure returns (address, RecoverError) {
        // EIP-2 still allows signature malleability for ecrecover(). Remove this possibility and make the signature
        // unique. Appendix F in the Ethereum Yellow paper (https://ethereum.github.io/yellowpaper/paper.pdf), defines
        // the valid range for s in (301): 0 < s < secp256k1n ÷ 2 + 1, and for v in (302): v ∈ {27, 28}. Most
        // signatures from current libraries generate a unique signature with an s-value in the lower half order.
        //
        // If your library generates malleable signatures, such as s-values in the upper range, calculate a new s-value
        // with 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEBAAEDCE6AF48A03BBFD25E8CD0364141 - s1 and flip v from 27 to 28 or
        // vice versa. If your library also generates signatures with 0/1 for v instead 27/28, add 27 to v to accept
        // these malleable signatures as well.
        if (uint256(s) > 0x7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF5D576E7357A4501DDFE92F46681B20A0) {
            return (address(0), RecoverError.InvalidSignatureS);
        }
        if (v != 27 && v != 28) {
            return (address(0), RecoverError.InvalidSignatureV);
        }

        // If the signature is valid (and not malleable), return the signer address
        address signer = ecrecover(hash, v, r, s);
        if (signer == address(0)) {
            return (address(0), RecoverError.InvalidSignature);
        }

        return (signer, RecoverError.NoError);
    }

    /**
     * @dev Overload of {ECDSA-recover} that receives the `v`,
     * `r` and `s` signature fields separately.
     */
    function recover(
        bytes32 hash,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) internal pure returns (address) {
        (address recovered, RecoverError error) = tryRecover(hash, v, r, s);
        _throwError(error);
        return recovered;
    }

    /**
     * @dev Returns an Ethereum Signed Message, created from a `hash`. This
     * produces hash corresponding to the one signed with the
     * https://eth.wiki/json-rpc/API#eth_sign[`eth_sign`]
     * JSON-RPC method as part of EIP-191.
     *
     * See {recover}.
     */
    function toEthSignedMessageHash(bytes32 hash) internal pure returns (bytes32) {
        // 32 is the length in bytes of hash,
        // enforced by the type signature above
        return keccak256(abi.encodePacked("\x19Ethereum Signed Message:\n32", hash));
    }

    /**
     * @dev Returns an Ethereum Signed Message, created from `s`. This
     * produces hash corresponding to the one signed with the
     * https://eth.wiki/json-rpc/API#eth_sign[`eth_sign`]
     * JSON-RPC method as part of EIP-191.
     *
     * See {recover}.
     */
    function toEthSignedMessageHash(bytes memory s) internal pure returns (bytes32) {
        return keccak256(abi.encodePacked("\x19Ethereum Signed Message:\n", Strings.toString(s.length), s));
    }

    /**
     * @dev Returns an Ethereum Signed Typed Data, created from a
     * `domainSeparator` and a `structHash`. This produces hash corresponding
     * to the one signed with the
     * https://eips.ethereum.org/EIPS/eip-712[`eth_signTypedData`]
     * JSON-RPC method as part of EIP-712.
     *
     * See {recover}.
     */
    function toTypedDataHash(bytes32 domainSeparator, bytes32 structHash) internal pure returns (bytes32) {
        return keccak256(abi.encodePacked("\x19\x01", domainSeparator, structHash));
    }
}

File 8 of 10 : Strings.sol
// 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);
    }
}

File 9 of 10 : Context.sol
// 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;
    }
}

File 10 of 10 : Ownable.sol
// 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);
    }
}

Settings
{
  "remappings": [],
  "optimizer": {
    "enabled": true,
    "runs": 200
  },
  "evmVersion": "london",
  "libraries": {},
  "outputSelection": {
    "*": {
      "*": [
        "evm.bytecode",
        "evm.deployedBytecode",
        "devdoc",
        "userdoc",
        "metadata",
        "abi"
      ]
    }
  }
}

Contract Security Audit

Contract ABI

[{"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":"InvalidQueryRange","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":"ADDRESS_1","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"ADDRESS_2","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"ADDRESS_3","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MINT_LIMIT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PUBLIC_PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"RESERVE_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"TRANSACTION_LIMIT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"WL_PRICE","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":[{"internalType":"uint256","name":"_maxSupply","type":"uint256"}],"name":"decreaseSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"_addresses","type":"address[]"},{"internalType":"uint256[]","name":"quantities","type":"uint256[]"}],"name":"devMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"explicitOwnershipOf","outputs":[{"components":[{"internalType":"address","name":"addr","type":"address"},{"internalType":"uint64","name":"startTimestamp","type":"uint64"},{"internalType":"bool","name":"burned","type":"bool"}],"internalType":"struct IERC721A.TokenOwnership","name":"","type":"tuple"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"tokenIds","type":"uint256[]"}],"name":"explicitOwnershipsOf","outputs":[{"components":[{"internalType":"address","name":"addr","type":"address"},{"internalType":"uint64","name":"startTimestamp","type":"uint64"},{"internalType":"bool","name":"burned","type":"bool"}],"internalType":"struct IERC721A.TokenOwnership[]","name":"","type":"tuple[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32[]","name":"proof","type":"bytes32[]"},{"internalType":"uint256","name":"numberOfTokens","type":"uint256"},{"internalType":"uint256","name":"maxMint","type":"uint256"}],"name":"freeMint","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":[],"name":"isPresaleActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isPublicSaleActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"numberOfTokens","type":"uint256"},{"internalType":"uint64","name":"expireTime","type":"uint64"},{"internalType":"bytes","name":"sig","type":"bytes"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"numberMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32[]","name":"proof","type":"bytes32[]"},{"internalType":"uint256","name":"numberOfTokens","type":"uint256"},{"internalType":"uint256","name":"maxMint","type":"uint256"}],"name":"presaleMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"revealed","type":"bool"},{"internalType":"string","name":"_baseURI","type":"string"}],"name":"reveal","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"URI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_freemintRoot","type":"bytes32"}],"name":"setFreeMintRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintLimit","type":"uint256"}],"name":"setMintLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_presaleRoot","type":"bytes32"}],"name":"setPreSaleRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"setPreSaleStatus","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_wlPrice","type":"uint256"}],"name":"setPresalePrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_publicPrice","type":"uint256"}],"name":"setPublicPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"setPublicSaleStatus","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_signer","type":"address"}],"name":"setSigner","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_transactionLimit","type":"uint256"}],"name":"setTransactionLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"tokensOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"start","type":"uint256"},{"internalType":"uint256","name":"stop","type":"uint256"}],"name":"tokensOfOwnerIn","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"name":"usedDigests","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"userPurchase","outputs":[{"internalType":"uint256","name":"presaleMinted","type":"uint256"},{"internalType":"uint256","name":"freeMinted","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

610bb860095566670758aa7c8000600a819055600b556002600c819055600d55600e805462ffffff1916905560a060405260006080908152600f90620000469082620001c8565b503480156200005457600080fd5b5060405180604001604052806009815260200168576f6e64657265727360b81b81525060405180604001604052806009815260200168574f4e44455245525360b81b8152508160029081620000aa9190620001c8565b506003620000b98282620001c8565b50506000805550620000cb33620000d1565b62000294565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b634e487b7160e01b600052604160045260246000fd5b600181811c908216806200014e57607f821691505b6020821081036200016f57634e487b7160e01b600052602260045260246000fd5b50919050565b601f821115620001c357600081815260208120601f850160051c810160208610156200019e5750805b601f850160051c820191505b81811015620001bf57828155600101620001aa565b5050505b505050565b81516001600160401b03811115620001e457620001e462000123565b620001fc81620001f5845462000139565b8462000175565b602080601f8311600181146200023457600084156200021b5750858301515b600019600386901b1c1916600185901b178555620001bf565b600085815260208120601f198616915b82811015620002655788860151825594840194600190910190840162000244565b5085821015620002845787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b6138a280620002a46000396000f3fe6080604052600436106102ff5760003560e01c8063715018a611610190578063b484eff7116100dc578063d39c4de711610095578063e985e9c51161006f578063e985e9c514610915578063edc2ac021461095e578063f2fde38b14610986578063fe042d49146109a657600080fd5b8063d39c4de71461089d578063dc33e681146108cd578063de97536b146108ed57600080fd5b8063b484eff7146107b1578063b6fd509b146107fa578063b88d4fde14610810578063c23dc68f14610830578063c62752551461085d578063c87b56dd1461087d57600080fd5b806399a2557a11610149578063a22cb46511610123578063a22cb46514610741578063aa66797b14610761578063b08da34214610776578063b3754e861461079e57600080fd5b806399a2557a146106e15780639e6a1d7d14610701578063a101ff6d1461072157600080fd5b8063715018a6146106375780637dfed9fe1461064c5780638462151c146106615780638da5cb5b1461068e57806395d89b41146106ac57806398e52f9a146106c157600080fd5b80633c18c3da1161024f57806360d938dc1161020857806364bfa546116101e257806364bfa546146105b75780636c19e783146105d757806370a08231146105f757806370c425751461061757600080fd5b806360d938dc14610562578063611f3f10146105815780636352211e1461059757600080fd5b80633c18c3da146104b85780633ccfd60b146104cb5780633e07ac02146104e057806342842e0e146104f557806355f804b3146105155780635bbb21771461053557600080fd5b80631e84c413116102bc57806331c3c7a01161029657806331c3c7a01461044c57806332cb6b0c1461046257806334837ad3146104785780633549345e1461049857600080fd5b80631e84c413146103f257806323b872dd1461040c5780632446548f1461042c57600080fd5b806301ffc9a714610304578063027752401461033957806306fdde031461035d578063081812fc1461037f578063095ea7b3146103b757806318160ddd146103d9575b600080fd5b34801561031057600080fd5b5061032461031f366004612bf0565b6109c6565b60405190151581526020015b60405180910390f35b34801561034557600080fd5b5061034f600c5481565b604051908152602001610330565b34801561036957600080fd5b50610372610a18565b6040516103309190612c5d565b34801561038b57600080fd5b5061039f61039a366004612c70565b610aaa565b6040516001600160a01b039091168152602001610330565b3480156103c357600080fd5b506103d76103d2366004612ca0565b610aee565b005b3480156103e557600080fd5b506001546000540361034f565b3480156103fe57600080fd5b50600e546103249060ff1681565b34801561041857600080fd5b506103d7610427366004612cca565b610bc0565b34801561043857600080fd5b506103d7610447366004612dda565b610bd0565b34801561045857600080fd5b5061034f600a5481565b34801561046e57600080fd5b5061034f60095481565b34801561048457600080fd5b506103d7610493366004612e99565b610d20565b3480156104a457600080fd5b506103d76104b3366004612c70565b610fc9565b6103d76104c6366004612e99565b610ff8565b3480156104d757600080fd5b506103d76112d0565b3480156104ec57600080fd5b506103d7611439565b34801561050157600080fd5b506103d7610510366004612cca565b611480565b34801561052157600080fd5b506103d7610530366004612f7a565b61149b565b34801561054157600080fd5b50610555610550366004612fbb565b6114d2565b604051610330919061302f565b34801561056e57600080fd5b50600e5461032490610100900460ff1681565b34801561058d57600080fd5b5061034f600b5481565b3480156105a357600080fd5b5061039f6105b2366004612c70565b611596565b3480156105c357600080fd5b506103d76105d2366004612c70565b6115a1565b3480156105e357600080fd5b506103d76105f2366004613099565b6115d0565b34801561060357600080fd5b5061034f610612366004613099565b61161c565b34801561062357600080fd5b506103d7610632366004612c70565b611664565b34801561064357600080fd5b506103d7611693565b34801561065857600080fd5b506103d76116c9565b34801561066d57600080fd5b5061068161067c366004613099565b611707565b60405161033091906130b4565b34801561069a57600080fd5b506008546001600160a01b031661039f565b3480156106b857600080fd5b50610372611808565b3480156106cd57600080fd5b506103d76106dc366004612c70565b611817565b3480156106ed57600080fd5b506106816106fc3660046130ec565b61188e565b34801561070d57600080fd5b506103d761071c366004612c70565b611a07565b34801561072d57600080fd5b506103d761073c36600461312f565b611a36565b34801561074d57600080fd5b506103d761075c366004613181565b611a82565b34801561076d57600080fd5b5061034f601481565b34801561078257600080fd5b5061039f73c09621b7b1e2beb9f12354703555552c864a6f5581565b6103d76107ac366004613223565b611b17565b3480156107bd57600080fd5b506107e56107cc366004613099565b6012602052600090815260409020805460019091015482565b60408051928352602083019190915201610330565b34801561080657600080fd5b5061034f600d5481565b34801561081c57600080fd5b506103d761082b366004613284565b611e59565b34801561083c57600080fd5b5061085061084b366004612c70565b611e9d565b60405161033091906132eb565b34801561086957600080fd5b506103d7610878366004612c70565b611f06565b34801561088957600080fd5b50610372610898366004612c70565b611f35565b3480156108a957600080fd5b506103246108b8366004612c70565b60156020526000908152604090205460ff1681565b3480156108d957600080fd5b5061034f6108e8366004613099565b611f92565b3480156108f957600080fd5b5061039f73c9b5553910ba47719e0202ff9f617b8be06b3a0981565b34801561092157600080fd5b50610324610930366004613320565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b34801561096a57600080fd5b5061039f730fbbcc510ec055732a72eec6b243241753c3ed0d81565b34801561099257600080fd5b506103d76109a1366004613099565b611fbc565b3480156109b257600080fd5b506103d76109c1366004612c70565b612057565b60006301ffc9a760e01b6001600160e01b0319831614806109f757506380ac58cd60e01b6001600160e01b03198316145b80610a125750635b5e139f60e01b6001600160e01b03198316145b92915050565b606060028054610a279061334a565b80601f0160208091040260200160405190810160405280929190818152602001828054610a539061334a565b8015610aa05780601f10610a7557610100808354040283529160200191610aa0565b820191906000526020600020905b815481529060010190602001808311610a8357829003601f168201915b5050505050905090565b6000610ab582612086565b610ad2576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b6000610af9826120ad565b9050806001600160a01b0316836001600160a01b031603610b2d5760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b03821614610b6457610b478133610930565b610b64576040516367d9dca160e11b815260040160405180910390fd5b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b610bcb838383612114565b505050565b6008546001600160a01b03163314610c035760405162461bcd60e51b8152600401610bfa90613384565b60405180910390fd5b8051825114610c475760405162461bcd60e51b815260206004820152601060248201526f57524f4e475f504152414d455445525360801b6044820152606401610bfa565b6000805b8251811015610c8d57828181518110610c6657610c666133b9565b602002602001015182610c7991906133e5565b915080610c85816133f8565b915050610c4b565b5060095460015460005403610ca290836133e5565b1115610cc05760405162461bcd60e51b8152600401610bfa90613411565b60005b8351811015610d1a57610d08848281518110610ce157610ce16133b9565b6020026020010151848381518110610cfb57610cfb6133b9565b60200260200101516122b8565b80610d12816133f8565b915050610cc3565b50505050565b336000908152601360205260409020546003904211610d515760405162461bcd60e51b8152600401610bfa9061343c565b323314610d705760405162461bcd60e51b8152600401610bfa90613473565b8060ff16600103610d9d57600e5460ff16610d9d5760405162461bcd60e51b8152600401610bfa906134aa565b8060ff16600203610dcf57600e54610100900460ff16610dcf5760405162461bcd60e51b8152600401610bfa906134e1565b8060ff16600303610e0157600e54610100900460ff16610e015760405162461bcd60e51b8152600401610bfa90613518565b82600954610e126001546000540390565b610e1c90836133e5565b1115610e3a5760405162461bcd60e51b8152600401610bfa90613411565b600c54610e4633611f92565b610e5090836133e5565b1115610e6e5760405162461bcd60e51b8152600401610bfa9061354f565b600d54811115610e905760405162461bcd60e51b8152600401610bfa9061357a565b6040516001600160601b03193360601b16602082015260348101849052600090605401604051602081830303815290604052805190602001209050610ed886601154836122d2565b610f145760405162461bcd60e51b815260206004820152600d60248201526c141493d3d197d2539590531251609a1b6044820152606401610bfa565b336000908152601260205260409020600101548490610f349087906133e5565b1115610f825760405162461bcd60e51b815260206004820152601b60248201527f4558434545445f414c4c4f43415445445f4d494e545f4c494d495400000000006044820152606401610bfa565b336000908152601360209081526040808320429055601290915281206001018054879290610fb19084906133e5565b90915550610fc1905033866122e8565b505050505050565b6008546001600160a01b03163314610ff35760405162461bcd60e51b8152600401610bfa90613384565b600a55565b3360009081526013602052604090205460029042116110295760405162461bcd60e51b8152600401610bfa9061343c565b3233146110485760405162461bcd60e51b8152600401610bfa90613473565b8060ff1660010361107557600e5460ff166110755760405162461bcd60e51b8152600401610bfa906134aa565b8060ff166002036110a757600e54610100900460ff166110a75760405162461bcd60e51b8152600401610bfa906134e1565b8060ff166003036110d957600e54610100900460ff166110d95760405162461bcd60e51b8152600401610bfa90613518565b826009546110ea6001546000540390565b6110f490836133e5565b11156111125760405162461bcd60e51b8152600401610bfa90613411565b600c5461111e33611f92565b61112890836133e5565b11156111465760405162461bcd60e51b8152600401610bfa9061354f565b600d548111156111685760405162461bcd60e51b8152600401610bfa9061357a565b6040516001600160601b03193360601b166020820152603481018490526000906054016040516020818303038152906040528051906020012090506111b086601054836122d2565b6111ec5760405162461bcd60e51b815260206004820152600d60248201526c141493d3d197d2539590531251609a1b6044820152606401610bfa565b3360009081526012602052604090205484906112099087906133e5565b11156112575760405162461bcd60e51b815260206004820152601b60248201527f4558434545445f414c4c4f43415445445f4d494e545f4c494d495400000000006044820152606401610bfa565b84600a5461126591906135c2565b34146112a45760405162461bcd60e51b815260206004820152600e60248201526d1253959053125117d05353d5539560921b6044820152606401610bfa565b336000908152601360209081526040808320429055601290915281208054879290610fb19084906133e5565b6008546001600160a01b031633146112fa5760405162461bcd60e51b8152600401610bfa90613384565b47806113415760405162461bcd60e51b81526020600482015260166024820152754e6f2062616c616e636520746f20776974686472617760501b6044820152606401610bfa565b730fbbcc510ec055732a72eec6b243241753c3ed0d6108fc612710611368846101c26135c2565b61137291906135f7565b6040518115909202916000818181858888f1935050505015801561139a573d6000803e3d6000fd5b5073c9b5553910ba47719e0202ff9f617b8be06b3a096108fc6127106113c2846106a46135c2565b6113cc91906135f7565b6040518115909202916000818181858888f193505050501580156113f4573d6000803e3d6000fd5b5060405173c09621b7b1e2beb9f12354703555552c864a6f55904780156108fc02916000818181858888f19350505050158015611435573d6000803e3d6000fd5b5050565b6008546001600160a01b031633146114635760405162461bcd60e51b8152600401610bfa90613384565b600e805461ff001981166101009182900460ff1615909102179055565b610bcb83838360405180602001604052806000815250611e59565b6008546001600160a01b031633146114c55760405162461bcd60e51b8152600401610bfa90613384565b600f610bcb828483613651565b6060816000816001600160401b038111156114ef576114ef612d06565b60405190808252806020026020018201604052801561153a57816020015b604080516060810182526000808252602080830182905292820152825260001990920191018161150d5790505b50905060005b82811461158d5761156886868381811061155c5761155c6133b9565b90506020020135611e9d565b82828151811061157a5761157a6133b9565b6020908102919091010152600101611540565b50949350505050565b6000610a12826120ad565b6008546001600160a01b031633146115cb5760405162461bcd60e51b8152600401610bfa90613384565b600d55565b6008546001600160a01b031633146115fa5760405162461bcd60e51b8152600401610bfa90613384565b601480546001600160a01b0319166001600160a01b0392909216919091179055565b60008160000361163f576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b03166000908152600560205260409020546001600160401b031690565b6008546001600160a01b0316331461168e5760405162461bcd60e51b8152600401610bfa90613384565b601155565b6008546001600160a01b031633146116bd5760405162461bcd60e51b8152600401610bfa90613384565b6116c760006123b1565b565b6008546001600160a01b031633146116f35760405162461bcd60e51b8152600401610bfa90613384565b600e805460ff19811660ff90911615179055565b606060008060006117178561161c565b90506000816001600160401b0381111561173357611733612d06565b60405190808252806020026020018201604052801561175c578160200160208202803683370190505b509050611782604080516060810182526000808252602082018190529181019190915290565b60005b8386146117fc5761179581612403565b915081604001516117f45781516001600160a01b0316156117b557815194505b876001600160a01b0316856001600160a01b0316036117f457808387806001019850815181106117e7576117e76133b9565b6020026020010181815250505b600101611785565b50909695505050505050565b606060038054610a279061334a565b6008546001600160a01b031633146118415760405162461bcd60e51b8152600401610bfa90613384565b60095481106118895760405162461bcd60e51b815260206004820152601460248201527343414e545f494e4352454153455f535550504c5960601b6044820152606401610bfa565b600955565b60608183106118b057604051631960ccad60e11b815260040160405180910390fd5b6000806118bc60005490565b9050808411156118ca578093505b60006118d58761161c565b9050848610156118f457858503818110156118ee578091505b506118f8565b5060005b6000816001600160401b0381111561191257611912612d06565b60405190808252806020026020018201604052801561193b578160200160208202803683370190505b50905081600003611951579350611a0092505050565b600061195c88611e9d565b90506000816040015161196d575080515b885b88811415801561197f5750848714155b156119f45761198d81612403565b925082604001516119ec5782516001600160a01b0316156119ad57825191505b8a6001600160a01b0316826001600160a01b0316036119ec57808488806001019950815181106119df576119df6133b9565b6020026020010181815250505b60010161196f565b50505092835250909150505b9392505050565b6008546001600160a01b03163314611a315760405162461bcd60e51b8152600401610bfa90613384565b600c55565b6008546001600160a01b03163314611a605760405162461bcd60e51b8152600401610bfa90613384565b600e805462ff000019166201000085151502179055600f610d1a828483613651565b336001600160a01b03831603611aab5760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b336000908152601360205260409020546001904211611b485760405162461bcd60e51b8152600401610bfa9061343c565b323314611b675760405162461bcd60e51b8152600401610bfa90613473565b8060ff16600103611b9457600e5460ff16611b945760405162461bcd60e51b8152600401610bfa906134aa565b8060ff16600203611bc657600e54610100900460ff16611bc65760405162461bcd60e51b8152600401610bfa906134e1565b8060ff16600303611bf857600e54610100900460ff16611bf85760405162461bcd60e51b8152600401610bfa90613518565b83600954611c096001546000540390565b611c1390836133e5565b1115611c315760405162461bcd60e51b8152600401610bfa90613411565b600c54611c3d33611f92565b611c4790836133e5565b1115611c655760405162461bcd60e51b8152600401610bfa9061354f565b600d54811115611c875760405162461bcd60e51b8152600401610bfa9061357a565b6040516001600160601b03193360601b1660208201526001600160c01b031960c086901b166034820152603c8101869052600090605c01604051602081830303815290604052805190602001209050611ce08482612438565b611d2c5760405162461bcd60e51b815260206004820152601960248201527f434f4e54524143545f4d494e545f4e4f545f414c4c4f574544000000000000006044820152606401610bfa565b846001600160401b0316421115611d795760405162461bcd60e51b8152602060048201526011602482015270455850495245445f5349474e415455524560781b6044820152606401610bfa565b60008181526015602052604090205460ff1615611dd85760405162461bcd60e51b815260206004820152601d60248201527f5349474e41545552455f4c4f4f50494e475f4e4f545f414c4c4f5745440000006044820152606401610bfa565b85600b54611de691906135c2565b3414611e255760405162461bcd60e51b815260206004820152600e60248201526d1253959053125117d05353d5539560921b6044820152606401610bfa565b33600081815260136020908152604080832042905584835260159091529020805460ff19166001179055610fc190876122e8565b611e64848484612114565b6001600160a01b0383163b15610d1a57611e8084848484612462565b610d1a576040516368d2bf6b60e11b815260040160405180910390fd5b6040805160608082018352600080835260208084018290528385018290528451928301855281835282018190529281018390529091506000548310611ee25792915050565b611eeb83612403565b9050806040015115611efd5792915050565b611a008361254e565b6008546001600160a01b03163314611f305760405162461bcd60e51b8152600401610bfa90613384565b600b55565b600e5460609062010000900460ff1615611f7b57600f611f548361257c565b604051602001611f65929190613784565b6040516020818303038152906040529050919050565b600f604051602001611f6591906137a9565b919050565b6001600160a01b038116600090815260056020526040808220546001600160401b03911c16610a12565b6008546001600160a01b03163314611fe65760405162461bcd60e51b8152600401610bfa90613384565b6001600160a01b03811661204b5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610bfa565b612054816123b1565b50565b6008546001600160a01b031633146120815760405162461bcd60e51b8152600401610bfa90613384565b601055565b6000805482108015610a12575050600090815260046020526040902054600160e01b161590565b6000816000548110156120fb5760008181526004602052604081205490600160e01b821690036120f9575b80600003611a005750600019016000818152600460205260409020546120d8565b505b604051636f96cda160e11b815260040160405180910390fd5b600061211f826120ad565b9050836001600160a01b0316816001600160a01b0316146121525760405162a1148160e81b815260040160405180910390fd5b6000828152600660205260408120546001600160a01b039081169190861633148061218257506121828633610930565b8061219557506001600160a01b03821633145b9050806121b557604051632ce44b5f60e11b815260040160405180910390fd5b846000036121d657604051633a954ecd60e21b815260040160405180910390fd5b81156121f957600084815260066020526040902080546001600160a01b03191690555b6001600160a01b038681166000908152600560209081526040808320805460001901905592881682528282208054600101905586825260049052908120600160e11b4260a01b8817811790915584169003612284576001840160008181526004602052604081205490036122825760005481146122825760008181526004602052604090208490555b505b83856001600160a01b0316876001600160a01b031660008051602061384d83398151915260405160405180910390a4610fc1565b61143582826040518060200160405280600081525061267c565b6000826122df85846127c6565b14949350505050565b6000548260000361230b57604051622e076360e81b815260040160405180910390fd5b8160000361232c5760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b03831660009081526005602090815260408083208054680100000000000000018702019055838352600490915290204260a01b84176001841460e11b179055808083015b6040516001830192906001600160a01b0387169060009060008051602061384d833981519152908290a48082106123775750600055505050565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6040805160608101825260008082526020820181905291810191909152600082815260046020526040902054610a129061283a565b6014546000906001600160a01b03166124518385612874565b6001600160a01b0316149392505050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a02906124979033908990889088906004016137b5565b6020604051808303816000875af19250505080156124d2575060408051601f3d908101601f191682019092526124cf918101906137f2565b60015b612530573d808015612500576040519150601f19603f3d011682016040523d82523d6000602084013e612505565b606091505b508051600003612528576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b6040805160608101825260008082526020820181905291810191909152610a12612577836120ad565b61283a565b6060816000036125a35750506040805180820190915260018152600360fc1b602082015290565b8160005b81156125cd57806125b7816133f8565b91506125c69050600a836135f7565b91506125a7565b6000816001600160401b038111156125e7576125e7612d06565b6040519080825280601f01601f191660200182016040528015612611576020820181803683370190505b5090505b84156125465761262660018361380f565b9150612633600a86613822565b61263e9060306133e5565b60f81b818381518110612653576126536133b9565b60200101906001600160f81b031916908160001a905350612675600a866135f7565b9450612615565b6000548360000361269f57604051622e076360e81b815260040160405180910390fd5b826000036126c05760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b03841660008181526005602090815260408083208054680100000000000000018902019055848352600490915290204260a01b86176001861460e11b1790558190818501903b15612783575b60405182906001600160a01b0388169060009060008051602061384d833981519152908290a461274c6000878480600101955087612462565b612769576040516368d2bf6b60e11b815260040160405180910390fd5b80821061271357826000541461277e57600080fd5b6127b6565b5b6040516001830192906001600160a01b0388169060009060008051602061384d833981519152908290a4808210612784575b506000908155610d1a9085838684565b600081815b84518110156128325760008582815181106127e8576127e86133b9565b6020026020010151905080831161280e576000838152602082905260409020925061281f565b600081815260208490526040902092505b508061282a816133f8565b9150506127cb565b509392505050565b604080516060810182526001600160a01b038316815260a083901c6001600160401b03166020820152600160e01b90921615159082015290565b60008060006128838585612890565b91509150612832816128fe565b60008082516041036128c65760208301516040840151606085015160001a6128ba87828585612ab4565b945094505050506128f7565b82516040036128ef57602083015160408401516128e4868383612ba1565b9350935050506128f7565b506000905060025b9250929050565b600081600481111561291257612912613836565b0361291a5750565b600181600481111561292e5761292e613836565b0361297b5760405162461bcd60e51b815260206004820152601860248201527f45434453413a20696e76616c6964207369676e617475726500000000000000006044820152606401610bfa565b600281600481111561298f5761298f613836565b036129dc5760405162461bcd60e51b815260206004820152601f60248201527f45434453413a20696e76616c6964207369676e6174757265206c656e677468006044820152606401610bfa565b60038160048111156129f0576129f0613836565b03612a485760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202773272076616c604482015261756560f01b6064820152608401610bfa565b6004816004811115612a5c57612a5c613836565b036120545760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202776272076616c604482015261756560f01b6064820152608401610bfa565b6000807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a0831115612aeb5750600090506003612b98565b8460ff16601b14158015612b0357508460ff16601c14155b15612b145750600090506004612b98565b6040805160008082526020820180845289905260ff881692820192909252606081018690526080810185905260019060a0016020604051602081039080840390855afa158015612b68573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b038116612b9157600060019250925050612b98565b9150600090505b94509492505050565b6000806001600160ff1b03831681612bbe60ff86901c601b6133e5565b9050612bcc87828885612ab4565b935093505050935093915050565b6001600160e01b03198116811461205457600080fd5b600060208284031215612c0257600080fd5b8135611a0081612bda565b60005b83811015612c28578181015183820152602001612c10565b50506000910152565b60008151808452612c49816020860160208601612c0d565b601f01601f19169290920160200192915050565b602081526000611a006020830184612c31565b600060208284031215612c8257600080fd5b5035919050565b80356001600160a01b0381168114611f8d57600080fd5b60008060408385031215612cb357600080fd5b612cbc83612c89565b946020939093013593505050565b600080600060608486031215612cdf57600080fd5b612ce884612c89565b9250612cf660208501612c89565b9150604084013590509250925092565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f191681016001600160401b0381118282101715612d4457612d44612d06565b604052919050565b60006001600160401b03821115612d6557612d65612d06565b5060051b60200190565b600082601f830112612d8057600080fd5b81356020612d95612d9083612d4c565b612d1c565b82815260059290921b84018101918181019086841115612db457600080fd5b8286015b84811015612dcf5780358352918301918301612db8565b509695505050505050565b60008060408385031215612ded57600080fd5b82356001600160401b0380821115612e0457600080fd5b818501915085601f830112612e1857600080fd5b81356020612e28612d9083612d4c565b82815260059290921b84018101918181019089841115612e4757600080fd5b948201945b83861015612e6c57612e5d86612c89565b82529482019490820190612e4c565b96505086013592505080821115612e8257600080fd5b50612e8f85828601612d6f565b9150509250929050565b600080600060608486031215612eae57600080fd5b83356001600160401b03811115612ec457600080fd5b8401601f81018613612ed557600080fd5b80356020612ee5612d9083612d4c565b82815260059290921b83018101918181019089841115612f0457600080fd5b938201935b83851015612f2257843582529382019390820190612f09565b999188013598505060409096013595945050505050565b60008083601f840112612f4b57600080fd5b5081356001600160401b03811115612f6257600080fd5b6020830191508360208285010111156128f757600080fd5b60008060208385031215612f8d57600080fd5b82356001600160401b03811115612fa357600080fd5b612faf85828601612f39565b90969095509350505050565b60008060208385031215612fce57600080fd5b82356001600160401b0380821115612fe557600080fd5b818501915085601f830112612ff957600080fd5b81358181111561300857600080fd5b8660208260051b850101111561301d57600080fd5b60209290920196919550909350505050565b6020808252825182820181905260009190848201906040850190845b818110156117fc5761308683855180516001600160a01b031682526020808201516001600160401b0316908301526040908101511515910152565b928401926060929092019160010161304b565b6000602082840312156130ab57600080fd5b611a0082612c89565b6020808252825182820181905260009190848201906040850190845b818110156117fc578351835292840192918401916001016130d0565b60008060006060848603121561310157600080fd5b61310a84612c89565b95602085013595506040909401359392505050565b80358015158114611f8d57600080fd5b60008060006040848603121561314457600080fd5b61314d8461311f565b925060208401356001600160401b0381111561316857600080fd5b61317486828701612f39565b9497909650939450505050565b6000806040838503121561319457600080fd5b61319d83612c89565b91506131ab6020840161311f565b90509250929050565b600082601f8301126131c557600080fd5b81356001600160401b038111156131de576131de612d06565b6131f1601f8201601f1916602001612d1c565b81815284602083860101111561320657600080fd5b816020850160208301376000918101602001919091529392505050565b60008060006060848603121561323857600080fd5b8335925060208401356001600160401b03808216821461325757600080fd5b9092506040850135908082111561326d57600080fd5b5061327a868287016131b4565b9150509250925092565b6000806000806080858703121561329a57600080fd5b6132a385612c89565b93506132b160208601612c89565b92506040850135915060608501356001600160401b038111156132d357600080fd5b6132df878288016131b4565b91505092959194509250565b81516001600160a01b031681526020808301516001600160401b03169082015260408083015115159082015260608101610a12565b6000806040838503121561333357600080fd5b61333c83612c89565b91506131ab60208401612c89565b600181811c9082168061335e57607f821691505b60208210810361337e57634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b80820180821115610a1257610a126133cf565b60006001820161340a5761340a6133cf565b5060010190565b6020808252601190820152704e4f545f454e4f5547485f535550504c5960781b604082015260600190565b6020808252601d908201527f43414e4e4f545f4d494e545f4f4e5f5448455f53414d455f424c4f434b000000604082015260600190565b6020808252601d908201527f434f4e5452414354535f4e4f545f414c4c4f5745445f544f5f4d494e54000000604082015260600190565b6020808252601d908201527f5055424c49435f4d494e545f49535f4e4f545f5945545f414354495645000000604082015260600190565b6020808252601e908201527f50524553414c455f4d494e545f49535f4e4f545f5945545f4143544956450000604082015260600190565b6020808252601b908201527f465245455f4d494e545f49535f4e4f545f5945545f4143544956450000000000604082015260600190565b602080825260119082015270115610d1515117d352539517d312535255607a1b604082015260600190565b60208082526028908201527f455843454544494e475f4d4158494d554d5f414d4f554e545f5045525f5452416040820152672729a0a1aa24a7a760c11b606082015260800190565b60008160001904831182151516156135dc576135dc6133cf565b500290565b634e487b7160e01b600052601260045260246000fd5b600082613606576136066135e1565b500490565b601f821115610bcb57600081815260208120601f850160051c810160208610156136325750805b601f850160051c820191505b81811015610fc15782815560010161363e565b6001600160401b0383111561366857613668612d06565b61367c83613676835461334a565b8361360b565b6000601f8411600181146136b057600085156136985750838201355b600019600387901b1c1916600186901b17835561370a565b600083815260209020601f19861690835b828110156136e157868501358255602094850194600190920191016136c1565b50868210156136fe5760001960f88860031b161c19848701351681555b505060018560011b0183555b5050505050565b6000815461371e8161334a565b60018281168015613736576001811461374b5761377a565b60ff198416875282151583028701945061377a565b8560005260208060002060005b858110156137715781548a820152908401908201613758565b50505082870194505b5050505092915050565b60006137908285613711565b83516137a0818360208801612c0d565b01949350505050565b6000611a008284613711565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906137e890830184612c31565b9695505050505050565b60006020828403121561380457600080fd5b8151611a0081612bda565b81810381811115610a1257610a126133cf565b600082613831576138316135e1565b500690565b634e487b7160e01b600052602160045260246000fdfeddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3efa26469706673582212209c01f52725ffb8683805295cd6727cf02b82b6b673650644978cca5aa01611c564736f6c63430008100033

Deployed Bytecode

0x6080604052600436106102ff5760003560e01c8063715018a611610190578063b484eff7116100dc578063d39c4de711610095578063e985e9c51161006f578063e985e9c514610915578063edc2ac021461095e578063f2fde38b14610986578063fe042d49146109a657600080fd5b8063d39c4de71461089d578063dc33e681146108cd578063de97536b146108ed57600080fd5b8063b484eff7146107b1578063b6fd509b146107fa578063b88d4fde14610810578063c23dc68f14610830578063c62752551461085d578063c87b56dd1461087d57600080fd5b806399a2557a11610149578063a22cb46511610123578063a22cb46514610741578063aa66797b14610761578063b08da34214610776578063b3754e861461079e57600080fd5b806399a2557a146106e15780639e6a1d7d14610701578063a101ff6d1461072157600080fd5b8063715018a6146106375780637dfed9fe1461064c5780638462151c146106615780638da5cb5b1461068e57806395d89b41146106ac57806398e52f9a146106c157600080fd5b80633c18c3da1161024f57806360d938dc1161020857806364bfa546116101e257806364bfa546146105b75780636c19e783146105d757806370a08231146105f757806370c425751461061757600080fd5b806360d938dc14610562578063611f3f10146105815780636352211e1461059757600080fd5b80633c18c3da146104b85780633ccfd60b146104cb5780633e07ac02146104e057806342842e0e146104f557806355f804b3146105155780635bbb21771461053557600080fd5b80631e84c413116102bc57806331c3c7a01161029657806331c3c7a01461044c57806332cb6b0c1461046257806334837ad3146104785780633549345e1461049857600080fd5b80631e84c413146103f257806323b872dd1461040c5780632446548f1461042c57600080fd5b806301ffc9a714610304578063027752401461033957806306fdde031461035d578063081812fc1461037f578063095ea7b3146103b757806318160ddd146103d9575b600080fd5b34801561031057600080fd5b5061032461031f366004612bf0565b6109c6565b60405190151581526020015b60405180910390f35b34801561034557600080fd5b5061034f600c5481565b604051908152602001610330565b34801561036957600080fd5b50610372610a18565b6040516103309190612c5d565b34801561038b57600080fd5b5061039f61039a366004612c70565b610aaa565b6040516001600160a01b039091168152602001610330565b3480156103c357600080fd5b506103d76103d2366004612ca0565b610aee565b005b3480156103e557600080fd5b506001546000540361034f565b3480156103fe57600080fd5b50600e546103249060ff1681565b34801561041857600080fd5b506103d7610427366004612cca565b610bc0565b34801561043857600080fd5b506103d7610447366004612dda565b610bd0565b34801561045857600080fd5b5061034f600a5481565b34801561046e57600080fd5b5061034f60095481565b34801561048457600080fd5b506103d7610493366004612e99565b610d20565b3480156104a457600080fd5b506103d76104b3366004612c70565b610fc9565b6103d76104c6366004612e99565b610ff8565b3480156104d757600080fd5b506103d76112d0565b3480156104ec57600080fd5b506103d7611439565b34801561050157600080fd5b506103d7610510366004612cca565b611480565b34801561052157600080fd5b506103d7610530366004612f7a565b61149b565b34801561054157600080fd5b50610555610550366004612fbb565b6114d2565b604051610330919061302f565b34801561056e57600080fd5b50600e5461032490610100900460ff1681565b34801561058d57600080fd5b5061034f600b5481565b3480156105a357600080fd5b5061039f6105b2366004612c70565b611596565b3480156105c357600080fd5b506103d76105d2366004612c70565b6115a1565b3480156105e357600080fd5b506103d76105f2366004613099565b6115d0565b34801561060357600080fd5b5061034f610612366004613099565b61161c565b34801561062357600080fd5b506103d7610632366004612c70565b611664565b34801561064357600080fd5b506103d7611693565b34801561065857600080fd5b506103d76116c9565b34801561066d57600080fd5b5061068161067c366004613099565b611707565b60405161033091906130b4565b34801561069a57600080fd5b506008546001600160a01b031661039f565b3480156106b857600080fd5b50610372611808565b3480156106cd57600080fd5b506103d76106dc366004612c70565b611817565b3480156106ed57600080fd5b506106816106fc3660046130ec565b61188e565b34801561070d57600080fd5b506103d761071c366004612c70565b611a07565b34801561072d57600080fd5b506103d761073c36600461312f565b611a36565b34801561074d57600080fd5b506103d761075c366004613181565b611a82565b34801561076d57600080fd5b5061034f601481565b34801561078257600080fd5b5061039f73c09621b7b1e2beb9f12354703555552c864a6f5581565b6103d76107ac366004613223565b611b17565b3480156107bd57600080fd5b506107e56107cc366004613099565b6012602052600090815260409020805460019091015482565b60408051928352602083019190915201610330565b34801561080657600080fd5b5061034f600d5481565b34801561081c57600080fd5b506103d761082b366004613284565b611e59565b34801561083c57600080fd5b5061085061084b366004612c70565b611e9d565b60405161033091906132eb565b34801561086957600080fd5b506103d7610878366004612c70565b611f06565b34801561088957600080fd5b50610372610898366004612c70565b611f35565b3480156108a957600080fd5b506103246108b8366004612c70565b60156020526000908152604090205460ff1681565b3480156108d957600080fd5b5061034f6108e8366004613099565b611f92565b3480156108f957600080fd5b5061039f73c9b5553910ba47719e0202ff9f617b8be06b3a0981565b34801561092157600080fd5b50610324610930366004613320565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b34801561096a57600080fd5b5061039f730fbbcc510ec055732a72eec6b243241753c3ed0d81565b34801561099257600080fd5b506103d76109a1366004613099565b611fbc565b3480156109b257600080fd5b506103d76109c1366004612c70565b612057565b60006301ffc9a760e01b6001600160e01b0319831614806109f757506380ac58cd60e01b6001600160e01b03198316145b80610a125750635b5e139f60e01b6001600160e01b03198316145b92915050565b606060028054610a279061334a565b80601f0160208091040260200160405190810160405280929190818152602001828054610a539061334a565b8015610aa05780601f10610a7557610100808354040283529160200191610aa0565b820191906000526020600020905b815481529060010190602001808311610a8357829003601f168201915b5050505050905090565b6000610ab582612086565b610ad2576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b6000610af9826120ad565b9050806001600160a01b0316836001600160a01b031603610b2d5760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b03821614610b6457610b478133610930565b610b64576040516367d9dca160e11b815260040160405180910390fd5b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b610bcb838383612114565b505050565b6008546001600160a01b03163314610c035760405162461bcd60e51b8152600401610bfa90613384565b60405180910390fd5b8051825114610c475760405162461bcd60e51b815260206004820152601060248201526f57524f4e475f504152414d455445525360801b6044820152606401610bfa565b6000805b8251811015610c8d57828181518110610c6657610c666133b9565b602002602001015182610c7991906133e5565b915080610c85816133f8565b915050610c4b565b5060095460015460005403610ca290836133e5565b1115610cc05760405162461bcd60e51b8152600401610bfa90613411565b60005b8351811015610d1a57610d08848281518110610ce157610ce16133b9565b6020026020010151848381518110610cfb57610cfb6133b9565b60200260200101516122b8565b80610d12816133f8565b915050610cc3565b50505050565b336000908152601360205260409020546003904211610d515760405162461bcd60e51b8152600401610bfa9061343c565b323314610d705760405162461bcd60e51b8152600401610bfa90613473565b8060ff16600103610d9d57600e5460ff16610d9d5760405162461bcd60e51b8152600401610bfa906134aa565b8060ff16600203610dcf57600e54610100900460ff16610dcf5760405162461bcd60e51b8152600401610bfa906134e1565b8060ff16600303610e0157600e54610100900460ff16610e015760405162461bcd60e51b8152600401610bfa90613518565b82600954610e126001546000540390565b610e1c90836133e5565b1115610e3a5760405162461bcd60e51b8152600401610bfa90613411565b600c54610e4633611f92565b610e5090836133e5565b1115610e6e5760405162461bcd60e51b8152600401610bfa9061354f565b600d54811115610e905760405162461bcd60e51b8152600401610bfa9061357a565b6040516001600160601b03193360601b16602082015260348101849052600090605401604051602081830303815290604052805190602001209050610ed886601154836122d2565b610f145760405162461bcd60e51b815260206004820152600d60248201526c141493d3d197d2539590531251609a1b6044820152606401610bfa565b336000908152601260205260409020600101548490610f349087906133e5565b1115610f825760405162461bcd60e51b815260206004820152601b60248201527f4558434545445f414c4c4f43415445445f4d494e545f4c494d495400000000006044820152606401610bfa565b336000908152601360209081526040808320429055601290915281206001018054879290610fb19084906133e5565b90915550610fc1905033866122e8565b505050505050565b6008546001600160a01b03163314610ff35760405162461bcd60e51b8152600401610bfa90613384565b600a55565b3360009081526013602052604090205460029042116110295760405162461bcd60e51b8152600401610bfa9061343c565b3233146110485760405162461bcd60e51b8152600401610bfa90613473565b8060ff1660010361107557600e5460ff166110755760405162461bcd60e51b8152600401610bfa906134aa565b8060ff166002036110a757600e54610100900460ff166110a75760405162461bcd60e51b8152600401610bfa906134e1565b8060ff166003036110d957600e54610100900460ff166110d95760405162461bcd60e51b8152600401610bfa90613518565b826009546110ea6001546000540390565b6110f490836133e5565b11156111125760405162461bcd60e51b8152600401610bfa90613411565b600c5461111e33611f92565b61112890836133e5565b11156111465760405162461bcd60e51b8152600401610bfa9061354f565b600d548111156111685760405162461bcd60e51b8152600401610bfa9061357a565b6040516001600160601b03193360601b166020820152603481018490526000906054016040516020818303038152906040528051906020012090506111b086601054836122d2565b6111ec5760405162461bcd60e51b815260206004820152600d60248201526c141493d3d197d2539590531251609a1b6044820152606401610bfa565b3360009081526012602052604090205484906112099087906133e5565b11156112575760405162461bcd60e51b815260206004820152601b60248201527f4558434545445f414c4c4f43415445445f4d494e545f4c494d495400000000006044820152606401610bfa565b84600a5461126591906135c2565b34146112a45760405162461bcd60e51b815260206004820152600e60248201526d1253959053125117d05353d5539560921b6044820152606401610bfa565b336000908152601360209081526040808320429055601290915281208054879290610fb19084906133e5565b6008546001600160a01b031633146112fa5760405162461bcd60e51b8152600401610bfa90613384565b47806113415760405162461bcd60e51b81526020600482015260166024820152754e6f2062616c616e636520746f20776974686472617760501b6044820152606401610bfa565b730fbbcc510ec055732a72eec6b243241753c3ed0d6108fc612710611368846101c26135c2565b61137291906135f7565b6040518115909202916000818181858888f1935050505015801561139a573d6000803e3d6000fd5b5073c9b5553910ba47719e0202ff9f617b8be06b3a096108fc6127106113c2846106a46135c2565b6113cc91906135f7565b6040518115909202916000818181858888f193505050501580156113f4573d6000803e3d6000fd5b5060405173c09621b7b1e2beb9f12354703555552c864a6f55904780156108fc02916000818181858888f19350505050158015611435573d6000803e3d6000fd5b5050565b6008546001600160a01b031633146114635760405162461bcd60e51b8152600401610bfa90613384565b600e805461ff001981166101009182900460ff1615909102179055565b610bcb83838360405180602001604052806000815250611e59565b6008546001600160a01b031633146114c55760405162461bcd60e51b8152600401610bfa90613384565b600f610bcb828483613651565b6060816000816001600160401b038111156114ef576114ef612d06565b60405190808252806020026020018201604052801561153a57816020015b604080516060810182526000808252602080830182905292820152825260001990920191018161150d5790505b50905060005b82811461158d5761156886868381811061155c5761155c6133b9565b90506020020135611e9d565b82828151811061157a5761157a6133b9565b6020908102919091010152600101611540565b50949350505050565b6000610a12826120ad565b6008546001600160a01b031633146115cb5760405162461bcd60e51b8152600401610bfa90613384565b600d55565b6008546001600160a01b031633146115fa5760405162461bcd60e51b8152600401610bfa90613384565b601480546001600160a01b0319166001600160a01b0392909216919091179055565b60008160000361163f576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b03166000908152600560205260409020546001600160401b031690565b6008546001600160a01b0316331461168e5760405162461bcd60e51b8152600401610bfa90613384565b601155565b6008546001600160a01b031633146116bd5760405162461bcd60e51b8152600401610bfa90613384565b6116c760006123b1565b565b6008546001600160a01b031633146116f35760405162461bcd60e51b8152600401610bfa90613384565b600e805460ff19811660ff90911615179055565b606060008060006117178561161c565b90506000816001600160401b0381111561173357611733612d06565b60405190808252806020026020018201604052801561175c578160200160208202803683370190505b509050611782604080516060810182526000808252602082018190529181019190915290565b60005b8386146117fc5761179581612403565b915081604001516117f45781516001600160a01b0316156117b557815194505b876001600160a01b0316856001600160a01b0316036117f457808387806001019850815181106117e7576117e76133b9565b6020026020010181815250505b600101611785565b50909695505050505050565b606060038054610a279061334a565b6008546001600160a01b031633146118415760405162461bcd60e51b8152600401610bfa90613384565b60095481106118895760405162461bcd60e51b815260206004820152601460248201527343414e545f494e4352454153455f535550504c5960601b6044820152606401610bfa565b600955565b60608183106118b057604051631960ccad60e11b815260040160405180910390fd5b6000806118bc60005490565b9050808411156118ca578093505b60006118d58761161c565b9050848610156118f457858503818110156118ee578091505b506118f8565b5060005b6000816001600160401b0381111561191257611912612d06565b60405190808252806020026020018201604052801561193b578160200160208202803683370190505b50905081600003611951579350611a0092505050565b600061195c88611e9d565b90506000816040015161196d575080515b885b88811415801561197f5750848714155b156119f45761198d81612403565b925082604001516119ec5782516001600160a01b0316156119ad57825191505b8a6001600160a01b0316826001600160a01b0316036119ec57808488806001019950815181106119df576119df6133b9565b6020026020010181815250505b60010161196f565b50505092835250909150505b9392505050565b6008546001600160a01b03163314611a315760405162461bcd60e51b8152600401610bfa90613384565b600c55565b6008546001600160a01b03163314611a605760405162461bcd60e51b8152600401610bfa90613384565b600e805462ff000019166201000085151502179055600f610d1a828483613651565b336001600160a01b03831603611aab5760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b336000908152601360205260409020546001904211611b485760405162461bcd60e51b8152600401610bfa9061343c565b323314611b675760405162461bcd60e51b8152600401610bfa90613473565b8060ff16600103611b9457600e5460ff16611b945760405162461bcd60e51b8152600401610bfa906134aa565b8060ff16600203611bc657600e54610100900460ff16611bc65760405162461bcd60e51b8152600401610bfa906134e1565b8060ff16600303611bf857600e54610100900460ff16611bf85760405162461bcd60e51b8152600401610bfa90613518565b83600954611c096001546000540390565b611c1390836133e5565b1115611c315760405162461bcd60e51b8152600401610bfa90613411565b600c54611c3d33611f92565b611c4790836133e5565b1115611c655760405162461bcd60e51b8152600401610bfa9061354f565b600d54811115611c875760405162461bcd60e51b8152600401610bfa9061357a565b6040516001600160601b03193360601b1660208201526001600160c01b031960c086901b166034820152603c8101869052600090605c01604051602081830303815290604052805190602001209050611ce08482612438565b611d2c5760405162461bcd60e51b815260206004820152601960248201527f434f4e54524143545f4d494e545f4e4f545f414c4c4f574544000000000000006044820152606401610bfa565b846001600160401b0316421115611d795760405162461bcd60e51b8152602060048201526011602482015270455850495245445f5349474e415455524560781b6044820152606401610bfa565b60008181526015602052604090205460ff1615611dd85760405162461bcd60e51b815260206004820152601d60248201527f5349474e41545552455f4c4f4f50494e475f4e4f545f414c4c4f5745440000006044820152606401610bfa565b85600b54611de691906135c2565b3414611e255760405162461bcd60e51b815260206004820152600e60248201526d1253959053125117d05353d5539560921b6044820152606401610bfa565b33600081815260136020908152604080832042905584835260159091529020805460ff19166001179055610fc190876122e8565b611e64848484612114565b6001600160a01b0383163b15610d1a57611e8084848484612462565b610d1a576040516368d2bf6b60e11b815260040160405180910390fd5b6040805160608082018352600080835260208084018290528385018290528451928301855281835282018190529281018390529091506000548310611ee25792915050565b611eeb83612403565b9050806040015115611efd5792915050565b611a008361254e565b6008546001600160a01b03163314611f305760405162461bcd60e51b8152600401610bfa90613384565b600b55565b600e5460609062010000900460ff1615611f7b57600f611f548361257c565b604051602001611f65929190613784565b6040516020818303038152906040529050919050565b600f604051602001611f6591906137a9565b919050565b6001600160a01b038116600090815260056020526040808220546001600160401b03911c16610a12565b6008546001600160a01b03163314611fe65760405162461bcd60e51b8152600401610bfa90613384565b6001600160a01b03811661204b5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610bfa565b612054816123b1565b50565b6008546001600160a01b031633146120815760405162461bcd60e51b8152600401610bfa90613384565b601055565b6000805482108015610a12575050600090815260046020526040902054600160e01b161590565b6000816000548110156120fb5760008181526004602052604081205490600160e01b821690036120f9575b80600003611a005750600019016000818152600460205260409020546120d8565b505b604051636f96cda160e11b815260040160405180910390fd5b600061211f826120ad565b9050836001600160a01b0316816001600160a01b0316146121525760405162a1148160e81b815260040160405180910390fd5b6000828152600660205260408120546001600160a01b039081169190861633148061218257506121828633610930565b8061219557506001600160a01b03821633145b9050806121b557604051632ce44b5f60e11b815260040160405180910390fd5b846000036121d657604051633a954ecd60e21b815260040160405180910390fd5b81156121f957600084815260066020526040902080546001600160a01b03191690555b6001600160a01b038681166000908152600560209081526040808320805460001901905592881682528282208054600101905586825260049052908120600160e11b4260a01b8817811790915584169003612284576001840160008181526004602052604081205490036122825760005481146122825760008181526004602052604090208490555b505b83856001600160a01b0316876001600160a01b031660008051602061384d83398151915260405160405180910390a4610fc1565b61143582826040518060200160405280600081525061267c565b6000826122df85846127c6565b14949350505050565b6000548260000361230b57604051622e076360e81b815260040160405180910390fd5b8160000361232c5760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b03831660009081526005602090815260408083208054680100000000000000018702019055838352600490915290204260a01b84176001841460e11b179055808083015b6040516001830192906001600160a01b0387169060009060008051602061384d833981519152908290a48082106123775750600055505050565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6040805160608101825260008082526020820181905291810191909152600082815260046020526040902054610a129061283a565b6014546000906001600160a01b03166124518385612874565b6001600160a01b0316149392505050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a02906124979033908990889088906004016137b5565b6020604051808303816000875af19250505080156124d2575060408051601f3d908101601f191682019092526124cf918101906137f2565b60015b612530573d808015612500576040519150601f19603f3d011682016040523d82523d6000602084013e612505565b606091505b508051600003612528576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b6040805160608101825260008082526020820181905291810191909152610a12612577836120ad565b61283a565b6060816000036125a35750506040805180820190915260018152600360fc1b602082015290565b8160005b81156125cd57806125b7816133f8565b91506125c69050600a836135f7565b91506125a7565b6000816001600160401b038111156125e7576125e7612d06565b6040519080825280601f01601f191660200182016040528015612611576020820181803683370190505b5090505b84156125465761262660018361380f565b9150612633600a86613822565b61263e9060306133e5565b60f81b818381518110612653576126536133b9565b60200101906001600160f81b031916908160001a905350612675600a866135f7565b9450612615565b6000548360000361269f57604051622e076360e81b815260040160405180910390fd5b826000036126c05760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b03841660008181526005602090815260408083208054680100000000000000018902019055848352600490915290204260a01b86176001861460e11b1790558190818501903b15612783575b60405182906001600160a01b0388169060009060008051602061384d833981519152908290a461274c6000878480600101955087612462565b612769576040516368d2bf6b60e11b815260040160405180910390fd5b80821061271357826000541461277e57600080fd5b6127b6565b5b6040516001830192906001600160a01b0388169060009060008051602061384d833981519152908290a4808210612784575b506000908155610d1a9085838684565b600081815b84518110156128325760008582815181106127e8576127e86133b9565b6020026020010151905080831161280e576000838152602082905260409020925061281f565b600081815260208490526040902092505b508061282a816133f8565b9150506127cb565b509392505050565b604080516060810182526001600160a01b038316815260a083901c6001600160401b03166020820152600160e01b90921615159082015290565b60008060006128838585612890565b91509150612832816128fe565b60008082516041036128c65760208301516040840151606085015160001a6128ba87828585612ab4565b945094505050506128f7565b82516040036128ef57602083015160408401516128e4868383612ba1565b9350935050506128f7565b506000905060025b9250929050565b600081600481111561291257612912613836565b0361291a5750565b600181600481111561292e5761292e613836565b0361297b5760405162461bcd60e51b815260206004820152601860248201527f45434453413a20696e76616c6964207369676e617475726500000000000000006044820152606401610bfa565b600281600481111561298f5761298f613836565b036129dc5760405162461bcd60e51b815260206004820152601f60248201527f45434453413a20696e76616c6964207369676e6174757265206c656e677468006044820152606401610bfa565b60038160048111156129f0576129f0613836565b03612a485760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202773272076616c604482015261756560f01b6064820152608401610bfa565b6004816004811115612a5c57612a5c613836565b036120545760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202776272076616c604482015261756560f01b6064820152608401610bfa565b6000807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a0831115612aeb5750600090506003612b98565b8460ff16601b14158015612b0357508460ff16601c14155b15612b145750600090506004612b98565b6040805160008082526020820180845289905260ff881692820192909252606081018690526080810185905260019060a0016020604051602081039080840390855afa158015612b68573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b038116612b9157600060019250925050612b98565b9150600090505b94509492505050565b6000806001600160ff1b03831681612bbe60ff86901c601b6133e5565b9050612bcc87828885612ab4565b935093505050935093915050565b6001600160e01b03198116811461205457600080fd5b600060208284031215612c0257600080fd5b8135611a0081612bda565b60005b83811015612c28578181015183820152602001612c10565b50506000910152565b60008151808452612c49816020860160208601612c0d565b601f01601f19169290920160200192915050565b602081526000611a006020830184612c31565b600060208284031215612c8257600080fd5b5035919050565b80356001600160a01b0381168114611f8d57600080fd5b60008060408385031215612cb357600080fd5b612cbc83612c89565b946020939093013593505050565b600080600060608486031215612cdf57600080fd5b612ce884612c89565b9250612cf660208501612c89565b9150604084013590509250925092565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f191681016001600160401b0381118282101715612d4457612d44612d06565b604052919050565b60006001600160401b03821115612d6557612d65612d06565b5060051b60200190565b600082601f830112612d8057600080fd5b81356020612d95612d9083612d4c565b612d1c565b82815260059290921b84018101918181019086841115612db457600080fd5b8286015b84811015612dcf5780358352918301918301612db8565b509695505050505050565b60008060408385031215612ded57600080fd5b82356001600160401b0380821115612e0457600080fd5b818501915085601f830112612e1857600080fd5b81356020612e28612d9083612d4c565b82815260059290921b84018101918181019089841115612e4757600080fd5b948201945b83861015612e6c57612e5d86612c89565b82529482019490820190612e4c565b96505086013592505080821115612e8257600080fd5b50612e8f85828601612d6f565b9150509250929050565b600080600060608486031215612eae57600080fd5b83356001600160401b03811115612ec457600080fd5b8401601f81018613612ed557600080fd5b80356020612ee5612d9083612d4c565b82815260059290921b83018101918181019089841115612f0457600080fd5b938201935b83851015612f2257843582529382019390820190612f09565b999188013598505060409096013595945050505050565b60008083601f840112612f4b57600080fd5b5081356001600160401b03811115612f6257600080fd5b6020830191508360208285010111156128f757600080fd5b60008060208385031215612f8d57600080fd5b82356001600160401b03811115612fa357600080fd5b612faf85828601612f39565b90969095509350505050565b60008060208385031215612fce57600080fd5b82356001600160401b0380821115612fe557600080fd5b818501915085601f830112612ff957600080fd5b81358181111561300857600080fd5b8660208260051b850101111561301d57600080fd5b60209290920196919550909350505050565b6020808252825182820181905260009190848201906040850190845b818110156117fc5761308683855180516001600160a01b031682526020808201516001600160401b0316908301526040908101511515910152565b928401926060929092019160010161304b565b6000602082840312156130ab57600080fd5b611a0082612c89565b6020808252825182820181905260009190848201906040850190845b818110156117fc578351835292840192918401916001016130d0565b60008060006060848603121561310157600080fd5b61310a84612c89565b95602085013595506040909401359392505050565b80358015158114611f8d57600080fd5b60008060006040848603121561314457600080fd5b61314d8461311f565b925060208401356001600160401b0381111561316857600080fd5b61317486828701612f39565b9497909650939450505050565b6000806040838503121561319457600080fd5b61319d83612c89565b91506131ab6020840161311f565b90509250929050565b600082601f8301126131c557600080fd5b81356001600160401b038111156131de576131de612d06565b6131f1601f8201601f1916602001612d1c565b81815284602083860101111561320657600080fd5b816020850160208301376000918101602001919091529392505050565b60008060006060848603121561323857600080fd5b8335925060208401356001600160401b03808216821461325757600080fd5b9092506040850135908082111561326d57600080fd5b5061327a868287016131b4565b9150509250925092565b6000806000806080858703121561329a57600080fd5b6132a385612c89565b93506132b160208601612c89565b92506040850135915060608501356001600160401b038111156132d357600080fd5b6132df878288016131b4565b91505092959194509250565b81516001600160a01b031681526020808301516001600160401b03169082015260408083015115159082015260608101610a12565b6000806040838503121561333357600080fd5b61333c83612c89565b91506131ab60208401612c89565b600181811c9082168061335e57607f821691505b60208210810361337e57634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b80820180821115610a1257610a126133cf565b60006001820161340a5761340a6133cf565b5060010190565b6020808252601190820152704e4f545f454e4f5547485f535550504c5960781b604082015260600190565b6020808252601d908201527f43414e4e4f545f4d494e545f4f4e5f5448455f53414d455f424c4f434b000000604082015260600190565b6020808252601d908201527f434f4e5452414354535f4e4f545f414c4c4f5745445f544f5f4d494e54000000604082015260600190565b6020808252601d908201527f5055424c49435f4d494e545f49535f4e4f545f5945545f414354495645000000604082015260600190565b6020808252601e908201527f50524553414c455f4d494e545f49535f4e4f545f5945545f4143544956450000604082015260600190565b6020808252601b908201527f465245455f4d494e545f49535f4e4f545f5945545f4143544956450000000000604082015260600190565b602080825260119082015270115610d1515117d352539517d312535255607a1b604082015260600190565b60208082526028908201527f455843454544494e475f4d4158494d554d5f414d4f554e545f5045525f5452416040820152672729a0a1aa24a7a760c11b606082015260800190565b60008160001904831182151516156135dc576135dc6133cf565b500290565b634e487b7160e01b600052601260045260246000fd5b600082613606576136066135e1565b500490565b601f821115610bcb57600081815260208120601f850160051c810160208610156136325750805b601f850160051c820191505b81811015610fc15782815560010161363e565b6001600160401b0383111561366857613668612d06565b61367c83613676835461334a565b8361360b565b6000601f8411600181146136b057600085156136985750838201355b600019600387901b1c1916600186901b17835561370a565b600083815260209020601f19861690835b828110156136e157868501358255602094850194600190920191016136c1565b50868210156136fe5760001960f88860031b161c19848701351681555b505060018560011b0183555b5050505050565b6000815461371e8161334a565b60018281168015613736576001811461374b5761377a565b60ff198416875282151583028701945061377a565b8560005260208060002060005b858110156137715781548a820152908401908201613758565b50505082870194505b5050505092915050565b60006137908285613711565b83516137a0818360208801612c0d565b01949350505050565b6000611a008284613711565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906137e890830184612c31565b9695505050505050565b60006020828403121561380457600080fd5b8151611a0081612bda565b81810381811115610a1257610a126133cf565b600082613831576138316135e1565b500690565b634e487b7160e01b600052602160045260246000fdfeddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3efa26469706673582212209c01f52725ffb8683805295cd6727cf02b82b6b673650644978cca5aa01611c564736f6c63430008100033

Loading...
Loading
Loading...
Loading
[ Download: CSV Export  ]
[ Download: CSV Export  ]

A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.