ETH Price: $3,455.24 (+2.50%)
Gas: 3 Gwei

Token

MonsterChampionsGenesis (MCGEN)
 

Overview

Max Total Supply

3,220 MCGEN

Holders

366

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
sylvnco.eth
Balance
3 MCGEN
0xeF2623fef4519158A93E47cc8BaF97e0B93cD40c
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

Monster Champions is a blockchain-based RPG on the Polygon Network where players will explore, fight, trade, and learn as a community. Engage in tactical turn-based combat with both active and idle-play options, and generate earnings along the way.

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
MonsterChampionsGenesis

Compiler Version
v0.8.11+commit.d7f03943

Optimization Enabled:
Yes with 2000 runs

Other Settings:
default evmVersion
File 1 of 24 : MonsterChampionsGenesis.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.11;

import './MCGenesisBase.sol';
import './MCGenesisSplits.sol';

/**
 * @title Monster Champions Genesis Project
 * 
 *            ▄▄▄▄███▄▄▄▄    ▄██████▄  ███▄▄▄▄      ▄████████     ███        ▄████████    ▄███████▄                    
 *          ▄██▀▀▀███▀▀▀██▄ ███    ███ ███▀▀▀██▄   ███    ███ ▀█████████▄   ███    ███   ███    ███                    
 *          ███   ███   ███ ███    ███ ███   ███   ███    █▀     ▀███▀▀██   ███    █▀    ███    ███                    
 *          ███   ███   ███ ███    ███ ███   ███   ███            ███   ▀  ▄███▄▄▄      ▄███▄▄▄▄██▀                    
 *          ███   ███   ███ ███    ███ ███   ███ ▀███████████     ███     ▀▀███▀▀▀     ▀▀███▀▀▀▀▀                      
 *          ███   ███   ███ ███    ███ ███   ███          ███     ███       ███    █▄  ▀███████████                    
 *          ███   ███   ███ ███    ███ ███   ███    ▄█    ███     ███       ███    ███   ███    ███                    
 *           ▀█   ███   █▀   ▀██████▀   ▀█   █▀   ▄████████▀     ▄████▀     ██████████   ███    ███                    
 *                                                                                       ▀██    ▀██▄           
 *  ▄████████    ▄█    █▄       ▄████████   ▄▄▄▄███▄▄▄▄      ▄███████▄  ▄█   ▄██████▄  ███▄▄▄▄      ▄████████      
 * ███    ███   ███    ███     ███    ███ ▄██▀▀▀███▀▀▀██▄   ███    ███ ███  ███    ███ ███▀▀▀██▄   ███    ███      
 * ███    █▀    ███    ███     ███    ███ ███   ███   ███   ███    ███ ███▌ ███    ███ ███   ███   ███    █▀       
 * ███         ▄███▄▄▄▄███▄▄   ███    ███ ███   ███   ███   ███    ███ ███▌ ███    ███ ███   ███   ███             
 * ███        ▀▀███▀▀▀▀███▀  ▀███████████ ███   ███   ███ ▀█████████▀  ███▌ ███    ███ ███   ███ ▀███████████      
 * ███    █▄    ███    ███     ███    ███ ███   ███   ███   ███        ███  ███    ███ ███   ███          ███      
 * ███    ███   ███    ███     ███    ███ ███   ███   ███   ███        ███  ███    ███ ███   ███    ▄█    ███      
 * ▀███████▀    ███    █▀      ███    █▀   ▀█   ███   █▀   ▄████▀      █▀    ▀██████▀   ▀█   █▀   ▄████████▀       
 *
 * Credit to https://patorjk.com/ for text generator.
 */
contract MonsterChampionsGenesis is MCGenesisSplits, MCGenesisBase {
    constructor()
        MCGenesisBase(
            "MonsterChampionsGenesis",
            "MCGEN",
            'https://nftculture.mypinata.cloud/ipfs/QmXJUb2XrSfdYXqW4rS3CmJJnYwZTYFcC4H6QBHYyi4zSc/', // Prereveal V6
            addresses,
            splits
        )
    {
        // Implementation version: 1
    }
}

File 2 of 24 : MCGenesisBase.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.11;

// NFTC Open Source Contracts See: https://github.com/NFTCulture/nftc-open-contracts
import '@nftculture/nftc-open-contracts/contracts/security/GuardedAgainstContracts.sol';
import '@nftculture/nftc-open-contracts/contracts/financial/LockedPaymentSplitter.sol';

// NFTC Prerelease Contracts
import '@nftculture/nftc-contract-library/contracts/whitelisting/MerkleLeaves.sol';
import '@nftculture/nftc-contract-library/contracts/token/TwoPhaseAlternateMint.sol';

// NFTC Prerelease Libraries
import {MerkleClaimList} from '@nftculture/nftc-contract-library/contracts/whitelisting/MerkleClaimList.sol';

// ERC721A from Chiru Labs
import 'erc721a/contracts/ERC721A.sol';

// OZ Libraries
import '@openzeppelin/contracts/security/ReentrancyGuard.sol';
import '@openzeppelin/contracts/access/Ownable.sol';

// Error Codes
error ExceedsMaxSupply();
error ExceedsPresaleSupply();
error ProofInvalidPresale();

/**
 * @title MCGenesisBase
 * @author @J | NFT Culture, @NiftyMike | NFT Culture
 * @dev Standard ERC721a Implementation with 2 Phase Mint
 *
 * Visit the NFTC Labs open source repo on github to learn more about the code:
 * https://github.com/NFTCulture/nftc-open-contracts
 */
abstract contract MCGenesisBase is
    ERC721A,
    Ownable,
    GuardedAgainstContracts,
    ReentrancyGuard,
    LockedPaymentSplitter,
    TwoPhaseAlternateMint,
    MerkleLeaves
{
    using Strings for uint256;
    using MerkleClaimList for MerkleClaimList.Root;

    uint256 private constant MAX_NFTS_FOR_SALE = 9999;
    uint256 private constant MAX_NFTS_FOR_PRESALE = 7777;

    uint256 private constant MAX_PRESALE_BATCH_SIZE = 20;
    uint256 private constant MAX_PUBLIC_BATCH_SIZE = 20;

    uint256 private constant MAX_RESERVE_BATCH_SIZE = 100;

    string public baseURI;

    MerkleClaimList.Root private _presaleRoot;

    constructor(
        string memory __name,
        string memory __symbol,
        string memory __baseURI,
        address[] memory __addresses,
        uint256[] memory __splits
    )
        ERC721A(__name, __symbol)
        SlimPaymentSplitter(__addresses, __splits)
        TwoPhaseAlternateMint(0.069 ether, 0.069 ether)
    {
        baseURI = __baseURI;
    }

    function maxSupply() external pure returns (uint256) {
        return MAX_NFTS_FOR_SALE;
    }

    function publicMintBatchSize() external pure returns (uint256) {
        return MAX_PUBLIC_BATCH_SIZE;
    }

    function isOpenEdition() external pure returns (bool) {
        // Front end minting websites should treat this mint as an open edition, even though there is a hard cap.
        return false;
    }

    function setBaseURI(string memory __baseUri) external onlyOwner {
        baseURI = __baseUri;
    }

    function setMerkleRoot(bytes32 __presaleRoot) external onlyOwner {
        if (__presaleRoot != 0) {
            _presaleRoot._setRoot(__presaleRoot);
        }
    }

    function checkPresale(bytes32[] calldata proof, address wallet) external view returns (bool) {
        return _presaleRoot._checkLeaf(proof, _generateLeaf(wallet));
    }

    function getNextPresaleIndex(address wallet) external view returns (uint256) {
        // No need to specifically track presale purchases with aux, since this is an open presale.
        return this.balanceOf(wallet);
    }

    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        require(_exists(tokenId), 'No token');

        string memory base = _baseURI();
        require(bytes(base).length > 0, 'Base unset');

        return string(abi.encodePacked(base, _tokenFilename(tokenId)));
    }

    /**
     * @notice Owner: reserve tokens for team.
     *
     * @param friends addresses to send tokens  to.
     * @param count the number of tokens to mint.
     */
    function reserveTokens(address[] memory friends, uint256 count) external onlyOwner {
        require(0 < count && count <= MAX_RESERVE_BATCH_SIZE, 'Invalid count');

        uint256 totalMinted = _totalMinted(); // track locally to save gas.

        uint256 idx;
        for (idx = 0; idx < friends.length; idx++) {
            _internalMintTokens(friends[idx], totalMinted, count);
            totalMinted += count;
        }
    }

    /**
     * @notice Presale tokens - purchase bound by terms & conditions of project.
     *
     * @param proof merkle proof for presale.
     * @param count the number of tokens to mint.
     */
    function presaleTokens(bytes32[] calldata proof, uint256 count) external payable nonReentrant onlyUsers isPresale {
        require(0 < count && count <= MAX_PRESALE_BATCH_SIZE, 'Invalid count');
        require(msg.value == presalePricePerNft * count, 'Invalid price');

        uint256 totalMinted = _totalMinted(); // track locally to save gas.
        if (totalMinted + count > MAX_NFTS_FOR_PRESALE) revert ExceedsPresaleSupply();

        _presaleTokens(msg.sender, proof, totalMinted, count);
    }

    /**
     * @notice Mint tokens - purchase bound by terms & conditions of project.
     *
     * @param count the number of tokens to mint.
     */
    function mintTokens(uint256 count) external payable nonReentrant onlyUsers isPublicMinting {
        require(0 < count && count <= MAX_PUBLIC_BATCH_SIZE, 'Invalid count');
        require(msg.value == publicMintPricePerNft * count, 'Invalid price');

        _internalMintTokens(msg.sender, _totalMinted(), count);
    }

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

    function _tokenFilename(uint256 tokenId) internal pure virtual returns (string memory) {
        return tokenId.toString();
    }

    function _presaleTokens(
        address minter,
        bytes32[] calldata proof,
        uint256 totalMinted,
        uint256 count
    ) internal {
        // Verify address is eligible for presale mints.
        if (!_presaleRoot._checkLeaf(proof, _generateLeaf(minter))) revert ProofInvalidPresale();

        _internalMintTokens(minter, totalMinted, count);
    }

    function _internalMintTokens(
        address minter,
        uint256 totalMinted,
        uint256 count
    ) internal {
        if (totalMinted + count > MAX_NFTS_FOR_SALE) revert ExceedsMaxSupply();

        _safeMint(minter, count);
    }
}

File 3 of 24 : MCGenesisSplits.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.11;

contract MCGenesisSplits {
    address[] internal addresses = [
        0xcA6ebEEB2fC3cea204e17541Bc75Ac6586AEd31c, // Project Wallet
        0x0a701C5f7063656354e5701176AeB9aB7552d30F, // Founders Wallet
        0x4474efe96982D38997B5BbF231EABB587201124E  // Dev Wallet
    ];

    uint256[] internal splits = [75, 10, 15];
}

File 4 of 24 : GuardedAgainstContracts.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.11;

/**
 * @title GuardedAgainstContracts
 * @author @NiftyMike, NFT Culture
 * @dev Helper contract to help protect against contract based mint spamming attacks.
 */
abstract contract GuardedAgainstContracts {
    modifier onlyUsers() {
        require(tx.origin == msg.sender, 'Must be user');
        _;
    }
}

File 5 of 24 : LockedPaymentSplitter.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.11;

import "./SlimPaymentSplitter.sol";
import "@openzeppelin/contracts/access/Ownable.sol";

/**
 * @title LockedPaymentSplitter
 * @author @NiftyMike, NFT Culture
 * @dev A wrapper around SlimPaymentSplitter which adds on security elements.
 *
 * Based on OpenZeppelin Contracts v4.4.1 (finance/PaymentSplitter.sol)
 */
abstract contract LockedPaymentSplitter is SlimPaymentSplitter, Ownable {
    /**
     * @dev Overrides release() method, so that it can only be called by owner.
     * @notice Owner: Release funds to a specific address.
     *
     * @param account Payable address that will receive funds.
     */
    function release(address payable account) public override onlyOwner {
        super.release(account);
    }

    /**
     * @dev Triggers a transfer to caller's address of the amount of Ether they are owed, according to their percentage of the
     * total shares and their previous withdrawals.
     * @notice Sender: request payment.
     */
    function releaseToSelf() public {
        super.release(payable(msg.sender));
    }
}

File 6 of 24 : MerkleLeaves.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.11;

/**
 * @title MerkleLeaves
 * @author @NiftyMike, NFT Culture
 * @dev Merkle Leaves for Merkle Trees - This is a companion contract to NFTC Labs' MerkleClaimList.sol library.
 * It provides leaf generation functions for both indexed and non-indexed merkle trees.
 * It also provides wrapper methods to expose the leaf generation functions to off-chain callers.
 *
 * Off-chain access is useful, because both the contract and the caller need to be able to generate the
 * leaves in a perfectly identical manner, so the generators are exposed to make it easier.
 */
abstract contract MerkleLeaves {
    /**
     * @notice External: generate a leaf for a wallet.
     *
     * @param wallet Address to hash.
     */
    function getLeafFor(address wallet) external pure returns (bytes32) {
        return _generateLeaf(wallet);
    }

    /**
     * @notice External: generate a leaf for a wallet and an embedded index value.
     *
     * @param wallet Address to hash.
     * @param index integer index to assign the leaf.
     */
    function getIndexedLeafFor(address wallet, uint256 index)
        external
        pure
        returns (bytes32)
    {
        return _generateIndexedLeaf(wallet, index);
    }

    /**
     * @dev Generate a merkle leaf based only on a wallet address. This is useful when all users
     * represented in the tree are eligible for the exact same thing, such as one free mint.
     *
     * A tiered system can be supported by this approach, by making seperate merkle trees and
     * mint functions per tier, but that approach will become ungainly if you have to support more
     * than a few tiers.
     */
    function _generateLeaf(address wallet) internal pure returns (bytes32) {
        return keccak256(abi.encodePacked(wallet));
    }

    /**
     * @dev Generate a merkle leaf based on a wallet address and an index. This is useful when all
     * users represented in the tree are eligible for different amounts of something.
     */
    function _generateIndexedLeaf(address wallet, uint256 index)
        internal
        pure
        returns (bytes32)
    {
        return keccak256(abi.encodePacked(wallet, "_", index));
    }
}

File 7 of 24 : TwoPhaseAlternateMint.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.11;

// NFTC Open Source Libraries See: https://github.com/NFTCulture/nftc-open-contracts
import {BooleanPacking} from "@nftculture/nftc-open-contracts/contracts/utility/BooleanPacking.sol";

// OZ Libraries
import "@openzeppelin/contracts/access/Ownable.sol";

/**
 * @title Two Phase Mint, Alternate Implementation
 * @author @NiftyMike, NFT Culture
 * @dev All the code needed to support a Two Phase mint in a standard way.
 *
 * Phase 1 - Presale
 * Phase 2 - Public Mint
 *
 * Phases are independent and can be run concurrently or exclusively.
 */
contract TwoPhaseAlternateMint is Ownable {
    using BooleanPacking for uint256;

    uint256 private constant PRESALE_PHASE = 1;
    uint256 private constant PUBLIC_MINT_PHASE = 2;

    // BooleanPacking used on mintControlFlags
    uint256 private mintControlFlags;

    uint256 public presalePricePerNft;
    uint256 public publicMintPricePerNft;

    modifier isPresale() {
        require(mintControlFlags.getBoolean(PRESALE_PHASE), 'Presale stopped');
        _;
    }

    modifier isPublicMinting() {
        require(mintControlFlags.getBoolean(PUBLIC_MINT_PHASE), 'Minting stopped');
        _;
    }

    constructor(
        uint256 __presalePricePerNft,
        uint256 __publicMintPricePerNft
    ) {
        presalePricePerNft = __presalePricePerNft;
        publicMintPricePerNft = __publicMintPricePerNft;
    }

    function setMintingState(
        bool __presaleActive,
        bool __publicMintingActive,
        uint256 __presalePricePerNft,
        uint256 __publicMintPricePerNft
    ) external onlyOwner {
        uint256 tempControlFlags;

        tempControlFlags = tempControlFlags.setBoolean(
            PRESALE_PHASE,
            __presaleActive
        );
        tempControlFlags = tempControlFlags.setBoolean(
            PUBLIC_MINT_PHASE,
            __publicMintingActive
        );

        mintControlFlags = tempControlFlags;

        if (__presalePricePerNft > 0) {
            presalePricePerNft = __presalePricePerNft;
        }

        if (__publicMintPricePerNft > 0) {
            publicMintPricePerNft = __publicMintPricePerNft;
        }
    }

    function isPresaleActive() external view returns (bool) {
        return mintControlFlags.getBoolean(PRESALE_PHASE);
    }

    function isPublicMintingActive() external view returns (bool) {
        return mintControlFlags.getBoolean(PUBLIC_MINT_PHASE);
    }

    function supportedPhases() external pure returns (uint256) {
        return PUBLIC_MINT_PHASE;
    }
}

File 8 of 24 : MerkleClaimList.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.11;

import {MerkleRoot} from './MerkleRoot.sol';

/**
 * @title MerkleClaimList
 * @author @NiftyMike, NFT Culture
 * @dev Basic functionality for a MerkleTree that will be used as a "Claimlist"
 *
 * "Claimlist" - an approach for validating callers that is backed by a Merkle Tree.
 * Cheap to set the master claim, not that expensive to check the claim. Requires
 * off-chain generation of the Merkle Tree.
 *
 * This library allows you to declare a member variable like:
 * MerkleClaimList.Root private _claimRoot;
 *
 * The benefit of packaging this as a library, is that if you need multiple merkle trees in your
 * contract, you can declare multiple member variables using this library, and use them in similar fashion.
 *
 * see also: NFTC Labs' MerkleLeaves.sol, which is a companion abstract contract which contains helper
 * methods for generating leaves for the Merkle Tree.
 */
library MerkleClaimList {
    using MerkleRoot for bytes32;

    struct Root {
        // This variable should never be directly accessed by users of the library. See OZ comments in other libraries for more info.
        bytes32 _root;
    }

    /**
     * @dev Validate that a leaf is part of this merkle tree.
     */
    function _checkLeaf(
        Root storage root,
        bytes32[] calldata proof,
        bytes32 leaf
    ) internal view returns (bool) {
        return root._root.check(proof, leaf);
    }

    /**
     * @dev Set the root of this merkle tree.
     */
    function _setRoot(Root storage root, bytes32 __root) internal {
        root._root = __root;
    }
}

File 9 of 24 : 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 10 of 24 : ReentrancyGuard.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (security/ReentrancyGuard.sol)

pragma solidity ^0.8.0;

/**
 * @dev Contract module that helps prevent reentrant calls to a function.
 *
 * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier
 * available, which can be applied to functions to make sure there are no nested
 * (reentrant) calls to them.
 *
 * Note that because there is a single `nonReentrant` guard, functions marked as
 * `nonReentrant` may not call one another. This can be worked around by making
 * those functions `private`, and then adding `external` `nonReentrant` entry
 * points to them.
 *
 * TIP: If you would like to learn more about reentrancy and alternative ways
 * to protect against it, check out our blog post
 * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul].
 */
abstract contract ReentrancyGuard {
    // Booleans are more expensive than uint256 or any type that takes up a full
    // word because each write operation emits an extra SLOAD to first read the
    // slot's contents, replace the bits taken up by the boolean, and then write
    // back. This is the compiler's defense against contract upgrades and
    // pointer aliasing, and it cannot be disabled.

    // The values being non-zero value makes deployment a bit more expensive,
    // but in exchange the refund on every call to nonReentrant will be lower in
    // amount. Since refunds are capped to a percentage of the total
    // transaction's gas, it is best to keep them low in cases like this one, to
    // increase the likelihood of the full refund coming into effect.
    uint256 private constant _NOT_ENTERED = 1;
    uint256 private constant _ENTERED = 2;

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

    /**
     * @dev Prevents a contract from calling itself, directly or indirectly.
     * Calling a `nonReentrant` function from another `nonReentrant`
     * function is not supported. It is possible to prevent this from happening
     * by making the `nonReentrant` function external, and making it call a
     * `private` function that does the actual work.
     */
    modifier nonReentrant() {
        // On the first call to nonReentrant, _notEntered will be true
        require(_status != _ENTERED, "ReentrancyGuard: reentrant call");

        // Any calls to nonReentrant after this point will fail
        _status = _ENTERED;

        _;

        // By storing the original value once again, a refund is triggered (see
        // https://eips.ethereum.org/EIPS/eip-2200)
        _status = _NOT_ENTERED;
    }
}

File 11 of 24 : 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 12 of 24 : SlimPaymentSplitter.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.11;

import "@openzeppelin/contracts/utils/Address.sol";
import "@openzeppelin/contracts/utils/Context.sol";

/**
 * @title SlimPaymentSplitter
 * @author @NiftyMike, NFT Culture
 * @dev A drop-in slim replacement version of OZ's Payment Splitter. All ERC-20 token functionality removed.
 *
 * Based on OpenZeppelin Contracts v4.4.1 (finance/PaymentSplitter.sol)
 */
contract SlimPaymentSplitter is Context {
    event PayeeAdded(address account, uint256 shares);
    event PaymentReleased(address to, uint256 amount);
    event PaymentReceived(address from, uint256 amount);
    event PayeeTransferred(address oldOwner, address newOwner);

    uint256 private _totalShares;
    uint256 private _totalReleased;

    mapping(address => uint256) private _shares;
    mapping(address => uint256) private _released;

    address[] private _payees;

    /**
     * @dev Creates an instance of `PaymentSplitter` where each account in `payees` is assigned the number of shares at
     * the matching position in the `shares` array.
     *
     * All addresses in `payees` must be non-zero. Both arrays must have the same non-zero length, and there must be no
     * duplicates in `payees`.
     */
    constructor(address[] memory payees, uint256[] memory shares_) payable {
        require(
            payees.length == shares_.length,
            "PaymentSplitter: payees and shares length mismatch"
        );
        require(payees.length > 0, "PaymentSplitter: no payees");

        for (uint256 i = 0; i < payees.length; i++) {
            _addPayee(payees[i], shares_[i]);
        }
    }

    /**
     * @dev The Ether received will be logged with {PaymentReceived} events. Note that these events are not fully
     * reliable: it's possible for a contract to receive Ether without triggering this function. This only affects the
     * reliability of the events, and not the actual splitting of Ether.
     *
     * To learn more about this see the Solidity documentation for
     * https://solidity.readthedocs.io/en/latest/contracts.html#fallback-function[fallback
     * functions].
     */
    receive() external payable virtual {
        emit PaymentReceived(_msgSender(), msg.value);
    }

    /**
     * @dev Getter for the total shares held by payees.
     */
    function totalShares() public view returns (uint256) {
        return _totalShares;
    }

    /**
     * @dev Getter for the total amount of Ether already released.
     */
    function totalReleased() public view returns (uint256) {
        return _totalReleased;
    }

    /**
     * @dev Getter for the amount of shares held by an account.
     */
    function shares(address account) public view returns (uint256) {
        return _shares[account];
    }

    /**
     * @dev Getter for the amount of Ether already released to a payee.
     */
    function released(address account) public view returns (uint256) {
        return _released[account];
    }

    /**
     * @dev Getter for the address of the payee number `index`.
     */
    function payee(uint256 index) public view returns (address) {
        return _payees[index];
    }

    /**
     * @dev Triggers a transfer to `account` of the amount of Ether they are owed, according to their percentage of the
     * total shares and their previous withdrawals.
     */
    function release(address payable account) public virtual {
        require(_shares[account] > 0, "PaymentSplitter: account has no shares");

        uint256 totalReceived = address(this).balance + totalReleased();
        uint256 payment = _pendingPayment(
            account,
            totalReceived,
            released(account)
        );

        require(payment != 0, "PaymentSplitter: account is not due payment");

        _released[account] += payment;
        _totalReleased += payment;

        Address.sendValue(account, payment);
        emit PaymentReleased(account, payment);
    }

    /**
     * @dev internal logic for computing the pending payment of an `account` given the token historical balances and
     * already released amounts.
     */
    function _pendingPayment(
        address account,
        uint256 totalReceived,
        uint256 alreadyReleased
    ) private view returns (uint256) {
        return
            (totalReceived * _shares[account]) / _totalShares - alreadyReleased;
    }

    /**
     * @dev Add a new payee to the contract.
     * @param account The address of the payee to add.
     * @param shares_ The number of shares owned by the payee.
     */
    function _addPayee(address account, uint256 shares_) private {
        require(
            account != address(0),
            "PaymentSplitter: account is the zero address"
        );
        require(shares_ > 0, "PaymentSplitter: shares are 0");
        require(
            _shares[account] == 0,
            "PaymentSplitter: account already has shares"
        );

        _payees.push(account);
        _shares[account] = shares_;
        _totalShares = _totalShares + shares_;
        emit PayeeAdded(account, shares_);
    }


    /**
     * @dev Allows owner to transfer their shares to somebody else; it can only be called by of a share.
     * @notice Owner: Release funds to a specific address.
     *
     * @param newOwner Payable address which has no shares and will receive the shares of the current owner.
     */
    function transferPayee(address payable newOwner) public {
        require(newOwner != address(0), "PaymentSplitter: New payee is the zero address.");
        require(_shares[msg.sender] > 0, "PaymentSplitter: You have no shares.");
        require(
            _shares[newOwner] == 0, // why not _shares[newOwner] ??
            "PaymentSplitter: New payee already has shares."
        );

        _transferPayee(newOwner);
        emit PayeeTransferred(msg.sender, newOwner);
    }

    function _transferPayee(address newOwner) private {
        if (_payees.length == 0) return;

        for (uint i = 0; i < _payees.length - 1; i++) {
            if (_payees[i] == msg.sender) {
                _payees[i] = newOwner;
                _shares[newOwner] = _shares[msg.sender];
                _shares[msg.sender] = 0;
            }
        }
    }
}

File 13 of 24 : 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 14 of 24 : Context.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)

pragma solidity ^0.8.0;

/**
 * @dev Provides information about the current execution context, including the
 * sender of the transaction and its data. While these are generally available
 * via msg.sender and msg.data, they should not be accessed in such a direct
 * manner, since when dealing with meta-transactions the account sending and
 * paying for execution may not be the actual sender (as far as an application
 * is concerned).
 *
 * This contract is only required for intermediate, library-like contracts.
 */
abstract contract Context {
    function _msgSender() internal view virtual returns (address) {
        return msg.sender;
    }

    function _msgData() internal view virtual returns (bytes calldata) {
        return msg.data;
    }
}

File 15 of 24 : BooleanPacking.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.11;

/**
 * @title BooleanPacking
 * @author @NiftyMike, NFT Culture
 * @dev Credit to Zimri Leijen
 * See https://ethereum.stackexchange.com/a/92235
 */
library BooleanPacking {
    function getBoolean(uint256 _packedBools, uint256 _columnNumber)
        internal
        pure
        returns (bool)
    {
        uint256 flag = (_packedBools >> _columnNumber) & uint256(1);
        return (flag == 1 ? true : false);
    }

    function setBoolean(
        uint256 _packedBools,
        uint256 _columnNumber,
        bool _value
    ) internal pure returns (uint256) {
        if (_value) {
            _packedBools = _packedBools | (uint256(1) << _columnNumber);
            return _packedBools;
        } else {
            _packedBools = _packedBools & ~(uint256(1) << _columnNumber);
            return _packedBools;
        }
    }
}

File 16 of 24 : MerkleRoot.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.11;

import {MerkleProof} from '@openzeppelin/contracts/utils/cryptography/MerkleProof.sol';

/**
 * @title MerkleRoot
 * @author @NiftyMike, NFT Culture
 * @dev Companion library to OpenZeppelin's MerkleProof.
 * Allows you to abstract away merkle functionality a bit further, you now just need to
 * worry about dealing with your merkle root.
 *
 * Using this library allows you to treat bytes32 member variables as Merkle Roots, with a
 * slightly easier to use api then the OZ library.
 */
library MerkleRoot {
    using MerkleProof for bytes32[];

    function check(
        bytes32 root,
        bytes32[] calldata proof,
        bytes32 leaf
    ) internal pure returns (bool) {
        return proof.verify(root, leaf);
    }
}

File 17 of 24 : 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 18 of 24 : 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 19 of 24 : 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 20 of 24 : 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 21 of 24 : 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 22 of 24 : 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 23 of 24 : 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 24 of 24 : 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": 2000
  },
  "outputSelection": {
    "*": {
      "*": [
        "evm.bytecode",
        "evm.deployedBytecode",
        "devdoc",
        "userdoc",
        "metadata",
        "abi"
      ]
    }
  },
  "libraries": {}
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"ExceedsMaxSupply","type":"error"},{"inputs":[],"name":"ExceedsPresaleSupply","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ProofInvalidPresale","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":false,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"uint256","name":"shares","type":"uint256"}],"name":"PayeeAdded","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"oldOwner","type":"address"},{"indexed":false,"internalType":"address","name":"newOwner","type":"address"}],"name":"PayeeTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"from","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"PaymentReceived","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"PaymentReleased","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32[]","name":"proof","type":"bytes32[]"},{"internalType":"address","name":"wallet","type":"address"}],"name":"checkPresale","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"wallet","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"getIndexedLeafFor","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"pure","type":"function"},{"inputs":[{"internalType":"address","name":"wallet","type":"address"}],"name":"getLeafFor","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"pure","type":"function"},{"inputs":[{"internalType":"address","name":"wallet","type":"address"}],"name":"getNextPresaleIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isOpenEdition","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"pure","type":"function"},{"inputs":[],"name":"isPresaleActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isPublicMintingActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"pure","type":"function"},{"inputs":[{"internalType":"uint256","name":"count","type":"uint256"}],"name":"mintTokens","outputs":[],"stateMutability":"payable","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":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"payee","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"presalePricePerNft","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32[]","name":"proof","type":"bytes32[]"},{"internalType":"uint256","name":"count","type":"uint256"}],"name":"presaleTokens","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"publicMintBatchSize","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"pure","type":"function"},{"inputs":[],"name":"publicMintPricePerNft","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address payable","name":"account","type":"address"}],"name":"release","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"releaseToSelf","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"released","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"friends","type":"address[]"},{"internalType":"uint256","name":"count","type":"uint256"}],"name":"reserveTokens","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"__baseUri","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"__presaleRoot","type":"bytes32"}],"name":"setMerkleRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"__presaleActive","type":"bool"},{"internalType":"bool","name":"__publicMintingActive","type":"bool"},{"internalType":"uint256","name":"__presalePricePerNft","type":"uint256"},{"internalType":"uint256","name":"__publicMintPricePerNft","type":"uint256"}],"name":"setMintingState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"shares","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"supportedPhases","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"pure","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalReleased","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalShares","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address payable","name":"newOwner","type":"address"}],"name":"transferPayee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

60e060405273ca6ebeeb2fc3cea204e17541bc75ac6586aed31c6080908152730a701c5f7063656354e5701176aeb9ab7552d30f60a052734474efe96982d38997b5bbf231eabb587201124e60c0526200005e906000906003620005be565b5060408051606081018252604b8152600a6020820152600f918101919091526200008d90600190600362000628565b503480156200009b57600080fd5b506040518060400160405280601781526020017f4d6f6e737465724368616d70696f6e7347656e657369730000000000000000008152506040518060400160405280600581526020016426a1a3a2a760d91b815250604051806080016040528060568152602001620038a86056913960008054806020026020016040519081016040528092919081815260200182805480156200016257602002820191906000526020600020905b81546001600160a01b0316815260019091019060200180831162000143575b50505050506001805480602002602001604051908101604052809291908181526020018280548015620001b557602002820191906000526020600020905b815481526020019060010190808311620001a0575b505050505066f523226980800080838388888160049080519060200190620001df9291906200066b565b508051620001f59060059060208401906200066b565b506000600255505080518251146200026f5760405162461bcd60e51b815260206004820152603260248201527f5061796d656e7453706c69747465723a2070617965657320616e6420736861726044820152710cae640d8cadccee8d040dad2e6dac2e8c6d60731b60648201526084015b60405180910390fd5b6000825111620002c25760405162461bcd60e51b815260206004820152601a60248201527f5061796d656e7453706c69747465723a206e6f20706179656573000000000000604482015260640162000266565b60005b82518110156200032e5762000319838281518110620002e857620002e8620006ff565b6020026020010151838381518110620003055762000305620006ff565b60200260200101516200037a60201b60201c565b8062000325816200072b565b915050620002c5565b5050506200034b620003456200056860201b60201c565b6200056c565b600160105560129190915560135582516200036e9060149060208601906200066b565b505050505050620007a1565b6001600160a01b038216620003e75760405162461bcd60e51b815260206004820152602c60248201527f5061796d656e7453706c69747465723a206163636f756e74206973207468652060448201526b7a65726f206164647265737360a01b606482015260840162000266565b60008111620004395760405162461bcd60e51b815260206004820152601d60248201527f5061796d656e7453706c69747465723a20736861726573206172652030000000604482015260640162000266565b6001600160a01b0382166000908152600c602052604090205415620004b55760405162461bcd60e51b815260206004820152602b60248201527f5061796d656e7453706c69747465723a206163636f756e7420616c726561647960448201526a206861732073686172657360a81b606482015260840162000266565b600e8054600181019091557fbb7b4a454dc3493923482f07822329ed19e8244eff582cc204f8554c3620c3fd0180546001600160a01b0319166001600160a01b0384169081179091556000908152600c60205260409020819055600a546200051f90829062000749565b600a55604080516001600160a01b0384168152602081018390527f40c340f65e17194d14ddddb073d3c9f888e3cb52b5aae0c6c7706b4fbc905fac910160405180910390a15050565b3390565b600f80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b82805482825590600052602060002090810192821562000616579160200282015b828111156200061657825182546001600160a01b0319166001600160a01b03909116178255602090920191600190910190620005df565b5062000624929150620006e8565b5090565b82805482825590600052602060002090810192821562000616579160200282015b8281111562000616578251829060ff1690559160200191906001019062000649565b828054620006799062000764565b90600052602060002090601f0160209004810192826200069d576000855562000616565b82601f10620006b857805160ff191683800117855562000616565b8280016001018555821562000616579182015b8281111562000616578251825591602001919060010190620006cb565b5b80821115620006245760008155600101620006e9565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b600060001982141562000742576200074262000715565b5060010190565b600082198211156200075f576200075f62000715565b500190565b600181811c908216806200077957607f821691505b602082108114156200079b57634e487b7160e01b600052602260045260246000fd5b50919050565b6130f780620007b16000396000f3fe6080604052600436106102eb5760003560e01c80638b83209b11610184578063ce7c2ac2116100d6578063e27c429c1161008a578063e985e9c511610064578063e985e9c514610812578063f2fde38b1461085b578063fdb8e8a21461087b57600080fd5b8063e27c429c146107c9578063e33b7de3146107e9578063e8ad246f146107fe57600080fd5b8063d5abeb01116100bb578063d5abeb011461078a578063db828e5d1461079f578063e228c6fe146107b457600080fd5b8063ce7c2ac214610734578063cfb00c6d1461076a57600080fd5b806399f8cf3a11610138578063b88d4fde11610112578063b88d4fde146106d4578063c865815b146106f4578063c87b56dd1461071457600080fd5b806399f8cf3a1461067e578063a0e240621461069e578063a22cb465146106b457600080fd5b806395d89b411161016957806395d89b411461062057806397304ced146106355780639852595c1461064857600080fd5b80638b83209b146105e25780638da5cb5b1461060257600080fd5b80633a98ef391161023d5780636352211e116101f1578063715018a6116101cb578063715018a614610597578063722d1853146105ac5780637cb64759146105c257600080fd5b80636352211e146105425780636c0360eb1461056257806370a082311461057757600080fd5b806355f804b31161022257806355f804b3146104ed57806359a087c91461050d57806360d938dc1461052d57600080fd5b80633a98ef39146104b857806342842e0e146104cd57600080fd5b80630c79dfd51161029f5780631916558711610279578063191655871461046457806323b872dd1461048457806335841e50146104a457600080fd5b80630c79dfd514610418578063163480091461042b57806318160ddd1461044b57600080fd5b8063070c9a8a116102d0578063070c9a8a14610390578063081812fc146103be578063095ea7b3146103f657600080fd5b806301ffc9a71461033957806306fdde031461036e57600080fd5b36610334577f6ef95f06320e7a25a04a175ca677b7052bdd97131872c2192525a629f51be77033604080516001600160a01b0390921682523460208301520160405180910390a1005b600080fd5b34801561034557600080fd5b506103596103543660046129fe565b61088f565b60405190151581526020015b60405180910390f35b34801561037a57600080fd5b5061038361092c565b6040516103659190612a73565b34801561039c57600080fd5b506103b06103ab366004612a9b565b6109be565b604051908152602001610365565b3480156103ca57600080fd5b506103de6103d9366004612ab8565b610a42565b6040516001600160a01b039091168152602001610365565b34801561040257600080fd5b50610416610411366004612ad1565b610a9f565b005b610416610426366004612b49565b610b5f565b34801561043757600080fd5b50610416610446366004612a9b565b610d88565b34801561045757600080fd5b50600354600254036103b0565b34801561047057600080fd5b5061041661047f366004612a9b565b610f5e565b34801561049057600080fd5b5061041661049f366004612b95565b610fc4565b3480156104b057600080fd5b506000610359565b3480156104c457600080fd5b50600a546103b0565b3480156104d957600080fd5b506104166104e8366004612b95565b610fcf565b3480156104f957600080fd5b50610416610508366004612c75565b610fea565b34801561051957600080fd5b50610416610528366004612cd3565b61105b565b34801561053957600080fd5b506103596110f7565b34801561054e57600080fd5b506103de61055d366004612ab8565b61110d565b34801561056e57600080fd5b5061038361111f565b34801561058357600080fd5b506103b0610592366004612a9b565b6111ad565b3480156105a357600080fd5b50610416611215565b3480156105b857600080fd5b506103b060125481565b3480156105ce57600080fd5b506104166105dd366004612ab8565b61127b565b3480156105ee57600080fd5b506103de6105fd366004612ab8565b6112e5565b34801561060e57600080fd5b50600f546001600160a01b03166103de565b34801561062c57600080fd5b50610383611315565b610416610643366004612ab8565b611324565b34801561065457600080fd5b506103b0610663366004612a9b565b6001600160a01b03166000908152600d602052604090205490565b34801561068a57600080fd5b50610416610699366004612d15565b6114f9565b3480156106aa57600080fd5b506103b060135481565b3480156106c057600080fd5b506104166106cf366004612dcd565b611611565b3480156106e057600080fd5b506104166106ef366004612e02565b6116de565b34801561070057600080fd5b5061035961070f366004612e82565b611729565b34801561072057600080fd5b5061038361072f366004612ab8565b611787565b34801561074057600080fd5b506103b061074f366004612a9b565b6001600160a01b03166000908152600c602052604090205490565b34801561077657600080fd5b506103b0610785366004612ad1565b61186d565b34801561079657600080fd5b5061270f6103b0565b3480156107ab57600080fd5b506103596118db565b3480156107c057600080fd5b506104166118ec565b3480156107d557600080fd5b506103b06107e4366004612a9b565b6118f5565b3480156107f557600080fd5b50600b546103b0565b34801561080a57600080fd5b5060026103b0565b34801561081e57600080fd5b5061035961082d366004612ed9565b6001600160a01b03918216600090815260096020908152604080832093909416825291909152205460ff1690565b34801561086757600080fd5b50610416610876366004612a9b565b611935565b34801561088757600080fd5b5060146103b0565b60006001600160e01b031982167f80ac58cd0000000000000000000000000000000000000000000000000000000014806108f257506001600160e01b031982167f5b5e139f00000000000000000000000000000000000000000000000000000000145b8061092657507f01ffc9a7000000000000000000000000000000000000000000000000000000006001600160e01b03198316145b92915050565b60606004805461093b90612f12565b80601f016020809104026020016040519081016040528092919081815260200182805461096790612f12565b80156109b45780601f10610989576101008083540402835291602001916109b4565b820191906000526020600020905b81548152906001019060200180831161099757829003601f168201915b5050505050905090565b6040517f70a082310000000000000000000000000000000000000000000000000000000081526001600160a01b038216600482015260009030906370a0823190602401602060405180830381865afa158015610a1e573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906109269190612f4d565b6000610a4d82611a14565b610a83576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b506000908152600860205260409020546001600160a01b031690565b6000610aaa8261110d565b9050806001600160a01b0316836001600160a01b03161415610af8576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b336001600160a01b03821614801590610b185750610b16813361082d565b155b15610b4f576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610b5a838383611a40565b505050565b60026010541415610bb75760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0060448201526064015b60405180910390fd5b6002601055323314610c0b5760405162461bcd60e51b815260206004820152600c60248201527f4d757374206265207573657200000000000000000000000000000000000000006044820152606401610bae565b601154610c19906001611aa9565b610c655760405162461bcd60e51b815260206004820152600f60248201527f50726573616c652073746f7070656400000000000000000000000000000000006044820152606401610bae565b806000108015610c76575060148111155b610cc25760405162461bcd60e51b815260206004820152600d60248201527f496e76616c696420636f756e74000000000000000000000000000000000000006044820152606401610bae565b80601254610cd09190612f7c565b3414610d1e5760405162461bcd60e51b815260206004820152600d60248201527f496e76616c6964207072696365000000000000000000000000000000000000006044820152606401610bae565b6000610d2960025490565b9050611e61610d388383612f9b565b1115610d70576040517f7b771dc200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610d7d3385858486611acb565b505060016010555050565b6001600160a01b038116610e045760405162461bcd60e51b815260206004820152602f60248201527f5061796d656e7453706c69747465723a204e657720706179656520697320746860448201527f65207a65726f20616464726573732e00000000000000000000000000000000006064820152608401610bae565b336000908152600c6020526040902054610e855760405162461bcd60e51b8152602060048201526024808201527f5061796d656e7453706c69747465723a20596f752068617665206e6f2073686160448201527f7265732e000000000000000000000000000000000000000000000000000000006064820152608401610bae565b6001600160a01b0381166000908152600c602052604090205415610f115760405162461bcd60e51b815260206004820152602e60248201527f5061796d656e7453706c69747465723a204e657720706179656520616c72656160448201527f647920686173207368617265732e0000000000000000000000000000000000006064820152608401610bae565b610f1a81611b54565b604080513381526001600160a01b03831660208201527f6829b4029cd073199f80f49556d32953c9bc4e14d395388e678d2cc4604d4819910160405180910390a150565b600f546001600160a01b03163314610fb85760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610bae565b610fc181611c2b565b50565b610b5a838383611e05565b610b5a838383604051806020016040528060008152506116de565b600f546001600160a01b031633146110445760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610bae565b805161105790601490602084019061294f565b5050565b600f546001600160a01b031633146110b55760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610bae565b60006110c381600187612064565b90506110d181600286612064565b6011819055905082156110e45760128390555b81156110f05760138290555b5050505050565b601154600090611108906001611aa9565b905090565b60006111188261208d565b5192915050565b6014805461112c90612f12565b80601f016020809104026020016040519081016040528092919081815260200182805461115890612f12565b80156111a55780601f1061117a576101008083540402835291602001916111a5565b820191906000526020600020905b81548152906001019060200180831161118857829003601f168201915b505050505081565b60006001600160a01b0382166111ef576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b506001600160a01b031660009081526007602052604090205467ffffffffffffffff1690565b600f546001600160a01b0316331461126f5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610bae565b61127960006121c2565b565b600f546001600160a01b031633146112d55760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610bae565b8015610fc157610fc16015829055565b6000600e82815481106112fa576112fa612fb3565b6000918252602090912001546001600160a01b031692915050565b60606005805461093b90612f12565b600260105414156113775760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610bae565b60026010553233146113cb5760405162461bcd60e51b815260206004820152600c60248201527f4d757374206265207573657200000000000000000000000000000000000000006044820152606401610bae565b6011546113d9906002611aa9565b6114255760405162461bcd60e51b815260206004820152600f60248201527f4d696e74696e672073746f7070656400000000000000000000000000000000006044820152606401610bae565b806000108015611436575060148111155b6114825760405162461bcd60e51b815260206004820152600d60248201527f496e76616c696420636f756e74000000000000000000000000000000000000006044820152606401610bae565b806013546114909190612f7c565b34146114de5760405162461bcd60e51b815260206004820152600d60248201527f496e76616c6964207072696365000000000000000000000000000000000000006044820152606401610bae565b6114f1336114eb60025490565b83612221565b506001601055565b600f546001600160a01b031633146115535760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610bae565b806000108015611564575060648111155b6115b05760405162461bcd60e51b815260206004820152600d60248201527f496e76616c696420636f756e74000000000000000000000000000000000000006044820152606401610bae565b60006115bb60025490565b905060005b835181101561160b576115ed8482815181106115de576115de612fb3565b60200260200101518385612221565b6115f78383612f9b565b91508061160381612fc9565b9150506115c0565b50505050565b6001600160a01b038216331415611654576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b3360008181526009602090815260408083206001600160a01b0387168085529083529281902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6116e9848484611e05565b6001600160a01b0383163b1515801561170b575061170984848484612270565b155b1561160b576040516368d2bf6b60e11b815260040160405180910390fd5b600061177d8484611773856040516bffffffffffffffffffffffff19606083901b166020820152600090603401604051602081830303815290604052805190602001209050919050565b601592919061238a565b90505b9392505050565b606061179282611a14565b6117de5760405162461bcd60e51b815260206004820152600860248201527f4e6f20746f6b656e0000000000000000000000000000000000000000000000006044820152606401610bae565b60006117e86123a4565b9050600081511161183b5760405162461bcd60e51b815260206004820152600a60248201527f4261736520756e736574000000000000000000000000000000000000000000006044820152606401610bae565b80611845846123b3565b604051602001611856929190612fe4565b604051602081830303815290604052915050919050565b60408051606084901b6bffffffffffffffffffffffff19166020808301919091527f5f00000000000000000000000000000000000000000000000000000000000000603483015260358083018590528351808403909101815260559092019092528051910120600090611780565b601154600090611108906002611aa9565b61127933611c2b565b60408051606083901b6bffffffffffffffffffffffff19166020808301919091528251601481840301815260349092019092528051910120600090610926565b600f546001600160a01b0316331461198f5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610bae565b6001600160a01b038116611a0b5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f64647265737300000000000000000000000000000000000000000000000000006064820152608401610bae565b610fc1816121c2565b600060025482108015610926575050600090815260066020526040902054600160e01b900460ff161590565b600082815260086020526040808220805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6000600183831c8116908114611ac0576000611ac3565b60015b949350505050565b611b138484611773886040516bffffffffffffffffffffffff19606083901b166020820152600090603401604051602081830303815290604052805190602001209050919050565b611b49576040517f18e52d7600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6110f0858383612221565b600e54611b5e5750565b60005b600e54611b7090600190613013565b81101561105757336001600160a01b0316600e8281548110611b9457611b94612fb3565b6000918252602090912001546001600160a01b03161415611c195781600e8281548110611bc357611bc3612fb3565b6000918252602080832091909101805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0394851617905533808352600c90915260408083208054948716845290832093909355815290555b80611c2381612fc9565b915050611b61565b6001600160a01b0381166000908152600c6020526040902054611cb65760405162461bcd60e51b815260206004820152602660248201527f5061796d656e7453706c69747465723a206163636f756e7420686173206e6f2060448201527f73686172657300000000000000000000000000000000000000000000000000006064820152608401610bae565b6000611cc1600b5490565b611ccb9047612f9b565b90506000611cf88383611cf3866001600160a01b03166000908152600d602052604090205490565b6123be565b905080611d6d5760405162461bcd60e51b815260206004820152602b60248201527f5061796d656e7453706c69747465723a206163636f756e74206973206e6f742060448201527f647565207061796d656e740000000000000000000000000000000000000000006064820152608401610bae565b6001600160a01b0383166000908152600d602052604081208054839290611d95908490612f9b565b9250508190555080600b6000828254611dae9190612f9b565b90915550611dbe905083826123fc565b604080516001600160a01b0385168152602081018390527fdf20fd1e76bc69d672e4814fafb2c449bba3a5369d8359adf9e05e6fde87b056910160405180910390a1505050565b6000611e108261208d565b80519091506000906001600160a01b0316336001600160a01b03161480611e3e57508151611e3e903361082d565b80611e59575033611e4e84610a42565b6001600160a01b0316145b905080611e92576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b846001600160a01b031682600001516001600160a01b031614611ee1576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6001600160a01b038416611f21576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611f316000848460000151611a40565b6001600160a01b038581166000908152600760209081526040808320805467ffffffffffffffff1980821667ffffffffffffffff92831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600690945282852080546001600160e01b031916909417600160a01b42909216919091021790925590860180835291205490911661201d5760025481101561201d578251600082815260066020908152604090912080549186015167ffffffffffffffff16600160a01b026001600160e01b03199092166001600160a01b03909316929092171790555b5082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46110f0565b6000811561207c57506001821b929092179182611780565b506001821b19929092169182611780565b60408051606081018252600080825260208201819052918101919091528160025481101561219057600081815260066020908152604091829020825160608101845290546001600160a01b0381168252600160a01b810467ffffffffffffffff1692820192909252600160e01b90910460ff1615159181018290529061218e5780516001600160a01b031615612124579392505050565b5060001901600081815260066020908152604091829020825160608101845290546001600160a01b038116808352600160a01b820467ffffffffffffffff1693830193909352600160e01b900460ff1615159281019290925215612189579392505050565b612124565b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600f80546001600160a01b0383811673ffffffffffffffffffffffffffffffffffffffff19831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b61270f61222e8284612f9b565b1115612266576040517fc30436e900000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610b5a8382612515565b6040517f150b7a020000000000000000000000000000000000000000000000000000000081526000906001600160a01b0385169063150b7a02906122be90339089908890889060040161302a565b6020604051808303816000875af19250505080156122f9575060408051601f3d908101601f191682019092526122f691810190613066565b60015b612354573d808015612327576040519150601f19603f3d011682016040523d82523d6000602084013e61232c565b606091505b50805161234c576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b0319167f150b7a0200000000000000000000000000000000000000000000000000000000149050949350505050565b835460009061239b9085858561252f565b95945050505050565b60606014805461093b90612f12565b606061092682612573565b600a546001600160a01b0384166000908152600c6020526040812054909183916123e89086612f7c565b6123f29190613099565b61177d9190613013565b8047101561244c5760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a20696e73756666696369656e742062616c616e63650000006044820152606401610bae565b6000826001600160a01b03168260405160006040518083038185875af1925050503d8060008114612499576040519150601f19603f3d011682016040523d82523d6000602084013e61249e565b606091505b5050905080610b5a5760405162461bcd60e51b815260206004820152603a60248201527f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260448201527f6563697069656e74206d617920686176652072657665727465640000000000006064820152608401610bae565b6110578282604051806020016040528060008152506126a5565b600061239b85838686808060200260200160405190810160405280939291908181526020018383602002808284376000920191909152509294939250506126b29050565b6060816125b357505060408051808201909152600181527f3000000000000000000000000000000000000000000000000000000000000000602082015290565b8160005b81156125dd57806125c781612fc9565b91506125d69050600a83613099565b91506125b7565b60008167ffffffffffffffff8111156125f8576125f8612bd6565b6040519080825280601f01601f191660200182016040528015612622576020820181803683370190505b5090505b8415611ac357612637600183613013565b9150612644600a866130ad565b61264f906030612f9b565b60f81b81838151811061266457612664612fb3565b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a90535061269e600a86613099565b9450612626565b610b5a83838360016126c8565b6000826126bf85846128db565b14949350505050565b6002546001600160a01b03851661270b576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b83612742576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6001600160a01b038516600081815260076020908152604080832080547fffffffffffffffffffffffffffffffff00000000000000000000000000000000811667ffffffffffffffff8083168c0181169182176801000000000000000067ffffffffffffffff1990941690921783900481168c01811690920217909155858452600690925290912080546001600160e01b031916909217600160a01b42909216919091021790558080850183801561280357506001600160a01b0387163b15155b1561288c575b60405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a46128546000888480600101955088612270565b612871576040516368d2bf6b60e11b815260040160405180910390fd5b8082141561280957826002541461288757600080fd5b6128d2565b5b6040516001830192906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a48082141561288d575b506002556110f0565b600081815b84518110156129475760008582815181106128fd576128fd612fb3565b602002602001015190508083116129235760008381526020829052604090209250612934565b600081815260208490526040902092505b508061293f81612fc9565b9150506128e0565b509392505050565b82805461295b90612f12565b90600052602060002090601f01602090048101928261297d57600085556129c3565b82601f1061299657805160ff19168380011785556129c3565b828001600101855582156129c3579182015b828111156129c35782518255916020019190600101906129a8565b506129cf9291506129d3565b5090565b5b808211156129cf57600081556001016129d4565b6001600160e01b031981168114610fc157600080fd5b600060208284031215612a1057600080fd5b8135611780816129e8565b60005b83811015612a36578181015183820152602001612a1e565b8381111561160b5750506000910152565b60008151808452612a5f816020860160208601612a1b565b601f01601f19169290920160200192915050565b6020815260006117806020830184612a47565b6001600160a01b0381168114610fc157600080fd5b600060208284031215612aad57600080fd5b813561178081612a86565b600060208284031215612aca57600080fd5b5035919050565b60008060408385031215612ae457600080fd5b8235612aef81612a86565b946020939093013593505050565b60008083601f840112612b0f57600080fd5b50813567ffffffffffffffff811115612b2757600080fd5b6020830191508360208260051b8501011115612b4257600080fd5b9250929050565b600080600060408486031215612b5e57600080fd5b833567ffffffffffffffff811115612b7557600080fd5b612b8186828701612afd565b909790965060209590950135949350505050565b600080600060608486031215612baa57600080fd5b8335612bb581612a86565b92506020840135612bc581612a86565b929592945050506040919091013590565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f1916810167ffffffffffffffff81118282101715612c1557612c15612bd6565b604052919050565b600067ffffffffffffffff831115612c3757612c37612bd6565b612c4a6020601f19601f86011601612bec565b9050828152838383011115612c5e57600080fd5b828260208301376000602084830101529392505050565b600060208284031215612c8757600080fd5b813567ffffffffffffffff811115612c9e57600080fd5b8201601f81018413612caf57600080fd5b611ac384823560208401612c1d565b80358015158114612cce57600080fd5b919050565b60008060008060808587031215612ce957600080fd5b612cf285612cbe565b9350612d0060208601612cbe565b93969395505050506040820135916060013590565b60008060408385031215612d2857600080fd5b823567ffffffffffffffff80821115612d4057600080fd5b818501915085601f830112612d5457600080fd5b8135602082821115612d6857612d68612bd6565b8160051b9250612d79818401612bec565b8281529284018101928181019089851115612d9357600080fd5b948201945b84861015612dbd5785359350612dad84612a86565b8382529482019490820190612d98565b9997909101359750505050505050565b60008060408385031215612de057600080fd5b8235612deb81612a86565b9150612df960208401612cbe565b90509250929050565b60008060008060808587031215612e1857600080fd5b8435612e2381612a86565b93506020850135612e3381612a86565b925060408501359150606085013567ffffffffffffffff811115612e5657600080fd5b8501601f81018713612e6757600080fd5b612e7687823560208401612c1d565b91505092959194509250565b600080600060408486031215612e9757600080fd5b833567ffffffffffffffff811115612eae57600080fd5b612eba86828701612afd565b9094509250506020840135612ece81612a86565b809150509250925092565b60008060408385031215612eec57600080fd5b8235612ef781612a86565b91506020830135612f0781612a86565b809150509250929050565b600181811c90821680612f2657607f821691505b60208210811415612f4757634e487b7160e01b600052602260045260246000fd5b50919050565b600060208284031215612f5f57600080fd5b5051919050565b634e487b7160e01b600052601160045260246000fd5b6000816000190483118215151615612f9657612f96612f66565b500290565b60008219821115612fae57612fae612f66565b500190565b634e487b7160e01b600052603260045260246000fd5b6000600019821415612fdd57612fdd612f66565b5060010190565b60008351612ff6818460208801612a1b565b83519083019061300a818360208801612a1b565b01949350505050565b60008282101561302557613025612f66565b500390565b60006001600160a01b0380871683528086166020840152508360408301526080606083015261305c6080830184612a47565b9695505050505050565b60006020828403121561307857600080fd5b8151611780816129e8565b634e487b7160e01b600052601260045260246000fd5b6000826130a8576130a8613083565b500490565b6000826130bc576130bc613083565b50069056fea2646970667358221220e86795bbe49a9847ae858276cd629489a86722fc69cac8ce5c2aa7c8ac9d04e464736f6c634300080b003368747470733a2f2f6e667463756c747572652e6d7970696e6174612e636c6f75642f697066732f516d584a55623258725366645958715734725333436d4a4a6e59775a5459466343344836514248597969347a53632f

Deployed Bytecode

0x6080604052600436106102eb5760003560e01c80638b83209b11610184578063ce7c2ac2116100d6578063e27c429c1161008a578063e985e9c511610064578063e985e9c514610812578063f2fde38b1461085b578063fdb8e8a21461087b57600080fd5b8063e27c429c146107c9578063e33b7de3146107e9578063e8ad246f146107fe57600080fd5b8063d5abeb01116100bb578063d5abeb011461078a578063db828e5d1461079f578063e228c6fe146107b457600080fd5b8063ce7c2ac214610734578063cfb00c6d1461076a57600080fd5b806399f8cf3a11610138578063b88d4fde11610112578063b88d4fde146106d4578063c865815b146106f4578063c87b56dd1461071457600080fd5b806399f8cf3a1461067e578063a0e240621461069e578063a22cb465146106b457600080fd5b806395d89b411161016957806395d89b411461062057806397304ced146106355780639852595c1461064857600080fd5b80638b83209b146105e25780638da5cb5b1461060257600080fd5b80633a98ef391161023d5780636352211e116101f1578063715018a6116101cb578063715018a614610597578063722d1853146105ac5780637cb64759146105c257600080fd5b80636352211e146105425780636c0360eb1461056257806370a082311461057757600080fd5b806355f804b31161022257806355f804b3146104ed57806359a087c91461050d57806360d938dc1461052d57600080fd5b80633a98ef39146104b857806342842e0e146104cd57600080fd5b80630c79dfd51161029f5780631916558711610279578063191655871461046457806323b872dd1461048457806335841e50146104a457600080fd5b80630c79dfd514610418578063163480091461042b57806318160ddd1461044b57600080fd5b8063070c9a8a116102d0578063070c9a8a14610390578063081812fc146103be578063095ea7b3146103f657600080fd5b806301ffc9a71461033957806306fdde031461036e57600080fd5b36610334577f6ef95f06320e7a25a04a175ca677b7052bdd97131872c2192525a629f51be77033604080516001600160a01b0390921682523460208301520160405180910390a1005b600080fd5b34801561034557600080fd5b506103596103543660046129fe565b61088f565b60405190151581526020015b60405180910390f35b34801561037a57600080fd5b5061038361092c565b6040516103659190612a73565b34801561039c57600080fd5b506103b06103ab366004612a9b565b6109be565b604051908152602001610365565b3480156103ca57600080fd5b506103de6103d9366004612ab8565b610a42565b6040516001600160a01b039091168152602001610365565b34801561040257600080fd5b50610416610411366004612ad1565b610a9f565b005b610416610426366004612b49565b610b5f565b34801561043757600080fd5b50610416610446366004612a9b565b610d88565b34801561045757600080fd5b50600354600254036103b0565b34801561047057600080fd5b5061041661047f366004612a9b565b610f5e565b34801561049057600080fd5b5061041661049f366004612b95565b610fc4565b3480156104b057600080fd5b506000610359565b3480156104c457600080fd5b50600a546103b0565b3480156104d957600080fd5b506104166104e8366004612b95565b610fcf565b3480156104f957600080fd5b50610416610508366004612c75565b610fea565b34801561051957600080fd5b50610416610528366004612cd3565b61105b565b34801561053957600080fd5b506103596110f7565b34801561054e57600080fd5b506103de61055d366004612ab8565b61110d565b34801561056e57600080fd5b5061038361111f565b34801561058357600080fd5b506103b0610592366004612a9b565b6111ad565b3480156105a357600080fd5b50610416611215565b3480156105b857600080fd5b506103b060125481565b3480156105ce57600080fd5b506104166105dd366004612ab8565b61127b565b3480156105ee57600080fd5b506103de6105fd366004612ab8565b6112e5565b34801561060e57600080fd5b50600f546001600160a01b03166103de565b34801561062c57600080fd5b50610383611315565b610416610643366004612ab8565b611324565b34801561065457600080fd5b506103b0610663366004612a9b565b6001600160a01b03166000908152600d602052604090205490565b34801561068a57600080fd5b50610416610699366004612d15565b6114f9565b3480156106aa57600080fd5b506103b060135481565b3480156106c057600080fd5b506104166106cf366004612dcd565b611611565b3480156106e057600080fd5b506104166106ef366004612e02565b6116de565b34801561070057600080fd5b5061035961070f366004612e82565b611729565b34801561072057600080fd5b5061038361072f366004612ab8565b611787565b34801561074057600080fd5b506103b061074f366004612a9b565b6001600160a01b03166000908152600c602052604090205490565b34801561077657600080fd5b506103b0610785366004612ad1565b61186d565b34801561079657600080fd5b5061270f6103b0565b3480156107ab57600080fd5b506103596118db565b3480156107c057600080fd5b506104166118ec565b3480156107d557600080fd5b506103b06107e4366004612a9b565b6118f5565b3480156107f557600080fd5b50600b546103b0565b34801561080a57600080fd5b5060026103b0565b34801561081e57600080fd5b5061035961082d366004612ed9565b6001600160a01b03918216600090815260096020908152604080832093909416825291909152205460ff1690565b34801561086757600080fd5b50610416610876366004612a9b565b611935565b34801561088757600080fd5b5060146103b0565b60006001600160e01b031982167f80ac58cd0000000000000000000000000000000000000000000000000000000014806108f257506001600160e01b031982167f5b5e139f00000000000000000000000000000000000000000000000000000000145b8061092657507f01ffc9a7000000000000000000000000000000000000000000000000000000006001600160e01b03198316145b92915050565b60606004805461093b90612f12565b80601f016020809104026020016040519081016040528092919081815260200182805461096790612f12565b80156109b45780601f10610989576101008083540402835291602001916109b4565b820191906000526020600020905b81548152906001019060200180831161099757829003601f168201915b5050505050905090565b6040517f70a082310000000000000000000000000000000000000000000000000000000081526001600160a01b038216600482015260009030906370a0823190602401602060405180830381865afa158015610a1e573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906109269190612f4d565b6000610a4d82611a14565b610a83576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b506000908152600860205260409020546001600160a01b031690565b6000610aaa8261110d565b9050806001600160a01b0316836001600160a01b03161415610af8576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b336001600160a01b03821614801590610b185750610b16813361082d565b155b15610b4f576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610b5a838383611a40565b505050565b60026010541415610bb75760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0060448201526064015b60405180910390fd5b6002601055323314610c0b5760405162461bcd60e51b815260206004820152600c60248201527f4d757374206265207573657200000000000000000000000000000000000000006044820152606401610bae565b601154610c19906001611aa9565b610c655760405162461bcd60e51b815260206004820152600f60248201527f50726573616c652073746f7070656400000000000000000000000000000000006044820152606401610bae565b806000108015610c76575060148111155b610cc25760405162461bcd60e51b815260206004820152600d60248201527f496e76616c696420636f756e74000000000000000000000000000000000000006044820152606401610bae565b80601254610cd09190612f7c565b3414610d1e5760405162461bcd60e51b815260206004820152600d60248201527f496e76616c6964207072696365000000000000000000000000000000000000006044820152606401610bae565b6000610d2960025490565b9050611e61610d388383612f9b565b1115610d70576040517f7b771dc200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610d7d3385858486611acb565b505060016010555050565b6001600160a01b038116610e045760405162461bcd60e51b815260206004820152602f60248201527f5061796d656e7453706c69747465723a204e657720706179656520697320746860448201527f65207a65726f20616464726573732e00000000000000000000000000000000006064820152608401610bae565b336000908152600c6020526040902054610e855760405162461bcd60e51b8152602060048201526024808201527f5061796d656e7453706c69747465723a20596f752068617665206e6f2073686160448201527f7265732e000000000000000000000000000000000000000000000000000000006064820152608401610bae565b6001600160a01b0381166000908152600c602052604090205415610f115760405162461bcd60e51b815260206004820152602e60248201527f5061796d656e7453706c69747465723a204e657720706179656520616c72656160448201527f647920686173207368617265732e0000000000000000000000000000000000006064820152608401610bae565b610f1a81611b54565b604080513381526001600160a01b03831660208201527f6829b4029cd073199f80f49556d32953c9bc4e14d395388e678d2cc4604d4819910160405180910390a150565b600f546001600160a01b03163314610fb85760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610bae565b610fc181611c2b565b50565b610b5a838383611e05565b610b5a838383604051806020016040528060008152506116de565b600f546001600160a01b031633146110445760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610bae565b805161105790601490602084019061294f565b5050565b600f546001600160a01b031633146110b55760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610bae565b60006110c381600187612064565b90506110d181600286612064565b6011819055905082156110e45760128390555b81156110f05760138290555b5050505050565b601154600090611108906001611aa9565b905090565b60006111188261208d565b5192915050565b6014805461112c90612f12565b80601f016020809104026020016040519081016040528092919081815260200182805461115890612f12565b80156111a55780601f1061117a576101008083540402835291602001916111a5565b820191906000526020600020905b81548152906001019060200180831161118857829003601f168201915b505050505081565b60006001600160a01b0382166111ef576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b506001600160a01b031660009081526007602052604090205467ffffffffffffffff1690565b600f546001600160a01b0316331461126f5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610bae565b61127960006121c2565b565b600f546001600160a01b031633146112d55760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610bae565b8015610fc157610fc16015829055565b6000600e82815481106112fa576112fa612fb3565b6000918252602090912001546001600160a01b031692915050565b60606005805461093b90612f12565b600260105414156113775760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610bae565b60026010553233146113cb5760405162461bcd60e51b815260206004820152600c60248201527f4d757374206265207573657200000000000000000000000000000000000000006044820152606401610bae565b6011546113d9906002611aa9565b6114255760405162461bcd60e51b815260206004820152600f60248201527f4d696e74696e672073746f7070656400000000000000000000000000000000006044820152606401610bae565b806000108015611436575060148111155b6114825760405162461bcd60e51b815260206004820152600d60248201527f496e76616c696420636f756e74000000000000000000000000000000000000006044820152606401610bae565b806013546114909190612f7c565b34146114de5760405162461bcd60e51b815260206004820152600d60248201527f496e76616c6964207072696365000000000000000000000000000000000000006044820152606401610bae565b6114f1336114eb60025490565b83612221565b506001601055565b600f546001600160a01b031633146115535760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610bae565b806000108015611564575060648111155b6115b05760405162461bcd60e51b815260206004820152600d60248201527f496e76616c696420636f756e74000000000000000000000000000000000000006044820152606401610bae565b60006115bb60025490565b905060005b835181101561160b576115ed8482815181106115de576115de612fb3565b60200260200101518385612221565b6115f78383612f9b565b91508061160381612fc9565b9150506115c0565b50505050565b6001600160a01b038216331415611654576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b3360008181526009602090815260408083206001600160a01b0387168085529083529281902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6116e9848484611e05565b6001600160a01b0383163b1515801561170b575061170984848484612270565b155b1561160b576040516368d2bf6b60e11b815260040160405180910390fd5b600061177d8484611773856040516bffffffffffffffffffffffff19606083901b166020820152600090603401604051602081830303815290604052805190602001209050919050565b601592919061238a565b90505b9392505050565b606061179282611a14565b6117de5760405162461bcd60e51b815260206004820152600860248201527f4e6f20746f6b656e0000000000000000000000000000000000000000000000006044820152606401610bae565b60006117e86123a4565b9050600081511161183b5760405162461bcd60e51b815260206004820152600a60248201527f4261736520756e736574000000000000000000000000000000000000000000006044820152606401610bae565b80611845846123b3565b604051602001611856929190612fe4565b604051602081830303815290604052915050919050565b60408051606084901b6bffffffffffffffffffffffff19166020808301919091527f5f00000000000000000000000000000000000000000000000000000000000000603483015260358083018590528351808403909101815260559092019092528051910120600090611780565b601154600090611108906002611aa9565b61127933611c2b565b60408051606083901b6bffffffffffffffffffffffff19166020808301919091528251601481840301815260349092019092528051910120600090610926565b600f546001600160a01b0316331461198f5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610bae565b6001600160a01b038116611a0b5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f64647265737300000000000000000000000000000000000000000000000000006064820152608401610bae565b610fc1816121c2565b600060025482108015610926575050600090815260066020526040902054600160e01b900460ff161590565b600082815260086020526040808220805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6000600183831c8116908114611ac0576000611ac3565b60015b949350505050565b611b138484611773886040516bffffffffffffffffffffffff19606083901b166020820152600090603401604051602081830303815290604052805190602001209050919050565b611b49576040517f18e52d7600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6110f0858383612221565b600e54611b5e5750565b60005b600e54611b7090600190613013565b81101561105757336001600160a01b0316600e8281548110611b9457611b94612fb3565b6000918252602090912001546001600160a01b03161415611c195781600e8281548110611bc357611bc3612fb3565b6000918252602080832091909101805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0394851617905533808352600c90915260408083208054948716845290832093909355815290555b80611c2381612fc9565b915050611b61565b6001600160a01b0381166000908152600c6020526040902054611cb65760405162461bcd60e51b815260206004820152602660248201527f5061796d656e7453706c69747465723a206163636f756e7420686173206e6f2060448201527f73686172657300000000000000000000000000000000000000000000000000006064820152608401610bae565b6000611cc1600b5490565b611ccb9047612f9b565b90506000611cf88383611cf3866001600160a01b03166000908152600d602052604090205490565b6123be565b905080611d6d5760405162461bcd60e51b815260206004820152602b60248201527f5061796d656e7453706c69747465723a206163636f756e74206973206e6f742060448201527f647565207061796d656e740000000000000000000000000000000000000000006064820152608401610bae565b6001600160a01b0383166000908152600d602052604081208054839290611d95908490612f9b565b9250508190555080600b6000828254611dae9190612f9b565b90915550611dbe905083826123fc565b604080516001600160a01b0385168152602081018390527fdf20fd1e76bc69d672e4814fafb2c449bba3a5369d8359adf9e05e6fde87b056910160405180910390a1505050565b6000611e108261208d565b80519091506000906001600160a01b0316336001600160a01b03161480611e3e57508151611e3e903361082d565b80611e59575033611e4e84610a42565b6001600160a01b0316145b905080611e92576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b846001600160a01b031682600001516001600160a01b031614611ee1576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6001600160a01b038416611f21576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611f316000848460000151611a40565b6001600160a01b038581166000908152600760209081526040808320805467ffffffffffffffff1980821667ffffffffffffffff92831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600690945282852080546001600160e01b031916909417600160a01b42909216919091021790925590860180835291205490911661201d5760025481101561201d578251600082815260066020908152604090912080549186015167ffffffffffffffff16600160a01b026001600160e01b03199092166001600160a01b03909316929092171790555b5082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46110f0565b6000811561207c57506001821b929092179182611780565b506001821b19929092169182611780565b60408051606081018252600080825260208201819052918101919091528160025481101561219057600081815260066020908152604091829020825160608101845290546001600160a01b0381168252600160a01b810467ffffffffffffffff1692820192909252600160e01b90910460ff1615159181018290529061218e5780516001600160a01b031615612124579392505050565b5060001901600081815260066020908152604091829020825160608101845290546001600160a01b038116808352600160a01b820467ffffffffffffffff1693830193909352600160e01b900460ff1615159281019290925215612189579392505050565b612124565b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600f80546001600160a01b0383811673ffffffffffffffffffffffffffffffffffffffff19831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b61270f61222e8284612f9b565b1115612266576040517fc30436e900000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610b5a8382612515565b6040517f150b7a020000000000000000000000000000000000000000000000000000000081526000906001600160a01b0385169063150b7a02906122be90339089908890889060040161302a565b6020604051808303816000875af19250505080156122f9575060408051601f3d908101601f191682019092526122f691810190613066565b60015b612354573d808015612327576040519150601f19603f3d011682016040523d82523d6000602084013e61232c565b606091505b50805161234c576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b0319167f150b7a0200000000000000000000000000000000000000000000000000000000149050949350505050565b835460009061239b9085858561252f565b95945050505050565b60606014805461093b90612f12565b606061092682612573565b600a546001600160a01b0384166000908152600c6020526040812054909183916123e89086612f7c565b6123f29190613099565b61177d9190613013565b8047101561244c5760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a20696e73756666696369656e742062616c616e63650000006044820152606401610bae565b6000826001600160a01b03168260405160006040518083038185875af1925050503d8060008114612499576040519150601f19603f3d011682016040523d82523d6000602084013e61249e565b606091505b5050905080610b5a5760405162461bcd60e51b815260206004820152603a60248201527f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260448201527f6563697069656e74206d617920686176652072657665727465640000000000006064820152608401610bae565b6110578282604051806020016040528060008152506126a5565b600061239b85838686808060200260200160405190810160405280939291908181526020018383602002808284376000920191909152509294939250506126b29050565b6060816125b357505060408051808201909152600181527f3000000000000000000000000000000000000000000000000000000000000000602082015290565b8160005b81156125dd57806125c781612fc9565b91506125d69050600a83613099565b91506125b7565b60008167ffffffffffffffff8111156125f8576125f8612bd6565b6040519080825280601f01601f191660200182016040528015612622576020820181803683370190505b5090505b8415611ac357612637600183613013565b9150612644600a866130ad565b61264f906030612f9b565b60f81b81838151811061266457612664612fb3565b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a90535061269e600a86613099565b9450612626565b610b5a83838360016126c8565b6000826126bf85846128db565b14949350505050565b6002546001600160a01b03851661270b576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b83612742576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6001600160a01b038516600081815260076020908152604080832080547fffffffffffffffffffffffffffffffff00000000000000000000000000000000811667ffffffffffffffff8083168c0181169182176801000000000000000067ffffffffffffffff1990941690921783900481168c01811690920217909155858452600690925290912080546001600160e01b031916909217600160a01b42909216919091021790558080850183801561280357506001600160a01b0387163b15155b1561288c575b60405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a46128546000888480600101955088612270565b612871576040516368d2bf6b60e11b815260040160405180910390fd5b8082141561280957826002541461288757600080fd5b6128d2565b5b6040516001830192906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a48082141561288d575b506002556110f0565b600081815b84518110156129475760008582815181106128fd576128fd612fb3565b602002602001015190508083116129235760008381526020829052604090209250612934565b600081815260208490526040902092505b508061293f81612fc9565b9150506128e0565b509392505050565b82805461295b90612f12565b90600052602060002090601f01602090048101928261297d57600085556129c3565b82601f1061299657805160ff19168380011785556129c3565b828001600101855582156129c3579182015b828111156129c35782518255916020019190600101906129a8565b506129cf9291506129d3565b5090565b5b808211156129cf57600081556001016129d4565b6001600160e01b031981168114610fc157600080fd5b600060208284031215612a1057600080fd5b8135611780816129e8565b60005b83811015612a36578181015183820152602001612a1e565b8381111561160b5750506000910152565b60008151808452612a5f816020860160208601612a1b565b601f01601f19169290920160200192915050565b6020815260006117806020830184612a47565b6001600160a01b0381168114610fc157600080fd5b600060208284031215612aad57600080fd5b813561178081612a86565b600060208284031215612aca57600080fd5b5035919050565b60008060408385031215612ae457600080fd5b8235612aef81612a86565b946020939093013593505050565b60008083601f840112612b0f57600080fd5b50813567ffffffffffffffff811115612b2757600080fd5b6020830191508360208260051b8501011115612b4257600080fd5b9250929050565b600080600060408486031215612b5e57600080fd5b833567ffffffffffffffff811115612b7557600080fd5b612b8186828701612afd565b909790965060209590950135949350505050565b600080600060608486031215612baa57600080fd5b8335612bb581612a86565b92506020840135612bc581612a86565b929592945050506040919091013590565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f1916810167ffffffffffffffff81118282101715612c1557612c15612bd6565b604052919050565b600067ffffffffffffffff831115612c3757612c37612bd6565b612c4a6020601f19601f86011601612bec565b9050828152838383011115612c5e57600080fd5b828260208301376000602084830101529392505050565b600060208284031215612c8757600080fd5b813567ffffffffffffffff811115612c9e57600080fd5b8201601f81018413612caf57600080fd5b611ac384823560208401612c1d565b80358015158114612cce57600080fd5b919050565b60008060008060808587031215612ce957600080fd5b612cf285612cbe565b9350612d0060208601612cbe565b93969395505050506040820135916060013590565b60008060408385031215612d2857600080fd5b823567ffffffffffffffff80821115612d4057600080fd5b818501915085601f830112612d5457600080fd5b8135602082821115612d6857612d68612bd6565b8160051b9250612d79818401612bec565b8281529284018101928181019089851115612d9357600080fd5b948201945b84861015612dbd5785359350612dad84612a86565b8382529482019490820190612d98565b9997909101359750505050505050565b60008060408385031215612de057600080fd5b8235612deb81612a86565b9150612df960208401612cbe565b90509250929050565b60008060008060808587031215612e1857600080fd5b8435612e2381612a86565b93506020850135612e3381612a86565b925060408501359150606085013567ffffffffffffffff811115612e5657600080fd5b8501601f81018713612e6757600080fd5b612e7687823560208401612c1d565b91505092959194509250565b600080600060408486031215612e9757600080fd5b833567ffffffffffffffff811115612eae57600080fd5b612eba86828701612afd565b9094509250506020840135612ece81612a86565b809150509250925092565b60008060408385031215612eec57600080fd5b8235612ef781612a86565b91506020830135612f0781612a86565b809150509250929050565b600181811c90821680612f2657607f821691505b60208210811415612f4757634e487b7160e01b600052602260045260246000fd5b50919050565b600060208284031215612f5f57600080fd5b5051919050565b634e487b7160e01b600052601160045260246000fd5b6000816000190483118215151615612f9657612f96612f66565b500290565b60008219821115612fae57612fae612f66565b500190565b634e487b7160e01b600052603260045260246000fd5b6000600019821415612fdd57612fdd612f66565b5060010190565b60008351612ff6818460208801612a1b565b83519083019061300a818360208801612a1b565b01949350505050565b60008282101561302557613025612f66565b500390565b60006001600160a01b0380871683528086166020840152508360408301526080606083015261305c6080830184612a47565b9695505050505050565b60006020828403121561307857600080fd5b8151611780816129e8565b634e487b7160e01b600052601260045260246000fd5b6000826130a8576130a8613083565b500490565b6000826130bc576130bc613083565b50069056fea2646970667358221220e86795bbe49a9847ae858276cd629489a86722fc69cac8ce5c2aa7c8ac9d04e464736f6c634300080b0033

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.