ETH Price: $3,491.65 (+0.32%)
Gas: 6 Gwei

Token

MoonrayTheFoundationCollection (MNRYTFC)
 

Overview

Max Total Supply

2,073 MNRYTFC

Holders

1,041

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Balance
1 MNRYTFC
0xEc8c50223E785C3Ff21fd9F9ABafAcfB1e2215FC
Loading...
Loading
Loading...
Loading
Loading...
Loading

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

Contract Source Code Verified (Exact Match)

Contract Name:
TheFoundationCollection

Compiler Version
v0.8.11+commit.d7f03943

Optimization Enabled:
Yes with 1000 runs

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

import './TFCBase.sol';
import './TheFoundationCollectionSplits.sol';

/**
 * @title Moonray - The Foundation Collection
 *
 *                                                                ██/
 *                                                              ██P ██=
 *                                                            =█\   .███
 *                                                          (█/      ,█(█.
 *                                                        /█$         .█(=█
 *                                                      \██             █\ █(
 *                                                    d██                ██ *█
 *                                                  ,██//████(/*          ██  ██
 *                                                 ██            \████,\   ██  /█\
 *                                               ██,                      ████   ██
 *                                             =█(                           ██/██/█\
 *                                           /█/                              =█   *██(
 *                                          █(                                 (█     █=
 *                                       *██                             ,██   ███*    =█(
 *                                     /█(\ ,*\███████████████████████████████████████/  ██
 *                                    ,/██████████████████████████████████████████████████*█,
 *                                           **███████████████████████████████████████████████,
 *                                                  /.████████████████   ██
 *
 *
 *  ,                         ////              ////,         ,          //   //////////                         ///        .///
 *  ██*          *██\    (███████████*      .███████████*    \███       (██*   /██████████(        (██           /████    ,████
 *  /████      █████\   ███        /███    ███=       .███b    ████     (██*           .███        ████(            ████ ████
 *     \███\/███████\  ███\         .██\  *██(         /███      \████* (██*          .#███      ███\ ███            /█████
 *       /████/  ███\  ███/         ███,  #███         /███         ███████*        █████.      ███/  \███.          ████
 *               ███\   \███/    ,\███.    █████,     ████            \████*         \███     =███\                ████.
 *               ███\     ██████████=        /█████████(                 \█*          \███,  /███        =███    ████
 *
 *
 *                  -.-. --- -.. .    ..-. --- .-. --. . -..    ..-. .-. --- --    .-. .- .--    -- .. .. ..- --
 */
contract TheFoundationCollection is TheFoundationCollectionSplits, TFCBase {
    uint256 private constant MAX_NFTS_FOR_PRESALE_1AND2 = 1650;
    uint256 private constant MAX_NFTS_FOR_PRESALE_3 = 5000;
    uint256 private constant MAX_NFTS_FOR_SALE = 5500;    

    constructor()
        TFCBase(
            'MoonrayTheFoundationCollection',
            'MNRYTFC',
            'https://nftculture.mypinata.cloud/ipfs/QmXSCW89wCYCekpfe4NRQxhtC5XDaN1248fTVseM3eT65D/', // Mainnet V1 Metadata
            addresses,
            splits,
            MAX_NFTS_FOR_PRESALE_1AND2,
            MAX_NFTS_FOR_PRESALE_3,
            MAX_NFTS_FOR_SALE,
            0.12 ether,
            0.15 ether
        )
    {
        // Implementation: 1
    }
}

File 2 of 24 : TFCBase.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';
import '@nftculture/nftc-open-contracts/contracts/utility/AuxHelper16.sol';

// NFTC Prerelease Contracts
import '@nftculture/nftc-contract-library/contracts/whitelisting/MerkleLeaves.sol';
import '@nftculture/nftc-contract-library/contracts/token/FourPhaseAlternateMint.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 ExceedsAvailablePresaleMints();
error ExceedsAvailablePublicMints();
error ProofInvalidPresale();

/**
 * @title TFCBase
 * @author @NiftyMike, NFT Culture
 * @dev Standard ERC721a Implementation
 *
 * Visit the NFTC Labs open source repo on github:
 * https://github.com/NFTCulture/nftc-open-contracts
 */
abstract contract TFCBase is
    ERC721A,
    Ownable,
    GuardedAgainstContracts,
    ReentrancyGuard,
    LockedPaymentSplitter,
    FourPhaseAlternateMint,
    MerkleLeaves,
    AuxHelper16
{
    using Strings for uint256;
    using MerkleClaimList for MerkleClaimList.Root;

    // immutable for unit testing
    uint256 private immutable MAX_NFTS_FOR_PRESALE_1AND2;
    uint256 private immutable MAX_NFTS_FOR_PRESALE_3;
    uint256 private immutable MAX_NFTS_FOR_SALE;

    uint256 private constant MAX_RESERVE_BATCH_SIZE = 100;
    uint256 private constant MAX_PRESALE_BATCH_SIZE = 50;
    uint256 private constant MAX_PUBLIC_BATCH_SIZE = 20;

    string public baseURI;

    MerkleClaimList.Root private _presale1Root;
    MerkleClaimList.Root private _presale2Root;
    MerkleClaimList.Root private _presale3Root;

    constructor(
        string memory __name,
        string memory __symbol,
        string memory __baseURI,
        address[] memory __addresses,
        uint256[] memory __splits,
        uint256 __maxNftsForPresale1and2,
        uint256 __maxNftsForPresale3,
        uint256 __maxNftsForSale,
        uint256 __discountPrice,
        uint256 __fullPrice
    )
        ERC721A(__name, __symbol)
        SlimPaymentSplitter(__addresses, __splits)
        FourPhaseAlternateMint(__discountPrice, __fullPrice, __fullPrice, __fullPrice)
    {
        baseURI = __baseURI;

        MAX_NFTS_FOR_PRESALE_1AND2 = __maxNftsForPresale1and2;
        MAX_NFTS_FOR_PRESALE_3 = __maxNftsForPresale3;
        MAX_NFTS_FOR_SALE = __maxNftsForSale;
    }

    function maxPresale1and2() external view returns (uint256) {
        return MAX_NFTS_FOR_PRESALE_1AND2;
    }

    function maxPresale3() external view returns (uint256) {
        return MAX_NFTS_FOR_PRESALE_3;
    }

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

    function presaleBatchSize() external pure returns (uint256) {
        return MAX_PRESALE_BATCH_SIZE;
    }

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

    function isOpenEdition() external pure returns (bool) {
        return false;
    }

    function auxMintValues(address wallet)
        external
        view
        returns (
            uint16 presale1Purchases,
            uint16 presale2Purchases,
            uint16 presale3Purchases,
            uint32 publicMintPurchases
        )
    {
        // Unpack single value from _getAux() to determine presale 1-3 and publicMint purchases
        return _unpack16(_getAux(wallet));
    }

    function getPresale1TokensPurchased(address wallet) external view returns (uint32) {
        (uint32 presale1Purchases, , , ) = _unpack16(_getAux(wallet));
        return presale1Purchases;
    }

    function getPresale2TokensPurchased(address wallet) external view returns (uint32) {
        (, uint32 presale2Purchases, , ) = _unpack16(_getAux(wallet));
        return presale2Purchases;
    }

    function getPresale3TokensPurchased(address wallet) external view returns (uint32) {
        (, , uint32 presale3Purchases, ) = _unpack16(_getAux(wallet));
        return presale3Purchases;
    }

    function getPublicMintTokensPurchased(address wallet) external view returns (uint32) {
        (, , , uint32 publicMintPurchases) = _unpack16(_getAux(wallet));
        return publicMintPurchases;
    }

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

    function setMerkleRoots(
        bytes32 __presale1Root,
        bytes32 __presale2Root,
        bytes32 __presale3Root
    ) external onlyOwner {
        if (__presale1Root != 0) {
            _presale1Root._setRoot(__presale1Root);
        }

        if (__presale2Root != 0) {
            _presale2Root._setRoot(__presale2Root);
        }

        if (__presale3Root != 0) {
            _presale3Root._setRoot(__presale3Root);
        }
    }

    function checkPresale1(
        bytes32[] calldata proof,
        address wallet,
        uint256 index
    ) external view returns (bool) {
        return _presale1Root._checkLeaf(proof, _generateIndexedLeaf(wallet, index));
    }

    function getNextPresale1Index(address wallet) external view returns (uint256) {
        (uint32 presale1Purchases, , , ) = _unpack16(_getAux(wallet));
        return presale1Purchases;
    }

    function checkPresale2(
        bytes32[] calldata proof,
        address wallet,
        uint256 index
    ) external view returns (bool) {
        return _presale2Root._checkLeaf(proof, _generateIndexedLeaf(wallet, index));
    }

    function getNextPresale2Index(address wallet) external view returns (uint256) {
        (, uint32 presale2Purchases, , ) = _unpack16(_getAux(wallet));
        return presale2Purchases;
    }

    function checkPresale3(
        bytes32[] calldata proof,
        address wallet,
        uint256 index
    ) external view returns (bool) {
        return _presale3Root._checkLeaf(proof, _generateIndexedLeaf(wallet, index));
    }

    function getNextPresale3Index(address wallet) external view returns (uint256) {
        (, , uint32 presale3Purchases, ) = _unpack16(_getAux(wallet));
        return presale3Purchases;
    }

    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.
     *
     * Note: Marked payable, to enable pre-validation of contract payments function with a tiny amount of eth.
     */
    function reserveTokens(address[] memory friends, uint256 count) external payable onlyOwner {
        require(0 < count && count <= MAX_RESERVE_BATCH_SIZE, 'Invalid count');

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

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

        (
            uint16 presale1Purchases,
            uint16 presale2Purchases,
            uint16 presale3Purchases,
            uint16 publicMintPurchases
        ) = _unpack16(_getAux(msg.sender));

        uint256 newBalance = presale1Purchases + count;

        _setAux(
            msg.sender,
            _pack16(uint16(newBalance), presale2Purchases, presale3Purchases, publicMintPurchases)
        );

        _presale1Tokens(msg.sender, proof, newBalance, count);
    }

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

        (
            uint16 presale1Purchases,
            uint16 presale2Purchases,
            uint16 presale3Purchases,
            uint16 publicMintPurchases
        ) = _unpack16(_getAux(msg.sender));

        uint256 newBalance = presale2Purchases + count;

        _presale2Tokens(msg.sender, proof, newBalance, count);

        _setAux(
            msg.sender,
            _pack16(presale1Purchases, uint16(newBalance), presale3Purchases, publicMintPurchases)
        );
    }

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

        (
            uint16 presale1Purchases,
            uint16 presale2Purchases,
            uint16 presale3Purchases,
            uint16 publicMintPurchases
        ) = _unpack16(_getAux(msg.sender));

        uint256 newBalance = presale3Purchases + count;

        _presale3Tokens(msg.sender, proof, newBalance, count);

        _setAux(
            msg.sender,
            _pack16(presale1Purchases, presale2Purchases, uint16(newBalance), publicMintPurchases)
        );
    }

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

        _internalPublicMintTokens(_msgSender(), count);
    }

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

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

    function _presale1Tokens(
        address minter,
        bytes32[] calldata proof,
        uint256 newBalance,
        uint256 count
    ) internal {
        // Verify proof matches expected target total number of presale mints.
        if (!_presale1Root._checkLeaf(proof, _generateIndexedLeaf(minter, newBalance - 1)))
            //Zero-based index.
            revert ProofInvalidPresale();

        _internalPresaleTokens1and2(minter, count);
    }

    function _presale2Tokens(
        address minter,
        bytes32[] calldata proof,
        uint256 newBalance,
        uint256 count
    ) internal {
        // Verify proof matches expected target total number of presale mints.
        if (!_presale2Root._checkLeaf(proof, _generateIndexedLeaf(minter, newBalance - 1)))
            //Zero-based index.
            revert ProofInvalidPresale();

        _internalPresaleTokens1and2(minter, count);
    }

    function _presale3Tokens(
        address minter,
        bytes32[] calldata proof,
        uint256 newBalance,
        uint256 count
    ) internal {
        // Verify proof matches expected target total number of presale mints.
        if (!_presale3Root._checkLeaf(proof, _generateIndexedLeaf(minter, newBalance - 1)))
            //Zero-based index.
            revert ProofInvalidPresale();

        _internalPresaleTokens3(minter, count);
    }

    function _internalPresaleTokens1and2(address minter, uint256 count) internal {
        if (_totalMinted() + count > MAX_NFTS_FOR_PRESALE_1AND2) revert ExceedsMaxSupply();

        _safeMint(minter, count);
    }

    function _internalPresaleTokens3(address minter, uint256 count) internal {
        if (_totalMinted() + count > MAX_NFTS_FOR_PRESALE_3) revert ExceedsMaxSupply();

        _safeMint(minter, count);
    }

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

        _safeMint(minter, count);
    }
}

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

contract TheFoundationCollectionSplits {
    address[] internal addresses = [
        0x40966a835a9a8993BeD9aE541e2a3F00c7734c0D
    ];

    uint256[] internal splits = [100];
}

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 : AuxHelper16.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.11;

/**
 * @title AuxHelper16
 * @author @KC, NFT Culture
 * @dev Helper class for ERC721a Aux storage, using 16 bit ints.
 */
abstract contract AuxHelper16 {
    function _pack16(uint16 left16, uint16 leftCenter16, uint16 rightCenter16, uint16 right16) internal pure returns (uint64) {
        return (uint64(left16) << 48) | (uint64(leftCenter16) << 32) | (uint64(rightCenter16) << 16) | uint16(right16);
    }

    function _unpack16(uint64 aux) internal pure returns (uint16 left16, uint16 leftCenter16, uint16 rightCenter16, uint16 right16) {
        return (uint16(aux >> 48), uint16(aux >> 32), uint16(aux >> 16), uint16(aux));
    }
}

File 7 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 8 of 24 : FourPhaseAlternateMint.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 Four Phase Mint Alternate Implementation
 * @author @KC, NFT Culture
 * @dev All the code needed to support a Four Phase mint in a standard way.
 *
 * Phase 1 - Presale #1
 * Phase 2 - Presale #2
 * Phase 3 - Presale #3
 * Phase 4 - Public Mint
 *
 * Phases are independent and can be run concurrently or exclusively.
 */
contract FourPhaseAlternateMint is Ownable {
    using BooleanPacking for uint256;

    uint256 private constant PRESALE_PHASE_1 = 1;
    uint256 private constant PRESALE_PHASE_2 = 2;
    uint256 private constant PRESALE_PHASE_3 = 3;
    uint256 private constant PUBLIC_MINT_PHASE = 4;

    // BooleanPacking used on mintControlFlags
    uint256 private mintControlFlags;

    uint256 public presale1PricePerNft;
    uint256 public presale2PricePerNft;
    uint256 public presale3PricePerNft;
    uint256 public publicMintPricePerNft;

    modifier isPresale1() {
        require(mintControlFlags.getBoolean(PRESALE_PHASE_1), 'Presale 1 stopped');
        _;
    }

    modifier isPresale2() {
        require(mintControlFlags.getBoolean(PRESALE_PHASE_2), 'Presale 2 stopped');
        _;
    }

    modifier isPresale3() {
        require(mintControlFlags.getBoolean(PRESALE_PHASE_3), 'Presale 3 stopped');
        _;
    }

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

    constructor(
        uint256 __presale1PricePerNft,
        uint256 __presale2PricePerNft,
        uint256 __presale3PricePerNft,
        uint256 __publicMintPricePerNft
    ) {
        presale1PricePerNft = __presale1PricePerNft;
        presale2PricePerNft = __presale2PricePerNft;
        presale3PricePerNft = __presale3PricePerNft;
        publicMintPricePerNft = __publicMintPricePerNft;
    }

    function setMintingState(
        bool __presale1Active,
        bool __presale2Active,
        bool __presale3Active,
        bool __publicMintingActive,
        uint256 __presale1PricePerNft,
        uint256 __presale2PricePerNft,
        uint256 __presale3PricePerNft,
        uint256 __publicMintPricePerNft
    ) external onlyOwner {
        uint256 tempControlFlags;

        tempControlFlags = tempControlFlags.setBoolean(
            PRESALE_PHASE_1,
            __presale1Active
        );
        tempControlFlags = tempControlFlags.setBoolean(
            PRESALE_PHASE_2,
            __presale2Active
        );
        tempControlFlags = tempControlFlags.setBoolean(
            PRESALE_PHASE_3,
            __presale3Active
        );
        tempControlFlags = tempControlFlags.setBoolean(
            PUBLIC_MINT_PHASE,
            __publicMintingActive
        );

        mintControlFlags = tempControlFlags;

        if (__presale1PricePerNft > 0) {
            presale1PricePerNft = __presale1PricePerNft;
        }

        if (__presale2PricePerNft > 0) {
            presale2PricePerNft = __presale2PricePerNft;
        }

        if (__presale3PricePerNft > 0) {
            presale3PricePerNft = __presale3PricePerNft;
        }

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

    function isPresale1Active() external view returns (bool) {
        return mintControlFlags.getBoolean(PRESALE_PHASE_1);
    }

    function isPresale2Active() external view returns (bool) {
        return mintControlFlags.getBoolean(PRESALE_PHASE_2);
    }

    function isPresale3Active() external view returns (bool) {
        return mintControlFlags.getBoolean(PRESALE_PHASE_3);
    }

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

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

File 9 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 10 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/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 MintToZeroAddress();
error MintZeroQuantity();
error OwnerQueryForNonexistentToken();
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 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) {
        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) {
        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) {
        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 {
        _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 virtual 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);

        if (prevOwnership.addr != from) revert TransferFromIncorrectOwner();

        bool isApprovedOrOwner = (_msgSender() == from ||
            isApprovedForAll(from, _msgSender()) ||
            getApproved(tokenId) == _msgSender());

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

        _beforeTokenTransfers(from, to, tokenId, 1);

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

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

            TokenOwnership storage currSlot = _ownerships[tokenId];
            currSlot.addr = to;
            currSlot.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;
            TokenOwnership storage nextSlot = _ownerships[nextTokenId];
            if (nextSlot.addr == address(0)) {
                // This will suffice for checking _exists(nextTokenId),
                // as a burned slot cannot contain the zero address.
                if (nextTokenId != _currentIndex) {
                    nextSlot.addr = from;
                    nextSlot.startTimestamp = prevOwnership.startTimestamp;
                }
            }
        }

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

    /**
     * @dev This is equivalent to _burn(tokenId, false)
     */
    function _burn(uint256 tokenId) internal virtual {
        _burn(tokenId, false);
    }

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

        address from = prevOwnership.addr;

        if (approvalCheck) {
            bool isApprovedOrOwner = (_msgSender() == from ||
                isApprovedForAll(from, _msgSender()) ||
                getApproved(tokenId) == _msgSender());

            if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        }

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

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

        // 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 storage addressData = _addressData[from];
            addressData.balance -= 1;
            addressData.numberBurned += 1;

            // Keep track of who burned the token, and the timestamp of burning.
            TokenOwnership storage currSlot = _ownerships[tokenId];
            currSlot.addr = from;
            currSlot.startTimestamp = uint64(block.timestamp);
            currSlot.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;
            TokenOwnership storage nextSlot = _ownerships[nextTokenId];
            if (nextSlot.addr == address(0)) {
                // This will suffice for checking _exists(nextTokenId),
                // as a burned slot cannot contain the zero address.
                if (nextTokenId != _currentIndex) {
                    nextSlot.addr = from;
                    nextSlot.startTimestamp = prevOwnership.startTimestamp;
                }
            }
        }

        emit Transfer(from, address(0), tokenId);
        _afterTokenTransfers(from, address(0), tokenId, 1);

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

    /**
     * @dev 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 11 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 12 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 13 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 14 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 15 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 16 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 17 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 18 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 19 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 20 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 21 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 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": 1000
  },
  "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":"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":"wallet","type":"address"}],"name":"auxMintValues","outputs":[{"internalType":"uint16","name":"presale1Purchases","type":"uint16"},{"internalType":"uint16","name":"presale2Purchases","type":"uint16"},{"internalType":"uint16","name":"presale3Purchases","type":"uint16"},{"internalType":"uint32","name":"publicMintPurchases","type":"uint32"}],"stateMutability":"view","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"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"checkPresale1","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32[]","name":"proof","type":"bytes32[]"},{"internalType":"address","name":"wallet","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"checkPresale2","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32[]","name":"proof","type":"bytes32[]"},{"internalType":"address","name":"wallet","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"checkPresale3","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":"getNextPresale1Index","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"wallet","type":"address"}],"name":"getNextPresale2Index","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"wallet","type":"address"}],"name":"getNextPresale3Index","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"wallet","type":"address"}],"name":"getPresale1TokensPurchased","outputs":[{"internalType":"uint32","name":"","type":"uint32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"wallet","type":"address"}],"name":"getPresale2TokensPurchased","outputs":[{"internalType":"uint32","name":"","type":"uint32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"wallet","type":"address"}],"name":"getPresale3TokensPurchased","outputs":[{"internalType":"uint32","name":"","type":"uint32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"wallet","type":"address"}],"name":"getPublicMintTokensPurchased","outputs":[{"internalType":"uint32","name":"","type":"uint32"}],"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":"isPresale1Active","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isPresale2Active","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isPresale3Active","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":"maxPresale1and2","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPresale3","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","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":"presale1PricePerNft","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"presale2PricePerNft","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"presale3PricePerNft","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"presaleBatchSize","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"pure","type":"function"},{"inputs":[{"internalType":"bytes32[]","name":"proof","type":"bytes32[]"},{"internalType":"uint256","name":"count","type":"uint256"}],"name":"presalePhaseOneTokens","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"bytes32[]","name":"proof","type":"bytes32[]"},{"internalType":"uint256","name":"count","type":"uint256"}],"name":"presalePhaseThreeTokens","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"bytes32[]","name":"proof","type":"bytes32[]"},{"internalType":"uint256","name":"count","type":"uint256"}],"name":"presalePhaseTwoTokens","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":"payable","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":"__presale1Root","type":"bytes32"},{"internalType":"bytes32","name":"__presale2Root","type":"bytes32"},{"internalType":"bytes32","name":"__presale3Root","type":"bytes32"}],"name":"setMerkleRoots","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"__presale1Active","type":"bool"},{"internalType":"bool","name":"__presale2Active","type":"bool"},{"internalType":"bool","name":"__presale3Active","type":"bool"},{"internalType":"bool","name":"__publicMintingActive","type":"bool"},{"internalType":"uint256","name":"__presale1PricePerNft","type":"uint256"},{"internalType":"uint256","name":"__presale2PricePerNft","type":"uint256"},{"internalType":"uint256","name":"__presale3PricePerNft","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"}]

6101006040527340966a835a9a8993bed9ae541e2a3f00c7734c0d60e09081526200002f906000906001620005af565b506040805160208101909152606481526200004e906001908162000619565b503480156200005c57600080fd5b506040518060400160405280601e81526020017f4d6f6f6e726179546865466f756e646174696f6e436f6c6c656374696f6e0000815250604051806040016040528060078152602001664d4e525954464360c81b815250604051806080016040528060568152602001620042de6056913960008054806020026020016040519081016040528092919081815260200182805480156200012557602002820191906000526020600020905b81546001600160a01b0316815260019091019060200180831162000106575b505050505060018054806020026020016040519081016040528092919081815260200182805480156200017857602002820191906000526020600020905b81548152602001906001019080831162000163575b505050505061067261138861157c6701aa535d3d0c0000670214e8348c4f0000818182838a8a8f8f8160049080519060200190620001b89291906200065c565b508051620001ce9060059060208401906200065c565b50600060025550508051825114620002485760405162461bcd60e51b815260206004820152603260248201527f5061796d656e7453706c69747465723a2070617965657320616e6420736861726044820152710cae640d8cadccee8d040dad2e6dac2e8c6d60731b60648201526084015b60405180910390fd5b60008251116200029b5760405162461bcd60e51b815260206004820152601a60248201527f5061796d656e7453706c69747465723a206e6f2070617965657300000000000060448201526064016200023f565b60005b82518110156200030757620002f2838281518110620002c157620002c1620006f0565b6020026020010151838381518110620002de57620002de620006f0565b60200260200101516200036b60201b60201c565b80620002fe816200071c565b9150506200029e565b505050620003246200031e6200055960201b60201c565b6200055d565b60016010556012939093556013919091556014556015558751620003509060169060208b01906200065c565b50505060809290925260a05260c05250620007929350505050565b6001600160a01b038216620003d85760405162461bcd60e51b815260206004820152602c60248201527f5061796d656e7453706c69747465723a206163636f756e74206973207468652060448201526b7a65726f206164647265737360a01b60648201526084016200023f565b600081116200042a5760405162461bcd60e51b815260206004820152601d60248201527f5061796d656e7453706c69747465723a2073686172657320617265203000000060448201526064016200023f565b6001600160a01b0382166000908152600c602052604090205415620004a65760405162461bcd60e51b815260206004820152602b60248201527f5061796d656e7453706c69747465723a206163636f756e7420616c726561647960448201526a206861732073686172657360a81b60648201526084016200023f565b600e8054600181019091557fbb7b4a454dc3493923482f07822329ed19e8244eff582cc204f8554c3620c3fd0180546001600160a01b0319166001600160a01b0384169081179091556000908152600c60205260409020819055600a54620005109082906200073a565b600a55604080516001600160a01b0384168152602081018390527f40c340f65e17194d14ddddb073d3c9f888e3cb52b5aae0c6c7706b4fbc905fac910160405180910390a15050565b3390565b600f80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b82805482825590600052602060002090810192821562000607579160200282015b828111156200060757825182546001600160a01b0319166001600160a01b03909116178255602090920191600190910190620005d0565b5062000615929150620006d9565b5090565b82805482825590600052602060002090810192821562000607579160200282015b8281111562000607578251829060ff169055916020019190600101906200063a565b8280546200066a9062000755565b90600052602060002090601f0160209004810192826200068e576000855562000607565b82601f10620006a957805160ff191683800117855562000607565b8280016001018555821562000607579182015b8281111562000607578251825591602001919060010190620006bc565b5b80821115620006155760008155600101620006da565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b600060001982141562000733576200073362000706565b5060010190565b6000821982111562000750576200075062000706565b500190565b600181811c908216806200076a57607f821691505b602082108114156200078c57634e487b7160e01b600052602260045260246000fd5b50919050565b60805160a05160c051613b07620007d7600039600081816109de0152612be00152600081816108cf0152612b920152600081816104f30152612ead0152613b076000f3fe6080604052600436106103b05760003560e01c80638da5cb5b116101e7578063cfb00c6d1161010d578063e8ad246f116100a0578063f2fde38b1161006f578063f2fde38b14610b3a578063f3321cfa14610b5a578063f4cca3f514610b7a578063fdb8e8a214610b9a57600080fd5b8063e8ad246f14610a77578063e985e9c514610a8b578063ec0cd2da14610ad4578063f1ffb77d14610b2557600080fd5b8063de284dbc116100dc578063de284dbc14610a17578063e228c6fe14610a2d578063e27c429c14610a42578063e33b7de314610a6257600080fd5b8063cfb00c6d1461099a578063d2c4ed1e146109ba578063d5abeb01146109cf578063db828e5d14610a0257600080fd5b8063a1bc64ab11610185578063b88d4fde11610154578063b88d4fde14610909578063c12a27d114610929578063c87b56dd14610944578063ce7c2ac21461096457600080fd5b8063a1bc64ab14610885578063a22cb465146108a0578063a5921859146108c0578063a78bd324146108f357600080fd5b806397304ced116101c157806397304ced146108135780639852595c1461082657806399f8cf3a1461085c578063a0e240621461086f57600080fd5b80638da5cb5b146107c05780639171b608146107de57806395d89b41146107fe57600080fd5b806342842e0e116102d75780636352211e1161026a578063715018a611610239578063715018a6146107585780637831c8b21461076d5780637fa8f9eb146107805780638b83209b146107a057600080fd5b80636352211e146106f05780636c0360eb146107105780637027c75b1461072557806370a082311461073857600080fd5b80634e998dd8116102a65780634e998dd81461066a57806355f804b31461069a5780635b1b5189146106ba578063628ddf69146106da57600080fd5b806342842e0e1461060357806346d074541461062357806347888bb4146106435780634cbbf5b11461065757600080fd5b8063163480091161034f57806325e1cd1e1161031e57806325e1cd1e1461059a5780632fdc9e8e146105ba57806335841e50146105da5780633a98ef39146105ee57600080fd5b8063163480091461052157806318160ddd14610541578063191655871461055a57806323b872dd1461057a57600080fd5b8063081812fc1161038b578063081812fc14610477578063095ea7b3146104af5780630a64d312146104cf57806314aace23146104e457600080fd5b8062f9ae54146103fe57806301ffc9a71461042057806306fdde031461045557600080fd5b366103f9577f6ef95f06320e7a25a04a175ca677b7052bdd97131872c2192525a629f51be77033604080516001600160a01b0390921682523460208301520160405180910390a1005b600080fd5b34801561040a57600080fd5b5061041e6104193660046133a9565b610bae565b005b34801561042c57600080fd5b5061044061043b3660046133eb565b610c42565b60405190151581526020015b60405180910390f35b34801561046157600080fd5b5061046a610cdf565b60405161044c9190613460565b34801561048357600080fd5b50610497610492366004613473565b610d71565b6040516001600160a01b03909116815260200161044c565b3480156104bb57600080fd5b5061041e6104ca3660046134a1565b610dce565b3480156104db57600080fd5b50610440610e89565b3480156104f057600080fd5b507f00000000000000000000000000000000000000000000000000000000000000005b60405190815260200161044c565b34801561052d57600080fd5b5061041e61053c3660046134cd565b610e9f565b34801561054d57600080fd5b5060035460025403610513565b34801561056657600080fd5b5061041e6105753660046134cd565b611075565b34801561058657600080fd5b5061041e6105953660046134ea565b6110db565b3480156105a657600080fd5b506105136105b53660046134cd565b6110e6565b3480156105c657600080fd5b506105136105d53660046134cd565b61114b565b3480156105e657600080fd5b506000610440565b3480156105fa57600080fd5b50600a54610513565b34801561060f57600080fd5b5061041e61061e3660046134ea565b61118e565b34801561062f57600080fd5b5061051361063e3660046134cd565b6111a9565b34801561064f57600080fd5b506032610513565b61041e610665366004613577565b6111ec565b34801561067657600080fd5b5061068561063e3660046134cd565b60405163ffffffff909116815260200161044c565b3480156106a657600080fd5b5061041e6106b5366004613662565b611462565b3480156106c657600080fd5b506104406106d53660046136ab565b6114d3565b3480156106e657600080fd5b5061051360135481565b3480156106fc57600080fd5b5061049761070b366004613473565b611545565b34801561071c57600080fd5b5061046a611557565b61041e610733366004613577565b6115e5565b34801561074457600080fd5b506105136107533660046134cd565b6117ff565b34801561076457600080fd5b5061041e611867565b61041e61077b366004613577565b6118cd565b34801561078c57600080fd5b5061041e61079b36600461371d565b611ae7565b3480156107ac57600080fd5b506104976107bb366004613473565b611bbb565b3480156107cc57600080fd5b50600f546001600160a01b0316610497565b3480156107ea57600080fd5b506104406107f93660046136ab565b611beb565b34801561080a57600080fd5b5061046a611c52565b61041e610821366004613473565b611c61565b34801561083257600080fd5b506105136108413660046134cd565b6001600160a01b03166000908152600d602052604090205490565b61041e61086a366004613795565b611dfc565b34801561087b57600080fd5b5061051360155481565b34801561089157600080fd5b506106856105d53660046134cd565b3480156108ac57600080fd5b5061041e6108bb36600461384d565b611ee4565b3480156108cc57600080fd5b507f0000000000000000000000000000000000000000000000000000000000000000610513565b3480156108ff57600080fd5b5061051360145481565b34801561091557600080fd5b5061041e610924366004613882565b611f93565b34801561093557600080fd5b506106856105b53660046134cd565b34801561095057600080fd5b5061046a61095f366004613473565b611fe4565b34801561097057600080fd5b5061051361097f3660046134cd565b6001600160a01b03166000908152600c602052604090205490565b3480156109a657600080fd5b506105136109b53660046134a1565b6120ca565b3480156109c657600080fd5b5061044061211f565b3480156109db57600080fd5b507f0000000000000000000000000000000000000000000000000000000000000000610513565b348015610a0e57600080fd5b50610440612130565b348015610a2357600080fd5b5061051360125481565b348015610a3957600080fd5b5061041e612141565b348015610a4e57600080fd5b50610513610a5d3660046134cd565b61214a565b348015610a6e57600080fd5b50600b54610513565b348015610a8357600080fd5b506004610513565b348015610a9757600080fd5b50610440610aa6366004613902565b6001600160a01b03918216600090815260096020908152604080832093909416825291909152205460ff1690565b348015610ae057600080fd5b50610af4610aef3660046134cd565b61218a565b6040805161ffff95861681529385166020850152919093169082015263ffffffff909116606082015260800161044c565b348015610b3157600080fd5b506104406121d8565b348015610b4657600080fd5b5061041e610b553660046134cd565b6121e9565b348015610b6657600080fd5b50610685610b753660046134cd565b6122c8565b348015610b8657600080fd5b50610440610b953660046136ab565b61230b565b348015610ba657600080fd5b506014610513565b600f546001600160a01b03163314610c0d5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064015b60405180910390fd5b8215610c1d57610c1d6017849055565b8115610c2d57610c2d6018839055565b8015610c3d57610c3d6019829055565b505050565b60006001600160e01b031982167f80ac58cd000000000000000000000000000000000000000000000000000000001480610ca557506001600160e01b031982167f5b5e139f00000000000000000000000000000000000000000000000000000000145b80610cd957507f01ffc9a7000000000000000000000000000000000000000000000000000000006001600160e01b03198316145b92915050565b606060048054610cee9061393b565b80601f0160208091040260200160405190810160405280929190818152602001828054610d1a9061393b565b8015610d675780601f10610d3c57610100808354040283529160200191610d67565b820191906000526020600020905b815481529060010190602001808311610d4a57829003601f168201915b5050505050905090565b6000610d7c82612372565b610db2576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b506000908152600860205260409020546001600160a01b031690565b6000610dd982611545565b9050806001600160a01b0316836001600160a01b03161415610e27576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b336001600160a01b03821614801590610e475750610e458133610aa6565b155b15610e7e576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610c3d83838361239e565b601154600090610e9a906001612407565b905090565b6001600160a01b038116610f1b5760405162461bcd60e51b815260206004820152602f60248201527f5061796d656e7453706c69747465723a204e657720706179656520697320746860448201527f65207a65726f20616464726573732e00000000000000000000000000000000006064820152608401610c04565b336000908152600c6020526040902054610f9c5760405162461bcd60e51b8152602060048201526024808201527f5061796d656e7453706c69747465723a20596f752068617665206e6f2073686160448201527f7265732e000000000000000000000000000000000000000000000000000000006064820152608401610c04565b6001600160a01b0381166000908152600c6020526040902054156110285760405162461bcd60e51b815260206004820152602e60248201527f5061796d656e7453706c69747465723a204e657720706179656520616c72656160448201527f647920686173207368617265732e0000000000000000000000000000000000006064820152608401610c04565b61103181612428565b604080513381526001600160a01b03831660208201527f6829b4029cd073199f80f49556d32953c9bc4e14d395388e678d2cc4604d4819910160405180910390a150565b600f546001600160a01b031633146110cf5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610c04565b6110d8816124ff565b50565b610c3d8383836126d9565b6001600160a01b038116600090815260076020526040812054819061113d90600160c01b900467ffffffffffffffff165b603081901c61ffff1691602082901c63ffffffff1691601081901c65ffffffffffff1691565b5061ffff1695945050505050565b6001600160a01b038116600090815260076020526040812054819061118090600160c01b900467ffffffffffffffff16611117565b50505061ffff169392505050565b610c3d83838360405180602001604052806000815250611f93565b6001600160a01b03811660009081526007602052604081205481906111de90600160c01b900467ffffffffffffffff16611117565b505061ffff16949350505050565b6002601054141561123f5760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610c04565b60026010553233146112825760405162461bcd60e51b815260206004820152600c60248201526b26bab9ba103132903ab9b2b960a11b6044820152606401610c04565b601154611290906001612407565b6112dc5760405162461bcd60e51b815260206004820152601160248201527f50726573616c6520312073746f707065640000000000000000000000000000006044820152606401610c04565b8060001080156112ed575060328111155b6113295760405162461bcd60e51b815260206004820152600d60248201526c125b9d985b1a590818dbdd5b9d609a1b6044820152606401610c04565b80601254611337919061398c565b34146113755760405162461bcd60e51b815260206004820152600d60248201526c496e76616c696420707269636560981b6044820152606401610c04565b336000908152600760205260408120548190819081906113a590600160c01b900467ffffffffffffffff16611117565b93509350935093506000858561ffff166113bf91906139ab565b90506114463361ffff8416601086901b63ffff000016602088901b65ffff0000000016603086901b67ffff000000000000161717175b6001600160a01b039091166000908152600760205260409020805467ffffffffffffffff909216600160c01b0277ffffffffffffffffffffffffffffffffffffffffffffffff909216919091179055565b611453338989848a612915565b50506001601055505050505050565b600f546001600160a01b031633146114bc5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610c04565b80516114cf906016906020840190613310565b5050565b600061153a858561153086866040516bffffffffffffffffffffffff19606084901b166020820152605f60f81b60348201526035810182905260009060550160405160208183030381529060405280519060200120905092915050565b60189291906129a1565b90505b949350505050565b6000611550826129b2565b5192915050565b601680546115649061393b565b80601f01602080910402602001604051908101604052809291908181526020018280546115909061393b565b80156115dd5780601f106115b2576101008083540402835291602001916115dd565b820191906000526020600020905b8154815290600101906020018083116115c057829003601f168201915b505050505081565b600260105414156116385760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610c04565b600260105532331461167b5760405162461bcd60e51b815260206004820152600c60248201526b26bab9ba103132903ab9b2b960a11b6044820152606401610c04565b601154611689906002612407565b6116d55760405162461bcd60e51b815260206004820152601160248201527f50726573616c6520322073746f707065640000000000000000000000000000006044820152606401610c04565b8060001080156116e6575060328111155b6117225760405162461bcd60e51b815260206004820152600d60248201526c125b9d985b1a590818dbdd5b9d609a1b6044820152606401610c04565b80601354611730919061398c565b341461176e5760405162461bcd60e51b815260206004820152600d60248201526c496e76616c696420707269636560981b6044820152606401610c04565b3360009081526007602052604081205481908190819061179e90600160c01b900467ffffffffffffffff16611117565b93509350935093506000858461ffff166117b891906139ab565b90506117c7338989848a612ae7565b6114533361ffff8416601086901b63ffff000016602085901b65ffff000000001660308a901b67ffff000000000000161717176113f5565b60006001600160a01b038216611841576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b506001600160a01b031660009081526007602052604090205467ffffffffffffffff1690565b600f546001600160a01b031633146118c15760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610c04565b6118cb6000612afb565b565b600260105414156119205760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610c04565b60026010553233146119635760405162461bcd60e51b815260206004820152600c60248201526b26bab9ba103132903ab9b2b960a11b6044820152606401610c04565b601154611971906003612407565b6119bd5760405162461bcd60e51b815260206004820152601160248201527f50726573616c6520332073746f707065640000000000000000000000000000006044820152606401610c04565b8060001080156119ce575060328111155b611a0a5760405162461bcd60e51b815260206004820152600d60248201526c125b9d985b1a590818dbdd5b9d609a1b6044820152606401610c04565b80601454611a18919061398c565b3414611a565760405162461bcd60e51b815260206004820152600d60248201526c496e76616c696420707269636560981b6044820152606401610c04565b33600090815260076020526040812054819081908190611a8690600160c01b900467ffffffffffffffff16611117565b93509350935093506000858361ffff16611aa091906139ab565b9050611aaf338989848a612b5a565b6114533361ffff8416601084901b63ffff000016602088901b65ffff000000001660308a901b67ffff000000000000161717176113f5565b600f546001600160a01b03163314611b415760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610c04565b6000611b4f8160018b612bbb565b9050611b5d8160028a612bbb565b9050611b6b81600389612bbb565b9050611b7981600488612bbb565b601181905590508415611b8c5760128590555b8315611b985760138490555b8215611ba45760148390555b8115611bb05760158290555b505050505050505050565b6000600e8281548110611bd057611bd06139c3565b6000918252602090912001546001600160a01b031692915050565b600061153a8585611c4886866040516bffffffffffffffffffffffff19606084901b166020820152605f60f81b60348201526035810182905260009060550160405160208183030381529060405280519060200120905092915050565b60179291906129a1565b606060058054610cee9061393b565b60026010541415611cb45760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610c04565b6002601055323314611cf75760405162461bcd60e51b815260206004820152600c60248201526b26bab9ba103132903ab9b2b960a11b6044820152606401610c04565b601154611d05906004612407565b611d515760405162461bcd60e51b815260206004820152600f60248201527f4d696e74696e672073746f7070656400000000000000000000000000000000006044820152606401610c04565b806000108015611d62575060148111155b611d9e5760405162461bcd60e51b815260206004820152600d60248201526c125b9d985b1a590818dbdd5b9d609a1b6044820152606401610c04565b80601554611dac919061398c565b3414611dea5760405162461bcd60e51b815260206004820152600d60248201526c496e76616c696420707269636560981b6044820152606401610c04565b611df43382612bde565b506001601055565b600f546001600160a01b03163314611e565760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610c04565b806000108015611e67575060648111155b611ea35760405162461bcd60e51b815260206004820152600d60248201526c125b9d985b1a590818dbdd5b9d609a1b6044820152606401610c04565b60005b8251811015610c3d57611ed2838281518110611ec457611ec46139c3565b602002602001015183612bde565b80611edc816139d9565b915050611ea6565b6001600160a01b038216331415611f27576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b3360008181526009602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b611f9e8484846126d9565b6001600160a01b0383163b15158015611fc05750611fbe84848484612c55565b155b15611fde576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b6060611fef82612372565b61203b5760405162461bcd60e51b815260206004820152600860248201527f4e6f20746f6b656e0000000000000000000000000000000000000000000000006044820152606401610c04565b6000612045612d3a565b905060008151116120985760405162461bcd60e51b815260206004820152600a60248201527f4261736520756e736574000000000000000000000000000000000000000000006044820152606401610c04565b806120a284612d49565b6040516020016120b39291906139f4565b604051602081830303815290604052915050919050565b60408051606084901b6bffffffffffffffffffffffff1916602080830191909152605f60f81b6034830152603580830185905283518084039091018152605590920190925280519101206000905b9392505050565b601154600090610e9a906003612407565b601154600090610e9a906004612407565b6118cb336124ff565b60408051606083901b6bffffffffffffffffffffffff19166020808301919091528251601481840301815260349092019092528051910120600090610cd9565b6000806000806121c4611117866001600160a01b031660009081526007602052604090205467ffffffffffffffff600160c01b9091041690565b9298919750955061ffff9091169350915050565b601154600090610e9a906002612407565b600f546001600160a01b031633146122435760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610c04565b6001600160a01b0381166122bf5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f64647265737300000000000000000000000000000000000000000000000000006064820152608401610c04565b6110d881612afb565b6001600160a01b03811660009081526007602052604081205481906122fd90600160c01b900467ffffffffffffffff16611117565b61ffff169695505050505050565b600061153a858561236886866040516bffffffffffffffffffffffff19606084901b166020820152605f60f81b60348201526035810182905260009060550160405160208183030381529060405280519060200120905092915050565b60199291906129a1565b600060025482108015610cd9575050600090815260066020526040902054600160e01b900460ff161590565b600082815260086020526040808220805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6000600183831c811690811461241e57600061153d565b6001949350505050565b600e546124325750565b60005b600e5461244490600190613a23565b8110156114cf57336001600160a01b0316600e8281548110612468576124686139c3565b6000918252602090912001546001600160a01b031614156124ed5781600e8281548110612497576124976139c3565b6000918252602080832091909101805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0394851617905533808352600c90915260408083208054948716845290832093909355815290555b806124f7816139d9565b915050612435565b6001600160a01b0381166000908152600c602052604090205461258a5760405162461bcd60e51b815260206004820152602660248201527f5061796d656e7453706c69747465723a206163636f756e7420686173206e6f2060448201527f73686172657300000000000000000000000000000000000000000000000000006064820152608401610c04565b6000612595600b5490565b61259f90476139ab565b905060006125cc83836125c7866001600160a01b03166000908152600d602052604090205490565b612d54565b9050806126415760405162461bcd60e51b815260206004820152602b60248201527f5061796d656e7453706c69747465723a206163636f756e74206973206e6f742060448201527f647565207061796d656e740000000000000000000000000000000000000000006064820152608401610c04565b6001600160a01b0383166000908152600d6020526040812080548392906126699084906139ab565b9250508190555080600b600082825461268291906139ab565b9091555061269290508382612d92565b604080516001600160a01b0385168152602081018390527fdf20fd1e76bc69d672e4814fafb2c449bba3a5369d8359adf9e05e6fde87b056910160405180910390a1505050565b60006126e4826129b2565b9050836001600160a01b031681600001516001600160a01b031614612735576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000336001600160a01b038616148061275357506127538533610aa6565b8061276e57503361276384610d71565b6001600160a01b0316145b9050806127a7576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6001600160a01b0384166127e7576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6127f36000848761239e565b6001600160a01b038581166000908152600760209081526040808320805467ffffffffffffffff1980821667ffffffffffffffff92831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600690945282852080546001600160e01b031916909417600160a01b429092169190910217835587018084529220805491939091166128c95760025482146128c9578054602086015167ffffffffffffffff16600160a01b026001600160e01b03199091166001600160a01b038a16171781555b50505082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b61297a8484611c4888612929600188613a23565b6040516bffffffffffffffffffffffff19606084901b166020820152605f60f81b60348201526035810182905260009060550160405160208183030381529060405280519060200120905092915050565b61299757604051630c7296bb60e11b815260040160405180910390fd5b61290e8582612eab565b835460009061153a90858585612ed6565b604080516060810182526000808252602082018190529181019190915281600254811015612ab557600081815260066020908152604091829020825160608101845290546001600160a01b0381168252600160a01b810467ffffffffffffffff1692820192909252600160e01b90910460ff16151591810182905290612ab35780516001600160a01b031615612a49579392505050565b5060001901600081815260066020908152604091829020825160608101845290546001600160a01b038116808352600160a01b820467ffffffffffffffff1693830193909352600160e01b900460ff1615159281019290925215612aae579392505050565b612a49565b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61297a848461153088612929600188613a23565b600f80546001600160a01b0383811673ffffffffffffffffffffffffffffffffffffffff19831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b612b6e848461236888612929600188613a23565b612b8b57604051630c7296bb60e11b815260040160405180910390fd5b61290e85827f000000000000000000000000000000000000000000000000000000000000000081612c0960025490565b60008115612bd357506001821b929092179182612118565b50506001901b191690565b7f000000000000000000000000000000000000000000000000000000000000000081612c0960025490565b612c1391906139ab565b1115612c4b576040517fc30436e900000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6114cf8282612f1a565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a0290612c8a903390899088908890600401613a3a565b6020604051808303816000875af1925050508015612cc5575060408051601f3d908101601f19168201909252612cc291810190613a76565b60015b612d20573d808015612cf3576040519150601f19603f3d011682016040523d82523d6000602084013e612cf8565b606091505b508051612d18576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b14905061153d565b606060168054610cee9061393b565b6060610cd982612f34565b600a546001600160a01b0384166000908152600c602052604081205490918391612d7e908661398c565b612d889190613aa9565b61153d9190613a23565b80471015612de25760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a20696e73756666696369656e742062616c616e63650000006044820152606401610c04565b6000826001600160a01b03168260405160006040518083038185875af1925050503d8060008114612e2f576040519150601f19603f3d011682016040523d82523d6000602084013e612e34565b606091505b5050905080610c3d5760405162461bcd60e51b815260206004820152603a60248201527f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260448201527f6563697069656e74206d617920686176652072657665727465640000000000006064820152608401610c04565b7f000000000000000000000000000000000000000000000000000000000000000081612c0960025490565b600061153a85838686808060200260200160405190810160405280939291908181526020018383602002808284376000920191909152509294939250506130669050565b6114cf82826040518060200160405280600081525061307c565b606081612f7457505060408051808201909152600181527f3000000000000000000000000000000000000000000000000000000000000000602082015290565b8160005b8115612f9e5780612f88816139d9565b9150612f979050600a83613aa9565b9150612f78565b60008167ffffffffffffffff811115612fb957612fb96135c3565b6040519080825280601f01601f191660200182016040528015612fe3576020820181803683370190505b5090505b841561153d57612ff8600183613a23565b9150613005600a86613abd565b6130109060306139ab565b60f81b818381518110613025576130256139c3565b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a90535061305f600a86613aa9565b9450612fe7565b6000826130738584613089565b14949350505050565b610c3d83838360016130fd565b600081815b84518110156130f55760008582815181106130ab576130ab6139c3565b602002602001015190508083116130d157600083815260208290526040902092506130e2565b600081815260208490526040902092505b50806130ed816139d9565b91505061308e565b509392505050565b6002546001600160a01b038516613140576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b83613177576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6001600160a01b038516600081815260076020908152604080832080547fffffffffffffffffffffffffffffffff00000000000000000000000000000000811667ffffffffffffffff8083168c0181169182176801000000000000000067ffffffffffffffff1990941690921783900481168c01811690920217909155858452600690925290912080546001600160e01b031916909217600160a01b42909216919091021790558080850183801561323857506001600160a01b0387163b15155b156132c1575b60405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a46132896000888480600101955088612c55565b6132a6576040516368d2bf6b60e11b815260040160405180910390fd5b8082141561323e5782600254146132bc57600080fd5b613307565b5b6040516001830192906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4808214156132c2575b5060025561290e565b82805461331c9061393b565b90600052602060002090601f01602090048101928261333e5760008555613384565b82601f1061335757805160ff1916838001178555613384565b82800160010185558215613384579182015b82811115613384578251825591602001919060010190613369565b50613390929150613394565b5090565b5b808211156133905760008155600101613395565b6000806000606084860312156133be57600080fd5b505081359360208301359350604090920135919050565b6001600160e01b0319811681146110d857600080fd5b6000602082840312156133fd57600080fd5b8135612118816133d5565b60005b8381101561342357818101518382015260200161340b565b83811115611fde5750506000910152565b6000815180845261344c816020860160208601613408565b601f01601f19169290920160200192915050565b6020815260006121186020830184613434565b60006020828403121561348557600080fd5b5035919050565b6001600160a01b03811681146110d857600080fd5b600080604083850312156134b457600080fd5b82356134bf8161348c565b946020939093013593505050565b6000602082840312156134df57600080fd5b81356121188161348c565b6000806000606084860312156134ff57600080fd5b833561350a8161348c565b9250602084013561351a8161348c565b929592945050506040919091013590565b60008083601f84011261353d57600080fd5b50813567ffffffffffffffff81111561355557600080fd5b6020830191508360208260051b850101111561357057600080fd5b9250929050565b60008060006040848603121561358c57600080fd5b833567ffffffffffffffff8111156135a357600080fd5b6135af8682870161352b565b909790965060209590950135949350505050565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f1916810167ffffffffffffffff81118282101715613602576136026135c3565b604052919050565b600067ffffffffffffffff831115613624576136246135c3565b613637601f8401601f19166020016135d9565b905082815283838301111561364b57600080fd5b828260208301376000602084830101529392505050565b60006020828403121561367457600080fd5b813567ffffffffffffffff81111561368b57600080fd5b8201601f8101841361369c57600080fd5b61153d8482356020840161360a565b600080600080606085870312156136c157600080fd5b843567ffffffffffffffff8111156136d857600080fd5b6136e48782880161352b565b90955093505060208501356136f88161348c565b9396929550929360400135925050565b8035801515811461371857600080fd5b919050565b600080600080600080600080610100898b03121561373a57600080fd5b61374389613708565b975061375160208a01613708565b965061375f60408a01613708565b955061376d60608a01613708565b979a969950949760808101359660a0820135965060c0820135955060e0909101359350915050565b600080604083850312156137a857600080fd5b823567ffffffffffffffff808211156137c057600080fd5b818501915085601f8301126137d457600080fd5b81356020828211156137e8576137e86135c3565b8160051b92506137f98184016135d9565b828152928401810192818101908985111561381357600080fd5b948201945b8486101561383d578535935061382d8461348c565b8382529482019490820190613818565b9997909101359750505050505050565b6000806040838503121561386057600080fd5b823561386b8161348c565b915061387960208401613708565b90509250929050565b6000806000806080858703121561389857600080fd5b84356138a38161348c565b935060208501356138b38161348c565b925060408501359150606085013567ffffffffffffffff8111156138d657600080fd5b8501601f810187136138e757600080fd5b6138f68782356020840161360a565b91505092959194509250565b6000806040838503121561391557600080fd5b82356139208161348c565b915060208301356139308161348c565b809150509250929050565b600181811c9082168061394f57607f821691505b6020821081141561397057634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b60008160001904831182151516156139a6576139a6613976565b500290565b600082198211156139be576139be613976565b500190565b634e487b7160e01b600052603260045260246000fd5b60006000198214156139ed576139ed613976565b5060010190565b60008351613a06818460208801613408565b835190830190613a1a818360208801613408565b01949350505050565b600082821015613a3557613a35613976565b500390565b60006001600160a01b03808716835280861660208401525083604083015260806060830152613a6c6080830184613434565b9695505050505050565b600060208284031215613a8857600080fd5b8151612118816133d5565b634e487b7160e01b600052601260045260246000fd5b600082613ab857613ab8613a93565b500490565b600082613acc57613acc613a93565b50069056fea26469706673582212202492c3783dc53b5fb248a5e0617251e02700f9eda572a178a35195e4daac0c3c64736f6c634300080b003368747470733a2f2f6e667463756c747572652e6d7970696e6174612e636c6f75642f697066732f516d58534357383977435943656b706665344e525178687443355844614e3132343866545673654d3365543635442f

Deployed Bytecode

0x6080604052600436106103b05760003560e01c80638da5cb5b116101e7578063cfb00c6d1161010d578063e8ad246f116100a0578063f2fde38b1161006f578063f2fde38b14610b3a578063f3321cfa14610b5a578063f4cca3f514610b7a578063fdb8e8a214610b9a57600080fd5b8063e8ad246f14610a77578063e985e9c514610a8b578063ec0cd2da14610ad4578063f1ffb77d14610b2557600080fd5b8063de284dbc116100dc578063de284dbc14610a17578063e228c6fe14610a2d578063e27c429c14610a42578063e33b7de314610a6257600080fd5b8063cfb00c6d1461099a578063d2c4ed1e146109ba578063d5abeb01146109cf578063db828e5d14610a0257600080fd5b8063a1bc64ab11610185578063b88d4fde11610154578063b88d4fde14610909578063c12a27d114610929578063c87b56dd14610944578063ce7c2ac21461096457600080fd5b8063a1bc64ab14610885578063a22cb465146108a0578063a5921859146108c0578063a78bd324146108f357600080fd5b806397304ced116101c157806397304ced146108135780639852595c1461082657806399f8cf3a1461085c578063a0e240621461086f57600080fd5b80638da5cb5b146107c05780639171b608146107de57806395d89b41146107fe57600080fd5b806342842e0e116102d75780636352211e1161026a578063715018a611610239578063715018a6146107585780637831c8b21461076d5780637fa8f9eb146107805780638b83209b146107a057600080fd5b80636352211e146106f05780636c0360eb146107105780637027c75b1461072557806370a082311461073857600080fd5b80634e998dd8116102a65780634e998dd81461066a57806355f804b31461069a5780635b1b5189146106ba578063628ddf69146106da57600080fd5b806342842e0e1461060357806346d074541461062357806347888bb4146106435780634cbbf5b11461065757600080fd5b8063163480091161034f57806325e1cd1e1161031e57806325e1cd1e1461059a5780632fdc9e8e146105ba57806335841e50146105da5780633a98ef39146105ee57600080fd5b8063163480091461052157806318160ddd14610541578063191655871461055a57806323b872dd1461057a57600080fd5b8063081812fc1161038b578063081812fc14610477578063095ea7b3146104af5780630a64d312146104cf57806314aace23146104e457600080fd5b8062f9ae54146103fe57806301ffc9a71461042057806306fdde031461045557600080fd5b366103f9577f6ef95f06320e7a25a04a175ca677b7052bdd97131872c2192525a629f51be77033604080516001600160a01b0390921682523460208301520160405180910390a1005b600080fd5b34801561040a57600080fd5b5061041e6104193660046133a9565b610bae565b005b34801561042c57600080fd5b5061044061043b3660046133eb565b610c42565b60405190151581526020015b60405180910390f35b34801561046157600080fd5b5061046a610cdf565b60405161044c9190613460565b34801561048357600080fd5b50610497610492366004613473565b610d71565b6040516001600160a01b03909116815260200161044c565b3480156104bb57600080fd5b5061041e6104ca3660046134a1565b610dce565b3480156104db57600080fd5b50610440610e89565b3480156104f057600080fd5b507f00000000000000000000000000000000000000000000000000000000000006725b60405190815260200161044c565b34801561052d57600080fd5b5061041e61053c3660046134cd565b610e9f565b34801561054d57600080fd5b5060035460025403610513565b34801561056657600080fd5b5061041e6105753660046134cd565b611075565b34801561058657600080fd5b5061041e6105953660046134ea565b6110db565b3480156105a657600080fd5b506105136105b53660046134cd565b6110e6565b3480156105c657600080fd5b506105136105d53660046134cd565b61114b565b3480156105e657600080fd5b506000610440565b3480156105fa57600080fd5b50600a54610513565b34801561060f57600080fd5b5061041e61061e3660046134ea565b61118e565b34801561062f57600080fd5b5061051361063e3660046134cd565b6111a9565b34801561064f57600080fd5b506032610513565b61041e610665366004613577565b6111ec565b34801561067657600080fd5b5061068561063e3660046134cd565b60405163ffffffff909116815260200161044c565b3480156106a657600080fd5b5061041e6106b5366004613662565b611462565b3480156106c657600080fd5b506104406106d53660046136ab565b6114d3565b3480156106e657600080fd5b5061051360135481565b3480156106fc57600080fd5b5061049761070b366004613473565b611545565b34801561071c57600080fd5b5061046a611557565b61041e610733366004613577565b6115e5565b34801561074457600080fd5b506105136107533660046134cd565b6117ff565b34801561076457600080fd5b5061041e611867565b61041e61077b366004613577565b6118cd565b34801561078c57600080fd5b5061041e61079b36600461371d565b611ae7565b3480156107ac57600080fd5b506104976107bb366004613473565b611bbb565b3480156107cc57600080fd5b50600f546001600160a01b0316610497565b3480156107ea57600080fd5b506104406107f93660046136ab565b611beb565b34801561080a57600080fd5b5061046a611c52565b61041e610821366004613473565b611c61565b34801561083257600080fd5b506105136108413660046134cd565b6001600160a01b03166000908152600d602052604090205490565b61041e61086a366004613795565b611dfc565b34801561087b57600080fd5b5061051360155481565b34801561089157600080fd5b506106856105d53660046134cd565b3480156108ac57600080fd5b5061041e6108bb36600461384d565b611ee4565b3480156108cc57600080fd5b507f0000000000000000000000000000000000000000000000000000000000001388610513565b3480156108ff57600080fd5b5061051360145481565b34801561091557600080fd5b5061041e610924366004613882565b611f93565b34801561093557600080fd5b506106856105b53660046134cd565b34801561095057600080fd5b5061046a61095f366004613473565b611fe4565b34801561097057600080fd5b5061051361097f3660046134cd565b6001600160a01b03166000908152600c602052604090205490565b3480156109a657600080fd5b506105136109b53660046134a1565b6120ca565b3480156109c657600080fd5b5061044061211f565b3480156109db57600080fd5b507f000000000000000000000000000000000000000000000000000000000000157c610513565b348015610a0e57600080fd5b50610440612130565b348015610a2357600080fd5b5061051360125481565b348015610a3957600080fd5b5061041e612141565b348015610a4e57600080fd5b50610513610a5d3660046134cd565b61214a565b348015610a6e57600080fd5b50600b54610513565b348015610a8357600080fd5b506004610513565b348015610a9757600080fd5b50610440610aa6366004613902565b6001600160a01b03918216600090815260096020908152604080832093909416825291909152205460ff1690565b348015610ae057600080fd5b50610af4610aef3660046134cd565b61218a565b6040805161ffff95861681529385166020850152919093169082015263ffffffff909116606082015260800161044c565b348015610b3157600080fd5b506104406121d8565b348015610b4657600080fd5b5061041e610b553660046134cd565b6121e9565b348015610b6657600080fd5b50610685610b753660046134cd565b6122c8565b348015610b8657600080fd5b50610440610b953660046136ab565b61230b565b348015610ba657600080fd5b506014610513565b600f546001600160a01b03163314610c0d5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064015b60405180910390fd5b8215610c1d57610c1d6017849055565b8115610c2d57610c2d6018839055565b8015610c3d57610c3d6019829055565b505050565b60006001600160e01b031982167f80ac58cd000000000000000000000000000000000000000000000000000000001480610ca557506001600160e01b031982167f5b5e139f00000000000000000000000000000000000000000000000000000000145b80610cd957507f01ffc9a7000000000000000000000000000000000000000000000000000000006001600160e01b03198316145b92915050565b606060048054610cee9061393b565b80601f0160208091040260200160405190810160405280929190818152602001828054610d1a9061393b565b8015610d675780601f10610d3c57610100808354040283529160200191610d67565b820191906000526020600020905b815481529060010190602001808311610d4a57829003601f168201915b5050505050905090565b6000610d7c82612372565b610db2576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b506000908152600860205260409020546001600160a01b031690565b6000610dd982611545565b9050806001600160a01b0316836001600160a01b03161415610e27576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b336001600160a01b03821614801590610e475750610e458133610aa6565b155b15610e7e576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610c3d83838361239e565b601154600090610e9a906001612407565b905090565b6001600160a01b038116610f1b5760405162461bcd60e51b815260206004820152602f60248201527f5061796d656e7453706c69747465723a204e657720706179656520697320746860448201527f65207a65726f20616464726573732e00000000000000000000000000000000006064820152608401610c04565b336000908152600c6020526040902054610f9c5760405162461bcd60e51b8152602060048201526024808201527f5061796d656e7453706c69747465723a20596f752068617665206e6f2073686160448201527f7265732e000000000000000000000000000000000000000000000000000000006064820152608401610c04565b6001600160a01b0381166000908152600c6020526040902054156110285760405162461bcd60e51b815260206004820152602e60248201527f5061796d656e7453706c69747465723a204e657720706179656520616c72656160448201527f647920686173207368617265732e0000000000000000000000000000000000006064820152608401610c04565b61103181612428565b604080513381526001600160a01b03831660208201527f6829b4029cd073199f80f49556d32953c9bc4e14d395388e678d2cc4604d4819910160405180910390a150565b600f546001600160a01b031633146110cf5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610c04565b6110d8816124ff565b50565b610c3d8383836126d9565b6001600160a01b038116600090815260076020526040812054819061113d90600160c01b900467ffffffffffffffff165b603081901c61ffff1691602082901c63ffffffff1691601081901c65ffffffffffff1691565b5061ffff1695945050505050565b6001600160a01b038116600090815260076020526040812054819061118090600160c01b900467ffffffffffffffff16611117565b50505061ffff169392505050565b610c3d83838360405180602001604052806000815250611f93565b6001600160a01b03811660009081526007602052604081205481906111de90600160c01b900467ffffffffffffffff16611117565b505061ffff16949350505050565b6002601054141561123f5760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610c04565b60026010553233146112825760405162461bcd60e51b815260206004820152600c60248201526b26bab9ba103132903ab9b2b960a11b6044820152606401610c04565b601154611290906001612407565b6112dc5760405162461bcd60e51b815260206004820152601160248201527f50726573616c6520312073746f707065640000000000000000000000000000006044820152606401610c04565b8060001080156112ed575060328111155b6113295760405162461bcd60e51b815260206004820152600d60248201526c125b9d985b1a590818dbdd5b9d609a1b6044820152606401610c04565b80601254611337919061398c565b34146113755760405162461bcd60e51b815260206004820152600d60248201526c496e76616c696420707269636560981b6044820152606401610c04565b336000908152600760205260408120548190819081906113a590600160c01b900467ffffffffffffffff16611117565b93509350935093506000858561ffff166113bf91906139ab565b90506114463361ffff8416601086901b63ffff000016602088901b65ffff0000000016603086901b67ffff000000000000161717175b6001600160a01b039091166000908152600760205260409020805467ffffffffffffffff909216600160c01b0277ffffffffffffffffffffffffffffffffffffffffffffffff909216919091179055565b611453338989848a612915565b50506001601055505050505050565b600f546001600160a01b031633146114bc5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610c04565b80516114cf906016906020840190613310565b5050565b600061153a858561153086866040516bffffffffffffffffffffffff19606084901b166020820152605f60f81b60348201526035810182905260009060550160405160208183030381529060405280519060200120905092915050565b60189291906129a1565b90505b949350505050565b6000611550826129b2565b5192915050565b601680546115649061393b565b80601f01602080910402602001604051908101604052809291908181526020018280546115909061393b565b80156115dd5780601f106115b2576101008083540402835291602001916115dd565b820191906000526020600020905b8154815290600101906020018083116115c057829003601f168201915b505050505081565b600260105414156116385760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610c04565b600260105532331461167b5760405162461bcd60e51b815260206004820152600c60248201526b26bab9ba103132903ab9b2b960a11b6044820152606401610c04565b601154611689906002612407565b6116d55760405162461bcd60e51b815260206004820152601160248201527f50726573616c6520322073746f707065640000000000000000000000000000006044820152606401610c04565b8060001080156116e6575060328111155b6117225760405162461bcd60e51b815260206004820152600d60248201526c125b9d985b1a590818dbdd5b9d609a1b6044820152606401610c04565b80601354611730919061398c565b341461176e5760405162461bcd60e51b815260206004820152600d60248201526c496e76616c696420707269636560981b6044820152606401610c04565b3360009081526007602052604081205481908190819061179e90600160c01b900467ffffffffffffffff16611117565b93509350935093506000858461ffff166117b891906139ab565b90506117c7338989848a612ae7565b6114533361ffff8416601086901b63ffff000016602085901b65ffff000000001660308a901b67ffff000000000000161717176113f5565b60006001600160a01b038216611841576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b506001600160a01b031660009081526007602052604090205467ffffffffffffffff1690565b600f546001600160a01b031633146118c15760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610c04565b6118cb6000612afb565b565b600260105414156119205760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610c04565b60026010553233146119635760405162461bcd60e51b815260206004820152600c60248201526b26bab9ba103132903ab9b2b960a11b6044820152606401610c04565b601154611971906003612407565b6119bd5760405162461bcd60e51b815260206004820152601160248201527f50726573616c6520332073746f707065640000000000000000000000000000006044820152606401610c04565b8060001080156119ce575060328111155b611a0a5760405162461bcd60e51b815260206004820152600d60248201526c125b9d985b1a590818dbdd5b9d609a1b6044820152606401610c04565b80601454611a18919061398c565b3414611a565760405162461bcd60e51b815260206004820152600d60248201526c496e76616c696420707269636560981b6044820152606401610c04565b33600090815260076020526040812054819081908190611a8690600160c01b900467ffffffffffffffff16611117565b93509350935093506000858361ffff16611aa091906139ab565b9050611aaf338989848a612b5a565b6114533361ffff8416601084901b63ffff000016602088901b65ffff000000001660308a901b67ffff000000000000161717176113f5565b600f546001600160a01b03163314611b415760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610c04565b6000611b4f8160018b612bbb565b9050611b5d8160028a612bbb565b9050611b6b81600389612bbb565b9050611b7981600488612bbb565b601181905590508415611b8c5760128590555b8315611b985760138490555b8215611ba45760148390555b8115611bb05760158290555b505050505050505050565b6000600e8281548110611bd057611bd06139c3565b6000918252602090912001546001600160a01b031692915050565b600061153a8585611c4886866040516bffffffffffffffffffffffff19606084901b166020820152605f60f81b60348201526035810182905260009060550160405160208183030381529060405280519060200120905092915050565b60179291906129a1565b606060058054610cee9061393b565b60026010541415611cb45760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610c04565b6002601055323314611cf75760405162461bcd60e51b815260206004820152600c60248201526b26bab9ba103132903ab9b2b960a11b6044820152606401610c04565b601154611d05906004612407565b611d515760405162461bcd60e51b815260206004820152600f60248201527f4d696e74696e672073746f7070656400000000000000000000000000000000006044820152606401610c04565b806000108015611d62575060148111155b611d9e5760405162461bcd60e51b815260206004820152600d60248201526c125b9d985b1a590818dbdd5b9d609a1b6044820152606401610c04565b80601554611dac919061398c565b3414611dea5760405162461bcd60e51b815260206004820152600d60248201526c496e76616c696420707269636560981b6044820152606401610c04565b611df43382612bde565b506001601055565b600f546001600160a01b03163314611e565760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610c04565b806000108015611e67575060648111155b611ea35760405162461bcd60e51b815260206004820152600d60248201526c125b9d985b1a590818dbdd5b9d609a1b6044820152606401610c04565b60005b8251811015610c3d57611ed2838281518110611ec457611ec46139c3565b602002602001015183612bde565b80611edc816139d9565b915050611ea6565b6001600160a01b038216331415611f27576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b3360008181526009602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b611f9e8484846126d9565b6001600160a01b0383163b15158015611fc05750611fbe84848484612c55565b155b15611fde576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b6060611fef82612372565b61203b5760405162461bcd60e51b815260206004820152600860248201527f4e6f20746f6b656e0000000000000000000000000000000000000000000000006044820152606401610c04565b6000612045612d3a565b905060008151116120985760405162461bcd60e51b815260206004820152600a60248201527f4261736520756e736574000000000000000000000000000000000000000000006044820152606401610c04565b806120a284612d49565b6040516020016120b39291906139f4565b604051602081830303815290604052915050919050565b60408051606084901b6bffffffffffffffffffffffff1916602080830191909152605f60f81b6034830152603580830185905283518084039091018152605590920190925280519101206000905b9392505050565b601154600090610e9a906003612407565b601154600090610e9a906004612407565b6118cb336124ff565b60408051606083901b6bffffffffffffffffffffffff19166020808301919091528251601481840301815260349092019092528051910120600090610cd9565b6000806000806121c4611117866001600160a01b031660009081526007602052604090205467ffffffffffffffff600160c01b9091041690565b9298919750955061ffff9091169350915050565b601154600090610e9a906002612407565b600f546001600160a01b031633146122435760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610c04565b6001600160a01b0381166122bf5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f64647265737300000000000000000000000000000000000000000000000000006064820152608401610c04565b6110d881612afb565b6001600160a01b03811660009081526007602052604081205481906122fd90600160c01b900467ffffffffffffffff16611117565b61ffff169695505050505050565b600061153a858561236886866040516bffffffffffffffffffffffff19606084901b166020820152605f60f81b60348201526035810182905260009060550160405160208183030381529060405280519060200120905092915050565b60199291906129a1565b600060025482108015610cd9575050600090815260066020526040902054600160e01b900460ff161590565b600082815260086020526040808220805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6000600183831c811690811461241e57600061153d565b6001949350505050565b600e546124325750565b60005b600e5461244490600190613a23565b8110156114cf57336001600160a01b0316600e8281548110612468576124686139c3565b6000918252602090912001546001600160a01b031614156124ed5781600e8281548110612497576124976139c3565b6000918252602080832091909101805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0394851617905533808352600c90915260408083208054948716845290832093909355815290555b806124f7816139d9565b915050612435565b6001600160a01b0381166000908152600c602052604090205461258a5760405162461bcd60e51b815260206004820152602660248201527f5061796d656e7453706c69747465723a206163636f756e7420686173206e6f2060448201527f73686172657300000000000000000000000000000000000000000000000000006064820152608401610c04565b6000612595600b5490565b61259f90476139ab565b905060006125cc83836125c7866001600160a01b03166000908152600d602052604090205490565b612d54565b9050806126415760405162461bcd60e51b815260206004820152602b60248201527f5061796d656e7453706c69747465723a206163636f756e74206973206e6f742060448201527f647565207061796d656e740000000000000000000000000000000000000000006064820152608401610c04565b6001600160a01b0383166000908152600d6020526040812080548392906126699084906139ab565b9250508190555080600b600082825461268291906139ab565b9091555061269290508382612d92565b604080516001600160a01b0385168152602081018390527fdf20fd1e76bc69d672e4814fafb2c449bba3a5369d8359adf9e05e6fde87b056910160405180910390a1505050565b60006126e4826129b2565b9050836001600160a01b031681600001516001600160a01b031614612735576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000336001600160a01b038616148061275357506127538533610aa6565b8061276e57503361276384610d71565b6001600160a01b0316145b9050806127a7576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6001600160a01b0384166127e7576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6127f36000848761239e565b6001600160a01b038581166000908152600760209081526040808320805467ffffffffffffffff1980821667ffffffffffffffff92831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600690945282852080546001600160e01b031916909417600160a01b429092169190910217835587018084529220805491939091166128c95760025482146128c9578054602086015167ffffffffffffffff16600160a01b026001600160e01b03199091166001600160a01b038a16171781555b50505082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b61297a8484611c4888612929600188613a23565b6040516bffffffffffffffffffffffff19606084901b166020820152605f60f81b60348201526035810182905260009060550160405160208183030381529060405280519060200120905092915050565b61299757604051630c7296bb60e11b815260040160405180910390fd5b61290e8582612eab565b835460009061153a90858585612ed6565b604080516060810182526000808252602082018190529181019190915281600254811015612ab557600081815260066020908152604091829020825160608101845290546001600160a01b0381168252600160a01b810467ffffffffffffffff1692820192909252600160e01b90910460ff16151591810182905290612ab35780516001600160a01b031615612a49579392505050565b5060001901600081815260066020908152604091829020825160608101845290546001600160a01b038116808352600160a01b820467ffffffffffffffff1693830193909352600160e01b900460ff1615159281019290925215612aae579392505050565b612a49565b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61297a848461153088612929600188613a23565b600f80546001600160a01b0383811673ffffffffffffffffffffffffffffffffffffffff19831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b612b6e848461236888612929600188613a23565b612b8b57604051630c7296bb60e11b815260040160405180910390fd5b61290e85827f000000000000000000000000000000000000000000000000000000000000138881612c0960025490565b60008115612bd357506001821b929092179182612118565b50506001901b191690565b7f000000000000000000000000000000000000000000000000000000000000157c81612c0960025490565b612c1391906139ab565b1115612c4b576040517fc30436e900000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6114cf8282612f1a565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a0290612c8a903390899088908890600401613a3a565b6020604051808303816000875af1925050508015612cc5575060408051601f3d908101601f19168201909252612cc291810190613a76565b60015b612d20573d808015612cf3576040519150601f19603f3d011682016040523d82523d6000602084013e612cf8565b606091505b508051612d18576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b14905061153d565b606060168054610cee9061393b565b6060610cd982612f34565b600a546001600160a01b0384166000908152600c602052604081205490918391612d7e908661398c565b612d889190613aa9565b61153d9190613a23565b80471015612de25760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a20696e73756666696369656e742062616c616e63650000006044820152606401610c04565b6000826001600160a01b03168260405160006040518083038185875af1925050503d8060008114612e2f576040519150601f19603f3d011682016040523d82523d6000602084013e612e34565b606091505b5050905080610c3d5760405162461bcd60e51b815260206004820152603a60248201527f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260448201527f6563697069656e74206d617920686176652072657665727465640000000000006064820152608401610c04565b7f000000000000000000000000000000000000000000000000000000000000067281612c0960025490565b600061153a85838686808060200260200160405190810160405280939291908181526020018383602002808284376000920191909152509294939250506130669050565b6114cf82826040518060200160405280600081525061307c565b606081612f7457505060408051808201909152600181527f3000000000000000000000000000000000000000000000000000000000000000602082015290565b8160005b8115612f9e5780612f88816139d9565b9150612f979050600a83613aa9565b9150612f78565b60008167ffffffffffffffff811115612fb957612fb96135c3565b6040519080825280601f01601f191660200182016040528015612fe3576020820181803683370190505b5090505b841561153d57612ff8600183613a23565b9150613005600a86613abd565b6130109060306139ab565b60f81b818381518110613025576130256139c3565b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a90535061305f600a86613aa9565b9450612fe7565b6000826130738584613089565b14949350505050565b610c3d83838360016130fd565b600081815b84518110156130f55760008582815181106130ab576130ab6139c3565b602002602001015190508083116130d157600083815260208290526040902092506130e2565b600081815260208490526040902092505b50806130ed816139d9565b91505061308e565b509392505050565b6002546001600160a01b038516613140576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b83613177576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6001600160a01b038516600081815260076020908152604080832080547fffffffffffffffffffffffffffffffff00000000000000000000000000000000811667ffffffffffffffff8083168c0181169182176801000000000000000067ffffffffffffffff1990941690921783900481168c01811690920217909155858452600690925290912080546001600160e01b031916909217600160a01b42909216919091021790558080850183801561323857506001600160a01b0387163b15155b156132c1575b60405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a46132896000888480600101955088612c55565b6132a6576040516368d2bf6b60e11b815260040160405180910390fd5b8082141561323e5782600254146132bc57600080fd5b613307565b5b6040516001830192906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4808214156132c2575b5060025561290e565b82805461331c9061393b565b90600052602060002090601f01602090048101928261333e5760008555613384565b82601f1061335757805160ff1916838001178555613384565b82800160010185558215613384579182015b82811115613384578251825591602001919060010190613369565b50613390929150613394565b5090565b5b808211156133905760008155600101613395565b6000806000606084860312156133be57600080fd5b505081359360208301359350604090920135919050565b6001600160e01b0319811681146110d857600080fd5b6000602082840312156133fd57600080fd5b8135612118816133d5565b60005b8381101561342357818101518382015260200161340b565b83811115611fde5750506000910152565b6000815180845261344c816020860160208601613408565b601f01601f19169290920160200192915050565b6020815260006121186020830184613434565b60006020828403121561348557600080fd5b5035919050565b6001600160a01b03811681146110d857600080fd5b600080604083850312156134b457600080fd5b82356134bf8161348c565b946020939093013593505050565b6000602082840312156134df57600080fd5b81356121188161348c565b6000806000606084860312156134ff57600080fd5b833561350a8161348c565b9250602084013561351a8161348c565b929592945050506040919091013590565b60008083601f84011261353d57600080fd5b50813567ffffffffffffffff81111561355557600080fd5b6020830191508360208260051b850101111561357057600080fd5b9250929050565b60008060006040848603121561358c57600080fd5b833567ffffffffffffffff8111156135a357600080fd5b6135af8682870161352b565b909790965060209590950135949350505050565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f1916810167ffffffffffffffff81118282101715613602576136026135c3565b604052919050565b600067ffffffffffffffff831115613624576136246135c3565b613637601f8401601f19166020016135d9565b905082815283838301111561364b57600080fd5b828260208301376000602084830101529392505050565b60006020828403121561367457600080fd5b813567ffffffffffffffff81111561368b57600080fd5b8201601f8101841361369c57600080fd5b61153d8482356020840161360a565b600080600080606085870312156136c157600080fd5b843567ffffffffffffffff8111156136d857600080fd5b6136e48782880161352b565b90955093505060208501356136f88161348c565b9396929550929360400135925050565b8035801515811461371857600080fd5b919050565b600080600080600080600080610100898b03121561373a57600080fd5b61374389613708565b975061375160208a01613708565b965061375f60408a01613708565b955061376d60608a01613708565b979a969950949760808101359660a0820135965060c0820135955060e0909101359350915050565b600080604083850312156137a857600080fd5b823567ffffffffffffffff808211156137c057600080fd5b818501915085601f8301126137d457600080fd5b81356020828211156137e8576137e86135c3565b8160051b92506137f98184016135d9565b828152928401810192818101908985111561381357600080fd5b948201945b8486101561383d578535935061382d8461348c565b8382529482019490820190613818565b9997909101359750505050505050565b6000806040838503121561386057600080fd5b823561386b8161348c565b915061387960208401613708565b90509250929050565b6000806000806080858703121561389857600080fd5b84356138a38161348c565b935060208501356138b38161348c565b925060408501359150606085013567ffffffffffffffff8111156138d657600080fd5b8501601f810187136138e757600080fd5b6138f68782356020840161360a565b91505092959194509250565b6000806040838503121561391557600080fd5b82356139208161348c565b915060208301356139308161348c565b809150509250929050565b600181811c9082168061394f57607f821691505b6020821081141561397057634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b60008160001904831182151516156139a6576139a6613976565b500290565b600082198211156139be576139be613976565b500190565b634e487b7160e01b600052603260045260246000fd5b60006000198214156139ed576139ed613976565b5060010190565b60008351613a06818460208801613408565b835190830190613a1a818360208801613408565b01949350505050565b600082821015613a3557613a35613976565b500390565b60006001600160a01b03808716835280861660208401525083604083015260806060830152613a6c6080830184613434565b9695505050505050565b600060208284031215613a8857600080fd5b8151612118816133d5565b634e487b7160e01b600052601260045260246000fd5b600082613ab857613ab8613a93565b500490565b600082613acc57613acc613a93565b50069056fea26469706673582212202492c3783dc53b5fb248a5e0617251e02700f9eda572a178a35195e4daac0c3c64736f6c634300080b0033

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.