ETH Price: $3,421.10 (-1.81%)
Gas: 5 Gwei

Token

Beatsu (BEAT)
 

Overview

Max Total Supply

688 BEAT

Holders

165

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
Optimism: L1 NFT Bridge
Balance
1 BEAT
0x5a7749f83b81B301cAb5f48EB8516B986DAef23D
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:
Beatsu

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion
File 1 of 18 : Beatsu.sol
//SPDX-License-Identifier: UNLICENSED
pragma solidity 0.8.7;

import "@openzeppelin/contracts/access/Ownable.sol";
import "erc721a/contracts/ERC721A.sol";
import "./abstract/Withdrawable.sol";
import "@openzeppelin/contracts/utils/Strings.sol";
import "@openzeppelin/contracts/utils/cryptography/MerkleProof.sol";
import "@chainlink/contracts/src/v0.8/interfaces/LinkTokenInterface.sol";
import "@chainlink/contracts/src/v0.8/interfaces/VRFCoordinatorV2Interface.sol";
import "@chainlink/contracts/src/v0.8/VRFConsumerBaseV2.sol";

contract Beatsu is ERC721A, VRFConsumerBaseV2, Ownable, Withdrawable {
    VRFCoordinatorV2Interface COORDINATOR;
    LinkTokenInterface LINKTOKEN;
    address vrfCoordinator = 0x6168499c0cFfCaCD319c818142124B7A15E857ab; //(RINKEBY)
    address link = 0x01BE23585060835E02B77ef475b0Cc51aA1e0709; //(RINKEBY)
    bytes32 internal keyHash = 0xd89b2bf150e3b9e13446986e571fb9cab24b13cea0a43ea20a6049a85cc807cc; //(RINKEBY)
    uint32 callbackGasLimit = 50000;
    // The default is 3, but you can set this higher.
    uint16 requestConfirmations = 3;
    // Get a subscription ID from https://vrf.chain.link/ to use in the constructor during deployment
    uint64 s_subscriptionId;

    enum SaleState {
        Disabled,
        PreSale,
        WhitelistSale,
        PublicSale
    }
    SaleState public saleState = SaleState.Disabled;

    bool public revealEnabled;
    bool public transfersEnabled;
    bool public revealAll;

    uint256[5] public whitelistPrices;

    uint256 public preSalePrice;
    uint256 public preSaleAmount;
    uint256 public preSaleSupplyLeft;
    uint256 public publicPrice;
    uint256 public totalSupplyLeft;
    uint256 public maximumPresaleMintPerWallet;
    uint256 public maximumWhitelistMintPerWallet;
    uint256 public random;

    // Merkle root
    bytes32 public root;

    // The unRevealedUri that new mints use when all are not revealed
    string public unRevealUri;
    // The reveal uri used once a token is revealed or all are revealed
    string public revealUri;

    // Tracks how many tokens a wallet has minted
    mapping(address => uint256) public walletPresaleMintedCount;
    mapping(address => uint256) public walletWhitelistMintedCount;

    // Tracks which tokens have been revealed
    mapping(uint256 => bool) public revealedTokens;

    // Revealed event is triggered whenever a user reveals a token, address is indexed to make it filterable
    event Revealed(address indexed user, uint256 tokenId, uint256 timestamp);
    event SaleStateChanged(uint256 previousState, uint256 nextState, uint256 timestamp);

    constructor(uint64 subscriptionId) ERC721A("Beatsu", "BEAT") VRFConsumerBaseV2(vrfCoordinator) {
        //Chainlink
        COORDINATOR = VRFCoordinatorV2Interface(vrfCoordinator);
        LINKTOKEN = LinkTokenInterface(link);
        s_subscriptionId = subscriptionId;
        
        //Defaults
        totalSupplyLeft = 9001; //the initial supply
        revealEnabled = false;
        transfersEnabled = false;
        revealAll = false;

        whitelistPrices = [80000000000000000, 75000000000000000, 70000000000000000, 65000000000000000, 60000000000000000];
        preSalePrice = 50000000000000000;
        publicPrice = 80000000000000000;
        preSaleSupplyLeft = 1000;
        maximumPresaleMintPerWallet = 5;
        maximumWhitelistMintPerWallet = 5;
        preSaleAmount = 5;   
    }

    modifier whenSaleIsActive() {
        require(saleState != SaleState.Disabled, "Sale is not active");
        _;
    }
    modifier whenRevealIsEnabled() {
        require(revealEnabled, "Reveal is not yet enabled");
        _;
    }
    // Check if the whitelist is enabled and the address is part of the whitelist
    modifier isWhitelisted(
        address _address,
        uint256 amount,
        bytes32[] calldata proof
    ) {
        require(
            saleState == SaleState.PublicSale || _verify(_leaf(_address), proof),
            "This address is not whitelisted or has reached maximum mints"
        );
        _;
    }

    //++++++++
    // Public functions
    //++++++++

    // Payable mint function for unrevealed NFTs
    function mint(uint256 amount, bytes32[] calldata proof) external payable whenSaleIsActive isWhitelisted(msg.sender, amount, proof) {
        require(amount <= totalSupplyLeft, "Minting would exceed cap");
        //presale
        if (saleState == SaleState.PreSale) {
            require(amount == preSaleAmount, "Presale must mint a specific amount");
            require(preSalePrice * amount <= msg.value, "Value sent is not correct");
            require(amount <= preSaleSupplyLeft, "There are not enough left for presale");
            require(walletPresaleMintedCount[msg.sender] + amount <= maximumPresaleMintPerWallet, "This wallet has reached the maximum presale mints.");
            preSaleSupplyLeft -= amount;
            walletPresaleMintedCount[msg.sender] += amount;
        }
        //whitelist
        else if (saleState == SaleState.WhitelistSale) {
            require(whitelistPrices[amount - 1] * amount <= msg.value, "Value sent is not correct");
            require(walletWhitelistMintedCount[msg.sender] + amount <= maximumWhitelistMintPerWallet, "This wallet has reached the maximum whitelist mints.");
            walletWhitelistMintedCount[msg.sender] += amount;
        }
        //public
        else if (saleState == SaleState.PublicSale) {
            require(publicPrice * amount <= msg.value, "Value sent is not correct");
        }
        totalSupplyLeft -= amount;
        _safeMint(msg.sender, amount);
    }

    // Reveal the NFT by token owner
    function reveal(uint256 itemId) public whenRevealIsEnabled {
        require(revealAll == false, "All NFTs have already been revealed");
        require(_exists(itemId), "Cannot reveal an NFT that doesn't exist");
        require(ownerOf(itemId) == msg.sender, "Cannot reveal an NFT that you don't own");
        require(revealedTokens[itemId] == false, "Cannot reveal an NFT that has already been revealed");
        revealedTokens[itemId] = true;
        // Reveal event
        emit Revealed(msg.sender, itemId, block.timestamp);
    }

    //++++++++
    // Owner functions
    //++++++++
    function setRoot(bytes32 _root) external onlyOwner {
        root = _root;
    }

    // Sale functions
    function setSaleState(uint256 _state) external onlyOwner {
        uint256 prevState = uint256(saleState);
        saleState = SaleState(_state);
        emit SaleStateChanged(prevState, _state, block.timestamp);
    }

    function setPresaleAmount(uint256 _amount) external onlyOwner {
        preSaleAmount = _amount;
    }

    function setPreSaleMintPrice(uint256 _mintPrice) external onlyOwner {
        preSalePrice = _mintPrice;
    }

    function setWhitelistMintPrices(uint256[5] memory _mintPrices) external onlyOwner {
        whitelistPrices = _mintPrices;
    }

    function setPublicMintPrice(uint256 _mintPrice) external onlyOwner {
        publicPrice = _mintPrice;
    }

    // Reveal functions
    function toggleRevealState() external onlyOwner {
        revealEnabled = !revealEnabled;
    }

    // Get random for revealed NFTs
    function GetRandom() external onlyOwner {
        require(random == 0, "Random has already been set");
        COORDINATOR.requestRandomWords(keyHash, s_subscriptionId, requestConfirmations, callbackGasLimit, 1);
    }

    // Change the reveal URI set for new mints, this should be a path to all jsons
    function setRevealUri(string calldata uri) external onlyOwner {
        revealUri = uri;
    }

    // Change the unreveled URI set for new mints, this should be a uri pointing to the unrevealed metadata json
    function setUnRevealUri(string calldata uri) external onlyOwner {
        unRevealUri = uri;
    }

    // Change the maximum mint that a single wallet can do for pre-sale
    function setMaximumPresaleMint(uint256 amount) external onlyOwner {
        maximumPresaleMintPerWallet = amount;
    }
    // Change the maximum mint that a single wallet can do for whitelist
    function setMaximumWhitelistMint(uint256 amount) external onlyOwner {
        maximumWhitelistMintPerWallet = amount;
    }

    // Un-paid mint function for community giveaways
    function mintForCommunity(address to, uint256 amount) external onlyOwner {
        require(amount <= totalSupplyLeft, "Minting would exceed cap");
        require(to != address(0), "Cannot mint to zero address");
        totalSupplyLeft -= amount;
        _safeMint(to, amount);
    }

    function toggleTrasfers() external onlyOwner {
        transfersEnabled = !transfersEnabled;
    }

    function toggleRevealAll() external onlyOwner {
        revealAll = !revealAll;
    }

    //++++++++
    // Internal functions
    //++++++++
    function _leaf(address account) internal pure returns (bytes32) {
        return keccak256(abi.encodePacked(account));
    }

    function _verify(bytes32 leaf, bytes32[] memory proof) internal view returns (bool) {
        return MerkleProof.verify(proof, root, leaf);
    }

    function fulfillRandomWords(uint256, uint256[] memory randomWords) internal override {
        random = randomWords[0];
    }

    //++++++++
    // Override functions
    //++++++++
    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token");
        require(tokenId < (totalSupplyLeft + totalSupply()), "This token is greater than maxSupply");

        if (revealedTokens[tokenId] == true || revealAll == true) {
            return string(abi.encodePacked(revealUri, Strings.toString((tokenId + random) % (totalSupplyLeft + totalSupply())), ".json"));
        } else {
            return unRevealUri;
        }
    }

    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        require(transfersEnabled, "Transfers are currently disabled");
        super.transferFrom(from, to, tokenId);
    }

    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) public virtual override {
        require(transfersEnabled, "Transfers are currently disabled");
        super.safeTransferFrom(from, to, tokenId, _data);
    }
}

File 2 of 18 : VRFConsumerBaseV2.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;

/** ****************************************************************************
 * @notice Interface for contracts using VRF randomness
 * *****************************************************************************
 * @dev PURPOSE
 *
 * @dev Reggie the Random Oracle (not his real job) wants to provide randomness
 * @dev to Vera the verifier in such a way that Vera can be sure he's not
 * @dev making his output up to suit himself. Reggie provides Vera a public key
 * @dev to which he knows the secret key. Each time Vera provides a seed to
 * @dev Reggie, he gives back a value which is computed completely
 * @dev deterministically from the seed and the secret key.
 *
 * @dev Reggie provides a proof by which Vera can verify that the output was
 * @dev correctly computed once Reggie tells it to her, but without that proof,
 * @dev the output is indistinguishable to her from a uniform random sample
 * @dev from the output space.
 *
 * @dev The purpose of this contract is to make it easy for unrelated contracts
 * @dev to talk to Vera the verifier about the work Reggie is doing, to provide
 * @dev simple access to a verifiable source of randomness. It ensures 2 things:
 * @dev 1. The fulfillment came from the VRFCoordinator
 * @dev 2. The consumer contract implements fulfillRandomWords.
 * *****************************************************************************
 * @dev USAGE
 *
 * @dev Calling contracts must inherit from VRFConsumerBase, and can
 * @dev initialize VRFConsumerBase's attributes in their constructor as
 * @dev shown:
 *
 * @dev   contract VRFConsumer {
 * @dev     constructor(<other arguments>, address _vrfCoordinator, address _link)
 * @dev       VRFConsumerBase(_vrfCoordinator) public {
 * @dev         <initialization with other arguments goes here>
 * @dev       }
 * @dev   }
 *
 * @dev The oracle will have given you an ID for the VRF keypair they have
 * @dev committed to (let's call it keyHash). Create subscription, fund it
 * @dev and your consumer contract as a consumer of it (see VRFCoordinatorInterface
 * @dev subscription management functions).
 * @dev Call requestRandomWords(keyHash, subId, minimumRequestConfirmations,
 * @dev callbackGasLimit, numWords),
 * @dev see (VRFCoordinatorInterface for a description of the arguments).
 *
 * @dev Once the VRFCoordinator has received and validated the oracle's response
 * @dev to your request, it will call your contract's fulfillRandomWords method.
 *
 * @dev The randomness argument to fulfillRandomWords is a set of random words
 * @dev generated from your requestId and the blockHash of the request.
 *
 * @dev If your contract could have concurrent requests open, you can use the
 * @dev requestId returned from requestRandomWords to track which response is associated
 * @dev with which randomness request.
 * @dev See "SECURITY CONSIDERATIONS" for principles to keep in mind,
 * @dev if your contract could have multiple requests in flight simultaneously.
 *
 * @dev Colliding `requestId`s are cryptographically impossible as long as seeds
 * @dev differ.
 *
 * *****************************************************************************
 * @dev SECURITY CONSIDERATIONS
 *
 * @dev A method with the ability to call your fulfillRandomness method directly
 * @dev could spoof a VRF response with any random value, so it's critical that
 * @dev it cannot be directly called by anything other than this base contract
 * @dev (specifically, by the VRFConsumerBase.rawFulfillRandomness method).
 *
 * @dev For your users to trust that your contract's random behavior is free
 * @dev from malicious interference, it's best if you can write it so that all
 * @dev behaviors implied by a VRF response are executed *during* your
 * @dev fulfillRandomness method. If your contract must store the response (or
 * @dev anything derived from it) and use it later, you must ensure that any
 * @dev user-significant behavior which depends on that stored value cannot be
 * @dev manipulated by a subsequent VRF request.
 *
 * @dev Similarly, both miners and the VRF oracle itself have some influence
 * @dev over the order in which VRF responses appear on the blockchain, so if
 * @dev your contract could have multiple VRF requests in flight simultaneously,
 * @dev you must ensure that the order in which the VRF responses arrive cannot
 * @dev be used to manipulate your contract's user-significant behavior.
 *
 * @dev Since the block hash of the block which contains the requestRandomness
 * @dev call is mixed into the input to the VRF *last*, a sufficiently powerful
 * @dev miner could, in principle, fork the blockchain to evict the block
 * @dev containing the request, forcing the request to be included in a
 * @dev different block with a different hash, and therefore a different input
 * @dev to the VRF. However, such an attack would incur a substantial economic
 * @dev cost. This cost scales with the number of blocks the VRF oracle waits
 * @dev until it calls responds to a request. It is for this reason that
 * @dev that you can signal to an oracle you'd like them to wait longer before
 * @dev responding to the request (however this is not enforced in the contract
 * @dev and so remains effective only in the case of unmodified oracle software).
 */
abstract contract VRFConsumerBaseV2 {
  error OnlyCoordinatorCanFulfill(address have, address want);
  address private immutable vrfCoordinator;

  /**
   * @param _vrfCoordinator address of VRFCoordinator contract
   */
  constructor(address _vrfCoordinator) {
    vrfCoordinator = _vrfCoordinator;
  }

  /**
   * @notice fulfillRandomness handles the VRF response. Your contract must
   * @notice implement it. See "SECURITY CONSIDERATIONS" above for important
   * @notice principles to keep in mind when implementing your fulfillRandomness
   * @notice method.
   *
   * @dev VRFConsumerBaseV2 expects its subcontracts to have a method with this
   * @dev signature, and will call it once it has verified the proof
   * @dev associated with the randomness. (It is triggered via a call to
   * @dev rawFulfillRandomness, below.)
   *
   * @param requestId The Id initially returned by requestRandomness
   * @param randomWords the VRF output expanded to the requested number of words
   */
  function fulfillRandomWords(uint256 requestId, uint256[] memory randomWords) internal virtual;

  // rawFulfillRandomness is called by VRFCoordinator when it receives a valid VRF
  // proof. rawFulfillRandomness then calls fulfillRandomness, after validating
  // the origin of the call
  function rawFulfillRandomWords(uint256 requestId, uint256[] memory randomWords) external {
    if (msg.sender != vrfCoordinator) {
      revert OnlyCoordinatorCanFulfill(msg.sender, vrfCoordinator);
    }
    fulfillRandomWords(requestId, randomWords);
  }
}

File 3 of 18 : VRFCoordinatorV2Interface.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;

interface VRFCoordinatorV2Interface {
  /**
   * @notice Get configuration relevant for making requests
   * @return minimumRequestConfirmations global min for request confirmations
   * @return maxGasLimit global max for request gas limit
   * @return s_provingKeyHashes list of registered key hashes
   */
  function getRequestConfig()
    external
    view
    returns (
      uint16,
      uint32,
      bytes32[] memory
    );

  /**
   * @notice Request a set of random words.
   * @param keyHash - Corresponds to a particular oracle job which uses
   * that key for generating the VRF proof. Different keyHash's have different gas price
   * ceilings, so you can select a specific one to bound your maximum per request cost.
   * @param subId  - The ID of the VRF subscription. Must be funded
   * with the minimum subscription balance required for the selected keyHash.
   * @param minimumRequestConfirmations - How many blocks you'd like the
   * oracle to wait before responding to the request. See SECURITY CONSIDERATIONS
   * for why you may want to request more. The acceptable range is
   * [minimumRequestBlockConfirmations, 200].
   * @param callbackGasLimit - How much gas you'd like to receive in your
   * fulfillRandomWords callback. Note that gasleft() inside fulfillRandomWords
   * may be slightly less than this amount because of gas used calling the function
   * (argument decoding etc.), so you may need to request slightly more than you expect
   * to have inside fulfillRandomWords. The acceptable range is
   * [0, maxGasLimit]
   * @param numWords - The number of uint256 random values you'd like to receive
   * in your fulfillRandomWords callback. Note these numbers are expanded in a
   * secure way by the VRFCoordinator from a single random value supplied by the oracle.
   * @return requestId - A unique identifier of the request. Can be used to match
   * a request to a response in fulfillRandomWords.
   */
  function requestRandomWords(
    bytes32 keyHash,
    uint64 subId,
    uint16 minimumRequestConfirmations,
    uint32 callbackGasLimit,
    uint32 numWords
  ) external returns (uint256 requestId);

  /**
   * @notice Create a VRF subscription.
   * @return subId - A unique subscription id.
   * @dev You can manage the consumer set dynamically with addConsumer/removeConsumer.
   * @dev Note to fund the subscription, use transferAndCall. For example
   * @dev  LINKTOKEN.transferAndCall(
   * @dev    address(COORDINATOR),
   * @dev    amount,
   * @dev    abi.encode(subId));
   */
  function createSubscription() external returns (uint64 subId);

  /**
   * @notice Get a VRF subscription.
   * @param subId - ID of the subscription
   * @return balance - LINK balance of the subscription in juels.
   * @return reqCount - number of requests for this subscription, determines fee tier.
   * @return owner - owner of the subscription.
   * @return consumers - list of consumer address which are able to use this subscription.
   */
  function getSubscription(uint64 subId)
    external
    view
    returns (
      uint96 balance,
      uint64 reqCount,
      address owner,
      address[] memory consumers
    );

  /**
   * @notice Request subscription owner transfer.
   * @param subId - ID of the subscription
   * @param newOwner - proposed new owner of the subscription
   */
  function requestSubscriptionOwnerTransfer(uint64 subId, address newOwner) external;

  /**
   * @notice Request subscription owner transfer.
   * @param subId - ID of the subscription
   * @dev will revert if original owner of subId has
   * not requested that msg.sender become the new owner.
   */
  function acceptSubscriptionOwnerTransfer(uint64 subId) external;

  /**
   * @notice Add a consumer to a VRF subscription.
   * @param subId - ID of the subscription
   * @param consumer - New consumer which can use the subscription
   */
  function addConsumer(uint64 subId, address consumer) external;

  /**
   * @notice Remove a consumer from a VRF subscription.
   * @param subId - ID of the subscription
   * @param consumer - Consumer to remove from the subscription
   */
  function removeConsumer(uint64 subId, address consumer) external;

  /**
   * @notice Cancel a subscription
   * @param subId - ID of the subscription
   * @param to - Where to send the remaining LINK to
   */
  function cancelSubscription(uint64 subId, address to) external;
}

File 4 of 18 : LinkTokenInterface.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;

interface LinkTokenInterface {
  function allowance(address owner, address spender) external view returns (uint256 remaining);

  function approve(address spender, uint256 value) external returns (bool success);

  function balanceOf(address owner) external view returns (uint256 balance);

  function decimals() external view returns (uint8 decimalPlaces);

  function decreaseApproval(address spender, uint256 addedValue) external returns (bool success);

  function increaseApproval(address spender, uint256 subtractedValue) external;

  function name() external view returns (string memory tokenName);

  function symbol() external view returns (string memory tokenSymbol);

  function totalSupply() external view returns (uint256 totalTokensIssued);

  function transfer(address to, uint256 value) external returns (bool success);

  function transferAndCall(
    address to,
    uint256 value,
    bytes calldata data
  ) external returns (bool success);

  function transferFrom(
    address from,
    address to,
    uint256 value
  ) external returns (bool success);
}

File 5 of 18 : MerkleProof.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.0) (utils/cryptography/MerkleProof.sol)

pragma solidity ^0.8.0;

/**
 * @dev These functions deal with verification of Merkle Trees proofs.
 *
 * The proofs can be generated using the JavaScript library
 * https://github.com/miguelmota/merkletreejs[merkletreejs].
 * Note: the hashing algorithm should be keccak256 and pair sorting should be enabled.
 *
 * See `test/utils/cryptography/MerkleProof.test.js` for some examples.
 */
library MerkleProof {
    /**
     * @dev Returns true if a `leaf` can be proved to be a part of a Merkle tree
     * defined by `root`. For this, a `proof` must be provided, containing
     * sibling hashes on the branch from the leaf to the root of the tree. Each
     * pair of leaves and each pair of pre-images are assumed to be sorted.
     */
    function verify(
        bytes32[] memory proof,
        bytes32 root,
        bytes32 leaf
    ) internal pure returns (bool) {
        return processProof(proof, leaf) == root;
    }

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

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

File 6 of 18 : 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 7 of 18 : Withdrawable.sol
//SPDX-License-Identifier: UNLICENSED
pragma solidity 0.8.7;

import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/token/ERC20/IERC20.sol";

abstract contract Withdrawable is Ownable {
    function withdraw(address payable to) external onlyOwner {
        require(to != address(0), "Cannot recover tokens to the 0 address");
        uint256 balance = address(this).balance;
        to.transfer(balance);
    }
    
    function withdrawETH(address payable receiver, uint256 amount) external onlyOwner {
        require(receiver != address(0), "Cannot recover ETH to the 0 address");
        receiver.transfer(amount);
    }

    function withdrawTokens(
        IERC20 token,
        address receiver,
        uint256 amount
    ) external onlyOwner {
        require(receiver != address(0), "Cannot recover tokens to the 0 address");
        token.transfer(receiver, amount);
    }
}

File 8 of 18 : ERC721A.sol
// SPDX-License-Identifier: MIT
// Creator: Chiru Labs

pragma solidity ^0.8.4;

import '@openzeppelin/contracts/token/ERC721/IERC721.sol';
import '@openzeppelin/contracts/token/ERC721/IERC721Receiver.sol';
import '@openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol';
import '@openzeppelin/contracts/token/ERC721/extensions/IERC721Enumerable.sol';
import '@openzeppelin/contracts/utils/Address.sol';
import '@openzeppelin/contracts/utils/Context.sol';
import '@openzeppelin/contracts/utils/Strings.sol';
import '@openzeppelin/contracts/utils/introspection/ERC165.sol';

error ApprovalCallerNotOwnerNorApproved();
error ApprovalQueryForNonexistentToken();
error ApproveToCaller();
error ApprovalToCurrentOwner();
error BalanceQueryForZeroAddress();
error MintedQueryForZeroAddress();
error BurnedQueryForZeroAddress();
error AuxQueryForZeroAddress();
error MintToZeroAddress();
error MintZeroQuantity();
error OwnerIndexOutOfBounds();
error OwnerQueryForNonexistentToken();
error TokenIndexOutOfBounds();
error TransferCallerNotOwnerNorApproved();
error TransferFromIncorrectOwner();
error TransferToNonERC721ReceiverImplementer();
error TransferToZeroAddress();
error URIQueryForNonexistentToken();

/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
 * the Metadata extension. Built to optimize for lower gas during batch mints.
 *
 * Assumes serials are sequentially minted starting at _startTokenId() (defaults to 0, e.g. 0, 1, 2, 3..).
 *
 * Assumes that an owner cannot have more than 2**64 - 1 (max value of uint64) of supply.
 *
 * Assumes that the maximum token id cannot exceed 2**256 - 1 (max value of uint256).
 */
contract ERC721A is Context, ERC165, IERC721, IERC721Metadata {
    using Address for address;
    using Strings for uint256;

    // Compiler will pack this into a single 256bit word.
    struct TokenOwnership {
        // The address of the owner.
        address addr;
        // Keeps track of the start time of ownership with minimal overhead for tokenomics.
        uint64 startTimestamp;
        // Whether the token has been burned.
        bool burned;
    }

    // Compiler will pack this into a single 256bit word.
    struct AddressData {
        // Realistically, 2**64-1 is more than enough.
        uint64 balance;
        // Keeps track of mint count with minimal overhead for tokenomics.
        uint64 numberMinted;
        // Keeps track of burn count with minimal overhead for tokenomics.
        uint64 numberBurned;
        // For miscellaneous variable(s) pertaining to the address
        // (e.g. number of whitelist mint slots used).
        // If there are multiple variables, please pack them into a uint64.
        uint64 aux;
    }

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

    // The number of tokens burned.
    uint256 internal _burnCounter;

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

    // Mapping from token ID to ownership details
    // An empty struct value does not necessarily mean the token is unowned. See ownershipOf implementation for details.
    mapping(uint256 => TokenOwnership) internal _ownerships;

    // Mapping owner address to address data
    mapping(address => AddressData) private _addressData;

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

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

    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
        _currentIndex = _startTokenId();
    }

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

    /**
     * @dev See {IERC721Enumerable-totalSupply}.
     * @dev Burned tokens are calculated here, use _totalMinted() if you want to count just minted tokens.
     */
    function totalSupply() public view returns (uint256) {
        // Counter underflow is impossible as _burnCounter cannot be incremented
        // more than _currentIndex - _startTokenId() times
        unchecked {
            return _currentIndex - _burnCounter - _startTokenId();
        }
    }

    /**
     * Returns the total amount of tokens minted in the contract.
     */
    function _totalMinted() internal view returns (uint256) {
        // Counter underflow is impossible as _currentIndex does not decrement,
        // and it is initialized to _startTokenId()
        unchecked {
            return _currentIndex - _startTokenId();
        }
    }

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

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

    /**
     * Returns the number of tokens minted by `owner`.
     */
    function _numberMinted(address owner) internal view returns (uint256) {
        if (owner == address(0)) revert MintedQueryForZeroAddress();
        return uint256(_addressData[owner].numberMinted);
    }

    /**
     * Returns the number of tokens burned by or on behalf of `owner`.
     */
    function _numberBurned(address owner) internal view returns (uint256) {
        if (owner == address(0)) revert BurnedQueryForZeroAddress();
        return uint256(_addressData[owner].numberBurned);
    }

    /**
     * Returns the auxillary data for `owner`. (e.g. number of whitelist mint slots used).
     */
    function _getAux(address owner) internal view returns (uint64) {
        if (owner == address(0)) revert AuxQueryForZeroAddress();
        return _addressData[owner].aux;
    }

    /**
     * Sets the auxillary data for `owner`. (e.g. number of whitelist mint slots used).
     * If there are multiple variables, please pack them into a uint64.
     */
    function _setAux(address owner, uint64 aux) internal {
        if (owner == address(0)) revert AuxQueryForZeroAddress();
        _addressData[owner].aux = aux;
    }

    /**
     * Gas spent here starts off proportional to the maximum mint batch size.
     * It gradually moves to O(1) as tokens get transferred around in the collection over time.
     */
    function ownershipOf(uint256 tokenId) internal view returns (TokenOwnership memory) {
        uint256 curr = tokenId;

        unchecked {
            if (_startTokenId() <= curr && curr < _currentIndex) {
                TokenOwnership memory ownership = _ownerships[curr];
                if (!ownership.burned) {
                    if (ownership.addr != address(0)) {
                        return ownership;
                    }
                    // Invariant:
                    // There will always be an ownership that has an address and is not burned
                    // before an ownership that does not have an address and is not burned.
                    // Hence, curr will not underflow.
                    while (true) {
                        curr--;
                        ownership = _ownerships[curr];
                        if (ownership.addr != address(0)) {
                            return ownership;
                        }
                    }
                }
            }
        }
        revert OwnerQueryForNonexistentToken();
    }

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

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

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

    /**
     * @dev See {IERC721Metadata-tokenURI}.
     */
    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        if (!_exists(tokenId)) revert URIQueryForNonexistentToken();

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

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

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

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

        _approve(to, tokenId, owner);
    }

    /**
     * @dev See {IERC721-getApproved}.
     */
    function getApproved(uint256 tokenId) public view override returns (address) {
        if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken();

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public override {
        if (operator == _msgSender()) revert ApproveToCaller();

        _operatorApprovals[_msgSender()][operator] = approved;
        emit ApprovalForAll(_msgSender(), operator, approved);
    }

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

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

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

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) public virtual override {
        _transfer(from, to, tokenId);
        if (to.isContract() && !_checkContractOnERC721Received(from, to, tokenId, _data)) {
            revert TransferToNonERC721ReceiverImplementer();
        }
    }

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

    function _safeMint(address to, uint256 quantity) internal {
        _safeMint(to, quantity, '');
    }

    /**
     * @dev Safely mints `quantity` tokens and transfers them to `to`.
     *
     * Requirements:
     *
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called for each safe transfer.
     * - `quantity` must be greater than 0.
     *
     * Emits a {Transfer} event.
     */
    function _safeMint(
        address to,
        uint256 quantity,
        bytes memory _data
    ) internal {
        _mint(to, quantity, _data, true);
    }

    /**
     * @dev Mints `quantity` tokens and transfers them to `to`.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `quantity` must be greater than 0.
     *
     * Emits a {Transfer} event.
     */
    function _mint(
        address to,
        uint256 quantity,
        bytes memory _data,
        bool safe
    ) internal {
        uint256 startTokenId = _currentIndex;
        if (to == address(0)) revert MintToZeroAddress();
        if (quantity == 0) revert MintZeroQuantity();

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

        // Overflows are incredibly unrealistic.
        // balance or numberMinted overflow if current value of either + quantity > 1.8e19 (2**64) - 1
        // updatedIndex overflows if _currentIndex + quantity > 1.2e77 (2**256) - 1
        unchecked {
            _addressData[to].balance += uint64(quantity);
            _addressData[to].numberMinted += uint64(quantity);

            _ownerships[startTokenId].addr = to;
            _ownerships[startTokenId].startTimestamp = uint64(block.timestamp);

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

            if (safe && to.isContract()) {
                do {
                    emit Transfer(address(0), to, updatedIndex);
                    if (!_checkContractOnERC721Received(address(0), to, updatedIndex++, _data)) {
                        revert TransferToNonERC721ReceiverImplementer();
                    }
                } while (updatedIndex != end);
                // Reentrancy protection
                if (_currentIndex != startTokenId) revert();
            } else {
                do {
                    emit Transfer(address(0), to, updatedIndex++);
                } while (updatedIndex != end);
            }
            _currentIndex = updatedIndex;
        }
        _afterTokenTransfers(address(0), to, startTokenId, quantity);
    }

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     *
     * Emits a {Transfer} event.
     */
    function _transfer(
        address from,
        address to,
        uint256 tokenId
    ) private {
        TokenOwnership memory prevOwnership = ownershipOf(tokenId);

        bool isApprovedOrOwner = (_msgSender() == prevOwnership.addr ||
            isApprovedForAll(prevOwnership.addr, _msgSender()) ||
            getApproved(tokenId) == _msgSender());

        if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        if (prevOwnership.addr != from) revert TransferFromIncorrectOwner();
        if (to == address(0)) revert TransferToZeroAddress();

        _beforeTokenTransfers(from, to, tokenId, 1);

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

        // Underflow of the sender's balance is impossible because we check for
        // ownership above and the recipient's balance can't realistically overflow.
        // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256.
        unchecked {
            _addressData[from].balance -= 1;
            _addressData[to].balance += 1;

            _ownerships[tokenId].addr = to;
            _ownerships[tokenId].startTimestamp = uint64(block.timestamp);

            // If the ownership slot of tokenId+1 is not explicitly set, that means the transfer initiator owns it.
            // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls.
            uint256 nextTokenId = tokenId + 1;
            if (_ownerships[nextTokenId].addr == address(0)) {
                // This will suffice for checking _exists(nextTokenId),
                // as a burned slot cannot contain the zero address.
                if (nextTokenId < _currentIndex) {
                    _ownerships[nextTokenId].addr = prevOwnership.addr;
                    _ownerships[nextTokenId].startTimestamp = prevOwnership.startTimestamp;
                }
            }
        }

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

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

        _beforeTokenTransfers(prevOwnership.addr, address(0), tokenId, 1);

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

        // Underflow of the sender's balance is impossible because we check for
        // ownership above and the recipient's balance can't realistically overflow.
        // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256.
        unchecked {
            _addressData[prevOwnership.addr].balance -= 1;
            _addressData[prevOwnership.addr].numberBurned += 1;

            // Keep track of who burned the token, and the timestamp of burning.
            _ownerships[tokenId].addr = prevOwnership.addr;
            _ownerships[tokenId].startTimestamp = uint64(block.timestamp);
            _ownerships[tokenId].burned = true;

            // If the ownership slot of tokenId+1 is not explicitly set, that means the burn initiator owns it.
            // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls.
            uint256 nextTokenId = tokenId + 1;
            if (_ownerships[nextTokenId].addr == address(0)) {
                // This will suffice for checking _exists(nextTokenId),
                // as a burned slot cannot contain the zero address.
                if (nextTokenId < _currentIndex) {
                    _ownerships[nextTokenId].addr = prevOwnership.addr;
                    _ownerships[nextTokenId].startTimestamp = prevOwnership.startTimestamp;
                }
            }
        }

        emit Transfer(prevOwnership.addr, address(0), tokenId);
        _afterTokenTransfers(prevOwnership.addr, address(0), tokenId, 1);

        // Overflow not possible, as _burnCounter cannot be exceed _currentIndex times.
        unchecked {
            _burnCounter++;
        }
    }

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

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

    /**
     * @dev Hook that is called before a set of serially-ordered token ids are about to be transferred. This includes minting.
     * And also called before burning one token.
     *
     * startTokenId - the first token id to be transferred
     * quantity - the amount to be transferred
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, `from`'s `tokenId` will be
     * transferred to `to`.
     * - When `from` is zero, `tokenId` will be minted for `to`.
     * - When `to` is zero, `tokenId` will be burned by `from`.
     * - `from` and `to` are never both zero.
     */
    function _beforeTokenTransfers(
        address from,
        address to,
        uint256 startTokenId,
        uint256 quantity
    ) internal virtual {}

    /**
     * @dev Hook that is called after a set of serially-ordered token ids have been transferred. This includes
     * minting.
     * And also called after one token has been burned.
     *
     * startTokenId - the first token id to be transferred
     * quantity - the amount to be transferred
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, `from`'s `tokenId` has been
     * transferred to `to`.
     * - When `from` is zero, `tokenId` has been minted for `to`.
     * - When `to` is zero, `tokenId` has been burned by `from`.
     * - `from` and `to` are never both zero.
     */
    function _afterTokenTransfers(
        address from,
        address to,
        uint256 startTokenId,
        uint256 quantity
    ) internal virtual {}
}

File 9 of 18 : 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 10 of 18 : 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 11 of 18 : 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 18 : 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 13 of 18 : IERC721Enumerable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC721/extensions/IERC721Enumerable.sol)

pragma solidity ^0.8.0;

import "../IERC721.sol";

/**
 * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721Enumerable is IERC721 {
    /**
     * @dev Returns the total amount of tokens stored by the contract.
     */
    function totalSupply() external view returns (uint256);

    /**
     * @dev Returns a token ID owned by `owner` at a given `index` of its token list.
     * Use along with {balanceOf} to enumerate all of ``owner``'s tokens.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256);

    /**
     * @dev Returns a token ID at a given `index` of all the tokens stored by the contract.
     * Use along with {totalSupply} to enumerate all tokens.
     */
    function tokenByIndex(uint256 index) external view returns (uint256);
}

File 14 of 18 : 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 15 of 18 : IERC721Receiver.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721Receiver.sol)

pragma solidity ^0.8.0;

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

File 16 of 18 : IERC721.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

File 17 of 18 : IERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC20/IERC20.sol)

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @dev Returns the amount of tokens in existence.
     */
    function totalSupply() external view returns (uint256);

    /**
     * @dev Returns the amount of tokens owned by `account`.
     */
    function balanceOf(address account) external view returns (uint256);

    /**
     * @dev Moves `amount` tokens from the caller's account to `to`.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transfer(address to, uint256 amount) external returns (bool);

    /**
     * @dev Returns the remaining number of tokens that `spender` will be
     * allowed to spend on behalf of `owner` through {transferFrom}. This is
     * zero by default.
     *
     * This value changes when {approve} or {transferFrom} are called.
     */
    function allowance(address owner, address spender) external view returns (uint256);

    /**
     * @dev Sets `amount` as the allowance of `spender` over the caller's tokens.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * IMPORTANT: Beware that changing an allowance with this method brings the risk
     * that someone may use both the old and the new allowance by unfortunate
     * transaction ordering. One possible solution to mitigate this race
     * condition is to first reduce the spender's allowance to 0 and set the
     * desired value afterwards:
     * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
     *
     * Emits an {Approval} event.
     */
    function approve(address spender, uint256 amount) external returns (bool);

    /**
     * @dev Moves `amount` tokens from `from` to `to` using the
     * allowance mechanism. `amount` is then deducted from the caller's
     * allowance.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(
        address from,
        address to,
        uint256 amount
    ) external returns (bool);

    /**
     * @dev Emitted when `value` tokens are moved from one account (`from`) to
     * another (`to`).
     *
     * Note that `value` may be zero.
     */
    event Transfer(address indexed from, address indexed to, uint256 value);

    /**
     * @dev Emitted when the allowance of a `spender` for an `owner` is set by
     * a call to {approve}. `value` is the new allowance.
     */
    event Approval(address indexed owner, address indexed spender, uint256 value);
}

File 18 of 18 : 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);
}

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

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"uint64","name":"subscriptionId","type":"uint64"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[{"internalType":"address","name":"have","type":"address"},{"internalType":"address","name":"want","type":"address"}],"name":"OnlyCoordinatorCanFulfill","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"user","type":"address"},{"indexed":false,"internalType":"uint256","name":"tokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"timestamp","type":"uint256"}],"name":"Revealed","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"previousState","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"nextState","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"timestamp","type":"uint256"}],"name":"SaleStateChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"GetRandom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maximumPresaleMintPerWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maximumWhitelistMintPerWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"bytes32[]","name":"proof","type":"bytes32[]"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mintForCommunity","outputs":[],"stateMutability":"nonpayable","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":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"preSaleAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"preSalePrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"preSaleSupplyLeft","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"random","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"requestId","type":"uint256"},{"internalType":"uint256[]","name":"randomWords","type":"uint256[]"}],"name":"rawFulfillRandomWords","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"itemId","type":"uint256"}],"name":"reveal","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"revealEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"revealUri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"revealedTokens","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"root","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"saleState","outputs":[{"internalType":"enum Beatsu.SaleState","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"setMaximumPresaleMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"setMaximumWhitelistMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintPrice","type":"uint256"}],"name":"setPreSaleMintPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"setPresaleAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintPrice","type":"uint256"}],"name":"setPublicMintPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"uri","type":"string"}],"name":"setRevealUri","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_root","type":"bytes32"}],"name":"setRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_state","type":"uint256"}],"name":"setSaleState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"uri","type":"string"}],"name":"setUnRevealUri","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256[5]","name":"_mintPrices","type":"uint256[5]"}],"name":"setWhitelistMintPrices","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":[],"name":"toggleRevealAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"toggleRevealState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"toggleTrasfers","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupplyLeft","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"transfersEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"unRevealUri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"walletPresaleMintedCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"walletWhitelistMintedCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"whitelistPrices","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address payable","name":"to","type":"address"}],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address payable","name":"receiver","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"withdrawETH","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"contract IERC20","name":"token","type":"address"},{"internalType":"address","name":"receiver","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"withdrawTokens","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60a0604052600b8054736168499c0cffcacd319c818142124b7a15e857ab6001600160a01b031991821617909155600c80547301be23585060835e02b77ef475b0cc51aa1e070992169190911790557fd89b2bf150e3b9e13446986e571fb9cab24b13cea0a43ea20a6049a85cc807cc600d55600e805465ffffffffffff60ff60701b01191664030000c3501790553480156200009b57600080fd5b506040516200380e3803806200380e833981016040819052620000be9162000385565b600b54604080518082018252600681526542656174737560d01b6020808301918252835180850190945260048452631091505560e21b9084015281516001600160a01b03909416939192916200011791600291620002a3565b5080516200012d906003906020840190620002a3565b5060008055505060601b6001600160601b03191660805262000156620001503390565b62000251565b600b54600980546001600160a01b039283166001600160a01b031991821617909155600c54600a8054919093169116179055600e8054612329601855600160301b63ffffff0160701b03191666010000000000006001600160401b0384160262ffffff60781b19161790556040805160a08101825267011c37937e080000815267010a741a46278000602082015266f8b0a10e4700009181019190915266e6ed27d6668000606082015266d529ae9e86000060808201526200021d90600f90600562000332565b505066b1a2bc2ec5000060145567011c37937e0800006017556103e860165560056019819055601a819055601555620003f4565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b828054620002b190620003b7565b90600052602060002090601f016020900481019282620002d5576000855562000320565b82601f10620002f057805160ff191683800117855562000320565b8280016001018555821562000320579182015b828111156200032057825182559160200191906001019062000303565b506200032e9291506200036e565b5090565b826005810192821562000320579160200282015b828111156200032057825182906001600160401b031690559160200191906001019062000346565b5b808211156200032e57600081556001016200036f565b6000602082840312156200039857600080fd5b81516001600160401b0381168114620003b057600080fd5b9392505050565b600181811c90821680620003cc57607f821691505b60208210811415620003ee57634e487b7160e01b600052602260045260246000fd5b50919050565b60805160601c6133f46200041a60003960008181610d080152610d4a01526133f46000f3fe6080604052600436106103765760003560e01c80636352211e116101d1578063ba41b0c611610102578063c87b56dd116100a0578063e985e9c51161006f578063e985e9c5146109c9578063ebf0c71714610a12578063f2fde38b14610a28578063f935c03314610a4857600080fd5b8063c87b56dd1461095e578063c973de0b1461097e578063dab5f34014610993578063e757c17d146109b357600080fd5b8063c2ca0ac5116100dc578063c2ca0ac5146108ff578063c325969d1461091f578063c55defa614610934578063c81709891461094957600080fd5b8063ba41b0c61461089f578063bd169631146108b2578063bef97c87146108de57600080fd5b80639ad7a0f61161016f578063a945bf8011610149578063a945bf8014610834578063b46e08b71461084a578063b758d2931461086a578063b88d4fde1461087f57600080fd5b80639ad7a0f6146107d3578063a22cb465146107f4578063a4ef37301461081457600080fd5b806371bcf917116101ab57806371bcf917146107605780638da5cb5b1461078057806395d89b411461079e57806397af3e65146107b357600080fd5b80636352211e1461070b57806370a082311461072b578063715018a61461074b57600080fd5b806342d0e74e116102ab57806357dc4134116102495780635d82cf6e116102235780635d82cf6e146106875780635e35359e146106a75780635ec01e4d146106c7578063603f4d52146106dd57600080fd5b806357dc41341461062257806359a5667f146106425780635b2ec42f1461065757600080fd5b8063491d1b8011610285578063491d1b80146105ac5780634c756e15146105c25780634e114e19146105e257806351cff8d91461060257600080fd5b806342d0e74e1461055557806344602d08146105765780634782f7791461058c57600080fd5b80631b2c302c116103185780633307227e116102f25780633307227e146104df5780633b9ee7e4146104f557806342842e0e1461051557806342b58b2f1461053557600080fd5b80631b2c302c146104895780631fe543e31461049f57806323b872dd146104bf57600080fd5b8063081812fc11610354578063081812fc146103f6578063084c40881461042e578063095ea7b31461045057806318160ddd1461047057600080fd5b806301ffc9a71461037b57806306fdde03146103b057806307f4eace146103d2575b600080fd5b34801561038757600080fd5b5061039b610396366004612dc8565b610a75565b60405190151581526020015b60405180910390f35b3480156103bc57600080fd5b506103c5610ac7565b6040516103a7919061312a565b3480156103de57600080fd5b506103e860155481565b6040519081526020016103a7565b34801561040257600080fd5b50610416610411366004612daf565b610b59565b6040516001600160a01b0390911681526020016103a7565b34801561043a57600080fd5b5061044e610449366004612daf565b610b9d565b005b34801561045c57600080fd5b5061044e61046b366004612b76565b610c6f565b34801561047c57600080fd5b50600154600054036103e8565b34801561049557600080fd5b506103e860195481565b3480156104ab57600080fd5b5061044e6104ba366004612f0a565b610cfd565b3480156104cb57600080fd5b5061044e6104da366004612bdb565b610d85565b3480156104eb57600080fd5b506103e8601a5481565b34801561050157600080fd5b5061044e610510366004612daf565b610de9565b34801561052157600080fd5b5061044e610530366004612bdb565b610e18565b34801561054157600080fd5b5061044e610550366004612e02565b610e33565b34801561056157600080fd5b50600e5461039b90600160881b900460ff1681565b34801561058257600080fd5b506103e860165481565b34801561059857600080fd5b5061044e6105a7366004612b76565b610e69565b3480156105b857600080fd5b506103e860185481565b3480156105ce57600080fd5b5061044e6105dd366004612daf565b610f2b565b3480156105ee57600080fd5b5061044e6105fd366004612b76565b610f5a565b34801561060e57600080fd5b5061044e61061d366004612b59565b611049565b34801561062e57600080fd5b5061044e61063d366004612daf565b6110d1565b34801561064e57600080fd5b5061044e611100565b34801561066357600080fd5b5061039b610672366004612daf565b60216020526000908152604090205460ff1681565b34801561069357600080fd5b5061044e6106a2366004612daf565b61123d565b3480156106b357600080fd5b5061044e6106c2366004612bdb565b61126c565b3480156106d357600080fd5b506103e8601b5481565b3480156106e957600080fd5b50600e546106fe90600160701b900460ff1681565b6040516103a79190613102565b34801561071757600080fd5b50610416610726366004612daf565b611344565b34801561073757600080fd5b506103e8610746366004612b59565b611356565b34801561075757600080fd5b5061044e6113a4565b34801561076c57600080fd5b506103e861077b366004612daf565b6113da565b34801561078c57600080fd5b506008546001600160a01b0316610416565b3480156107aa57600080fd5b506103c56113f1565b3480156107bf57600080fd5b5061044e6107ce366004612daf565b611400565b3480156107df57600080fd5b50600e5461039b90600160781b900460ff1681565b34801561080057600080fd5b5061044e61080f366004612cdf565b61142f565b34801561082057600080fd5b5061044e61082f366004612d0d565b6114c5565b34801561084057600080fd5b506103e860175481565b34801561085657600080fd5b5061044e610865366004612e02565b6114fc565b34801561087657600080fd5b5061044e611532565b34801561088b57600080fd5b5061044e61089a366004612c1c565b61157d565b61044e6108ad366004612e8c565b6115e2565b3480156108be57600080fd5b506103e86108cd366004612b59565b602080526000908152604090205481565b3480156108ea57600080fd5b50600e5461039b90600160801b900460ff1681565b34801561090b57600080fd5b5061044e61091a366004612daf565b611b0f565b34801561092b57600080fd5b5061044e611d7f565b34801561094057600080fd5b506103c5611dca565b34801561095557600080fd5b5061044e611e58565b34801561096a57600080fd5b506103c5610979366004612daf565b611ea3565b34801561098a57600080fd5b506103c56120a9565b34801561099f57600080fd5b5061044e6109ae366004612daf565b6120b6565b3480156109bf57600080fd5b506103e860145481565b3480156109d557600080fd5b5061039b6109e4366004612ba2565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b348015610a1e57600080fd5b506103e8601c5481565b348015610a3457600080fd5b5061044e610a43366004612b59565b6120e5565b348015610a5457600080fd5b506103e8610a63366004612b59565b601f6020526000908152604090205481565b60006001600160e01b031982166380ac58cd60e01b1480610aa657506001600160e01b03198216635b5e139f60e01b145b80610ac157506301ffc9a760e01b6001600160e01b03198316145b92915050565b606060028054610ad6906132ad565b80601f0160208091040260200160405190810160405280929190818152602001828054610b02906132ad565b8015610b4f5780601f10610b2457610100808354040283529160200191610b4f565b820191906000526020600020905b815481529060010190602001808311610b3257829003601f168201915b5050505050905090565b6000610b648261217d565b610b81576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b6008546001600160a01b03163314610bd05760405162461bcd60e51b8152600401610bc7906131ba565b60405180910390fd5b600e54600090600160701b900460ff166003811115610bf157610bf1613343565b9050816003811115610c0557610c05613343565b600e805460ff60701b1916600160701b836003811115610c2757610c27613343565b02179055506040805182815260208101849052428183015290517f5ae4d07c5da1ad821e922d47f80ffe8c88b0d8187b67b95231aa8d381329a7649181900360600190a15050565b6000610c7a82611344565b9050806001600160a01b0316836001600160a01b03161415610caf5760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b03821614801590610ccf5750610ccd81336109e4565b155b15610ced576040516367d9dca160e11b815260040160405180910390fd5b610cf88383836121a8565b505050565b336001600160a01b037f00000000000000000000000000000000000000000000000000000000000000001614610d775760405163073e64fd60e21b81523360048201526001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000166024820152604401610bc7565b610d818282612204565b5050565b600e54600160801b900460ff16610dde5760405162461bcd60e51b815260206004820181905260248201527f5472616e7366657273206172652063757272656e746c792064697361626c65646044820152606401610bc7565b610cf8838383612229565b6008546001600160a01b03163314610e135760405162461bcd60e51b8152600401610bc7906131ba565b601455565b610cf88383836040518060200160405280600081525061157d565b6008546001600160a01b03163314610e5d5760405162461bcd60e51b8152600401610bc7906131ba565b610cf8601e8383612a92565b6008546001600160a01b03163314610e935760405162461bcd60e51b8152600401610bc7906131ba565b6001600160a01b038216610ef55760405162461bcd60e51b815260206004820152602360248201527f43616e6e6f74207265636f7665722045544820746f207468652030206164647260448201526265737360e81b6064820152608401610bc7565b6040516001600160a01b0383169082156108fc029083906000818181858888f19350505050158015610cf8573d6000803e3d6000fd5b6008546001600160a01b03163314610f555760405162461bcd60e51b8152600401610bc7906131ba565b601955565b6008546001600160a01b03163314610f845760405162461bcd60e51b8152600401610bc7906131ba565b601854811115610fd15760405162461bcd60e51b815260206004820152601860248201527704d696e74696e6720776f756c6420657863656564206361760441b6044820152606401610bc7565b6001600160a01b0382166110275760405162461bcd60e51b815260206004820152601b60248201527f43616e6e6f74206d696e7420746f207a65726f206164647265737300000000006044820152606401610bc7565b8060186000828254611039919061326a565b90915550610d8190508282612234565b6008546001600160a01b031633146110735760405162461bcd60e51b8152600401610bc7906131ba565b6001600160a01b0381166110995760405162461bcd60e51b8152600401610bc79061313d565b60405147906001600160a01b0383169082156108fc029083906000818181858888f19350505050158015610cf8573d6000803e3d6000fd5b6008546001600160a01b031633146110fb5760405162461bcd60e51b8152600401610bc7906131ba565b601555565b6008546001600160a01b0316331461112a5760405162461bcd60e51b8152600401610bc7906131ba565b601b541561117a5760405162461bcd60e51b815260206004820152601b60248201527f52616e646f6d2068617320616c7265616479206265656e2073657400000000006044820152606401610bc7565b600954600d54600e546040516305d3b1d360e41b81526004810192909252660100000000000081046001600160401b03166024830152640100000000810461ffff16604483015263ffffffff166064820152600160848201526001600160a01b0390911690635d3b1d309060a401602060405180830381600087803b15801561120257600080fd5b505af1158015611216573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061123a9190612e73565b50565b6008546001600160a01b031633146112675760405162461bcd60e51b8152600401610bc7906131ba565b601755565b6008546001600160a01b031633146112965760405162461bcd60e51b8152600401610bc7906131ba565b6001600160a01b0382166112bc5760405162461bcd60e51b8152600401610bc79061313d565b60405163a9059cbb60e01b81526001600160a01b0383811660048301526024820183905284169063a9059cbb90604401602060405180830381600087803b15801561130657600080fd5b505af115801561131a573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061133e9190612d92565b50505050565b600061134f8261224e565b5192915050565b60006001600160a01b03821661137f576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b03166000908152600560205260409020546001600160401b031690565b6008546001600160a01b031633146113ce5760405162461bcd60e51b8152600401610bc7906131ba565b6113d86000612368565b565b600f81600581106113ea57600080fd5b0154905081565b606060038054610ad6906132ad565b6008546001600160a01b0316331461142a5760405162461bcd60e51b8152600401610bc7906131ba565b601a55565b6001600160a01b0382163314156114595760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6008546001600160a01b031633146114ef5760405162461bcd60e51b8152600401610bc7906131ba565b610d81600f826005612b16565b6008546001600160a01b031633146115265760405162461bcd60e51b8152600401610bc7906131ba565b610cf8601d8383612a92565b6008546001600160a01b0316331461155c5760405162461bcd60e51b8152600401610bc7906131ba565b600e805460ff60801b198116600160801b9182900460ff1615909102179055565b600e54600160801b900460ff166115d65760405162461bcd60e51b815260206004820181905260248201527f5472616e7366657273206172652063757272656e746c792064697361626c65646044820152606401610bc7565b61133e848484846123ba565b6000600e54600160701b900460ff16600381111561160257611602613343565b14156116455760405162461bcd60e51b815260206004820152601260248201527153616c65206973206e6f742061637469766560701b6044820152606401610bc7565b338383836003600e54600160701b900460ff16600381111561166957611669613343565b14806116e5575060408051606086901b6bffffffffffffffffffffffff191660208083019190915282516014818403018152603490920190925280519101206116e59083838080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525061240592505050565b6117575760405162461bcd60e51b815260206004820152603c60248201527f546869732061646472657373206973206e6f742077686974656c69737465642060448201527f6f72206861732072656163686564206d6178696d756d206d696e7473000000006064820152608401610bc7565b6018548711156117a45760405162461bcd60e51b815260206004820152601860248201527704d696e74696e6720776f756c6420657863656564206361760441b6044820152606401610bc7565b6001600e54600160701b900460ff1660038111156117c4576117c4613343565b141561197c5760155487146118275760405162461bcd60e51b815260206004820152602360248201527f50726573616c65206d757374206d696e74206120737065636966696320616d6f6044820152621d5b9d60ea1b6064820152608401610bc7565b3487601454611836919061324b565b11156118545760405162461bcd60e51b8152600401610bc790613183565b6016548711156118b45760405162461bcd60e51b815260206004820152602560248201527f546865726520617265206e6f7420656e6f756768206c65667420666f722070726044820152646573616c6560d81b6064820152608401610bc7565b601954336000908152601f60205260409020546118d290899061321f565b111561193b5760405162461bcd60e51b815260206004820152603260248201527f546869732077616c6c657420686173207265616368656420746865206d61786960448201527136bab690383932b9b0b6329036b4b73a399760711b6064820152608401610bc7565b866016600082825461194d919061326a565b9091555050336000908152601f60205260408120805489929061197190849061321f565b90915550611ae49050565b6002600e54600160701b900460ff16600381111561199c5761199c613343565b1415611a91573487600f6119b160018361326a565b600581106119c1576119c1613359565b01546119cd919061324b565b11156119eb5760405162461bcd60e51b8152600401610bc790613183565b601a54336000908152602080526040902054611a0890899061321f565b1115611a735760405162461bcd60e51b815260206004820152603460248201527f546869732077616c6c657420686173207265616368656420746865206d61786960448201527336bab6903bb434ba32b634b9ba1036b4b73a399760611b6064820152608401610bc7565b3360009081526020805260408120805489929061197190849061321f565b6003600e54600160701b900460ff166003811115611ab157611ab1613343565b1415611ae4573487601754611ac6919061324b565b1115611ae45760405162461bcd60e51b8152600401610bc790613183565b8660186000828254611af6919061326a565b90915550611b0690503388612234565b50505050505050565b600e54600160781b900460ff16611b685760405162461bcd60e51b815260206004820152601960248201527f52657665616c206973206e6f742079657420656e61626c6564000000000000006044820152606401610bc7565b600e54600160881b900460ff1615611bce5760405162461bcd60e51b815260206004820152602360248201527f416c6c204e465473206861766520616c7265616479206265656e2072657665616044820152621b195960ea1b6064820152608401610bc7565b611bd78161217d565b611c335760405162461bcd60e51b815260206004820152602760248201527f43616e6e6f742072657665616c20616e204e4654207468617420646f65736e276044820152661d08195e1a5cdd60ca1b6064820152608401610bc7565b33611c3d82611344565b6001600160a01b031614611ca35760405162461bcd60e51b815260206004820152602760248201527f43616e6e6f742072657665616c20616e204e4654207468617420796f7520646f6044820152663713ba1037bbb760c91b6064820152608401610bc7565b60008181526021602052604090205460ff1615611d1e5760405162461bcd60e51b815260206004820152603360248201527f43616e6e6f742072657665616c20616e204e465420746861742068617320616c6044820152721c9958591e481899595b881c995d99585b1959606a1b6064820152608401610bc7565b60008181526021602052604090819020805460ff191660011790555133907fc100f01fdaa206bf36f50fd3c33f747cd602df3abaed791458e1d50d6084e12590611d749084904290918252602082015260400190565b60405180910390a250565b6008546001600160a01b03163314611da95760405162461bcd60e51b8152600401610bc7906131ba565b600e805460ff60781b198116600160781b9182900460ff1615909102179055565b601d8054611dd7906132ad565b80601f0160208091040260200160405190810160405280929190818152602001828054611e03906132ad565b8015611e505780601f10611e2557610100808354040283529160200191611e50565b820191906000526020600020905b815481529060010190602001808311611e3357829003601f168201915b505050505081565b6008546001600160a01b03163314611e825760405162461bcd60e51b8152600401610bc7906131ba565b600e805460ff60881b198116600160881b9182900460ff1615909102179055565b6060611eae8261217d565b611f125760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610bc7565b60015460005403601854611f26919061321f565b8210611f805760405162461bcd60e51b8152602060048201526024808201527f5468697320746f6b656e2069732067726561746572207468616e206d6178537560448201526370706c7960e01b6064820152608401610bc7565b60008281526021602052604090205460ff16151560011480611fb05750600e54600160881b900460ff1615156001145b1561201757601e611ff0611fc76001546000540390565b601854611fd4919061321f565b601b54611fe1908661321f565b611feb9190613303565b61241b565b60405160200161200192919061300a565b6040516020818303038152906040529050919050565b601d8054612024906132ad565b80601f0160208091040260200160405190810160405280929190818152602001828054612050906132ad565b801561209d5780601f106120725761010080835404028352916020019161209d565b820191906000526020600020905b81548152906001019060200180831161208057829003601f168201915b50505050509050919050565b601e8054611dd7906132ad565b6008546001600160a01b031633146120e05760405162461bcd60e51b8152600401610bc7906131ba565b601c55565b6008546001600160a01b0316331461210f5760405162461bcd60e51b8152600401610bc7906131ba565b6001600160a01b0381166121745760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610bc7565b61123a81612368565b6000805482108015610ac1575050600090815260046020526040902054600160e01b900460ff161590565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b8060008151811061221757612217613359565b6020026020010151601b819055505050565b610cf8838383612520565b610d81828260405180602001604052806000815250612734565b60408051606081018252600080825260208201819052918101919091528160005481101561234f57600081815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff1615159181018290529061234d5780516001600160a01b0316156122e4579392505050565b5060001901600081815260046020908152604091829020825160608101845290546001600160a01b038116808352600160a01b82046001600160401b031693830193909352600160e01b900460ff1615159281019290925215612348579392505050565b6122e4565b505b604051636f96cda160e11b815260040160405180910390fd5b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6123c5848484612520565b6001600160a01b0383163b151580156123e757506123e584848484612741565b155b1561133e576040516368d2bf6b60e11b815260040160405180910390fd5b600061241482601c5485612838565b9392505050565b60608161243f5750506040805180820190915260018152600360fc1b602082015290565b8160005b81156124695780612453816132e8565b91506124629050600a83613237565b9150612443565b6000816001600160401b038111156124835761248361336f565b6040519080825280601f01601f1916602001820160405280156124ad576020820181803683370190505b5090505b8415612518576124c260018361326a565b91506124cf600a86613303565b6124da90603061321f565b60f81b8183815181106124ef576124ef613359565b60200101906001600160f81b031916908160001a905350612511600a86613237565b94506124b1565b949350505050565b600061252b8261224e565b80519091506000906001600160a01b0316336001600160a01b031614806125595750815161255990336109e4565b8061257457503361256984610b59565b6001600160a01b0316145b90508061259457604051632ce44b5f60e11b815260040160405180910390fd5b846001600160a01b031682600001516001600160a01b0316146125c95760405162a1148160e81b815260040160405180910390fd5b6001600160a01b0384166125f057604051633a954ecd60e21b815260040160405180910390fd5b61260060008484600001516121a8565b6001600160a01b038581166000908152600560209081526040808320805467ffffffffffffffff198082166001600160401b0392831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600490945282852080546001600160e01b031916909417600160a01b4290921691909102179092559086018083529120549091166126ea576000548110156126ea57825160008281526004602090815260409091208054918601516001600160401b0316600160a01b026001600160e01b03199092166001600160a01b03909316929092171790555b5082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b610cf8838383600161284e565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a02906127769033908990889088906004016130c5565b602060405180830381600087803b15801561279057600080fd5b505af19250505080156127c0575060408051601f3d908101601f191682019092526127bd91810190612de5565b60015b61281b573d8080156127ee576040519150601f19603f3d011682016040523d82523d6000602084013e6127f3565b606091505b508051612813576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050949350505050565b6000826128458584612a1e565b14949350505050565b6000546001600160a01b03851661287757604051622e076360e81b815260040160405180910390fd5b836128955760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038516600081815260056020908152604080832080546fffffffffffffffffffffffffffffffff1981166001600160401b038083168c0181169182176801000000000000000067ffffffffffffffff1990941690921783900481168c01811690920217909155858452600490925290912080546001600160e01b031916909217600160a01b42909216919091021790558080850183801561294657506001600160a01b0387163b15155b156129cf575b60405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a46129976000888480600101955088612741565b6129b4576040516368d2bf6b60e11b815260040160405180910390fd5b8082141561294c5782600054146129ca57600080fd5b612a15565b5b6040516001830192906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4808214156129d0575b5060005561272d565b600081815b8451811015612a8a576000858281518110612a4057612a40613359565b60200260200101519050808311612a665760008381526020829052604090209250612a77565b600081815260208490526040902092505b5080612a82816132e8565b915050612a23565b509392505050565b828054612a9e906132ad565b90600052602060002090601f016020900481019282612ac05760008555612b06565b82601f10612ad95782800160ff19823516178555612b06565b82800160010185558215612b06579182015b82811115612b06578235825591602001919060010190612aeb565b50612b12929150612b44565b5090565b8260058101928215612b06579160200282015b82811115612b06578251825591602001919060010190612b29565b5b80821115612b125760008155600101612b45565b600060208284031215612b6b57600080fd5b813561241481613385565b60008060408385031215612b8957600080fd5b8235612b9481613385565b946020939093013593505050565b60008060408385031215612bb557600080fd5b8235612bc081613385565b91506020830135612bd081613385565b809150509250929050565b600080600060608486031215612bf057600080fd5b8335612bfb81613385565b92506020840135612c0b81613385565b929592945050506040919091013590565b60008060008060808587031215612c3257600080fd5b8435612c3d81613385565b9350602085810135612c4e81613385565b93506040860135925060608601356001600160401b0380821115612c7157600080fd5b818801915088601f830112612c8557600080fd5b813581811115612c9757612c9761336f565b612ca9601f8201601f191685016131ef565b91508082528984828501011115612cbf57600080fd5b808484018584013760008482840101525080935050505092959194509250565b60008060408385031215612cf257600080fd5b8235612cfd81613385565b91506020830135612bd08161339a565b600060a08284031215612d1f57600080fd5b82601f830112612d2e57600080fd5b60405160a081018181106001600160401b0382111715612d5057612d5061336f565b604052808360a08101861015612d6557600080fd5b60005b6005811015612d87578135835260209283019290910190600101612d68565b509195945050505050565b600060208284031215612da457600080fd5b81516124148161339a565b600060208284031215612dc157600080fd5b5035919050565b600060208284031215612dda57600080fd5b8135612414816133a8565b600060208284031215612df757600080fd5b8151612414816133a8565b60008060208385031215612e1557600080fd5b82356001600160401b0380821115612e2c57600080fd5b818501915085601f830112612e4057600080fd5b813581811115612e4f57600080fd5b866020828501011115612e6157600080fd5b60209290920196919550909350505050565b600060208284031215612e8557600080fd5b5051919050565b600080600060408486031215612ea157600080fd5b8335925060208401356001600160401b0380821115612ebf57600080fd5b818601915086601f830112612ed357600080fd5b813581811115612ee257600080fd5b8760208260051b8501011115612ef757600080fd5b6020830194508093505050509250925092565b60008060408385031215612f1d57600080fd5b823591506020808401356001600160401b0380821115612f3c57600080fd5b818601915086601f830112612f5057600080fd5b813581811115612f6257612f6261336f565b8060051b9150612f738483016131ef565b8181528481019084860184860187018b1015612f8e57600080fd5b600095505b83861015612fb1578035835260019590950194918601918601612f93565b508096505050505050509250929050565b60008151808452612fda816020860160208601613281565b601f01601f19169290920160200192915050565b60008151613000818560208601613281565b9290920192915050565b600080845481600182811c91508083168061302657607f831692505b602080841082141561304657634e487b7160e01b86526022600452602486fd5b81801561305a576001811461306b57613098565b60ff19861689528489019650613098565b60008b81526020902060005b868110156130905781548b820152908501908301613077565b505084890196505b5050505050506130bc6130ab8286612fee565b64173539b7b760d91b815260050190565b95945050505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906130f890830184612fc2565b9695505050505050565b602081016004831061312457634e487b7160e01b600052602160045260246000fd5b91905290565b6020815260006124146020830184612fc2565b60208082526026908201527f43616e6e6f74207265636f76657220746f6b656e7320746f207468652030206160408201526564647265737360d01b606082015260800190565b60208082526019908201527f56616c75652073656e74206973206e6f7420636f727265637400000000000000604082015260600190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b604051601f8201601f191681016001600160401b03811182821017156132175761321761336f565b604052919050565b6000821982111561323257613232613317565b500190565b6000826132465761324661332d565b500490565b600081600019048311821515161561326557613265613317565b500290565b60008282101561327c5761327c613317565b500390565b60005b8381101561329c578181015183820152602001613284565b8381111561133e5750506000910152565b600181811c908216806132c157607f821691505b602082108114156132e257634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156132fc576132fc613317565b5060010190565b6000826133125761331261332d565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052602160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160a01b038116811461123a57600080fd5b801515811461123a57600080fd5b6001600160e01b03198116811461123a57600080fdfea26469706673582212203a24c21a5d95b7e689459c8105a5cec7e934d8e1658205e7c031b0d45c0c7fa764736f6c634300080700330000000000000000000000000000000000000000000000000000000000000010

Deployed Bytecode

0x6080604052600436106103765760003560e01c80636352211e116101d1578063ba41b0c611610102578063c87b56dd116100a0578063e985e9c51161006f578063e985e9c5146109c9578063ebf0c71714610a12578063f2fde38b14610a28578063f935c03314610a4857600080fd5b8063c87b56dd1461095e578063c973de0b1461097e578063dab5f34014610993578063e757c17d146109b357600080fd5b8063c2ca0ac5116100dc578063c2ca0ac5146108ff578063c325969d1461091f578063c55defa614610934578063c81709891461094957600080fd5b8063ba41b0c61461089f578063bd169631146108b2578063bef97c87146108de57600080fd5b80639ad7a0f61161016f578063a945bf8011610149578063a945bf8014610834578063b46e08b71461084a578063b758d2931461086a578063b88d4fde1461087f57600080fd5b80639ad7a0f6146107d3578063a22cb465146107f4578063a4ef37301461081457600080fd5b806371bcf917116101ab57806371bcf917146107605780638da5cb5b1461078057806395d89b411461079e57806397af3e65146107b357600080fd5b80636352211e1461070b57806370a082311461072b578063715018a61461074b57600080fd5b806342d0e74e116102ab57806357dc4134116102495780635d82cf6e116102235780635d82cf6e146106875780635e35359e146106a75780635ec01e4d146106c7578063603f4d52146106dd57600080fd5b806357dc41341461062257806359a5667f146106425780635b2ec42f1461065757600080fd5b8063491d1b8011610285578063491d1b80146105ac5780634c756e15146105c25780634e114e19146105e257806351cff8d91461060257600080fd5b806342d0e74e1461055557806344602d08146105765780634782f7791461058c57600080fd5b80631b2c302c116103185780633307227e116102f25780633307227e146104df5780633b9ee7e4146104f557806342842e0e1461051557806342b58b2f1461053557600080fd5b80631b2c302c146104895780631fe543e31461049f57806323b872dd146104bf57600080fd5b8063081812fc11610354578063081812fc146103f6578063084c40881461042e578063095ea7b31461045057806318160ddd1461047057600080fd5b806301ffc9a71461037b57806306fdde03146103b057806307f4eace146103d2575b600080fd5b34801561038757600080fd5b5061039b610396366004612dc8565b610a75565b60405190151581526020015b60405180910390f35b3480156103bc57600080fd5b506103c5610ac7565b6040516103a7919061312a565b3480156103de57600080fd5b506103e860155481565b6040519081526020016103a7565b34801561040257600080fd5b50610416610411366004612daf565b610b59565b6040516001600160a01b0390911681526020016103a7565b34801561043a57600080fd5b5061044e610449366004612daf565b610b9d565b005b34801561045c57600080fd5b5061044e61046b366004612b76565b610c6f565b34801561047c57600080fd5b50600154600054036103e8565b34801561049557600080fd5b506103e860195481565b3480156104ab57600080fd5b5061044e6104ba366004612f0a565b610cfd565b3480156104cb57600080fd5b5061044e6104da366004612bdb565b610d85565b3480156104eb57600080fd5b506103e8601a5481565b34801561050157600080fd5b5061044e610510366004612daf565b610de9565b34801561052157600080fd5b5061044e610530366004612bdb565b610e18565b34801561054157600080fd5b5061044e610550366004612e02565b610e33565b34801561056157600080fd5b50600e5461039b90600160881b900460ff1681565b34801561058257600080fd5b506103e860165481565b34801561059857600080fd5b5061044e6105a7366004612b76565b610e69565b3480156105b857600080fd5b506103e860185481565b3480156105ce57600080fd5b5061044e6105dd366004612daf565b610f2b565b3480156105ee57600080fd5b5061044e6105fd366004612b76565b610f5a565b34801561060e57600080fd5b5061044e61061d366004612b59565b611049565b34801561062e57600080fd5b5061044e61063d366004612daf565b6110d1565b34801561064e57600080fd5b5061044e611100565b34801561066357600080fd5b5061039b610672366004612daf565b60216020526000908152604090205460ff1681565b34801561069357600080fd5b5061044e6106a2366004612daf565b61123d565b3480156106b357600080fd5b5061044e6106c2366004612bdb565b61126c565b3480156106d357600080fd5b506103e8601b5481565b3480156106e957600080fd5b50600e546106fe90600160701b900460ff1681565b6040516103a79190613102565b34801561071757600080fd5b50610416610726366004612daf565b611344565b34801561073757600080fd5b506103e8610746366004612b59565b611356565b34801561075757600080fd5b5061044e6113a4565b34801561076c57600080fd5b506103e861077b366004612daf565b6113da565b34801561078c57600080fd5b506008546001600160a01b0316610416565b3480156107aa57600080fd5b506103c56113f1565b3480156107bf57600080fd5b5061044e6107ce366004612daf565b611400565b3480156107df57600080fd5b50600e5461039b90600160781b900460ff1681565b34801561080057600080fd5b5061044e61080f366004612cdf565b61142f565b34801561082057600080fd5b5061044e61082f366004612d0d565b6114c5565b34801561084057600080fd5b506103e860175481565b34801561085657600080fd5b5061044e610865366004612e02565b6114fc565b34801561087657600080fd5b5061044e611532565b34801561088b57600080fd5b5061044e61089a366004612c1c565b61157d565b61044e6108ad366004612e8c565b6115e2565b3480156108be57600080fd5b506103e86108cd366004612b59565b602080526000908152604090205481565b3480156108ea57600080fd5b50600e5461039b90600160801b900460ff1681565b34801561090b57600080fd5b5061044e61091a366004612daf565b611b0f565b34801561092b57600080fd5b5061044e611d7f565b34801561094057600080fd5b506103c5611dca565b34801561095557600080fd5b5061044e611e58565b34801561096a57600080fd5b506103c5610979366004612daf565b611ea3565b34801561098a57600080fd5b506103c56120a9565b34801561099f57600080fd5b5061044e6109ae366004612daf565b6120b6565b3480156109bf57600080fd5b506103e860145481565b3480156109d557600080fd5b5061039b6109e4366004612ba2565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b348015610a1e57600080fd5b506103e8601c5481565b348015610a3457600080fd5b5061044e610a43366004612b59565b6120e5565b348015610a5457600080fd5b506103e8610a63366004612b59565b601f6020526000908152604090205481565b60006001600160e01b031982166380ac58cd60e01b1480610aa657506001600160e01b03198216635b5e139f60e01b145b80610ac157506301ffc9a760e01b6001600160e01b03198316145b92915050565b606060028054610ad6906132ad565b80601f0160208091040260200160405190810160405280929190818152602001828054610b02906132ad565b8015610b4f5780601f10610b2457610100808354040283529160200191610b4f565b820191906000526020600020905b815481529060010190602001808311610b3257829003601f168201915b5050505050905090565b6000610b648261217d565b610b81576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b6008546001600160a01b03163314610bd05760405162461bcd60e51b8152600401610bc7906131ba565b60405180910390fd5b600e54600090600160701b900460ff166003811115610bf157610bf1613343565b9050816003811115610c0557610c05613343565b600e805460ff60701b1916600160701b836003811115610c2757610c27613343565b02179055506040805182815260208101849052428183015290517f5ae4d07c5da1ad821e922d47f80ffe8c88b0d8187b67b95231aa8d381329a7649181900360600190a15050565b6000610c7a82611344565b9050806001600160a01b0316836001600160a01b03161415610caf5760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b03821614801590610ccf5750610ccd81336109e4565b155b15610ced576040516367d9dca160e11b815260040160405180910390fd5b610cf88383836121a8565b505050565b336001600160a01b037f0000000000000000000000006168499c0cffcacd319c818142124b7a15e857ab1614610d775760405163073e64fd60e21b81523360048201526001600160a01b037f0000000000000000000000006168499c0cffcacd319c818142124b7a15e857ab166024820152604401610bc7565b610d818282612204565b5050565b600e54600160801b900460ff16610dde5760405162461bcd60e51b815260206004820181905260248201527f5472616e7366657273206172652063757272656e746c792064697361626c65646044820152606401610bc7565b610cf8838383612229565b6008546001600160a01b03163314610e135760405162461bcd60e51b8152600401610bc7906131ba565b601455565b610cf88383836040518060200160405280600081525061157d565b6008546001600160a01b03163314610e5d5760405162461bcd60e51b8152600401610bc7906131ba565b610cf8601e8383612a92565b6008546001600160a01b03163314610e935760405162461bcd60e51b8152600401610bc7906131ba565b6001600160a01b038216610ef55760405162461bcd60e51b815260206004820152602360248201527f43616e6e6f74207265636f7665722045544820746f207468652030206164647260448201526265737360e81b6064820152608401610bc7565b6040516001600160a01b0383169082156108fc029083906000818181858888f19350505050158015610cf8573d6000803e3d6000fd5b6008546001600160a01b03163314610f555760405162461bcd60e51b8152600401610bc7906131ba565b601955565b6008546001600160a01b03163314610f845760405162461bcd60e51b8152600401610bc7906131ba565b601854811115610fd15760405162461bcd60e51b815260206004820152601860248201527704d696e74696e6720776f756c6420657863656564206361760441b6044820152606401610bc7565b6001600160a01b0382166110275760405162461bcd60e51b815260206004820152601b60248201527f43616e6e6f74206d696e7420746f207a65726f206164647265737300000000006044820152606401610bc7565b8060186000828254611039919061326a565b90915550610d8190508282612234565b6008546001600160a01b031633146110735760405162461bcd60e51b8152600401610bc7906131ba565b6001600160a01b0381166110995760405162461bcd60e51b8152600401610bc79061313d565b60405147906001600160a01b0383169082156108fc029083906000818181858888f19350505050158015610cf8573d6000803e3d6000fd5b6008546001600160a01b031633146110fb5760405162461bcd60e51b8152600401610bc7906131ba565b601555565b6008546001600160a01b0316331461112a5760405162461bcd60e51b8152600401610bc7906131ba565b601b541561117a5760405162461bcd60e51b815260206004820152601b60248201527f52616e646f6d2068617320616c7265616479206265656e2073657400000000006044820152606401610bc7565b600954600d54600e546040516305d3b1d360e41b81526004810192909252660100000000000081046001600160401b03166024830152640100000000810461ffff16604483015263ffffffff166064820152600160848201526001600160a01b0390911690635d3b1d309060a401602060405180830381600087803b15801561120257600080fd5b505af1158015611216573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061123a9190612e73565b50565b6008546001600160a01b031633146112675760405162461bcd60e51b8152600401610bc7906131ba565b601755565b6008546001600160a01b031633146112965760405162461bcd60e51b8152600401610bc7906131ba565b6001600160a01b0382166112bc5760405162461bcd60e51b8152600401610bc79061313d565b60405163a9059cbb60e01b81526001600160a01b0383811660048301526024820183905284169063a9059cbb90604401602060405180830381600087803b15801561130657600080fd5b505af115801561131a573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061133e9190612d92565b50505050565b600061134f8261224e565b5192915050565b60006001600160a01b03821661137f576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b03166000908152600560205260409020546001600160401b031690565b6008546001600160a01b031633146113ce5760405162461bcd60e51b8152600401610bc7906131ba565b6113d86000612368565b565b600f81600581106113ea57600080fd5b0154905081565b606060038054610ad6906132ad565b6008546001600160a01b0316331461142a5760405162461bcd60e51b8152600401610bc7906131ba565b601a55565b6001600160a01b0382163314156114595760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6008546001600160a01b031633146114ef5760405162461bcd60e51b8152600401610bc7906131ba565b610d81600f826005612b16565b6008546001600160a01b031633146115265760405162461bcd60e51b8152600401610bc7906131ba565b610cf8601d8383612a92565b6008546001600160a01b0316331461155c5760405162461bcd60e51b8152600401610bc7906131ba565b600e805460ff60801b198116600160801b9182900460ff1615909102179055565b600e54600160801b900460ff166115d65760405162461bcd60e51b815260206004820181905260248201527f5472616e7366657273206172652063757272656e746c792064697361626c65646044820152606401610bc7565b61133e848484846123ba565b6000600e54600160701b900460ff16600381111561160257611602613343565b14156116455760405162461bcd60e51b815260206004820152601260248201527153616c65206973206e6f742061637469766560701b6044820152606401610bc7565b338383836003600e54600160701b900460ff16600381111561166957611669613343565b14806116e5575060408051606086901b6bffffffffffffffffffffffff191660208083019190915282516014818403018152603490920190925280519101206116e59083838080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525061240592505050565b6117575760405162461bcd60e51b815260206004820152603c60248201527f546869732061646472657373206973206e6f742077686974656c69737465642060448201527f6f72206861732072656163686564206d6178696d756d206d696e7473000000006064820152608401610bc7565b6018548711156117a45760405162461bcd60e51b815260206004820152601860248201527704d696e74696e6720776f756c6420657863656564206361760441b6044820152606401610bc7565b6001600e54600160701b900460ff1660038111156117c4576117c4613343565b141561197c5760155487146118275760405162461bcd60e51b815260206004820152602360248201527f50726573616c65206d757374206d696e74206120737065636966696320616d6f6044820152621d5b9d60ea1b6064820152608401610bc7565b3487601454611836919061324b565b11156118545760405162461bcd60e51b8152600401610bc790613183565b6016548711156118b45760405162461bcd60e51b815260206004820152602560248201527f546865726520617265206e6f7420656e6f756768206c65667420666f722070726044820152646573616c6560d81b6064820152608401610bc7565b601954336000908152601f60205260409020546118d290899061321f565b111561193b5760405162461bcd60e51b815260206004820152603260248201527f546869732077616c6c657420686173207265616368656420746865206d61786960448201527136bab690383932b9b0b6329036b4b73a399760711b6064820152608401610bc7565b866016600082825461194d919061326a565b9091555050336000908152601f60205260408120805489929061197190849061321f565b90915550611ae49050565b6002600e54600160701b900460ff16600381111561199c5761199c613343565b1415611a91573487600f6119b160018361326a565b600581106119c1576119c1613359565b01546119cd919061324b565b11156119eb5760405162461bcd60e51b8152600401610bc790613183565b601a54336000908152602080526040902054611a0890899061321f565b1115611a735760405162461bcd60e51b815260206004820152603460248201527f546869732077616c6c657420686173207265616368656420746865206d61786960448201527336bab6903bb434ba32b634b9ba1036b4b73a399760611b6064820152608401610bc7565b3360009081526020805260408120805489929061197190849061321f565b6003600e54600160701b900460ff166003811115611ab157611ab1613343565b1415611ae4573487601754611ac6919061324b565b1115611ae45760405162461bcd60e51b8152600401610bc790613183565b8660186000828254611af6919061326a565b90915550611b0690503388612234565b50505050505050565b600e54600160781b900460ff16611b685760405162461bcd60e51b815260206004820152601960248201527f52657665616c206973206e6f742079657420656e61626c6564000000000000006044820152606401610bc7565b600e54600160881b900460ff1615611bce5760405162461bcd60e51b815260206004820152602360248201527f416c6c204e465473206861766520616c7265616479206265656e2072657665616044820152621b195960ea1b6064820152608401610bc7565b611bd78161217d565b611c335760405162461bcd60e51b815260206004820152602760248201527f43616e6e6f742072657665616c20616e204e4654207468617420646f65736e276044820152661d08195e1a5cdd60ca1b6064820152608401610bc7565b33611c3d82611344565b6001600160a01b031614611ca35760405162461bcd60e51b815260206004820152602760248201527f43616e6e6f742072657665616c20616e204e4654207468617420796f7520646f6044820152663713ba1037bbb760c91b6064820152608401610bc7565b60008181526021602052604090205460ff1615611d1e5760405162461bcd60e51b815260206004820152603360248201527f43616e6e6f742072657665616c20616e204e465420746861742068617320616c6044820152721c9958591e481899595b881c995d99585b1959606a1b6064820152608401610bc7565b60008181526021602052604090819020805460ff191660011790555133907fc100f01fdaa206bf36f50fd3c33f747cd602df3abaed791458e1d50d6084e12590611d749084904290918252602082015260400190565b60405180910390a250565b6008546001600160a01b03163314611da95760405162461bcd60e51b8152600401610bc7906131ba565b600e805460ff60781b198116600160781b9182900460ff1615909102179055565b601d8054611dd7906132ad565b80601f0160208091040260200160405190810160405280929190818152602001828054611e03906132ad565b8015611e505780601f10611e2557610100808354040283529160200191611e50565b820191906000526020600020905b815481529060010190602001808311611e3357829003601f168201915b505050505081565b6008546001600160a01b03163314611e825760405162461bcd60e51b8152600401610bc7906131ba565b600e805460ff60881b198116600160881b9182900460ff1615909102179055565b6060611eae8261217d565b611f125760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610bc7565b60015460005403601854611f26919061321f565b8210611f805760405162461bcd60e51b8152602060048201526024808201527f5468697320746f6b656e2069732067726561746572207468616e206d6178537560448201526370706c7960e01b6064820152608401610bc7565b60008281526021602052604090205460ff16151560011480611fb05750600e54600160881b900460ff1615156001145b1561201757601e611ff0611fc76001546000540390565b601854611fd4919061321f565b601b54611fe1908661321f565b611feb9190613303565b61241b565b60405160200161200192919061300a565b6040516020818303038152906040529050919050565b601d8054612024906132ad565b80601f0160208091040260200160405190810160405280929190818152602001828054612050906132ad565b801561209d5780601f106120725761010080835404028352916020019161209d565b820191906000526020600020905b81548152906001019060200180831161208057829003601f168201915b50505050509050919050565b601e8054611dd7906132ad565b6008546001600160a01b031633146120e05760405162461bcd60e51b8152600401610bc7906131ba565b601c55565b6008546001600160a01b0316331461210f5760405162461bcd60e51b8152600401610bc7906131ba565b6001600160a01b0381166121745760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610bc7565b61123a81612368565b6000805482108015610ac1575050600090815260046020526040902054600160e01b900460ff161590565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b8060008151811061221757612217613359565b6020026020010151601b819055505050565b610cf8838383612520565b610d81828260405180602001604052806000815250612734565b60408051606081018252600080825260208201819052918101919091528160005481101561234f57600081815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff1615159181018290529061234d5780516001600160a01b0316156122e4579392505050565b5060001901600081815260046020908152604091829020825160608101845290546001600160a01b038116808352600160a01b82046001600160401b031693830193909352600160e01b900460ff1615159281019290925215612348579392505050565b6122e4565b505b604051636f96cda160e11b815260040160405180910390fd5b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6123c5848484612520565b6001600160a01b0383163b151580156123e757506123e584848484612741565b155b1561133e576040516368d2bf6b60e11b815260040160405180910390fd5b600061241482601c5485612838565b9392505050565b60608161243f5750506040805180820190915260018152600360fc1b602082015290565b8160005b81156124695780612453816132e8565b91506124629050600a83613237565b9150612443565b6000816001600160401b038111156124835761248361336f565b6040519080825280601f01601f1916602001820160405280156124ad576020820181803683370190505b5090505b8415612518576124c260018361326a565b91506124cf600a86613303565b6124da90603061321f565b60f81b8183815181106124ef576124ef613359565b60200101906001600160f81b031916908160001a905350612511600a86613237565b94506124b1565b949350505050565b600061252b8261224e565b80519091506000906001600160a01b0316336001600160a01b031614806125595750815161255990336109e4565b8061257457503361256984610b59565b6001600160a01b0316145b90508061259457604051632ce44b5f60e11b815260040160405180910390fd5b846001600160a01b031682600001516001600160a01b0316146125c95760405162a1148160e81b815260040160405180910390fd5b6001600160a01b0384166125f057604051633a954ecd60e21b815260040160405180910390fd5b61260060008484600001516121a8565b6001600160a01b038581166000908152600560209081526040808320805467ffffffffffffffff198082166001600160401b0392831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600490945282852080546001600160e01b031916909417600160a01b4290921691909102179092559086018083529120549091166126ea576000548110156126ea57825160008281526004602090815260409091208054918601516001600160401b0316600160a01b026001600160e01b03199092166001600160a01b03909316929092171790555b5082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b610cf8838383600161284e565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a02906127769033908990889088906004016130c5565b602060405180830381600087803b15801561279057600080fd5b505af19250505080156127c0575060408051601f3d908101601f191682019092526127bd91810190612de5565b60015b61281b573d8080156127ee576040519150601f19603f3d011682016040523d82523d6000602084013e6127f3565b606091505b508051612813576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050949350505050565b6000826128458584612a1e565b14949350505050565b6000546001600160a01b03851661287757604051622e076360e81b815260040160405180910390fd5b836128955760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038516600081815260056020908152604080832080546fffffffffffffffffffffffffffffffff1981166001600160401b038083168c0181169182176801000000000000000067ffffffffffffffff1990941690921783900481168c01811690920217909155858452600490925290912080546001600160e01b031916909217600160a01b42909216919091021790558080850183801561294657506001600160a01b0387163b15155b156129cf575b60405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a46129976000888480600101955088612741565b6129b4576040516368d2bf6b60e11b815260040160405180910390fd5b8082141561294c5782600054146129ca57600080fd5b612a15565b5b6040516001830192906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4808214156129d0575b5060005561272d565b600081815b8451811015612a8a576000858281518110612a4057612a40613359565b60200260200101519050808311612a665760008381526020829052604090209250612a77565b600081815260208490526040902092505b5080612a82816132e8565b915050612a23565b509392505050565b828054612a9e906132ad565b90600052602060002090601f016020900481019282612ac05760008555612b06565b82601f10612ad95782800160ff19823516178555612b06565b82800160010185558215612b06579182015b82811115612b06578235825591602001919060010190612aeb565b50612b12929150612b44565b5090565b8260058101928215612b06579160200282015b82811115612b06578251825591602001919060010190612b29565b5b80821115612b125760008155600101612b45565b600060208284031215612b6b57600080fd5b813561241481613385565b60008060408385031215612b8957600080fd5b8235612b9481613385565b946020939093013593505050565b60008060408385031215612bb557600080fd5b8235612bc081613385565b91506020830135612bd081613385565b809150509250929050565b600080600060608486031215612bf057600080fd5b8335612bfb81613385565b92506020840135612c0b81613385565b929592945050506040919091013590565b60008060008060808587031215612c3257600080fd5b8435612c3d81613385565b9350602085810135612c4e81613385565b93506040860135925060608601356001600160401b0380821115612c7157600080fd5b818801915088601f830112612c8557600080fd5b813581811115612c9757612c9761336f565b612ca9601f8201601f191685016131ef565b91508082528984828501011115612cbf57600080fd5b808484018584013760008482840101525080935050505092959194509250565b60008060408385031215612cf257600080fd5b8235612cfd81613385565b91506020830135612bd08161339a565b600060a08284031215612d1f57600080fd5b82601f830112612d2e57600080fd5b60405160a081018181106001600160401b0382111715612d5057612d5061336f565b604052808360a08101861015612d6557600080fd5b60005b6005811015612d87578135835260209283019290910190600101612d68565b509195945050505050565b600060208284031215612da457600080fd5b81516124148161339a565b600060208284031215612dc157600080fd5b5035919050565b600060208284031215612dda57600080fd5b8135612414816133a8565b600060208284031215612df757600080fd5b8151612414816133a8565b60008060208385031215612e1557600080fd5b82356001600160401b0380821115612e2c57600080fd5b818501915085601f830112612e4057600080fd5b813581811115612e4f57600080fd5b866020828501011115612e6157600080fd5b60209290920196919550909350505050565b600060208284031215612e8557600080fd5b5051919050565b600080600060408486031215612ea157600080fd5b8335925060208401356001600160401b0380821115612ebf57600080fd5b818601915086601f830112612ed357600080fd5b813581811115612ee257600080fd5b8760208260051b8501011115612ef757600080fd5b6020830194508093505050509250925092565b60008060408385031215612f1d57600080fd5b823591506020808401356001600160401b0380821115612f3c57600080fd5b818601915086601f830112612f5057600080fd5b813581811115612f6257612f6261336f565b8060051b9150612f738483016131ef565b8181528481019084860184860187018b1015612f8e57600080fd5b600095505b83861015612fb1578035835260019590950194918601918601612f93565b508096505050505050509250929050565b60008151808452612fda816020860160208601613281565b601f01601f19169290920160200192915050565b60008151613000818560208601613281565b9290920192915050565b600080845481600182811c91508083168061302657607f831692505b602080841082141561304657634e487b7160e01b86526022600452602486fd5b81801561305a576001811461306b57613098565b60ff19861689528489019650613098565b60008b81526020902060005b868110156130905781548b820152908501908301613077565b505084890196505b5050505050506130bc6130ab8286612fee565b64173539b7b760d91b815260050190565b95945050505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906130f890830184612fc2565b9695505050505050565b602081016004831061312457634e487b7160e01b600052602160045260246000fd5b91905290565b6020815260006124146020830184612fc2565b60208082526026908201527f43616e6e6f74207265636f76657220746f6b656e7320746f207468652030206160408201526564647265737360d01b606082015260800190565b60208082526019908201527f56616c75652073656e74206973206e6f7420636f727265637400000000000000604082015260600190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b604051601f8201601f191681016001600160401b03811182821017156132175761321761336f565b604052919050565b6000821982111561323257613232613317565b500190565b6000826132465761324661332d565b500490565b600081600019048311821515161561326557613265613317565b500290565b60008282101561327c5761327c613317565b500390565b60005b8381101561329c578181015183820152602001613284565b8381111561133e5750506000910152565b600181811c908216806132c157607f821691505b602082108114156132e257634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156132fc576132fc613317565b5060010190565b6000826133125761331261332d565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052602160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160a01b038116811461123a57600080fd5b801515811461123a57600080fd5b6001600160e01b03198116811461123a57600080fdfea26469706673582212203a24c21a5d95b7e689459c8105a5cec7e934d8e1658205e7c031b0d45c0c7fa764736f6c63430008070033

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

0000000000000000000000000000000000000000000000000000000000000010

-----Decoded View---------------
Arg [0] : subscriptionId (uint64): 16

-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000010


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.