ETH Price: $3,355.72 (-2.86%)
Gas: 2 Gwei

Token

Exiled Dissident (ExiledD)
 

Overview

Max Total Supply

1,191 ExiledD

Holders

984

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 ExiledD
0xfece31d9ed6b02f774eb559c503f75fc9b0bce4e
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:
ExiledDissident

Compiler Version
v0.8.15+commit.e14f2714

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion
File 1 of 15 : ExiledDissident.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;

import "@openzeppelin/contracts/interfaces/IERC2981.sol";
import "erc721a/contracts/extensions/ERC721AQueryable.sol";
import "erc721a/contracts/extensions/ERC721ABurnable.sol";
import "erc721a/contracts/IERC721A.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/utils/Address.sol";
import "@openzeppelin/contracts/utils/cryptography/draft-EIP712.sol";
import "@openzeppelin/contracts/utils/cryptography/ECDSA.sol";

contract ExiledDissident is ERC721AQueryable, ERC721ABurnable, Ownable, EIP712, IERC2981 {
    using Address for address;

    error NotHuman(address caller);
    error ExccededTotalSupply();
    error ExccededMaxMintPerAccount(uint256 mint, uint256 max);
    error NotYetStarted();
    error ZeroAmount();
    error InsufficientFunds(uint256 recieved, uint256 expected);
    error InvalidSigner();

    uint256 constant public PUBLIC_MINT_PRICE = 0.019 ether;
    uint256 constant public MAX_MINT_PER_ACCOUNT_PUB = 5;
    uint256 constant public MAX_MINT_PER_ACCOUNT_WB = 10;
    uint256 immutable public maxTokenCount;

    uint256[2] public oneFreeRemain;
    uint256 constant public INDEX_PUBLIC_ONE_FREE = 0;
    uint256 constant public INDEX_ALLOWLIST_ONE_FREE = 1;

    modifier commonCheck(uint256 amount) {
        if (block.timestamp < startTime) {
            revert NotYetStarted();
        }
        if (tx.origin != msg.sender) {
            revert NotHuman(msg.sender);
        }
        if (amount == 0) {
            revert ZeroAmount();
        }
        _;
        if (totalSupply() > maxTokenCount) {
            revert ExccededTotalSupply();
        }
    }

    function checkMinted(uint256 amount, uint256 max) private view returns(uint256) {
        uint256 minted = _numberMinted(msg.sender);
        if (minted + amount > max) {
            revert ExccededMaxMintPerAccount(minted + amount, max);
        }
        return minted;
    }

    function getDigest(bytes32 hashType, address target) public view returns (bytes32) {
        return _hashTypedDataV4(keccak256(abi.encode(hashType, target)));
    }

    function checkSignature(uint8 v, bytes32 r, bytes32 s, bytes32 hashType, address who) public view returns(bool) {
        address acturalSigner = ecrecover(getDigest(hashType, who), v, r, s);
        if (acturalSigner != allowListSigner) {
            revert InvalidSigner();
        }
        return true;
    }

    // --------------- mint -------------

    function mintFromPool(uint256 amount, uint256 index, uint256 remain) private {
        uint256 minted = checkMinted(amount, MAX_MINT_PER_ACCOUNT_PUB);
        uint256 money;
        if (remain > 0 && minted == 0 ) {
            --oneFreeRemain[index];
            money = (amount - 1) * PUBLIC_MINT_PRICE;
        } else {
            money = amount * PUBLIC_MINT_PRICE;
        }
        if (msg.value < money) {
            revert InsufficientFunds(msg.value, money);
        }
        _mint(msg.sender, amount);
        if (msg.value > money) {
            Address.sendValue(payable(msg.sender), msg.value - money);
        }
    }

    function publicMint(uint256 amount) external payable commonCheck(amount) {
        mintFromPool(amount, INDEX_PUBLIC_ONE_FREE, oneFreeRemain[INDEX_PUBLIC_ONE_FREE]);
    }

    function allowListOneFreeMint(uint8 v, bytes32 r, bytes32 s, uint256 amount) external payable commonCheck(amount) {
        uint256 remain = oneFreeRemain[INDEX_ALLOWLIST_ONE_FREE];
        if ( block.timestamp < endTime && remain > 0 ) {
            checkSignature(v, r, s, ALLOWLIST_ONE_FREEMINT_HASH_TYPE, msg.sender);
            mintFromPool(amount, INDEX_ALLOWLIST_ONE_FREE, remain);
        } else {
            mintFromPool(amount, INDEX_PUBLIC_ONE_FREE, oneFreeRemain[INDEX_PUBLIC_ONE_FREE]);
        }
    }

    function allowListTenFreeMint(uint8 v, bytes32 r, bytes32 s) external commonCheck(MAX_MINT_PER_ACCOUNT_WB) {
        checkSignature(v, r, s, ALLOWLIST_TEN_FREEMINT_HASH_TYPE, msg.sender);
        checkMinted(MAX_MINT_PER_ACCOUNT_WB, MAX_MINT_PER_ACCOUNT_WB);
        _mint(msg.sender, MAX_MINT_PER_ACCOUNT_WB);
    }

    // --------------- read only -------------
    function numberMinted(address who) external view returns (uint256) {
        return _numberMinted(who);
    }

    function numberBurned(address who) external view returns (uint256) {
        return _numberBurned(who);
    }

    // --------------- maintain -------------

    bytes32 constant public ALLOWLIST_ONE_FREEMINT_HASH_TYPE = keccak256("allowListOneFreeMint(address receiver)");
    bytes32 constant public ALLOWLIST_TEN_FREEMINT_HASH_TYPE = keccak256("allowListTenFreeMint(address receiver)");
    bool lockedBaseURI = false;
    address immutable public allowListSigner;
    uint48 public startTime;
    uint48 public endTime;
    address immutable public treasury4;
    address immutable public treasury6;
    address immutable public treasurySplitter;
    string public baseURI;
    string public contractURI = "ipfs://QmdkKvdihZwqhs6q1pjbyP5CbnAqccvVm529rcjRCE8ivV";

    constructor(
        address[] memory addrs,
        address allowListSigner_,
        uint48 startTime_,
        uint48 endTime_,
        string memory baseURI_,
        uint256 maxTokenCount_,
        uint256 oneFreeRemainPUB_,
        uint256 oneFreeRemainWLA_
    ) ERC721A("Exiled Dissident", "ExiledD") EIP712("Exiled Dissident", "1.0.0") {
        treasury4 = addrs[0];
        treasury6 = addrs[1];
        treasurySplitter = addrs[2];
        startTime = startTime_;
        endTime = endTime_;
        baseURI = baseURI_;
        allowListSigner = allowListSigner_;
        maxTokenCount = maxTokenCount_;
        oneFreeRemain[INDEX_PUBLIC_ONE_FREE] = oneFreeRemainPUB_;
        oneFreeRemain[INDEX_ALLOWLIST_ONE_FREE] = oneFreeRemainWLA_;
        _mint(msg.sender, 1);
    }

    function tokenURI(uint256 tokenId) public view override(ERC721A, IERC721A) returns (string memory) {
        if (!_exists(tokenId)) revert IERC721A.URIQueryForNonexistentToken();
        return bytes(baseURI).length != 0 ? string(abi.encodePacked(baseURI, _toString(tokenId), ".json")) : '';
    }

    function setBaseURI(string calldata baseURI_) external onlyOwner {
        require(!lockedBaseURI, "Base URI is locked");
        baseURI = baseURI_;
    }

    function lockBaseURI() external onlyOwner {
        lockedBaseURI = true;
    }

    function setTime(uint48 startTime_, uint48 endTime_) external onlyOwner {
        startTime = startTime_;
        endTime = endTime_;
    }

    function withdraw() external {
        uint256 total = address(this).balance;
        uint256 to6 = total * 60 / 100;
        Address.sendValue(payable(treasury6), to6);
        Address.sendValue(payable(treasury4), total - to6);
    }

    function supportsInterface(bytes4 interfaceId) public view virtual override(ERC721A, IERC721A, IERC165) returns (bool) {
        return interfaceId == type(IERC2981).interfaceId || super.supportsInterface(interfaceId);
    }

    function royaltyInfo(uint256 tokenId, uint256 salePrice) external override view returns (address receiver, uint256 royaltyAmount) {
        tokenId;
        receiver = treasurySplitter;
        royaltyAmount = salePrice * 85 / 1000;
    }

    function doCall(address target, bytes calldata data) external payable onlyOwner returns (bytes memory) {
        return target.functionCallWithValue(data, msg.value);
    }
}

File 2 of 15 : IERC2981.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.6.0) (interfaces/IERC2981.sol)

pragma solidity ^0.8.0;

import "../utils/introspection/IERC165.sol";

/**
 * @dev Interface for the NFT Royalty Standard.
 *
 * A standardized way to retrieve royalty payment information for non-fungible tokens (NFTs) to enable universal
 * support for royalty payments across all NFT marketplaces and ecosystem participants.
 *
 * _Available since v4.5._
 */
interface IERC2981 is IERC165 {
    /**
     * @dev Returns how much royalty is owed and to whom, based on a sale price that may be denominated in any unit of
     * exchange. The royalty amount is denominated and should be paid in that same unit of exchange.
     */
    function royaltyInfo(uint256 tokenId, uint256 salePrice)
        external
        view
        returns (address receiver, uint256 royaltyAmount);
}

File 3 of 15 : ERC721AQueryable.sol
// SPDX-License-Identifier: MIT
// ERC721A Contracts v4.1.0
// Creator: Chiru Labs

pragma solidity ^0.8.4;

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

/**
 * @title ERC721A Queryable
 * @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 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[] memory tokenIds) external view 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 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 pfp collections should be fine).
     */
    function tokensOfOwner(address owner) external view 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 4 of 15 : ERC721ABurnable.sol
// SPDX-License-Identifier: MIT
// ERC721A Contracts v4.1.0
// Creator: Chiru Labs

pragma solidity ^0.8.4;

import './IERC721ABurnable.sol';
import '../ERC721A.sol';

/**
 * @title ERC721A Burnable Token
 * @dev ERC721A Token that can be irreversibly burned (destroyed).
 */
abstract contract ERC721ABurnable is ERC721A, IERC721ABurnable {
    /**
     * @dev Burns `tokenId`. See {ERC721A-_burn}.
     *
     * Requirements:
     *
     * - The caller must own `tokenId` or be an approved operator.
     */
    function burn(uint256 tokenId) public virtual override {
        _burn(tokenId, true);
    }
}

File 5 of 15 : IERC721A.sol
// SPDX-License-Identifier: MIT
// ERC721A Contracts v4.1.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();

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

    /**
     * The `quantity` minted with ERC2309 exceeds the safety limit.
     */
    error MintERC2309QuantityExceedsLimit();

    /**
     * The `extraData` cannot be set on an unintialized ownership slot.
     */
    error OwnershipNotInitializedForExtraData();

    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;
        // Arbitrary data similar to `startTimestamp` that can be set through `_extraData`.
        uint24 extraData;
    }

    /**
     * @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);

    // ==============================
    //            IERC2309
    // ==============================

    /**
     * @dev Emitted when tokens in `fromTokenId` to `toTokenId` (inclusive) is transferred from `from` to `to`,
     * as defined in the ERC2309 standard. See `_mintERC2309` for more details.
     */
    event ConsecutiveTransfer(uint256 indexed fromTokenId, uint256 toTokenId, address indexed from, address indexed to);
}

File 6 of 15 : Ownable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (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 Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        _checkOwner();
        _;
    }

    /**
     * @dev Returns the address of the current owner.
     */
    function owner() public view virtual returns (address) {
        return _owner;
    }

    /**
     * @dev Throws if the sender is not the owner.
     */
    function _checkOwner() internal view virtual {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
    }

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions anymore. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby removing any functionality that is only available to the owner.
     */
    function renounceOwnership() public virtual onlyOwner {
        _transferOwnership(address(0));
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Can only be called by the current owner.
     */
    function transferOwnership(address newOwner) public virtual onlyOwner {
        require(newOwner != address(0), "Ownable: new owner is the zero address");
        _transferOwnership(newOwner);
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Internal function without access restriction.
     */
    function _transferOwnership(address newOwner) internal virtual {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}

File 7 of 15 : Address.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (utils/Address.sol)

pragma solidity ^0.8.1;

/**
 * @dev Collection of functions related to the address type
 */
library Address {
    /**
     * @dev Returns true if `account` is a contract.
     *
     * [IMPORTANT]
     * ====
     * It is unsafe to assume that an address for which this function returns
     * false is an externally-owned account (EOA) and not a contract.
     *
     * Among others, `isContract` will return false for the following
     * types of addresses:
     *
     *  - an externally-owned account
     *  - a contract in construction
     *  - an address where a contract will be created
     *  - an address where a contract lived, but was destroyed
     * ====
     *
     * [IMPORTANT]
     * ====
     * You shouldn't rely on `isContract` to protect against flash loan attacks!
     *
     * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets
     * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract
     * constructor.
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize/address.code.length, which returns 0
        // for contracts in construction, since the code is only stored at the end
        // of the constructor execution.

        return account.code.length > 0;
    }

    /**
     * @dev Replacement for Solidity's `transfer`: sends `amount` wei to
     * `recipient`, forwarding all available gas and reverting on errors.
     *
     * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost
     * of certain opcodes, possibly making contracts go over the 2300 gas limit
     * imposed by `transfer`, making them unable to receive funds via
     * `transfer`. {sendValue} removes this limitation.
     *
     * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more].
     *
     * IMPORTANT: because control is transferred to `recipient`, care must be
     * taken to not create reentrancy vulnerabilities. Consider using
     * {ReentrancyGuard} or the
     * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].
     */
    function sendValue(address payable recipient, uint256 amount) internal {
        require(address(this).balance >= amount, "Address: insufficient balance");

        (bool success, ) = recipient.call{value: amount}("");
        require(success, "Address: unable to send value, recipient may have reverted");
    }

    /**
     * @dev Performs a Solidity function call using a low level `call`. A
     * plain `call` is an unsafe replacement for a function call: use this
     * function instead.
     *
     * If `target` reverts with a revert reason, it is bubbled up by this
     * function (like regular Solidity function calls).
     *
     * Returns the raw returned data. To convert to the expected return value,
     * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`].
     *
     * Requirements:
     *
     * - `target` must be a contract.
     * - calling `target` with `data` must not revert.
     *
     * _Available since v3.1._
     */
    function functionCall(address target, bytes memory data) internal returns (bytes memory) {
        return functionCall(target, data, "Address: low-level call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with
     * `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal returns (bytes memory) {
        return functionCallWithValue(target, data, 0, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but also transferring `value` wei to `target`.
     *
     * Requirements:
     *
     * - the calling contract must have an ETH balance of at least `value`.
     * - the called Solidity function must be `payable`.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(
        address target,
        bytes memory data,
        uint256 value
    ) internal returns (bytes memory) {
        return functionCallWithValue(target, data, value, "Address: low-level call with value failed");
    }

    /**
     * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but
     * with `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(
        address target,
        bytes memory data,
        uint256 value,
        string memory errorMessage
    ) internal returns (bytes memory) {
        require(address(this).balance >= value, "Address: insufficient balance for call");
        require(isContract(target), "Address: call to non-contract");

        (bool success, bytes memory returndata) = target.call{value: value}(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) {
        return functionStaticCall(target, data, "Address: low-level static call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal view returns (bytes memory) {
        require(isContract(target), "Address: static call to non-contract");

        (bool success, bytes memory returndata) = target.staticcall(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) {
        return functionDelegateCall(target, data, "Address: low-level delegate call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    function functionDelegateCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal returns (bytes memory) {
        require(isContract(target), "Address: delegate call to non-contract");

        (bool success, bytes memory returndata) = target.delegatecall(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the
     * revert reason using the provided one.
     *
     * _Available since v4.3._
     */
    function verifyCallResult(
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) internal pure returns (bytes memory) {
        if (success) {
            return returndata;
        } else {
            // Look for revert reason and bubble it up if present
            if (returndata.length > 0) {
                // The easiest way to bubble the revert reason is using memory via assembly
                /// @solidity memory-safe-assembly
                assembly {
                    let returndata_size := mload(returndata)
                    revert(add(32, returndata), returndata_size)
                }
            } else {
                revert(errorMessage);
            }
        }
    }
}

File 8 of 15 : draft-EIP712.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/cryptography/draft-EIP712.sol)

pragma solidity ^0.8.0;

import "./ECDSA.sol";

/**
 * @dev https://eips.ethereum.org/EIPS/eip-712[EIP 712] is a standard for hashing and signing of typed structured data.
 *
 * The encoding specified in the EIP is very generic, and such a generic implementation in Solidity is not feasible,
 * thus this contract does not implement the encoding itself. Protocols need to implement the type-specific encoding
 * they need in their contracts using a combination of `abi.encode` and `keccak256`.
 *
 * This contract implements the EIP 712 domain separator ({_domainSeparatorV4}) that is used as part of the encoding
 * scheme, and the final step of the encoding to obtain the message digest that is then signed via ECDSA
 * ({_hashTypedDataV4}).
 *
 * The implementation of the domain separator was designed to be as efficient as possible while still properly updating
 * the chain id to protect against replay attacks on an eventual fork of the chain.
 *
 * NOTE: This contract implements the version of the encoding known as "v4", as implemented by the JSON RPC method
 * https://docs.metamask.io/guide/signing-data.html[`eth_signTypedDataV4` in MetaMask].
 *
 * _Available since v3.4._
 */
abstract contract EIP712 {
    /* solhint-disable var-name-mixedcase */
    // Cache the domain separator as an immutable value, but also store the chain id that it corresponds to, in order to
    // invalidate the cached domain separator if the chain id changes.
    bytes32 private immutable _CACHED_DOMAIN_SEPARATOR;
    uint256 private immutable _CACHED_CHAIN_ID;
    address private immutable _CACHED_THIS;

    bytes32 private immutable _HASHED_NAME;
    bytes32 private immutable _HASHED_VERSION;
    bytes32 private immutable _TYPE_HASH;

    /* solhint-enable var-name-mixedcase */

    /**
     * @dev Initializes the domain separator and parameter caches.
     *
     * The meaning of `name` and `version` is specified in
     * https://eips.ethereum.org/EIPS/eip-712#definition-of-domainseparator[EIP 712]:
     *
     * - `name`: the user readable name of the signing domain, i.e. the name of the DApp or the protocol.
     * - `version`: the current major version of the signing domain.
     *
     * NOTE: These parameters cannot be changed except through a xref:learn::upgrading-smart-contracts.adoc[smart
     * contract upgrade].
     */
    constructor(string memory name, string memory version) {
        bytes32 hashedName = keccak256(bytes(name));
        bytes32 hashedVersion = keccak256(bytes(version));
        bytes32 typeHash = keccak256(
            "EIP712Domain(string name,string version,uint256 chainId,address verifyingContract)"
        );
        _HASHED_NAME = hashedName;
        _HASHED_VERSION = hashedVersion;
        _CACHED_CHAIN_ID = block.chainid;
        _CACHED_DOMAIN_SEPARATOR = _buildDomainSeparator(typeHash, hashedName, hashedVersion);
        _CACHED_THIS = address(this);
        _TYPE_HASH = typeHash;
    }

    /**
     * @dev Returns the domain separator for the current chain.
     */
    function _domainSeparatorV4() internal view returns (bytes32) {
        if (address(this) == _CACHED_THIS && block.chainid == _CACHED_CHAIN_ID) {
            return _CACHED_DOMAIN_SEPARATOR;
        } else {
            return _buildDomainSeparator(_TYPE_HASH, _HASHED_NAME, _HASHED_VERSION);
        }
    }

    function _buildDomainSeparator(
        bytes32 typeHash,
        bytes32 nameHash,
        bytes32 versionHash
    ) private view returns (bytes32) {
        return keccak256(abi.encode(typeHash, nameHash, versionHash, block.chainid, address(this)));
    }

    /**
     * @dev Given an already https://eips.ethereum.org/EIPS/eip-712#definition-of-hashstruct[hashed struct], this
     * function returns the hash of the fully encoded EIP712 message for this domain.
     *
     * This hash can be used together with {ECDSA-recover} to obtain the signer of a message. For example:
     *
     * ```solidity
     * bytes32 digest = _hashTypedDataV4(keccak256(abi.encode(
     *     keccak256("Mail(address to,string contents)"),
     *     mailTo,
     *     keccak256(bytes(mailContents))
     * )));
     * address signer = ECDSA.recover(digest, signature);
     * ```
     */
    function _hashTypedDataV4(bytes32 structHash) internal view virtual returns (bytes32) {
        return ECDSA.toTypedDataHash(_domainSeparatorV4(), structHash);
    }
}

File 9 of 15 : ECDSA.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.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.
            /// @solidity memory-safe-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.
            /// @solidity memory-safe-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 10 of 15 : IERC165.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol)

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC165 standard, as defined in the
 * https://eips.ethereum.org/EIPS/eip-165[EIP].
 *
 * Implementers can declare support of contract interfaces, which can then be
 * queried by others ({ERC165Checker}).
 *
 * For an implementation, see {ERC165}.
 */
interface IERC165 {
    /**
     * @dev Returns true if this contract implements the interface defined by
     * `interfaceId`. See the corresponding
     * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section]
     * to learn more about how these ids are created.
     *
     * This function call must use less than 30 000 gas.
     */
    function supportsInterface(bytes4 interfaceId) external view returns (bool);
}

File 11 of 15 : IERC721AQueryable.sol
// SPDX-License-Identifier: MIT
// ERC721A Contracts v4.1.0
// Creator: Chiru Labs

pragma solidity ^0.8.4;

import '../IERC721A.sol';

/**
 * @dev Interface of an ERC721AQueryable compliant contract.
 */
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`
     *
     * If the `tokenId` is burned:
     *   - `addr` = `<Address of owner before token was burned>`
     *   - `startTimestamp` = `<Timestamp when token was burned>`
     *   - `burned = `true`
     *
     * Otherwise:
     *   - `addr` = `<Address of owner>`
     *   - `startTimestamp` = `<Timestamp of start of ownership>`
     *   - `burned = `false`
     */
    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 pfp collections should be fine).
     */
    function tokensOfOwner(address owner) external view returns (uint256[] memory);
}

File 12 of 15 : ERC721A.sol
// SPDX-License-Identifier: MIT
// ERC721A Contracts v4.1.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 bit position of `extraData` in packed ownership.
    uint256 private constant BITPOS_EXTRA_DATA = 232;

    // Mask of all 256 bits in a packed ownership except the 24 bits for `extraData`.
    uint256 private constant BITMASK_EXTRA_DATA_COMPLEMENT = (1 << 232) - 1;

    // The mask of the lower 160 bits for addresses.
    uint256 private constant BITMASK_ADDRESS = (1 << 160) - 1;

    // The maximum `quantity` that can be minted with `_mintERC2309`.
    // This limit is to prevent overflows on the address data entries.
    // For a limit of 5000, a total of 3.689e15 calls to `_mintERC2309`
    // is required to cause an overflow, which is unrealistic.
    uint256 private constant MAX_MINT_ERC2309_QUANTITY_LIMIT = 5000;

    // 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`
    // - [232..255] `extraData`
    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 (owner == address(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 auxiliary 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 auxiliary 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;
        // Cast `aux` with assembly to avoid redundant masking.
        assembly {
            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;
        ownership.extraData = uint24(packed >> BITPOS_EXTRA_DATA);
    }

    /**
     * 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 Packs ownership data into a single uint256.
     */
    function _packOwnershipData(address owner, uint256 flags) private view returns (uint256 result) {
        assembly {
            // Mask `owner` to the lower 160 bits, in case the upper bits somehow aren't clean.
            owner := and(owner, BITMASK_ADDRESS)
            // `owner | (block.timestamp << BITPOS_START_TIMESTAMP) | flags`.
            result := or(owner, or(shl(BITPOS_START_TIMESTAMP, timestamp()), flags))
        }
    }

    /**
     * @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, it can be overridden in child contracts.
     */
    function _baseURI() internal view virtual returns (string memory) {
        return '';
    }

    /**
     * @dev Returns the `nextInitialized` flag set if `quantity` equals 1.
     */
    function _nextInitializedFlag(uint256 quantity) private pure returns (uint256 result) {
        // For branchless setting of the `nextInitialized` flag.
        assembly {
            // `(quantity == 1) << BITPOS_NEXT_INITIALIZED`.
            result := shl(BITPOS_NEXT_INITIALIZED, eq(quantity, 1))
        }
    }

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

        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-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 {
        transferFrom(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.
     *
     * See {_mint}.
     *
     * Emits a {Transfer} event for each mint.
     */
    function _safeMint(
        address to,
        uint256 quantity,
        bytes memory _data
    ) internal {
        _mint(to, quantity);

        unchecked {
            if (to.code.length != 0) {
                uint256 end = _currentIndex;
                uint256 index = end - quantity;
                do {
                    if (!_checkContractOnERC721Received(address(0), to, index++, _data)) {
                        revert TransferToNonERC721ReceiverImplementer();
                    }
                } while (index < end);
                // Reentrancy protection.
                if (_currentIndex != end) revert();
            }
        }
    }

    /**
     * @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 for each mint.
     */
    function _mint(address to, uint256 quantity) internal {
        uint256 startTokenId = _currentIndex;
        if (to == address(0)) revert MintToZeroAddress();
        if (quantity == 0) revert MintZeroQuantity();

        _beforeTokenTransfers(address(0), to, startTokenId, quantity);

        // Overflows are incredibly unrealistic.
        // `balance` and `numberMinted` have a maximum limit of 2**64.
        // `tokenId` has a maximum limit of 2**256.
        unchecked {
            // Updates:
            // - `balance += quantity`.
            // - `numberMinted += quantity`.
            //
            // We can directly add to the `balance` and `numberMinted`.
            _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] = _packOwnershipData(
                to,
                _nextInitializedFlag(quantity) | _nextExtraData(address(0), to, 0)
            );

            uint256 tokenId = startTokenId;
            uint256 end = startTokenId + quantity;
            do {
                emit Transfer(address(0), to, tokenId++);
            } while (tokenId < end);

            _currentIndex = end;
        }
        _afterTokenTransfers(address(0), to, startTokenId, quantity);
    }

    /**
     * @dev Mints `quantity` tokens and transfers them to `to`.
     *
     * This function is intended for efficient minting only during contract creation.
     *
     * It emits only one {ConsecutiveTransfer} as defined in
     * [ERC2309](https://eips.ethereum.org/EIPS/eip-2309),
     * instead of a sequence of {Transfer} event(s).
     *
     * Calling this function outside of contract creation WILL make your contract
     * non-compliant with the ERC721 standard.
     * For full ERC721 compliance, substituting ERC721 {Transfer} event(s) with the ERC2309
     * {ConsecutiveTransfer} event is only permissible during contract creation.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `quantity` must be greater than 0.
     *
     * Emits a {ConsecutiveTransfer} event.
     */
    function _mintERC2309(address to, uint256 quantity) internal {
        uint256 startTokenId = _currentIndex;
        if (to == address(0)) revert MintToZeroAddress();
        if (quantity == 0) revert MintZeroQuantity();
        if (quantity > MAX_MINT_ERC2309_QUANTITY_LIMIT) revert MintERC2309QuantityExceedsLimit();

        _beforeTokenTransfers(address(0), to, startTokenId, quantity);

        // Overflows are unrealistic due to the above check for `quantity` to be below the limit.
        unchecked {
            // Updates:
            // - `balance += quantity`.
            // - `numberMinted += quantity`.
            //
            // We can directly add to the `balance` and `numberMinted`.
            _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] = _packOwnershipData(
                to,
                _nextInitializedFlag(quantity) | _nextExtraData(address(0), to, 0)
            );

            emit ConsecutiveTransfer(startTokenId, startTokenId + quantity - 1, address(0), to);

            _currentIndex = startTokenId + quantity;
        }
        _afterTokenTransfers(address(0), to, startTokenId, quantity);
    }

    /**
     * @dev Returns the storage slot and value for the approved address of `tokenId`.
     */
    function _getApprovedAddress(uint256 tokenId)
        private
        view
        returns (uint256 approvedAddressSlot, address approvedAddress)
    {
        mapping(uint256 => address) storage tokenApprovalsPtr = _tokenApprovals;
        // The following is equivalent to `approvedAddress = _tokenApprovals[tokenId]`.
        assembly {
            // Compute the slot.
            mstore(0x00, tokenId)
            mstore(0x20, tokenApprovalsPtr.slot)
            approvedAddressSlot := keccak256(0x00, 0x40)
            // Load the slot's value from storage.
            approvedAddress := sload(approvedAddressSlot)
        }
    }

    /**
     * @dev Returns whether the `approvedAddress` is equals to `from` or `msgSender`.
     */
    function _isOwnerOrApproved(
        address approvedAddress,
        address from,
        address msgSender
    ) private pure returns (bool result) {
        assembly {
            // Mask `from` to the lower 160 bits, in case the upper bits somehow aren't clean.
            from := and(from, BITMASK_ADDRESS)
            // Mask `msgSender` to the lower 160 bits, in case the upper bits somehow aren't clean.
            msgSender := and(msgSender, BITMASK_ADDRESS)
            // `msgSender == from || msgSender == approvedAddress`.
            result := or(eq(msgSender, from), eq(msgSender, approvedAddress))
        }
    }

    /**
     * @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 transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId);

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

        (uint256 approvedAddressSlot, address approvedAddress) = _getApprovedAddress(tokenId);

        // The nested ifs save around 20+ gas over a compound boolean condition.
        if (!_isOwnerOrApproved(approvedAddress, from, _msgSenderERC721A()))
            if (!isApprovedForAll(from, _msgSenderERC721A())) revert TransferCallerNotOwnerNorApproved();

        if (to == address(0)) revert TransferToZeroAddress();

        _beforeTokenTransfers(from, to, tokenId, 1);

        // Clear approvals from the previous owner.
        assembly {
            if approvedAddress {
                // This is equivalent to `delete _tokenApprovals[tokenId]`.
                sstore(approvedAddressSlot, 0)
            }
        }

        // 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] = _packOwnershipData(
                to,
                BITMASK_NEXT_INITIALIZED | _nextExtraData(from, to, prevOwnershipPacked)
            );

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

        (uint256 approvedAddressSlot, address approvedAddress) = _getApprovedAddress(tokenId);

        if (approvalCheck) {
            // The nested ifs save around 20+ gas over a compound boolean condition.
            if (!_isOwnerOrApproved(approvedAddress, from, _msgSenderERC721A()))
                if (!isApprovedForAll(from, _msgSenderERC721A())) revert TransferCallerNotOwnerNorApproved();
        }

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

        // Clear approvals from the previous owner.
        assembly {
            if approvedAddress {
                // This is equivalent to `delete _tokenApprovals[tokenId]`.
                sstore(approvedAddressSlot, 0)
            }
        }

        // 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] = _packOwnershipData(
                from,
                (BITMASK_BURNED | BITMASK_NEXT_INITIALIZED) | _nextExtraData(from, address(0), prevOwnershipPacked)
            );

            // 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 Directly sets the extra data for the ownership data `index`.
     */
    function _setExtraDataAt(uint256 index, uint24 extraData) internal {
        uint256 packed = _packedOwnerships[index];
        if (packed == 0) revert OwnershipNotInitializedForExtraData();
        uint256 extraDataCasted;
        // Cast `extraData` with assembly to avoid redundant masking.
        assembly {
            extraDataCasted := extraData
        }
        packed = (packed & BITMASK_EXTRA_DATA_COMPLEMENT) | (extraDataCasted << BITPOS_EXTRA_DATA);
        _packedOwnerships[index] = packed;
    }

    /**
     * @dev Returns the next extra data for the packed ownership data.
     * The returned result is shifted into position.
     */
    function _nextExtraData(
        address from,
        address to,
        uint256 prevOwnershipPacked
    ) private view returns (uint256) {
        uint24 extraData = uint24(prevOwnershipPacked >> BITPOS_EXTRA_DATA);
        return uint256(_extraData(from, to, extraData)) << BITPOS_EXTRA_DATA;
    }

    /**
     * @dev Called during each token transfer to set the 24bit `extraData` field.
     * Intended to be overridden by the cosumer contract.
     *
     * `previousExtraData` - the value of `extraData` before transfer.
     *
     * 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 _extraData(
        address from,
        address to,
        uint24 previousExtraData
    ) internal view virtual returns (uint24) {}

    /**
     * @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 13 of 15 : IERC721ABurnable.sol
// SPDX-License-Identifier: MIT
// ERC721A Contracts v4.1.0
// Creator: Chiru Labs

pragma solidity ^0.8.4;

import '../IERC721A.sol';

/**
 * @dev Interface of an ERC721ABurnable compliant contract.
 */
interface IERC721ABurnable is IERC721A {
    /**
     * @dev Burns `tokenId`. See {ERC721A-_burn}.
     *
     * Requirements:
     *
     * - The caller must own `tokenId` or be an approved operator.
     */
    function burn(uint256 tokenId) external;
}

File 14 of 15 : 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 15 of 15 : Strings.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (utils/Strings.sol)

pragma solidity ^0.8.0;

/**
 * @dev String operations.
 */
library Strings {
    bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef";
    uint8 private constant _ADDRESS_LENGTH = 20;

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

    /**
     * @dev Converts an `address` with fixed length of 20 bytes to its not checksummed ASCII `string` hexadecimal representation.
     */
    function toHexString(address addr) internal pure returns (string memory) {
        return toHexString(uint256(uint160(addr)), _ADDRESS_LENGTH);
    }
}

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

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address[]","name":"addrs","type":"address[]"},{"internalType":"address","name":"allowListSigner_","type":"address"},{"internalType":"uint48","name":"startTime_","type":"uint48"},{"internalType":"uint48","name":"endTime_","type":"uint48"},{"internalType":"string","name":"baseURI_","type":"string"},{"internalType":"uint256","name":"maxTokenCount_","type":"uint256"},{"internalType":"uint256","name":"oneFreeRemainPUB_","type":"uint256"},{"internalType":"uint256","name":"oneFreeRemainWLA_","type":"uint256"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[{"internalType":"uint256","name":"mint","type":"uint256"},{"internalType":"uint256","name":"max","type":"uint256"}],"name":"ExccededMaxMintPerAccount","type":"error"},{"inputs":[],"name":"ExccededTotalSupply","type":"error"},{"inputs":[{"internalType":"uint256","name":"recieved","type":"uint256"},{"internalType":"uint256","name":"expected","type":"uint256"}],"name":"InsufficientFunds","type":"error"},{"inputs":[],"name":"InvalidQueryRange","type":"error"},{"inputs":[],"name":"InvalidSigner","type":"error"},{"inputs":[],"name":"MintERC2309QuantityExceedsLimit","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[{"internalType":"address","name":"caller","type":"address"}],"name":"NotHuman","type":"error"},{"inputs":[],"name":"NotYetStarted","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"OwnershipNotInitializedForExtraData","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"},{"inputs":[],"name":"ZeroAmount","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":"uint256","name":"fromTokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"toTokenId","type":"uint256"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"}],"name":"ConsecutiveTransfer","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":"ALLOWLIST_ONE_FREEMINT_HASH_TYPE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"ALLOWLIST_TEN_FREEMINT_HASH_TYPE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"INDEX_ALLOWLIST_ONE_FREE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"INDEX_PUBLIC_ONE_FREE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_MINT_PER_ACCOUNT_PUB","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_MINT_PER_ACCOUNT_WB","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PUBLIC_MINT_PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint8","name":"v","type":"uint8"},{"internalType":"bytes32","name":"r","type":"bytes32"},{"internalType":"bytes32","name":"s","type":"bytes32"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"allowListOneFreeMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"allowListSigner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint8","name":"v","type":"uint8"},{"internalType":"bytes32","name":"r","type":"bytes32"},{"internalType":"bytes32","name":"s","type":"bytes32"}],"name":"allowListTenFreeMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint8","name":"v","type":"uint8"},{"internalType":"bytes32","name":"r","type":"bytes32"},{"internalType":"bytes32","name":"s","type":"bytes32"},{"internalType":"bytes32","name":"hashType","type":"bytes32"},{"internalType":"address","name":"who","type":"address"}],"name":"checkSignature","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"contractURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"target","type":"address"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"doCall","outputs":[{"internalType":"bytes","name":"","type":"bytes"}],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"endTime","outputs":[{"internalType":"uint48","name":"","type":"uint48"}],"stateMutability":"view","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":"uint24","name":"extraData","type":"uint24"}],"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":"uint24","name":"extraData","type":"uint24"}],"internalType":"struct IERC721A.TokenOwnership[]","name":"","type":"tuple[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"hashType","type":"bytes32"},{"internalType":"address","name":"target","type":"address"}],"name":"getDigest","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"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":"lockBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"maxTokenCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"who","type":"address"}],"name":"numberBurned","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"who","type":"address"}],"name":"numberMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"oneFreeRemain","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":"uint256","name":"amount","type":"uint256"}],"name":"publicMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"uint256","name":"salePrice","type":"uint256"}],"name":"royaltyInfo","outputs":[{"internalType":"address","name":"receiver","type":"address"},{"internalType":"uint256","name":"royaltyAmount","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI_","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint48","name":"startTime_","type":"uint48"},{"internalType":"uint48","name":"endTime_","type":"uint48"}],"name":"setTime","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"startTime","outputs":[{"internalType":"uint48","name":"","type":"uint48"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"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":[],"name":"treasury4","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"treasury6","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"treasurySplitter","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

600b805460ff1916905561024060405260356101e0818152906200380361020039600d906200002f908262000496565b503480156200003d57600080fd5b50604051620038383803806200383883398101604081905262000060916200065e565b60408051808201825260108082526f115e1a5b195908111a5cdcda59195b9d60821b60208084018290528451808601865260058152640312e302e360dc1b81830152855180870187529384528382019290925284518086019095526007855266115e1a5b19591160ca1b9085015291926002620000de838262000496565b506003620000ed828262000496565b50506000805550620000ff33620002b8565b815160208084019190912082518383012060e08290526101008190524660a0818152604080517f8b73c3c69bb8fe3d512ecc4cf759cc79239f7b179b0ffacaa9a75d522b39400f81880181905281830187905260608201869052608082019490945230818401528151808203909301835260c00190528051940193909320919290916080523060c05261012052505089518a925060009150620001a657620001a662000799565b60200260200101516001600160a01b0316610180816001600160a01b03168152505087600181518110620001de57620001de62000799565b60200260200101516001600160a01b03166101a0816001600160a01b0316815250508760028151811062000216576200021662000799565b60209081029190910101516001600160a01b03166101c052600b805465ffffffffffff8781166701000000000000000265ffffffffffff60381b19918a166101000291909116610100600160681b031990921691909117179055600c6200027e858262000496565b506001600160a01b038716610160526101408390526009829055600a819055620002aa3360016200030a565b5050505050505050620007af565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6000546001600160a01b0383166200033457604051622e076360e81b815260040160405180910390fd5b81600003620003565760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038316600081815260056020526040902080546801000000000000000185020190554260a01b6001841460e11b1717600082815260046020526040902055808281015b6040516001830192906001600160a01b038716906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4808210620003a05760005550505050565b505050565b634e487b7160e01b600052604160045260246000fd5b600181811c908216806200041d57607f821691505b6020821081036200043e57634e487b7160e01b600052602260045260246000fd5b50919050565b601f821115620003ed57600081815260208120601f850160051c810160208610156200046d5750805b601f850160051c820191505b818110156200048e5782815560010162000479565b505050505050565b81516001600160401b03811115620004b257620004b2620003f2565b620004ca81620004c3845462000408565b8462000444565b602080601f831160018114620005025760008415620004e95750858301515b600019600386901b1c1916600185901b1785556200048e565b600085815260208120601f198616915b82811015620005335788860151825594840194600190910190840162000512565b5085821015620005525787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b604051601f8201601f191681016001600160401b03811182821017156200058d576200058d620003f2565b604052919050565b80516001600160a01b0381168114620005ad57600080fd5b919050565b805165ffffffffffff81168114620005ad57600080fd5b600082601f830112620005db57600080fd5b81516001600160401b03811115620005f757620005f7620003f2565b60206200060d601f8301601f1916820162000562565b82815285828487010111156200062257600080fd5b60005b838110156200064257858101830151828201840152820162000625565b83811115620006545760008385840101525b5095945050505050565b600080600080600080600080610100898b0312156200067c57600080fd5b88516001600160401b03808211156200069457600080fd5b818b0191508b601f830112620006a957600080fd5b815181811115620006be57620006be620003f2565b8060051b620006d06020820162000562565b9182526020818501810192908101908f841115620006ed57600080fd5b6020860195505b838610156200071a57620007088662000595565b825260209586019590910190620006f4565b9c506200072e9250505060208c0162000595565b98506200073e60408c01620005b2565b97506200074e60608c01620005b2565b965060808b01519150808211156200076557600080fd5b50620007748b828c01620005c9565b94505060a0890151925060c0890151915060e089015190509295985092959890939650565b634e487b7160e01b600052603260045260246000fd5b60805160a05160c05160e05161010051610120516101405161016051610180516101a0516101c051612f9c62000867600039600081816107eb0152610dfb01526000818161066b0152610fae0152600081816107750152610fd801526000818161042301526110b601526000818161091401528181610eca015281816114fd0152611a100152600061237d015260006123cc015260006123a7015260006123000152600061232a015260006123540152612f9c6000f3fe6080604052600436106102ff5760003560e01c80636bde262711610190578063a22cb465116100dc578063ca72a6d311610095578063e552298a1161006f578063e552298a146109ab578063e8a3d485146109be578063e985e9c5146109d3578063f2fde38b14610a1c57600080fd5b8063ca72a6d314610956578063db25fe341461096b578063dc33e6811461098b57600080fd5b8063a22cb46514610880578063b0ae3dc6146108a0578063b88d4fde146108b5578063c23dc68f146108d5578063c4e627c214610902578063c87b56dd1461093657600080fd5b80638462151c116101495780638ba2dba4116101235780638ba2dba41461080d5780638da5cb5b1461082d57806395d89b411461084b57806399a2557a1461086057600080fd5b80638462151c146107975780638891bb38146107c45780638b1b3866146107d957600080fd5b80636bde2627146106da5780636c0360eb146106f557806370a082311461070a578063715018a61461072a57806378e979251461073f5780637ffbd5b31461076357600080fd5b80633197cbb61161024f57806342966c681161020857806355f804b3116101e257806355f804b3146106395780635a45e162146106595780635bbb21771461068d5780636352211e146106ba57600080fd5b806342966c68146105e457806353df5c7c1461060457806354ec64ce1461061957600080fd5b80633197cbb61461050b5780633aa3aba8146105485780633aada4d21461057c5780633b437b081461058f5780633ccfd60b146105af57806342842e0e146105c457600080fd5b80631c98eb26116102bc57806323b872dd1161029657806323b872dd146104795780632478d639146104995780632a55205a146104b95780632db11544146104f857600080fd5b80631c98eb26146103f15780631f27ced21461041157806322ebb2531461044557600080fd5b806301ffc9a71461030457806306fdde0314610339578063081812fc1461035b578063095ea7b3146103935780630ba1b5cd146103b557806318160ddd146103d8575b600080fd5b34801561031057600080fd5b5061032461031f3660046125e1565b610a3c565b60405190151581526020015b60405180910390f35b34801561034557600080fd5b5061034e610a67565b6040516103309190612656565b34801561036757600080fd5b5061037b610376366004612669565b610af9565b6040516001600160a01b039091168152602001610330565b34801561039f57600080fd5b506103b36103ae36600461269e565b610b3d565b005b3480156103c157600080fd5b506103ca600181565b604051908152602001610330565b3480156103e457600080fd5b50600154600054036103ca565b3480156103fd57600080fd5b506103ca61040c3660046126c8565b610bdd565b34801561041d57600080fd5b5061037b7f000000000000000000000000000000000000000000000000000000000000000081565b34801561045157600080fd5b506103ca7f0c4af93e50d05ed430de6f87fd2e959ea7c66567806c32acead1030236261f2081565b34801561048557600080fd5b506103b36104943660046126eb565b610c29565b3480156104a557600080fd5b506103ca6104b4366004612727565b610dcc565b3480156104c557600080fd5b506104d96104d4366004612742565b610df9565b604080516001600160a01b039093168352602083019190915201610330565b6103b3610506366004612669565b610e3d565b34801561051757600080fd5b50600b5461053190600160381b900465ffffffffffff1681565b60405165ffffffffffff9091168152602001610330565b34801561055457600080fd5b506103ca7f5a459a9ee85d425b1738960dd6e08dacdddeb06d2caecfac33156008250d362581565b61034e61058a3660046127ac565b610f19565b34801561059b57600080fd5b506103ca6105aa366004612669565b610f76565b3480156105bb57600080fd5b506103b3610f8d565b3480156105d057600080fd5b506103b36105df3660046126eb565b611006565b3480156105f057600080fd5b506103b36105ff366004612669565b611026565b34801561061057600080fd5b506103b3611034565b34801561062557600080fd5b5061032461063436600461280f565b61104b565b34801561064557600080fd5b506103b361065436600461285f565b611113565b34801561066557600080fd5b5061037b7f000000000000000000000000000000000000000000000000000000000000000081565b34801561069957600080fd5b506106ad6106a83660046128e6565b611170565b60405161033091906129c7565b3480156106c657600080fd5b5061037b6106d5366004612669565b61123d565b3480156106e657600080fd5b506103ca664380663abb800081565b34801561070157600080fd5b5061034e611248565b34801561071657600080fd5b506103ca610725366004612727565b6112d6565b34801561073657600080fd5b506103b3611324565b34801561074b57600080fd5b50600b5461053190610100900465ffffffffffff1681565b34801561076f57600080fd5b5061037b7f000000000000000000000000000000000000000000000000000000000000000081565b3480156107a357600080fd5b506107b76107b2366004612727565b611338565b6040516103309190612a09565b3480156107d057600080fd5b506103ca600081565b3480156107e557600080fd5b5061037b7f000000000000000000000000000000000000000000000000000000000000000081565b34801561081957600080fd5b506103b3610828366004612a41565b611440565b34801561083957600080fd5b506008546001600160a01b031661037b565b34801561085757600080fd5b5061034e61154e565b34801561086c57600080fd5b506107b761087b366004612a74565b61155d565b34801561088c57600080fd5b506103b361089b366004612a92565b6116d4565b3480156108ac57600080fd5b506103ca600581565b3480156108c157600080fd5b506103b36108d0366004612ace565b611769565b3480156108e157600080fd5b506108f56108f0366004612669565b6117ad565b6040516103309190612b8d565b34801561090e57600080fd5b506103ca7f000000000000000000000000000000000000000000000000000000000000000081565b34801561094257600080fd5b5061034e610951366004612669565b611825565b34801561096257600080fd5b506103ca600a81565b34801561097757600080fd5b506103b3610986366004612bb1565b6118a9565b34801561099757600080fd5b506103ca6109a6366004612727565b6118f9565b6103b36109b9366004612bdb565b611923565b3480156109ca57600080fd5b5061034e611a62565b3480156109df57600080fd5b506103246109ee366004612c14565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b348015610a2857600080fd5b506103b3610a37366004612727565b611a6f565b60006001600160e01b0319821663152a902d60e11b1480610a615750610a6182611ae5565b92915050565b606060028054610a7690612c3e565b80601f0160208091040260200160405190810160405280929190818152602001828054610aa290612c3e565b8015610aef5780601f10610ac457610100808354040283529160200191610aef565b820191906000526020600020905b815481529060010190602001808311610ad257829003601f168201915b5050505050905090565b6000610b0482611b33565b610b21576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b6000610b488261123d565b9050336001600160a01b03821614610b8157610b6481336109ee565b610b81576040516367d9dca160e11b815260040160405180910390fd5b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6000610c228383604051602001610c079291909182526001600160a01b0316602082015260400190565b60405160208183030381529060405280519060200120611b5a565b9392505050565b6000610c3482611ba8565b9050836001600160a01b0316816001600160a01b031614610c675760405162a1148160e81b815260040160405180910390fd5b60008281526006602052604090208054610c938187335b6001600160a01b039081169116811491141790565b610cbe57610ca186336109ee565b610cbe57604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b038516610ce557604051633a954ecd60e21b815260040160405180910390fd5b8015610cf057600082555b6001600160a01b038681166000908152600560205260408082208054600019019055918716808252919020805460010190554260a01b17600160e11b17600085815260046020526040812091909155600160e11b84169003610d8257600184016000818152600460205260408120549003610d80576000548114610d805760008181526004602052604090208490555b505b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b505050505050565b6000610a61826001600160a01b031660009081526005602052604090205460801c6001600160401b031690565b7f000000000000000000000000000000000000000000000000000000000000000060006103e8610e2a846055612c8e565b610e349190612cad565b90509250929050565b600b548190610100900465ffffffffffff16421015610e6f576040516303bdb9df60e61b815260040160405180910390fd5b323314610e9657604051635d8122cb60e01b81523360048201526024015b60405180910390fd5b80600003610eb757604051631f2a200560e01b815260040160405180910390fd5b610ec88260006009815b0154611c0f565b7f0000000000000000000000000000000000000000000000000000000000000000610ef66001546000540390565b1115610f1557604051632a6de9fb60e21b815260040160405180910390fd5b5050565b6060610f23611cd8565b610f6e83838080601f01602080910402602001604051908101604052809392919081815260200183838082843760009201919091525050506001600160a01b03871691905034611d32565b949350505050565b60098160028110610f8657600080fd5b0154905081565b4760006064610f9d83603c612c8e565b610fa79190612cad565b9050610fd37f000000000000000000000000000000000000000000000000000000000000000082611d58565b610f157f00000000000000000000000000000000000000000000000000000000000000006110018385612ce5565b611d58565b61102183838360405180602001604052806000815250611769565b505050565b611031816001611e71565b50565b61103c611cd8565b600b805460ff19166001179055565b600080600161105a8585610bdd565b6040805160008152602081018083529290925260ff8a1690820152606081018890526080810187905260a0016020604051602081039080840390855afa1580156110a8573d6000803e3d6000fd5b5050506020604051035190507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316816001600160a01b03161461110657604051632057875960e21b815260040160405180910390fd5b5060019695505050505050565b61111b611cd8565b600b5460ff16156111635760405162461bcd60e51b815260206004820152601260248201527110985cd948155492481a5cc81b1bd8dad95960721b6044820152606401610e8d565b600c611021828483612d42565b80516060906000816001600160401b0381111561118f5761118f6128a0565b6040519080825280602002602001820160405280156111e157816020015b6040805160808101825260008082526020808301829052928201819052606082015282526000199092019101816111ad5790505b50905060005b8281146112355761121085828151811061120357611203612ccf565b60200260200101516117ad565b82828151811061122257611222612ccf565b60209081029190910101526001016111e7565b509392505050565b6000610a6182611ba8565b600c805461125590612c3e565b80601f016020809104026020016040519081016040528092919081815260200182805461128190612c3e565b80156112ce5780601f106112a3576101008083540402835291602001916112ce565b820191906000526020600020905b8154815290600101906020018083116112b157829003601f168201915b505050505081565b60006001600160a01b0382166112ff576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b03166000908152600560205260409020546001600160401b031690565b61132c611cd8565b6113366000611fbb565b565b60606000806000611348856112d6565b90506000816001600160401b03811115611364576113646128a0565b60405190808252806020026020018201604052801561138d578160200160208202803683370190505b5090506113ba60408051608081018252600080825260208201819052918101829052606081019190915290565b60005b838614611434576113cd8161200d565b9150816040015161142c5781516001600160a01b0316156113ed57815194505b876001600160a01b0316856001600160a01b03160361142c578083878060010198508151811061141f5761141f612ccf565b6020026020010181815250505b6001016113bd565b50909695505050505050565b600b54600a90610100900465ffffffffffff16421015611473576040516303bdb9df60e61b815260040160405180910390fd5b32331461149557604051635d8122cb60e01b8152336004820152602401610e8d565b806000036114b657604051631f2a200560e01b815260040160405180910390fd5b6114e38484847f5a459a9ee85d425b1738960dd6e08dacdddeb06d2caecfac33156008250d36253361104b565b506114ef600a80612049565b506114fb33600a6120a4565b7f00000000000000000000000000000000000000000000000000000000000000006115296001546000540390565b111561154857604051632a6de9fb60e21b815260040160405180910390fd5b50505050565b606060038054610a7690612c3e565b606081831061157f57604051631960ccad60e11b815260040160405180910390fd5b60008061158b60005490565b905080841115611599578093505b60006115a4876112d6565b9050848610156115c357858503818110156115bd578091505b506115c7565b5060005b6000816001600160401b038111156115e1576115e16128a0565b60405190808252806020026020018201604052801561160a578160200160208202803683370190505b50905081600003611620579350610c2292505050565b600061162b886117ad565b90506000816040015161163c575080515b885b88811415801561164e5750848714155b156116c35761165c8161200d565b925082604001516116bb5782516001600160a01b03161561167c57825191505b8a6001600160a01b0316826001600160a01b0316036116bb57808488806001019950815181106116ae576116ae612ccf565b6020026020010181815250505b60010161163e565b505050928352509095945050505050565b336001600160a01b038316036116fd5760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b611774848484610c29565b6001600160a01b0383163b156115485761179084848484612184565b611548576040516368d2bf6b60e11b815260040160405180910390fd5b60408051608080820183526000808352602080840182905283850182905260608085018390528551938401865282845290830182905293820181905292810183905290915060005483106118015792915050565b61180a8361200d565b905080604001511561181c5792915050565b610c228361226f565b606061183082611b33565b61184d57604051630a14c4b560e41b815260040160405180910390fd5b600c805461185a90612c3e565b90506000036118785760405180602001604052806000815250610a61565b600c611883836122a4565b604051602001611894929190612e01565b60405160208183030381529060405292915050565b6118b1611cd8565b600b80546cffffffffffffffffffffffff00191661010065ffffffffffff948516026cffffffffffff00000000000000191617600160381b9290931691909102919091179055565b6001600160a01b038116600090815260056020526040808220546001600160401b03911c16610a61565b600b548190610100900465ffffffffffff16421015611955576040516303bdb9df60e61b815260040160405180910390fd5b32331461197757604051635d8122cb60e01b8152336004820152602401610e8d565b8060000361199857604051631f2a200560e01b815260040160405180910390fd5b600a54600b54600160381b900465ffffffffffff16421080156119bb5750600081115b156119ff576119ed8686867f0c4af93e50d05ed430de6f87fd2e959ea7c66567806c32acead1030236261f203361104b565b506119fa83600183611c0f565b611a0d565b611a0d836000600981610ec1565b507f0000000000000000000000000000000000000000000000000000000000000000611a3c6001546000540390565b1115611a5b57604051632a6de9fb60e21b815260040160405180910390fd5b5050505050565b600d805461125590612c3e565b611a77611cd8565b6001600160a01b038116611adc5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610e8d565b61103181611fbb565b60006301ffc9a760e01b6001600160e01b031983161480611b1657506380ac58cd60e01b6001600160e01b03198316145b80610a615750506001600160e01b031916635b5e139f60e01b1490565b6000805482108015610a61575050600090815260046020526040902054600160e01b161590565b6000610a61611b676122f3565b8360405161190160f01b6020820152602281018390526042810182905260009060620160405160208183030381529060405280519060200120905092915050565b600081600054811015611bf65760008181526004602052604081205490600160e01b82169003611bf4575b80600003610c22575060001901600081815260046020526040902054611bd3565b505b604051636f96cda160e11b815260040160405180910390fd5b6000611c1c846005612049565b905060008083118015611c2d575081155b15611c7b5760098460028110611c4557611c45612ccf565b0160008154611c5390612e98565b90915550664380663abb8000611c6a600187612ce5565b611c749190612c8e565b9050611c8f565b611c8c664380663abb800086612c8e565b90505b80341015611cb85760405162fae2d560e21b815234600482015260248101829052604401610e8d565b611cc233866120a4565b80341115611a5b57611a5b336110018334612ce5565b6008546001600160a01b031633146113365760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610e8d565b6060610f6e848484604051806060016040528060298152602001612f3e6029913961241a565b80471015611da85760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a20696e73756666696369656e742062616c616e63650000006044820152606401610e8d565b6000826001600160a01b03168260405160006040518083038185875af1925050503d8060008114611df5576040519150601f19603f3d011682016040523d82523d6000602084013e611dfa565b606091505b50509050806110215760405162461bcd60e51b815260206004820152603a60248201527f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260448201527f6563697069656e74206d617920686176652072657665727465640000000000006064820152608401610e8d565b6000611e7c83611ba8565b905080600080611e9a86600090815260066020526040902080549091565b915091508415611eda57611eaf818433610c7e565b611eda57611ebd83336109ee565b611eda57604051632ce44b5f60e11b815260040160405180910390fd5b8015611ee557600082555b6001600160a01b038316600081815260056020526040902080546fffffffffffffffffffffffffffffffff0190554260a01b17600360e01b17600087815260046020526040812091909155600160e11b85169003611f7357600186016000818152600460205260408120549003611f71576000548114611f715760008181526004602052604090208590555b505b60405186906000906001600160a01b038616907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908390a45050600180548101905550505050565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b604080516080810182526000808252602082018190529181018290526060810191909152600082815260046020526040902054610a619061254b565b33600090815260056020526040808220546001600160401b03911c16826120708583612eaf565b1115610c22576120808482612eaf565b60405163015cbc5360e71b8152600481019190915260248101849052604401610e8d565b6000546001600160a01b0383166120cd57604051622e076360e81b815260040160405180910390fd5b816000036120ee5760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038316600081815260056020526040902080546801000000000000000185020190554260a01b6001841460e11b1717600082815260046020526040902055808281015b6040516001830192906001600160a01b038716906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a48082106121385760005550505050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a02906121b9903390899088908890600401612ec7565b6020604051808303816000875af19250505080156121f4575060408051601f3d908101601f191682019092526121f191810190612f04565b60015b612252573d808015612222576040519150601f19603f3d011682016040523d82523d6000602084013e612227565b606091505b50805160000361224a576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050949350505050565b604080516080810182526000808252602082018190529181018290526060810191909152610a6161229f83611ba8565b61254b565b604080516080810191829052607f0190826030600a8206018353600a90045b80156122e157600183039250600a81066030018353600a90046122c3565b50819003601f19909101908152919050565b6000306001600160a01b037f00000000000000000000000000000000000000000000000000000000000000001614801561234c57507f000000000000000000000000000000000000000000000000000000000000000046145b1561237657507f000000000000000000000000000000000000000000000000000000000000000090565b50604080517f00000000000000000000000000000000000000000000000000000000000000006020808301919091527f0000000000000000000000000000000000000000000000000000000000000000828401527f000000000000000000000000000000000000000000000000000000000000000060608301524660808301523060a0808401919091528351808403909101815260c0909201909252805191012090565b60608247101561247b5760405162461bcd60e51b815260206004820152602660248201527f416464726573733a20696e73756666696369656e742062616c616e636520666f6044820152651c8818d85b1b60d21b6064820152608401610e8d565b6001600160a01b0385163b6124d25760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e74726163740000006044820152606401610e8d565b600080866001600160a01b031685876040516124ee9190612f21565b60006040518083038185875af1925050503d806000811461252b576040519150601f19603f3d011682016040523d82523d6000602084013e612530565b606091505b5091509150612540828286612592565b979650505050505050565b604080516080810182526001600160a01b038316815260a083901c6001600160401b03166020820152600160e01b831615159181019190915260e89190911c606082015290565b606083156125a1575081610c22565b8251156125b15782518084602001fd5b8160405162461bcd60e51b8152600401610e8d9190612656565b6001600160e01b03198116811461103157600080fd5b6000602082840312156125f357600080fd5b8135610c22816125cb565b60005b83811015612619578181015183820152602001612601565b838111156115485750506000910152565b600081518084526126428160208601602086016125fe565b601f01601f19169290920160200192915050565b602081526000610c22602083018461262a565b60006020828403121561267b57600080fd5b5035919050565b80356001600160a01b038116811461269957600080fd5b919050565b600080604083850312156126b157600080fd5b6126ba83612682565b946020939093013593505050565b600080604083850312156126db57600080fd5b82359150610e3460208401612682565b60008060006060848603121561270057600080fd5b61270984612682565b925061271760208501612682565b9150604084013590509250925092565b60006020828403121561273957600080fd5b610c2282612682565b6000806040838503121561275557600080fd5b50508035926020909101359150565b60008083601f84011261277657600080fd5b5081356001600160401b0381111561278d57600080fd5b6020830191508360208285010111156127a557600080fd5b9250929050565b6000806000604084860312156127c157600080fd5b6127ca84612682565b925060208401356001600160401b038111156127e557600080fd5b6127f186828701612764565b9497909650939450505050565b803560ff8116811461269957600080fd5b600080600080600060a0868803121561282757600080fd5b612830866127fe565b945060208601359350604086013592506060860135915061285360808701612682565b90509295509295909350565b6000806020838503121561287257600080fd5b82356001600160401b0381111561288857600080fd5b61289485828601612764565b90969095509350505050565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f191681016001600160401b03811182821017156128de576128de6128a0565b604052919050565b600060208083850312156128f957600080fd5b82356001600160401b038082111561291057600080fd5b818501915085601f83011261292457600080fd5b813581811115612936576129366128a0565b8060051b91506129478483016128b6565b818152918301840191848101908884111561296157600080fd5b938501935b8385101561297f57843582529385019390850190612966565b98975050505050505050565b80516001600160a01b031682526020808201516001600160401b03169083015260408082015115159083015260609081015162ffffff16910152565b6020808252825182820181905260009190848201906040850190845b81811015611434576129f683855161298b565b92840192608092909201916001016129e3565b6020808252825182820181905260009190848201906040850190845b8181101561143457835183529284019291840191600101612a25565b600080600060608486031215612a5657600080fd5b612a5f846127fe565b95602085013595506040909401359392505050565b600080600060608486031215612a8957600080fd5b612a5f84612682565b60008060408385031215612aa557600080fd5b612aae83612682565b915060208301358015158114612ac357600080fd5b809150509250929050565b60008060008060808587031215612ae457600080fd5b612aed85612682565b93506020612afc818701612682565b93506040860135925060608601356001600160401b0380821115612b1f57600080fd5b818801915088601f830112612b3357600080fd5b813581811115612b4557612b456128a0565b612b57601f8201601f191685016128b6565b91508082528984828501011115612b6d57600080fd5b808484018584013760008482840101525080935050505092959194509250565b60808101610a61828461298b565b803565ffffffffffff8116811461269957600080fd5b60008060408385031215612bc457600080fd5b612bcd83612b9b565b9150610e3460208401612b9b565b60008060008060808587031215612bf157600080fd5b612bfa856127fe565b966020860135965060408601359560600135945092505050565b60008060408385031215612c2757600080fd5b612c3083612682565b9150610e3460208401612682565b600181811c90821680612c5257607f821691505b602082108103612c7257634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b6000816000190483118215151615612ca857612ca8612c78565b500290565b600082612cca57634e487b7160e01b600052601260045260246000fd5b500490565b634e487b7160e01b600052603260045260246000fd5b600082821015612cf757612cf7612c78565b500390565b601f82111561102157600081815260208120601f850160051c81016020861015612d235750805b601f850160051c820191505b81811015610dc457828155600101612d2f565b6001600160401b03831115612d5957612d596128a0565b612d6d83612d678354612c3e565b83612cfc565b6000601f841160018114612da15760008515612d895750838201355b600019600387901b1c1916600186901b178355611a5b565b600083815260209020601f19861690835b82811015612dd25786850135825560209485019460019092019101612db2565b5086821015612def5760001960f88860031b161c19848701351681555b505060018560011b0183555050505050565b6000808454612e0f81612c3e565b60018281168015612e275760018114612e3c57612e6b565b60ff1984168752821515830287019450612e6b565b8860005260208060002060005b85811015612e625781548a820152908401908201612e49565b50505082870194505b505050508351612e7f8183602088016125fe565b64173539b7b760d91b9101908152600501949350505050565b600081612ea757612ea7612c78565b506000190190565b60008219821115612ec257612ec2612c78565b500190565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612efa9083018461262a565b9695505050505050565b600060208284031215612f1657600080fd5b8151610c22816125cb565b60008251612f338184602087016125fe565b919091019291505056fe416464726573733a206c6f772d6c6576656c2063616c6c20776974682076616c7565206661696c6564a26469706673582212208cf780198daafa812e904c9e53cad58fd95b097988f91c1279d085472dd753bc64736f6c634300080f0033697066733a2f2f516d646b4b766469685a77716873367131706a6279503543626e4171636376566d35323972636a52434538697656000000000000000000000000000000000000000000000000000000000000010000000000000000000000000044b40b38b27d7e2282701b8b114723a1dbcf06a50000000000000000000000000000000000000000000000000000000062e547700000000000000000000000000000000000000000000000000000000062e54e78000000000000000000000000000000000000000000000000000000000000018000000000000000000000000000000000000000000000000000000000000022b8000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003e8000000000000000000000000000000000000000000000000000000000000000300000000000000000000000075f781f6e36fdb42f12c9ab7aac3c8c0602674e400000000000000000000000014e5119235b71584478df273e3196316b6eaba10000000000000000000000000a4e92f5171eb1a0f15ee3fd4ee0f01297aacf9890000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d647a584b6f4a34516670756356754d7836314641534b7761676a4e6d667578655542715469734272516453522f00000000000000000000

Deployed Bytecode

0x6080604052600436106102ff5760003560e01c80636bde262711610190578063a22cb465116100dc578063ca72a6d311610095578063e552298a1161006f578063e552298a146109ab578063e8a3d485146109be578063e985e9c5146109d3578063f2fde38b14610a1c57600080fd5b8063ca72a6d314610956578063db25fe341461096b578063dc33e6811461098b57600080fd5b8063a22cb46514610880578063b0ae3dc6146108a0578063b88d4fde146108b5578063c23dc68f146108d5578063c4e627c214610902578063c87b56dd1461093657600080fd5b80638462151c116101495780638ba2dba4116101235780638ba2dba41461080d5780638da5cb5b1461082d57806395d89b411461084b57806399a2557a1461086057600080fd5b80638462151c146107975780638891bb38146107c45780638b1b3866146107d957600080fd5b80636bde2627146106da5780636c0360eb146106f557806370a082311461070a578063715018a61461072a57806378e979251461073f5780637ffbd5b31461076357600080fd5b80633197cbb61161024f57806342966c681161020857806355f804b3116101e257806355f804b3146106395780635a45e162146106595780635bbb21771461068d5780636352211e146106ba57600080fd5b806342966c68146105e457806353df5c7c1461060457806354ec64ce1461061957600080fd5b80633197cbb61461050b5780633aa3aba8146105485780633aada4d21461057c5780633b437b081461058f5780633ccfd60b146105af57806342842e0e146105c457600080fd5b80631c98eb26116102bc57806323b872dd1161029657806323b872dd146104795780632478d639146104995780632a55205a146104b95780632db11544146104f857600080fd5b80631c98eb26146103f15780631f27ced21461041157806322ebb2531461044557600080fd5b806301ffc9a71461030457806306fdde0314610339578063081812fc1461035b578063095ea7b3146103935780630ba1b5cd146103b557806318160ddd146103d8575b600080fd5b34801561031057600080fd5b5061032461031f3660046125e1565b610a3c565b60405190151581526020015b60405180910390f35b34801561034557600080fd5b5061034e610a67565b6040516103309190612656565b34801561036757600080fd5b5061037b610376366004612669565b610af9565b6040516001600160a01b039091168152602001610330565b34801561039f57600080fd5b506103b36103ae36600461269e565b610b3d565b005b3480156103c157600080fd5b506103ca600181565b604051908152602001610330565b3480156103e457600080fd5b50600154600054036103ca565b3480156103fd57600080fd5b506103ca61040c3660046126c8565b610bdd565b34801561041d57600080fd5b5061037b7f00000000000000000000000044b40b38b27d7e2282701b8b114723a1dbcf06a581565b34801561045157600080fd5b506103ca7f0c4af93e50d05ed430de6f87fd2e959ea7c66567806c32acead1030236261f2081565b34801561048557600080fd5b506103b36104943660046126eb565b610c29565b3480156104a557600080fd5b506103ca6104b4366004612727565b610dcc565b3480156104c557600080fd5b506104d96104d4366004612742565b610df9565b604080516001600160a01b039093168352602083019190915201610330565b6103b3610506366004612669565b610e3d565b34801561051757600080fd5b50600b5461053190600160381b900465ffffffffffff1681565b60405165ffffffffffff9091168152602001610330565b34801561055457600080fd5b506103ca7f5a459a9ee85d425b1738960dd6e08dacdddeb06d2caecfac33156008250d362581565b61034e61058a3660046127ac565b610f19565b34801561059b57600080fd5b506103ca6105aa366004612669565b610f76565b3480156105bb57600080fd5b506103b3610f8d565b3480156105d057600080fd5b506103b36105df3660046126eb565b611006565b3480156105f057600080fd5b506103b36105ff366004612669565b611026565b34801561061057600080fd5b506103b3611034565b34801561062557600080fd5b5061032461063436600461280f565b61104b565b34801561064557600080fd5b506103b361065436600461285f565b611113565b34801561066557600080fd5b5061037b7f00000000000000000000000014e5119235b71584478df273e3196316b6eaba1081565b34801561069957600080fd5b506106ad6106a83660046128e6565b611170565b60405161033091906129c7565b3480156106c657600080fd5b5061037b6106d5366004612669565b61123d565b3480156106e657600080fd5b506103ca664380663abb800081565b34801561070157600080fd5b5061034e611248565b34801561071657600080fd5b506103ca610725366004612727565b6112d6565b34801561073657600080fd5b506103b3611324565b34801561074b57600080fd5b50600b5461053190610100900465ffffffffffff1681565b34801561076f57600080fd5b5061037b7f00000000000000000000000075f781f6e36fdb42f12c9ab7aac3c8c0602674e481565b3480156107a357600080fd5b506107b76107b2366004612727565b611338565b6040516103309190612a09565b3480156107d057600080fd5b506103ca600081565b3480156107e557600080fd5b5061037b7f000000000000000000000000a4e92f5171eb1a0f15ee3fd4ee0f01297aacf98981565b34801561081957600080fd5b506103b3610828366004612a41565b611440565b34801561083957600080fd5b506008546001600160a01b031661037b565b34801561085757600080fd5b5061034e61154e565b34801561086c57600080fd5b506107b761087b366004612a74565b61155d565b34801561088c57600080fd5b506103b361089b366004612a92565b6116d4565b3480156108ac57600080fd5b506103ca600581565b3480156108c157600080fd5b506103b36108d0366004612ace565b611769565b3480156108e157600080fd5b506108f56108f0366004612669565b6117ad565b6040516103309190612b8d565b34801561090e57600080fd5b506103ca7f00000000000000000000000000000000000000000000000000000000000022b881565b34801561094257600080fd5b5061034e610951366004612669565b611825565b34801561096257600080fd5b506103ca600a81565b34801561097757600080fd5b506103b3610986366004612bb1565b6118a9565b34801561099757600080fd5b506103ca6109a6366004612727565b6118f9565b6103b36109b9366004612bdb565b611923565b3480156109ca57600080fd5b5061034e611a62565b3480156109df57600080fd5b506103246109ee366004612c14565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b348015610a2857600080fd5b506103b3610a37366004612727565b611a6f565b60006001600160e01b0319821663152a902d60e11b1480610a615750610a6182611ae5565b92915050565b606060028054610a7690612c3e565b80601f0160208091040260200160405190810160405280929190818152602001828054610aa290612c3e565b8015610aef5780601f10610ac457610100808354040283529160200191610aef565b820191906000526020600020905b815481529060010190602001808311610ad257829003601f168201915b5050505050905090565b6000610b0482611b33565b610b21576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b6000610b488261123d565b9050336001600160a01b03821614610b8157610b6481336109ee565b610b81576040516367d9dca160e11b815260040160405180910390fd5b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6000610c228383604051602001610c079291909182526001600160a01b0316602082015260400190565b60405160208183030381529060405280519060200120611b5a565b9392505050565b6000610c3482611ba8565b9050836001600160a01b0316816001600160a01b031614610c675760405162a1148160e81b815260040160405180910390fd5b60008281526006602052604090208054610c938187335b6001600160a01b039081169116811491141790565b610cbe57610ca186336109ee565b610cbe57604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b038516610ce557604051633a954ecd60e21b815260040160405180910390fd5b8015610cf057600082555b6001600160a01b038681166000908152600560205260408082208054600019019055918716808252919020805460010190554260a01b17600160e11b17600085815260046020526040812091909155600160e11b84169003610d8257600184016000818152600460205260408120549003610d80576000548114610d805760008181526004602052604090208490555b505b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b505050505050565b6000610a61826001600160a01b031660009081526005602052604090205460801c6001600160401b031690565b7f000000000000000000000000a4e92f5171eb1a0f15ee3fd4ee0f01297aacf98960006103e8610e2a846055612c8e565b610e349190612cad565b90509250929050565b600b548190610100900465ffffffffffff16421015610e6f576040516303bdb9df60e61b815260040160405180910390fd5b323314610e9657604051635d8122cb60e01b81523360048201526024015b60405180910390fd5b80600003610eb757604051631f2a200560e01b815260040160405180910390fd5b610ec88260006009815b0154611c0f565b7f00000000000000000000000000000000000000000000000000000000000022b8610ef66001546000540390565b1115610f1557604051632a6de9fb60e21b815260040160405180910390fd5b5050565b6060610f23611cd8565b610f6e83838080601f01602080910402602001604051908101604052809392919081815260200183838082843760009201919091525050506001600160a01b03871691905034611d32565b949350505050565b60098160028110610f8657600080fd5b0154905081565b4760006064610f9d83603c612c8e565b610fa79190612cad565b9050610fd37f00000000000000000000000014e5119235b71584478df273e3196316b6eaba1082611d58565b610f157f00000000000000000000000075f781f6e36fdb42f12c9ab7aac3c8c0602674e46110018385612ce5565b611d58565b61102183838360405180602001604052806000815250611769565b505050565b611031816001611e71565b50565b61103c611cd8565b600b805460ff19166001179055565b600080600161105a8585610bdd565b6040805160008152602081018083529290925260ff8a1690820152606081018890526080810187905260a0016020604051602081039080840390855afa1580156110a8573d6000803e3d6000fd5b5050506020604051035190507f00000000000000000000000044b40b38b27d7e2282701b8b114723a1dbcf06a56001600160a01b0316816001600160a01b03161461110657604051632057875960e21b815260040160405180910390fd5b5060019695505050505050565b61111b611cd8565b600b5460ff16156111635760405162461bcd60e51b815260206004820152601260248201527110985cd948155492481a5cc81b1bd8dad95960721b6044820152606401610e8d565b600c611021828483612d42565b80516060906000816001600160401b0381111561118f5761118f6128a0565b6040519080825280602002602001820160405280156111e157816020015b6040805160808101825260008082526020808301829052928201819052606082015282526000199092019101816111ad5790505b50905060005b8281146112355761121085828151811061120357611203612ccf565b60200260200101516117ad565b82828151811061122257611222612ccf565b60209081029190910101526001016111e7565b509392505050565b6000610a6182611ba8565b600c805461125590612c3e565b80601f016020809104026020016040519081016040528092919081815260200182805461128190612c3e565b80156112ce5780601f106112a3576101008083540402835291602001916112ce565b820191906000526020600020905b8154815290600101906020018083116112b157829003601f168201915b505050505081565b60006001600160a01b0382166112ff576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b03166000908152600560205260409020546001600160401b031690565b61132c611cd8565b6113366000611fbb565b565b60606000806000611348856112d6565b90506000816001600160401b03811115611364576113646128a0565b60405190808252806020026020018201604052801561138d578160200160208202803683370190505b5090506113ba60408051608081018252600080825260208201819052918101829052606081019190915290565b60005b838614611434576113cd8161200d565b9150816040015161142c5781516001600160a01b0316156113ed57815194505b876001600160a01b0316856001600160a01b03160361142c578083878060010198508151811061141f5761141f612ccf565b6020026020010181815250505b6001016113bd565b50909695505050505050565b600b54600a90610100900465ffffffffffff16421015611473576040516303bdb9df60e61b815260040160405180910390fd5b32331461149557604051635d8122cb60e01b8152336004820152602401610e8d565b806000036114b657604051631f2a200560e01b815260040160405180910390fd5b6114e38484847f5a459a9ee85d425b1738960dd6e08dacdddeb06d2caecfac33156008250d36253361104b565b506114ef600a80612049565b506114fb33600a6120a4565b7f00000000000000000000000000000000000000000000000000000000000022b86115296001546000540390565b111561154857604051632a6de9fb60e21b815260040160405180910390fd5b50505050565b606060038054610a7690612c3e565b606081831061157f57604051631960ccad60e11b815260040160405180910390fd5b60008061158b60005490565b905080841115611599578093505b60006115a4876112d6565b9050848610156115c357858503818110156115bd578091505b506115c7565b5060005b6000816001600160401b038111156115e1576115e16128a0565b60405190808252806020026020018201604052801561160a578160200160208202803683370190505b50905081600003611620579350610c2292505050565b600061162b886117ad565b90506000816040015161163c575080515b885b88811415801561164e5750848714155b156116c35761165c8161200d565b925082604001516116bb5782516001600160a01b03161561167c57825191505b8a6001600160a01b0316826001600160a01b0316036116bb57808488806001019950815181106116ae576116ae612ccf565b6020026020010181815250505b60010161163e565b505050928352509095945050505050565b336001600160a01b038316036116fd5760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b611774848484610c29565b6001600160a01b0383163b156115485761179084848484612184565b611548576040516368d2bf6b60e11b815260040160405180910390fd5b60408051608080820183526000808352602080840182905283850182905260608085018390528551938401865282845290830182905293820181905292810183905290915060005483106118015792915050565b61180a8361200d565b905080604001511561181c5792915050565b610c228361226f565b606061183082611b33565b61184d57604051630a14c4b560e41b815260040160405180910390fd5b600c805461185a90612c3e565b90506000036118785760405180602001604052806000815250610a61565b600c611883836122a4565b604051602001611894929190612e01565b60405160208183030381529060405292915050565b6118b1611cd8565b600b80546cffffffffffffffffffffffff00191661010065ffffffffffff948516026cffffffffffff00000000000000191617600160381b9290931691909102919091179055565b6001600160a01b038116600090815260056020526040808220546001600160401b03911c16610a61565b600b548190610100900465ffffffffffff16421015611955576040516303bdb9df60e61b815260040160405180910390fd5b32331461197757604051635d8122cb60e01b8152336004820152602401610e8d565b8060000361199857604051631f2a200560e01b815260040160405180910390fd5b600a54600b54600160381b900465ffffffffffff16421080156119bb5750600081115b156119ff576119ed8686867f0c4af93e50d05ed430de6f87fd2e959ea7c66567806c32acead1030236261f203361104b565b506119fa83600183611c0f565b611a0d565b611a0d836000600981610ec1565b507f00000000000000000000000000000000000000000000000000000000000022b8611a3c6001546000540390565b1115611a5b57604051632a6de9fb60e21b815260040160405180910390fd5b5050505050565b600d805461125590612c3e565b611a77611cd8565b6001600160a01b038116611adc5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610e8d565b61103181611fbb565b60006301ffc9a760e01b6001600160e01b031983161480611b1657506380ac58cd60e01b6001600160e01b03198316145b80610a615750506001600160e01b031916635b5e139f60e01b1490565b6000805482108015610a61575050600090815260046020526040902054600160e01b161590565b6000610a61611b676122f3565b8360405161190160f01b6020820152602281018390526042810182905260009060620160405160208183030381529060405280519060200120905092915050565b600081600054811015611bf65760008181526004602052604081205490600160e01b82169003611bf4575b80600003610c22575060001901600081815260046020526040902054611bd3565b505b604051636f96cda160e11b815260040160405180910390fd5b6000611c1c846005612049565b905060008083118015611c2d575081155b15611c7b5760098460028110611c4557611c45612ccf565b0160008154611c5390612e98565b90915550664380663abb8000611c6a600187612ce5565b611c749190612c8e565b9050611c8f565b611c8c664380663abb800086612c8e565b90505b80341015611cb85760405162fae2d560e21b815234600482015260248101829052604401610e8d565b611cc233866120a4565b80341115611a5b57611a5b336110018334612ce5565b6008546001600160a01b031633146113365760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610e8d565b6060610f6e848484604051806060016040528060298152602001612f3e6029913961241a565b80471015611da85760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a20696e73756666696369656e742062616c616e63650000006044820152606401610e8d565b6000826001600160a01b03168260405160006040518083038185875af1925050503d8060008114611df5576040519150601f19603f3d011682016040523d82523d6000602084013e611dfa565b606091505b50509050806110215760405162461bcd60e51b815260206004820152603a60248201527f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260448201527f6563697069656e74206d617920686176652072657665727465640000000000006064820152608401610e8d565b6000611e7c83611ba8565b905080600080611e9a86600090815260066020526040902080549091565b915091508415611eda57611eaf818433610c7e565b611eda57611ebd83336109ee565b611eda57604051632ce44b5f60e11b815260040160405180910390fd5b8015611ee557600082555b6001600160a01b038316600081815260056020526040902080546fffffffffffffffffffffffffffffffff0190554260a01b17600360e01b17600087815260046020526040812091909155600160e11b85169003611f7357600186016000818152600460205260408120549003611f71576000548114611f715760008181526004602052604090208590555b505b60405186906000906001600160a01b038616907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908390a45050600180548101905550505050565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b604080516080810182526000808252602082018190529181018290526060810191909152600082815260046020526040902054610a619061254b565b33600090815260056020526040808220546001600160401b03911c16826120708583612eaf565b1115610c22576120808482612eaf565b60405163015cbc5360e71b8152600481019190915260248101849052604401610e8d565b6000546001600160a01b0383166120cd57604051622e076360e81b815260040160405180910390fd5b816000036120ee5760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038316600081815260056020526040902080546801000000000000000185020190554260a01b6001841460e11b1717600082815260046020526040902055808281015b6040516001830192906001600160a01b038716906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a48082106121385760005550505050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a02906121b9903390899088908890600401612ec7565b6020604051808303816000875af19250505080156121f4575060408051601f3d908101601f191682019092526121f191810190612f04565b60015b612252573d808015612222576040519150601f19603f3d011682016040523d82523d6000602084013e612227565b606091505b50805160000361224a576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050949350505050565b604080516080810182526000808252602082018190529181018290526060810191909152610a6161229f83611ba8565b61254b565b604080516080810191829052607f0190826030600a8206018353600a90045b80156122e157600183039250600a81066030018353600a90046122c3565b50819003601f19909101908152919050565b6000306001600160a01b037f000000000000000000000000be98eb1dfc252d231305ca44ded8e5560e0703d01614801561234c57507f000000000000000000000000000000000000000000000000000000000000000146145b1561237657507f3a520974b98cd073364acf806d728cb75951908d0d87f65bef04386ce2ffe09390565b50604080517f8b73c3c69bb8fe3d512ecc4cf759cc79239f7b179b0ffacaa9a75d522b39400f6020808301919091527f55243bc61c99da4f20a59db84a09e6615439c980c77429a9aeb919a361486e1b828401527f06c015bd22b4c69690933c1058878ebdfef31f9aaae40bbe86d8a09fe1b2972c60608301524660808301523060a0808401919091528351808403909101815260c0909201909252805191012090565b60608247101561247b5760405162461bcd60e51b815260206004820152602660248201527f416464726573733a20696e73756666696369656e742062616c616e636520666f6044820152651c8818d85b1b60d21b6064820152608401610e8d565b6001600160a01b0385163b6124d25760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e74726163740000006044820152606401610e8d565b600080866001600160a01b031685876040516124ee9190612f21565b60006040518083038185875af1925050503d806000811461252b576040519150601f19603f3d011682016040523d82523d6000602084013e612530565b606091505b5091509150612540828286612592565b979650505050505050565b604080516080810182526001600160a01b038316815260a083901c6001600160401b03166020820152600160e01b831615159181019190915260e89190911c606082015290565b606083156125a1575081610c22565b8251156125b15782518084602001fd5b8160405162461bcd60e51b8152600401610e8d9190612656565b6001600160e01b03198116811461103157600080fd5b6000602082840312156125f357600080fd5b8135610c22816125cb565b60005b83811015612619578181015183820152602001612601565b838111156115485750506000910152565b600081518084526126428160208601602086016125fe565b601f01601f19169290920160200192915050565b602081526000610c22602083018461262a565b60006020828403121561267b57600080fd5b5035919050565b80356001600160a01b038116811461269957600080fd5b919050565b600080604083850312156126b157600080fd5b6126ba83612682565b946020939093013593505050565b600080604083850312156126db57600080fd5b82359150610e3460208401612682565b60008060006060848603121561270057600080fd5b61270984612682565b925061271760208501612682565b9150604084013590509250925092565b60006020828403121561273957600080fd5b610c2282612682565b6000806040838503121561275557600080fd5b50508035926020909101359150565b60008083601f84011261277657600080fd5b5081356001600160401b0381111561278d57600080fd5b6020830191508360208285010111156127a557600080fd5b9250929050565b6000806000604084860312156127c157600080fd5b6127ca84612682565b925060208401356001600160401b038111156127e557600080fd5b6127f186828701612764565b9497909650939450505050565b803560ff8116811461269957600080fd5b600080600080600060a0868803121561282757600080fd5b612830866127fe565b945060208601359350604086013592506060860135915061285360808701612682565b90509295509295909350565b6000806020838503121561287257600080fd5b82356001600160401b0381111561288857600080fd5b61289485828601612764565b90969095509350505050565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f191681016001600160401b03811182821017156128de576128de6128a0565b604052919050565b600060208083850312156128f957600080fd5b82356001600160401b038082111561291057600080fd5b818501915085601f83011261292457600080fd5b813581811115612936576129366128a0565b8060051b91506129478483016128b6565b818152918301840191848101908884111561296157600080fd5b938501935b8385101561297f57843582529385019390850190612966565b98975050505050505050565b80516001600160a01b031682526020808201516001600160401b03169083015260408082015115159083015260609081015162ffffff16910152565b6020808252825182820181905260009190848201906040850190845b81811015611434576129f683855161298b565b92840192608092909201916001016129e3565b6020808252825182820181905260009190848201906040850190845b8181101561143457835183529284019291840191600101612a25565b600080600060608486031215612a5657600080fd5b612a5f846127fe565b95602085013595506040909401359392505050565b600080600060608486031215612a8957600080fd5b612a5f84612682565b60008060408385031215612aa557600080fd5b612aae83612682565b915060208301358015158114612ac357600080fd5b809150509250929050565b60008060008060808587031215612ae457600080fd5b612aed85612682565b93506020612afc818701612682565b93506040860135925060608601356001600160401b0380821115612b1f57600080fd5b818801915088601f830112612b3357600080fd5b813581811115612b4557612b456128a0565b612b57601f8201601f191685016128b6565b91508082528984828501011115612b6d57600080fd5b808484018584013760008482840101525080935050505092959194509250565b60808101610a61828461298b565b803565ffffffffffff8116811461269957600080fd5b60008060408385031215612bc457600080fd5b612bcd83612b9b565b9150610e3460208401612b9b565b60008060008060808587031215612bf157600080fd5b612bfa856127fe565b966020860135965060408601359560600135945092505050565b60008060408385031215612c2757600080fd5b612c3083612682565b9150610e3460208401612682565b600181811c90821680612c5257607f821691505b602082108103612c7257634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b6000816000190483118215151615612ca857612ca8612c78565b500290565b600082612cca57634e487b7160e01b600052601260045260246000fd5b500490565b634e487b7160e01b600052603260045260246000fd5b600082821015612cf757612cf7612c78565b500390565b601f82111561102157600081815260208120601f850160051c81016020861015612d235750805b601f850160051c820191505b81811015610dc457828155600101612d2f565b6001600160401b03831115612d5957612d596128a0565b612d6d83612d678354612c3e565b83612cfc565b6000601f841160018114612da15760008515612d895750838201355b600019600387901b1c1916600186901b178355611a5b565b600083815260209020601f19861690835b82811015612dd25786850135825560209485019460019092019101612db2565b5086821015612def5760001960f88860031b161c19848701351681555b505060018560011b0183555050505050565b6000808454612e0f81612c3e565b60018281168015612e275760018114612e3c57612e6b565b60ff1984168752821515830287019450612e6b565b8860005260208060002060005b85811015612e625781548a820152908401908201612e49565b50505082870194505b505050508351612e7f8183602088016125fe565b64173539b7b760d91b9101908152600501949350505050565b600081612ea757612ea7612c78565b506000190190565b60008219821115612ec257612ec2612c78565b500190565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612efa9083018461262a565b9695505050505050565b600060208284031215612f1657600080fd5b8151610c22816125cb565b60008251612f338184602087016125fe565b919091019291505056fe416464726573733a206c6f772d6c6576656c2063616c6c20776974682076616c7565206661696c6564a26469706673582212208cf780198daafa812e904c9e53cad58fd95b097988f91c1279d085472dd753bc64736f6c634300080f0033

Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)

000000000000000000000000000000000000000000000000000000000000010000000000000000000000000044b40b38b27d7e2282701b8b114723a1dbcf06a50000000000000000000000000000000000000000000000000000000062e547700000000000000000000000000000000000000000000000000000000062e54e78000000000000000000000000000000000000000000000000000000000000018000000000000000000000000000000000000000000000000000000000000022b8000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003e8000000000000000000000000000000000000000000000000000000000000000300000000000000000000000075f781f6e36fdb42f12c9ab7aac3c8c0602674e400000000000000000000000014e5119235b71584478df273e3196316b6eaba10000000000000000000000000a4e92f5171eb1a0f15ee3fd4ee0f01297aacf9890000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d647a584b6f4a34516670756356754d7836314641534b7761676a4e6d667578655542715469734272516453522f00000000000000000000

-----Decoded View---------------
Arg [0] : addrs (address[]): 0x75f781F6E36fdB42F12c9aB7aaC3C8C0602674e4,0x14E5119235b71584478dF273E3196316b6EAbA10,0xa4E92F5171Eb1a0f15eE3fd4EE0f01297aaCF989
Arg [1] : allowListSigner_ (address): 0x44b40B38b27d7E2282701B8b114723A1dBcf06a5
Arg [2] : startTime_ (uint48): 1659193200
Arg [3] : endTime_ (uint48): 1659195000
Arg [4] : baseURI_ (string): ipfs://QmdzXKoJ4QfpucVuMx61FASKwagjNmfuxeUBqTisBrQdSR/
Arg [5] : maxTokenCount_ (uint256): 8888
Arg [6] : oneFreeRemainPUB_ (uint256): 0
Arg [7] : oneFreeRemainWLA_ (uint256): 1000

-----Encoded View---------------
15 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000100
Arg [1] : 00000000000000000000000044b40b38b27d7e2282701b8b114723a1dbcf06a5
Arg [2] : 0000000000000000000000000000000000000000000000000000000062e54770
Arg [3] : 0000000000000000000000000000000000000000000000000000000062e54e78
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000180
Arg [5] : 00000000000000000000000000000000000000000000000000000000000022b8
Arg [6] : 0000000000000000000000000000000000000000000000000000000000000000
Arg [7] : 00000000000000000000000000000000000000000000000000000000000003e8
Arg [8] : 0000000000000000000000000000000000000000000000000000000000000003
Arg [9] : 00000000000000000000000075f781f6e36fdb42f12c9ab7aac3c8c0602674e4
Arg [10] : 00000000000000000000000014e5119235b71584478df273e3196316b6eaba10
Arg [11] : 000000000000000000000000a4e92f5171eb1a0f15ee3fd4ee0f01297aacf989
Arg [12] : 0000000000000000000000000000000000000000000000000000000000000036
Arg [13] : 697066733a2f2f516d647a584b6f4a34516670756356754d7836314641534b77
Arg [14] : 61676a4e6d667578655542715469734272516453522f00000000000000000000


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.