ETH Price: $3,456.48 (-0.77%)
Gas: 2 Gwei

Token

Jekyll and Hyde NFT (JH)
 

Overview

Max Total Supply

0 JH

Holders

501

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 JH
0xE7c544ed270305C289dc8453DF75D9a91b20FbFe
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:
JekyllAndHydeNFT

Compiler Version
v0.8.9+commit.e5eed63a

Optimization Enabled:
Yes with 100 runs

Other Settings:
default evmVersion
File 1 of 15 : jekyllandhyde.sol
// SPDX-License-Identifier: MIT
/*                                                                          ▄▄    ▄▄  
                ▀███▀▀▀██▄                 ▀████▀       ▀███                 ▀███  ▀███  
                ██    ▀██▄                 ██           ██                   ██    ██  
                ██     ▀█████▄███          ██   ▄▄█▀██  ██  ▄██▀▀██▀   ▀██▀  ██    ██  
                ██      ██ ██▀ ▀▀          ██  ▄█▀   ██ ██ ▄█     ██   ▄█    ▓█    ▓█  
                █▓     ▄██ █▓              ██  ▓█▀▀▀▀▀▀ ▓█▄██      ██ ▄▓     ▓█    ▓█  
                █▓    ▄█▓▀ █▓         ██▓  ██  ▓█▄    ▄ ▓█ ▀██▄     ██▓      ▓█    ▓█  
                ▓▓     ▓▓▓ ▓▓              ▓▓  ▓▓▀▀▀▀▀▀ ▓▓▓▓▓       █▓▓      ▓▓    ▓▓  
                ▓▒    ▓▓▒▀ ▓▒    ▓▓   ▓▓▓  ▓▓  ▒▓▓      ▒▓ ▀▓▓▓     ▓▓▒      ▒▓    ▒▓  
                ▒ ▒ ▒ ▒ ▒  ▒ ▒▒▒   ▒     ▒▓▒ ▒    ▒ ▒ ▒▒▒ ▒ ▒  ▒ ▒    ▓▓     ▒ ▒ ▒ ▒ ▒ ▒ 
                                                                    ▒▒▓                  
                                                                ▒▒▒                
                           ▄▄                                                                 ▄▄          
                         ▀███     ▀████▄     ▄███▀            ▀████▀  ▀████▀▀               ▀███          
                           ██       ████    ████                ██      ██                    ██          
 ▄█▀██▄ ▀████████▄    ▄█▀▀███       █ ██   ▄█ ██ ▀███▄███       ██      ██  ▀██▀   ▀██▀  ▄█▀▀███   ▄▄█▀██ 
██   ██   ██    ██  ▄██    ██       █  █▓  █▀ ██   ██▀ ▀▀       ██████████    ██   ▄█  ▄██    ██  ▄█▀   ██
 ▄███▓█   █▓    ██  █▓█    █▓       ▓  █▓▄█▀  ██   █▓           ▓█      █▓     ██ ▄▓   █▓█    █▓  ▓█▀▀▀▀▀▀
█▓   ▓█   █▓    ▓█  ▀▓█    █▓       ▓  ▀▓█▀   ██   █▓           ▓█      █▓      ██▓    ▀▓█    █▓  ▓█▄    ▄
 ▓▓▓▓▒▓   ▓▓    ▓▓  ▓▓▓    ▓▓       ▓  ▓▓▓▓▀  ▓▓   ▓▓           ▒▓      ▓▓      █▓▓    ▓▓▓    ▓▓  ▓▓▀▀▀▀▀▀
▓▓   ▒▓   ▓▓    ▓▓  ▀▒▓    ▓▒       ▒  ▀▓▓▀   ▓▓   ▓▒    ▓▓     ▒▓      ▒▓      ▓▓▒    ▀▒▓    ▓▒  ▒▓▓     
▒▓▒ ▒ ▓▒▒ ▒▒▒  ▒▓▒ ▒ ▒ ▒ ▒ ▓ ▒    ▒ ▒▒▒ ▒   ▒ ▒▒▒▒ ▒▒▒   ▒    ▒▒▒ ▒   ▒ ▒▓▒▒    ▓▓      ▒ ▒ ▒ ▓ ▒  ▒ ▒ ▒▒ 
                                                                              ▒▒▓                         
                                                                            ▒▒▒                           

*/
/// @title The Strange Case of Dr. Jekyll and Mr. Hyde NFT
/// @author audie.eth
/// @notice An NFT for the book with art by Rata

pragma solidity ^0.8.9;

import "@openzeppelin/contracts/token/ERC721/ERC721.sol";
import "@openzeppelin/contracts/token/ERC721/extensions/ERC721Burnable.sol";
import "@openzeppelin/contracts/utils/cryptography/MerkleProof.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/token/common/ERC2981.sol";

contract JekyllAndHydeNFT is ERC2981, ERC721, Ownable {
    // fixed values
    uint256 private constant _collectionSize = 1100; 
    uint256 private constant _earnableNFTs = 100; 
    uint256 private _mintableNFTsAvailable = _collectionSize - _earnableNFTs;
    uint256 private _nextEarnedNFTId;
    uint256 private _nextMintedNFTId = _earnableNFTs; // the first mintable ID

    // mutable properties
    string private _baseTokenURI =
        "https://bookcoin.mypinata.cloud/ipfs/QmQo1G8DyuZuytTnCKkmX94LgyTXMJWLdkcdG2ohmzBzXr/";
    string private _contractUri =
        "https://bookcoin.mypinata.cloud/ipfs/QmWpgMsiQnp8CUf6LSXcmcy7Eo77mspVvhqnc3hxc29KLs";
    bytes32 private _merkleRoot; // the merkle root for the claims
    bytes32 private _earnedMerkle; // the merkle root for the readers who won and got a code
    uint256 private _mintedSupply = 0;
    uint256 private _mintPrice = 0.03 ether;

    uint256 private _bookMintStartTime = 1657638000; // 10:00 CST Jul 12, 2022
    uint256 private _bookMintEndTime = 1665414000; // 10:00 CST Oct 10, 2022 

    // used for psuedo-Random mint mechanic
    uint256[_collectionSize] private _tokenIds;

    // track claims and used codes
    mapping(string => address) private _codesBurnt;
    mapping(address => bool) private _claims;
    mapping(address => bool) private _earns;

    // EIP2981 properties
    address royaltyAddr = 0xADdA604Da5Ad57cF8c9AB1bD41945A5DffBf8467;
    uint96 royaltyPercent = 750; // denominator is 10000, so this is 7.5%

    //events
    event MintPriceChanged(uint256 newMintPrice);
    event MintStartChanged(uint256 newMintStart);
    event MintEndChanged(uint256 newMintEnd);
    event ClaimRootChanged(bytes32 newMerkleRoot);
    event EarnRootChanged(bytes32 newMerkleRoot);
    event ContractURIChanged(string newContractURI);
    event BaseURIChanged(string newBaseURI);

    // reused strings
    string private constant BAD_PROOF = "Bad Proof";

    /**
     *  @notice Contructor for the NFT
     *  @param name The long name of the NFT collection
     *  @param symbol The short, all caps symbol for the collection
     *  @param merkleroot The merkle root for the allowed claimers
     *  @param earnedMerkle The merkle root for the earnable NFTs - from a code they'll receive
     */
    constructor(
        string memory name,
        string memory symbol,
        bytes32 merkleroot,
        bytes32 earnedMerkle
    ) ERC2981() ERC721(name, symbol) Ownable() {
        _setDefaultRoyalty(royaltyAddr, royaltyPercent);
        _merkleRoot = merkleroot;
        _earnedMerkle = earnedMerkle;
    }

    /**
     *  @notice Sets the ERC2981 default royalty info
     *  @param receiver The address to receive default royalty payouts
     *  @param feeNumerator The royalty fee in basis points, set over a denominator of 10000
     */
    function setDefaultRoyalty(address receiver, uint96 feeNumerator)
        external
        onlyOwner
    {
        super._setDefaultRoyalty(receiver, feeNumerator);
    }

    /**
     *  @notice Allows a gas only claim of one of the NFTs
     *  @param proof A merkle proof that confirms the sender's address is in list of eligible claimers
     */
    function claim(bytes32[] calldata proof) external {
        // only the address on the merkle tree can mint, no others - means tree can be public
        address account = _msgSender();
        require(_claims[account] == false, "Claimed Already");
        require(_verifyClaim(_leafAddress(account), proof), BAD_PROOF);
        _claims[account] = true;
        _mintOne(account);
    }

    /**
     *  @notice Allows a person with a code to "earn" a rare NFT
     *  @param proof A merkle proof that confirms code sent is in the earn list
     */
    function earn(string calldata code, bytes32[] calldata proof) external {
        address account = _msgSender();
        require(canEarn(account, code, proof), BAD_PROOF);
        _earns[account] = true;
        _codesBurnt[code] = account;
        _mintEarned(account);
    }

    /**
     *  @notice Allows anyone to mint an NFT for the Mint Price
     */
    function mint() external payable {
        address account = _msgSender();
        require(msg.value >= _mintPrice, "Must send Mint Price");
        require(_inMintTime(), "Mint not open");
        _mintOne(account);
    }

    /**
     *  @notice Owner only mint function to mint reserves or giveaways - call only after mint period is over
     *  @param account The address to receive all the minted NFTs
     */
    function ownerMintBlock(address account, uint256 count) external onlyOwner {
        for (uint256 i = 1; i < _tokenIds.length && i <= count; i++) {
            if (_nextMintedNFTId < _collectionSize) {
                _mintOne(account);
            }
        }
    }

    /**
     *  @notice Allows the owner or approved spender to destroy the book
     *  @param tokenId The token ID of the token to destroy
     */    
    function burn(uint256 tokenId)
        public
        virtual
    {
        require(_isApprovedOrOwner(msg.sender, tokenId), "Not Owner Or Approved");
        _burn(tokenId);
    }

    /**
     *  @notice Allows the owner to withdraw the Ether collected from minting
     */
    function withdrawEther() public onlyOwner {
        payable(_msgSender()).transfer(address(this).balance);
    }

    /**
     *   @notice Overrides EIP721 and EIP2981 supportsInterface function
     *   @param interfaceId Supplied by caller this function, as defined in ERC 165
     *   @return supports A boolean saying whether this contract supports the interface or not
     */
    function supportsInterface(bytes4 interfaceId)
        public
        view
        virtual
        override(ERC721, ERC2981)
        returns (bool)
    {
        return super.supportsInterface(interfaceId);
    }

    /**
     *   @notice Shows maximum supply
     *   @return uint256 Returns the maximum number of mintable NFTs
     */
    function maxSupply() public view returns (uint256) {
        return _tokenIds.length;
    }

    /**
     *   @notice Shows minted supply
     *   @return uint256 Returns total existing supply
     */
    function mintedSupply() public view returns (uint256) {
        // total supply is the total minted
        return _mintedSupply;
    }

    /**
     *   @notice Shows mintable supply
     *   @return uint256 Returns total mintable supply
     *   @dev This is collection size less the premium earnable NFTs
     */
    function mintableSupply() public view returns (uint256) {
        // total supply is the total minted
        return maxSupply() - _earnableNFTs;
    }

    /**
     *  @notice Provides the mint price needed to mint an NFT
     */
    function mintPrice() public view returns (uint256) {
        return _mintPrice;
    }

    /**
     *  @notice Allows the owner to set a new mint price
     *  @param newMintPrice The new mint price as a uint256
     *  @dev Don't forget the 18 zeros
     */
    function setMintPrice(uint256 newMintPrice) public onlyOwner {
        _mintPrice = newMintPrice;
        emit MintPriceChanged(newMintPrice);
    }

    /**
     *  @notice Provides the merkle root being used to allow gas only claims
     */
    function merkleRoot() public view returns (bytes32) {
        return _merkleRoot;
    }

    /**
     *  @notice Allows the owner to set a new merkle root for gas free claim
     *  @param newMerkleRoot A merkle root created from a list of approved claimers
     */
    function setMerkleRoot(bytes32 newMerkleRoot) public onlyOwner {
        _merkleRoot = newMerkleRoot;
        emit ClaimRootChanged(newMerkleRoot);
    }

    /**
     *  @notice Provides the merkle root being used to control the mint of earnable NFTs
     */
    function earnedMerkleRoot() public view returns (bytes32) {
        return _earnedMerkle;
    }

    /**
     *  @notice Allows the owner to set a new merkle root for the earnable NFTs
     *  @param newMerkleRoot A merkle root created from a list of codes people can earn
     */
    function setEarnedMerkleRoot(bytes32 newMerkleRoot) public onlyOwner {
        _earnedMerkle = newMerkleRoot;
        emit EarnRootChanged(newMerkleRoot);
    }

    /**
     *  @notice Retrieves the mint start time
     *  @return date The unix time stamp for when the mint starts
     */
    function getBookMintStartTime() public view returns (uint256) {
        return _bookMintStartTime;
    }

    /**
     *  @notice Set the timestamp after which mint opens
     *  @param newMintStart The unix time stamp mint will begin
     *  @dev First block after the mint time allows minting or claiming
     */
    function setBookMintStartTime(uint256 newMintStart) public onlyOwner {
        _bookMintStartTime = newMintStart;
        emit MintStartChanged(newMintStart);
    }

    /**
     *  @notice Retrieves the mint end time
     *  @return date The unix time stamp for when the mint ends
     */
    function getBookMintEndTime() public view returns (uint256) {
        return _bookMintEndTime;
    }

    /**
     *  @notice Set the timestamp after which mint stops
     *  @param newMintEnd The unix time stamp mint will ends
     *  @dev First block after the set time won't allow minting or claiming
     */
    function setBookMintEndTime(uint256 newMintEnd) public onlyOwner {
        _bookMintEndTime = newMintEnd;
        emit MintEndChanged(newMintEnd);
    }

    /**
     *   @notice Provides collection metadata URI
     *   @return string The contract metadata URI
     */
    function contractURI() public view returns (string memory) {
        return _contractUri;
    }

    /**
     *   @notice Sets the collection metadata URI
     *   @param newContractUri The URI set for the collection metadata
     */
    function setContractURI(string memory newContractUri) public onlyOwner {
        _contractUri = newContractUri;
        emit ContractURIChanged(newContractUri);
    }

    /**
     *   @notice Sets the token metadata base URI
     *   @param uri The baseURI for the token metadata
     *   @dev Make sure to include the trailing slash, as tokenURI adds only tokenID and ".json" to the end
     */
    function setBaseURI(string memory uri) public onlyOwner {
        _baseTokenURI = uri;
        emit BaseURIChanged(uri);
    }

    /**
     *  @notice Provides the URI for the specific token's metadata
     *  @param tokenId The token ID for which you want the metadata URL
     *  @dev This will only return for existing token IDs, and expects the file to end in .json
     */
    function tokenURI(uint256 tokenId)
        public
        view
        virtual
        override
        returns (string memory)
    {
        require(
            _exists(tokenId),
            "No such token"
        );

        string memory baseURI = _baseURI();
        return
            bytes(baseURI).length > 0
                ? string(
                    abi.encodePacked(
                        baseURI,
                        Strings.toString(tokenId),
                        ".json"
                    )
                )
                : "";
    }

    /**
     *  @notice Confirms an address and proof will allow minting
     *  @param account The address to use as the first part of a merkle leaf
     *  @param proof The merkle proof you want to check is valid
     *  @dev This needs the address proof, and time to be correct. Time check is in internal _verifyClaim function
     */
    function canClaim(address account, bytes32[] calldata proof)
        public
        view
        returns (bool)
    {
        return
            _claims[account] == true
                ? false
                : _verifyClaim(_leafAddress(account), proof);
    }

    /**
     *  @notice Confirms minting is open
     *  @dev Minting is only available between book mint start time and end time
     */
    function canMint() public view returns(bool)
    {
        return _inMintTime();
    }

    /**
     *  @notice Confirms code and proof work can earn an premium NFT
     */
    function canEarn(address account, string calldata code, bytes32[] calldata proof) public view returns(bool)
    {
        require(_earns[account] == false, "Address already earned");
        require(_codesBurnt[code] == address(0), "Code Already Used");
        require(super.balanceOf(account) > 0, "Must own NFT to earn");
        return _verifyEarn(_leafString(code), proof);
    }

    function _baseURI() internal view override returns (string memory) {
        return _baseTokenURI;
    }

    // mints a single earnable NFT
    function _mintEarned(address account) internal {
        // will only mint ids from 0 to one less than earnable NFTs
        require(_nextEarnedNFTId < _earnableNFTs, "No more earnable NFTs");
        uint256 nextToken = _nextEarnedNFTId;
        _safeMint(account, nextToken);
        _nextEarnedNFTId += 1;
        _mintedSupply += 1;
    }

    // mints a single NFT
    function _mintOne(address account) internal {
        require(_nextMintedNFTId < _collectionSize, "No more mintable NFTs");
        uint256 nextToken = _nextMintedNFTId;
        _safeMint(account, nextToken);
        _nextMintedNFTId += 1;
        _mintedSupply += 1;
    }

    // will hash an address for use in the Merkle tree verification
    function _leafAddress(address account) internal pure returns (bytes32) {
        return keccak256(abi.encodePacked(account));
    }

    // will hash a string for use in the Merkle tree verification
    function _leafString(string memory str) internal pure returns (bytes32) {
        return keccak256(abi.encodePacked(str));
    }

    // checks if the address and proof work for a gas free claim
    function _verifyClaim(bytes32 leaf, bytes32[] memory proof)
        internal
        view
        returns (bool)
    {
        // Claim is only available during the mint window
        return
            _inMintTime()
                ? MerkleProof.verify(proof, _merkleRoot, leaf)
                : false;
    }

    // checks the code and proof will work
    function _verifyEarn(bytes32 leaf, bytes32[] memory proof)
        internal
        view
        returns (bool)
    {
        // earn doesn't depend on time - can earn after mint ends
        return MerkleProof.verify(proof, _earnedMerkle, leaf);
    }

    // checks if the current block is within the mint window
    function _inMintTime() internal view returns (bool) {
        uint256 currentBlockTime = block.timestamp;
        // check mint has started
        if (currentBlockTime > _bookMintStartTime) {
            // check mint hasn't ended
            if (currentBlockTime < _bookMintEndTime) {
                // verify merkle root - only way result can be true
                return true;
            }
        }
        return false;
    }
}

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

pragma solidity ^0.8.0;

import "./IERC721.sol";
import "./IERC721Receiver.sol";
import "./extensions/IERC721Metadata.sol";
import "../../utils/Address.sol";
import "../../utils/Context.sol";
import "../../utils/Strings.sol";
import "../../utils/introspection/ERC165.sol";

/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
 * the Metadata extension, but not including the Enumerable extension, which is available separately as
 * {ERC721Enumerable}.
 */
contract ERC721 is Context, ERC165, IERC721, IERC721Metadata {
    using Address for address;
    using Strings for uint256;

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

    // Mapping from token ID to owner address
    mapping(uint256 => address) private _owners;

    // Mapping owner address to token count
    mapping(address => uint256) private _balances;

    // Mapping from token ID to approved address
    mapping(uint256 => address) private _tokenApprovals;

    // Mapping from owner to operator approvals
    mapping(address => mapping(address => bool)) private _operatorApprovals;

    /**
     * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection.
     */
    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) {
        return
            interfaceId == type(IERC721).interfaceId ||
            interfaceId == type(IERC721Metadata).interfaceId ||
            super.supportsInterface(interfaceId);
    }

    /**
     * @dev See {IERC721-balanceOf}.
     */
    function balanceOf(address owner) public view virtual override returns (uint256) {
        require(owner != address(0), "ERC721: balance query for the zero address");
        return _balances[owner];
    }

    /**
     * @dev See {IERC721-ownerOf}.
     */
    function ownerOf(uint256 tokenId) public view virtual override returns (address) {
        address owner = _owners[tokenId];
        require(owner != address(0), "ERC721: owner query for nonexistent token");
        return owner;
    }

    /**
     * @dev See {IERC721Metadata-name}.
     */
    function name() public view virtual override returns (string memory) {
        return _name;
    }

    /**
     * @dev See {IERC721Metadata-symbol}.
     */
    function symbol() public view virtual override returns (string memory) {
        return _symbol;
    }

    /**
     * @dev See {IERC721Metadata-tokenURI}.
     */
    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token");

        string memory baseURI = _baseURI();
        return bytes(baseURI).length > 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : "";
    }

    /**
     * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each
     * token will be the concatenation of the `baseURI` and the `tokenId`. Empty
     * by default, can be overridden in child contracts.
     */
    function _baseURI() internal view virtual returns (string memory) {
        return "";
    }

    /**
     * @dev See {IERC721-approve}.
     */
    function approve(address to, uint256 tokenId) public virtual override {
        address owner = ERC721.ownerOf(tokenId);
        require(to != owner, "ERC721: approval to current owner");

        require(
            _msgSender() == owner || isApprovedForAll(owner, _msgSender()),
            "ERC721: approve caller is not owner nor approved for all"
        );

        _approve(to, tokenId);
    }

    /**
     * @dev See {IERC721-getApproved}.
     */
    function getApproved(uint256 tokenId) public view virtual override returns (address) {
        require(_exists(tokenId), "ERC721: approved query for nonexistent token");

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public virtual override {
        _setApprovalForAll(_msgSender(), operator, approved);
    }

    /**
     * @dev See {IERC721-isApprovedForAll}.
     */
    function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) {
        return _operatorApprovals[owner][operator];
    }

    /**
     * @dev See {IERC721-transferFrom}.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        //solhint-disable-next-line max-line-length
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved");

        _transfer(from, to, tokenId);
    }

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        safeTransferFrom(from, to, tokenId, "");
    }

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) public virtual override {
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved");
        _safeTransfer(from, to, tokenId, _data);
    }

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients
     * are aware of the ERC721 protocol to prevent tokens from being forever locked.
     *
     * `_data` is additional data, it has no specified format and it is sent in call to `to`.
     *
     * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g.
     * implement alternative mechanisms to perform token transfer, such as signature-based.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function _safeTransfer(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) internal virtual {
        _transfer(from, to, tokenId);
        require(_checkOnERC721Received(from, to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer");
    }

    /**
     * @dev Returns whether `tokenId` exists.
     *
     * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}.
     *
     * Tokens start existing when they are minted (`_mint`),
     * and stop existing when they are burned (`_burn`).
     */
    function _exists(uint256 tokenId) internal view virtual returns (bool) {
        return _owners[tokenId] != address(0);
    }

    /**
     * @dev Returns whether `spender` is allowed to manage `tokenId`.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) {
        require(_exists(tokenId), "ERC721: operator query for nonexistent token");
        address owner = ERC721.ownerOf(tokenId);
        return (spender == owner || isApprovedForAll(owner, spender) || getApproved(tokenId) == spender);
    }

    /**
     * @dev Safely mints `tokenId` and transfers it to `to`.
     *
     * Requirements:
     *
     * - `tokenId` must not exist.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function _safeMint(address to, uint256 tokenId) internal virtual {
        _safeMint(to, tokenId, "");
    }

    /**
     * @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is
     * forwarded in {IERC721Receiver-onERC721Received} to contract recipients.
     */
    function _safeMint(
        address to,
        uint256 tokenId,
        bytes memory _data
    ) internal virtual {
        _mint(to, tokenId);
        require(
            _checkOnERC721Received(address(0), to, tokenId, _data),
            "ERC721: transfer to non ERC721Receiver implementer"
        );
    }

    /**
     * @dev Mints `tokenId` and transfers it to `to`.
     *
     * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible
     *
     * Requirements:
     *
     * - `tokenId` must not exist.
     * - `to` cannot be the zero address.
     *
     * Emits a {Transfer} event.
     */
    function _mint(address to, uint256 tokenId) internal virtual {
        require(to != address(0), "ERC721: mint to the zero address");
        require(!_exists(tokenId), "ERC721: token already minted");

        _beforeTokenTransfer(address(0), to, tokenId);

        _balances[to] += 1;
        _owners[tokenId] = to;

        emit Transfer(address(0), to, tokenId);

        _afterTokenTransfer(address(0), to, tokenId);
    }

    /**
     * @dev Destroys `tokenId`.
     * The approval is cleared when the token is burned.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     *
     * Emits a {Transfer} event.
     */
    function _burn(uint256 tokenId) internal virtual {
        address owner = ERC721.ownerOf(tokenId);

        _beforeTokenTransfer(owner, address(0), tokenId);

        // Clear approvals
        _approve(address(0), tokenId);

        _balances[owner] -= 1;
        delete _owners[tokenId];

        emit Transfer(owner, address(0), tokenId);

        _afterTokenTransfer(owner, address(0), tokenId);
    }

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *  As opposed to {transferFrom}, this imposes no restrictions on msg.sender.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     *
     * Emits a {Transfer} event.
     */
    function _transfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {
        require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer from incorrect owner");
        require(to != address(0), "ERC721: transfer to the zero address");

        _beforeTokenTransfer(from, to, tokenId);

        // Clear approvals from the previous owner
        _approve(address(0), tokenId);

        _balances[from] -= 1;
        _balances[to] += 1;
        _owners[tokenId] = to;

        emit Transfer(from, to, tokenId);

        _afterTokenTransfer(from, to, tokenId);
    }

    /**
     * @dev Approve `to` to operate on `tokenId`
     *
     * Emits a {Approval} event.
     */
    function _approve(address to, uint256 tokenId) internal virtual {
        _tokenApprovals[tokenId] = to;
        emit Approval(ERC721.ownerOf(tokenId), to, tokenId);
    }

    /**
     * @dev Approve `operator` to operate on all of `owner` tokens
     *
     * Emits a {ApprovalForAll} event.
     */
    function _setApprovalForAll(
        address owner,
        address operator,
        bool approved
    ) internal virtual {
        require(owner != operator, "ERC721: approve to caller");
        _operatorApprovals[owner][operator] = approved;
        emit ApprovalForAll(owner, operator, approved);
    }

    /**
     * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address.
     * The call is not executed if the target address is not a contract.
     *
     * @param from address representing the previous owner of the given token ID
     * @param to target address that will receive the tokens
     * @param tokenId uint256 ID of the token to be transferred
     * @param _data bytes optional data to send along with the call
     * @return bool whether the call correctly returned the expected magic value
     */
    function _checkOnERC721Received(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) private returns (bool) {
        if (to.isContract()) {
            try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) {
                return retval == IERC721Receiver.onERC721Received.selector;
            } catch (bytes memory reason) {
                if (reason.length == 0) {
                    revert("ERC721: transfer to non ERC721Receiver implementer");
                } else {
                    assembly {
                        revert(add(32, reason), mload(reason))
                    }
                }
            }
        } else {
            return true;
        }
    }

    /**
     * @dev Hook that is called before any token transfer. This includes minting
     * and burning.
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be
     * transferred to `to`.
     * - When `from` is zero, `tokenId` will be minted for `to`.
     * - When `to` is zero, ``from``'s `tokenId` will be burned.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {}

    /**
     * @dev Hook that is called after any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _afterTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {}
}

File 3 of 15 : ERC721Burnable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/ERC721Burnable.sol)

pragma solidity ^0.8.0;

import "../ERC721.sol";
import "../../../utils/Context.sol";

/**
 * @title ERC721 Burnable Token
 * @dev ERC721 Token that can be irreversibly burned (destroyed).
 */
abstract contract ERC721Burnable is Context, ERC721 {
    /**
     * @dev Burns `tokenId`. See {ERC721-_burn}.
     *
     * Requirements:
     *
     * - The caller must own `tokenId` or be an approved operator.
     */
    function burn(uint256 tokenId) public virtual {
        //solhint-disable-next-line max-line-length
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721Burnable: caller is not owner nor approved");
        _burn(tokenId);
    }
}

File 4 of 15 : MerkleProof.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.6.0) (utils/cryptography/MerkleProof.sol)

pragma solidity ^0.8.0;

/**
 * @dev These functions deal with verification of Merkle Trees proofs.
 *
 * The proofs can be generated using the JavaScript library
 * https://github.com/miguelmota/merkletreejs[merkletreejs].
 * Note: the hashing algorithm should be keccak256 and pair sorting should be enabled.
 *
 * See `test/utils/cryptography/MerkleProof.test.js` for some examples.
 *
 * WARNING: You should avoid using leaf values that are 64 bytes long prior to
 * hashing, or use a hash function other than keccak256 for hashing leaves.
 * This is because the concatenation of a sorted pair of internal nodes in
 * the merkle tree could be reinterpreted as a leaf value.
 */
library MerkleProof {
    /**
     * @dev Returns true if a `leaf` can be proved to be a part of a Merkle tree
     * defined by `root`. For this, a `proof` must be provided, containing
     * sibling hashes on the branch from the leaf to the root of the tree. Each
     * pair of leaves and each pair of pre-images are assumed to be sorted.
     */
    function verify(
        bytes32[] memory proof,
        bytes32 root,
        bytes32 leaf
    ) internal pure returns (bool) {
        return processProof(proof, leaf) == root;
    }

    /**
     * @dev Returns the rebuilt hash obtained by traversing a Merkle tree up
     * from `leaf` using `proof`. A `proof` is valid if and only if the rebuilt
     * hash matches the root of the tree. When processing the proof, the pairs
     * of leafs & pre-images are assumed to be sorted.
     *
     * _Available since v4.4._
     */
    function processProof(bytes32[] memory proof, bytes32 leaf) internal pure returns (bytes32) {
        bytes32 computedHash = leaf;
        for (uint256 i = 0; i < proof.length; i++) {
            bytes32 proofElement = proof[i];
            if (computedHash <= proofElement) {
                // Hash(current computed hash + current element of the proof)
                computedHash = _efficientHash(computedHash, proofElement);
            } else {
                // Hash(current element of the proof + current computed hash)
                computedHash = _efficientHash(proofElement, computedHash);
            }
        }
        return computedHash;
    }

    function _efficientHash(bytes32 a, bytes32 b) private pure returns (bytes32 value) {
        assembly {
            mstore(0x00, a)
            mstore(0x20, b)
            value := keccak256(0x00, 0x40)
        }
    }
}

File 5 of 15 : Ownable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (access/Ownable.sol)

pragma solidity ^0.8.0;

import "../utils/Context.sol";

/**
 * @dev Contract module which provides a basic access control mechanism, where
 * there is an account (an owner) that can be granted exclusive access to
 * specific functions.
 *
 * By default, the owner account will be the one that deploys the contract. This
 * can later be changed with {transferOwnership}.
 *
 * This module is used through inheritance. It will make available the modifier
 * `onlyOwner`, which can be applied to your functions to restrict their use to
 * the owner.
 */
abstract contract Ownable is Context {
    address private _owner;

    event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor() {
        _transferOwnership(_msgSender());
    }

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

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
        _;
    }

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

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

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

File 6 of 15 : ERC2981.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.6.0) (token/common/ERC2981.sol)

pragma solidity ^0.8.0;

import "../../interfaces/IERC2981.sol";
import "../../utils/introspection/ERC165.sol";

/**
 * @dev Implementation of the NFT Royalty Standard, a standardized way to retrieve royalty payment information.
 *
 * Royalty information can be specified globally for all token ids via {_setDefaultRoyalty}, and/or individually for
 * specific token ids via {_setTokenRoyalty}. The latter takes precedence over the first.
 *
 * Royalty is specified as a fraction of sale price. {_feeDenominator} is overridable but defaults to 10000, meaning the
 * fee is specified in basis points by default.
 *
 * IMPORTANT: ERC-2981 only specifies a way to signal royalty information and does not enforce its payment. See
 * https://eips.ethereum.org/EIPS/eip-2981#optional-royalty-payments[Rationale] in the EIP. Marketplaces are expected to
 * voluntarily pay royalties together with sales, but note that this standard is not yet widely supported.
 *
 * _Available since v4.5._
 */
abstract contract ERC2981 is IERC2981, ERC165 {
    struct RoyaltyInfo {
        address receiver;
        uint96 royaltyFraction;
    }

    RoyaltyInfo private _defaultRoyaltyInfo;
    mapping(uint256 => RoyaltyInfo) private _tokenRoyaltyInfo;

    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override(IERC165, ERC165) returns (bool) {
        return interfaceId == type(IERC2981).interfaceId || super.supportsInterface(interfaceId);
    }

    /**
     * @inheritdoc IERC2981
     */
    function royaltyInfo(uint256 _tokenId, uint256 _salePrice) public view virtual override returns (address, uint256) {
        RoyaltyInfo memory royalty = _tokenRoyaltyInfo[_tokenId];

        if (royalty.receiver == address(0)) {
            royalty = _defaultRoyaltyInfo;
        }

        uint256 royaltyAmount = (_salePrice * royalty.royaltyFraction) / _feeDenominator();

        return (royalty.receiver, royaltyAmount);
    }

    /**
     * @dev The denominator with which to interpret the fee set in {_setTokenRoyalty} and {_setDefaultRoyalty} as a
     * fraction of the sale price. Defaults to 10000 so fees are expressed in basis points, but may be customized by an
     * override.
     */
    function _feeDenominator() internal pure virtual returns (uint96) {
        return 10000;
    }

    /**
     * @dev Sets the royalty information that all ids in this contract will default to.
     *
     * Requirements:
     *
     * - `receiver` cannot be the zero address.
     * - `feeNumerator` cannot be greater than the fee denominator.
     */
    function _setDefaultRoyalty(address receiver, uint96 feeNumerator) internal virtual {
        require(feeNumerator <= _feeDenominator(), "ERC2981: royalty fee will exceed salePrice");
        require(receiver != address(0), "ERC2981: invalid receiver");

        _defaultRoyaltyInfo = RoyaltyInfo(receiver, feeNumerator);
    }

    /**
     * @dev Removes default royalty information.
     */
    function _deleteDefaultRoyalty() internal virtual {
        delete _defaultRoyaltyInfo;
    }

    /**
     * @dev Sets the royalty information for a specific token id, overriding the global default.
     *
     * Requirements:
     *
     * - `tokenId` must be already minted.
     * - `receiver` cannot be the zero address.
     * - `feeNumerator` cannot be greater than the fee denominator.
     */
    function _setTokenRoyalty(
        uint256 tokenId,
        address receiver,
        uint96 feeNumerator
    ) internal virtual {
        require(feeNumerator <= _feeDenominator(), "ERC2981: royalty fee will exceed salePrice");
        require(receiver != address(0), "ERC2981: Invalid parameters");

        _tokenRoyaltyInfo[tokenId] = RoyaltyInfo(receiver, feeNumerator);
    }

    /**
     * @dev Resets royalty information for the token id back to the global default.
     */
    function _resetTokenRoyalty(uint256 tokenId) internal virtual {
        delete _tokenRoyaltyInfo[tokenId];
    }
}

File 7 of 15 : IERC721.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC721/IERC721.sol)

pragma solidity ^0.8.0;

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

/**
 * @dev Required interface of an ERC721 compliant contract.
 */
interface IERC721 is IERC165 {
    /**
     * @dev Emitted when `tokenId` token is transferred from `from` to `to`.
     */
    event Transfer(address indexed from, address indexed to, uint256 indexed tokenId);

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

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

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

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

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`.
     *
     * 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);
}

File 8 of 15 : IERC721Receiver.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC721/IERC721Receiver.sol)

pragma solidity ^0.8.0;

/**
 * @title ERC721 token receiver interface
 * @dev Interface for any contract that wants to support safeTransfers
 * from ERC721 asset contracts.
 */
interface IERC721Receiver {
    /**
     * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom}
     * by `operator` from `from`, this function is called.
     *
     * It must return its Solidity selector to confirm the token transfer.
     * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted.
     *
     * The selector can be obtained in Solidity with `IERC721Receiver.onERC721Received.selector`.
     */
    function onERC721Received(
        address operator,
        address from,
        uint256 tokenId,
        bytes calldata data
    ) external returns (bytes4);
}

File 9 of 15 : IERC721Metadata.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol)

pragma solidity ^0.8.0;

import "../IERC721.sol";

/**
 * @title ERC-721 Non-Fungible Token Standard, optional metadata extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721Metadata is IERC721 {
    /**
     * @dev Returns the token collection name.
     */
    function name() external view returns (string memory);

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

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

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

pragma solidity ^0.8.1;

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

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

                assembly {
                    let returndata_size := mload(returndata)
                    revert(add(32, returndata), returndata_size)
                }
            } else {
                revert(errorMessage);
            }
        }
    }
}

File 11 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 12 of 15 : Strings.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Strings.sol)

pragma solidity ^0.8.0;

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

    /**
     * @dev Converts a `uint256` to its ASCII `string` decimal representation.
     */
    function toString(uint256 value) internal pure returns (string memory) {
        // Inspired by OraclizeAPI's implementation - MIT licence
        // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol

        if (value == 0) {
            return "0";
        }
        uint256 temp = value;
        uint256 digits;
        while (temp != 0) {
            digits++;
            temp /= 10;
        }
        bytes memory buffer = new bytes(digits);
        while (value != 0) {
            digits -= 1;
            buffer[digits] = bytes1(uint8(48 + uint256(value % 10)));
            value /= 10;
        }
        return string(buffer);
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation.
     */
    function toHexString(uint256 value) internal pure returns (string memory) {
        if (value == 0) {
            return "0x00";
        }
        uint256 temp = value;
        uint256 length = 0;
        while (temp != 0) {
            length++;
            temp >>= 8;
        }
        return toHexString(value, length);
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length.
     */
    function toHexString(uint256 value, uint256 length) internal pure returns (string memory) {
        bytes memory buffer = new bytes(2 * length + 2);
        buffer[0] = "0";
        buffer[1] = "x";
        for (uint256 i = 2 * length + 1; i > 1; --i) {
            buffer[i] = _HEX_SYMBOLS[value & 0xf];
            value >>= 4;
        }
        require(value == 0, "Strings: hex length insufficient");
        return string(buffer);
    }
}

File 13 of 15 : ERC165.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol)

pragma solidity ^0.8.0;

import "./IERC165.sol";

/**
 * @dev Implementation of the {IERC165} interface.
 *
 * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check
 * for the additional interface id that will be supported. For example:
 *
 * ```solidity
 * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
 *     return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId);
 * }
 * ```
 *
 * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation.
 */
abstract contract ERC165 is IERC165 {
    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
        return interfaceId == type(IERC165).interfaceId;
    }
}

File 14 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 15 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);
}

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

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"name","type":"string"},{"internalType":"string","name":"symbol","type":"string"},{"internalType":"bytes32","name":"merkleroot","type":"bytes32"},{"internalType":"bytes32","name":"earnedMerkle","type":"bytes32"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"string","name":"newBaseURI","type":"string"}],"name":"BaseURIChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"bytes32","name":"newMerkleRoot","type":"bytes32"}],"name":"ClaimRootChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"string","name":"newContractURI","type":"string"}],"name":"ContractURIChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"bytes32","name":"newMerkleRoot","type":"bytes32"}],"name":"EarnRootChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"newMintEnd","type":"uint256"}],"name":"MintEndChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"newMintPrice","type":"uint256"}],"name":"MintPriceChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"newMintStart","type":"uint256"}],"name":"MintStartChanged","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":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bytes32[]","name":"proof","type":"bytes32[]"}],"name":"canClaim","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"string","name":"code","type":"string"},{"internalType":"bytes32[]","name":"proof","type":"bytes32[]"}],"name":"canEarn","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"canMint","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32[]","name":"proof","type":"bytes32[]"}],"name":"claim","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"contractURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"string","name":"code","type":"string"},{"internalType":"bytes32[]","name":"proof","type":"bytes32[]"}],"name":"earn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"earnedMerkleRoot","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getBookMintEndTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getBookMintStartTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"merkleRoot","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"mintPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mintableSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mintedSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"count","type":"uint256"}],"name":"ownerMintBlock","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"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":"","type":"address"},{"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":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"uri","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newMintEnd","type":"uint256"}],"name":"setBookMintEndTime","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newMintStart","type":"uint256"}],"name":"setBookMintStartTime","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"newContractUri","type":"string"}],"name":"setContractURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"receiver","type":"address"},{"internalType":"uint96","name":"feeNumerator","type":"uint96"}],"name":"setDefaultRoyalty","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"newMerkleRoot","type":"bytes32"}],"name":"setEarnedMerkleRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"newMerkleRoot","type":"bytes32"}],"name":"setMerkleRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newMintPrice","type":"uint256"}],"name":"setMintPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"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":"withdrawEther","outputs":[],"stateMutability":"nonpayable","type":"function"}]

608060405262000013606461044c62000371565b6009556064600b55604051806080016040528060548152602001620030cf6054913980516200004b91600c91602090910190620002cb565b506040518060800160405280605381526020016200307c6053913980516200007c91600d91602090910190620002cb565b506000601055666a94d74f4300006011556362cd8c7060125563634433706013557502eeadda604da5ad57cf8c9ab1bd41945a5dffbf846761046355348015620000c557600080fd5b506040516200312338038062003123833981016040819052620000e89162000464565b83518490849062000101906002906020850190620002cb565b50805162000117906003906020840190620002cb565b505050620001346200012e6200017060201b60201c565b62000174565b610463546200015e906001600160a01b03811690600160a01b90046001600160601b0316620001c6565b600e91909155600f55506200051b9050565b3390565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6127106001600160601b03821611156200023a5760405162461bcd60e51b815260206004820152602a60248201527f455243323938313a20726f79616c7479206665652077696c6c206578636565646044820152692073616c65507269636560b01b60648201526084015b60405180910390fd5b6001600160a01b038216620002925760405162461bcd60e51b815260206004820152601960248201527f455243323938313a20696e76616c696420726563656976657200000000000000604482015260640162000231565b604080518082019091526001600160a01b039092168083526001600160601b039091166020909201829052600160a01b90910217600055565b828054620002d990620004de565b90600052602060002090601f016020900481019282620002fd576000855562000348565b82601f106200031857805160ff191683800117855562000348565b8280016001018555821562000348579182015b82811115620003485782518255916020019190600101906200032b565b50620003569291506200035a565b5090565b5b808211156200035657600081556001016200035b565b6000828210156200039257634e487b7160e01b600052601160045260246000fd5b500390565b634e487b7160e01b600052604160045260246000fd5b600082601f830112620003bf57600080fd5b81516001600160401b0380821115620003dc57620003dc62000397565b604051601f8301601f19908116603f0116810190828211818310171562000407576200040762000397565b816040528381526020925086838588010111156200042457600080fd5b600091505b8382101562000448578582018301518183018401529082019062000429565b838211156200045a5760008385830101525b9695505050505050565b600080600080608085870312156200047b57600080fd5b84516001600160401b03808211156200049357600080fd5b620004a188838901620003ad565b95506020870151915080821115620004b857600080fd5b50620004c787828801620003ad565b604087015160609097015195989097509350505050565b600181811c90821680620004f357607f821691505b602082108114156200051557634e487b7160e01b600052602260045260246000fd5b50919050565b612b51806200052b6000396000f3fe60806040526004361061025c5760003560e01c80638da5cb5b11610144578063cc5c095c116100b6578063e985e9c51161007a578063e985e9c5146106b4578063ee82a8d8146106d4578063f1b1fc80146106f4578063f2fde38b14610714578063f4a0a52814610734578063ffc2291b1461075457600080fd5b8063cc5c095c14610635578063cd334f371461064a578063d5abeb011461066a578063dabc66581461067f578063e8a3d4851461069f57600080fd5b8063b68b690411610108578063b68b690414610596578063b811e09f146105ab578063b88d4fde146105cb578063beb9716d146105eb578063c1bd8cf914610600578063c87b56dd1461061557600080fd5b80638da5cb5b1461050c578063938e3d7b1461052157806395d89b4114610541578063a22cb46514610556578063b391c5081461057657600080fd5b80632eb4a7ab116101dd5780636817c76c116101a15780636817c76c1461046d57806370a0823114610482578063715018a6146104a25780637362377b146104b75780637cb64759146104cc5780637cc1d047146104ec57600080fd5b80632eb4a7ab146103d857806342842e0e146103ed57806342966c681461040d57806355f804b31461042d5780636352211e1461044d57600080fd5b8063095ea7b311610224578063095ea7b3146103315780631249c58b1461035157806318894daf1461035957806323b872dd146103795780632a55205a1461039957600080fd5b806301ffc9a71461026157806304634d8d1461029657806306fdde03146102b857806307f7d7a3146102da578063081812fc146102f9575b600080fd5b34801561026d57600080fd5b5061028161027c366004612302565b610769565b60405190151581526020015b60405180910390f35b3480156102a257600080fd5b506102b66102b136600461233b565b61077a565b005b3480156102c457600080fd5b506102cd6107c0565b60405161028d91906123d6565b3480156102e657600080fd5b506013545b60405190815260200161028d565b34801561030557600080fd5b506103196103143660046123e9565b610852565b6040516001600160a01b03909116815260200161028d565b34801561033d57600080fd5b506102b661034c366004612402565b6108da565b6102b66109eb565b34801561036557600080fd5b50610281610374366004612470565b610a86565b34801561038557600080fd5b506102b66103943660046124c2565b610b01565b3480156103a557600080fd5b506103b96103b43660046124fe565b610b32565b604080516001600160a01b03909316835260208301919091520161028d565b3480156103e457600080fd5b50600e546102eb565b3480156103f957600080fd5b506102b66104083660046124c2565b610be0565b34801561041957600080fd5b506102b66104283660046123e9565b610bfb565b34801561043957600080fd5b506102b66104483660046125ab565b610c52565b34801561045957600080fd5b506103196104683660046123e9565b610ccf565b34801561047957600080fd5b506011546102eb565b34801561048e57600080fd5b506102eb61049d3660046125f3565b610d46565b3480156104ae57600080fd5b506102b6610dcd565b3480156104c357600080fd5b506102b6610e08565b3480156104d857600080fd5b506102b66104e73660046123e9565b610e63565b3480156104f857600080fd5b506102b6610507366004612402565b610ec7565b34801561051857600080fd5b50610319610f36565b34801561052d57600080fd5b506102b661053c3660046125ab565b610f45565b34801561054d57600080fd5b506102cd610fb7565b34801561056257600080fd5b506102b661057136600461260e565b610fc6565b34801561058257600080fd5b506102b661059136600461263f565b610fd1565b3480156105a257600080fd5b50600f546102eb565b3480156105b757600080fd5b506102b66105c63660046123e9565b61109e565b3480156105d757600080fd5b506102b66105e6366004612680565b611102565b3480156105f757600080fd5b5061028161113a565b34801561060c57600080fd5b506010546102eb565b34801561062157600080fd5b506102cd6106303660046123e9565b611149565b34801561064157600080fd5b506102eb6111ec565b34801561065657600080fd5b5061028161066536600461273c565b6111fb565b34801561067657600080fd5b5061044c6102eb565b34801561068b57600080fd5b506102b661069a3660046123e9565b6113aa565b3480156106ab57600080fd5b506102cd61140e565b3480156106c057600080fd5b506102816106cf3660046127bc565b61141d565b3480156106e057600080fd5b506102b66106ef3660046123e9565b61144b565b34801561070057600080fd5b506102b661070f3660046127ef565b6114af565b34801561072057600080fd5b506102b661072f3660046125f3565b611577565b34801561074057600080fd5b506102b661074f3660046123e9565b611614565b34801561076057600080fd5b506012546102eb565b600061077482611678565b92915050565b33610783610f36565b6001600160a01b0316146107b25760405162461bcd60e51b81526004016107a99061285a565b60405180910390fd5b6107bc82826116b8565b5050565b6060600280546107cf9061288f565b80601f01602080910402602001604051908101604052809291908181526020018280546107fb9061288f565b80156108485780601f1061081d57610100808354040283529160200191610848565b820191906000526020600020905b81548152906001019060200180831161082b57829003601f168201915b5050505050905090565b600061085d826117b1565b6108be5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016107a9565b506000908152600660205260409020546001600160a01b031690565b60006108e582610ccf565b9050806001600160a01b0316836001600160a01b031614156109535760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084016107a9565b336001600160a01b038216148061096f575061096f813361141d565b6109dc5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f776044820152771b995c881b9bdc88185c1c1c9bdd995908199bdc88185b1b60421b60648201526084016107a9565b6109e683836117ce565b505050565b6011543390341015610a365760405162461bcd60e51b81526020600482015260146024820152734d7573742073656e64204d696e7420507269636560601b60448201526064016107a9565b610a3e61183c565b610a7a5760405162461bcd60e51b815260206004820152600d60248201526c26b4b73a103737ba1037b832b760991b60448201526064016107a9565b610a8381611865565b50565b6001600160a01b0383166000908152610461602052604081205460ff161515600114610af657610af1610ab8856118f3565b84848080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525061193392505050565b610af9565b60005b949350505050565b610b0b3382611955565b610b275760405162461bcd60e51b81526004016107a9906128ca565b6109e6838383611a1e565b60008281526001602090815260408083208151808301909252546001600160a01b038116808352600160a01b9091046001600160601b0316928201929092528291610ba75750604080518082019091526000546001600160a01b0381168252600160a01b90046001600160601b031660208201525b602081015160009061271090610bc6906001600160601b031687612931565b610bd09190612966565b91519350909150505b9250929050565b6109e683838360405180602001604052806000815250611102565b610c053382611955565b610c495760405162461bcd60e51b8152602060048201526015602482015274139bdd0813dddb995c8813dc88105c1c1c9bdd9959605a1b60448201526064016107a9565b610a8381611ba8565b33610c5b610f36565b6001600160a01b031614610c815760405162461bcd60e51b81526004016107a99061285a565b8051610c9490600c906020840190612253565b507f5411e8ebf1636d9e83d5fc4900bf80cbac82e8790da2a4c94db4895e889eedf681604051610cc491906123d6565b60405180910390a150565b6000818152600460205260408120546001600160a01b0316806107745760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b60648201526084016107a9565b60006001600160a01b038216610db15760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b60648201526084016107a9565b506001600160a01b031660009081526005602052604090205490565b33610dd6610f36565b6001600160a01b031614610dfc5760405162461bcd60e51b81526004016107a99061285a565b610e066000611c31565b565b33610e11610f36565b6001600160a01b031614610e375760405162461bcd60e51b81526004016107a99061285a565b60405133904780156108fc02916000818181858888f19350505050158015610a83573d6000803e3d6000fd5b33610e6c610f36565b6001600160a01b031614610e925760405162461bcd60e51b81526004016107a99061285a565b600e8190556040518181527f41fee89bcbcf6a3446589137217cd09042a15212f37c751b357c630ce303cd5790602001610cc4565b33610ed0610f36565b6001600160a01b031614610ef65760405162461bcd60e51b81526004016107a99061285a565b60015b61044c81108015610f0a5750818111155b156109e65761044c600b541015610f2457610f2483611865565b80610f2e8161297a565b915050610ef9565b6008546001600160a01b031690565b33610f4e610f36565b6001600160a01b031614610f745760405162461bcd60e51b81526004016107a99061285a565b8051610f8790600d906020840190612253565b507fd5ee5eaf65263bab5d569890714d123ad48a9e54409d35e71d374f3dd300bba081604051610cc491906123d6565b6060600380546107cf9061288f565b6107bc338383611c83565b336000818152610461602052604090205460ff16156110245760405162461bcd60e51b815260206004820152600f60248201526e436c61696d656420416c726561647960881b60448201526064016107a9565b611030610ab8826118f3565b604051806040016040528060098152602001682130b210283937b7b360b91b815250906110705760405162461bcd60e51b81526004016107a991906123d6565b506001600160a01b038116600090815261046160205260409020805460ff191660011790556109e681611865565b336110a7610f36565b6001600160a01b0316146110cd5760405162461bcd60e51b81526004016107a99061285a565b60138190556040518181527f7404dcf4f68f1b012040d217fb25601faa317675c04c968b927ae5834dc9d3b990602001610cc4565b61110c3383611955565b6111285760405162461bcd60e51b81526004016107a9906128ca565b61113484848484611d4e565b50505050565b600061114461183c565b905090565b6060611154826117b1565b6111905760405162461bcd60e51b815260206004820152600d60248201526c27379039bab1b4103a37b5b2b760991b60448201526064016107a9565b600061119a611d81565b905060008151116111ba57604051806020016040528060008152506111e5565b806111c484611d90565b6040516020016111d5929190612995565b6040516020818303038152906040525b9392505050565b6000611144606461044c6129d4565b6001600160a01b0385166000908152610462602052604081205460ff161561125e5760405162461bcd60e51b81526020600482015260166024820152751059191c995cdcc8185b1c9958591e4819585c9b995960521b60448201526064016107a9565b60006001600160a01b0316610460868660405161127c9291906129eb565b908152604051908190036020019020546001600160a01b0316146112d65760405162461bcd60e51b815260206004820152601160248201527010dbd91948105b1c9958591e48155cd959607a1b60448201526064016107a9565b60006112e187610d46565b116113255760405162461bcd60e51b815260206004820152601460248201527326bab9ba1037bbb71027232a103a379032b0b93760611b60448201526064016107a9565b6113a061136786868080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250611e8d92505050565b848480806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250611ea092505050565b9695505050505050565b336113b3610f36565b6001600160a01b0316146113d95760405162461bcd60e51b81526004016107a99061285a565b600f8190556040518181527fbc8b0aa33c7bc079d0646133f7ca33ebe70df59fb55749a48958e50fbf80212f90602001610cc4565b6060600d80546107cf9061288f565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b33611454610f36565b6001600160a01b03161461147a5760405162461bcd60e51b81526004016107a99061285a565b60128190556040518181527f2c2d68a6799485412a030d05b88769424e7dcac8d35f96ffeb90f97cf1f78ade90602001610cc4565b336114bd81868686866111fb565b604051806040016040528060098152602001682130b210283937b7b360b91b815250906114fd5760405162461bcd60e51b81526004016107a991906123d6565b506001600160a01b0381166000908152610462602052604090819020805460ff191660011790555181906104609061153890889088906129eb565b90815260405190819003602001902080546001600160a01b03929092166001600160a01b031990921691909117905561157081611eaf565b5050505050565b33611580610f36565b6001600160a01b0316146115a65760405162461bcd60e51b81526004016107a99061285a565b6001600160a01b03811661160b5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016107a9565b610a8381611c31565b3361161d610f36565b6001600160a01b0316146116435760405162461bcd60e51b81526004016107a99061285a565b60118190556040518181527f25b1f9f6b6e61dfca5575239769e4450ed2e49176670837f5d1a82a9a2fc693f90602001610cc4565b60006001600160e01b031982166380ac58cd60e01b14806116a957506001600160e01b03198216635b5e139f60e01b145b80610774575061077482611f19565b6127106001600160601b03821611156117265760405162461bcd60e51b815260206004820152602a60248201527f455243323938313a20726f79616c7479206665652077696c6c206578636565646044820152692073616c65507269636560b01b60648201526084016107a9565b6001600160a01b0382166117785760405162461bcd60e51b815260206004820152601960248201527822a921991c9c189d1034b73b30b634b2103932b1b2b4bb32b960391b60448201526064016107a9565b604080518082019091526001600160a01b039092168083526001600160601b039091166020909201829052600160a01b90910217600055565b6000908152600460205260409020546001600160a01b0316151590565b600081815260066020526040902080546001600160a01b0319166001600160a01b038416908117909155819061180382610ccf565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b601254600090429081111561185d5760135481101561185d57600191505090565b600091505090565b61044c600b54106118b05760405162461bcd60e51b81526020600482015260156024820152744e6f206d6f7265206d696e7461626c65204e46547360581b60448201526064016107a9565b600b546118bd8282611f4e565b6001600b60008282546118d091906129fb565b925050819055506001601060008282546118ea91906129fb565b90915550505050565b6040516bffffffffffffffffffffffff19606083901b1660208201526000906034015b604051602081830303815290604052805190602001209050919050565b600061193d61183c565b6119485760006111e5565b6111e582600e5485611f68565b6000611960826117b1565b6119c15760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016107a9565b60006119cc83610ccf565b9050806001600160a01b0316846001600160a01b031614806119f357506119f3818561141d565b80610af95750836001600160a01b0316611a0c84610852565b6001600160a01b031614949350505050565b826001600160a01b0316611a3182610ccf565b6001600160a01b031614611a955760405162461bcd60e51b815260206004820152602560248201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060448201526437bbb732b960d91b60648201526084016107a9565b6001600160a01b038216611af75760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b60648201526084016107a9565b611b026000826117ce565b6001600160a01b0383166000908152600560205260408120805460019290611b2b9084906129d4565b90915550506001600160a01b0382166000908152600560205260408120805460019290611b599084906129fb565b909155505060008181526004602052604080822080546001600160a01b0319166001600160a01b038681169182179092559151849391871691600080516020612afc83398151915291a4505050565b6000611bb382610ccf565b9050611bc06000836117ce565b6001600160a01b0381166000908152600560205260408120805460019290611be99084906129d4565b909155505060008281526004602052604080822080546001600160a01b0319169055518391906001600160a01b03841690600080516020612afc833981519152908390a45050565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b816001600160a01b0316836001600160a01b03161415611ce15760405162461bcd60e51b815260206004820152601960248201527822a9219b99189d1030b8383937bb32903a379031b0b63632b960391b60448201526064016107a9565b6001600160a01b03838116600081815260076020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b611d59848484611a1e565b611d6584848484611f7e565b6111345760405162461bcd60e51b81526004016107a990612a13565b6060600c80546107cf9061288f565b606081611db45750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611dde5780611dc88161297a565b9150611dd79050600a83612966565b9150611db8565b6000816001600160401b03811115611df857611df8612520565b6040519080825280601f01601f191660200182016040528015611e22576020820181803683370190505b5090505b8415610af957611e376001836129d4565b9150611e44600a86612a65565b611e4f9060306129fb565b60f81b818381518110611e6457611e64612a79565b60200101906001600160f81b031916908160001a905350611e86600a86612966565b9450611e26565b6000816040516020016119169190612a8f565b60006111e582600f5485611f68565b6064600a5410611ef95760405162461bcd60e51b81526020600482015260156024820152744e6f206d6f7265206561726e61626c65204e46547360581b60448201526064016107a9565b600a54611f068282611f4e565b6001600a60008282546118d091906129fb565b60006001600160e01b0319821663152a902d60e11b148061077457506301ffc9a760e01b6001600160e01b0319831614610774565b6107bc82826040518060200160405280600081525061208b565b600082611f7585846120be565b14949350505050565b60006001600160a01b0384163b1561208057604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611fc2903390899088908890600401612aab565b602060405180830381600087803b158015611fdc57600080fd5b505af192505050801561200c575060408051601f3d908101601f1916820190925261200991810190612ade565b60015b612066573d80801561203a576040519150601f19603f3d011682016040523d82523d6000602084013e61203f565b606091505b50805161205e5760405162461bcd60e51b81526004016107a990612a13565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050610af9565b506001949350505050565b6120958383612132565b6120a26000848484611f7e565b6109e65760405162461bcd60e51b81526004016107a990612a13565b600081815b845181101561212a5760008582815181106120e0576120e0612a79565b602002602001015190508083116121065760008381526020829052604090209250612117565b600081815260208490526040902092505b50806121228161297a565b9150506120c3565b509392505050565b6001600160a01b0382166121885760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016107a9565b612191816117b1565b156121de5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016107a9565b6001600160a01b03821660009081526005602052604081208054600192906122079084906129fb565b909155505060008181526004602052604080822080546001600160a01b0319166001600160a01b0386169081179091559051839290600080516020612afc833981519152908290a45050565b82805461225f9061288f565b90600052602060002090601f01602090048101928261228157600085556122c7565b82601f1061229a57805160ff19168380011785556122c7565b828001600101855582156122c7579182015b828111156122c75782518255916020019190600101906122ac565b506122d39291506122d7565b5090565b5b808211156122d357600081556001016122d8565b6001600160e01b031981168114610a8357600080fd5b60006020828403121561231457600080fd5b81356111e5816122ec565b80356001600160a01b038116811461233657600080fd5b919050565b6000806040838503121561234e57600080fd5b6123578361231f565b915060208301356001600160601b038116811461237357600080fd5b809150509250929050565b60005b83811015612399578181015183820152602001612381565b838111156111345750506000910152565b600081518084526123c281602086016020860161237e565b601f01601f19169290920160200192915050565b6020815260006111e560208301846123aa565b6000602082840312156123fb57600080fd5b5035919050565b6000806040838503121561241557600080fd5b61241e8361231f565b946020939093013593505050565b60008083601f84011261243e57600080fd5b5081356001600160401b0381111561245557600080fd5b6020830191508360208260051b8501011115610bd957600080fd5b60008060006040848603121561248557600080fd5b61248e8461231f565b925060208401356001600160401b038111156124a957600080fd5b6124b58682870161242c565b9497909650939450505050565b6000806000606084860312156124d757600080fd5b6124e08461231f565b92506124ee6020850161231f565b9150604084013590509250925092565b6000806040838503121561251157600080fd5b50508035926020909101359150565b634e487b7160e01b600052604160045260246000fd5b60006001600160401b038084111561255057612550612520565b604051601f8501601f19908116603f0116810190828211818310171561257857612578612520565b8160405280935085815286868601111561259157600080fd5b858560208301376000602087830101525050509392505050565b6000602082840312156125bd57600080fd5b81356001600160401b038111156125d357600080fd5b8201601f810184136125e457600080fd5b610af984823560208401612536565b60006020828403121561260557600080fd5b6111e58261231f565b6000806040838503121561262157600080fd5b61262a8361231f565b91506020830135801515811461237357600080fd5b6000806020838503121561265257600080fd5b82356001600160401b0381111561266857600080fd5b6126748582860161242c565b90969095509350505050565b6000806000806080858703121561269657600080fd5b61269f8561231f565b93506126ad6020860161231f565b92506040850135915060608501356001600160401b038111156126cf57600080fd5b8501601f810187136126e057600080fd5b6126ef87823560208401612536565b91505092959194509250565b60008083601f84011261270d57600080fd5b5081356001600160401b0381111561272457600080fd5b602083019150836020828501011115610bd957600080fd5b60008060008060006060868803121561275457600080fd5b61275d8661231f565b945060208601356001600160401b038082111561277957600080fd5b61278589838a016126fb565b9096509450604088013591508082111561279e57600080fd5b506127ab8882890161242c565b969995985093965092949392505050565b600080604083850312156127cf57600080fd5b6127d88361231f565b91506127e66020840161231f565b90509250929050565b6000806000806040858703121561280557600080fd5b84356001600160401b038082111561281c57600080fd5b612828888389016126fb565b9096509450602087013591508082111561284157600080fd5b5061284e8782880161242c565b95989497509550505050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600181811c908216806128a357607f821691505b602082108114156128c457634e487b7160e01b600052602260045260246000fd5b50919050565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b634e487b7160e01b600052601160045260246000fd5b600081600019048311821515161561294b5761294b61291b565b500290565b634e487b7160e01b600052601260045260246000fd5b60008261297557612975612950565b500490565b600060001982141561298e5761298e61291b565b5060010190565b600083516129a781846020880161237e565b8351908301906129bb81836020880161237e565b64173539b7b760d91b9101908152600501949350505050565b6000828210156129e6576129e661291b565b500390565b8183823760009101908152919050565b60008219821115612a0e57612a0e61291b565b500190565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b600082612a7457612a74612950565b500690565b634e487b7160e01b600052603260045260246000fd5b60008251612aa181846020870161237e565b9190910192915050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906113a0908301846123aa565b600060208284031215612af057600080fd5b81516111e5816122ec56feddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3efa26469706673582212200a84d390404e643d1dc12380ff1941834972a437c8a77bcef3c7da2016cf3e0264736f6c6343000809003368747470733a2f2f626f6f6b636f696e2e6d7970696e6174612e636c6f75642f697066732f516d5770674d7369516e7038435566364c5358636d637937456f37376d7370567668716e633368786332394b4c7368747470733a2f2f626f6f6b636f696e2e6d7970696e6174612e636c6f75642f697066732f516d516f3147384479755a757974546e434b6b6d5839344c677954584d4a574c646b636447326f686d7a427a58722f000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c08d63742cb28afaf919b390053f1e7b7948f5a55062e9cce2206daa31ed1118eac5a22f3972af2c10eaf0b393af73495682a505692297f601caf2b6fac477b43800000000000000000000000000000000000000000000000000000000000000134a656b796c6c20616e642048796465204e46540000000000000000000000000000000000000000000000000000000000000000000000000000000000000000024a48000000000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x60806040526004361061025c5760003560e01c80638da5cb5b11610144578063cc5c095c116100b6578063e985e9c51161007a578063e985e9c5146106b4578063ee82a8d8146106d4578063f1b1fc80146106f4578063f2fde38b14610714578063f4a0a52814610734578063ffc2291b1461075457600080fd5b8063cc5c095c14610635578063cd334f371461064a578063d5abeb011461066a578063dabc66581461067f578063e8a3d4851461069f57600080fd5b8063b68b690411610108578063b68b690414610596578063b811e09f146105ab578063b88d4fde146105cb578063beb9716d146105eb578063c1bd8cf914610600578063c87b56dd1461061557600080fd5b80638da5cb5b1461050c578063938e3d7b1461052157806395d89b4114610541578063a22cb46514610556578063b391c5081461057657600080fd5b80632eb4a7ab116101dd5780636817c76c116101a15780636817c76c1461046d57806370a0823114610482578063715018a6146104a25780637362377b146104b75780637cb64759146104cc5780637cc1d047146104ec57600080fd5b80632eb4a7ab146103d857806342842e0e146103ed57806342966c681461040d57806355f804b31461042d5780636352211e1461044d57600080fd5b8063095ea7b311610224578063095ea7b3146103315780631249c58b1461035157806318894daf1461035957806323b872dd146103795780632a55205a1461039957600080fd5b806301ffc9a71461026157806304634d8d1461029657806306fdde03146102b857806307f7d7a3146102da578063081812fc146102f9575b600080fd5b34801561026d57600080fd5b5061028161027c366004612302565b610769565b60405190151581526020015b60405180910390f35b3480156102a257600080fd5b506102b66102b136600461233b565b61077a565b005b3480156102c457600080fd5b506102cd6107c0565b60405161028d91906123d6565b3480156102e657600080fd5b506013545b60405190815260200161028d565b34801561030557600080fd5b506103196103143660046123e9565b610852565b6040516001600160a01b03909116815260200161028d565b34801561033d57600080fd5b506102b661034c366004612402565b6108da565b6102b66109eb565b34801561036557600080fd5b50610281610374366004612470565b610a86565b34801561038557600080fd5b506102b66103943660046124c2565b610b01565b3480156103a557600080fd5b506103b96103b43660046124fe565b610b32565b604080516001600160a01b03909316835260208301919091520161028d565b3480156103e457600080fd5b50600e546102eb565b3480156103f957600080fd5b506102b66104083660046124c2565b610be0565b34801561041957600080fd5b506102b66104283660046123e9565b610bfb565b34801561043957600080fd5b506102b66104483660046125ab565b610c52565b34801561045957600080fd5b506103196104683660046123e9565b610ccf565b34801561047957600080fd5b506011546102eb565b34801561048e57600080fd5b506102eb61049d3660046125f3565b610d46565b3480156104ae57600080fd5b506102b6610dcd565b3480156104c357600080fd5b506102b6610e08565b3480156104d857600080fd5b506102b66104e73660046123e9565b610e63565b3480156104f857600080fd5b506102b6610507366004612402565b610ec7565b34801561051857600080fd5b50610319610f36565b34801561052d57600080fd5b506102b661053c3660046125ab565b610f45565b34801561054d57600080fd5b506102cd610fb7565b34801561056257600080fd5b506102b661057136600461260e565b610fc6565b34801561058257600080fd5b506102b661059136600461263f565b610fd1565b3480156105a257600080fd5b50600f546102eb565b3480156105b757600080fd5b506102b66105c63660046123e9565b61109e565b3480156105d757600080fd5b506102b66105e6366004612680565b611102565b3480156105f757600080fd5b5061028161113a565b34801561060c57600080fd5b506010546102eb565b34801561062157600080fd5b506102cd6106303660046123e9565b611149565b34801561064157600080fd5b506102eb6111ec565b34801561065657600080fd5b5061028161066536600461273c565b6111fb565b34801561067657600080fd5b5061044c6102eb565b34801561068b57600080fd5b506102b661069a3660046123e9565b6113aa565b3480156106ab57600080fd5b506102cd61140e565b3480156106c057600080fd5b506102816106cf3660046127bc565b61141d565b3480156106e057600080fd5b506102b66106ef3660046123e9565b61144b565b34801561070057600080fd5b506102b661070f3660046127ef565b6114af565b34801561072057600080fd5b506102b661072f3660046125f3565b611577565b34801561074057600080fd5b506102b661074f3660046123e9565b611614565b34801561076057600080fd5b506012546102eb565b600061077482611678565b92915050565b33610783610f36565b6001600160a01b0316146107b25760405162461bcd60e51b81526004016107a99061285a565b60405180910390fd5b6107bc82826116b8565b5050565b6060600280546107cf9061288f565b80601f01602080910402602001604051908101604052809291908181526020018280546107fb9061288f565b80156108485780601f1061081d57610100808354040283529160200191610848565b820191906000526020600020905b81548152906001019060200180831161082b57829003601f168201915b5050505050905090565b600061085d826117b1565b6108be5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016107a9565b506000908152600660205260409020546001600160a01b031690565b60006108e582610ccf565b9050806001600160a01b0316836001600160a01b031614156109535760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084016107a9565b336001600160a01b038216148061096f575061096f813361141d565b6109dc5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f776044820152771b995c881b9bdc88185c1c1c9bdd995908199bdc88185b1b60421b60648201526084016107a9565b6109e683836117ce565b505050565b6011543390341015610a365760405162461bcd60e51b81526020600482015260146024820152734d7573742073656e64204d696e7420507269636560601b60448201526064016107a9565b610a3e61183c565b610a7a5760405162461bcd60e51b815260206004820152600d60248201526c26b4b73a103737ba1037b832b760991b60448201526064016107a9565b610a8381611865565b50565b6001600160a01b0383166000908152610461602052604081205460ff161515600114610af657610af1610ab8856118f3565b84848080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525061193392505050565b610af9565b60005b949350505050565b610b0b3382611955565b610b275760405162461bcd60e51b81526004016107a9906128ca565b6109e6838383611a1e565b60008281526001602090815260408083208151808301909252546001600160a01b038116808352600160a01b9091046001600160601b0316928201929092528291610ba75750604080518082019091526000546001600160a01b0381168252600160a01b90046001600160601b031660208201525b602081015160009061271090610bc6906001600160601b031687612931565b610bd09190612966565b91519350909150505b9250929050565b6109e683838360405180602001604052806000815250611102565b610c053382611955565b610c495760405162461bcd60e51b8152602060048201526015602482015274139bdd0813dddb995c8813dc88105c1c1c9bdd9959605a1b60448201526064016107a9565b610a8381611ba8565b33610c5b610f36565b6001600160a01b031614610c815760405162461bcd60e51b81526004016107a99061285a565b8051610c9490600c906020840190612253565b507f5411e8ebf1636d9e83d5fc4900bf80cbac82e8790da2a4c94db4895e889eedf681604051610cc491906123d6565b60405180910390a150565b6000818152600460205260408120546001600160a01b0316806107745760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b60648201526084016107a9565b60006001600160a01b038216610db15760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b60648201526084016107a9565b506001600160a01b031660009081526005602052604090205490565b33610dd6610f36565b6001600160a01b031614610dfc5760405162461bcd60e51b81526004016107a99061285a565b610e066000611c31565b565b33610e11610f36565b6001600160a01b031614610e375760405162461bcd60e51b81526004016107a99061285a565b60405133904780156108fc02916000818181858888f19350505050158015610a83573d6000803e3d6000fd5b33610e6c610f36565b6001600160a01b031614610e925760405162461bcd60e51b81526004016107a99061285a565b600e8190556040518181527f41fee89bcbcf6a3446589137217cd09042a15212f37c751b357c630ce303cd5790602001610cc4565b33610ed0610f36565b6001600160a01b031614610ef65760405162461bcd60e51b81526004016107a99061285a565b60015b61044c81108015610f0a5750818111155b156109e65761044c600b541015610f2457610f2483611865565b80610f2e8161297a565b915050610ef9565b6008546001600160a01b031690565b33610f4e610f36565b6001600160a01b031614610f745760405162461bcd60e51b81526004016107a99061285a565b8051610f8790600d906020840190612253565b507fd5ee5eaf65263bab5d569890714d123ad48a9e54409d35e71d374f3dd300bba081604051610cc491906123d6565b6060600380546107cf9061288f565b6107bc338383611c83565b336000818152610461602052604090205460ff16156110245760405162461bcd60e51b815260206004820152600f60248201526e436c61696d656420416c726561647960881b60448201526064016107a9565b611030610ab8826118f3565b604051806040016040528060098152602001682130b210283937b7b360b91b815250906110705760405162461bcd60e51b81526004016107a991906123d6565b506001600160a01b038116600090815261046160205260409020805460ff191660011790556109e681611865565b336110a7610f36565b6001600160a01b0316146110cd5760405162461bcd60e51b81526004016107a99061285a565b60138190556040518181527f7404dcf4f68f1b012040d217fb25601faa317675c04c968b927ae5834dc9d3b990602001610cc4565b61110c3383611955565b6111285760405162461bcd60e51b81526004016107a9906128ca565b61113484848484611d4e565b50505050565b600061114461183c565b905090565b6060611154826117b1565b6111905760405162461bcd60e51b815260206004820152600d60248201526c27379039bab1b4103a37b5b2b760991b60448201526064016107a9565b600061119a611d81565b905060008151116111ba57604051806020016040528060008152506111e5565b806111c484611d90565b6040516020016111d5929190612995565b6040516020818303038152906040525b9392505050565b6000611144606461044c6129d4565b6001600160a01b0385166000908152610462602052604081205460ff161561125e5760405162461bcd60e51b81526020600482015260166024820152751059191c995cdcc8185b1c9958591e4819585c9b995960521b60448201526064016107a9565b60006001600160a01b0316610460868660405161127c9291906129eb565b908152604051908190036020019020546001600160a01b0316146112d65760405162461bcd60e51b815260206004820152601160248201527010dbd91948105b1c9958591e48155cd959607a1b60448201526064016107a9565b60006112e187610d46565b116113255760405162461bcd60e51b815260206004820152601460248201527326bab9ba1037bbb71027232a103a379032b0b93760611b60448201526064016107a9565b6113a061136786868080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250611e8d92505050565b848480806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250611ea092505050565b9695505050505050565b336113b3610f36565b6001600160a01b0316146113d95760405162461bcd60e51b81526004016107a99061285a565b600f8190556040518181527fbc8b0aa33c7bc079d0646133f7ca33ebe70df59fb55749a48958e50fbf80212f90602001610cc4565b6060600d80546107cf9061288f565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b33611454610f36565b6001600160a01b03161461147a5760405162461bcd60e51b81526004016107a99061285a565b60128190556040518181527f2c2d68a6799485412a030d05b88769424e7dcac8d35f96ffeb90f97cf1f78ade90602001610cc4565b336114bd81868686866111fb565b604051806040016040528060098152602001682130b210283937b7b360b91b815250906114fd5760405162461bcd60e51b81526004016107a991906123d6565b506001600160a01b0381166000908152610462602052604090819020805460ff191660011790555181906104609061153890889088906129eb565b90815260405190819003602001902080546001600160a01b03929092166001600160a01b031990921691909117905561157081611eaf565b5050505050565b33611580610f36565b6001600160a01b0316146115a65760405162461bcd60e51b81526004016107a99061285a565b6001600160a01b03811661160b5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016107a9565b610a8381611c31565b3361161d610f36565b6001600160a01b0316146116435760405162461bcd60e51b81526004016107a99061285a565b60118190556040518181527f25b1f9f6b6e61dfca5575239769e4450ed2e49176670837f5d1a82a9a2fc693f90602001610cc4565b60006001600160e01b031982166380ac58cd60e01b14806116a957506001600160e01b03198216635b5e139f60e01b145b80610774575061077482611f19565b6127106001600160601b03821611156117265760405162461bcd60e51b815260206004820152602a60248201527f455243323938313a20726f79616c7479206665652077696c6c206578636565646044820152692073616c65507269636560b01b60648201526084016107a9565b6001600160a01b0382166117785760405162461bcd60e51b815260206004820152601960248201527822a921991c9c189d1034b73b30b634b2103932b1b2b4bb32b960391b60448201526064016107a9565b604080518082019091526001600160a01b039092168083526001600160601b039091166020909201829052600160a01b90910217600055565b6000908152600460205260409020546001600160a01b0316151590565b600081815260066020526040902080546001600160a01b0319166001600160a01b038416908117909155819061180382610ccf565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b601254600090429081111561185d5760135481101561185d57600191505090565b600091505090565b61044c600b54106118b05760405162461bcd60e51b81526020600482015260156024820152744e6f206d6f7265206d696e7461626c65204e46547360581b60448201526064016107a9565b600b546118bd8282611f4e565b6001600b60008282546118d091906129fb565b925050819055506001601060008282546118ea91906129fb565b90915550505050565b6040516bffffffffffffffffffffffff19606083901b1660208201526000906034015b604051602081830303815290604052805190602001209050919050565b600061193d61183c565b6119485760006111e5565b6111e582600e5485611f68565b6000611960826117b1565b6119c15760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016107a9565b60006119cc83610ccf565b9050806001600160a01b0316846001600160a01b031614806119f357506119f3818561141d565b80610af95750836001600160a01b0316611a0c84610852565b6001600160a01b031614949350505050565b826001600160a01b0316611a3182610ccf565b6001600160a01b031614611a955760405162461bcd60e51b815260206004820152602560248201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060448201526437bbb732b960d91b60648201526084016107a9565b6001600160a01b038216611af75760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b60648201526084016107a9565b611b026000826117ce565b6001600160a01b0383166000908152600560205260408120805460019290611b2b9084906129d4565b90915550506001600160a01b0382166000908152600560205260408120805460019290611b599084906129fb565b909155505060008181526004602052604080822080546001600160a01b0319166001600160a01b038681169182179092559151849391871691600080516020612afc83398151915291a4505050565b6000611bb382610ccf565b9050611bc06000836117ce565b6001600160a01b0381166000908152600560205260408120805460019290611be99084906129d4565b909155505060008281526004602052604080822080546001600160a01b0319169055518391906001600160a01b03841690600080516020612afc833981519152908390a45050565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b816001600160a01b0316836001600160a01b03161415611ce15760405162461bcd60e51b815260206004820152601960248201527822a9219b99189d1030b8383937bb32903a379031b0b63632b960391b60448201526064016107a9565b6001600160a01b03838116600081815260076020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b611d59848484611a1e565b611d6584848484611f7e565b6111345760405162461bcd60e51b81526004016107a990612a13565b6060600c80546107cf9061288f565b606081611db45750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611dde5780611dc88161297a565b9150611dd79050600a83612966565b9150611db8565b6000816001600160401b03811115611df857611df8612520565b6040519080825280601f01601f191660200182016040528015611e22576020820181803683370190505b5090505b8415610af957611e376001836129d4565b9150611e44600a86612a65565b611e4f9060306129fb565b60f81b818381518110611e6457611e64612a79565b60200101906001600160f81b031916908160001a905350611e86600a86612966565b9450611e26565b6000816040516020016119169190612a8f565b60006111e582600f5485611f68565b6064600a5410611ef95760405162461bcd60e51b81526020600482015260156024820152744e6f206d6f7265206561726e61626c65204e46547360581b60448201526064016107a9565b600a54611f068282611f4e565b6001600a60008282546118d091906129fb565b60006001600160e01b0319821663152a902d60e11b148061077457506301ffc9a760e01b6001600160e01b0319831614610774565b6107bc82826040518060200160405280600081525061208b565b600082611f7585846120be565b14949350505050565b60006001600160a01b0384163b1561208057604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611fc2903390899088908890600401612aab565b602060405180830381600087803b158015611fdc57600080fd5b505af192505050801561200c575060408051601f3d908101601f1916820190925261200991810190612ade565b60015b612066573d80801561203a576040519150601f19603f3d011682016040523d82523d6000602084013e61203f565b606091505b50805161205e5760405162461bcd60e51b81526004016107a990612a13565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050610af9565b506001949350505050565b6120958383612132565b6120a26000848484611f7e565b6109e65760405162461bcd60e51b81526004016107a990612a13565b600081815b845181101561212a5760008582815181106120e0576120e0612a79565b602002602001015190508083116121065760008381526020829052604090209250612117565b600081815260208490526040902092505b50806121228161297a565b9150506120c3565b509392505050565b6001600160a01b0382166121885760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016107a9565b612191816117b1565b156121de5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016107a9565b6001600160a01b03821660009081526005602052604081208054600192906122079084906129fb565b909155505060008181526004602052604080822080546001600160a01b0319166001600160a01b0386169081179091559051839290600080516020612afc833981519152908290a45050565b82805461225f9061288f565b90600052602060002090601f01602090048101928261228157600085556122c7565b82601f1061229a57805160ff19168380011785556122c7565b828001600101855582156122c7579182015b828111156122c75782518255916020019190600101906122ac565b506122d39291506122d7565b5090565b5b808211156122d357600081556001016122d8565b6001600160e01b031981168114610a8357600080fd5b60006020828403121561231457600080fd5b81356111e5816122ec565b80356001600160a01b038116811461233657600080fd5b919050565b6000806040838503121561234e57600080fd5b6123578361231f565b915060208301356001600160601b038116811461237357600080fd5b809150509250929050565b60005b83811015612399578181015183820152602001612381565b838111156111345750506000910152565b600081518084526123c281602086016020860161237e565b601f01601f19169290920160200192915050565b6020815260006111e560208301846123aa565b6000602082840312156123fb57600080fd5b5035919050565b6000806040838503121561241557600080fd5b61241e8361231f565b946020939093013593505050565b60008083601f84011261243e57600080fd5b5081356001600160401b0381111561245557600080fd5b6020830191508360208260051b8501011115610bd957600080fd5b60008060006040848603121561248557600080fd5b61248e8461231f565b925060208401356001600160401b038111156124a957600080fd5b6124b58682870161242c565b9497909650939450505050565b6000806000606084860312156124d757600080fd5b6124e08461231f565b92506124ee6020850161231f565b9150604084013590509250925092565b6000806040838503121561251157600080fd5b50508035926020909101359150565b634e487b7160e01b600052604160045260246000fd5b60006001600160401b038084111561255057612550612520565b604051601f8501601f19908116603f0116810190828211818310171561257857612578612520565b8160405280935085815286868601111561259157600080fd5b858560208301376000602087830101525050509392505050565b6000602082840312156125bd57600080fd5b81356001600160401b038111156125d357600080fd5b8201601f810184136125e457600080fd5b610af984823560208401612536565b60006020828403121561260557600080fd5b6111e58261231f565b6000806040838503121561262157600080fd5b61262a8361231f565b91506020830135801515811461237357600080fd5b6000806020838503121561265257600080fd5b82356001600160401b0381111561266857600080fd5b6126748582860161242c565b90969095509350505050565b6000806000806080858703121561269657600080fd5b61269f8561231f565b93506126ad6020860161231f565b92506040850135915060608501356001600160401b038111156126cf57600080fd5b8501601f810187136126e057600080fd5b6126ef87823560208401612536565b91505092959194509250565b60008083601f84011261270d57600080fd5b5081356001600160401b0381111561272457600080fd5b602083019150836020828501011115610bd957600080fd5b60008060008060006060868803121561275457600080fd5b61275d8661231f565b945060208601356001600160401b038082111561277957600080fd5b61278589838a016126fb565b9096509450604088013591508082111561279e57600080fd5b506127ab8882890161242c565b969995985093965092949392505050565b600080604083850312156127cf57600080fd5b6127d88361231f565b91506127e66020840161231f565b90509250929050565b6000806000806040858703121561280557600080fd5b84356001600160401b038082111561281c57600080fd5b612828888389016126fb565b9096509450602087013591508082111561284157600080fd5b5061284e8782880161242c565b95989497509550505050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600181811c908216806128a357607f821691505b602082108114156128c457634e487b7160e01b600052602260045260246000fd5b50919050565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b634e487b7160e01b600052601160045260246000fd5b600081600019048311821515161561294b5761294b61291b565b500290565b634e487b7160e01b600052601260045260246000fd5b60008261297557612975612950565b500490565b600060001982141561298e5761298e61291b565b5060010190565b600083516129a781846020880161237e565b8351908301906129bb81836020880161237e565b64173539b7b760d91b9101908152600501949350505050565b6000828210156129e6576129e661291b565b500390565b8183823760009101908152919050565b60008219821115612a0e57612a0e61291b565b500190565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b600082612a7457612a74612950565b500690565b634e487b7160e01b600052603260045260246000fd5b60008251612aa181846020870161237e565b9190910192915050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906113a0908301846123aa565b600060208284031215612af057600080fd5b81516111e5816122ec56feddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3efa26469706673582212200a84d390404e643d1dc12380ff1941834972a437c8a77bcef3c7da2016cf3e0264736f6c63430008090033

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

000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c08d63742cb28afaf919b390053f1e7b7948f5a55062e9cce2206daa31ed1118eac5a22f3972af2c10eaf0b393af73495682a505692297f601caf2b6fac477b43800000000000000000000000000000000000000000000000000000000000000134a656b796c6c20616e642048796465204e46540000000000000000000000000000000000000000000000000000000000000000000000000000000000000000024a48000000000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : name (string): Jekyll and Hyde NFT
Arg [1] : symbol (string): JH
Arg [2] : merkleroot (bytes32): 0x8d63742cb28afaf919b390053f1e7b7948f5a55062e9cce2206daa31ed1118ea
Arg [3] : earnedMerkle (bytes32): 0xc5a22f3972af2c10eaf0b393af73495682a505692297f601caf2b6fac477b438

-----Encoded View---------------
8 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000c0
Arg [2] : 8d63742cb28afaf919b390053f1e7b7948f5a55062e9cce2206daa31ed1118ea
Arg [3] : c5a22f3972af2c10eaf0b393af73495682a505692297f601caf2b6fac477b438
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000013
Arg [5] : 4a656b796c6c20616e642048796465204e465400000000000000000000000000
Arg [6] : 0000000000000000000000000000000000000000000000000000000000000002
Arg [7] : 4a48000000000000000000000000000000000000000000000000000000000000


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.