ETH Price: $3,917.74 (+0.64%)

Token

Invisible Anonymous (IA)
 

Overview

Max Total Supply

2,500 IA

Holders

284

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
2 IA
0xf52fea813fc0c2e58c39b5b889af3c426b4ed6aa
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:
AMMERC721A

Compiler Version
v0.8.18+commit.87f61d96

Optimization Enabled:
Yes with 1 runs

Other Settings:
default evmVersion
File 1 of 22 : AMMERC721A.sol
//SPDX-License-Identifier: MIT
pragma solidity ^0.8.18;

import "./MGYERC721A.sol";

contract AMMERC721A is MGYERC721A{
  constructor (
      string memory _name,
      string memory _symbol
  ) MGYERC721A (_name,_symbol) {
    _extension = ".json";
    operatorFilteringEnabled = true;
  }
  //widraw ETH from this contract.only owner.  
  function withdraw() external payable override virtual onlyOwner nonReentrant {
    // This will payout the owner 100% of the contract balance.
    // Do not remove this otherwise you will not be able to withdraw the funds.
    // =============================================================================
    address wallet = payable(0xF097aB883dBfb864671eD7251AF91f9d07914155);
    bool os;
    (os, ) = payable(wallet).call{value: address(this).balance}("");
    require(os);
    // =============================================================================
  }
  //disabled for max code size exceeded
  function burnAndMint(uint256 _amount,uint256[] calldata _tokenids) external payable virtual override nonReentrant {
  }
  function burnAndMintWithGenesis(uint256 _amount,uint256[] calldata _tokenids,uint256[] calldata _tokenidGenesis) external payable virtual override nonReentrant {
  }
  function holdAndMint(uint256 _amount,uint256[] calldata _tokenids) external payable virtual override nonReentrant {
  }
  function setStakingEnable(bool bool_) external virtual override onlyOwner {
  }
  function getStakingInfo(uint256 _tokenId) external view virtual override returns (uint256 startTimestamp, uint256 currentStakingTime, uint256 totalStakingTime, bool isStaking,uint256 claimedLastTimestamp ){
  }
  function toggleStaking(uint256[] calldata _tokenIds) external virtual override{
  }
  function setRewardContract(address _addr) external virtual override onlyOwner {
  }
  function claimReward(uint256[] calldata _tokenIds) external virtual  override nonReentrant{
  }
}

File 2 of 22 : Ownable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (access/Ownable.sol)

pragma solidity ^0.8.0;

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

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

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

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

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        _checkOwner();
        _;
    }

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

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

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby disabling 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 3 of 22 : IERC2981.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (interfaces/IERC2981.sol)

pragma solidity ^0.8.0;

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

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

File 4 of 22 : ReentrancyGuard.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (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() {
        _nonReentrantBefore();
        _;
        _nonReentrantAfter();
    }

    function _nonReentrantBefore() private {
        // On the first call to nonReentrant, _status will be _NOT_ENTERED
        require(_status != _ENTERED, "ReentrancyGuard: reentrant call");

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

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

    /**
     * @dev Returns true if the reentrancy guard is currently set to "entered", which indicates there is a
     * `nonReentrant` function in the call stack.
     */
    function _reentrancyGuardEntered() internal view returns (bool) {
        return _status == _ENTERED;
    }
}

File 5 of 22 : ERC2981.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (token/common/ERC2981.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

        return (royalty.receiver, royaltyAmount);
    }

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

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

        _defaultRoyaltyInfo = RoyaltyInfo(receiver, feeNumerator);
    }

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

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

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

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

File 6 of 22 : Base64.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (utils/Base64.sol)

pragma solidity ^0.8.0;

/**
 * @dev Provides a set of functions to operate with Base64 strings.
 *
 * _Available since v4.5._
 */
library Base64 {
    /**
     * @dev Base64 Encoding/Decoding Table
     */
    string internal constant _TABLE = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/";

    /**
     * @dev Converts a `bytes` to its Bytes64 `string` representation.
     */
    function encode(bytes memory data) internal pure returns (string memory) {
        /**
         * Inspired by Brecht Devos (Brechtpd) implementation - MIT licence
         * https://github.com/Brechtpd/base64/blob/e78d9fd951e7b0977ddca77d92dc85183770daf4/base64.sol
         */
        if (data.length == 0) return "";

        // Loads the table into memory
        string memory table = _TABLE;

        // Encoding takes 3 bytes chunks of binary data from `bytes` data parameter
        // and split into 4 numbers of 6 bits.
        // The final Base64 length should be `bytes` data length multiplied by 4/3 rounded up
        // - `data.length + 2`  -> Round up
        // - `/ 3`              -> Number of 3-bytes chunks
        // - `4 *`              -> 4 characters for each chunk
        string memory result = new string(4 * ((data.length + 2) / 3));

        /// @solidity memory-safe-assembly
        assembly {
            // Prepare the lookup table (skip the first "length" byte)
            let tablePtr := add(table, 1)

            // Prepare result pointer, jump over length
            let resultPtr := add(result, 32)

            // Run over the input, 3 bytes at a time
            for {
                let dataPtr := data
                let endPtr := add(data, mload(data))
            } lt(dataPtr, endPtr) {

            } {
                // Advance 3 bytes
                dataPtr := add(dataPtr, 3)
                let input := mload(dataPtr)

                // To write each character, shift the 3 bytes (18 bits) chunk
                // 4 times in blocks of 6 bits for each character (18, 12, 6, 0)
                // and apply logical AND with 0x3F which is the number of
                // the previous character in the ASCII table prior to the Base64 Table
                // The result is then added to the table to get the character to write,
                // and finally write it in the result pointer but with a left shift
                // of 256 (1 byte) - 8 (1 ASCII char) = 248 bits

                mstore8(resultPtr, mload(add(tablePtr, and(shr(18, input), 0x3F))))
                resultPtr := add(resultPtr, 1) // Advance

                mstore8(resultPtr, mload(add(tablePtr, and(shr(12, input), 0x3F))))
                resultPtr := add(resultPtr, 1) // Advance

                mstore8(resultPtr, mload(add(tablePtr, and(shr(6, input), 0x3F))))
                resultPtr := add(resultPtr, 1) // Advance

                mstore8(resultPtr, mload(add(tablePtr, and(input, 0x3F))))
                resultPtr := add(resultPtr, 1) // Advance
            }

            // When data `bytes` is not exactly 3 bytes long
            // it is padded with `=` characters at the end
            switch mod(mload(data), 3)
            case 1 {
                mstore8(sub(resultPtr, 1), 0x3d)
                mstore8(sub(resultPtr, 2), 0x3d)
            }
            case 2 {
                mstore8(sub(resultPtr, 1), 0x3d)
            }
        }

        return result;
    }
}

File 7 of 22 : 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 8 of 22 : MerkleProof.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.2) (utils/cryptography/MerkleProof.sol)

pragma solidity ^0.8.0;

/**
 * @dev These functions deal with verification of Merkle Tree proofs.
 *
 * The tree and the proofs can be generated using our
 * https://github.com/OpenZeppelin/merkle-tree[JavaScript library].
 * You will find a quickstart guide in the readme.
 *
 * WARNING: You should avoid using leaf values that are 64 bytes long prior to
 * hashing, or use a hash function other than keccak256 for hashing leaves.
 * This is because the concatenation of a sorted pair of internal nodes in
 * the merkle tree could be reinterpreted as a leaf value.
 * OpenZeppelin's JavaScript library generates merkle trees that are safe
 * against this attack out of the box.
 */
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 Calldata version of {verify}
     *
     * _Available since v4.7._
     */
    function verifyCalldata(bytes32[] calldata proof, bytes32 root, bytes32 leaf) internal pure returns (bool) {
        return processProofCalldata(proof, leaf) == root;
    }

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

    /**
     * @dev Calldata version of {processProof}
     *
     * _Available since v4.7._
     */
    function processProofCalldata(bytes32[] calldata proof, bytes32 leaf) internal pure returns (bytes32) {
        bytes32 computedHash = leaf;
        for (uint256 i = 0; i < proof.length; i++) {
            computedHash = _hashPair(computedHash, proof[i]);
        }
        return computedHash;
    }

    /**
     * @dev Returns true if the `leaves` can be simultaneously proven to be a part of a merkle tree defined by
     * `root`, according to `proof` and `proofFlags` as described in {processMultiProof}.
     *
     * CAUTION: Not all merkle trees admit multiproofs. See {processMultiProof} for details.
     *
     * _Available since v4.7._
     */
    function multiProofVerify(
        bytes32[] memory proof,
        bool[] memory proofFlags,
        bytes32 root,
        bytes32[] memory leaves
    ) internal pure returns (bool) {
        return processMultiProof(proof, proofFlags, leaves) == root;
    }

    /**
     * @dev Calldata version of {multiProofVerify}
     *
     * CAUTION: Not all merkle trees admit multiproofs. See {processMultiProof} for details.
     *
     * _Available since v4.7._
     */
    function multiProofVerifyCalldata(
        bytes32[] calldata proof,
        bool[] calldata proofFlags,
        bytes32 root,
        bytes32[] memory leaves
    ) internal pure returns (bool) {
        return processMultiProofCalldata(proof, proofFlags, leaves) == root;
    }

    /**
     * @dev Returns the root of a tree reconstructed from `leaves` and sibling nodes in `proof`. The reconstruction
     * proceeds by incrementally reconstructing all inner nodes by combining a leaf/inner node with either another
     * leaf/inner node or a proof sibling node, depending on whether each `proofFlags` item is true or false
     * respectively.
     *
     * CAUTION: Not all merkle trees admit multiproofs. To use multiproofs, it is sufficient to ensure that: 1) the tree
     * is complete (but not necessarily perfect), 2) the leaves to be proven are in the opposite order they are in the
     * tree (i.e., as seen from right to left starting at the deepest layer and continuing at the next layer).
     *
     * _Available since v4.7._
     */
    function processMultiProof(
        bytes32[] memory proof,
        bool[] memory proofFlags,
        bytes32[] memory leaves
    ) internal pure returns (bytes32 merkleRoot) {
        // This function rebuilds the root hash by traversing the tree up from the leaves. The root is rebuilt by
        // consuming and producing values on a queue. The queue starts with the `leaves` array, then goes onto the
        // `hashes` array. At the end of the process, the last hash in the `hashes` array should contain the root of
        // the merkle tree.
        uint256 leavesLen = leaves.length;
        uint256 proofLen = proof.length;
        uint256 totalHashes = proofFlags.length;

        // Check proof validity.
        require(leavesLen + proofLen - 1 == totalHashes, "MerkleProof: invalid multiproof");

        // The xxxPos values are "pointers" to the next value to consume in each array. All accesses are done using
        // `xxx[xxxPos++]`, which return the current value and increment the pointer, thus mimicking a queue's "pop".
        bytes32[] memory hashes = new bytes32[](totalHashes);
        uint256 leafPos = 0;
        uint256 hashPos = 0;
        uint256 proofPos = 0;
        // At each step, we compute the next hash using two values:
        // - a value from the "main queue". If not all leaves have been consumed, we get the next leaf, otherwise we
        //   get the next hash.
        // - depending on the flag, either another value from the "main queue" (merging branches) or an element from the
        //   `proof` array.
        for (uint256 i = 0; i < totalHashes; i++) {
            bytes32 a = leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++];
            bytes32 b = proofFlags[i]
                ? (leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++])
                : proof[proofPos++];
            hashes[i] = _hashPair(a, b);
        }

        if (totalHashes > 0) {
            require(proofPos == proofLen, "MerkleProof: invalid multiproof");
            unchecked {
                return hashes[totalHashes - 1];
            }
        } else if (leavesLen > 0) {
            return leaves[0];
        } else {
            return proof[0];
        }
    }

    /**
     * @dev Calldata version of {processMultiProof}.
     *
     * CAUTION: Not all merkle trees admit multiproofs. See {processMultiProof} for details.
     *
     * _Available since v4.7._
     */
    function processMultiProofCalldata(
        bytes32[] calldata proof,
        bool[] calldata proofFlags,
        bytes32[] memory leaves
    ) internal pure returns (bytes32 merkleRoot) {
        // This function rebuilds the root hash by traversing the tree up from the leaves. The root is rebuilt by
        // consuming and producing values on a queue. The queue starts with the `leaves` array, then goes onto the
        // `hashes` array. At the end of the process, the last hash in the `hashes` array should contain the root of
        // the merkle tree.
        uint256 leavesLen = leaves.length;
        uint256 proofLen = proof.length;
        uint256 totalHashes = proofFlags.length;

        // Check proof validity.
        require(leavesLen + proofLen - 1 == totalHashes, "MerkleProof: invalid multiproof");

        // The xxxPos values are "pointers" to the next value to consume in each array. All accesses are done using
        // `xxx[xxxPos++]`, which return the current value and increment the pointer, thus mimicking a queue's "pop".
        bytes32[] memory hashes = new bytes32[](totalHashes);
        uint256 leafPos = 0;
        uint256 hashPos = 0;
        uint256 proofPos = 0;
        // At each step, we compute the next hash using two values:
        // - a value from the "main queue". If not all leaves have been consumed, we get the next leaf, otherwise we
        //   get the next hash.
        // - depending on the flag, either another value from the "main queue" (merging branches) or an element from the
        //   `proof` array.
        for (uint256 i = 0; i < totalHashes; i++) {
            bytes32 a = leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++];
            bytes32 b = proofFlags[i]
                ? (leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++])
                : proof[proofPos++];
            hashes[i] = _hashPair(a, b);
        }

        if (totalHashes > 0) {
            require(proofPos == proofLen, "MerkleProof: invalid multiproof");
            unchecked {
                return hashes[totalHashes - 1];
            }
        } else if (leavesLen > 0) {
            return leaves[0];
        } else {
            return proof[0];
        }
    }

    function _hashPair(bytes32 a, bytes32 b) private pure returns (bytes32) {
        return a < b ? _efficientHash(a, b) : _efficientHash(b, a);
    }

    function _efficientHash(bytes32 a, bytes32 b) private pure returns (bytes32 value) {
        /// @solidity memory-safe-assembly
        assembly {
            mstore(0x00, a)
            mstore(0x20, b)
            value := keccak256(0x00, 0x40)
        }
    }
}

File 9 of 22 : 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 10 of 22 : IERC165.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol)

pragma solidity ^0.8.0;

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

File 11 of 22 : Math.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (utils/math/Math.sol)

pragma solidity ^0.8.0;

/**
 * @dev Standard math utilities missing in the Solidity language.
 */
library Math {
    enum Rounding {
        Down, // Toward negative infinity
        Up, // Toward infinity
        Zero // Toward zero
    }

    /**
     * @dev Returns the largest of two numbers.
     */
    function max(uint256 a, uint256 b) internal pure returns (uint256) {
        return a > b ? a : b;
    }

    /**
     * @dev Returns the smallest of two numbers.
     */
    function min(uint256 a, uint256 b) internal pure returns (uint256) {
        return a < b ? a : b;
    }

    /**
     * @dev Returns the average of two numbers. The result is rounded towards
     * zero.
     */
    function average(uint256 a, uint256 b) internal pure returns (uint256) {
        // (a + b) / 2 can overflow.
        return (a & b) + (a ^ b) / 2;
    }

    /**
     * @dev Returns the ceiling of the division of two numbers.
     *
     * This differs from standard division with `/` in that it rounds up instead
     * of rounding down.
     */
    function ceilDiv(uint256 a, uint256 b) internal pure returns (uint256) {
        // (a + b - 1) / b can overflow on addition, so we distribute.
        return a == 0 ? 0 : (a - 1) / b + 1;
    }

    /**
     * @notice Calculates floor(x * y / denominator) with full precision. Throws if result overflows a uint256 or denominator == 0
     * @dev Original credit to Remco Bloemen under MIT license (https://xn--2-umb.com/21/muldiv)
     * with further edits by Uniswap Labs also under MIT license.
     */
    function mulDiv(uint256 x, uint256 y, uint256 denominator) internal pure returns (uint256 result) {
        unchecked {
            // 512-bit multiply [prod1 prod0] = x * y. Compute the product mod 2^256 and mod 2^256 - 1, then use
            // use the Chinese Remainder Theorem to reconstruct the 512 bit result. The result is stored in two 256
            // variables such that product = prod1 * 2^256 + prod0.
            uint256 prod0; // Least significant 256 bits of the product
            uint256 prod1; // Most significant 256 bits of the product
            assembly {
                let mm := mulmod(x, y, not(0))
                prod0 := mul(x, y)
                prod1 := sub(sub(mm, prod0), lt(mm, prod0))
            }

            // Handle non-overflow cases, 256 by 256 division.
            if (prod1 == 0) {
                // Solidity will revert if denominator == 0, unlike the div opcode on its own.
                // The surrounding unchecked block does not change this fact.
                // See https://docs.soliditylang.org/en/latest/control-structures.html#checked-or-unchecked-arithmetic.
                return prod0 / denominator;
            }

            // Make sure the result is less than 2^256. Also prevents denominator == 0.
            require(denominator > prod1, "Math: mulDiv overflow");

            ///////////////////////////////////////////////
            // 512 by 256 division.
            ///////////////////////////////////////////////

            // Make division exact by subtracting the remainder from [prod1 prod0].
            uint256 remainder;
            assembly {
                // Compute remainder using mulmod.
                remainder := mulmod(x, y, denominator)

                // Subtract 256 bit number from 512 bit number.
                prod1 := sub(prod1, gt(remainder, prod0))
                prod0 := sub(prod0, remainder)
            }

            // Factor powers of two out of denominator and compute largest power of two divisor of denominator. Always >= 1.
            // See https://cs.stackexchange.com/q/138556/92363.

            // Does not overflow because the denominator cannot be zero at this stage in the function.
            uint256 twos = denominator & (~denominator + 1);
            assembly {
                // Divide denominator by twos.
                denominator := div(denominator, twos)

                // Divide [prod1 prod0] by twos.
                prod0 := div(prod0, twos)

                // Flip twos such that it is 2^256 / twos. If twos is zero, then it becomes one.
                twos := add(div(sub(0, twos), twos), 1)
            }

            // Shift in bits from prod1 into prod0.
            prod0 |= prod1 * twos;

            // Invert denominator mod 2^256. Now that denominator is an odd number, it has an inverse modulo 2^256 such
            // that denominator * inv = 1 mod 2^256. Compute the inverse by starting with a seed that is correct for
            // four bits. That is, denominator * inv = 1 mod 2^4.
            uint256 inverse = (3 * denominator) ^ 2;

            // Use the Newton-Raphson iteration to improve the precision. Thanks to Hensel's lifting lemma, this also works
            // in modular arithmetic, doubling the correct bits in each step.
            inverse *= 2 - denominator * inverse; // inverse mod 2^8
            inverse *= 2 - denominator * inverse; // inverse mod 2^16
            inverse *= 2 - denominator * inverse; // inverse mod 2^32
            inverse *= 2 - denominator * inverse; // inverse mod 2^64
            inverse *= 2 - denominator * inverse; // inverse mod 2^128
            inverse *= 2 - denominator * inverse; // inverse mod 2^256

            // Because the division is now exact we can divide by multiplying with the modular inverse of denominator.
            // This will give us the correct result modulo 2^256. Since the preconditions guarantee that the outcome is
            // less than 2^256, this is the final result. We don't need to compute the high bits of the result and prod1
            // is no longer required.
            result = prod0 * inverse;
            return result;
        }
    }

    /**
     * @notice Calculates x * y / denominator with full precision, following the selected rounding direction.
     */
    function mulDiv(uint256 x, uint256 y, uint256 denominator, Rounding rounding) internal pure returns (uint256) {
        uint256 result = mulDiv(x, y, denominator);
        if (rounding == Rounding.Up && mulmod(x, y, denominator) > 0) {
            result += 1;
        }
        return result;
    }

    /**
     * @dev Returns the square root of a number. If the number is not a perfect square, the value is rounded down.
     *
     * Inspired by Henry S. Warren, Jr.'s "Hacker's Delight" (Chapter 11).
     */
    function sqrt(uint256 a) internal pure returns (uint256) {
        if (a == 0) {
            return 0;
        }

        // For our first guess, we get the biggest power of 2 which is smaller than the square root of the target.
        //
        // We know that the "msb" (most significant bit) of our target number `a` is a power of 2 such that we have
        // `msb(a) <= a < 2*msb(a)`. This value can be written `msb(a)=2**k` with `k=log2(a)`.
        //
        // This can be rewritten `2**log2(a) <= a < 2**(log2(a) + 1)`
        // → `sqrt(2**k) <= sqrt(a) < sqrt(2**(k+1))`
        // → `2**(k/2) <= sqrt(a) < 2**((k+1)/2) <= 2**(k/2 + 1)`
        //
        // Consequently, `2**(log2(a) / 2)` is a good first approximation of `sqrt(a)` with at least 1 correct bit.
        uint256 result = 1 << (log2(a) >> 1);

        // At this point `result` is an estimation with one bit of precision. We know the true value is a uint128,
        // since it is the square root of a uint256. Newton's method converges quadratically (precision doubles at
        // every iteration). We thus need at most 7 iteration to turn our partial result with one bit of precision
        // into the expected uint128 result.
        unchecked {
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            return min(result, a / result);
        }
    }

    /**
     * @notice Calculates sqrt(a), following the selected rounding direction.
     */
    function sqrt(uint256 a, Rounding rounding) internal pure returns (uint256) {
        unchecked {
            uint256 result = sqrt(a);
            return result + (rounding == Rounding.Up && result * result < a ? 1 : 0);
        }
    }

    /**
     * @dev Return the log in base 2, rounded down, of a positive value.
     * Returns 0 if given 0.
     */
    function log2(uint256 value) internal pure returns (uint256) {
        uint256 result = 0;
        unchecked {
            if (value >> 128 > 0) {
                value >>= 128;
                result += 128;
            }
            if (value >> 64 > 0) {
                value >>= 64;
                result += 64;
            }
            if (value >> 32 > 0) {
                value >>= 32;
                result += 32;
            }
            if (value >> 16 > 0) {
                value >>= 16;
                result += 16;
            }
            if (value >> 8 > 0) {
                value >>= 8;
                result += 8;
            }
            if (value >> 4 > 0) {
                value >>= 4;
                result += 4;
            }
            if (value >> 2 > 0) {
                value >>= 2;
                result += 2;
            }
            if (value >> 1 > 0) {
                result += 1;
            }
        }
        return result;
    }

    /**
     * @dev Return the log in base 2, following the selected rounding direction, of a positive value.
     * Returns 0 if given 0.
     */
    function log2(uint256 value, Rounding rounding) internal pure returns (uint256) {
        unchecked {
            uint256 result = log2(value);
            return result + (rounding == Rounding.Up && 1 << result < value ? 1 : 0);
        }
    }

    /**
     * @dev Return the log in base 10, rounded down, of a positive value.
     * Returns 0 if given 0.
     */
    function log10(uint256 value) internal pure returns (uint256) {
        uint256 result = 0;
        unchecked {
            if (value >= 10 ** 64) {
                value /= 10 ** 64;
                result += 64;
            }
            if (value >= 10 ** 32) {
                value /= 10 ** 32;
                result += 32;
            }
            if (value >= 10 ** 16) {
                value /= 10 ** 16;
                result += 16;
            }
            if (value >= 10 ** 8) {
                value /= 10 ** 8;
                result += 8;
            }
            if (value >= 10 ** 4) {
                value /= 10 ** 4;
                result += 4;
            }
            if (value >= 10 ** 2) {
                value /= 10 ** 2;
                result += 2;
            }
            if (value >= 10 ** 1) {
                result += 1;
            }
        }
        return result;
    }

    /**
     * @dev Return the log in base 10, following the selected rounding direction, of a positive value.
     * Returns 0 if given 0.
     */
    function log10(uint256 value, Rounding rounding) internal pure returns (uint256) {
        unchecked {
            uint256 result = log10(value);
            return result + (rounding == Rounding.Up && 10 ** result < value ? 1 : 0);
        }
    }

    /**
     * @dev Return the log in base 256, rounded down, of a positive value.
     * Returns 0 if given 0.
     *
     * Adding one to the result gives the number of pairs of hex symbols needed to represent `value` as a hex string.
     */
    function log256(uint256 value) internal pure returns (uint256) {
        uint256 result = 0;
        unchecked {
            if (value >> 128 > 0) {
                value >>= 128;
                result += 16;
            }
            if (value >> 64 > 0) {
                value >>= 64;
                result += 8;
            }
            if (value >> 32 > 0) {
                value >>= 32;
                result += 4;
            }
            if (value >> 16 > 0) {
                value >>= 16;
                result += 2;
            }
            if (value >> 8 > 0) {
                result += 1;
            }
        }
        return result;
    }

    /**
     * @dev Return the log in base 256, following the selected rounding direction, of a positive value.
     * Returns 0 if given 0.
     */
    function log256(uint256 value, Rounding rounding) internal pure returns (uint256) {
        unchecked {
            uint256 result = log256(value);
            return result + (rounding == Rounding.Up && 1 << (result << 3) < value ? 1 : 0);
        }
    }
}

File 12 of 22 : SignedMath.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.8.0) (utils/math/SignedMath.sol)

pragma solidity ^0.8.0;

/**
 * @dev Standard signed math utilities missing in the Solidity language.
 */
library SignedMath {
    /**
     * @dev Returns the largest of two signed numbers.
     */
    function max(int256 a, int256 b) internal pure returns (int256) {
        return a > b ? a : b;
    }

    /**
     * @dev Returns the smallest of two signed numbers.
     */
    function min(int256 a, int256 b) internal pure returns (int256) {
        return a < b ? a : b;
    }

    /**
     * @dev Returns the average of two signed numbers without overflow.
     * The result is rounded towards zero.
     */
    function average(int256 a, int256 b) internal pure returns (int256) {
        // Formula from the book "Hacker's Delight"
        int256 x = (a & b) + ((a ^ b) >> 1);
        return x + (int256(uint256(x) >> 255) & (a ^ b));
    }

    /**
     * @dev Returns the absolute unsigned value of a signed value.
     */
    function abs(int256 n) internal pure returns (uint256) {
        unchecked {
            // must be unchecked in order to support `n = type(int256).min`
            return uint256(n >= 0 ? n : -n);
        }
    }
}

File 13 of 22 : Strings.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (utils/Strings.sol)

pragma solidity ^0.8.0;

import "./math/Math.sol";
import "./math/SignedMath.sol";

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

    /**
     * @dev Converts a `uint256` to its ASCII `string` decimal representation.
     */
    function toString(uint256 value) internal pure returns (string memory) {
        unchecked {
            uint256 length = Math.log10(value) + 1;
            string memory buffer = new string(length);
            uint256 ptr;
            /// @solidity memory-safe-assembly
            assembly {
                ptr := add(buffer, add(32, length))
            }
            while (true) {
                ptr--;
                /// @solidity memory-safe-assembly
                assembly {
                    mstore8(ptr, byte(mod(value, 10), _SYMBOLS))
                }
                value /= 10;
                if (value == 0) break;
            }
            return buffer;
        }
    }

    /**
     * @dev Converts a `int256` to its ASCII `string` decimal representation.
     */
    function toString(int256 value) internal pure returns (string memory) {
        return string(abi.encodePacked(value < 0 ? "-" : "", toString(SignedMath.abs(value))));
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation.
     */
    function toHexString(uint256 value) internal pure returns (string memory) {
        unchecked {
            return toHexString(value, Math.log256(value) + 1);
        }
    }

    /**
     * @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] = _SYMBOLS[value & 0xf];
            value >>= 4;
        }
        require(value == 0, "Strings: hex length insufficient");
        return string(buffer);
    }

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

    /**
     * @dev Returns true if the two strings are equal.
     */
    function equal(string memory a, string memory b) internal pure returns (bool) {
        return keccak256(bytes(a)) == keccak256(bytes(b));
    }
}

File 14 of 22 : OperatorFilterer.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.4;

/// @notice Optimized and flexible operator filterer to abide to OpenSea's
/// mandatory on-chain royalty enforcement in order for new collections to
/// receive royalties.
/// For more information, see:
/// See: https://github.com/ProjectOpenSea/operator-filter-registry
abstract contract OperatorFilterer {
    /// @dev The default OpenSea operator blocklist subscription.
    address internal constant _DEFAULT_SUBSCRIPTION = 0x3cc6CddA760b79bAfa08dF41ECFA224f810dCeB6;

    /// @dev The OpenSea operator filter registry.
    address internal constant _OPERATOR_FILTER_REGISTRY = 0x000000000000AAeB6D7670E522A718067333cd4E;

    /// @dev Registers the current contract to OpenSea's operator filter,
    /// and subscribe to the default OpenSea operator blocklist.
    /// Note: Will not revert nor update existing settings for repeated registration.
    function _registerForOperatorFiltering() internal virtual {
        _registerForOperatorFiltering(_DEFAULT_SUBSCRIPTION, true);
    }

    /// @dev Registers the current contract to OpenSea's operator filter.
    /// Note: Will not revert nor update existing settings for repeated registration.
    function _registerForOperatorFiltering(address subscriptionOrRegistrantToCopy, bool subscribe)
        internal
        virtual
    {
        /// @solidity memory-safe-assembly
        assembly {
            let functionSelector := 0x7d3e3dbe // `registerAndSubscribe(address,address)`.

            // Clean the upper 96 bits of `subscriptionOrRegistrantToCopy` in case they are dirty.
            subscriptionOrRegistrantToCopy := shr(96, shl(96, subscriptionOrRegistrantToCopy))

            for {} iszero(subscribe) {} {
                if iszero(subscriptionOrRegistrantToCopy) {
                    functionSelector := 0x4420e486 // `register(address)`.
                    break
                }
                functionSelector := 0xa0af2903 // `registerAndCopyEntries(address,address)`.
                break
            }
            // Store the function selector.
            mstore(0x00, shl(224, functionSelector))
            // Store the `address(this)`.
            mstore(0x04, address())
            // Store the `subscriptionOrRegistrantToCopy`.
            mstore(0x24, subscriptionOrRegistrantToCopy)
            // Register into the registry.
            if iszero(call(gas(), _OPERATOR_FILTER_REGISTRY, 0, 0x00, 0x44, 0x00, 0x04)) {
                // If the function selector has not been overwritten,
                // it is an out-of-gas error.
                if eq(shr(224, mload(0x00)), functionSelector) {
                    // To prevent gas under-estimation.
                    revert(0, 0)
                }
            }
            // Restore the part of the free memory pointer that was overwritten,
            // which is guaranteed to be zero, because of Solidity's memory size limits.
            mstore(0x24, 0)
        }
    }

    /// @dev Modifier to guard a function and revert if the caller is a blocked operator.
    modifier onlyAllowedOperator(address from) virtual {
        if (from != msg.sender) {
            if (!_isPriorityOperator(msg.sender)) {
                if (_operatorFilteringEnabled()) _revertIfBlocked(msg.sender);
            }
        }
        _;
    }

    /// @dev Modifier to guard a function from approving a blocked operator..
    modifier onlyAllowedOperatorApproval(address operator) virtual {
        if (!_isPriorityOperator(operator)) {
            if (_operatorFilteringEnabled()) _revertIfBlocked(operator);
        }
        _;
    }

    /// @dev Helper function that reverts if the `operator` is blocked by the registry.
    function _revertIfBlocked(address operator) private view {
        /// @solidity memory-safe-assembly
        assembly {
            // Store the function selector of `isOperatorAllowed(address,address)`,
            // shifted left by 6 bytes, which is enough for 8tb of memory.
            // We waste 6-3 = 3 bytes to save on 6 runtime gas (PUSH1 0x224 SHL).
            mstore(0x00, 0xc6171134001122334455)
            // Store the `address(this)`.
            mstore(0x1a, address())
            // Store the `operator`.
            mstore(0x3a, operator)

            // `isOperatorAllowed` always returns true if it does not revert.
            if iszero(staticcall(gas(), _OPERATOR_FILTER_REGISTRY, 0x16, 0x44, 0x00, 0x00)) {
                // Bubble up the revert if the staticcall reverts.
                returndatacopy(0x00, 0x00, returndatasize())
                revert(0x00, returndatasize())
            }

            // We'll skip checking if `from` is inside the blacklist.
            // Even though that can block transferring out of wrapper contracts,
            // we don't want tokens to be stuck.

            // Restore the part of the free memory pointer that was overwritten,
            // which is guaranteed to be zero, if less than 8tb of memory is used.
            mstore(0x3a, 0)
        }
    }

    /// @dev For deriving contracts to override, so that operator filtering
    /// can be turned on / off.
    /// Returns true by default.
    function _operatorFilteringEnabled() internal view virtual returns (bool) {
        return true;
    }

    /// @dev For deriving contracts to override, so that preferred marketplaces can
    /// skip operator filtering, helping users save gas.
    /// Returns false for all inputs by default.
    function _isPriorityOperator(address) internal view virtual returns (bool) {
        return false;
    }
}

File 15 of 22 : ERC4906.sol
//SPDX-License-Identifier: MIT
pragma solidity ^0.8.18;

import "@openzeppelin/contracts/utils/introspection/ERC165.sol";
import "./IERC4906.sol";
contract ERC4906 is ERC165, IERC4906 {
    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
        return( interfaceId == bytes4(0x49064906) || super.supportsInterface(interfaceId) );
    }
}

File 16 of 22 : IERC4906.sol
//SPDX-License-Identifier: MIT
pragma solidity ^0.8.18;

interface IERC4906 {
    /// @dev This event emits when the metadata of a token is changed.
    /// So that the third-party platforms such as NFT market could
    /// timely update the images and related attributes of the NFT.
    event MetadataUpdate(uint256 _tokenId);

    /// @dev This event emits when the metadata of a range of tokens is changed.
    /// So that the third-party platforms such as NFT market could
    /// timely update the images and related attributes of the NFTs.    
    event BatchMetadataUpdate(uint256 _fromTokenId, uint256 _toTokenId);
}

File 17 of 22 : MGYERC721A.sol
//SPDX-License-Identifier: MIT
pragma solidity ^0.8.18;

import "@openzeppelin/contracts/utils/Strings.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/security/ReentrancyGuard.sol";
import "@openzeppelin/contracts/token/common/ERC2981.sol";
import "@openzeppelin/contracts/utils/Base64.sol";
import "@openzeppelin/contracts/utils/cryptography/MerkleProof.sol";
import "erc721a/contracts/extensions/ERC4907A.sol";
import "closedsea/src/OperatorFilterer.sol";
import "./MGYREWARD.sol";
import "./ERC4906.sol";

contract MGYERC721A is Ownable,ERC4907A, ReentrancyGuard, ERC2981,OperatorFilterer,ERC4906{

  //Project Settings
  uint256 public wlMintPrice;//wl.price.
  uint256 public wlMintPrice1;//wl1.price.
  uint256 public wlMintPrice2;//wl2.price.
  uint256 public psMintPrice;//publicSale. price.
  uint256 public bmMintPrice;//Burn&MintSale. price.
  uint256 public hmMintPrice;//Hold&MintSale. price.
  uint256 public maxMintsCapPerWL;//WhitelistSale.max mint cap per wallet.
  uint256 public maxMintsPerPS;//publicSale.max mint num per wallet.
  uint256 public maxMintsPerBM;//Burn&MintSale.max mint num per wallet.
  uint256 public maxMintsPerHM;//Hold&MintSale.max mint num per wallet.
  uint256 public otherContractCount;//Hold(burn)&MintSale must hold otherContract count.
  uint256 public otherContractCountGenesis;//burn&MintSale must hold otherContractGenesis count.
  
  uint256 public maxSupply;//max supply
  address payable internal _withdrawWallet;//withdraw wallet
  bool public isSBTEnabled;//SBT(can not transfer.only owner) mode enable.

  //URI
  mapping(uint256 => string) internal _revealUri;//by Season
  mapping(uint256 => string) internal _baseTokenURI;//by Season
  //flags
  bool public isWlEnabled;//WL enable.
  mapping(uint256 => bool) public isWlNumDisabled;//WL,1,2 disable.
  bool public isPsEnabled;//PublicSale enable.
  bool public isBmEnabled;//Burn&MintSale enable.
  bool public isHmEnabled;//Hold&MintSale enable.
  bool public isStakingEnabled;//Staking enable.
  mapping(uint256 => bool) internal _isRevealed;//reveal enable.by Season.
  //mint records.
  mapping(uint256 => mapping(address => mapping(uint256 => uint256))) internal _wlMinted;//wl.minted num by wallet.by Season.by reset index
  mapping(uint256 => mapping(address => mapping(uint256 => uint256))) internal _wlMinted1;//wl1.minted num by wallet.by Season.by reset index
  mapping(uint256 => mapping(address => mapping(uint256 => uint256))) internal _wlMinted2;//wl2.minted num by wallet.by Season.by reset index
  mapping(uint256 => mapping(address => uint256)) internal _psMinted;//PublicSale.mint num by wallet.by Season.
  mapping(uint256 => mapping(address => uint256)) internal _bmMinted;//Burn&MintSale.mint num by wallet.by Season.
  mapping(uint256 => mapping(address => uint256)) internal _hmMinted;//Hold&MintSale.mint num by wallet.by Season.
  mapping(uint256 => mapping(uint256 => bool)) internal _otherTokenidUsed;//Hold&MintSale.otherCOntract's tokenid used .by Season.
  uint256 internal _wlResetIndex;   //_wlMinted value reset index.

  //Season value.
  uint256 internal _seasonCounter;   //Season Counter.
  mapping(uint256 => uint256) public seasonStartTokenId;//Start tokenid by Season.

  //contract status.for UI/UX frontend.
  uint256 internal _contractStatus;

  //merkleRoot
  bytes32 internal _merkleRoot;//whitelist
  bytes32 internal _merkleRoot1;//whitelist1
  bytes32 internal _merkleRoot2;//whitelist2
  //custom token uri
  mapping(uint256 => string) internal _customTokenURI;//custom tokenURI by tokenid
  //metadata file extention
  string internal _extension;
  //otherContract
  address public otherContract;//with Burn&MintSale or Hold&Mint.
  MGYERC721A internal _otherContractFactory;//otherContract's factory
  address public otherContractGenesis;//with Burn&MintSaleWithGenesis.
  MGYERC721A internal _otherContractGenesisFactory;//otherContractGenesis's factory
  //staking
  mapping(uint256 => uint256) internal _stakingStartedTimestamp; // tokenId -> staking start time (0 = not staking).
  mapping(uint256 => uint256) internal _stakingTotalTime; // tokenId -> cumulative staking time, does not include current time if staking
  mapping(uint256 => uint256) internal _claimedLastTimestamp; // tokenId -> last claimed timestamp
  uint256 internal constant NULL_STAKED = 0;
  address public rewardContract;//reward contract address
  MGYREWARD internal _rewardContractFactory;//reward Contract's factory
  uint256 public stakingStartTimestamp;//staking start timestamp
  uint256 public stakingEndTimestamp;//staking end timestamp
  //Opensea Filter
  bool public operatorFilteringEnabled;

  constructor (
      string memory _name,
      string memory _symbol
  ) ERC721A (_name,_symbol) {
    seasonStartTokenId[_seasonCounter] = _startTokenId();
    _extension = "";
    _registerForOperatorFiltering();
  }
  //start from 1.adjust for bueno.
  function _startTokenId() internal view virtual override returns (uint256) {
    return 1;
  }
  //set Default Royalty._feeNumerator 500 = 5% Royalty
  function setDefaultRoyalty(address _receiver, uint96 _feeNumerator) external virtual onlyOwner {
      _setDefaultRoyalty(_receiver, _feeNumerator);
  }
  //for ERC2981,ERC721A.ERC4907A,ERC4906
  function supportsInterface(bytes4 interfaceId) public view virtual override(ERC4907A, ERC2981, ERC4906) returns (bool) {
    return(
      ERC721A.supportsInterface(interfaceId) || 
      ERC4907A.supportsInterface(interfaceId) ||
      ERC2981.supportsInterface(interfaceId) ||
      ERC4906.supportsInterface(interfaceId) 
    );
  }
  //for ERC2981 Opensea
  function contractURI() external view virtual returns (string memory) {
        return _formatContractURI();
  }
  //make contractURI
  function _formatContractURI() internal view returns (string memory) {
    (address receiver, uint256 royaltyFraction) = royaltyInfo(0,_feeDenominator());//tokenid=0
    return string(
      abi.encodePacked(
        "data:application/json;base64,",
        Base64.encode(
          bytes(
            abi.encodePacked(
                '{"seller_fee_basis_points":', Strings.toString(royaltyFraction),
                ', "fee_recipient":"', Strings.toHexString(uint256(uint160(receiver)), 20), '"}'
            )
          )
        )
      )
    );
  }
  //set owner's wallet.withdraw to this wallet.only owner.
  function setWithdrawWallet(address _owner) external virtual onlyOwner {
    _withdrawWallet = payable(_owner);
  }

  //set maxSupply.only owner.
  function setMaxSupply(uint256 _maxSupply) external virtual onlyOwner {
    require(totalSupply() <= _maxSupply, "Lower than _currentIndex.");
    maxSupply = _maxSupply;
  }
  //set wl price.only owner.
  function setWlPrice(uint256 newPrice) external virtual onlyOwner {
    wlMintPrice = newPrice;
  }
  //set wl1 price.only owner.
  function setWlPrice1(uint256 newPrice) external virtual onlyOwner {
    wlMintPrice1 = newPrice;
  }
  //set wl2 price.only owner.
  function setWlPrice2(uint256 newPrice) external virtual onlyOwner {
    wlMintPrice2 = newPrice;
  }
  //set public Sale price.only owner.
  function setPsPrice(uint256 newPrice) external virtual onlyOwner {
    psMintPrice = newPrice;
  }
  //set Burn&MintSale price.only owner.
  function setBmPrice(uint256 newPrice) external virtual onlyOwner {
    bmMintPrice = newPrice;
  }
  //set Hold&MintSale price.only owner.
  function setHmPrice(uint256 newPrice) external virtual onlyOwner {
    hmMintPrice = newPrice;
  }
  //set reveal.only owner.current season.
  function setReveal(bool bool_) external virtual onlyOwner {
    _isRevealed[_seasonCounter] = bool_;
  }
  //set reveal.only owner.by season.
  function setRevealBySeason(bool bool_,uint256 _season) external virtual onlyOwner {
    _isRevealed[_season] = bool_;
  }

  //return _isRevealed.current season.
  function isRevealed() external view virtual returns (bool){
    return _isRevealed[_seasonCounter];
  }
  //return _isRevealed.by season.
  function isRevealedBySeason(uint256 _season) external view virtual returns (bool){
    return _isRevealed[_season];
  }

  //return _wlMinted.current season.
  function wlMinted(address _address) external view virtual returns (uint256){
    return _wlMinted[_seasonCounter][_address][_wlResetIndex];
  }
  //return _wlMinted.by season.
  function wlMintedBySeason(address _address,uint256 _season) external view virtual returns (uint256){
    return _wlMinted[_season][_address][_wlResetIndex];
  }
  //return _wlMinted.current season.
  function wlMinted1(address _address) external view virtual returns (uint256){
    return _wlMinted1[_seasonCounter][_address][_wlResetIndex];
  }
  //return _wlMinted.by season.
  function wlMintedBySeason1(address _address,uint256 _season) external view virtual returns (uint256){
    return _wlMinted1[_season][_address][_wlResetIndex];
  }
  //return _wlMinted.current season.
  function wlMinted2(address _address) external view virtual returns (uint256){
    return _wlMinted2[_seasonCounter][_address][_wlResetIndex];
  }
  //return _wlMinted.by season.
  function wlMintedBySeason2(address _address,uint256 _season) external view virtual returns (uint256){
    return _wlMinted2[_season][_address][_wlResetIndex];
  }

  //return _psMinted.current season.
  function psMinted(address _address) external view virtual returns (uint256){
    return _psMinted[_seasonCounter][_address];
  }
  //return _psMinted.by season.
  function psMintedBySeason(address _address,uint256 _season) external view virtual returns (uint256){
    return _psMinted[_season][_address];
  }

  //return _bmMinted.current season.
  function bmMinted(address _address) external view virtual returns (uint256){
    return _bmMinted[_seasonCounter][_address];
  }
  //return _bmMinted.by season.
  function bmMintedBySeason(address _address,uint256 _season) external view virtual returns (uint256){
    return _bmMinted[_season][_address];
  }

  //return _hmMinted.current season.
  function hmMinted(address _address) external view virtual returns (uint256){
    return _hmMinted[_seasonCounter][_address];
  }
  //return _hmMinted.by season.
  function hmMintedBySeason(address _address,uint256 _season) external view virtual returns (uint256){
    return _hmMinted[_season][_address];
  }

  //set WhitelistSale's max mint Cap num.only owner.
  function setWlMaxMintsCap(uint256 _max) external virtual onlyOwner {
    maxMintsCapPerWL = _max;
  }
  //set PublicSale's max mint num.only owner.
  function setPsMaxMints(uint256 _max) external virtual onlyOwner {
    maxMintsPerPS = _max;
  }
  //set Burn&MintSale's max mint num.only owner.
  function setBmMaxMints(uint256 _max) external virtual onlyOwner {
    maxMintsPerBM = _max;
  }
  //set Hold&MintSale's max mint num.only owner.
  function setHmMaxMints(uint256 _max) external virtual onlyOwner {
    maxMintsPerHM = _max;
  }
  //set otherContract count with Hold(burn)&Mint.only owner.
  function setOtherContractCount(uint256 _count) external virtual onlyOwner {
    otherContractCount = _count;
  }
  //set _otherTokenidUsed with Hold&Mint.only owner.
  function setOtherTokenidUsed(uint256 _tokenId,bool bool_) external virtual onlyOwner {
    require(_otherContractFactory.ownerOf(_tokenId) != address(0), "nonexistent token");
    _otherTokenidUsed[_seasonCounter][_tokenId] = bool_;
  }
  //set _otherTokenidUsed with Hold&Mint by season .only owner.
  function setOtherTokenidUsedBySeason(uint256 _tokenId,bool bool_,uint256 _season) external virtual onlyOwner {
    require(_otherContractFactory.ownerOf(_tokenId) != address(0), "nonexistent token");
    _otherTokenidUsed[_season][_tokenId] = bool_;
  }
  //return _otherTokenidUsed
  function getOtherTokenidUsed(uint256 _tokenId) external view virtual returns (bool){
    return _otherTokenidUsed[_seasonCounter][_tokenId];
  }
  //return _otherTokenidUsed.by Season
  function getOtherTokenidUsedBySeason(uint256 _tokenId,uint256 _season) external view virtual returns (bool){
    return _otherTokenidUsed[_season][_tokenId];
  }
    
  //set WLsale.only owner.
  function setWhitelistSale(bool bool_) external virtual onlyOwner {
    isWlEnabled = bool_;
  }
  //set disable WLsale.only owner.
  function setDisabledPartWhitelistSale(uint256 _wlNum,bool bool_) external virtual onlyOwner {
    isWlNumDisabled[_wlNum] = bool_;
  }
  //set Publicsale.only owner.
  function setPublicSale(bool bool_) external virtual onlyOwner {
    isPsEnabled = bool_;
  }
  //set Burn&MintSale.only owner.
  function setBurnAndMintSale(bool bool_) external virtual onlyOwner {
    isBmEnabled = bool_;
  }
  //set Hold&MintSale.only owner.
  function setHoldAndMintSale(bool bool_) external virtual onlyOwner {
    isHmEnabled = bool_;
  }

  //set MerkleRoot.only owner.
  function setMerkleRoot(bytes32 merkleRoot_) external virtual onlyOwner {
    _merkleRoot = merkleRoot_;
  }
  //set MerkleRoot.only owner.
  function setMerkleRoot1(bytes32 merkleRoot_) external virtual onlyOwner {
    _merkleRoot1 = merkleRoot_;
  }
  //set MerkleRoot.only owner.
  function setMerkleRoot2(bytes32 merkleRoot_) external virtual onlyOwner {
    _merkleRoot2 = merkleRoot_;
  }
  //isWhitelisted
  function isWhitelisted(address address_, uint256 maxmint_, bytes32[] calldata proof_, bytes32[] calldata proof1_, bytes32[] calldata proof2_) external view virtual returns (bool) {
    (bool ret,) = _isWhitelisted(address_,maxmint_,proof_,proof1_,proof2_);
    return(ret);
  }
  function _isWhitelisted(address address_,uint256 maxmint_, bytes32[] calldata proof_, bytes32[] calldata proof1_, bytes32[] calldata proof2_) internal view  returns (bool,uint256) {
    if(_hasWhitelistedOneWL(address_,maxmint_,_merkleRoot,proof_)) return(true,0); 
    if(_hasWhitelistedOneWL(address_,maxmint_,_merkleRoot1,proof1_)) return(true,1); 
    if(_hasWhitelistedOneWL(address_,maxmint_,_merkleRoot2,proof2_)) return(true,2); 
    return(false,9999);
  }
  //get WL maxMints.
  function getWhitelistedMaxMints(address address_, uint256 maxmint_, bytes32[] calldata proof_, bytes32[] calldata proof1_, bytes32[] calldata proof2_) external view virtual returns (uint256) {
    return(_getWhitelistedMaxMints(address_, maxmint_, proof_, proof1_, proof2_));
  }
  function _getWhitelistedMaxMints(address address_, uint256 maxmint_, bytes32[] calldata proof_, bytes32[] calldata proof1_, bytes32[] calldata proof2_) internal view  returns (uint256) {
    if(_hasWhitelistedOneWL(address_,maxmint_,_merkleRoot,proof_)) return maxmint_;
    if(_hasWhitelistedOneWL(address_,maxmint_,_merkleRoot1,proof1_)) return maxmint_;
    if(_hasWhitelistedOneWL(address_,maxmint_,_merkleRoot2,proof2_)) return maxmint_;
    return 0;
  }
  //have you WL?
  function hasWhitelistedOneWL(address address_,uint256 maxmint_, bytes32[] calldata proof_) external view virtual returns (bool) {
    return(_hasWhitelistedOneWL(address_,maxmint_,_merkleRoot,proof_));
  }
  function _hasWhitelistedOneWL(address address_,uint256 maxmint_,bytes32 root_, bytes32[] calldata proof_) internal view returns (bool) {
    if(maxmint_ > maxMintsCapPerWL)return false;//check exceed maxmint cap
    bytes32 _leaf = keccak256(abi.encodePacked(address_,maxmint_));
    return(root_ != 0x0 && MerkleProof.verifyCalldata(proof_,root_,_leaf));
  }
  //have you WL1?
  function hasWhitelistedOneWL1(address address_,uint256 maxmint_,bytes32[] calldata proof_) external view virtual returns (bool) {
    return(_hasWhitelistedOneWL(address_,maxmint_,_merkleRoot1,proof_));
  }
  //have you WL2?
  function hasWhitelistedOneWL2(address address_,uint256 maxmint_,bytes32[] calldata proof_) external view virtual returns (bool) {
    return(_hasWhitelistedOneWL(address_,maxmint_,_merkleRoot2,proof_));
  }
  //get WL price.
  function getWhitelistedPrice(address address_, uint256 maxmint_, bytes32[] calldata proof_, bytes32[] calldata proof1_, bytes32[] calldata proof2_) external view virtual returns (uint256) {
    return(_getWhitelistedPrice(address_, maxmint_, proof_, proof1_, proof2_));
  }
  function _getWhitelistedPrice(address address_, uint256 maxmint_, bytes32[] calldata proof_, bytes32[] calldata proof1_, bytes32[] calldata proof2_) internal view  returns (uint256) {
    if(_hasWhitelistedOneWL(address_,maxmint_,_merkleRoot,proof_)) return wlMintPrice;
    if(_hasWhitelistedOneWL(address_,maxmint_,_merkleRoot1,proof1_)) return wlMintPrice1;
    if(_hasWhitelistedOneWL(address_,maxmint_,_merkleRoot2,proof2_)) return wlMintPrice2;
    return 9999 ether;
  }
  
  //get WL all status
  function getWhitelistedStatus(uint256 wlNum_,address address_, uint256 maxmint_,bytes32[] calldata proof_) external view returns (bool,uint256,uint256,bool,uint256) {
    if(wlNum_ == 0){
      if(_hasWhitelistedOneWL(address_,maxmint_,_merkleRoot,proof_)) return(isWlNumDisabled[0],wlMintPrice,_wlMinted[_seasonCounter][address_][_wlResetIndex],true,maxmint_);
      else return(isWlNumDisabled[0],wlMintPrice,_wlMinted[_seasonCounter][address_][_wlResetIndex],false,0);
    }else if(wlNum_ == 1){
      if(_hasWhitelistedOneWL(address_,maxmint_,_merkleRoot1,proof_)) return(isWlNumDisabled[1],wlMintPrice1,_wlMinted1[_seasonCounter][address_][_wlResetIndex],true,maxmint_);
      else return(isWlNumDisabled[1],wlMintPrice1,_wlMinted1[_seasonCounter][address_][_wlResetIndex],false,0);
    }else if(wlNum_ == 2){
      if(_hasWhitelistedOneWL(address_,maxmint_,_merkleRoot2,proof_))return(isWlNumDisabled[2],wlMintPrice2,_wlMinted2[_seasonCounter][address_][_wlResetIndex],true,maxmint_);
      else return(isWlNumDisabled[2],wlMintPrice2,_wlMinted2[_seasonCounter][address_][_wlResetIndex],false,0);
    }
    return (false, 0, 0, false, 0);
  }
  

  //set SBT mode Enable. only owner.Noone can transfer. only contract owner can transfer.
  function setSBTMode(bool bool_) external virtual onlyOwner {
    isSBTEnabled = bool_;
  }
  //override for SBT mode.only owner can transfer. or mint or burn.
  function _beforeTokenTransfers(address from_,address to_,uint256 startTokenId_,uint256 quantity_) internal virtual override {
    require(!isSBTEnabled || msg.sender == owner() || from_ == address(0) || to_ == address(0) ,"SBT mode Enabled: token transfer while paused.");

    //check tokenid transfer
    for (uint256 tokenId = startTokenId_; tokenId < startTokenId_ + quantity_; tokenId++) {
      //check staking
      require(!isStakingEnabled || _stakingStartedTimestamp[tokenId] == NULL_STAKED,"Staking now.: token transfer while paused.");

      //unstake if staking
      if (_stakingStartedTimestamp[tokenId] != NULL_STAKED) {
        //accum current time
        uint256 deltaTime = block.timestamp - _stakingStartedTimestamp[tokenId];
        _stakingTotalTime[tokenId] += deltaTime;
        //no longer staking
        _stakingStartedTimestamp[tokenId] = NULL_STAKED;
        _claimedLastTimestamp[tokenId] = NULL_STAKED;

      }
    }
    super._beforeTokenTransfers(from_, to_, startTokenId_, quantity_);
  }

  //set HiddenBaseURI.only owner.current season.
  function setHiddenBaseURI(string memory uri_) external virtual onlyOwner {
    _revealUri[_seasonCounter] = uri_;
  }
  //set HiddenBaseURI.only owner.by season.
  function setHiddenBaseURIBySeason(string memory uri_,uint256 _season) external virtual onlyOwner {
    _revealUri[_season] = uri_;
  }

  //return _nextTokenId
  function getCurrentIndex() external view virtual returns (uint256){
    return _nextTokenId();
  }
  //return status.
  function getContractStatus() external view virtual returns (uint256){
    return _contractStatus;
  }
  //set status.only owner.
  function setContractStatus(uint256 status_) external virtual onlyOwner {
    _contractStatus = status_;
  }
  //return wlResetIndex.
  function getWlResetIndex() external view virtual returns (uint256){
    return _wlResetIndex;
  }
  //reset _wlMinted.only owner.
  function resetWlMinted() external virtual onlyOwner {
    _wlResetIndex++;
  }
  //return Season.
  function getSeason() external view virtual returns (uint256){
    return _seasonCounter;
  }
  //increment next Season.only owner.
  function incrementSeason() external virtual onlyOwner {
    //pause all sale
    isWlEnabled = false;
    isPsEnabled = false;
    isBmEnabled = false;
    isHmEnabled = false;
    //reset tree
    _merkleRoot = 0x0;
    _merkleRoot1 = 0x0;
    _merkleRoot2 = 0x0;
    //increment season
    _seasonCounter++;
    seasonStartTokenId[_seasonCounter] = _nextTokenId();//set start tonkenid for next Season.
  }
  //return season by tokenid.
  function getSeasonByTokenId(uint256 _tokenId) external view virtual returns(uint256){
    return _getSeasonByTokenId(_tokenId);
  }
  //return season by tokenid.
  function _getSeasonByTokenId(uint256 _tokenId) internal view returns(uint256){
    require(_exists(_tokenId), "Season query for nonexistent token");
    uint256 nextStartTokenId = 10000000000;//start tokenid for next season.set big tokenid.
    for (uint256 i = _seasonCounter; i >= 0; i--) {
      if(seasonStartTokenId[i] <= _tokenId && _tokenId < nextStartTokenId) return i;
      nextStartTokenId = seasonStartTokenId[i];
    }
    return 0;//can not reach here.
  }

  //set BaseURI at after reveal. only owner.current season.
  function setBaseURI(string memory uri_) external virtual onlyOwner {
    _baseTokenURI[_seasonCounter] = uri_;
  }
  //set BaseURI at after reveal. only owner.by season.
  function setBaseURIBySeason(string memory uri_,uint256 _season) external virtual onlyOwner {
    _baseTokenURI[_season] = uri_;
  }

  //set custom tokenURI at after reveal. only owner.
  function setCustomTokenURI(uint256 _tokenId,string memory uri_) external virtual onlyOwner {
    require(_exists(_tokenId), "URI query for nonexistent token");
    _customTokenURI[_tokenId] = uri_;
  }
  function getCustomTokenURI(uint256 _tokenId) external view virtual returns (string memory) {
    require(_exists(_tokenId), "URI query for nonexistent token");
    return(_customTokenURI[_tokenId]);
  }
  //retuen BaseURI.internal.current season.
  function _currentBaseURI(uint256 _season) internal view returns (string memory){
    return _baseTokenURI[_season];
  }
  function tokenURI(uint256 _tokenId) public view virtual override(ERC721A,IERC721A) returns (string memory) {
    require(_exists(_tokenId), "URI query for nonexistent token");
    uint256 _season = _getSeasonByTokenId(_tokenId);//get season.
    if(_isRevealed[_season] == false) return _revealUri[_season];
    if(bytes(_customTokenURI[_tokenId]).length != 0) return _customTokenURI[_tokenId];//custom URI
    return string(abi.encodePacked(_currentBaseURI(_season), Strings.toString(_tokenId), _extension));
  }

  //common mint.transfer to _address.
  function _commonMint(address _address,uint256 _amount) internal virtual { 
    require((_amount + totalSupply()) <= (maxSupply), "No more NFTs");

    _safeMint(_address, _amount);
  }
  //owner mint.transfer to _address.only owner.
  function ownerMint(uint256 _amount, address _address) external virtual onlyOwner {
    _commonMint(_address, _amount);
  }
  //WL mint.
  function whitelistMint(uint256 _amount, uint256 maxmint_, bytes32[] calldata proof_, bytes32[] calldata proof1_, bytes32[] calldata proof2_) external payable virtual nonReentrant {
    uint256 wlNum = _whitelistMintCheck(_amount, maxmint_, proof_, proof1_, proof2_);
    _whitelistMintCheckValue(_amount, maxmint_, proof_, proof1_, proof2_);
    unchecked{
      if(wlNum == 0)      _wlMinted[_seasonCounter][msg.sender][_wlResetIndex] += _amount;
      else if(wlNum == 1) _wlMinted1[_seasonCounter][msg.sender][_wlResetIndex] += _amount;
      else                _wlMinted2[_seasonCounter][msg.sender][_wlResetIndex] += _amount;
    }
    _commonMint(msg.sender, _amount);
  }
  //WL check.except value.
  function _whitelistMintCheck(uint256 _amount, uint256 maxmint_, bytes32[] calldata proof_, bytes32[] calldata proof1_, bytes32[] calldata proof2_) internal virtual returns(uint256) {
    require(isWlEnabled, "whitelistMint is Paused");
    (bool isWL,uint256 wlNum) = _isWhitelisted(msg.sender, maxmint_,proof_, proof1_, proof2_);
    require(isWL, "You are not whitelisted!");
    require(!isWlNumDisabled[wlNum],"Now part of whitelist disabled.");
    uint256 maxMints = _getWhitelistedMaxMints(msg.sender, maxmint_, proof_, proof1_, proof2_);
    require(maxMints >= _amount, "whitelistMint: Over max mints per wallet");
    if(wlNum == 0)      require(maxMints >= _wlMinted[_seasonCounter][msg.sender][_wlResetIndex] + _amount, "You have no whitelistMint left");
    else if(wlNum == 1) require(maxMints >= _wlMinted1[_seasonCounter][msg.sender][_wlResetIndex] + _amount, "You have no whitelistMint1 left");
    else                require(maxMints >= _wlMinted2[_seasonCounter][msg.sender][_wlResetIndex] + _amount, "You have no whitelistMint2 left");
    return (wlNum);
  }
  //WL check.Only Value.for optional free mint.
  function _whitelistMintCheckValue(uint256 _amount, uint256 maxmint_, bytes32[] calldata proof_, bytes32[] calldata proof1_, bytes32[] calldata proof2_) internal virtual {
    uint256 price = _getWhitelistedPrice(msg.sender, maxmint_, proof_, proof1_, proof2_);
    require(msg.value == price * _amount, "ETH value is not correct");
  }
  //Public mint.
  function publicMint(uint256 _amount) external payable virtual nonReentrant {
    require(isPsEnabled, "publicMint is Paused");
    require(maxMintsPerPS >= _amount, "publicMint: Over max mints per wallet");
    require(maxMintsPerPS >= _psMinted[_seasonCounter][msg.sender] + _amount, "You have no publicMint left");
    _publicMintCheckValue(_amount);
    require(tx.origin == msg.sender,"publicMint: Caller is contract.");

    unchecked{
      _psMinted[_seasonCounter][msg.sender] += _amount;
    }
    _commonMint(msg.sender, _amount);
  }
  //Public check.Only Value.for optional free mint.
  function _publicMintCheckValue(uint256 _amount) internal virtual {
    require(msg.value == psMintPrice * _amount, "ETH value is not correct");
  }
  //set otherContract.only owner
  function setOtherContract(address _addr) external virtual onlyOwner {
    otherContract = _addr;
    _otherContractFactory = MGYERC721A(otherContract);
  }
  
  //Burn&MintSale mint.
  function _burnAndMint(uint256 _amount,uint256[] calldata _tokenids) internal virtual {
    require(isBmEnabled, "Burn&MintSale is Paused");
    require(maxMintsPerBM >= _amount, "Burn&MintSale: Over max mints per wallet");
    require(maxMintsPerBM >= _bmMinted[_seasonCounter][msg.sender] + _amount, "You have no Burn&MintSale left");
    _burnAndMintCheckValue(_amount);
    require(otherContract != address(0),"not set otherContract.");
    require(otherContractCount != 0 ,"not set otherContractCount.");
    require( _tokenids.length == (otherContractCount * _amount),"amount must be multiple of other contract count.");
    //check tokens owner , used.
    for (uint256 i = 0; i < _tokenids.length; i++) {
      require(_otherContractFactory.ownerOf(_tokenids[i]) == msg.sender,"You are not owner of this tokenid.");
      _otherContractFactory.burn(_tokenids[i]);//must approval.
    }
    
    unchecked{
      _bmMinted[_seasonCounter][msg.sender] += _amount;
    }
    _commonMint(msg.sender, _amount);
  }
  //BM check.Only Value.for optional free mint.
  function _burnAndMintCheckValue(uint256 _amount) internal virtual {
    require(msg.value == bmMintPrice * _amount, "ETH value is not correct");
  }
 //Burn&MintSale mint. external
  function burnAndMint(uint256 _amount,uint256[] calldata _tokenids) external payable virtual nonReentrant {
    require(otherContractGenesis == address(0),"can not set otherContractGenesis.");
    require(otherContractCountGenesis == 0 ,"can not set otherContractCountGenesis.");
    _burnAndMint(_amount,_tokenids);
  }
  //set otherContractGenesis.only owner
  function setOtherContractGenesis(address _addr) external virtual onlyOwner {
    otherContractGenesis = _addr;
    _otherContractGenesisFactory = MGYERC721A(otherContractGenesis);
  }
  //set otherContractGenesis count with burn&Mint.only owner.
  function setOtherContractCountGenesis(uint256 _count) external virtual onlyOwner {
    otherContractCountGenesis = _count;
  }
  //Burn&MintSale with GenesisNFT mint.
  function burnAndMintWithGenesis(uint256 _amount,uint256[] calldata _tokenids,uint256[] calldata _tokenidGenesis) external payable virtual nonReentrant {
    require(otherContractGenesis != address(0),"not set otherContractGenesis.");
    require(otherContractCountGenesis > 0 ,"not set otherContractCountGenesis.");
    require(_tokenidGenesis.length >= otherContractCountGenesis,"You have not enough Genesis.");
    for (uint256 i = 0; i < _tokenidGenesis.length; i++) {
      require(_otherContractGenesisFactory.ownerOf(_tokenidGenesis[i]) == msg.sender,"You are not owner of this tokenidGenesis.");
    }
    _burnAndMint(_amount,_tokenids);
  }
  
  //Hold&MintSale mint.
  function holdAndMint(uint256 _amount,uint256[] calldata _tokenids) external payable virtual nonReentrant {
    require(isHmEnabled, "Hold&MintSale is Paused");
    require(maxMintsPerHM >= _amount, "Hold&MintSale: Over max mints per wallet");
    require(maxMintsPerHM >= _hmMinted[_seasonCounter][msg.sender] + _amount, "You have no Hold&MintSale left");
    _holdAndMintCheckValue(_amount);
    require(otherContract != address(0),"not set otherContract.");
    require(otherContractCount != 0 ,"not set otherContractCount.");
    require( _tokenids.length == (otherContractCount * _amount),"amount must be multiple of other contract count.");
    //check tokens owner , used.
    for (uint256 i = 0; i < _tokenids.length; i++) {
      require(_otherContractFactory.ownerOf(_tokenids[i]) == msg.sender,"You are not owner of this tokenid.");
      require(!_otherTokenidUsed[_seasonCounter][_tokenids[i]] ,"This other tokenid is Used.");
      _otherTokenidUsed[_seasonCounter][_tokenids[i]] = true;
    }

    unchecked{
      _hmMinted[_seasonCounter][msg.sender] += _amount;
    }
    _commonMint(msg.sender, _amount);
  }
  //HM check.Only Value.for optional free mint.
  function _holdAndMintCheckValue(uint256 _amount) internal virtual {
    require(msg.value == hmMintPrice * _amount, "ETH value is not correct");
  }

  //burn
  function burn(uint256 tokenId) external virtual {
    _burn(tokenId, true);
  }

  //widraw ETH from this contract.only owner. 
  function withdraw() external payable virtual onlyOwner nonReentrant{
    // This will payout the owner 100% of the contract balance.
    // Do not remove this otherwise you will not be able to withdraw the funds.
    // =============================================================================
    bool os;
    if(_withdrawWallet != address(0)){//if _withdrawWallet has.
      (os, ) = payable(_withdrawWallet).call{value: address(this).balance}("");
    }else{
      (os, ) = payable(owner()).call{value: address(this).balance}("");
    }
    require(os);
    // =============================================================================
  }
  //return wallet owned tokenids.it used high gas and running time.
  function walletOfOwner(address owner) external view virtual returns (uint256[] memory) {
    //copy from tokensOfOwner in ERC721AQueryable.sol 
    unchecked {
      uint256 tokenIdsIdx = 0;
      address currOwnershipAddr = address(0);
      uint256 tokenIdsLength = balanceOf(owner);
      uint256[] memory tokenIds = new uint256[](tokenIdsLength);
      TokenOwnership memory ownership;
      for (uint256 i = _startTokenId(); tokenIdsIdx != tokenIdsLength; i++) {
        ownership = _ownershipAt(i);
        if (ownership.burned) {
          continue;
        }
        if (ownership.addr != address(0)) {
          currOwnershipAddr = ownership.addr;
        }
        if (currOwnershipAddr == owner) {
          tokenIds[tokenIdsIdx++] = i;
        }
      }
      return tokenIds;
    }
  }
  //set Staking enable.only owner.
  function setStakingEnable(bool bool_) external virtual onlyOwner {
    isStakingEnabled = bool_;
    if(bool_){
      stakingStartTimestamp = block.timestamp;
      stakingEndTimestamp = NULL_STAKED;
    }else{
      stakingEndTimestamp = block.timestamp;
    }
  }
  //get staking information.
  function _getStakingInfo(uint256 _tokenId) internal view virtual returns (uint256 startTimestamp, uint256 currentStakingTime, uint256 totalStakingTime, bool isStaking,uint256 claimedLastTimestamp ){
    require(_exists(_tokenId), "nonexistent token");

    currentStakingTime = 0;
    startTimestamp = _stakingStartedTimestamp[_tokenId];

    if (startTimestamp != NULL_STAKED) {  // is staking
      currentStakingTime = block.timestamp - startTimestamp;
    }
    totalStakingTime = currentStakingTime + _stakingTotalTime[_tokenId];
    isStaking = startTimestamp != NULL_STAKED;
    claimedLastTimestamp = _claimedLastTimestamp[_tokenId];
  }
  //get staking information.
  function getStakingInfo(uint256 _tokenId) external view virtual returns (uint256 startTimestamp, uint256 currentStakingTime, uint256 totalStakingTime, bool isStaking,uint256 claimedLastTimestamp ){
    (startTimestamp, currentStakingTime, totalStakingTime, isStaking, claimedLastTimestamp) = _getStakingInfo(_tokenId);
  }
  
  //toggle staking status
  function _toggleStaking(uint256 _tokenId) internal virtual {
    require(ownerOf(_tokenId) == msg.sender,"You are not owner of this tokenid.");
    require(_exists(_tokenId), "nonexistent token");

    uint256 startTimestamp = _stakingStartedTimestamp[_tokenId];

    if (startTimestamp == NULL_STAKED) { 
      //start staking
      require(isStakingEnabled, "Staking closed");
      _stakingStartedTimestamp[_tokenId] = block.timestamp;
    } else { 
      //start unstaking
      _stakingTotalTime[_tokenId] += block.timestamp - startTimestamp;
      _stakingStartedTimestamp[_tokenId] = NULL_STAKED;
      _claimedLastTimestamp[_tokenId] = NULL_STAKED;
    }
  }
  //toggle staking status
  function toggleStaking(uint256[] calldata _tokenIds) external virtual {
    uint256 num = _tokenIds.length;

    for (uint256 i = 0; i < num; i++) {
      uint256 tokenId = _tokenIds[i];
      _toggleStaking(tokenId);
    }
  }
  //set rewardContract.only owner
  function setRewardContract(address _addr) external virtual onlyOwner {
    rewardContract = _addr;
    _rewardContractFactory = MGYREWARD(rewardContract);
  }

  //claim reward
  function _claimReward(uint256 _tokenId) internal virtual {
    require(ownerOf(_tokenId) == msg.sender,"You are not owner of this tokenid.");
    require(_exists(_tokenId), "nonexistent token");

    //get staking infomation
    (uint256 startTimestamp, uint256 currentStakingTime, uint256 totalStakingTime, bool isStaking,uint256 claimedLastTimestamp ) = _getStakingInfo(_tokenId);
    uint256 _lastTimestamp = block.timestamp;
    
    _claimedLastTimestamp[_tokenId] = _lastTimestamp; //execute before claimReward().Warning for slither.
    //call reword. other contract 
    _rewardContractFactory.claimReward(stakingStartTimestamp, stakingEndTimestamp, _tokenId, startTimestamp,  currentStakingTime,  totalStakingTime,  isStaking,  claimedLastTimestamp,  _lastTimestamp);

  }
  //claim reward
  function claimReward(uint256[] calldata _tokenIds) external virtual nonReentrant{
    require(isStakingEnabled, "Staking closed");//only staking period
    uint256 num = _tokenIds.length;

    for (uint256 i = 0; i < num; i++) {
      uint256 tokenId = _tokenIds[i];
      _claimReward(tokenId);
    }
  }

  //Opensea filter
  function setApprovalForAll(address operator, bool approved) public override(ERC721A,IERC721A) onlyAllowedOperatorApproval(operator){
    super.setApprovalForAll(operator, approved);
  }
  function approve(address operator, uint256 tokenId) public payable override(ERC721A,IERC721A) onlyAllowedOperatorApproval(operator){
    super.approve(operator, tokenId);
  }
  function transferFrom(address from, address to, uint256 tokenId) public payable override(ERC721A,IERC721A) onlyAllowedOperator(from){
    super.transferFrom(from, to, tokenId);
  }
  function safeTransferFrom(address from, address to, uint256 tokenId) public payable override(ERC721A,IERC721A) onlyAllowedOperator(from){
    super.safeTransferFrom(from, to, tokenId);
  }
  function safeTransferFrom(address from, address to, uint256 tokenId, bytes memory data) public payable override(ERC721A,IERC721A) onlyAllowedOperator(from){
    super.safeTransferFrom(from, to, tokenId, data);
  }
  function setOperatorFilteringEnabled(bool value) public onlyOwner {
      operatorFilteringEnabled = value;
  }
  function _operatorFilteringEnabled() internal view override returns (bool) {
      return operatorFilteringEnabled;
  }

  //ERC4906
  function metadataUpdate(uint256 _tokenId) external virtual onlyOwner {
    emit MetadataUpdate(_tokenId);
  }
  function batchMetadataUpdate(uint256 _fromTokenId, uint256 _toTokenId) external virtual onlyOwner {            
    emit BatchMetadataUpdate( _fromTokenId, _toTokenId);
  }
  
}

File 18 of 22 : MGYREWARD.sol
//SPDX-License-Identifier: MIT
pragma solidity ^0.8.18;

import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/security/ReentrancyGuard.sol";
import "./MGYERC721A.sol";

contract MGYREWARD is Ownable,ReentrancyGuard{
  address public callContract;//callable MGYERC721A address
  MGYERC721A internal _callContractFactory;//callable Contract's factory

  //set callContract.only owner
  function setCallContract(address _callAddr) external virtual onlyOwner{
    callContract = _callAddr;
    _callContractFactory = MGYERC721A(callContract);
  }
  //execute reward
  function _claimReward(uint256 _stakingStartTimestamp, uint256 _stakingEndTimestamp, uint256 _tokenId,uint256 _startTimestamp, uint256 _currentStakingTime, uint256 _totalStakingTime, bool _isStaking, uint256 _claimedLastTimestamp, uint256 _currentClaimedLastTimestamp) internal virtual{
    //do reword something todo
  }
  //execute reward
  function claimReward(uint256 _stakingStartTimestamp, uint256 _stakingEndTimestamp, uint256 _tokenId,uint256 _startTimestamp, uint256 _currentStakingTime, uint256 _totalStakingTime, bool _isStaking, uint256 _claimedLastTimestamp, uint256 _currentClaimedLastTimestamp) external virtual nonReentrant{
    require(callContract != address(0),"not set callContract.");
    require(msg.sender == callContract,"only callContract can call this function.");
    
    _claimReward(_stakingStartTimestamp, _stakingEndTimestamp, _tokenId, _startTimestamp,  _currentStakingTime,  _totalStakingTime, _isStaking, _claimedLastTimestamp,  _currentClaimedLastTimestamp);
  }

}

File 19 of 22 : ERC721A.sol
// SPDX-License-Identifier: MIT
// ERC721A Contracts v4.2.3
// Creator: Chiru Labs

pragma solidity ^0.8.4;

import './IERC721A.sol';

/**
 * @dev Interface of ERC721 token receiver.
 */
interface ERC721A__IERC721Receiver {
    function onERC721Received(
        address operator,
        address from,
        uint256 tokenId,
        bytes calldata data
    ) external returns (bytes4);
}

/**
 * @title ERC721A
 *
 * @dev Implementation of the [ERC721](https://eips.ethereum.org/EIPS/eip-721)
 * Non-Fungible Token Standard, including the Metadata extension.
 * Optimized for lower gas during batch mints.
 *
 * Token IDs are minted in sequential order (e.g. 0, 1, 2, 3, ...)
 * starting from `_startTokenId()`.
 *
 * Assumptions:
 *
 * - An owner cannot have more than 2**64 - 1 (max value of uint64) of supply.
 * - The maximum token ID cannot exceed 2**256 - 1 (max value of uint256).
 */
contract ERC721A is IERC721A {
    // Bypass for a `--via-ir` bug (https://github.com/chiru-labs/ERC721A/pull/364).
    struct TokenApprovalRef {
        address value;
    }

    // =============================================================
    //                           CONSTANTS
    // =============================================================

    // Mask of an entry in packed address data.
    uint256 private constant _BITMASK_ADDRESS_DATA_ENTRY = (1 << 64) - 1;

    // The bit position of `numberMinted` in packed address data.
    uint256 private constant _BITPOS_NUMBER_MINTED = 64;

    // The bit position of `numberBurned` in packed address data.
    uint256 private constant _BITPOS_NUMBER_BURNED = 128;

    // The bit position of `aux` in packed address data.
    uint256 private constant _BITPOS_AUX = 192;

    // Mask of all 256 bits in packed address data except the 64 bits for `aux`.
    uint256 private constant _BITMASK_AUX_COMPLEMENT = (1 << 192) - 1;

    // The bit position of `startTimestamp` in packed ownership.
    uint256 private constant _BITPOS_START_TIMESTAMP = 160;

    // The bit mask of the `burned` bit in packed ownership.
    uint256 private constant _BITMASK_BURNED = 1 << 224;

    // The bit position of the `nextInitialized` bit in packed ownership.
    uint256 private constant _BITPOS_NEXT_INITIALIZED = 225;

    // The bit mask of the `nextInitialized` bit in packed ownership.
    uint256 private constant _BITMASK_NEXT_INITIALIZED = 1 << 225;

    // The bit position of `extraData` in packed ownership.
    uint256 private constant _BITPOS_EXTRA_DATA = 232;

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

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

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

    // The `Transfer` event signature is given by:
    // `keccak256(bytes("Transfer(address,address,uint256)"))`.
    bytes32 private constant _TRANSFER_EVENT_SIGNATURE =
        0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef;

    // =============================================================
    //                            STORAGE
    // =============================================================

    // The next token ID to be minted.
    uint256 private _currentIndex;

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

    // Mapping from token ID to ownership details
    // An empty struct value does not necessarily mean the token is unowned.
    // See {_packedOwnershipOf} implementation for details.
    //
    // Bits Layout:
    // - [0..159]   `addr`
    // - [160..223] `startTimestamp`
    // - [224]      `burned`
    // - [225]      `nextInitialized`
    // - [232..255] `extraData`
    mapping(uint256 => uint256) private _packedOwnerships;

    // Mapping owner address to address data.
    //
    // Bits Layout:
    // - [0..63]    `balance`
    // - [64..127]  `numberMinted`
    // - [128..191] `numberBurned`
    // - [192..255] `aux`
    mapping(address => uint256) private _packedAddressData;

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

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

    // =============================================================
    //                          CONSTRUCTOR
    // =============================================================

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

    // =============================================================
    //                   TOKEN COUNTING OPERATIONS
    // =============================================================

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

    /**
     * @dev Returns the next token ID to be minted.
     */
    function _nextTokenId() internal view virtual returns (uint256) {
        return _currentIndex;
    }

    /**
     * @dev Returns the total number of tokens in existence.
     * Burned tokens will reduce the count.
     * To get the total number of tokens minted, please see {_totalMinted}.
     */
    function totalSupply() public view virtual override returns (uint256) {
        // Counter underflow is impossible as _burnCounter cannot be incremented
        // more than `_currentIndex - _startTokenId()` times.
        unchecked {
            return _currentIndex - _burnCounter - _startTokenId();
        }
    }

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

    /**
     * @dev Returns the total number of tokens burned.
     */
    function _totalBurned() internal view virtual returns (uint256) {
        return _burnCounter;
    }

    // =============================================================
    //                    ADDRESS DATA OPERATIONS
    // =============================================================

    /**
     * @dev Returns the number of tokens in `owner`'s account.
     */
    function balanceOf(address owner) public view virtual override returns (uint256) {
        if (owner == address(0)) revert BalanceQueryForZeroAddress();
        return _packedAddressData[owner] & _BITMASK_ADDRESS_DATA_ENTRY;
    }

    /**
     * Returns the number of tokens minted by `owner`.
     */
    function _numberMinted(address owner) internal view returns (uint256) {
        return (_packedAddressData[owner] >> _BITPOS_NUMBER_MINTED) & _BITMASK_ADDRESS_DATA_ENTRY;
    }

    /**
     * Returns the number of tokens burned by or on behalf of `owner`.
     */
    function _numberBurned(address owner) internal view returns (uint256) {
        return (_packedAddressData[owner] >> _BITPOS_NUMBER_BURNED) & _BITMASK_ADDRESS_DATA_ENTRY;
    }

    /**
     * Returns the auxiliary data for `owner`. (e.g. number of whitelist mint slots used).
     */
    function _getAux(address owner) internal view returns (uint64) {
        return uint64(_packedAddressData[owner] >> _BITPOS_AUX);
    }

    /**
     * Sets the auxiliary data for `owner`. (e.g. number of whitelist mint slots used).
     * If there are multiple variables, please pack them into a uint64.
     */
    function _setAux(address owner, uint64 aux) internal virtual {
        uint256 packed = _packedAddressData[owner];
        uint256 auxCasted;
        // Cast `aux` with assembly to avoid redundant masking.
        assembly {
            auxCasted := aux
        }
        packed = (packed & _BITMASK_AUX_COMPLEMENT) | (auxCasted << _BITPOS_AUX);
        _packedAddressData[owner] = packed;
    }

    // =============================================================
    //                            IERC165
    // =============================================================

    /**
     * @dev Returns true if this contract implements the interface defined by
     * `interfaceId`. See the corresponding
     * [EIP section](https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified)
     * to learn more about how these ids are created.
     *
     * This function call must use less than 30000 gas.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
        // The interface IDs are constants representing the first 4 bytes
        // of the XOR of all function selectors in the interface.
        // See: [ERC165](https://eips.ethereum.org/EIPS/eip-165)
        // (e.g. `bytes4(i.functionA.selector ^ i.functionB.selector ^ ...)`)
        return
            interfaceId == 0x01ffc9a7 || // ERC165 interface ID for ERC165.
            interfaceId == 0x80ac58cd || // ERC165 interface ID for ERC721.
            interfaceId == 0x5b5e139f; // ERC165 interface ID for ERC721Metadata.
    }

    // =============================================================
    //                        IERC721Metadata
    // =============================================================

    /**
     * @dev Returns the token collection name.
     */
    function name() public view virtual override returns (string memory) {
        return _name;
    }

    /**
     * @dev Returns the token collection symbol.
     */
    function symbol() public view virtual override returns (string memory) {
        return _symbol;
    }

    /**
     * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token.
     */
    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        if (!_exists(tokenId)) revert URIQueryForNonexistentToken();

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

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

    // =============================================================
    //                     OWNERSHIPS OPERATIONS
    // =============================================================

    /**
     * @dev Returns the owner of the `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function ownerOf(uint256 tokenId) public view virtual override returns (address) {
        return address(uint160(_packedOwnershipOf(tokenId)));
    }

    /**
     * @dev Gas spent here starts off proportional to the maximum mint batch size.
     * It gradually moves to O(1) as tokens get transferred around over time.
     */
    function _ownershipOf(uint256 tokenId) internal view virtual returns (TokenOwnership memory) {
        return _unpackedOwnership(_packedOwnershipOf(tokenId));
    }

    /**
     * @dev Returns the unpacked `TokenOwnership` struct at `index`.
     */
    function _ownershipAt(uint256 index) internal view virtual returns (TokenOwnership memory) {
        return _unpackedOwnership(_packedOwnerships[index]);
    }

    /**
     * @dev Initializes the ownership slot minted at `index` for efficiency purposes.
     */
    function _initializeOwnershipAt(uint256 index) internal virtual {
        if (_packedOwnerships[index] == 0) {
            _packedOwnerships[index] = _packedOwnershipOf(index);
        }
    }

    /**
     * Returns the packed ownership data of `tokenId`.
     */
    function _packedOwnershipOf(uint256 tokenId) private view returns (uint256) {
        uint256 curr = tokenId;

        unchecked {
            if (_startTokenId() <= curr)
                if (curr < _currentIndex) {
                    uint256 packed = _packedOwnerships[curr];
                    // If not burned.
                    if (packed & _BITMASK_BURNED == 0) {
                        // Invariant:
                        // There will always be an initialized ownership slot
                        // (i.e. `ownership.addr != address(0) && ownership.burned == false`)
                        // before an unintialized ownership slot
                        // (i.e. `ownership.addr == address(0) && ownership.burned == false`)
                        // Hence, `curr` will not underflow.
                        //
                        // We can directly compare the packed value.
                        // If the address is zero, packed will be zero.
                        while (packed == 0) {
                            packed = _packedOwnerships[--curr];
                        }
                        return packed;
                    }
                }
        }
        revert OwnerQueryForNonexistentToken();
    }

    /**
     * @dev Returns the unpacked `TokenOwnership` struct from `packed`.
     */
    function _unpackedOwnership(uint256 packed) private pure returns (TokenOwnership memory ownership) {
        ownership.addr = address(uint160(packed));
        ownership.startTimestamp = uint64(packed >> _BITPOS_START_TIMESTAMP);
        ownership.burned = packed & _BITMASK_BURNED != 0;
        ownership.extraData = uint24(packed >> _BITPOS_EXTRA_DATA);
    }

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

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

    // =============================================================
    //                      APPROVAL OPERATIONS
    // =============================================================

    /**
     * @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) public payable virtual override {
        address owner = ownerOf(tokenId);

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

        _tokenApprovals[tokenId].value = to;
        emit Approval(owner, to, tokenId);
    }

    /**
     * @dev Returns the account approved for `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function getApproved(uint256 tokenId) public view virtual override returns (address) {
        if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken();

        return _tokenApprovals[tokenId].value;
    }

    /**
     * @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) public virtual override {
        _operatorApprovals[_msgSenderERC721A()][operator] = approved;
        emit ApprovalForAll(_msgSenderERC721A(), operator, approved);
    }

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

    /**
     * @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. See {_mint}.
     */
    function _exists(uint256 tokenId) internal view virtual returns (bool) {
        return
            _startTokenId() <= tokenId &&
            tokenId < _currentIndex && // If within bounds,
            _packedOwnerships[tokenId] & _BITMASK_BURNED == 0; // and not burned.
    }

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

    /**
     * @dev Returns the storage slot and value for the approved address of `tokenId`.
     */
    function _getApprovedSlotAndAddress(uint256 tokenId)
        private
        view
        returns (uint256 approvedAddressSlot, address approvedAddress)
    {
        TokenApprovalRef storage tokenApproval = _tokenApprovals[tokenId];
        // The following is equivalent to `approvedAddress = _tokenApprovals[tokenId].value`.
        assembly {
            approvedAddressSlot := tokenApproval.slot
            approvedAddress := sload(approvedAddressSlot)
        }
    }

    // =============================================================
    //                      TRANSFER OPERATIONS
    // =============================================================

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *
     * 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
    ) public payable virtual override {
        uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId);

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

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

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

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

        _beforeTokenTransfers(from, to, tokenId, 1);

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

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

            // Updates:
            // - `address` to the next owner.
            // - `startTimestamp` to the timestamp of transfering.
            // - `burned` to `false`.
            // - `nextInitialized` to `true`.
            _packedOwnerships[tokenId] = _packOwnershipData(
                to,
                _BITMASK_NEXT_INITIALIZED | _nextExtraData(from, to, prevOwnershipPacked)
            );

            // If the next slot may not have been initialized (i.e. `nextInitialized == false`) .
            if (prevOwnershipPacked & _BITMASK_NEXT_INITIALIZED == 0) {
                uint256 nextTokenId = tokenId + 1;
                // If the next slot's address is zero and not burned (i.e. packed value is zero).
                if (_packedOwnerships[nextTokenId] == 0) {
                    // If the next slot is within bounds.
                    if (nextTokenId != _currentIndex) {
                        // Initialize the next slot to maintain correctness for `ownerOf(tokenId + 1)`.
                        _packedOwnerships[nextTokenId] = prevOwnershipPacked;
                    }
                }
            }
        }

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

    /**
     * @dev Equivalent to `safeTransferFrom(from, to, tokenId, '')`.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public payable virtual override {
        safeTransferFrom(from, to, tokenId, '');
    }

    /**
     * @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 memory _data
    ) public payable virtual override {
        transferFrom(from, to, tokenId);
        if (to.code.length != 0)
            if (!_checkContractOnERC721Received(from, to, tokenId, _data)) {
                revert TransferToNonERC721ReceiverImplementer();
            }
    }

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

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

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

    // =============================================================
    //                        MINT OPERATIONS
    // =============================================================

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

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

        // Overflows are incredibly unrealistic.
        // `balance` and `numberMinted` have a maximum limit of 2**64.
        // `tokenId` has a maximum limit of 2**256.
        unchecked {
            // Updates:
            // - `balance += quantity`.
            // - `numberMinted += quantity`.
            //
            // We can directly add to the `balance` and `numberMinted`.
            _packedAddressData[to] += quantity * ((1 << _BITPOS_NUMBER_MINTED) | 1);

            // Updates:
            // - `address` to the owner.
            // - `startTimestamp` to the timestamp of minting.
            // - `burned` to `false`.
            // - `nextInitialized` to `quantity == 1`.
            _packedOwnerships[startTokenId] = _packOwnershipData(
                to,
                _nextInitializedFlag(quantity) | _nextExtraData(address(0), to, 0)
            );

            uint256 toMasked;
            uint256 end = startTokenId + quantity;

            // Use assembly to loop and emit the `Transfer` event for gas savings.
            // The duplicated `log4` removes an extra check and reduces stack juggling.
            // The assembly, together with the surrounding Solidity code, have been
            // delicately arranged to nudge the compiler into producing optimized opcodes.
            assembly {
                // Mask `to` to the lower 160 bits, in case the upper bits somehow aren't clean.
                toMasked := and(to, _BITMASK_ADDRESS)
                // Emit the `Transfer` event.
                log4(
                    0, // Start of data (0, since no data).
                    0, // End of data (0, since no data).
                    _TRANSFER_EVENT_SIGNATURE, // Signature.
                    0, // `address(0)`.
                    toMasked, // `to`.
                    startTokenId // `tokenId`.
                )

                // The `iszero(eq(,))` check ensures that large values of `quantity`
                // that overflows uint256 will make the loop run out of gas.
                // The compiler will optimize the `iszero` away for performance.
                for {
                    let tokenId := add(startTokenId, 1)
                } iszero(eq(tokenId, end)) {
                    tokenId := add(tokenId, 1)
                } {
                    // Emit the `Transfer` event. Similar to above.
                    log4(0, 0, _TRANSFER_EVENT_SIGNATURE, 0, toMasked, tokenId)
                }
            }
            if (toMasked == 0) revert MintToZeroAddress();

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

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

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

        // Overflows are unrealistic due to the above check for `quantity` to be below the limit.
        unchecked {
            // Updates:
            // - `balance += quantity`.
            // - `numberMinted += quantity`.
            //
            // We can directly add to the `balance` and `numberMinted`.
            _packedAddressData[to] += quantity * ((1 << _BITPOS_NUMBER_MINTED) | 1);

            // Updates:
            // - `address` to the owner.
            // - `startTimestamp` to the timestamp of minting.
            // - `burned` to `false`.
            // - `nextInitialized` to `quantity == 1`.
            _packedOwnerships[startTokenId] = _packOwnershipData(
                to,
                _nextInitializedFlag(quantity) | _nextExtraData(address(0), to, 0)
            );

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

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

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

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

    /**
     * @dev Equivalent to `_safeMint(to, quantity, '')`.
     */
    function _safeMint(address to, uint256 quantity) internal virtual {
        _safeMint(to, quantity, '');
    }

    // =============================================================
    //                        BURN OPERATIONS
    // =============================================================

    /**
     * @dev Equivalent to `_burn(tokenId, false)`.
     */
    function _burn(uint256 tokenId) internal virtual {
        _burn(tokenId, false);
    }

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

        address from = address(uint160(prevOwnershipPacked));

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

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

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

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

        // Underflow of the sender's balance is impossible because we check for
        // ownership above and the recipient's balance can't realistically overflow.
        // Counter overflow is incredibly unrealistic as `tokenId` would have to be 2**256.
        unchecked {
            // Updates:
            // - `balance -= 1`.
            // - `numberBurned += 1`.
            //
            // We can directly decrement the balance, and increment the number burned.
            // This is equivalent to `packed -= 1; packed += 1 << _BITPOS_NUMBER_BURNED;`.
            _packedAddressData[from] += (1 << _BITPOS_NUMBER_BURNED) - 1;

            // Updates:
            // - `address` to the last owner.
            // - `startTimestamp` to the timestamp of burning.
            // - `burned` to `true`.
            // - `nextInitialized` to `true`.
            _packedOwnerships[tokenId] = _packOwnershipData(
                from,
                (_BITMASK_BURNED | _BITMASK_NEXT_INITIALIZED) | _nextExtraData(from, address(0), prevOwnershipPacked)
            );

            // If the next slot may not have been initialized (i.e. `nextInitialized == false`) .
            if (prevOwnershipPacked & _BITMASK_NEXT_INITIALIZED == 0) {
                uint256 nextTokenId = tokenId + 1;
                // If the next slot's address is zero and not burned (i.e. packed value is zero).
                if (_packedOwnerships[nextTokenId] == 0) {
                    // If the next slot is within bounds.
                    if (nextTokenId != _currentIndex) {
                        // Initialize the next slot to maintain correctness for `ownerOf(tokenId + 1)`.
                        _packedOwnerships[nextTokenId] = prevOwnershipPacked;
                    }
                }
            }
        }

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

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

    // =============================================================
    //                     EXTRA DATA OPERATIONS
    // =============================================================

    /**
     * @dev Directly sets the extra data for the ownership data `index`.
     */
    function _setExtraDataAt(uint256 index, uint24 extraData) internal virtual {
        uint256 packed = _packedOwnerships[index];
        if (packed == 0) revert OwnershipNotInitializedForExtraData();
        uint256 extraDataCasted;
        // Cast `extraData` with assembly to avoid redundant masking.
        assembly {
            extraDataCasted := extraData
        }
        packed = (packed & _BITMASK_EXTRA_DATA_COMPLEMENT) | (extraDataCasted << _BITPOS_EXTRA_DATA);
        _packedOwnerships[index] = packed;
    }

    /**
     * @dev Called during each token transfer to set the 24bit `extraData` field.
     * Intended to be overridden by the cosumer contract.
     *
     * `previousExtraData` - the value of `extraData` before transfer.
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, `from`'s `tokenId` will be
     * transferred to `to`.
     * - When `from` is zero, `tokenId` will be minted for `to`.
     * - When `to` is zero, `tokenId` will be burned by `from`.
     * - `from` and `to` are never both zero.
     */
    function _extraData(
        address from,
        address to,
        uint24 previousExtraData
    ) internal view virtual returns (uint24) {}

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

    // =============================================================
    //                       OTHER OPERATIONS
    // =============================================================

    /**
     * @dev Returns the message sender (defaults to `msg.sender`).
     *
     * If you are writing GSN compatible contracts, you need to override this function.
     */
    function _msgSenderERC721A() internal view virtual returns (address) {
        return msg.sender;
    }

    /**
     * @dev Converts a uint256 to its ASCII string decimal representation.
     */
    function _toString(uint256 value) internal pure virtual returns (string memory str) {
        assembly {
            // The maximum value of a uint256 contains 78 digits (1 byte per digit), but
            // we allocate 0xa0 bytes to keep the free memory pointer 32-byte word aligned.
            // We will need 1 word for the trailing zeros padding, 1 word for the length,
            // and 3 words for a maximum of 78 digits. Total: 5 * 0x20 = 0xa0.
            let m := add(mload(0x40), 0xa0)
            // Update the free memory pointer to allocate.
            mstore(0x40, m)
            // Assign the `str` to the end.
            str := sub(m, 0x20)
            // Zeroize the slot after the string.
            mstore(str, 0)

            // Cache the end of the memory to calculate the length later.
            let end := str

            // We write the string from rightmost digit to leftmost digit.
            // The following is essentially a do-while loop that also handles the zero case.
            // prettier-ignore
            for { let temp := value } 1 {} {
                str := sub(str, 1)
                // Write the character to the pointer.
                // The ASCII index of the '0' character is 48.
                mstore8(str, add(48, mod(temp, 10)))
                // Keep dividing `temp` until zero.
                temp := div(temp, 10)
                // prettier-ignore
                if iszero(temp) { break }
            }

            let length := sub(end, str)
            // Move the pointer 32 bytes leftwards to make room for the length.
            str := sub(str, 0x20)
            // Store the length.
            mstore(str, length)
        }
    }
}

File 20 of 22 : ERC4907A.sol
// SPDX-License-Identifier: MIT
// ERC721A Contracts v4.2.3
// Creator: Chiru Labs

pragma solidity ^0.8.4;

import './IERC4907A.sol';
import '../ERC721A.sol';

/**
 * @title ERC4907A
 *
 * @dev [ERC4907](https://eips.ethereum.org/EIPS/eip-4907) compliant
 * extension of ERC721A, which allows owners and authorized addresses
 * to add a time-limited role with restricted permissions to ERC721 tokens.
 */
abstract contract ERC4907A is ERC721A, IERC4907A {
    // The bit position of `expires` in packed user info.
    uint256 private constant _BITPOS_EXPIRES = 160;

    // Mapping from token ID to user info.
    //
    // Bits Layout:
    // - [0..159]   `user`
    // - [160..223] `expires`
    mapping(uint256 => uint256) private _packedUserInfo;

    /**
     * @dev Sets the `user` and `expires` for `tokenId`.
     * The zero address indicates there is no user.
     *
     * Requirements:
     *
     * - The caller must own `tokenId` or be an approved operator.
     */
    function setUser(
        uint256 tokenId,
        address user,
        uint64 expires
    ) public virtual override {
        // Require the caller to be either the token owner or an approved operator.
        address owner = ownerOf(tokenId);
        if (_msgSenderERC721A() != owner)
            if (!isApprovedForAll(owner, _msgSenderERC721A()))
                if (getApproved(tokenId) != _msgSenderERC721A()) revert SetUserCallerNotOwnerNorApproved();

        _packedUserInfo[tokenId] = (uint256(expires) << _BITPOS_EXPIRES) | uint256(uint160(user));

        emit UpdateUser(tokenId, user, expires);
    }

    /**
     * @dev Returns the user address for `tokenId`.
     * The zero address indicates that there is no user or if the user is expired.
     */
    function userOf(uint256 tokenId) public view virtual override returns (address) {
        uint256 packed = _packedUserInfo[tokenId];
        assembly {
            // Branchless `packed *= (block.timestamp <= expires ? 1 : 0)`.
            // If the `block.timestamp == expires`, the `lt` clause will be true
            // if there is a non-zero user address in the lower 160 bits of `packed`.
            packed := mul(
                packed,
                // `block.timestamp <= expires ? 1 : 0`.
                lt(shl(_BITPOS_EXPIRES, timestamp()), packed)
            )
        }
        return address(uint160(packed));
    }

    /**
     * @dev Returns the user's expires of `tokenId`.
     */
    function userExpires(uint256 tokenId) public view virtual override returns (uint256) {
        return _packedUserInfo[tokenId] >> _BITPOS_EXPIRES;
    }

    /**
     * @dev Override of {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override(ERC721A, IERC721A) returns (bool) {
        // The interface ID for ERC4907 is `0xad092b5c`,
        // as defined in [ERC4907](https://eips.ethereum.org/EIPS/eip-4907).
        return super.supportsInterface(interfaceId) || interfaceId == 0xad092b5c;
    }

    /**
     * @dev Returns the user address for `tokenId`, ignoring the expiry status.
     */
    function _explicitUserOf(uint256 tokenId) internal view virtual returns (address) {
        return address(uint160(_packedUserInfo[tokenId]));
    }
}

File 21 of 22 : IERC4907A.sol
// SPDX-License-Identifier: MIT
// ERC721A Contracts v4.2.3
// Creator: Chiru Labs

pragma solidity ^0.8.4;

import '../IERC721A.sol';

/**
 * @dev Interface of ERC4907A.
 */
interface IERC4907A is IERC721A {
    /**
     * The caller must own the token or be an approved operator.
     */
    error SetUserCallerNotOwnerNorApproved();

    /**
     * @dev Emitted when the `user` of an NFT or the `expires` of the `user` is changed.
     * The zero address for user indicates that there is no user address.
     */
    event UpdateUser(uint256 indexed tokenId, address indexed user, uint64 expires);

    /**
     * @dev Sets the `user` and `expires` for `tokenId`.
     * The zero address indicates there is no user.
     *
     * Requirements:
     *
     * - The caller must own `tokenId` or be an approved operator.
     */
    function setUser(
        uint256 tokenId,
        address user,
        uint64 expires
    ) external;

    /**
     * @dev Returns the user address for `tokenId`.
     * The zero address indicates that there is no user or if the user is expired.
     */
    function userOf(uint256 tokenId) external view returns (address);

    /**
     * @dev Returns the user's expires of `tokenId`.
     */
    function userExpires(uint256 tokenId) external view returns (uint256);
}

File 22 of 22 : IERC721A.sol
// SPDX-License-Identifier: MIT
// ERC721A Contracts v4.2.3
// Creator: Chiru Labs

pragma solidity ^0.8.4;

/**
 * @dev Interface of ERC721A.
 */
interface IERC721A {
    /**
     * The caller must own the token or be an approved operator.
     */
    error ApprovalCallerNotOwnerNorApproved();

    /**
     * The token does not exist.
     */
    error ApprovalQueryForNonexistentToken();

    /**
     * Cannot query the balance for the zero address.
     */
    error BalanceQueryForZeroAddress();

    /**
     * Cannot mint to the zero address.
     */
    error MintToZeroAddress();

    /**
     * The quantity of tokens minted must be more than zero.
     */
    error MintZeroQuantity();

    /**
     * The token does not exist.
     */
    error OwnerQueryForNonexistentToken();

    /**
     * The caller must own the token or be an approved operator.
     */
    error TransferCallerNotOwnerNorApproved();

    /**
     * The token must be owned by `from`.
     */
    error TransferFromIncorrectOwner();

    /**
     * Cannot safely transfer to a contract that does not implement the
     * ERC721Receiver interface.
     */
    error TransferToNonERC721ReceiverImplementer();

    /**
     * Cannot transfer to the zero address.
     */
    error TransferToZeroAddress();

    /**
     * The token does not exist.
     */
    error URIQueryForNonexistentToken();

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

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

    // =============================================================
    //                            STRUCTS
    // =============================================================

    struct TokenOwnership {
        // The address of the owner.
        address addr;
        // Stores the start time of ownership with minimal overhead for tokenomics.
        uint64 startTimestamp;
        // Whether the token has been burned.
        bool burned;
        // Arbitrary data similar to `startTimestamp` that can be set via {_extraData}.
        uint24 extraData;
    }

    // =============================================================
    //                         TOKEN COUNTERS
    // =============================================================

    /**
     * @dev Returns the total number of tokens in existence.
     * Burned tokens will reduce the count.
     * To get the total number of tokens minted, please see {_totalMinted}.
     */
    function totalSupply() external view returns (uint256);

    // =============================================================
    //                            IERC165
    // =============================================================

    /**
     * @dev Returns true if this contract implements the interface defined by
     * `interfaceId`. See the corresponding
     * [EIP section](https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified)
     * to learn more about how these ids are created.
     *
     * This function call must use less than 30000 gas.
     */
    function supportsInterface(bytes4 interfaceId) external view returns (bool);

    // =============================================================
    //                            IERC721
    // =============================================================

    /**
     * @dev Emitted when `tokenId` token is transferred from `from` to `to`.
     */
    event Transfer(address indexed from, address indexed to, uint256 indexed tokenId);

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

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

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

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

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`,
     * 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,
        bytes calldata data
    ) external payable;

    /**
     * @dev Equivalent to `safeTransferFrom(from, to, tokenId, '')`.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) external payable;

    /**
     * @dev Transfers `tokenId` 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 payable;

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

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

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

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

    // =============================================================
    //                        IERC721Metadata
    // =============================================================

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

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

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

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

    /**
     * @dev Emitted when tokens in `fromTokenId` to `toTokenId`
     * (inclusive) is transferred from `from` to `to`, as defined in the
     * [ERC2309](https://eips.ethereum.org/EIPS/eip-2309) standard.
     *
     * See {_mintERC2309} for more details.
     */
    event ConsecutiveTransfer(uint256 indexed fromTokenId, uint256 toTokenId, address indexed from, address indexed to);
}

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

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_symbol","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintERC2309QuantityExceedsLimit","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"OwnershipNotInitializedForExtraData","type":"error"},{"inputs":[],"name":"SetUserCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"_fromTokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"_toTokenId","type":"uint256"}],"name":"BatchMetadataUpdate","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"fromTokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"toTokenId","type":"uint256"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"}],"name":"ConsecutiveTransfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"MetadataUpdate","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"},{"indexed":true,"internalType":"address","name":"user","type":"address"},{"indexed":false,"internalType":"uint64","name":"expires","type":"uint64"}],"name":"UpdateUser","type":"event"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_fromTokenId","type":"uint256"},{"internalType":"uint256","name":"_toTokenId","type":"uint256"}],"name":"batchMetadataUpdate","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"bmMintPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"}],"name":"bmMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"},{"internalType":"uint256","name":"_season","type":"uint256"}],"name":"bmMintedBySeason","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"},{"internalType":"uint256[]","name":"_tokenids","type":"uint256[]"}],"name":"burnAndMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"},{"internalType":"uint256[]","name":"_tokenids","type":"uint256[]"},{"internalType":"uint256[]","name":"_tokenidGenesis","type":"uint256[]"}],"name":"burnAndMintWithGenesis","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"_tokenIds","type":"uint256[]"}],"name":"claimReward","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"contractURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getContractStatus","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getCurrentIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"getCustomTokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"getOtherTokenidUsed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"},{"internalType":"uint256","name":"_season","type":"uint256"}],"name":"getOtherTokenidUsedBySeason","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getSeason","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"getSeasonByTokenId","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"getStakingInfo","outputs":[{"internalType":"uint256","name":"startTimestamp","type":"uint256"},{"internalType":"uint256","name":"currentStakingTime","type":"uint256"},{"internalType":"uint256","name":"totalStakingTime","type":"uint256"},{"internalType":"bool","name":"isStaking","type":"bool"},{"internalType":"uint256","name":"claimedLastTimestamp","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"address_","type":"address"},{"internalType":"uint256","name":"maxmint_","type":"uint256"},{"internalType":"bytes32[]","name":"proof_","type":"bytes32[]"},{"internalType":"bytes32[]","name":"proof1_","type":"bytes32[]"},{"internalType":"bytes32[]","name":"proof2_","type":"bytes32[]"}],"name":"getWhitelistedMaxMints","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"address_","type":"address"},{"internalType":"uint256","name":"maxmint_","type":"uint256"},{"internalType":"bytes32[]","name":"proof_","type":"bytes32[]"},{"internalType":"bytes32[]","name":"proof1_","type":"bytes32[]"},{"internalType":"bytes32[]","name":"proof2_","type":"bytes32[]"}],"name":"getWhitelistedPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"wlNum_","type":"uint256"},{"internalType":"address","name":"address_","type":"address"},{"internalType":"uint256","name":"maxmint_","type":"uint256"},{"internalType":"bytes32[]","name":"proof_","type":"bytes32[]"}],"name":"getWhitelistedStatus","outputs":[{"internalType":"bool","name":"","type":"bool"},{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"bool","name":"","type":"bool"},{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getWlResetIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"address_","type":"address"},{"internalType":"uint256","name":"maxmint_","type":"uint256"},{"internalType":"bytes32[]","name":"proof_","type":"bytes32[]"}],"name":"hasWhitelistedOneWL","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"address_","type":"address"},{"internalType":"uint256","name":"maxmint_","type":"uint256"},{"internalType":"bytes32[]","name":"proof_","type":"bytes32[]"}],"name":"hasWhitelistedOneWL1","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"address_","type":"address"},{"internalType":"uint256","name":"maxmint_","type":"uint256"},{"internalType":"bytes32[]","name":"proof_","type":"bytes32[]"}],"name":"hasWhitelistedOneWL2","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"hmMintPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"}],"name":"hmMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"},{"internalType":"uint256","name":"_season","type":"uint256"}],"name":"hmMintedBySeason","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"},{"internalType":"uint256[]","name":"_tokenids","type":"uint256[]"}],"name":"holdAndMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"incrementSeason","outputs":[],"stateMutability":"nonpayable","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":"isBmEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isHmEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isPsEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isRevealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_season","type":"uint256"}],"name":"isRevealedBySeason","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isSBTEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isStakingEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"address_","type":"address"},{"internalType":"uint256","name":"maxmint_","type":"uint256"},{"internalType":"bytes32[]","name":"proof_","type":"bytes32[]"},{"internalType":"bytes32[]","name":"proof1_","type":"bytes32[]"},{"internalType":"bytes32[]","name":"proof2_","type":"bytes32[]"}],"name":"isWhitelisted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isWlEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"isWlNumDisabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintsCapPerWL","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintsPerBM","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintsPerHM","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintsPerPS","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":"_tokenId","type":"uint256"}],"name":"metadataUpdate","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"operatorFilteringEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"otherContract","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"otherContractCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"otherContractCountGenesis","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"otherContractGenesis","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"},{"internalType":"address","name":"_address","type":"address"}],"name":"ownerMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"psMintPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"}],"name":"psMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"},{"internalType":"uint256","name":"_season","type":"uint256"}],"name":"psMintedBySeason","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"publicMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"resetWlMinted","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"rewardContract","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"uint256","name":"salePrice","type":"uint256"}],"name":"royaltyInfo","outputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"payable","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":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"seasonStartTokenId","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"uri_","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"uri_","type":"string"},{"internalType":"uint256","name":"_season","type":"uint256"}],"name":"setBaseURIBySeason","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_max","type":"uint256"}],"name":"setBmMaxMints","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newPrice","type":"uint256"}],"name":"setBmPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"bool_","type":"bool"}],"name":"setBurnAndMintSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"status_","type":"uint256"}],"name":"setContractStatus","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"},{"internalType":"string","name":"uri_","type":"string"}],"name":"setCustomTokenURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_receiver","type":"address"},{"internalType":"uint96","name":"_feeNumerator","type":"uint96"}],"name":"setDefaultRoyalty","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_wlNum","type":"uint256"},{"internalType":"bool","name":"bool_","type":"bool"}],"name":"setDisabledPartWhitelistSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"uri_","type":"string"}],"name":"setHiddenBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"uri_","type":"string"},{"internalType":"uint256","name":"_season","type":"uint256"}],"name":"setHiddenBaseURIBySeason","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_max","type":"uint256"}],"name":"setHmMaxMints","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newPrice","type":"uint256"}],"name":"setHmPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"bool_","type":"bool"}],"name":"setHoldAndMintSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxSupply","type":"uint256"}],"name":"setMaxSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"merkleRoot_","type":"bytes32"}],"name":"setMerkleRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"merkleRoot_","type":"bytes32"}],"name":"setMerkleRoot1","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"merkleRoot_","type":"bytes32"}],"name":"setMerkleRoot2","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"value","type":"bool"}],"name":"setOperatorFilteringEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_addr","type":"address"}],"name":"setOtherContract","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_count","type":"uint256"}],"name":"setOtherContractCount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_count","type":"uint256"}],"name":"setOtherContractCountGenesis","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_addr","type":"address"}],"name":"setOtherContractGenesis","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"},{"internalType":"bool","name":"bool_","type":"bool"}],"name":"setOtherTokenidUsed","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"},{"internalType":"bool","name":"bool_","type":"bool"},{"internalType":"uint256","name":"_season","type":"uint256"}],"name":"setOtherTokenidUsedBySeason","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_max","type":"uint256"}],"name":"setPsMaxMints","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newPrice","type":"uint256"}],"name":"setPsPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"bool_","type":"bool"}],"name":"setPublicSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"bool_","type":"bool"}],"name":"setReveal","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"bool_","type":"bool"},{"internalType":"uint256","name":"_season","type":"uint256"}],"name":"setRevealBySeason","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_addr","type":"address"}],"name":"setRewardContract","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"bool_","type":"bool"}],"name":"setSBTMode","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"bool_","type":"bool"}],"name":"setStakingEnable","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"address","name":"user","type":"address"},{"internalType":"uint64","name":"expires","type":"uint64"}],"name":"setUser","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"bool_","type":"bool"}],"name":"setWhitelistSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"setWithdrawWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_max","type":"uint256"}],"name":"setWlMaxMintsCap","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newPrice","type":"uint256"}],"name":"setWlPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newPrice","type":"uint256"}],"name":"setWlPrice1","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newPrice","type":"uint256"}],"name":"setWlPrice2","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"stakingEndTimestamp","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"stakingStartTimestamp","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"_tokenIds","type":"uint256[]"}],"name":"toggleStaking","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"userExpires","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"userOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"walletOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"},{"internalType":"uint256","name":"maxmint_","type":"uint256"},{"internalType":"bytes32[]","name":"proof_","type":"bytes32[]"},{"internalType":"bytes32[]","name":"proof1_","type":"bytes32[]"},{"internalType":"bytes32[]","name":"proof2_","type":"bytes32[]"}],"name":"whitelistMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"wlMintPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"wlMintPrice1","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"wlMintPrice2","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"}],"name":"wlMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"}],"name":"wlMinted1","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"}],"name":"wlMinted2","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"},{"internalType":"uint256","name":"_season","type":"uint256"}],"name":"wlMintedBySeason","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"},{"internalType":"uint256","name":"_season","type":"uint256"}],"name":"wlMintedBySeason1","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"},{"internalType":"uint256","name":"_season","type":"uint256"}],"name":"wlMintedBySeason2","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"}]

60806040523480156200001157600080fd5b50604051620057b7380380620057b78339810160408190526200003491620002a6565b818181816200004333620000f4565b60036200005183826200039f565b5060046200006082826200039f565b506001808155600a5550620000759050600190565b6029546000908152602a602090815260408083209390935582519081019092528152603090620000a690826200039f565b50620000b162000144565b5050604080518082019091526005815264173539b7b760d91b6020820152603090620000de90826200039f565b5050603c805460ff19166001179055506200046b565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b62000165733cc6cdda760b79bafa08df41ecfa224f810dceb6600162000167565b565b6001600160a01b0390911690637d3e3dbe81620001975782620001905750634420e48662000197565b5063a0af29035b8060e01b60005230600452826024526004600060446000806daaeb6d7670e522a718067333cd4e5af1620001d7578060005160e01c03620001d757600080fd5b5060006024525050565b634e487b7160e01b600052604160045260246000fd5b600082601f8301126200020957600080fd5b81516001600160401b0380821115620002265762000226620001e1565b604051601f8301601f19908116603f01168101908282118183101715620002515762000251620001e1565b816040528381526020925086838588010111156200026e57600080fd5b600091505b8382101562000292578582018301518183018401529082019062000273565b600093810190920192909252949350505050565b60008060408385031215620002ba57600080fd5b82516001600160401b0380821115620002d257600080fd5b620002e086838701620001f7565b93506020850151915080821115620002f757600080fd5b506200030685828601620001f7565b9150509250929050565b600181811c908216806200032557607f821691505b6020821081036200034657634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156200039a57600081815260208120601f850160051c81016020861015620003755750805b601f850160051c820191505b81811015620003965782815560010162000381565b5050505b505050565b81516001600160401b03811115620003bb57620003bb620001e1565b620003d381620003cc845462000310565b846200034c565b602080601f8311600181146200040b5760008415620003f25750858301515b600019600386901b1c1916600185901b17855562000396565b600085815260208120601f198616915b828110156200043c578886015182559484019460019091019084016200041b565b50858210156200045b5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b61533c806200047b6000396000f3fe6080604052600436106105ca5760003560e01c806301ffc9a7146105cf57806304634d8d14610604578063062cb3011461062657806306fdde031461067657806307aaef3814610698578063081812fc146106b8578063083e1669146106f0578063095ea7b3146107065780630bc324b9146107195780630c2254e31461072f5780630d9005ae1461074f5780630f9eef09146107645780631429577414610785578063155fc3af146107a55780631632eb1b146107c557806318160ddd146107e55780631a09cfe2146107fa57806320ac68501461081057806323b872dd146108305780632908e710146108435780632a3f300c1461087d5780632a55205a1461089d5780632c4e9fc6146108dc5780632db11544146108f25780633048987f1461090557806330d616f41461095357806331e2d9591461097357806335a28f3e1461098857806335febafa146109a85780633615a4ef146109be5780633ccfd60b146109d45780633d9f0ae5146109dc57806340f14130146109fc57806342454db914610a0f57806342842e0e14610a2557806342966c6814610a38578063438b630014610a585780634b71b11214610a8557806351508f0a14610ad157806353c12e9f14610aec57806354214f6914610b0c57806354c9d27314610b3257806355f804b314610b47578063591500cd14610b6757806359b89ca714610ba95780635aca1bb614610bd65780635fd57c1b14610bf65780636352211e14610c165780636361bc5114610c365780636425926c14610c78578063659542b014610c9857806367da203214610cb857806367fbb9ef14610cd85780636a1c34fb14610cf85780636bb67a6b14610d185780636bb89d8a14610d2e5780636e2fcff314610d7a5780636ea69d6214610d905780636ef4f9b514610db05780636f5fae8014610dcf5780636f8b44b014610def57806370a0823114610e0f578063715018a614610e2f5780637402a85d14610e4457806376a42bf214610e5a57806378a9238014610e7a5780637974135714610ec857806379a5952614610ede5780637a8efb9214610efe5780637cb6475914610f4a5780637de5d94014610f6a5780637ebe707614610f7d578063813779ef14610f9d57806383bedeb514610fbd57806383f0e6a314610fec578063851fc4b61461100c5780638a5645fd1461102c5780638c5bbca2146110695780638da5cb5b146110995780638dd07d0f146110ae5780638e5888c2146110ce5780638fc88c48146110e457806390a667be146111145780639373f43214611134578063942958f41461115457806395d89b41146111985780639a0f3100146111ad5780639c9a9430146111cd578063a22cb465146111e7578063a8b9e64614611207578063a91a86f91461121c578063b1d3864d14611260578063b2cd3c6e146112ac578063b7c0b8e8146112cc578063b88d4fde146112ec578063ba60a91c146112ff578063ba76e24e1461131f578063bb7a83d01461133f578063bd45f0f514611355578063bd57e5e914611375578063bd9ebe8b14611395578063bf08c6df146113b5578063c032846b146113d5578063c2f1f14a146113ea578063c6ccf5421461141e578063c758f60014611434578063c87b56dd14611454578063c94c7ff414611474578063ca7c8c0614611494578063ca7ce3ec146114b4578063cbfcf96f146114d4578063d21486ce146114f4578063d52c57e014611513578063d5abeb0114611533578063d78be71c14611549578063e030565e14611569578063e29a937014611589578063e2b8d8c0146115aa578063e4cc15ee146115ca578063e8a3d485146115ea578063e8fa494e146115ff578063e9186bce14611614578063e985e9c51461162e578063e98d36e114611677578063e9bf827e14611697578063e9c4aa6a146116aa578063ec5566b3146116fd578063f2fde38b1461171d578063f78e1bdb1461173d578063f914415514611781578063fb796e6c146117cf578063fc304abb146117e9578063fc5abdb314611697575b600080fd5b3480156105db57600080fd5b506105ef6105ea3660046145ac565b611809565b60405190151581526020015b60405180910390f35b34801561061057600080fd5b5061062461061f3660046145de565b611847565b005b34801561063257600080fd5b50610668610641366004614623565b60009081526024602090815260408083206001600160a01b03949094168352929052205490565b6040519081526020016105fb565b34801561068257600080fd5b5061068b611859565b6040516105fb919061469f565b3480156106a457600080fd5b506106246106b33660046146b2565b6118eb565b3480156106c457600080fd5b506106d86106d33660046146b2565b6118f8565b6040516001600160a01b0390911681526020016105fb565b3480156106fc57600080fd5b5061066860185481565b610624610714366004614623565b61193c565b34801561072557600080fd5b5061066860135481565b34801561073b57600080fd5b5061062461074a366004614776565b611960565b34801561075b57600080fd5b50610668611980565b34801561077057600080fd5b50601a546105ef90600160a01b900460ff1681565b34801561079157600080fd5b506106246107a03660046146b2565b611990565b3480156107b157600080fd5b506106246107c03660046147cf565b61199d565b3480156107d157600080fd5b506105ef6107e0366004614848565b611a6e565b3480156107f157600080fd5b50610668611a92565b34801561080657600080fd5b5061066860145481565b34801561081c57600080fd5b5061062461082b3660046148fd565b611aa0565b61062461083e366004614931565b611ac3565b34801561084f57600080fd5b506105ef61085e366004614972565b6000908152602760209081526040808320938352929052205460ff1690565b34801561088957600080fd5b50610624610898366004614994565b611af9565b3480156108a957600080fd5b506108bd6108b8366004614972565b611b22565b604080516001600160a01b0390931683526020830191909152016105fb565b3480156108e857600080fd5b50610668600d5481565b6106246109003660046146b2565b611bd0565b34801561091157600080fd5b506106686109203660046149af565b60295460009081526023602090815260408083206001600160a01b03909416835292815282822060285483529052205490565b34801561095f57600080fd5b5061062461096e366004614994565b611d8a565b34801561097f57600080fd5b50602854610668565b34801561099457600080fd5b506106246109a33660046149af565b611d92565b3480156109b457600080fd5b5061066860155481565b3480156109ca57600080fd5b5061066860165481565b610624611dc6565b3480156109e857600080fd5b506106246109f73660046146b2565b611e51565b610624610a0a3660046149cc565b611e5e565b348015610a1b57600080fd5b5061066860105481565b610624610a33366004614931565b611f48565b348015610a4457600080fd5b50610624610a533660046146b2565b611f78565b348015610a6457600080fd5b50610a78610a733660046149af565b611f83565b6040516105fb9190614a0d565b348015610a9157600080fd5b50610668610aa0366004614623565b60009081526023602090815260408083206001600160a01b0394909416835292815282822060285483529052205490565b348015610add57600080fd5b5061062461096e3660046149af565b348015610af857600080fd5b50610624610b07366004614a45565b612069565b348015610b1857600080fd5b50602954600090815260208052604090205460ff166105ef565b348015610b3e57600080fd5b50602954610668565b348015610b5357600080fd5b50610624610b623660046148fd565b61208f565b348015610b7357600080fd5b50610668610b82366004614623565b60009081526026602090815260408083206001600160a01b03949094168352929052205490565b348015610bb557600080fd5b50610668610bc43660046146b2565b602a6020526000908152604090205481565b348015610be257600080fd5b50610624610bf1366004614994565b6120b2565b348015610c0257600080fd5b50610624610c113660046146b2565b6120cd565b348015610c2257600080fd5b506106d8610c313660046146b2565b6120da565b348015610c4257600080fd5b50610668610c51366004614623565b60009081526025602090815260408083206001600160a01b03949094168352929052205490565b348015610c8457600080fd5b50610624610c933660046146b2565b6120e5565b348015610ca457600080fd5b50610624610cb3366004614994565b6120f2565b348015610cc457600080fd5b50601f546105ef9062010000900460ff1681565b348015610ce457600080fd5b50610624610cf33660046146b2565b612116565b348015610d0457600080fd5b50610624610d133660046146b2565b612123565b348015610d2457600080fd5b5061066860115481565b348015610d3a57600080fd5b50610668610d49366004614623565b60009081526022602090815260408083206001600160a01b0394909416835292815282822060285483529052205490565b348015610d8657600080fd5b5061066860175481565b348015610d9c57600080fd5b506038546106d8906001600160a01b031681565b348015610dbc57600080fd5b50610624610dcb366004614a61565b5050565b348015610ddb57600080fd5b50610624610dea366004614994565b612161565b348015610dfb57600080fd5b50610624610e0a3660046146b2565b612183565b348015610e1b57600080fd5b50610668610e2a3660046149af565b6121e3565b348015610e3b57600080fd5b50610624612231565b348015610e5057600080fd5b50610668603a5481565b348015610e6657600080fd5b50610624610e75366004614aa2565b612243565b348015610e8657600080fd5b50610668610e953660046149af565b60295460009081526021602090815260408083206001600160a01b03909416835292815282822060285483529052205490565b348015610ed457600080fd5b50610668600f5481565b348015610eea57600080fd5b50610624610ef93660046146b2565b61230e565b348015610f0a57600080fd5b50610f1e610f19366004614ace565b61231b565b60408051951515865260208601949094529284019190915215156060830152608082015260a0016105fb565b348015610f5657600080fd5b50610624610f653660046146b2565b6125a4565b610624610f78366004614b37565b6125b1565b348015610f8957600080fd5b50610624610f983660046146b2565b6125ca565b348015610fa957600080fd5b50610624610fb83660046146b2565b6125d7565b348015610fc957600080fd5b506105ef610fd83660046146b2565b600090815260208052604090205460ff1690565b348015610ff857600080fd5b506106246110073660046146b2565b6125e4565b34801561101857600080fd5b50610624611027366004614b9f565b6125f1565b34801561103857600080fd5b506105ef6110473660046146b2565b6029546000908152602760209081526040808320938352929052205460ff1690565b34801561107557600080fd5b506105ef6110843660046146b2565b601e6020526000908152604090205460ff1681565b3480156110a557600080fd5b506106d8612636565b3480156110ba57600080fd5b506106246110c93660046146b2565b612645565b3480156110da57600080fd5b5061066860125481565b3480156110f057600080fd5b506106686110ff3660046146b2565b60009081526009602052604090205460a01c90565b34801561112057600080fd5b5061062461112f366004614776565b612652565b34801561114057600080fd5b5061062461114f3660046149af565b612672565b34801561116057600080fd5b5061066861116f3660046149af565b60295460009081526024602090815260408083206001600160a01b039094168352929052205490565b3480156111a457600080fd5b5061068b61269c565b3480156111b957600080fd5b506106246111c8366004614994565b6126ab565b3480156111d957600080fd5b50601d546105ef9060ff1681565b3480156111f357600080fd5b50610624611202366004614be5565b6126d1565b34801561121357600080fd5b506106246126f0565b34801561122857600080fd5b506106686112373660046149af565b60295460009081526025602090815260408083206001600160a01b039094168352929052205490565b34801561126c57600080fd5b5061066861127b366004614623565b60009081526021602090815260408083206001600160a01b0394909416835292815282822060285483529052205490565b3480156112b857600080fd5b506106686112c7366004614848565b61270f565b3480156112d857600080fd5b506106246112e7366004614994565b61272e565b6106246112fa366004614c11565b612749565b34801561130b57600080fd5b506033546106d8906001600160a01b031681565b34801561132b57600080fd5b5061062461133a366004614aa2565b61277a565b34801561134b57600080fd5b50610668600e5481565b34801561136157600080fd5b5061068b6113703660046146b2565b6127a2565b34801561138157600080fd5b506106686113903660046146b2565b612867565b3480156113a157600080fd5b506106246113b03660046146b2565b612872565b3480156113c157600080fd5b506105ef6113d0366004614c90565b61287f565b3480156113e157600080fd5b50602b54610668565b3480156113f657600080fd5b506106d86114053660046146b2565b6000908152600960205260409020544260a01b81110290565b34801561142a57600080fd5b50610668603b5481565b34801561144057600080fd5b5061062461144f366004614972565b61289b565b34801561146057600080fd5b5061068b61146f3660046146b2565b6128e0565b34801561148057600080fd5b5061062461148f366004614a61565b612a45565b3480156114a057600080fd5b506106246114af3660046146b2565b612a57565b3480156114c057600080fd5b506106246114cf366004614994565b612a64565b3480156114e057600080fd5b506105ef6114ef366004614c90565b612a7f565b34801561150057600080fd5b50601f546105ef90610100900460ff1681565b34801561151f57600080fd5b5061062461152e366004614ceb565b612a90565b34801561153f57600080fd5b5061066860195481565b34801561155557600080fd5b506106246115643660046146b2565b612aa2565b34801561157557600080fd5b50610624611584366004614d10565b612aaf565b34801561159557600080fd5b50601f546105ef906301000000900460ff1681565b3480156115b657600080fd5b506106246115c53660046149af565b612b7e565b3480156115d657600080fd5b506106686115e5366004614848565b612bb2565b3480156115f657600080fd5b5061068b612bc4565b34801561160b57600080fd5b50610624612bce565b34801561162057600080fd5b50601f546105ef9060ff1681565b34801561163a57600080fd5b506105ef611649366004614d5e565b6001600160a01b03918216600090815260086020908152604080832093909416825291909152205460ff1690565b34801561168357600080fd5b506031546106d8906001600160a01b031681565b6106246116a5366004614d8c565b612c27565b3480156116b657600080fd5b506116d36116c53660046146b2565b506000908190819081908190565b6040805195865260208601949094529284019190915215156060830152608082015260a0016105fb565b34801561170957600080fd5b506106246117183660046146b2565b612c39565b34801561172957600080fd5b506106246117383660046149af565b612c46565b34801561174957600080fd5b506106686117583660046149af565b60295460009081526026602090815260408083206001600160a01b039094168352929052205490565b34801561178d57600080fd5b5061066861179c3660046149af565b60295460009081526022602090815260408083206001600160a01b03909416835292815282822060285483529052205490565b3480156117db57600080fd5b50603c546105ef9060ff1681565b3480156117f557600080fd5b506105ef611804366004614c90565b612cbc565b600061181482612ccd565b80611823575061182382612d1b565b80611832575061183282612d43565b80611841575061184182612d78565b92915050565b61184f612d9d565b610dcb8282612dfc565b60606003805461186890614dd7565b80601f016020809104026020016040519081016040528092919081815260200182805461189490614dd7565b80156118e15780601f106118b6576101008083540402835291602001916118e1565b820191906000526020600020905b8154815290600101906020018083116118c457829003601f168201915b5050505050905090565b6118f3612d9d565b601755565b600061190382612ef5565b611920576040516333d1c03960e21b815260040160405180910390fd5b506000908152600760205260409020546001600160a01b031690565b81603c5460ff16156119515761195181612f2a565b61195b8383612f6e565b505050565b611968612d9d565b6000818152601c6020526040902061195b8382614e57565b600061198b60015490565b905090565b611998612d9d565b602e55565b6119a5612d9d565b6032546040516331a9108f60e11b8152600481018590526000916001600160a01b031690636352211e90602401602060405180830381865afa1580156119ef573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611a139190614f16565b6001600160a01b031603611a425760405162461bcd60e51b8152600401611a3990614f33565b60405180910390fd5b600090815260276020908152604080832094835293905291909120805460ff1916911515919091179055565b600080611a818a8a8a8a8a8a8a8a61300e565b509150505b98975050505050505050565b600254600154036000190190565b611aa8612d9d565b6029546000908152601b60205260409020610dcb8282614e57565b826001600160a01b0381163314611ae857603c5460ff1615611ae857611ae833612f2a565b611af3848484613086565b50505050565b611b01612d9d565b60295460009081526020805260409020805460ff1916911515919091179055565b6000828152600c602090815260408083208151808301909252546001600160a01b038116808352600160a01b9091046001600160601b0316928201929092528291611b97575060408051808201909152600b546001600160a01b0381168252600160a01b90046001600160601b031660208201525b602081015160009061271090611bb6906001600160601b031687614f74565b611bc09190614f8b565b91519350909150505b9250929050565b611bd8613224565b601f5460ff16611c215760405162461bcd60e51b81526020600482015260146024820152731c1d589b1a58d35a5b9d081a5cc814185d5cd95960621b6044820152606401611a39565b806014541015611c815760405162461bcd60e51b815260206004820152602560248201527f7075626c69634d696e743a204f766572206d6178206d696e7473207065722077604482015264185b1b195d60da1b6064820152608401611a39565b6029546000908152602460209081526040808320338452909152902054611ca9908290614fad565b6014541015611cf85760405162461bcd60e51b815260206004820152601b60248201527a165bdd481a185d99481b9bc81c1d589b1a58d35a5b9d081b19599d602a1b6044820152606401611a39565b611d018161327d565b323314611d505760405162461bcd60e51b815260206004820152601f60248201527f7075626c69634d696e743a2043616c6c657220697320636f6e74726163742e006044820152606401611a39565b6029546000908152602460209081526040808320338085529252909120805483019055611d7d90826132a9565b611d876001600a55565b50565b611d87612d9d565b611d9a612d9d565b603180546001600160a01b039092166001600160a01b0319928316811790915560328054909216179055565b611dce612d9d565b611dd6613224565b60405173f097ab883dbfb864671ed7251af91f9d0791415590600090829047908381818185875af1925050503d8060008114611e2e576040519150601f19603f3d011682016040523d82523d6000602084013e611e33565b606091505b50508091505080611e4357600080fd5b5050611e4f6001600a55565b565b611e59612d9d565b601555565b611e66613224565b6000611e788989898989898989613305565b9050611e8a898989898989898961361f565b80600003611ec357602954600090815260216020908152604080832033845282528083206028548452909152902080548a019055611f29565b80600103611efc57602954600090815260226020908152604080832033845282528083206028548452909152902080548a019055611f29565b602954600090815260236020908152604080832033845282528083206028548452909152902080548a0190555b611f33338a6132a9565b50611f3e6001600a55565b5050505050505050565b826001600160a01b0381163314611f6d57603c5460ff1615611f6d57611f6d33612f2a565b611af3848484613666565b611d87816001613681565b60606000806000611f93856121e3565b90506000816001600160401b03811115611faf57611faf6146cb565b604051908082528060200260200182016040528015611fd8578160200160208202803683370190505b509050611fe361456f565b60015b83861461205d57611ff6816137c2565b915081604001516120555781516001600160a01b03161561201657815194505b876001600160a01b0316856001600160a01b031603612055578083878060010198508151811061204857612048614fc0565b6020026020010181815250505b600101611fe6565b50909695505050505050565b612071612d9d565b60009081526020805260409020805460ff1916911515919091179055565b612097612d9d565b6029546000908152601c60205260409020610dcb8282614e57565b6120ba612d9d565b601f805460ff1916911515919091179055565b6120d5612d9d565b601255565b6000611841826137e2565b6120ed612d9d565b601855565b6120fa612d9d565b601f8054911515620100000262ff000019909216919091179055565b61211e612d9d565b600f55565b61212b612d9d565b6040518181527ff8e1a15aba9398e019f0b49df1a4fde98ee17ae345cb5f6b5e2c27f5033e8ce79060200160405180910390a150565b612169612d9d565b601f80549115156101000261ff0019909216919091179055565b61218b612d9d565b80612194611a92565b11156121de5760405162461bcd60e51b81526020600482015260196024820152782637bbb2b9103a3430b7102fb1bab93932b73a24b73232bc1760391b6044820152606401611a39565b601955565b60006001600160a01b03821661220c576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b03166000908152600660205260409020546001600160401b031690565b612239612d9d565b611e4f6000613858565b61224b612d9d565b6032546040516331a9108f60e11b8152600481018490526000916001600160a01b031690636352211e90602401602060405180830381865afa158015612295573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906122b99190614f16565b6001600160a01b0316036122df5760405162461bcd60e51b8152600401611a3990614f33565b602954600090815260276020908152604080832094835293905291909120805460ff1916911515919091179055565b612316612d9d565b600e55565b6000806000806000896000036123ef5761233a8989602c548a8a6138a8565b156123975750506000805160206152e783398151915254600d5460295460009081526021602090815260408083206001600160a01b038d1684528252808320602854845290915290205460ff909216945092509050600186612597565b50506000805160206152e783398151915254600d5460295460009081526021602090815260408083206001600160a01b038d1684528252808320602854845290915281205460ff909316955090935090915080612597565b896001036124bb576124068989602d548a8a6138a8565b1561246357505060008051602061524783398151915254600e5460295460009081526022602090815260408083206001600160a01b038d1684528252808320602854845290915290205460ff909216945092509050600186612597565b505060008051602061524783398151915254600e5460295460009081526022602090815260408083206001600160a01b038d1684528252808320602854845290915281205460ff909316955090935090915080612597565b89600203612587576124d28989602e548a8a6138a8565b1561252f5750506000805160206152c783398151915254600f5460295460009081526023602090815260408083206001600160a01b038d1684528252808320602854845290915290205460ff909216945092509050600186612597565b50506000805160206152c783398151915254600f5460295460009081526023602090815260408083206001600160a01b038d1684528252808320602854845290915281205460ff909316955090935090915080612597565b5060009350839250829150819050805b9550955095509550959050565b6125ac612d9d565b602c55565b6125b9613224565b6125c36001600a55565b5050505050565b6125d2612d9d565b601155565b6125df612d9d565b601455565b6125ec612d9d565b601655565b6125f9612d9d565b61260282612ef5565b61261e5760405162461bcd60e51b8152600401611a3990614fd6565b6000828152602f6020526040902061195b8282614e57565b6000546001600160a01b031690565b61264d612d9d565b600d55565b61265a612d9d565b6000818152601b6020526040902061195b8382614e57565b61267a612d9d565b601a80546001600160a01b0319166001600160a01b0392909216919091179055565b60606004805461186890614dd7565b6126b3612d9d565b601a8054911515600160a01b0260ff60a01b19909216919091179055565b81603c5460ff16156126e6576126e681612f2a565b61195b838361391d565b6126f8612d9d565b602880549060006127088361500d565b9190505550565b60006127218989898989898989613989565b9998505050505050505050565b612736612d9d565b603c805460ff1916911515919091179055565b836001600160a01b038116331461276e57603c5460ff161561276e5761276e33612f2a565b6125c3858585856139fa565b612782612d9d565b6000918252601e6020526040909120805460ff1916911515919091179055565b60606127ad82612ef5565b6127c95760405162461bcd60e51b8152600401611a3990614fd6565b6000828152602f6020526040902080546127e290614dd7565b80601f016020809104026020016040519081016040528092919081815260200182805461280e90614dd7565b801561285b5780601f106128305761010080835404028352916020019161285b565b820191906000526020600020905b81548152906001019060200180831161283e57829003601f168201915b50505050509050919050565b600061184182613a3e565b61287a612d9d565b602d55565b60006128908585602d5486866138a8565b90505b949350505050565b6128a3612d9d565b60408051838152602081018390527f6bd5c950a8d8df17f772f5af37cb3655737899cbf903264b9795592da439661c910160405180910390a15050565b60606128eb82612ef5565b6129075760405162461bcd60e51b8152600401611a3990614fd6565b600061291283613a3e565b600081815260208052604081205491925060ff909116151590036129cf576000818152601b60205260409020805461294990614dd7565b80601f016020809104026020016040519081016040528092919081815260200182805461297590614dd7565b80156129c25780601f10612997576101008083540402835291602001916129c2565b820191906000526020600020905b8154815290600101906020018083116129a557829003601f168201915b5050505050915050919050565b6000838152602f6020526040902080546129e890614dd7565b159050612a08576000838152602f60205260409020805461294990614dd7565b612a1181613af7565b612a1a84613b14565b6030604051602001612a2e93929190615026565b604051602081830303815290604052915050919050565b612a4d613224565b610dcb6001600a55565b612a5f612d9d565b601355565b612a6c612d9d565b601d805460ff1916911515919091179055565b60006128908585602c5486866138a8565b612a98612d9d565b610dcb81836132a9565b612aaa612d9d565b601055565b6000612aba846120da565b9050336001600160a01b03821614612b0b57612ad68133611649565b612b0b5733612ae4856118f8565b6001600160a01b031614612b0b576040516309e3bb1d60e31b815260040160405180910390fd5b6000848152600960209081526040918290206001600160a01b03861660a086901b600160a01b600160e01b0316811790915591516001600160401b038516815286917f4e06b4e7000e659094299b3533b47b6aa8ad048e95e872d23d1f4ee55af89cfe910160405180910390a350505050565b612b86612d9d565b603380546001600160a01b039092166001600160a01b0319928316811790915560348054909216179055565b60006127218989898989898989613ba6565b606061198b613c08565b612bd6612d9d565b601d805460ff19169055601f805462ffffff191690556000602c819055602d819055602e8190556029805491612c0b8361500d565b90915550506001546029546000908152602a6020526040902055565b612c2f613224565b61195b6001600a55565b612c41612d9d565b602b55565b612c4e612d9d565b6001600160a01b038116612cb35760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401611a39565b611d8781613858565b60006128908585602e5486866138a8565b60006301ffc9a760e01b6001600160e01b031983161480612cfe57506380ac58cd60e01b6001600160e01b03198316145b806118415750506001600160e01b031916635b5e139f60e01b1490565b6000612d2682612ccd565b806118415750506001600160e01b031916632b424ad760e21b1490565b60006001600160e01b0319821663152a902d60e11b148061184157506301ffc9a760e01b6001600160e01b0319831614611841565b60006001600160e01b03198216632483248360e11b1480611841575061184182612d43565b33612da6612636565b6001600160a01b031614611e4f5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401611a39565b6127106001600160601b0382161115612e6a5760405162461bcd60e51b815260206004820152602a60248201527f455243323938313a20726f79616c7479206665652077696c6c206578636565646044820152692073616c65507269636560b01b6064820152608401611a39565b6001600160a01b038216612ebc5760405162461bcd60e51b815260206004820152601960248201527822a921991c9c189d1034b73b30b634b2103932b1b2b4bb32b960391b6044820152606401611a39565b604080518082019091526001600160a01b039092168083526001600160601b039091166020909201829052600160a01b90910217600b55565b600081600111158015612f09575060015482105b8015611841575050600090815260056020526040902054600160e01b161590565b69c617113400112233445560005230601a5280603a52600080604460166daaeb6d7670e522a718067333cd4e5afa612f66573d6000803e3d6000fd5b6000603a5250565b6000612f79826120da565b9050336001600160a01b03821614612fb257612f958133611649565b612fb2576040516367d9dca160e11b815260040160405180910390fd5b60008281526007602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6000806130208a8a602c548b8b6138a8565b156130315750600190506000613079565b6130408a8a602d5489896138a8565b1561305057506001905080613079565b61305f8a8a602e5487876138a8565b156130705750600190506002613079565b506000905061270f5b9850989650505050505050565b6000613091826137e2565b9050836001600160a01b0316816001600160a01b0316146130c45760405162a1148160e81b815260040160405180910390fd5b600082815260076020526040902080546130f08187335b6001600160a01b039081169116811491141790565b61311b576130fe8633611649565b61311b57604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b03851661314257604051633a954ecd60e21b815260040160405180910390fd5b61314f8686866001613c88565b801561315a57600082555b6001600160a01b0386811660009081526006602052604080822080546000190190559187168152208054600101905561319785600160e11b613e64565b600085815260056020526040812091909155600160e11b841690036131ec576001840160008181526005602052604081205490036131ea5760015481146131ea5760008181526005602052604090208490555b505b83856001600160a01b0316876001600160a01b03166000805160206152a783398151915260405160405180910390a45b505050505050565b6002600a54036132765760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401611a39565b6002600a55565b8060105461328b9190614f74565b3414611d875760405162461bcd60e51b8152600401611a39906150c6565b6019546132b4611a92565b6132be9083614fad565b11156132fb5760405162461bcd60e51b815260206004820152600c60248201526b4e6f206d6f7265204e46547360a01b6044820152606401611a39565b610dcb8282613e79565b601d5460009060ff166133545760405162461bcd60e51b81526020600482015260176024820152761dda1a5d195b1a5cdd135a5b9d081a5cc814185d5cd959604a1b6044820152606401611a39565b600080613367338b8b8b8b8b8b8b61300e565b91509150816133b35760405162461bcd60e51b8152602060048201526018602482015277596f7520617265206e6f742077686974656c69737465642160401b6044820152606401611a39565b6000818152601e602052604090205460ff16156134125760405162461bcd60e51b815260206004820152601f60248201527f4e6f772070617274206f662077686974656c6973742064697361626c65642e006044820152606401611a39565b6000613424338c8c8c8c8c8c8c613ba6565b90508b8110156134875760405162461bcd60e51b815260206004820152602860248201527f77686974656c6973744d696e743a204f766572206d6178206d696e74732070656044820152671c881dd85b1b195d60c21b6064820152608401611a39565b81600003613515576029546000908152602160209081526040808320338452825280832060285484529091529020546134c1908d90614fad565b8110156135105760405162461bcd60e51b815260206004820152601e60248201527f596f752068617665206e6f2077686974656c6973744d696e74206c65667400006044820152606401611a39565b611a81565b8160010361359e5760295460009081526022602090815260408083203384528252808320602854845290915290205461354f908d90614fad565b8110156135105760405162461bcd60e51b815260206004820152601f60248201527f596f752068617665206e6f2077686974656c6973744d696e7431206c656674006044820152606401611a39565b6029546000908152602360209081526040808320338452825280832060285484529091529020546135d0908d90614fad565b811015611a815760405162461bcd60e51b815260206004820152601f60248201527f596f752068617665206e6f2077686974656c6973744d696e7432206c656674006044820152606401611a39565b60006136313389898989898989613989565b905061363d8982614f74565b341461365b5760405162461bcd60e51b8152600401611a39906150c6565b505050505050505050565b61195b83838360405180602001604052806000815250612749565b600061368c836137e2565b9050806000806136aa86600090815260076020526040902080549091565b9150915084156136ea576136bf8184336130db565b6136ea576136cd8333611649565b6136ea57604051632ce44b5f60e11b815260040160405180910390fd5b6136f8836000886001613c88565b801561370357600082555b6001600160a01b038316600090815260066020526040902080546001600160801b0301905561373683600360e01b613e64565b600087815260056020526040812091909155600160e11b8516900361378b576001860160008181526005602052604081205490036137895760015481146137895760008181526005602052604090208590555b505b60405186906000906001600160a01b038616906000805160206152a7833981519152908390a4505060028054600101905550505050565b6137ca61456f565b60008281526005602052604090205461184190613e93565b6000818060011161383f5760015481101561383f5760008181526005602052604081205490600160e01b8216900361383d575b80600003613836575060001901600081815260056020526040902054613815565b9392505050565b505b604051636f96cda160e11b815260040160405180910390fd5b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b60006013548511156138bc57506000613914565b6040516001600160601b0319606088901b1660208201526034810186905260009060540160408051601f19818403018152919052805160209091012090508415801590613910575061391084848784613ed6565b9150505b95945050505050565b3360008181526008602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b600061399a8989602c548a8a6138a8565b156139a85750600d54611a86565b6139b78989602d5488886138a8565b156139c55750600e54611a86565b6139d48989602e5486866138a8565b156139e25750600f54611a86565b5069021e0c0013070adc000098975050505050505050565b613a05848484611ac3565b6001600160a01b0383163b15611af357613a2184848484613eee565b611af3576040516368d2bf6b60e11b815260040160405180910390fd5b6000613a4982612ef5565b613aa05760405162461bcd60e51b815260206004820152602260248201527f536561736f6e20717565727920666f72206e6f6e6578697374656e7420746f6b60448201526132b760f11b6064820152608401611a39565b6029546402540be400905b6000818152602a60205260409020548410801590613ac857508184105b15613ad4579392505050565b6000818152602a6020526040902054915080613aef816150f8565b915050613aab565b6000818152601c602052604090208054606091906127e290614dd7565b60606000613b2183613fd6565b60010190506000816001600160401b03811115613b4057613b406146cb565b6040519080825280601f01601f191660200182016040528015613b6a576020820181803683370190505b5090508181016020015b600019016f181899199a1a9b1b9c1cb0b131b232b360811b600a86061a8153600a8504945084613b7457509392505050565b6000613bb78989602c548a8a6138a8565b15613bc3575086611a86565b613bd28989602d5488886138a8565b15613bde575086611a86565b613bed8989602e5486866138a8565b15613bf9575086611a86565b50600098975050505050505050565b6060600080613c1981612710611b22565b91509150613c62613c2982613b14565b613c3d846001600160a01b031660146140ac565b604051602001613c4e92919061510f565b604051602081830303815290604052614247565b604051602001613c729190615194565b6040516020818303038152906040529250505090565b601a54600160a01b900460ff161580613cb95750613ca4612636565b6001600160a01b0316336001600160a01b0316145b80613ccb57506001600160a01b038416155b80613cdd57506001600160a01b038316155b613d405760405162461bcd60e51b815260206004820152602e60248201527f534254206d6f646520456e61626c65643a20746f6b656e207472616e7366657260448201526d103bb434b632903830bab9b2b21760911b6064820152608401611a39565b815b613d4c8284614fad565b811015613e5e57601f546301000000900460ff161580613d785750600081815260356020526040902054155b613dd75760405162461bcd60e51b815260206004820152602a60248201527f5374616b696e67206e6f772e3a20746f6b656e207472616e73666572207768696044820152693632903830bab9b2b21760b11b6064820152608401611a39565b60008181526035602052604090205415613e4c57600081815260356020526040812054613e0490426151d9565b905080603660008481526020019081526020016000206000828254613e299190614fad565b909155505050600081815260356020908152604080832083905560379091528120555b80613e568161500d565b915050613d42565b50611af3565b4260a01b176001600160a01b03919091161790565b610dcb828260405180602001604052806000815250614399565b613e9b61456f565b6001600160a01b03821681526001600160401b0360a083901c166020820152600160e01b82161515604082015260e89190911c606082015290565b600082613ee48686856143ff565b1495945050505050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a0290613f239033908990889088906004016151ec565b6020604051808303816000875af1925050508015613f5e575060408051601f3d908101601f19168201909252613f5b91810190615229565b60015b613fbc573d808015613f8c576040519150601f19603f3d011682016040523d82523d6000602084013e613f91565b606091505b508051600003613fb4576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050612893565b60008072184f03e93ff9f4daa797ed6e38ed64bf6a1f0160401b83106140155772184f03e93ff9f4daa797ed6e38ed64bf6a1f0160401b830492506040015b6904ee2d6d415b85acef8160201b831061403f576904ee2d6d415b85acef8160201b830492506020015b662386f26fc10000831061405d57662386f26fc10000830492506010015b6305f5e1008310614075576305f5e100830492506008015b612710831061408957612710830492506004015b6064831061409b576064830492506002015b600a83106118415760010192915050565b606060006140bb836002614f74565b6140c6906002614fad565b6001600160401b038111156140dd576140dd6146cb565b6040519080825280601f01601f191660200182016040528015614107576020820181803683370190505b509050600360fc1b8160008151811061412257614122614fc0565b60200101906001600160f81b031916908160001a905350600f60fb1b8160018151811061415157614151614fc0565b60200101906001600160f81b031916908160001a9053506000614175846002614f74565b614180906001614fad565b90505b60018111156141f8576f181899199a1a9b1b9c1cb0b131b232b360811b85600f16601081106141b4576141b4614fc0565b1a60f81b8282815181106141ca576141ca614fc0565b60200101906001600160f81b031916908160001a90535060049490941c936141f1816150f8565b9050614183565b5083156138365760405162461bcd60e51b815260206004820181905260248201527f537472696e67733a20686578206c656e67746820696e73756666696369656e746044820152606401611a39565b6060815160000361426657505060408051602081019091526000815290565b600060405180606001604052806040815260200161526760409139905060006003845160026142959190614fad565b61429f9190614f8b565b6142aa906004614f74565b6001600160401b038111156142c1576142c16146cb565b6040519080825280601f01601f1916602001820160405280156142eb576020820181803683370190505b509050600182016020820185865187015b80821015614357576003820191508151603f8160121c168501518453600184019350603f81600c1c168501518453600184019350603f8160061c168501518453600184019350603f81168501518453506001830192506142fc565b505060038651066001811461437357600281146143865761438e565b603d6001830353603d600283035361438e565b603d60018303535b509195945050505050565b6143a3838361444b565b6001600160a01b0383163b1561195b576001548281035b6143cd6000868380600101945086613eee565b6143ea576040516368d2bf6b60e11b815260040160405180910390fd5b8181106143ba5781600154146125c357600080fd5b600081815b848110156144425761442e8287878481811061442257614422614fc0565b90506020020135614540565b91508061443a8161500d565b915050614404565b50949350505050565b60015460008290036144705760405163b562e8dd60e01b815260040160405180910390fd5b61447d6000848385613c88565b6001600160a01b038316600090815260066020526040902080546001600160401b0184020190556144b4836001841460e11b613e64565b6000828152600560205260408120919091556001600160a01b0384169083830190839083906000805160206152a78339815191528180a4600183015b81811461451657808360006000805160206152a7833981519152600080a46001016144f0565b508160000361453757604051622e076360e81b815260040160405180910390fd5b60015550505050565b600081831061455c576000828152602084905260409020613836565b6000838152602083905260409020613836565b60408051608081018252600080825260208201819052918101829052606081019190915290565b6001600160e01b031981168114611d8757600080fd5b6000602082840312156145be57600080fd5b813561383681614596565b6001600160a01b0381168114611d8757600080fd5b600080604083850312156145f157600080fd5b82356145fc816145c9565b915060208301356001600160601b038116811461461857600080fd5b809150509250929050565b6000806040838503121561463657600080fd5b8235614641816145c9565b946020939093013593505050565b60005b8381101561466a578181015183820152602001614652565b50506000910152565b6000815180845261468b81602086016020860161464f565b601f01601f19169290920160200192915050565b6020815260006138366020830184614673565b6000602082840312156146c457600080fd5b5035919050565b634e487b7160e01b600052604160045260246000fd5b60006001600160401b03808411156146fb576146fb6146cb565b604051601f8501601f19908116603f01168101908282118183101715614723576147236146cb565b8160405280935085815286868601111561473c57600080fd5b858560208301376000602087830101525050509392505050565b600082601f83011261476757600080fd5b613836838335602085016146e1565b6000806040838503121561478957600080fd5b82356001600160401b0381111561479f57600080fd5b6147ab85828601614756565b95602094909401359450505050565b803580151581146147ca57600080fd5b919050565b6000806000606084860312156147e457600080fd5b833592506147f4602085016147ba565b9150604084013590509250925092565b60008083601f84011261481657600080fd5b5081356001600160401b0381111561482d57600080fd5b6020830191508360208260051b8501011115611bc957600080fd5b60008060008060008060008060a0898b03121561486457600080fd5b883561486f816145c9565b97506020890135965060408901356001600160401b038082111561489257600080fd5b61489e8c838d01614804565b909850965060608b01359150808211156148b757600080fd5b6148c38c838d01614804565b909650945060808b01359150808211156148dc57600080fd5b506148e98b828c01614804565b999c989b5096995094979396929594505050565b60006020828403121561490f57600080fd5b81356001600160401b0381111561492557600080fd5b61289384828501614756565b60008060006060848603121561494657600080fd5b8335614951816145c9565b92506020840135614961816145c9565b929592945050506040919091013590565b6000806040838503121561498557600080fd5b50508035926020909101359150565b6000602082840312156149a657600080fd5b613836826147ba565b6000602082840312156149c157600080fd5b8135613836816145c9565b60008060008060008060008060a0898b0312156149e857600080fd5b883597506020890135965060408901356001600160401b038082111561489257600080fd5b6020808252825182820181905260009190848201906040850190845b8181101561205d57835183529284019291840191600101614a29565b60008060408385031215614a5857600080fd5b614641836147ba565b60008060208385031215614a7457600080fd5b82356001600160401b03811115614a8a57600080fd5b614a9685828601614804565b90969095509350505050565b60008060408385031215614ab557600080fd5b82359150614ac5602084016147ba565b90509250929050565b600080600080600060808688031215614ae657600080fd5b853594506020860135614af8816145c9565b93506040860135925060608601356001600160401b03811115614b1a57600080fd5b614b2688828901614804565b969995985093965092949392505050565b600080600080600060608688031215614b4f57600080fd5b8535945060208601356001600160401b0380821115614b6d57600080fd5b614b7989838a01614804565b90965094506040880135915080821115614b9257600080fd5b50614b2688828901614804565b60008060408385031215614bb257600080fd5b8235915060208301356001600160401b03811115614bcf57600080fd5b614bdb85828601614756565b9150509250929050565b60008060408385031215614bf857600080fd5b8235614c03816145c9565b9150614ac5602084016147ba565b60008060008060808587031215614c2757600080fd5b8435614c32816145c9565b93506020850135614c42816145c9565b92506040850135915060608501356001600160401b03811115614c6457600080fd5b8501601f81018713614c7557600080fd5b614c84878235602084016146e1565b91505092959194509250565b60008060008060608587031215614ca657600080fd5b8435614cb1816145c9565b93506020850135925060408501356001600160401b03811115614cd357600080fd5b614cdf87828801614804565b95989497509550505050565b60008060408385031215614cfe57600080fd5b823591506020830135614618816145c9565b600080600060608486031215614d2557600080fd5b833592506020840135614d37816145c9565b915060408401356001600160401b0381168114614d5357600080fd5b809150509250925092565b60008060408385031215614d7157600080fd5b8235614d7c816145c9565b91506020830135614618816145c9565b600080600060408486031215614da157600080fd5b8335925060208401356001600160401b03811115614dbe57600080fd5b614dca86828701614804565b9497909650939450505050565b600181811c90821680614deb57607f821691505b602082108103614e0b57634e487b7160e01b600052602260045260246000fd5b50919050565b601f82111561195b57600081815260208120601f850160051c81016020861015614e385750805b601f850160051c820191505b8181101561321c57828155600101614e44565b81516001600160401b03811115614e7057614e706146cb565b614e8481614e7e8454614dd7565b84614e11565b602080601f831160018114614eb95760008415614ea15750858301515b600019600386901b1c1916600185901b17855561321c565b600085815260208120601f198616915b82811015614ee857888601518255948401946001909101908401614ec9565b5085821015614f065787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b600060208284031215614f2857600080fd5b8151613836816145c9565b6020808252601190820152703737b732bc34b9ba32b73a103a37b5b2b760791b604082015260600190565b634e487b7160e01b600052601160045260246000fd5b808202811582820484141761184157611841614f5e565b600082614fa857634e487b7160e01b600052601260045260246000fd5b500490565b8082018082111561184157611841614f5e565b634e487b7160e01b600052603260045260246000fd5b6020808252601f908201527f55524920717565727920666f72206e6f6e6578697374656e7420746f6b656e00604082015260600190565b60006001820161501f5761501f614f5e565b5060010190565b6000845160206150398285838a0161464f565b85519184019161504c8184848a0161464f565b855492019160009061505d81614dd7565b60018281168015615075576001811461508a576150b6565b60ff19841687528215158302870194506150b6565b896000528560002060005b848110156150ae57815489820152908301908701615095565b505082870194505b50929a9950505050505050505050565b602080825260189082015277115512081d985b1d59481a5cc81b9bdd0818dbdc9c9958dd60421b604082015260600190565b60008161510757615107614f5e565b506000190190565b7a3d9139b2b63632b92fb332b2afb130b9b4b9afb837b4b73a39911d60291b8152825160009061514681601b85016020880161464f565b721610113332b2afb932b1b4b834b2b73a111d1160691b601b91840191820152835161517981602e84016020880161464f565b61227d60f01b602e9290910191820152603001949350505050565b7f646174613a6170706c69636174696f6e2f6a736f6e3b6261736536342c0000008152600082516151cc81601d85016020870161464f565b91909101601d0192915050565b8181038181111561184157611841614f5e565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061521f90830184614673565b9695505050505050565b60006020828403121561523b57600080fd5b81516138368161459656fe873299c6a6c39b8b92f01922bb622df4a3236ea2876aac2da76f6c092cf7e98f4142434445464748494a4b4c4d4e4f505152535455565758595a6162636465666768696a6b6c6d6e6f707172737475767778797a303132333435363738392b2fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8a1ea6ccfdf9f988bdc16303c81231f9b192785454b34880c28e5c30362354c565ce8396b736f5da9d881cc6fbcb11ef9721292dc41ec8c40879fd9edea5744da2646970667358221220aa334ee0e43ca2c9e41e4564d549d0c5cc5333bb8d94f640e8203477d52d05f664736f6c63430008120033000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000013496e76697369626c6520416e6f6e796d6f75730000000000000000000000000000000000000000000000000000000000000000000000000000000000000000024941000000000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106105ca5760003560e01c806301ffc9a7146105cf57806304634d8d14610604578063062cb3011461062657806306fdde031461067657806307aaef3814610698578063081812fc146106b8578063083e1669146106f0578063095ea7b3146107065780630bc324b9146107195780630c2254e31461072f5780630d9005ae1461074f5780630f9eef09146107645780631429577414610785578063155fc3af146107a55780631632eb1b146107c557806318160ddd146107e55780631a09cfe2146107fa57806320ac68501461081057806323b872dd146108305780632908e710146108435780632a3f300c1461087d5780632a55205a1461089d5780632c4e9fc6146108dc5780632db11544146108f25780633048987f1461090557806330d616f41461095357806331e2d9591461097357806335a28f3e1461098857806335febafa146109a85780633615a4ef146109be5780633ccfd60b146109d45780633d9f0ae5146109dc57806340f14130146109fc57806342454db914610a0f57806342842e0e14610a2557806342966c6814610a38578063438b630014610a585780634b71b11214610a8557806351508f0a14610ad157806353c12e9f14610aec57806354214f6914610b0c57806354c9d27314610b3257806355f804b314610b47578063591500cd14610b6757806359b89ca714610ba95780635aca1bb614610bd65780635fd57c1b14610bf65780636352211e14610c165780636361bc5114610c365780636425926c14610c78578063659542b014610c9857806367da203214610cb857806367fbb9ef14610cd85780636a1c34fb14610cf85780636bb67a6b14610d185780636bb89d8a14610d2e5780636e2fcff314610d7a5780636ea69d6214610d905780636ef4f9b514610db05780636f5fae8014610dcf5780636f8b44b014610def57806370a0823114610e0f578063715018a614610e2f5780637402a85d14610e4457806376a42bf214610e5a57806378a9238014610e7a5780637974135714610ec857806379a5952614610ede5780637a8efb9214610efe5780637cb6475914610f4a5780637de5d94014610f6a5780637ebe707614610f7d578063813779ef14610f9d57806383bedeb514610fbd57806383f0e6a314610fec578063851fc4b61461100c5780638a5645fd1461102c5780638c5bbca2146110695780638da5cb5b146110995780638dd07d0f146110ae5780638e5888c2146110ce5780638fc88c48146110e457806390a667be146111145780639373f43214611134578063942958f41461115457806395d89b41146111985780639a0f3100146111ad5780639c9a9430146111cd578063a22cb465146111e7578063a8b9e64614611207578063a91a86f91461121c578063b1d3864d14611260578063b2cd3c6e146112ac578063b7c0b8e8146112cc578063b88d4fde146112ec578063ba60a91c146112ff578063ba76e24e1461131f578063bb7a83d01461133f578063bd45f0f514611355578063bd57e5e914611375578063bd9ebe8b14611395578063bf08c6df146113b5578063c032846b146113d5578063c2f1f14a146113ea578063c6ccf5421461141e578063c758f60014611434578063c87b56dd14611454578063c94c7ff414611474578063ca7c8c0614611494578063ca7ce3ec146114b4578063cbfcf96f146114d4578063d21486ce146114f4578063d52c57e014611513578063d5abeb0114611533578063d78be71c14611549578063e030565e14611569578063e29a937014611589578063e2b8d8c0146115aa578063e4cc15ee146115ca578063e8a3d485146115ea578063e8fa494e146115ff578063e9186bce14611614578063e985e9c51461162e578063e98d36e114611677578063e9bf827e14611697578063e9c4aa6a146116aa578063ec5566b3146116fd578063f2fde38b1461171d578063f78e1bdb1461173d578063f914415514611781578063fb796e6c146117cf578063fc304abb146117e9578063fc5abdb314611697575b600080fd5b3480156105db57600080fd5b506105ef6105ea3660046145ac565b611809565b60405190151581526020015b60405180910390f35b34801561061057600080fd5b5061062461061f3660046145de565b611847565b005b34801561063257600080fd5b50610668610641366004614623565b60009081526024602090815260408083206001600160a01b03949094168352929052205490565b6040519081526020016105fb565b34801561068257600080fd5b5061068b611859565b6040516105fb919061469f565b3480156106a457600080fd5b506106246106b33660046146b2565b6118eb565b3480156106c457600080fd5b506106d86106d33660046146b2565b6118f8565b6040516001600160a01b0390911681526020016105fb565b3480156106fc57600080fd5b5061066860185481565b610624610714366004614623565b61193c565b34801561072557600080fd5b5061066860135481565b34801561073b57600080fd5b5061062461074a366004614776565b611960565b34801561075b57600080fd5b50610668611980565b34801561077057600080fd5b50601a546105ef90600160a01b900460ff1681565b34801561079157600080fd5b506106246107a03660046146b2565b611990565b3480156107b157600080fd5b506106246107c03660046147cf565b61199d565b3480156107d157600080fd5b506105ef6107e0366004614848565b611a6e565b3480156107f157600080fd5b50610668611a92565b34801561080657600080fd5b5061066860145481565b34801561081c57600080fd5b5061062461082b3660046148fd565b611aa0565b61062461083e366004614931565b611ac3565b34801561084f57600080fd5b506105ef61085e366004614972565b6000908152602760209081526040808320938352929052205460ff1690565b34801561088957600080fd5b50610624610898366004614994565b611af9565b3480156108a957600080fd5b506108bd6108b8366004614972565b611b22565b604080516001600160a01b0390931683526020830191909152016105fb565b3480156108e857600080fd5b50610668600d5481565b6106246109003660046146b2565b611bd0565b34801561091157600080fd5b506106686109203660046149af565b60295460009081526023602090815260408083206001600160a01b03909416835292815282822060285483529052205490565b34801561095f57600080fd5b5061062461096e366004614994565b611d8a565b34801561097f57600080fd5b50602854610668565b34801561099457600080fd5b506106246109a33660046149af565b611d92565b3480156109b457600080fd5b5061066860155481565b3480156109ca57600080fd5b5061066860165481565b610624611dc6565b3480156109e857600080fd5b506106246109f73660046146b2565b611e51565b610624610a0a3660046149cc565b611e5e565b348015610a1b57600080fd5b5061066860105481565b610624610a33366004614931565b611f48565b348015610a4457600080fd5b50610624610a533660046146b2565b611f78565b348015610a6457600080fd5b50610a78610a733660046149af565b611f83565b6040516105fb9190614a0d565b348015610a9157600080fd5b50610668610aa0366004614623565b60009081526023602090815260408083206001600160a01b0394909416835292815282822060285483529052205490565b348015610add57600080fd5b5061062461096e3660046149af565b348015610af857600080fd5b50610624610b07366004614a45565b612069565b348015610b1857600080fd5b50602954600090815260208052604090205460ff166105ef565b348015610b3e57600080fd5b50602954610668565b348015610b5357600080fd5b50610624610b623660046148fd565b61208f565b348015610b7357600080fd5b50610668610b82366004614623565b60009081526026602090815260408083206001600160a01b03949094168352929052205490565b348015610bb557600080fd5b50610668610bc43660046146b2565b602a6020526000908152604090205481565b348015610be257600080fd5b50610624610bf1366004614994565b6120b2565b348015610c0257600080fd5b50610624610c113660046146b2565b6120cd565b348015610c2257600080fd5b506106d8610c313660046146b2565b6120da565b348015610c4257600080fd5b50610668610c51366004614623565b60009081526025602090815260408083206001600160a01b03949094168352929052205490565b348015610c8457600080fd5b50610624610c933660046146b2565b6120e5565b348015610ca457600080fd5b50610624610cb3366004614994565b6120f2565b348015610cc457600080fd5b50601f546105ef9062010000900460ff1681565b348015610ce457600080fd5b50610624610cf33660046146b2565b612116565b348015610d0457600080fd5b50610624610d133660046146b2565b612123565b348015610d2457600080fd5b5061066860115481565b348015610d3a57600080fd5b50610668610d49366004614623565b60009081526022602090815260408083206001600160a01b0394909416835292815282822060285483529052205490565b348015610d8657600080fd5b5061066860175481565b348015610d9c57600080fd5b506038546106d8906001600160a01b031681565b348015610dbc57600080fd5b50610624610dcb366004614a61565b5050565b348015610ddb57600080fd5b50610624610dea366004614994565b612161565b348015610dfb57600080fd5b50610624610e0a3660046146b2565b612183565b348015610e1b57600080fd5b50610668610e2a3660046149af565b6121e3565b348015610e3b57600080fd5b50610624612231565b348015610e5057600080fd5b50610668603a5481565b348015610e6657600080fd5b50610624610e75366004614aa2565b612243565b348015610e8657600080fd5b50610668610e953660046149af565b60295460009081526021602090815260408083206001600160a01b03909416835292815282822060285483529052205490565b348015610ed457600080fd5b50610668600f5481565b348015610eea57600080fd5b50610624610ef93660046146b2565b61230e565b348015610f0a57600080fd5b50610f1e610f19366004614ace565b61231b565b60408051951515865260208601949094529284019190915215156060830152608082015260a0016105fb565b348015610f5657600080fd5b50610624610f653660046146b2565b6125a4565b610624610f78366004614b37565b6125b1565b348015610f8957600080fd5b50610624610f983660046146b2565b6125ca565b348015610fa957600080fd5b50610624610fb83660046146b2565b6125d7565b348015610fc957600080fd5b506105ef610fd83660046146b2565b600090815260208052604090205460ff1690565b348015610ff857600080fd5b506106246110073660046146b2565b6125e4565b34801561101857600080fd5b50610624611027366004614b9f565b6125f1565b34801561103857600080fd5b506105ef6110473660046146b2565b6029546000908152602760209081526040808320938352929052205460ff1690565b34801561107557600080fd5b506105ef6110843660046146b2565b601e6020526000908152604090205460ff1681565b3480156110a557600080fd5b506106d8612636565b3480156110ba57600080fd5b506106246110c93660046146b2565b612645565b3480156110da57600080fd5b5061066860125481565b3480156110f057600080fd5b506106686110ff3660046146b2565b60009081526009602052604090205460a01c90565b34801561112057600080fd5b5061062461112f366004614776565b612652565b34801561114057600080fd5b5061062461114f3660046149af565b612672565b34801561116057600080fd5b5061066861116f3660046149af565b60295460009081526024602090815260408083206001600160a01b039094168352929052205490565b3480156111a457600080fd5b5061068b61269c565b3480156111b957600080fd5b506106246111c8366004614994565b6126ab565b3480156111d957600080fd5b50601d546105ef9060ff1681565b3480156111f357600080fd5b50610624611202366004614be5565b6126d1565b34801561121357600080fd5b506106246126f0565b34801561122857600080fd5b506106686112373660046149af565b60295460009081526025602090815260408083206001600160a01b039094168352929052205490565b34801561126c57600080fd5b5061066861127b366004614623565b60009081526021602090815260408083206001600160a01b0394909416835292815282822060285483529052205490565b3480156112b857600080fd5b506106686112c7366004614848565b61270f565b3480156112d857600080fd5b506106246112e7366004614994565b61272e565b6106246112fa366004614c11565b612749565b34801561130b57600080fd5b506033546106d8906001600160a01b031681565b34801561132b57600080fd5b5061062461133a366004614aa2565b61277a565b34801561134b57600080fd5b50610668600e5481565b34801561136157600080fd5b5061068b6113703660046146b2565b6127a2565b34801561138157600080fd5b506106686113903660046146b2565b612867565b3480156113a157600080fd5b506106246113b03660046146b2565b612872565b3480156113c157600080fd5b506105ef6113d0366004614c90565b61287f565b3480156113e157600080fd5b50602b54610668565b3480156113f657600080fd5b506106d86114053660046146b2565b6000908152600960205260409020544260a01b81110290565b34801561142a57600080fd5b50610668603b5481565b34801561144057600080fd5b5061062461144f366004614972565b61289b565b34801561146057600080fd5b5061068b61146f3660046146b2565b6128e0565b34801561148057600080fd5b5061062461148f366004614a61565b612a45565b3480156114a057600080fd5b506106246114af3660046146b2565b612a57565b3480156114c057600080fd5b506106246114cf366004614994565b612a64565b3480156114e057600080fd5b506105ef6114ef366004614c90565b612a7f565b34801561150057600080fd5b50601f546105ef90610100900460ff1681565b34801561151f57600080fd5b5061062461152e366004614ceb565b612a90565b34801561153f57600080fd5b5061066860195481565b34801561155557600080fd5b506106246115643660046146b2565b612aa2565b34801561157557600080fd5b50610624611584366004614d10565b612aaf565b34801561159557600080fd5b50601f546105ef906301000000900460ff1681565b3480156115b657600080fd5b506106246115c53660046149af565b612b7e565b3480156115d657600080fd5b506106686115e5366004614848565b612bb2565b3480156115f657600080fd5b5061068b612bc4565b34801561160b57600080fd5b50610624612bce565b34801561162057600080fd5b50601f546105ef9060ff1681565b34801561163a57600080fd5b506105ef611649366004614d5e565b6001600160a01b03918216600090815260086020908152604080832093909416825291909152205460ff1690565b34801561168357600080fd5b506031546106d8906001600160a01b031681565b6106246116a5366004614d8c565b612c27565b3480156116b657600080fd5b506116d36116c53660046146b2565b506000908190819081908190565b6040805195865260208601949094529284019190915215156060830152608082015260a0016105fb565b34801561170957600080fd5b506106246117183660046146b2565b612c39565b34801561172957600080fd5b506106246117383660046149af565b612c46565b34801561174957600080fd5b506106686117583660046149af565b60295460009081526026602090815260408083206001600160a01b039094168352929052205490565b34801561178d57600080fd5b5061066861179c3660046149af565b60295460009081526022602090815260408083206001600160a01b03909416835292815282822060285483529052205490565b3480156117db57600080fd5b50603c546105ef9060ff1681565b3480156117f557600080fd5b506105ef611804366004614c90565b612cbc565b600061181482612ccd565b80611823575061182382612d1b565b80611832575061183282612d43565b80611841575061184182612d78565b92915050565b61184f612d9d565b610dcb8282612dfc565b60606003805461186890614dd7565b80601f016020809104026020016040519081016040528092919081815260200182805461189490614dd7565b80156118e15780601f106118b6576101008083540402835291602001916118e1565b820191906000526020600020905b8154815290600101906020018083116118c457829003601f168201915b5050505050905090565b6118f3612d9d565b601755565b600061190382612ef5565b611920576040516333d1c03960e21b815260040160405180910390fd5b506000908152600760205260409020546001600160a01b031690565b81603c5460ff16156119515761195181612f2a565b61195b8383612f6e565b505050565b611968612d9d565b6000818152601c6020526040902061195b8382614e57565b600061198b60015490565b905090565b611998612d9d565b602e55565b6119a5612d9d565b6032546040516331a9108f60e11b8152600481018590526000916001600160a01b031690636352211e90602401602060405180830381865afa1580156119ef573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611a139190614f16565b6001600160a01b031603611a425760405162461bcd60e51b8152600401611a3990614f33565b60405180910390fd5b600090815260276020908152604080832094835293905291909120805460ff1916911515919091179055565b600080611a818a8a8a8a8a8a8a8a61300e565b509150505b98975050505050505050565b600254600154036000190190565b611aa8612d9d565b6029546000908152601b60205260409020610dcb8282614e57565b826001600160a01b0381163314611ae857603c5460ff1615611ae857611ae833612f2a565b611af3848484613086565b50505050565b611b01612d9d565b60295460009081526020805260409020805460ff1916911515919091179055565b6000828152600c602090815260408083208151808301909252546001600160a01b038116808352600160a01b9091046001600160601b0316928201929092528291611b97575060408051808201909152600b546001600160a01b0381168252600160a01b90046001600160601b031660208201525b602081015160009061271090611bb6906001600160601b031687614f74565b611bc09190614f8b565b91519350909150505b9250929050565b611bd8613224565b601f5460ff16611c215760405162461bcd60e51b81526020600482015260146024820152731c1d589b1a58d35a5b9d081a5cc814185d5cd95960621b6044820152606401611a39565b806014541015611c815760405162461bcd60e51b815260206004820152602560248201527f7075626c69634d696e743a204f766572206d6178206d696e7473207065722077604482015264185b1b195d60da1b6064820152608401611a39565b6029546000908152602460209081526040808320338452909152902054611ca9908290614fad565b6014541015611cf85760405162461bcd60e51b815260206004820152601b60248201527a165bdd481a185d99481b9bc81c1d589b1a58d35a5b9d081b19599d602a1b6044820152606401611a39565b611d018161327d565b323314611d505760405162461bcd60e51b815260206004820152601f60248201527f7075626c69634d696e743a2043616c6c657220697320636f6e74726163742e006044820152606401611a39565b6029546000908152602460209081526040808320338085529252909120805483019055611d7d90826132a9565b611d876001600a55565b50565b611d87612d9d565b611d9a612d9d565b603180546001600160a01b039092166001600160a01b0319928316811790915560328054909216179055565b611dce612d9d565b611dd6613224565b60405173f097ab883dbfb864671ed7251af91f9d0791415590600090829047908381818185875af1925050503d8060008114611e2e576040519150601f19603f3d011682016040523d82523d6000602084013e611e33565b606091505b50508091505080611e4357600080fd5b5050611e4f6001600a55565b565b611e59612d9d565b601555565b611e66613224565b6000611e788989898989898989613305565b9050611e8a898989898989898961361f565b80600003611ec357602954600090815260216020908152604080832033845282528083206028548452909152902080548a019055611f29565b80600103611efc57602954600090815260226020908152604080832033845282528083206028548452909152902080548a019055611f29565b602954600090815260236020908152604080832033845282528083206028548452909152902080548a0190555b611f33338a6132a9565b50611f3e6001600a55565b5050505050505050565b826001600160a01b0381163314611f6d57603c5460ff1615611f6d57611f6d33612f2a565b611af3848484613666565b611d87816001613681565b60606000806000611f93856121e3565b90506000816001600160401b03811115611faf57611faf6146cb565b604051908082528060200260200182016040528015611fd8578160200160208202803683370190505b509050611fe361456f565b60015b83861461205d57611ff6816137c2565b915081604001516120555781516001600160a01b03161561201657815194505b876001600160a01b0316856001600160a01b031603612055578083878060010198508151811061204857612048614fc0565b6020026020010181815250505b600101611fe6565b50909695505050505050565b612071612d9d565b60009081526020805260409020805460ff1916911515919091179055565b612097612d9d565b6029546000908152601c60205260409020610dcb8282614e57565b6120ba612d9d565b601f805460ff1916911515919091179055565b6120d5612d9d565b601255565b6000611841826137e2565b6120ed612d9d565b601855565b6120fa612d9d565b601f8054911515620100000262ff000019909216919091179055565b61211e612d9d565b600f55565b61212b612d9d565b6040518181527ff8e1a15aba9398e019f0b49df1a4fde98ee17ae345cb5f6b5e2c27f5033e8ce79060200160405180910390a150565b612169612d9d565b601f80549115156101000261ff0019909216919091179055565b61218b612d9d565b80612194611a92565b11156121de5760405162461bcd60e51b81526020600482015260196024820152782637bbb2b9103a3430b7102fb1bab93932b73a24b73232bc1760391b6044820152606401611a39565b601955565b60006001600160a01b03821661220c576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b03166000908152600660205260409020546001600160401b031690565b612239612d9d565b611e4f6000613858565b61224b612d9d565b6032546040516331a9108f60e11b8152600481018490526000916001600160a01b031690636352211e90602401602060405180830381865afa158015612295573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906122b99190614f16565b6001600160a01b0316036122df5760405162461bcd60e51b8152600401611a3990614f33565b602954600090815260276020908152604080832094835293905291909120805460ff1916911515919091179055565b612316612d9d565b600e55565b6000806000806000896000036123ef5761233a8989602c548a8a6138a8565b156123975750506000805160206152e783398151915254600d5460295460009081526021602090815260408083206001600160a01b038d1684528252808320602854845290915290205460ff909216945092509050600186612597565b50506000805160206152e783398151915254600d5460295460009081526021602090815260408083206001600160a01b038d1684528252808320602854845290915281205460ff909316955090935090915080612597565b896001036124bb576124068989602d548a8a6138a8565b1561246357505060008051602061524783398151915254600e5460295460009081526022602090815260408083206001600160a01b038d1684528252808320602854845290915290205460ff909216945092509050600186612597565b505060008051602061524783398151915254600e5460295460009081526022602090815260408083206001600160a01b038d1684528252808320602854845290915281205460ff909316955090935090915080612597565b89600203612587576124d28989602e548a8a6138a8565b1561252f5750506000805160206152c783398151915254600f5460295460009081526023602090815260408083206001600160a01b038d1684528252808320602854845290915290205460ff909216945092509050600186612597565b50506000805160206152c783398151915254600f5460295460009081526023602090815260408083206001600160a01b038d1684528252808320602854845290915281205460ff909316955090935090915080612597565b5060009350839250829150819050805b9550955095509550959050565b6125ac612d9d565b602c55565b6125b9613224565b6125c36001600a55565b5050505050565b6125d2612d9d565b601155565b6125df612d9d565b601455565b6125ec612d9d565b601655565b6125f9612d9d565b61260282612ef5565b61261e5760405162461bcd60e51b8152600401611a3990614fd6565b6000828152602f6020526040902061195b8282614e57565b6000546001600160a01b031690565b61264d612d9d565b600d55565b61265a612d9d565b6000818152601b6020526040902061195b8382614e57565b61267a612d9d565b601a80546001600160a01b0319166001600160a01b0392909216919091179055565b60606004805461186890614dd7565b6126b3612d9d565b601a8054911515600160a01b0260ff60a01b19909216919091179055565b81603c5460ff16156126e6576126e681612f2a565b61195b838361391d565b6126f8612d9d565b602880549060006127088361500d565b9190505550565b60006127218989898989898989613989565b9998505050505050505050565b612736612d9d565b603c805460ff1916911515919091179055565b836001600160a01b038116331461276e57603c5460ff161561276e5761276e33612f2a565b6125c3858585856139fa565b612782612d9d565b6000918252601e6020526040909120805460ff1916911515919091179055565b60606127ad82612ef5565b6127c95760405162461bcd60e51b8152600401611a3990614fd6565b6000828152602f6020526040902080546127e290614dd7565b80601f016020809104026020016040519081016040528092919081815260200182805461280e90614dd7565b801561285b5780601f106128305761010080835404028352916020019161285b565b820191906000526020600020905b81548152906001019060200180831161283e57829003601f168201915b50505050509050919050565b600061184182613a3e565b61287a612d9d565b602d55565b60006128908585602d5486866138a8565b90505b949350505050565b6128a3612d9d565b60408051838152602081018390527f6bd5c950a8d8df17f772f5af37cb3655737899cbf903264b9795592da439661c910160405180910390a15050565b60606128eb82612ef5565b6129075760405162461bcd60e51b8152600401611a3990614fd6565b600061291283613a3e565b600081815260208052604081205491925060ff909116151590036129cf576000818152601b60205260409020805461294990614dd7565b80601f016020809104026020016040519081016040528092919081815260200182805461297590614dd7565b80156129c25780601f10612997576101008083540402835291602001916129c2565b820191906000526020600020905b8154815290600101906020018083116129a557829003601f168201915b5050505050915050919050565b6000838152602f6020526040902080546129e890614dd7565b159050612a08576000838152602f60205260409020805461294990614dd7565b612a1181613af7565b612a1a84613b14565b6030604051602001612a2e93929190615026565b604051602081830303815290604052915050919050565b612a4d613224565b610dcb6001600a55565b612a5f612d9d565b601355565b612a6c612d9d565b601d805460ff1916911515919091179055565b60006128908585602c5486866138a8565b612a98612d9d565b610dcb81836132a9565b612aaa612d9d565b601055565b6000612aba846120da565b9050336001600160a01b03821614612b0b57612ad68133611649565b612b0b5733612ae4856118f8565b6001600160a01b031614612b0b576040516309e3bb1d60e31b815260040160405180910390fd5b6000848152600960209081526040918290206001600160a01b03861660a086901b600160a01b600160e01b0316811790915591516001600160401b038516815286917f4e06b4e7000e659094299b3533b47b6aa8ad048e95e872d23d1f4ee55af89cfe910160405180910390a350505050565b612b86612d9d565b603380546001600160a01b039092166001600160a01b0319928316811790915560348054909216179055565b60006127218989898989898989613ba6565b606061198b613c08565b612bd6612d9d565b601d805460ff19169055601f805462ffffff191690556000602c819055602d819055602e8190556029805491612c0b8361500d565b90915550506001546029546000908152602a6020526040902055565b612c2f613224565b61195b6001600a55565b612c41612d9d565b602b55565b612c4e612d9d565b6001600160a01b038116612cb35760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401611a39565b611d8781613858565b60006128908585602e5486866138a8565b60006301ffc9a760e01b6001600160e01b031983161480612cfe57506380ac58cd60e01b6001600160e01b03198316145b806118415750506001600160e01b031916635b5e139f60e01b1490565b6000612d2682612ccd565b806118415750506001600160e01b031916632b424ad760e21b1490565b60006001600160e01b0319821663152a902d60e11b148061184157506301ffc9a760e01b6001600160e01b0319831614611841565b60006001600160e01b03198216632483248360e11b1480611841575061184182612d43565b33612da6612636565b6001600160a01b031614611e4f5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401611a39565b6127106001600160601b0382161115612e6a5760405162461bcd60e51b815260206004820152602a60248201527f455243323938313a20726f79616c7479206665652077696c6c206578636565646044820152692073616c65507269636560b01b6064820152608401611a39565b6001600160a01b038216612ebc5760405162461bcd60e51b815260206004820152601960248201527822a921991c9c189d1034b73b30b634b2103932b1b2b4bb32b960391b6044820152606401611a39565b604080518082019091526001600160a01b039092168083526001600160601b039091166020909201829052600160a01b90910217600b55565b600081600111158015612f09575060015482105b8015611841575050600090815260056020526040902054600160e01b161590565b69c617113400112233445560005230601a5280603a52600080604460166daaeb6d7670e522a718067333cd4e5afa612f66573d6000803e3d6000fd5b6000603a5250565b6000612f79826120da565b9050336001600160a01b03821614612fb257612f958133611649565b612fb2576040516367d9dca160e11b815260040160405180910390fd5b60008281526007602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6000806130208a8a602c548b8b6138a8565b156130315750600190506000613079565b6130408a8a602d5489896138a8565b1561305057506001905080613079565b61305f8a8a602e5487876138a8565b156130705750600190506002613079565b506000905061270f5b9850989650505050505050565b6000613091826137e2565b9050836001600160a01b0316816001600160a01b0316146130c45760405162a1148160e81b815260040160405180910390fd5b600082815260076020526040902080546130f08187335b6001600160a01b039081169116811491141790565b61311b576130fe8633611649565b61311b57604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b03851661314257604051633a954ecd60e21b815260040160405180910390fd5b61314f8686866001613c88565b801561315a57600082555b6001600160a01b0386811660009081526006602052604080822080546000190190559187168152208054600101905561319785600160e11b613e64565b600085815260056020526040812091909155600160e11b841690036131ec576001840160008181526005602052604081205490036131ea5760015481146131ea5760008181526005602052604090208490555b505b83856001600160a01b0316876001600160a01b03166000805160206152a783398151915260405160405180910390a45b505050505050565b6002600a54036132765760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401611a39565b6002600a55565b8060105461328b9190614f74565b3414611d875760405162461bcd60e51b8152600401611a39906150c6565b6019546132b4611a92565b6132be9083614fad565b11156132fb5760405162461bcd60e51b815260206004820152600c60248201526b4e6f206d6f7265204e46547360a01b6044820152606401611a39565b610dcb8282613e79565b601d5460009060ff166133545760405162461bcd60e51b81526020600482015260176024820152761dda1a5d195b1a5cdd135a5b9d081a5cc814185d5cd959604a1b6044820152606401611a39565b600080613367338b8b8b8b8b8b8b61300e565b91509150816133b35760405162461bcd60e51b8152602060048201526018602482015277596f7520617265206e6f742077686974656c69737465642160401b6044820152606401611a39565b6000818152601e602052604090205460ff16156134125760405162461bcd60e51b815260206004820152601f60248201527f4e6f772070617274206f662077686974656c6973742064697361626c65642e006044820152606401611a39565b6000613424338c8c8c8c8c8c8c613ba6565b90508b8110156134875760405162461bcd60e51b815260206004820152602860248201527f77686974656c6973744d696e743a204f766572206d6178206d696e74732070656044820152671c881dd85b1b195d60c21b6064820152608401611a39565b81600003613515576029546000908152602160209081526040808320338452825280832060285484529091529020546134c1908d90614fad565b8110156135105760405162461bcd60e51b815260206004820152601e60248201527f596f752068617665206e6f2077686974656c6973744d696e74206c65667400006044820152606401611a39565b611a81565b8160010361359e5760295460009081526022602090815260408083203384528252808320602854845290915290205461354f908d90614fad565b8110156135105760405162461bcd60e51b815260206004820152601f60248201527f596f752068617665206e6f2077686974656c6973744d696e7431206c656674006044820152606401611a39565b6029546000908152602360209081526040808320338452825280832060285484529091529020546135d0908d90614fad565b811015611a815760405162461bcd60e51b815260206004820152601f60248201527f596f752068617665206e6f2077686974656c6973744d696e7432206c656674006044820152606401611a39565b60006136313389898989898989613989565b905061363d8982614f74565b341461365b5760405162461bcd60e51b8152600401611a39906150c6565b505050505050505050565b61195b83838360405180602001604052806000815250612749565b600061368c836137e2565b9050806000806136aa86600090815260076020526040902080549091565b9150915084156136ea576136bf8184336130db565b6136ea576136cd8333611649565b6136ea57604051632ce44b5f60e11b815260040160405180910390fd5b6136f8836000886001613c88565b801561370357600082555b6001600160a01b038316600090815260066020526040902080546001600160801b0301905561373683600360e01b613e64565b600087815260056020526040812091909155600160e11b8516900361378b576001860160008181526005602052604081205490036137895760015481146137895760008181526005602052604090208590555b505b60405186906000906001600160a01b038616906000805160206152a7833981519152908390a4505060028054600101905550505050565b6137ca61456f565b60008281526005602052604090205461184190613e93565b6000818060011161383f5760015481101561383f5760008181526005602052604081205490600160e01b8216900361383d575b80600003613836575060001901600081815260056020526040902054613815565b9392505050565b505b604051636f96cda160e11b815260040160405180910390fd5b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b60006013548511156138bc57506000613914565b6040516001600160601b0319606088901b1660208201526034810186905260009060540160408051601f19818403018152919052805160209091012090508415801590613910575061391084848784613ed6565b9150505b95945050505050565b3360008181526008602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b600061399a8989602c548a8a6138a8565b156139a85750600d54611a86565b6139b78989602d5488886138a8565b156139c55750600e54611a86565b6139d48989602e5486866138a8565b156139e25750600f54611a86565b5069021e0c0013070adc000098975050505050505050565b613a05848484611ac3565b6001600160a01b0383163b15611af357613a2184848484613eee565b611af3576040516368d2bf6b60e11b815260040160405180910390fd5b6000613a4982612ef5565b613aa05760405162461bcd60e51b815260206004820152602260248201527f536561736f6e20717565727920666f72206e6f6e6578697374656e7420746f6b60448201526132b760f11b6064820152608401611a39565b6029546402540be400905b6000818152602a60205260409020548410801590613ac857508184105b15613ad4579392505050565b6000818152602a6020526040902054915080613aef816150f8565b915050613aab565b6000818152601c602052604090208054606091906127e290614dd7565b60606000613b2183613fd6565b60010190506000816001600160401b03811115613b4057613b406146cb565b6040519080825280601f01601f191660200182016040528015613b6a576020820181803683370190505b5090508181016020015b600019016f181899199a1a9b1b9c1cb0b131b232b360811b600a86061a8153600a8504945084613b7457509392505050565b6000613bb78989602c548a8a6138a8565b15613bc3575086611a86565b613bd28989602d5488886138a8565b15613bde575086611a86565b613bed8989602e5486866138a8565b15613bf9575086611a86565b50600098975050505050505050565b6060600080613c1981612710611b22565b91509150613c62613c2982613b14565b613c3d846001600160a01b031660146140ac565b604051602001613c4e92919061510f565b604051602081830303815290604052614247565b604051602001613c729190615194565b6040516020818303038152906040529250505090565b601a54600160a01b900460ff161580613cb95750613ca4612636565b6001600160a01b0316336001600160a01b0316145b80613ccb57506001600160a01b038416155b80613cdd57506001600160a01b038316155b613d405760405162461bcd60e51b815260206004820152602e60248201527f534254206d6f646520456e61626c65643a20746f6b656e207472616e7366657260448201526d103bb434b632903830bab9b2b21760911b6064820152608401611a39565b815b613d4c8284614fad565b811015613e5e57601f546301000000900460ff161580613d785750600081815260356020526040902054155b613dd75760405162461bcd60e51b815260206004820152602a60248201527f5374616b696e67206e6f772e3a20746f6b656e207472616e73666572207768696044820152693632903830bab9b2b21760b11b6064820152608401611a39565b60008181526035602052604090205415613e4c57600081815260356020526040812054613e0490426151d9565b905080603660008481526020019081526020016000206000828254613e299190614fad565b909155505050600081815260356020908152604080832083905560379091528120555b80613e568161500d565b915050613d42565b50611af3565b4260a01b176001600160a01b03919091161790565b610dcb828260405180602001604052806000815250614399565b613e9b61456f565b6001600160a01b03821681526001600160401b0360a083901c166020820152600160e01b82161515604082015260e89190911c606082015290565b600082613ee48686856143ff565b1495945050505050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a0290613f239033908990889088906004016151ec565b6020604051808303816000875af1925050508015613f5e575060408051601f3d908101601f19168201909252613f5b91810190615229565b60015b613fbc573d808015613f8c576040519150601f19603f3d011682016040523d82523d6000602084013e613f91565b606091505b508051600003613fb4576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050612893565b60008072184f03e93ff9f4daa797ed6e38ed64bf6a1f0160401b83106140155772184f03e93ff9f4daa797ed6e38ed64bf6a1f0160401b830492506040015b6904ee2d6d415b85acef8160201b831061403f576904ee2d6d415b85acef8160201b830492506020015b662386f26fc10000831061405d57662386f26fc10000830492506010015b6305f5e1008310614075576305f5e100830492506008015b612710831061408957612710830492506004015b6064831061409b576064830492506002015b600a83106118415760010192915050565b606060006140bb836002614f74565b6140c6906002614fad565b6001600160401b038111156140dd576140dd6146cb565b6040519080825280601f01601f191660200182016040528015614107576020820181803683370190505b509050600360fc1b8160008151811061412257614122614fc0565b60200101906001600160f81b031916908160001a905350600f60fb1b8160018151811061415157614151614fc0565b60200101906001600160f81b031916908160001a9053506000614175846002614f74565b614180906001614fad565b90505b60018111156141f8576f181899199a1a9b1b9c1cb0b131b232b360811b85600f16601081106141b4576141b4614fc0565b1a60f81b8282815181106141ca576141ca614fc0565b60200101906001600160f81b031916908160001a90535060049490941c936141f1816150f8565b9050614183565b5083156138365760405162461bcd60e51b815260206004820181905260248201527f537472696e67733a20686578206c656e67746820696e73756666696369656e746044820152606401611a39565b6060815160000361426657505060408051602081019091526000815290565b600060405180606001604052806040815260200161526760409139905060006003845160026142959190614fad565b61429f9190614f8b565b6142aa906004614f74565b6001600160401b038111156142c1576142c16146cb565b6040519080825280601f01601f1916602001820160405280156142eb576020820181803683370190505b509050600182016020820185865187015b80821015614357576003820191508151603f8160121c168501518453600184019350603f81600c1c168501518453600184019350603f8160061c168501518453600184019350603f81168501518453506001830192506142fc565b505060038651066001811461437357600281146143865761438e565b603d6001830353603d600283035361438e565b603d60018303535b509195945050505050565b6143a3838361444b565b6001600160a01b0383163b1561195b576001548281035b6143cd6000868380600101945086613eee565b6143ea576040516368d2bf6b60e11b815260040160405180910390fd5b8181106143ba5781600154146125c357600080fd5b600081815b848110156144425761442e8287878481811061442257614422614fc0565b90506020020135614540565b91508061443a8161500d565b915050614404565b50949350505050565b60015460008290036144705760405163b562e8dd60e01b815260040160405180910390fd5b61447d6000848385613c88565b6001600160a01b038316600090815260066020526040902080546001600160401b0184020190556144b4836001841460e11b613e64565b6000828152600560205260408120919091556001600160a01b0384169083830190839083906000805160206152a78339815191528180a4600183015b81811461451657808360006000805160206152a7833981519152600080a46001016144f0565b508160000361453757604051622e076360e81b815260040160405180910390fd5b60015550505050565b600081831061455c576000828152602084905260409020613836565b6000838152602083905260409020613836565b60408051608081018252600080825260208201819052918101829052606081019190915290565b6001600160e01b031981168114611d8757600080fd5b6000602082840312156145be57600080fd5b813561383681614596565b6001600160a01b0381168114611d8757600080fd5b600080604083850312156145f157600080fd5b82356145fc816145c9565b915060208301356001600160601b038116811461461857600080fd5b809150509250929050565b6000806040838503121561463657600080fd5b8235614641816145c9565b946020939093013593505050565b60005b8381101561466a578181015183820152602001614652565b50506000910152565b6000815180845261468b81602086016020860161464f565b601f01601f19169290920160200192915050565b6020815260006138366020830184614673565b6000602082840312156146c457600080fd5b5035919050565b634e487b7160e01b600052604160045260246000fd5b60006001600160401b03808411156146fb576146fb6146cb565b604051601f8501601f19908116603f01168101908282118183101715614723576147236146cb565b8160405280935085815286868601111561473c57600080fd5b858560208301376000602087830101525050509392505050565b600082601f83011261476757600080fd5b613836838335602085016146e1565b6000806040838503121561478957600080fd5b82356001600160401b0381111561479f57600080fd5b6147ab85828601614756565b95602094909401359450505050565b803580151581146147ca57600080fd5b919050565b6000806000606084860312156147e457600080fd5b833592506147f4602085016147ba565b9150604084013590509250925092565b60008083601f84011261481657600080fd5b5081356001600160401b0381111561482d57600080fd5b6020830191508360208260051b8501011115611bc957600080fd5b60008060008060008060008060a0898b03121561486457600080fd5b883561486f816145c9565b97506020890135965060408901356001600160401b038082111561489257600080fd5b61489e8c838d01614804565b909850965060608b01359150808211156148b757600080fd5b6148c38c838d01614804565b909650945060808b01359150808211156148dc57600080fd5b506148e98b828c01614804565b999c989b5096995094979396929594505050565b60006020828403121561490f57600080fd5b81356001600160401b0381111561492557600080fd5b61289384828501614756565b60008060006060848603121561494657600080fd5b8335614951816145c9565b92506020840135614961816145c9565b929592945050506040919091013590565b6000806040838503121561498557600080fd5b50508035926020909101359150565b6000602082840312156149a657600080fd5b613836826147ba565b6000602082840312156149c157600080fd5b8135613836816145c9565b60008060008060008060008060a0898b0312156149e857600080fd5b883597506020890135965060408901356001600160401b038082111561489257600080fd5b6020808252825182820181905260009190848201906040850190845b8181101561205d57835183529284019291840191600101614a29565b60008060408385031215614a5857600080fd5b614641836147ba565b60008060208385031215614a7457600080fd5b82356001600160401b03811115614a8a57600080fd5b614a9685828601614804565b90969095509350505050565b60008060408385031215614ab557600080fd5b82359150614ac5602084016147ba565b90509250929050565b600080600080600060808688031215614ae657600080fd5b853594506020860135614af8816145c9565b93506040860135925060608601356001600160401b03811115614b1a57600080fd5b614b2688828901614804565b969995985093965092949392505050565b600080600080600060608688031215614b4f57600080fd5b8535945060208601356001600160401b0380821115614b6d57600080fd5b614b7989838a01614804565b90965094506040880135915080821115614b9257600080fd5b50614b2688828901614804565b60008060408385031215614bb257600080fd5b8235915060208301356001600160401b03811115614bcf57600080fd5b614bdb85828601614756565b9150509250929050565b60008060408385031215614bf857600080fd5b8235614c03816145c9565b9150614ac5602084016147ba565b60008060008060808587031215614c2757600080fd5b8435614c32816145c9565b93506020850135614c42816145c9565b92506040850135915060608501356001600160401b03811115614c6457600080fd5b8501601f81018713614c7557600080fd5b614c84878235602084016146e1565b91505092959194509250565b60008060008060608587031215614ca657600080fd5b8435614cb1816145c9565b93506020850135925060408501356001600160401b03811115614cd357600080fd5b614cdf87828801614804565b95989497509550505050565b60008060408385031215614cfe57600080fd5b823591506020830135614618816145c9565b600080600060608486031215614d2557600080fd5b833592506020840135614d37816145c9565b915060408401356001600160401b0381168114614d5357600080fd5b809150509250925092565b60008060408385031215614d7157600080fd5b8235614d7c816145c9565b91506020830135614618816145c9565b600080600060408486031215614da157600080fd5b8335925060208401356001600160401b03811115614dbe57600080fd5b614dca86828701614804565b9497909650939450505050565b600181811c90821680614deb57607f821691505b602082108103614e0b57634e487b7160e01b600052602260045260246000fd5b50919050565b601f82111561195b57600081815260208120601f850160051c81016020861015614e385750805b601f850160051c820191505b8181101561321c57828155600101614e44565b81516001600160401b03811115614e7057614e706146cb565b614e8481614e7e8454614dd7565b84614e11565b602080601f831160018114614eb95760008415614ea15750858301515b600019600386901b1c1916600185901b17855561321c565b600085815260208120601f198616915b82811015614ee857888601518255948401946001909101908401614ec9565b5085821015614f065787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b600060208284031215614f2857600080fd5b8151613836816145c9565b6020808252601190820152703737b732bc34b9ba32b73a103a37b5b2b760791b604082015260600190565b634e487b7160e01b600052601160045260246000fd5b808202811582820484141761184157611841614f5e565b600082614fa857634e487b7160e01b600052601260045260246000fd5b500490565b8082018082111561184157611841614f5e565b634e487b7160e01b600052603260045260246000fd5b6020808252601f908201527f55524920717565727920666f72206e6f6e6578697374656e7420746f6b656e00604082015260600190565b60006001820161501f5761501f614f5e565b5060010190565b6000845160206150398285838a0161464f565b85519184019161504c8184848a0161464f565b855492019160009061505d81614dd7565b60018281168015615075576001811461508a576150b6565b60ff19841687528215158302870194506150b6565b896000528560002060005b848110156150ae57815489820152908301908701615095565b505082870194505b50929a9950505050505050505050565b602080825260189082015277115512081d985b1d59481a5cc81b9bdd0818dbdc9c9958dd60421b604082015260600190565b60008161510757615107614f5e565b506000190190565b7a3d9139b2b63632b92fb332b2afb130b9b4b9afb837b4b73a39911d60291b8152825160009061514681601b85016020880161464f565b721610113332b2afb932b1b4b834b2b73a111d1160691b601b91840191820152835161517981602e84016020880161464f565b61227d60f01b602e9290910191820152603001949350505050565b7f646174613a6170706c69636174696f6e2f6a736f6e3b6261736536342c0000008152600082516151cc81601d85016020870161464f565b91909101601d0192915050565b8181038181111561184157611841614f5e565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061521f90830184614673565b9695505050505050565b60006020828403121561523b57600080fd5b81516138368161459656fe873299c6a6c39b8b92f01922bb622df4a3236ea2876aac2da76f6c092cf7e98f4142434445464748494a4b4c4d4e4f505152535455565758595a6162636465666768696a6b6c6d6e6f707172737475767778797a303132333435363738392b2fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8a1ea6ccfdf9f988bdc16303c81231f9b192785454b34880c28e5c30362354c565ce8396b736f5da9d881cc6fbcb11ef9721292dc41ec8c40879fd9edea5744da2646970667358221220aa334ee0e43ca2c9e41e4564d549d0c5cc5333bb8d94f640e8203477d52d05f664736f6c63430008120033

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

000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000013496e76697369626c6520416e6f6e796d6f75730000000000000000000000000000000000000000000000000000000000000000000000000000000000000000024941000000000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : _name (string): Invisible Anonymous
Arg [1] : _symbol (string): IA

-----Encoded View---------------
6 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000040
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000013
Arg [3] : 496e76697369626c6520416e6f6e796d6f757300000000000000000000000000
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000002
Arg [5] : 4941000000000000000000000000000000000000000000000000000000000000


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.