ETH Price: $3,379.69 (+0.88%)
Gas: 8 Gwei

Token

Togo bot mint pass (ToGo)
 

Overview

Max Total Supply

186 ToGo

Holders

53

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Filtered by Token Holder
5678998765.eth
Balance
3 ToGo
0x493df0ed62fba585924b8d5fb1db903974cb9982
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:
Togo

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license
File 1 of 14 : Togo.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.7;

import "erc721a/contracts/ERC721A.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/utils/Strings.sol";
import "@openzeppelin/contracts/security/Pausable.sol";
import "@openzeppelin/contracts/utils/cryptography/MerkleProof.sol";


contract Togo is ERC721A,Ownable,Pausable {
    using Strings for uint256;

    string  public baseTokenURI;
    string  public defaultTokenURI;
    uint256 public maxSupply;
    uint256 public publicSalePrice;
    uint8 public accountFree;
    mapping(address => uint256) public usermint;
    mapping(address => bool) public allowlistresult;

    bytes32 private _merkleRoot ;
    address payable public payMentPotatoz;

    constructor(
        string memory _baseTokenURI,
        uint   _maxSupply,
        uint   _publicSalePrice,
        uint8   _accountFree,
        bytes32 _MerkleRoot,
        address _paymentAddress
    ) ERC721A("Togo bot mint pass", "ToGo") {
        baseTokenURI = _baseTokenURI;
        maxSupply = _maxSupply;
        publicSalePrice = _publicSalePrice;
        accountFree = _accountFree;
        payMentPotatoz = payable(_paymentAddress);
        _merkleRoot = _MerkleRoot;
        _pause();
    }

    modifier callerIsUser() {
        require(tx.origin == msg.sender, "Must from real wallet address");
        _;
    }

    function mint(uint256 _quantity) external callerIsUser payable whenNotPaused  {
        require(_quantity > 0, "Invalid quantity");
        require(_quantity <= 10, "Invalid quantity");
        require(totalSupply() + _quantity <= maxSupply, "Exceed supply");

        uint256 _remainFreeQuantity = 0;
        if (accountFree > usermint[msg.sender] ) {
            _remainFreeQuantity = accountFree - usermint[msg.sender];
        }

        uint256 _needPayPrice = 0;
        if (_quantity > _remainFreeQuantity) {
            _needPayPrice = (_quantity - _remainFreeQuantity) * publicSalePrice;
        }

        require(msg.value >= _needPayPrice, "Ether is not enough");
        if (msg.value>0) {
            Address.sendValue(payMentPotatoz, msg.value/100*50);
        }
        usermint[msg.sender]+=_quantity;
        _safeMint(msg.sender, _quantity);
    }


    function allowListMint(bytes32[] calldata merkleProof) external callerIsUser payable whenNotPaused {
        bytes32 leaf = keccak256(abi.encodePacked(msg.sender));
        require(MerkleProof.verify(merkleProof, _merkleRoot, leaf), "Invalid merkle proof");
        require(!allowlistresult[msg.sender], "This address has been allowlisted mint");
        allowlistresult[msg.sender]=true;
        _safeMint(msg.sender, 1);
    }


    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        require(_exists(tokenId), "ERC721Metadata: Nonexistent token");
        string memory currentBaseURI = _baseURI();
        return
        bytes(currentBaseURI).length > 0 ? string(
            abi.encodePacked(
                currentBaseURI,
                tokenId.toString(),
                ".json"
            )
        ) : defaultTokenURI;
    }

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

    function setBaseURI(string calldata _baseTokenURI) external onlyOwner {
        baseTokenURI = _baseTokenURI;
    }

    function setDefaultURI(string calldata _defaultURI) external onlyOwner {
        defaultTokenURI = _defaultURI;
    }

    function setPublicPrice(uint256 mintprice) external onlyOwner {
        publicSalePrice = mintprice;
    }

    function setAccountFree(uint8 quantity) external onlyOwner {
        accountFree = quantity;
    }

    function setMaxSupply(uint256 quantity) external onlyOwner {
        maxSupply = quantity;
    }

    function setMerkleRoot(bytes32 merkleRoot) external onlyOwner {
        _merkleRoot = merkleRoot;
    }

    function openMint() public onlyOwner {
        _unpause();
    }

    function closeMint() public onlyOwner {
        _pause();
    }

    function walletOfOwner(address _owner) public view returns (uint256[] memory) {
        uint256 ownerTokenCount = balanceOf(_owner);
        uint256[] memory ownedTokenIds = new uint256[](ownerTokenCount);
        uint256 currentTokenId = 0;
        uint256 ownedTokenIndex = 0;
        address latestOwnerAddress;

        while (ownedTokenIndex < ownerTokenCount && currentTokenId < _currentIndex) {
            TokenOwnership memory ownership = _ownerships[currentTokenId];

            if (!ownership.burned) {
                if (ownership.addr != address(0)) {
                    latestOwnerAddress = ownership.addr;
                }

                if (latestOwnerAddress == _owner) {
                    ownedTokenIds[ownedTokenIndex] = currentTokenId;

                    ownedTokenIndex++;
                }
            }

            currentTokenId++;
        }

        return ownedTokenIds;
    }

    function marketMint(address[] memory marketmintaddress,uint256[] memory mintquantity) public payable onlyOwner whenNotPaused {
        for (uint256 i = 0; i < marketmintaddress.length; i++) {
            require(totalSupply() + mintquantity[i] <= maxSupply, "Exceed supply");
            _safeMint(marketmintaddress[i], mintquantity[i]);
        }
    }

    function withdrawMoney() external onlyOwner {
        (bool success,) = msg.sender.call{value : address(this).balance}("");
        require(success, "Transfer failed.");
    }


}

File 2 of 14 : MerkleProof.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (utils/cryptography/MerkleProof.sol)

pragma solidity ^0.8.0;

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

    /**
     * @dev 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 proved to be a part of a Merkle tree defined by
     * `root`, according to `proof` and `proofFlags` as described in {processMultiProof}.
     *
     * _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}
     *
     * _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 the sibling nodes in `proof`,
     * consuming from one or the other at each step according to the instructions given by
     * `proofFlags`.
     *
     * _Available since v4.7._
     */
    function processMultiProof(
        bytes32[] memory proof,
        bool[] memory proofFlags,
        bytes32[] memory leaves
    ) internal pure returns (bytes32 merkleRoot) {
        // This function rebuild 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 totalHashes = proofFlags.length;

        // Check proof validity.
        require(leavesLen + proof.length - 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 for 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) {
            return hashes[totalHashes - 1];
        } else if (leavesLen > 0) {
            return leaves[0];
        } else {
            return proof[0];
        }
    }

    /**
     * @dev Calldata version of {processMultiProof}
     *
     * _Available since v4.7._
     */
    function processMultiProofCalldata(
        bytes32[] calldata proof,
        bool[] calldata proofFlags,
        bytes32[] memory leaves
    ) internal pure returns (bytes32 merkleRoot) {
        // This function rebuild 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 totalHashes = proofFlags.length;

        // Check proof validity.
        require(leavesLen + proof.length - 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 for 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) {
            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 3 of 14 : Pausable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (security/Pausable.sol)

pragma solidity ^0.8.0;

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

/**
 * @dev Contract module which allows children to implement an emergency stop
 * mechanism that can be triggered by an authorized account.
 *
 * This module is used through inheritance. It will make available the
 * modifiers `whenNotPaused` and `whenPaused`, which can be applied to
 * the functions of your contract. Note that they will not be pausable by
 * simply including this module, only once the modifiers are put in place.
 */
abstract contract Pausable is Context {
    /**
     * @dev Emitted when the pause is triggered by `account`.
     */
    event Paused(address account);

    /**
     * @dev Emitted when the pause is lifted by `account`.
     */
    event Unpaused(address account);

    bool private _paused;

    /**
     * @dev Initializes the contract in unpaused state.
     */
    constructor() {
        _paused = false;
    }

    /**
     * @dev Modifier to make a function callable only when the contract is not paused.
     *
     * Requirements:
     *
     * - The contract must not be paused.
     */
    modifier whenNotPaused() {
        _requireNotPaused();
        _;
    }

    /**
     * @dev Modifier to make a function callable only when the contract is paused.
     *
     * Requirements:
     *
     * - The contract must be paused.
     */
    modifier whenPaused() {
        _requirePaused();
        _;
    }

    /**
     * @dev Returns true if the contract is paused, and false otherwise.
     */
    function paused() public view virtual returns (bool) {
        return _paused;
    }

    /**
     * @dev Throws if the contract is paused.
     */
    function _requireNotPaused() internal view virtual {
        require(!paused(), "Pausable: paused");
    }

    /**
     * @dev Throws if the contract is not paused.
     */
    function _requirePaused() internal view virtual {
        require(paused(), "Pausable: not paused");
    }

    /**
     * @dev Triggers stopped state.
     *
     * Requirements:
     *
     * - The contract must not be paused.
     */
    function _pause() internal virtual whenNotPaused {
        _paused = true;
        emit Paused(_msgSender());
    }

    /**
     * @dev Returns to normal state.
     *
     * Requirements:
     *
     * - The contract must be paused.
     */
    function _unpause() internal virtual whenPaused {
        _paused = false;
        emit Unpaused(_msgSender());
    }
}

File 4 of 14 : Strings.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (utils/Strings.sol)

pragma solidity ^0.8.0;

/**
 * @dev String operations.
 */
library Strings {
    bytes16 private constant _HEX_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) {
        // Inspired by OraclizeAPI's implementation - MIT licence
        // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol

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

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

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

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

File 5 of 14 : Ownable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.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 anymore. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby removing any functionality that is only available to the owner.
     */
    function renounceOwnership() public virtual onlyOwner {
        _transferOwnership(address(0));
    }

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

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

File 6 of 14 : ERC721A.sol
// SPDX-License-Identifier: MIT
// Creator: Chiru Labs

pragma solidity ^0.8.4;

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

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

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

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

    // Compiler will pack this into a single 256bit word.
    struct AddressData {
        // Realistically, 2**64-1 is more than enough.
        uint64 balance;
        // Keeps track of mint count with minimal overhead for tokenomics.
        uint64 numberMinted;
        // Keeps track of burn count with minimal overhead for tokenomics.
        uint64 numberBurned;
    }

    // Compiler will pack the following 
    // _currentIndex and _burnCounter into a single 256bit word.
    
    // The tokenId of the next token to be minted.
    uint128 internal _currentIndex;

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

    /**
     * @dev See {IERC721Enumerable-totalSupply}.
     */
    function totalSupply() public view override returns (uint256) {
        // Counter underflow is impossible as _burnCounter cannot be incremented
        // more than _currentIndex times
        unchecked {
            return _currentIndex - _burnCounter;    
        }
    }

    /**
     * @dev See {IERC721Enumerable-tokenByIndex}.
     * This read function is O(totalSupply). If calling from a separate contract, be sure to test gas first.
     * It may also degrade with extremely large collection sizes (e.g >> 10000), test for your use case.
     */
    function tokenByIndex(uint256 index) public view override returns (uint256) {
        uint256 numMintedSoFar = _currentIndex;
        uint256 tokenIdsIdx;

        // Counter overflow is impossible as the loop breaks when
        // uint256 i is equal to another uint256 numMintedSoFar.
        unchecked {
            for (uint256 i; i < numMintedSoFar; i++) {
                TokenOwnership memory ownership = _ownerships[i];
                if (!ownership.burned) {
                    if (tokenIdsIdx == index) {
                        return i;
                    }
                    tokenIdsIdx++;
                }
            }
        }
        revert TokenIndexOutOfBounds();
    }

    /**
     * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}.
     * This read function is O(totalSupply). If calling from a separate contract, be sure to test gas first.
     * It may also degrade with extremely large collection sizes (e.g >> 10000), test for your use case.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) public view override returns (uint256) {
        if (index >= balanceOf(owner)) revert OwnerIndexOutOfBounds();
        uint256 numMintedSoFar = _currentIndex;
        uint256 tokenIdsIdx;
        address currOwnershipAddr;

        // Counter overflow is impossible as the loop breaks when
        // uint256 i is equal to another uint256 numMintedSoFar.
        unchecked {
            for (uint256 i; i < numMintedSoFar; i++) {
                TokenOwnership memory ownership = _ownerships[i];
                if (ownership.burned) {
                    continue;
                }
                if (ownership.addr != address(0)) {
                    currOwnershipAddr = ownership.addr;
                }
                if (currOwnershipAddr == owner) {
                    if (tokenIdsIdx == index) {
                        return i;
                    }
                    tokenIdsIdx++;
                }
            }
        }

        // Execution should never reach this point.
        revert();
    }

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

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

    function _numberMinted(address owner) internal view returns (uint256) {
        if (owner == address(0)) revert MintedQueryForZeroAddress();
        return uint256(_addressData[owner].numberMinted);
    }

    function _numberBurned(address owner) internal view returns (uint256) {
        if (owner == address(0)) revert BurnedQueryForZeroAddress();
        return uint256(_addressData[owner].numberBurned);
    }

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId, owner);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

            uint256 updatedIndex = startTokenId;

            for (uint256 i; i < quantity; i++) {
                emit Transfer(address(0), to, updatedIndex);
                if (safe && !_checkOnERC721Received(address(0), to, updatedIndex, _data)) {
                    revert TransferToNonERC721ReceiverImplementer();
                }
                updatedIndex++;
            }

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

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

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

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

        _beforeTokenTransfers(from, to, tokenId, 1);

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

File 7 of 14 : 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 8 of 14 : 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 9 of 14 : Address.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (utils/Address.sol)

pragma solidity ^0.8.1;

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

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

File 10 of 14 : IERC721Enumerable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC721/extensions/IERC721Enumerable.sol)

pragma solidity ^0.8.0;

import "../IERC721.sol";

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

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

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

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

pragma solidity ^0.8.0;

import "../IERC721.sol";

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

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

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

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

pragma solidity ^0.8.0;

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

File 13 of 14 : IERC721.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (token/ERC721/IERC721.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

File 14 of 14 : IERC165.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol)

pragma solidity ^0.8.0;

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

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

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_baseTokenURI","type":"string"},{"internalType":"uint256","name":"_maxSupply","type":"uint256"},{"internalType":"uint256","name":"_publicSalePrice","type":"uint256"},{"internalType":"uint8","name":"_accountFree","type":"uint8"},{"internalType":"bytes32","name":"_MerkleRoot","type":"bytes32"},{"internalType":"address","name":"_paymentAddress","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerIndexOutOfBounds","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TokenIndexOutOfBounds","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","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":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"inputs":[],"name":"accountFree","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32[]","name":"merkleProof","type":"bytes32[]"}],"name":"allowListMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"allowlistresult","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseTokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"closeMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"defaultTokenURI","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":[{"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":[{"internalType":"address[]","name":"marketmintaddress","type":"address[]"},{"internalType":"uint256[]","name":"mintquantity","type":"uint256[]"}],"name":"marketMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_quantity","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"openMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"payMentPotatoz","outputs":[{"internalType":"address payable","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicSalePrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint8","name":"quantity","type":"uint8"}],"name":"setAccountFree","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_baseTokenURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_defaultURI","type":"string"}],"name":"setDefaultURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","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":"uint256","name":"mintprice","type":"uint256"}],"name":"setPublicPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"usermint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"walletOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdrawMoney","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040523480156200001157600080fd5b5060405162002d9038038062002d90833981016040819052620000349162000318565b6040805180820182526012815271546f676f20626f74206d696e74207061737360701b602080830191825283518085019094526004845263546f476f60e01b9084015281519192916200008a9160019162000243565b508051620000a090600290602084019062000243565b505050620000bd620000b76200012f60201b60201c565b62000133565b6007805460ff60a01b191690558551620000df90600890602089019062000243565b50600a859055600b849055600c805460ff191660ff8516179055601080546001600160a01b0319166001600160a01b038316179055600f8290556200012362000185565b5050505050506200048b565b3390565b600780546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6200018f620001e8565b6007805460ff60a01b1916600160a01b1790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258620001cb3390565b6040516001600160a01b03909116815260200160405180910390a1565b620001fc600754600160a01b900460ff1690565b15620002415760405162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b604482015260640160405180910390fd5b565b828054620002519062000438565b90600052602060002090601f016020900481019282620002755760008555620002c0565b82601f106200029057805160ff1916838001178555620002c0565b82800160010185558215620002c0579182015b82811115620002c0578251825591602001919060010190620002a3565b50620002ce929150620002d2565b5090565b5b80821115620002ce5760008155600101620002d3565b80516001600160a01b03811681146200030157600080fd5b919050565b805160ff811681146200030157600080fd5b60008060008060008060c087890312156200033257600080fd5b86516001600160401b03808211156200034a57600080fd5b818901915089601f8301126200035f57600080fd5b81518181111562000374576200037462000475565b604051601f8201601f19908116603f011681019083821181831017156200039f576200039f62000475565b81604052828152602093508c84848701011115620003bc57600080fd5b600091505b82821015620003e05784820184015181830185015290830190620003c1565b82821115620003f25760008484830101525b809a50505050808901519650505060408701519350620004156060880162000306565b9250608087015191506200042c60a08801620002e9565b90509295509295509295565b600181811c908216806200044d57607f821691505b602082108114156200046f57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052604160045260246000fd5b6128f5806200049b6000396000f3fe6080604052600436106102465760003560e01c8063715018a611610139578063b8e12e62116100b6578063d5abeb011161007a578063d5abeb0114610695578063da1b9e08146106ab578063e9014f9d146106cb578063e985e9c5146106de578063f2fde38b14610727578063fdc3c0ba1461074757600080fd5b8063b8e12e621461060b578063bce6d6721461062b578063c627525514610640578063c87b56dd14610660578063d547cfb71461068057600080fd5b80639b6860c8116100fd5780639b6860c81461058d578063a0712d68146105a3578063a22cb465146105b6578063ac446002146105d6578063b88d4fde146105eb57600080fd5b8063715018a6146105105780637cb64759146105255780638da5cb5b1461054557806395d89b4114610563578063963bfe121461057857600080fd5b8063438b6300116101c75780636352211e1161018b5780636352211e1461046e578063648b5be11461048e57806364f101f0146104bb5780636f8b44b0146104d057806370a08231146104f057600080fd5b8063438b6300146103cf5780634f6ccce7146103fc57806355f804b31461041c5780635c975abb1461043c5780635cfe6b841461045b57600080fd5b806318160ddd1161020e57806318160ddd1461031c57806323b872dd1461033f578063270276341461035f5780632f745c591461038f57806342842e0e146103af57600080fd5b806301ffc9a71461024b57806306fdde031461028057806307e17996146102a2578063081812fc146102da578063095ea7b3146102fa575b600080fd5b34801561025757600080fd5b5061026b61026636600461254b565b610773565b60405190151581526020015b60405180910390f35b34801561028c57600080fd5b506102956107e0565b60405161027791906126f3565b3480156102ae57600080fd5b506010546102c2906001600160a01b031681565b6040516001600160a01b039091168152602001610277565b3480156102e657600080fd5b506102c26102f5366004612532565b610872565b34801561030657600080fd5b5061031a6103153660046123ce565b6108b6565b005b34801561032857600080fd5b50610331610944565b604051908152602001610277565b34801561034b57600080fd5b5061031a61035a366004612297565b610963565b34801561036b57600080fd5b5061026b61037a366004612249565b600e6020526000908152604090205460ff1681565b34801561039b57600080fd5b506103316103aa3660046123ce565b61096e565b3480156103bb57600080fd5b5061031a6103ca366004612297565b610a6a565b3480156103db57600080fd5b506103ef6103ea366004612249565b610a85565b60405161027791906126af565b34801561040857600080fd5b50610331610417366004612532565b610bce565b34801561042857600080fd5b5061031a610437366004612585565b610c78565b34801561044857600080fd5b50600754600160a01b900460ff1661026b565b61031a6104693660046124be565b610c8c565b34801561047a57600080fd5b506102c2610489366004612532565b610e3b565b34801561049a57600080fd5b506103316104a9366004612249565b600d6020526000908152604090205481565b3480156104c757600080fd5b5061031a610e4d565b3480156104dc57600080fd5b5061031a6104eb366004612532565b610e5f565b3480156104fc57600080fd5b5061033161050b366004612249565b610e6c565b34801561051c57600080fd5b5061031a610eba565b34801561053157600080fd5b5061031a610540366004612532565b610ecc565b34801561055157600080fd5b506007546001600160a01b03166102c2565b34801561056f57600080fd5b50610295610ed9565b34801561058457600080fd5b50610295610ee8565b34801561059957600080fd5b50610331600b5481565b61031a6105b1366004612532565b610f76565b3480156105c257600080fd5b5061031a6105d1366004612392565b6111b1565b3480156105e257600080fd5b5061031a611247565b3480156105f757600080fd5b5061031a6106063660046122d3565b6112dd565b34801561061757600080fd5b5061031a6106263660046125e4565b611317565b34801561063757600080fd5b5061031a611335565b34801561064c57600080fd5b5061031a61065b366004612532565b611345565b34801561066c57600080fd5b5061029561067b366004612532565b611352565b34801561068c57600080fd5b5061029561148a565b3480156106a157600080fd5b50610331600a5481565b3480156106b757600080fd5b5061031a6106c6366004612585565b611497565b61031a6106d93660046123f8565b6114ab565b3480156106ea57600080fd5b5061026b6106f9366004612264565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b34801561073357600080fd5b5061031a610742366004612249565b611582565b34801561075357600080fd5b50600c546107619060ff1681565b60405160ff9091168152602001610277565b60006001600160e01b031982166380ac58cd60e01b14806107a457506001600160e01b03198216635b5e139f60e01b145b806107bf57506001600160e01b0319821663780e9d6360e01b145b806107da57506301ffc9a760e01b6001600160e01b03198316145b92915050565b6060600180546107ef906127e7565b80601f016020809104026020016040519081016040528092919081815260200182805461081b906127e7565b80156108685780601f1061083d57610100808354040283529160200191610868565b820191906000526020600020905b81548152906001019060200180831161084b57829003601f168201915b5050505050905090565b600061087d826115f8565b61089a576040516333d1c03960e21b815260040160405180910390fd5b506000908152600560205260409020546001600160a01b031690565b60006108c182610e3b565b9050806001600160a01b0316836001600160a01b031614156108f65760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b03821614801590610916575061091481336106f9565b155b15610934576040516367d9dca160e11b815260040160405180910390fd5b61093f83838361162c565b505050565b6000546001600160801b03600160801b82048116918116919091031690565b61093f838383611688565b600061097983610e6c565b8210610998576040516306ed618760e11b815260040160405180910390fd5b600080546001600160801b03169080805b83811015610a6457600081815260036020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff161580159282019290925290610a105750610a5c565b80516001600160a01b031615610a2557805192505b876001600160a01b0316836001600160a01b03161415610a5a5786841415610a53575093506107da92505050565b6001909301925b505b6001016109a9565b50600080fd5b61093f838383604051806020016040528060008152506112dd565b60606000610a9283610e6c565b90506000816001600160401b03811115610aae57610aae612893565b604051908082528060200260200182016040528015610ad7578160200160208202803683370190505b50905060008060005b8482108015610af957506000546001600160801b031683105b15610bc357600083815260036020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff16151591810182905290610bb05780516001600160a01b031615610b6a57805191505b876001600160a01b0316826001600160a01b03161415610bb05783858481518110610b9757610b9761287d565b602090810291909101015282610bac81612822565b9350505b83610bba81612822565b94505050610ae0565b509195945050505050565b600080546001600160801b031681805b82811015610c5e57600081815260036020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff16151591810182905290610c555785831415610c4e5750949350505050565b6001909201915b50600101610bde565b506040516329c8c00760e21b815260040160405180910390fd5b610c806118a5565b61093f60088383612122565b323314610ce05760405162461bcd60e51b815260206004820152601d60248201527f4d7573742066726f6d207265616c2077616c6c6574206164647265737300000060448201526064015b60405180910390fd5b610ce86118ff565b6040516bffffffffffffffffffffffff193360601b166020820152600090603401604051602081830303815290604052805190602001209050610d6283838080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525050600f54915084905061194c565b610da55760405162461bcd60e51b815260206004820152601460248201527324b73b30b634b21036b2b935b63290383937b7b360611b6044820152606401610cd7565b336000908152600e602052604090205460ff1615610e145760405162461bcd60e51b815260206004820152602660248201527f54686973206164647265737320686173206265656e20616c6c6f776c6973746560448201526519081b5a5b9d60d21b6064820152608401610cd7565b336000818152600e60205260409020805460ff1916600190811790915561093f9190611962565b6000610e4682611980565b5192915050565b610e556118a5565b610e5d611aa2565b565b610e676118a5565b600a55565b60006001600160a01b038216610e95576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b03166000908152600460205260409020546001600160401b031690565b610ec26118a5565b610e5d6000611b02565b610ed46118a5565b600f55565b6060600280546107ef906127e7565b60098054610ef5906127e7565b80601f0160208091040260200160405190810160405280929190818152602001828054610f21906127e7565b8015610f6e5780601f10610f4357610100808354040283529160200191610f6e565b820191906000526020600020905b815481529060010190602001808311610f5157829003601f168201915b505050505081565b323314610fc55760405162461bcd60e51b815260206004820152601d60248201527f4d7573742066726f6d207265616c2077616c6c657420616464726573730000006044820152606401610cd7565b610fcd6118ff565b600081116110105760405162461bcd60e51b815260206004820152601060248201526f496e76616c6964207175616e7469747960801b6044820152606401610cd7565b600a8111156110545760405162461bcd60e51b815260206004820152601060248201526f496e76616c6964207175616e7469747960801b6044820152606401610cd7565b600a5481611060610944565b61106a9190612759565b11156110a85760405162461bcd60e51b815260206004820152600d60248201526c45786365656420737570706c7960981b6044820152606401610cd7565b336000908152600d6020526040812054600c5460ff1611156110e757336000908152600d6020526040902054600c546110e4919060ff166127a4565b90505b60008183111561110b57600b546110fe83856127a4565b6111089190612785565b90505b803410156111515760405162461bcd60e51b815260206004820152601360248201527208ae8d0cae440d2e640dcdee840cadcdeeaced606b1b6044820152606401610cd7565b341561118257601054611182906001600160a01b0316611172606434612771565b61117d906032612785565b611b54565b336000908152600d6020526040812080548592906111a1908490612759565b9091555061093f90503384611962565b6001600160a01b0382163314156111db5760405163b06307db60e01b815260040160405180910390fd5b3360008181526006602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b61124f6118a5565b604051600090339047908381818185875af1925050503d8060008114611291576040519150601f19603f3d011682016040523d82523d6000602084013e611296565b606091505b50509050806112da5760405162461bcd60e51b815260206004820152601060248201526f2a3930b739b332b9103330b4b632b21760811b6044820152606401610cd7565b50565b6112e8848484611688565b6112f484848484611c6d565b611311576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b61131f6118a5565b600c805460ff191660ff92909216919091179055565b61133d6118a5565b610e5d611d7c565b61134d6118a5565b600b55565b606061135d826115f8565b6113b35760405162461bcd60e51b815260206004820152602160248201527f4552433732314d657461646174613a204e6f6e6578697374656e7420746f6b656044820152603760f91b6064820152608401610cd7565b60006113bd611db8565b9050600081511161145857600980546113d5906127e7565b80601f0160208091040260200160405190810160405280929190818152602001828054611401906127e7565b801561144e5780601f106114235761010080835404028352916020019161144e565b820191906000526020600020905b81548152906001019060200180831161143157829003601f168201915b5050505050611483565b8061146284611dc7565b604051602001611473929190612633565b6040516020818303038152906040525b9392505050565b60088054610ef5906127e7565b61149f6118a5565b61093f60098383612122565b6114b36118a5565b6114bb6118ff565b60005b825181101561093f57600a548282815181106114dc576114dc61287d565b60200260200101516114ec610944565b6114f69190612759565b11156115345760405162461bcd60e51b815260206004820152600d60248201526c45786365656420737570706c7960981b6044820152606401610cd7565b6115708382815181106115495761154961287d565b60200260200101518383815181106115635761156361287d565b6020026020010151611962565b8061157a81612822565b9150506114be565b61158a6118a5565b6001600160a01b0381166115ef5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610cd7565b6112da81611b02565b600080546001600160801b0316821080156107da575050600090815260036020526040902054600160e01b900460ff161590565b60008281526005602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b600061169382611980565b80519091506000906001600160a01b0316336001600160a01b031614806116c1575081516116c190336106f9565b806116dc5750336116d184610872565b6001600160a01b0316145b9050806116fc57604051632ce44b5f60e11b815260040160405180910390fd5b846001600160a01b031682600001516001600160a01b0316146117315760405162a1148160e81b815260040160405180910390fd5b6001600160a01b03841661175857604051633a954ecd60e21b815260040160405180910390fd5b611768600084846000015161162c565b6001600160a01b038581166000908152600460209081526040808320805467ffffffffffffffff198082166001600160401b0392831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600390945282852080546001600160e01b031916909417600160a01b42909216919091021790925590860180835291205490911661185b576000546001600160801b031681101561185b57825160008281526003602090815260409091208054918601516001600160401b0316600160a01b026001600160e01b03199092166001600160a01b03909316929092171790555b5082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b6007546001600160a01b03163314610e5d5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610cd7565b600754600160a01b900460ff1615610e5d5760405162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b6044820152606401610cd7565b6000826119598584611ec4565b14949350505050565b61197c828260405180602001604052806000815250611f11565b5050565b60408051606081018252600080825260208201819052918101829052905482906001600160801b0316811015611a8957600081815260036020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff16151591810182905290611a875780516001600160a01b031615611a1e579392505050565b5060001901600081815260036020908152604091829020825160608101845290546001600160a01b038116808352600160a01b82046001600160401b031693830193909352600160e01b900460ff1615159281019290925215611a82579392505050565b611a1e565b505b604051636f96cda160e11b815260040160405180910390fd5b611aaa6118ff565b6007805460ff60a01b1916600160a01b1790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258611ae53390565b6040516001600160a01b03909116815260200160405180910390a1565b600780546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b80471015611ba45760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a20696e73756666696369656e742062616c616e63650000006044820152606401610cd7565b6000826001600160a01b03168260405160006040518083038185875af1925050503d8060008114611bf1576040519150601f19603f3d011682016040523d82523d6000602084013e611bf6565b606091505b505090508061093f5760405162461bcd60e51b815260206004820152603a60248201527f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260448201527f6563697069656e74206d617920686176652072657665727465640000000000006064820152608401610cd7565b60006001600160a01b0384163b15611d7057604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611cb1903390899088908890600401612672565b602060405180830381600087803b158015611ccb57600080fd5b505af1925050508015611cfb575060408051601f3d908101601f19168201909252611cf891810190612568565b60015b611d56573d808015611d29576040519150601f19603f3d011682016040523d82523d6000602084013e611d2e565b606091505b508051611d4e576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611d74565b5060015b949350505050565b611d84611f1e565b6007805460ff60a01b191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa33611ae5565b6060600880546107ef906127e7565b606081611deb5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611e155780611dff81612822565b9150611e0e9050600a83612771565b9150611def565b6000816001600160401b03811115611e2f57611e2f612893565b6040519080825280601f01601f191660200182016040528015611e59576020820181803683370190505b5090505b8415611d7457611e6e6001836127a4565b9150611e7b600a8661283d565b611e86906030612759565b60f81b818381518110611e9b57611e9b61287d565b60200101906001600160f81b031916908160001a905350611ebd600a86612771565b9450611e5d565b600081815b8451811015611f0957611ef582868381518110611ee857611ee861287d565b6020026020010151611f6e565b915080611f0181612822565b915050611ec9565b509392505050565b61093f8383836001611f9a565b600754600160a01b900460ff16610e5d5760405162461bcd60e51b815260206004820152601460248201527314185d5cd8589b194e881b9bdd081c185d5cd95960621b6044820152606401610cd7565b6000818310611f8a576000828152602084905260409020611483565b5060009182526020526040902090565b6000546001600160801b03166001600160a01b038516611fcc57604051622e076360e81b815260040160405180910390fd5b83611fea5760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038516600081815260046020908152604080832080546001600160801b031981166001600160401b038083168c0181169182176801000000000000000067ffffffffffffffff1990941690921783900481168c018116909202179091558584526003909252822080546001600160e01b031916909317600160a01b42909216919091021790915581905b858110156120fc5760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a48380156120d257506120d06000888488611c6d565b155b156120f0576040516368d2bf6b60e11b815260040160405180910390fd5b6001918201910161207b565b50600080546001600160801b0319166001600160801b039290921691909117905561189e565b82805461212e906127e7565b90600052602060002090601f0160209004810192826121505760008555612196565b82601f106121695782800160ff19823516178555612196565b82800160010185558215612196579182015b8281111561219657823582559160200191906001019061217b565b506121a29291506121a6565b5090565b5b808211156121a257600081556001016121a7565b80356001600160a01b03811681146121d257600080fd5b919050565b600082601f8301126121e857600080fd5b813560206121fd6121f883612736565b612706565b80838252828201915082860187848660051b890101111561221d57600080fd5b60005b8581101561223c57813584529284019290840190600101612220565b5090979650505050505050565b60006020828403121561225b57600080fd5b611483826121bb565b6000806040838503121561227757600080fd5b612280836121bb565b915061228e602084016121bb565b90509250929050565b6000806000606084860312156122ac57600080fd5b6122b5846121bb565b92506122c3602085016121bb565b9150604084013590509250925092565b600080600080608085870312156122e957600080fd5b6122f2856121bb565b935060206123018187016121bb565b93506040860135925060608601356001600160401b038082111561232457600080fd5b818801915088601f83011261233857600080fd5b81358181111561234a5761234a612893565b61235c601f8201601f19168501612706565b9150808252898482850101111561237257600080fd5b808484018584013760008482840101525080935050505092959194509250565b600080604083850312156123a557600080fd5b6123ae836121bb565b9150602083013580151581146123c357600080fd5b809150509250929050565b600080604083850312156123e157600080fd5b6123ea836121bb565b946020939093013593505050565b6000806040838503121561240b57600080fd5b82356001600160401b038082111561242257600080fd5b818501915085601f83011261243657600080fd5b813560206124466121f883612736565b8083825282820191508286018a848660051b890101111561246657600080fd5b600096505b848710156124905761247c816121bb565b83526001969096019591830191830161246b565b50965050860135925050808211156124a757600080fd5b506124b4858286016121d7565b9150509250929050565b600080602083850312156124d157600080fd5b82356001600160401b03808211156124e857600080fd5b818501915085601f8301126124fc57600080fd5b81358181111561250b57600080fd5b8660208260051b850101111561252057600080fd5b60209290920196919550909350505050565b60006020828403121561254457600080fd5b5035919050565b60006020828403121561255d57600080fd5b8135611483816128a9565b60006020828403121561257a57600080fd5b8151611483816128a9565b6000806020838503121561259857600080fd5b82356001600160401b03808211156125af57600080fd5b818501915085601f8301126125c357600080fd5b8135818111156125d257600080fd5b86602082850101111561252057600080fd5b6000602082840312156125f657600080fd5b813560ff8116811461148357600080fd5b6000815180845261261f8160208601602086016127bb565b601f01601f19169290920160200192915050565b600083516126458184602088016127bb565b8351908301906126598183602088016127bb565b64173539b7b760d91b9101908152600501949350505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906126a590830184612607565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b818110156126e7578351835292840192918401916001016126cb565b50909695505050505050565b6020815260006114836020830184612607565b604051601f8201601f191681016001600160401b038111828210171561272e5761272e612893565b604052919050565b60006001600160401b0382111561274f5761274f612893565b5060051b60200190565b6000821982111561276c5761276c612851565b500190565b60008261278057612780612867565b500490565b600081600019048311821515161561279f5761279f612851565b500290565b6000828210156127b6576127b6612851565b500390565b60005b838110156127d65781810151838201526020016127be565b838111156113115750506000910152565b600181811c908216806127fb57607f821691505b6020821081141561281c57634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561283657612836612851565b5060010190565b60008261284c5761284c612867565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b0319811681146112da57600080fdfea2646970667358221220c315f1d5e7048f6411a42a40d7687f67bc7056c75cf2ed749dee0de690afe97c64736f6c6343000807003300000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000bb8000000000000000000000000000000000000000000000000000aa87bee5380000000000000000000000000000000000000000000000000000000000000000000d4de7cd1e3026fe74adaaff73629a66c9cc6815cbd47df61b19edc5bb05a2168000000000000000000000000e1599eee3ed1218e0d83b144d9066d5f327c956800000000000000000000000000000000000000000000000000000000000000012000000000000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106102465760003560e01c8063715018a611610139578063b8e12e62116100b6578063d5abeb011161007a578063d5abeb0114610695578063da1b9e08146106ab578063e9014f9d146106cb578063e985e9c5146106de578063f2fde38b14610727578063fdc3c0ba1461074757600080fd5b8063b8e12e621461060b578063bce6d6721461062b578063c627525514610640578063c87b56dd14610660578063d547cfb71461068057600080fd5b80639b6860c8116100fd5780639b6860c81461058d578063a0712d68146105a3578063a22cb465146105b6578063ac446002146105d6578063b88d4fde146105eb57600080fd5b8063715018a6146105105780637cb64759146105255780638da5cb5b1461054557806395d89b4114610563578063963bfe121461057857600080fd5b8063438b6300116101c75780636352211e1161018b5780636352211e1461046e578063648b5be11461048e57806364f101f0146104bb5780636f8b44b0146104d057806370a08231146104f057600080fd5b8063438b6300146103cf5780634f6ccce7146103fc57806355f804b31461041c5780635c975abb1461043c5780635cfe6b841461045b57600080fd5b806318160ddd1161020e57806318160ddd1461031c57806323b872dd1461033f578063270276341461035f5780632f745c591461038f57806342842e0e146103af57600080fd5b806301ffc9a71461024b57806306fdde031461028057806307e17996146102a2578063081812fc146102da578063095ea7b3146102fa575b600080fd5b34801561025757600080fd5b5061026b61026636600461254b565b610773565b60405190151581526020015b60405180910390f35b34801561028c57600080fd5b506102956107e0565b60405161027791906126f3565b3480156102ae57600080fd5b506010546102c2906001600160a01b031681565b6040516001600160a01b039091168152602001610277565b3480156102e657600080fd5b506102c26102f5366004612532565b610872565b34801561030657600080fd5b5061031a6103153660046123ce565b6108b6565b005b34801561032857600080fd5b50610331610944565b604051908152602001610277565b34801561034b57600080fd5b5061031a61035a366004612297565b610963565b34801561036b57600080fd5b5061026b61037a366004612249565b600e6020526000908152604090205460ff1681565b34801561039b57600080fd5b506103316103aa3660046123ce565b61096e565b3480156103bb57600080fd5b5061031a6103ca366004612297565b610a6a565b3480156103db57600080fd5b506103ef6103ea366004612249565b610a85565b60405161027791906126af565b34801561040857600080fd5b50610331610417366004612532565b610bce565b34801561042857600080fd5b5061031a610437366004612585565b610c78565b34801561044857600080fd5b50600754600160a01b900460ff1661026b565b61031a6104693660046124be565b610c8c565b34801561047a57600080fd5b506102c2610489366004612532565b610e3b565b34801561049a57600080fd5b506103316104a9366004612249565b600d6020526000908152604090205481565b3480156104c757600080fd5b5061031a610e4d565b3480156104dc57600080fd5b5061031a6104eb366004612532565b610e5f565b3480156104fc57600080fd5b5061033161050b366004612249565b610e6c565b34801561051c57600080fd5b5061031a610eba565b34801561053157600080fd5b5061031a610540366004612532565b610ecc565b34801561055157600080fd5b506007546001600160a01b03166102c2565b34801561056f57600080fd5b50610295610ed9565b34801561058457600080fd5b50610295610ee8565b34801561059957600080fd5b50610331600b5481565b61031a6105b1366004612532565b610f76565b3480156105c257600080fd5b5061031a6105d1366004612392565b6111b1565b3480156105e257600080fd5b5061031a611247565b3480156105f757600080fd5b5061031a6106063660046122d3565b6112dd565b34801561061757600080fd5b5061031a6106263660046125e4565b611317565b34801561063757600080fd5b5061031a611335565b34801561064c57600080fd5b5061031a61065b366004612532565b611345565b34801561066c57600080fd5b5061029561067b366004612532565b611352565b34801561068c57600080fd5b5061029561148a565b3480156106a157600080fd5b50610331600a5481565b3480156106b757600080fd5b5061031a6106c6366004612585565b611497565b61031a6106d93660046123f8565b6114ab565b3480156106ea57600080fd5b5061026b6106f9366004612264565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b34801561073357600080fd5b5061031a610742366004612249565b611582565b34801561075357600080fd5b50600c546107619060ff1681565b60405160ff9091168152602001610277565b60006001600160e01b031982166380ac58cd60e01b14806107a457506001600160e01b03198216635b5e139f60e01b145b806107bf57506001600160e01b0319821663780e9d6360e01b145b806107da57506301ffc9a760e01b6001600160e01b03198316145b92915050565b6060600180546107ef906127e7565b80601f016020809104026020016040519081016040528092919081815260200182805461081b906127e7565b80156108685780601f1061083d57610100808354040283529160200191610868565b820191906000526020600020905b81548152906001019060200180831161084b57829003601f168201915b5050505050905090565b600061087d826115f8565b61089a576040516333d1c03960e21b815260040160405180910390fd5b506000908152600560205260409020546001600160a01b031690565b60006108c182610e3b565b9050806001600160a01b0316836001600160a01b031614156108f65760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b03821614801590610916575061091481336106f9565b155b15610934576040516367d9dca160e11b815260040160405180910390fd5b61093f83838361162c565b505050565b6000546001600160801b03600160801b82048116918116919091031690565b61093f838383611688565b600061097983610e6c565b8210610998576040516306ed618760e11b815260040160405180910390fd5b600080546001600160801b03169080805b83811015610a6457600081815260036020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff161580159282019290925290610a105750610a5c565b80516001600160a01b031615610a2557805192505b876001600160a01b0316836001600160a01b03161415610a5a5786841415610a53575093506107da92505050565b6001909301925b505b6001016109a9565b50600080fd5b61093f838383604051806020016040528060008152506112dd565b60606000610a9283610e6c565b90506000816001600160401b03811115610aae57610aae612893565b604051908082528060200260200182016040528015610ad7578160200160208202803683370190505b50905060008060005b8482108015610af957506000546001600160801b031683105b15610bc357600083815260036020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff16151591810182905290610bb05780516001600160a01b031615610b6a57805191505b876001600160a01b0316826001600160a01b03161415610bb05783858481518110610b9757610b9761287d565b602090810291909101015282610bac81612822565b9350505b83610bba81612822565b94505050610ae0565b509195945050505050565b600080546001600160801b031681805b82811015610c5e57600081815260036020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff16151591810182905290610c555785831415610c4e5750949350505050565b6001909201915b50600101610bde565b506040516329c8c00760e21b815260040160405180910390fd5b610c806118a5565b61093f60088383612122565b323314610ce05760405162461bcd60e51b815260206004820152601d60248201527f4d7573742066726f6d207265616c2077616c6c6574206164647265737300000060448201526064015b60405180910390fd5b610ce86118ff565b6040516bffffffffffffffffffffffff193360601b166020820152600090603401604051602081830303815290604052805190602001209050610d6283838080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525050600f54915084905061194c565b610da55760405162461bcd60e51b815260206004820152601460248201527324b73b30b634b21036b2b935b63290383937b7b360611b6044820152606401610cd7565b336000908152600e602052604090205460ff1615610e145760405162461bcd60e51b815260206004820152602660248201527f54686973206164647265737320686173206265656e20616c6c6f776c6973746560448201526519081b5a5b9d60d21b6064820152608401610cd7565b336000818152600e60205260409020805460ff1916600190811790915561093f9190611962565b6000610e4682611980565b5192915050565b610e556118a5565b610e5d611aa2565b565b610e676118a5565b600a55565b60006001600160a01b038216610e95576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b03166000908152600460205260409020546001600160401b031690565b610ec26118a5565b610e5d6000611b02565b610ed46118a5565b600f55565b6060600280546107ef906127e7565b60098054610ef5906127e7565b80601f0160208091040260200160405190810160405280929190818152602001828054610f21906127e7565b8015610f6e5780601f10610f4357610100808354040283529160200191610f6e565b820191906000526020600020905b815481529060010190602001808311610f5157829003601f168201915b505050505081565b323314610fc55760405162461bcd60e51b815260206004820152601d60248201527f4d7573742066726f6d207265616c2077616c6c657420616464726573730000006044820152606401610cd7565b610fcd6118ff565b600081116110105760405162461bcd60e51b815260206004820152601060248201526f496e76616c6964207175616e7469747960801b6044820152606401610cd7565b600a8111156110545760405162461bcd60e51b815260206004820152601060248201526f496e76616c6964207175616e7469747960801b6044820152606401610cd7565b600a5481611060610944565b61106a9190612759565b11156110a85760405162461bcd60e51b815260206004820152600d60248201526c45786365656420737570706c7960981b6044820152606401610cd7565b336000908152600d6020526040812054600c5460ff1611156110e757336000908152600d6020526040902054600c546110e4919060ff166127a4565b90505b60008183111561110b57600b546110fe83856127a4565b6111089190612785565b90505b803410156111515760405162461bcd60e51b815260206004820152601360248201527208ae8d0cae440d2e640dcdee840cadcdeeaced606b1b6044820152606401610cd7565b341561118257601054611182906001600160a01b0316611172606434612771565b61117d906032612785565b611b54565b336000908152600d6020526040812080548592906111a1908490612759565b9091555061093f90503384611962565b6001600160a01b0382163314156111db5760405163b06307db60e01b815260040160405180910390fd5b3360008181526006602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b61124f6118a5565b604051600090339047908381818185875af1925050503d8060008114611291576040519150601f19603f3d011682016040523d82523d6000602084013e611296565b606091505b50509050806112da5760405162461bcd60e51b815260206004820152601060248201526f2a3930b739b332b9103330b4b632b21760811b6044820152606401610cd7565b50565b6112e8848484611688565b6112f484848484611c6d565b611311576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b61131f6118a5565b600c805460ff191660ff92909216919091179055565b61133d6118a5565b610e5d611d7c565b61134d6118a5565b600b55565b606061135d826115f8565b6113b35760405162461bcd60e51b815260206004820152602160248201527f4552433732314d657461646174613a204e6f6e6578697374656e7420746f6b656044820152603760f91b6064820152608401610cd7565b60006113bd611db8565b9050600081511161145857600980546113d5906127e7565b80601f0160208091040260200160405190810160405280929190818152602001828054611401906127e7565b801561144e5780601f106114235761010080835404028352916020019161144e565b820191906000526020600020905b81548152906001019060200180831161143157829003601f168201915b5050505050611483565b8061146284611dc7565b604051602001611473929190612633565b6040516020818303038152906040525b9392505050565b60088054610ef5906127e7565b61149f6118a5565b61093f60098383612122565b6114b36118a5565b6114bb6118ff565b60005b825181101561093f57600a548282815181106114dc576114dc61287d565b60200260200101516114ec610944565b6114f69190612759565b11156115345760405162461bcd60e51b815260206004820152600d60248201526c45786365656420737570706c7960981b6044820152606401610cd7565b6115708382815181106115495761154961287d565b60200260200101518383815181106115635761156361287d565b6020026020010151611962565b8061157a81612822565b9150506114be565b61158a6118a5565b6001600160a01b0381166115ef5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610cd7565b6112da81611b02565b600080546001600160801b0316821080156107da575050600090815260036020526040902054600160e01b900460ff161590565b60008281526005602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b600061169382611980565b80519091506000906001600160a01b0316336001600160a01b031614806116c1575081516116c190336106f9565b806116dc5750336116d184610872565b6001600160a01b0316145b9050806116fc57604051632ce44b5f60e11b815260040160405180910390fd5b846001600160a01b031682600001516001600160a01b0316146117315760405162a1148160e81b815260040160405180910390fd5b6001600160a01b03841661175857604051633a954ecd60e21b815260040160405180910390fd5b611768600084846000015161162c565b6001600160a01b038581166000908152600460209081526040808320805467ffffffffffffffff198082166001600160401b0392831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600390945282852080546001600160e01b031916909417600160a01b42909216919091021790925590860180835291205490911661185b576000546001600160801b031681101561185b57825160008281526003602090815260409091208054918601516001600160401b0316600160a01b026001600160e01b03199092166001600160a01b03909316929092171790555b5082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b6007546001600160a01b03163314610e5d5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610cd7565b600754600160a01b900460ff1615610e5d5760405162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b6044820152606401610cd7565b6000826119598584611ec4565b14949350505050565b61197c828260405180602001604052806000815250611f11565b5050565b60408051606081018252600080825260208201819052918101829052905482906001600160801b0316811015611a8957600081815260036020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff16151591810182905290611a875780516001600160a01b031615611a1e579392505050565b5060001901600081815260036020908152604091829020825160608101845290546001600160a01b038116808352600160a01b82046001600160401b031693830193909352600160e01b900460ff1615159281019290925215611a82579392505050565b611a1e565b505b604051636f96cda160e11b815260040160405180910390fd5b611aaa6118ff565b6007805460ff60a01b1916600160a01b1790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258611ae53390565b6040516001600160a01b03909116815260200160405180910390a1565b600780546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b80471015611ba45760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a20696e73756666696369656e742062616c616e63650000006044820152606401610cd7565b6000826001600160a01b03168260405160006040518083038185875af1925050503d8060008114611bf1576040519150601f19603f3d011682016040523d82523d6000602084013e611bf6565b606091505b505090508061093f5760405162461bcd60e51b815260206004820152603a60248201527f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260448201527f6563697069656e74206d617920686176652072657665727465640000000000006064820152608401610cd7565b60006001600160a01b0384163b15611d7057604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611cb1903390899088908890600401612672565b602060405180830381600087803b158015611ccb57600080fd5b505af1925050508015611cfb575060408051601f3d908101601f19168201909252611cf891810190612568565b60015b611d56573d808015611d29576040519150601f19603f3d011682016040523d82523d6000602084013e611d2e565b606091505b508051611d4e576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611d74565b5060015b949350505050565b611d84611f1e565b6007805460ff60a01b191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa33611ae5565b6060600880546107ef906127e7565b606081611deb5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611e155780611dff81612822565b9150611e0e9050600a83612771565b9150611def565b6000816001600160401b03811115611e2f57611e2f612893565b6040519080825280601f01601f191660200182016040528015611e59576020820181803683370190505b5090505b8415611d7457611e6e6001836127a4565b9150611e7b600a8661283d565b611e86906030612759565b60f81b818381518110611e9b57611e9b61287d565b60200101906001600160f81b031916908160001a905350611ebd600a86612771565b9450611e5d565b600081815b8451811015611f0957611ef582868381518110611ee857611ee861287d565b6020026020010151611f6e565b915080611f0181612822565b915050611ec9565b509392505050565b61093f8383836001611f9a565b600754600160a01b900460ff16610e5d5760405162461bcd60e51b815260206004820152601460248201527314185d5cd8589b194e881b9bdd081c185d5cd95960621b6044820152606401610cd7565b6000818310611f8a576000828152602084905260409020611483565b5060009182526020526040902090565b6000546001600160801b03166001600160a01b038516611fcc57604051622e076360e81b815260040160405180910390fd5b83611fea5760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038516600081815260046020908152604080832080546001600160801b031981166001600160401b038083168c0181169182176801000000000000000067ffffffffffffffff1990941690921783900481168c018116909202179091558584526003909252822080546001600160e01b031916909317600160a01b42909216919091021790915581905b858110156120fc5760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a48380156120d257506120d06000888488611c6d565b155b156120f0576040516368d2bf6b60e11b815260040160405180910390fd5b6001918201910161207b565b50600080546001600160801b0319166001600160801b039290921691909117905561189e565b82805461212e906127e7565b90600052602060002090601f0160209004810192826121505760008555612196565b82601f106121695782800160ff19823516178555612196565b82800160010185558215612196579182015b8281111561219657823582559160200191906001019061217b565b506121a29291506121a6565b5090565b5b808211156121a257600081556001016121a7565b80356001600160a01b03811681146121d257600080fd5b919050565b600082601f8301126121e857600080fd5b813560206121fd6121f883612736565b612706565b80838252828201915082860187848660051b890101111561221d57600080fd5b60005b8581101561223c57813584529284019290840190600101612220565b5090979650505050505050565b60006020828403121561225b57600080fd5b611483826121bb565b6000806040838503121561227757600080fd5b612280836121bb565b915061228e602084016121bb565b90509250929050565b6000806000606084860312156122ac57600080fd5b6122b5846121bb565b92506122c3602085016121bb565b9150604084013590509250925092565b600080600080608085870312156122e957600080fd5b6122f2856121bb565b935060206123018187016121bb565b93506040860135925060608601356001600160401b038082111561232457600080fd5b818801915088601f83011261233857600080fd5b81358181111561234a5761234a612893565b61235c601f8201601f19168501612706565b9150808252898482850101111561237257600080fd5b808484018584013760008482840101525080935050505092959194509250565b600080604083850312156123a557600080fd5b6123ae836121bb565b9150602083013580151581146123c357600080fd5b809150509250929050565b600080604083850312156123e157600080fd5b6123ea836121bb565b946020939093013593505050565b6000806040838503121561240b57600080fd5b82356001600160401b038082111561242257600080fd5b818501915085601f83011261243657600080fd5b813560206124466121f883612736565b8083825282820191508286018a848660051b890101111561246657600080fd5b600096505b848710156124905761247c816121bb565b83526001969096019591830191830161246b565b50965050860135925050808211156124a757600080fd5b506124b4858286016121d7565b9150509250929050565b600080602083850312156124d157600080fd5b82356001600160401b03808211156124e857600080fd5b818501915085601f8301126124fc57600080fd5b81358181111561250b57600080fd5b8660208260051b850101111561252057600080fd5b60209290920196919550909350505050565b60006020828403121561254457600080fd5b5035919050565b60006020828403121561255d57600080fd5b8135611483816128a9565b60006020828403121561257a57600080fd5b8151611483816128a9565b6000806020838503121561259857600080fd5b82356001600160401b03808211156125af57600080fd5b818501915085601f8301126125c357600080fd5b8135818111156125d257600080fd5b86602082850101111561252057600080fd5b6000602082840312156125f657600080fd5b813560ff8116811461148357600080fd5b6000815180845261261f8160208601602086016127bb565b601f01601f19169290920160200192915050565b600083516126458184602088016127bb565b8351908301906126598183602088016127bb565b64173539b7b760d91b9101908152600501949350505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906126a590830184612607565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b818110156126e7578351835292840192918401916001016126cb565b50909695505050505050565b6020815260006114836020830184612607565b604051601f8201601f191681016001600160401b038111828210171561272e5761272e612893565b604052919050565b60006001600160401b0382111561274f5761274f612893565b5060051b60200190565b6000821982111561276c5761276c612851565b500190565b60008261278057612780612867565b500490565b600081600019048311821515161561279f5761279f612851565b500290565b6000828210156127b6576127b6612851565b500390565b60005b838110156127d65781810151838201526020016127be565b838111156113115750506000910152565b600181811c908216806127fb57607f821691505b6020821081141561281c57634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561283657612836612851565b5060010190565b60008261284c5761284c612867565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b0319811681146112da57600080fdfea2646970667358221220c315f1d5e7048f6411a42a40d7687f67bc7056c75cf2ed749dee0de690afe97c64736f6c63430008070033

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

00000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000bb8000000000000000000000000000000000000000000000000000aa87bee5380000000000000000000000000000000000000000000000000000000000000000000d4de7cd1e3026fe74adaaff73629a66c9cc6815cbd47df61b19edc5bb05a2168000000000000000000000000e1599eee3ed1218e0d83b144d9066d5f327c956800000000000000000000000000000000000000000000000000000000000000012000000000000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : _baseTokenURI (string):
Arg [1] : _maxSupply (uint256): 3000
Arg [2] : _publicSalePrice (uint256): 3000000000000000
Arg [3] : _accountFree (uint8): 0
Arg [4] : _MerkleRoot (bytes32): 0xd4de7cd1e3026fe74adaaff73629a66c9cc6815cbd47df61b19edc5bb05a2168
Arg [5] : _paymentAddress (address): 0xe1599eEe3Ed1218e0d83B144D9066D5f327C9568

-----Encoded View---------------
8 Constructor Arguments found :
Arg [0] : 00000000000000000000000000000000000000000000000000000000000000c0
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000bb8
Arg [2] : 000000000000000000000000000000000000000000000000000aa87bee538000
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000000
Arg [4] : d4de7cd1e3026fe74adaaff73629a66c9cc6815cbd47df61b19edc5bb05a2168
Arg [5] : 000000000000000000000000e1599eee3ed1218e0d83b144d9066d5f327c9568
Arg [6] : 0000000000000000000000000000000000000000000000000000000000000001
Arg [7] : 2000000000000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

339:5359:12:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6342:366:13;;;;;;;;;;-1:-1:-1;6342:366:13;;;;;:::i;:::-;;:::i;:::-;;;9857:14:14;;9850:22;9832:41;;9820:2;9805:18;6342:366:13;;;;;;;;8885:98;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;733:37:12:-;;;;;;;;;;-1:-1:-1;733:37:12;;;;-1:-1:-1;;;;;733:37:12;;;;;;-1:-1:-1;;;;;8294:32:14;;;8276:51;;8264:2;8249:18;733:37:12;8130:203:14;10341:200:13;;;;;;;;;;-1:-1:-1;10341:200:13;;;;;:::i;:::-;;:::i;9918:362::-;;;;;;;;;;-1:-1:-1;9918:362:13;;;;;:::i;:::-;;:::i;:::-;;3650:274;;;;;;;;;;;;;:::i;:::-;;;15397:25:14;;;15385:2;15370:18;3650:274:13;15251:177:14;11172:164:13;;;;;;;;;;-1:-1:-1;11172:164:13;;;;;:::i;:::-;;:::i;642:47:12:-;;;;;;;;;;-1:-1:-1;642:47:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;5198:1077:13;;;;;;;;;;-1:-1:-1;5198:1077:13;;;;;:::i;:::-;;:::i;11402:179::-;;;;;;;;;;-1:-1:-1;11402:179:13;;;;;:::i;:::-;;:::i;4200:939:12:-;;;;;;;;;;-1:-1:-1;4200:939:12;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;4210:695:13:-;;;;;;;;;;-1:-1:-1;4210:695:13;;;;;:::i;:::-;;:::i;3358:117:12:-;;;;;;;;;;-1:-1:-1;3358:117:12;;;;;:::i;:::-;;:::i;1615:84:1:-;;;;;;;;;;-1:-1:-1;1685:7:1;;-1:-1:-1;;;1685:7:1;;;;1615:84;;2333:434:12;;;;;;:::i;:::-;;:::i;8701:122:13:-;;;;;;;;;;-1:-1:-1;8701:122:13;;;;;:::i;:::-;;:::i;592:43:12:-;;;;;;;;;;-1:-1:-1;592:43:12;;;;;:::i;:::-;;;;;;;;;;;;;;4127:65;;;;;;;;;;;;;:::i;3834:98::-;;;;;;;;;;-1:-1:-1;3834:98:12;;;;;:::i;:::-;;:::i;6767:203:13:-;;;;;;;;;;-1:-1:-1;6767:203:13;;;;;:::i;:::-;;:::i;1831:101:0:-;;;;;;;;;;;;;:::i;3940:105:12:-;;;;;;;;;;-1:-1:-1;3940:105:12;;;;;:::i;:::-;;:::i;1201:85:0:-;;;;;;;;;;-1:-1:-1;1273:6:0;;-1:-1:-1;;;;;1273:6:0;1201:85;;9047:102:13;;;;;;;;;;;;;:::i;456:30:12:-;;;;;;;;;;;;;:::i;524:::-;;;;;;;;;;;;;;;;1436:887;;;;;;:::i;:::-;;:::i;10608:274:13:-;;;;;;;;;;-1:-1:-1;10608:274:13;;;;;:::i;:::-;;:::i;5513:178:12:-;;;;;;;;;;;;;:::i;11647:332:13:-;;;;;;;;;;-1:-1:-1;11647:332:13;;;;;:::i;:::-;;:::i;3726:100:12:-;;;;;;;;;;-1:-1:-1;3726:100:12;;;;;:::i;:::-;;:::i;4053:66::-;;;;;;;;;;;;;:::i;3610:108::-;;;;;;;;;;-1:-1:-1;3610:108:12;;;;;:::i;:::-;;:::i;2777:460::-;;;;;;;;;;-1:-1:-1;2777:460:12;;;;;:::i;:::-;;:::i;422:27::-;;;;;;;;;;;;;:::i;493:24::-;;;;;;;;;;;;;;;;3483:119;;;;;;;;;;-1:-1:-1;3483:119:12;;;;;:::i;:::-;;:::i;5147:358::-;;;;;;:::i;:::-;;:::i;10948:162:13:-;;;;;;;;;;-1:-1:-1;10948:162:13;;;;;:::i;:::-;-1:-1:-1;;;;;11068:25:13;;;11045:4;11068:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;10948:162;2081:198:0;;;;;;;;;;-1:-1:-1;2081:198:0;;;;;:::i;:::-;;:::i;561:24:12:-;;;;;;;;;;-1:-1:-1;561:24:12;;;;;;;;;;;15605:4:14;15593:17;;;15575:36;;15563:2;15548:18;561:24:12;15433:184:14;6342:366:13;6444:4;-1:-1:-1;;;;;;6479:40:13;;-1:-1:-1;;;6479:40:13;;:104;;-1:-1:-1;;;;;;;6535:48:13;;-1:-1:-1;;;6535:48:13;6479:104;:170;;;-1:-1:-1;;;;;;;6599:50:13;;-1:-1:-1;;;6599:50:13;6479:170;:222;;;-1:-1:-1;;;;;;;;;;937:40:10;;;6665:36:13;6460:241;6342:366;-1:-1:-1;;6342:366:13:o;8885:98::-;8939:13;8971:5;8964:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8885:98;:::o;10341:200::-;10409:7;10433:16;10441:7;10433;:16::i;:::-;10428:64;;10458:34;;-1:-1:-1;;;10458:34:13;;;;;;;;;;;10428:64;-1:-1:-1;10510:24:13;;;;:15;:24;;;;;;-1:-1:-1;;;;;10510:24:13;;10341:200::o;9918:362::-;9990:13;10006:24;10022:7;10006:15;:24::i;:::-;9990:40;;10050:5;-1:-1:-1;;;;;10044:11:13;:2;-1:-1:-1;;;;;10044:11:13;;10040:48;;;10064:24;;-1:-1:-1;;;10064:24:13;;;;;;;;;;;10040:48;719:10:7;-1:-1:-1;;;;;10103:21:13;;;;;;:63;;-1:-1:-1;10129:37:13;10146:5;719:10:7;10948:162:13;:::i;10129:37::-;10128:38;10103:63;10099:136;;;10189:35;;-1:-1:-1;;;10189:35:13;;;;;;;;;;;10099:136;10245:28;10254:2;10258:7;10267:5;10245:8;:28::i;:::-;9980:300;9918:362;;:::o;3650:274::-;3703:7;3891:12;-1:-1:-1;;;;;;;;3891:12:13;;;;3875:13;;;:28;;;;3868:35;;3650:274::o;11172:164::-;11301:28;11311:4;11317:2;11321:7;11301:9;:28::i;5198:1077::-;5287:7;5319:16;5329:5;5319:9;:16::i;:::-;5310:5;:25;5306:61;;5344:23;;-1:-1:-1;;;5344:23:13;;;;;;;;;;;5306:61;5377:22;5402:13;;-1:-1:-1;;;;;5402:13:13;;5377:22;;5645:543;5665:14;5661:1;:18;5645:543;;;5704:31;5738:14;;;:11;:14;;;;;;;;;5704:48;;;;;;;;;-1:-1:-1;;;;;5704:48:13;;;;-1:-1:-1;;;5704:48:13;;-1:-1:-1;;;;;5704:48:13;;;;;;;;-1:-1:-1;;;5704:48:13;;;;;;;;;;;;;;;;5770:71;;5814:8;;;5770:71;5862:14;;-1:-1:-1;;;;;5862:28:13;;5858:109;;5934:14;;;-1:-1:-1;5858:109:13;6009:5;-1:-1:-1;;;;;5988:26:13;:17;-1:-1:-1;;;;;5988:26:13;;5984:190;;;6057:5;6042:11;:20;6038:83;;;-1:-1:-1;6097:1:13;-1:-1:-1;6090:8:13;;-1:-1:-1;;;6090:8:13;6038:83;6142:13;;;;;5984:190;5686:502;5645:543;5681:3;;5645:543;;;;6260:8;;;11402:179;11535:39;11552:4;11558:2;11562:7;11535:39;;;;;;;;;;;;:16;:39::i;4200:939:12:-;4260:16;4289:23;4315:17;4325:6;4315:9;:17::i;:::-;4289:43;;4343:30;4390:15;-1:-1:-1;;;;;4376:30:12;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;4376:30:12;;4343:63;;4417:22;4454:23;4492:26;4531:568;4556:15;4538;:33;:67;;;;-1:-1:-1;4592:13:12;;-1:-1:-1;;;;;4592:13:12;4575:30;;4538:67;4531:568;;;4622:31;4656:27;;;:11;:27;;;;;;;;;4622:61;;;;;;;;;-1:-1:-1;;;;;4622:61:12;;;;-1:-1:-1;;;4622:61:12;;-1:-1:-1;;;;;4622:61:12;;;;;;;;-1:-1:-1;;;4622:61:12;;;;;;;;;;;;;;4700:355;;4746:14;;-1:-1:-1;;;;;4746:28:12;;4742:112;;4820:14;;;-1:-1:-1;4742:112:12;4900:6;-1:-1:-1;;;;;4878:28:12;:18;-1:-1:-1;;;;;4878:28:12;;4874:166;;;4964:14;4931:13;4945:15;4931:30;;;;;;;;:::i;:::-;;;;;;;;;;:47;5003:17;;;;:::i;:::-;;;;4874:166;5071:16;;;;:::i;:::-;;;;4607:492;4531:568;;;-1:-1:-1;5118:13:12;;4200:939;-1:-1:-1;;;;;4200:939:12:o;4210:695:13:-;4277:7;4321:13;;-1:-1:-1;;;;;4321:13:13;4277:7;;4529:320;4549:14;4545:1;:18;4529:320;;;4588:31;4622:14;;;:11;:14;;;;;;;;;4588:48;;;;;;;;;-1:-1:-1;;;;;4588:48:13;;;;-1:-1:-1;;;4588:48:13;;-1:-1:-1;;;;;4588:48:13;;;;;;;;-1:-1:-1;;;4588:48:13;;;;;;;;;;;;;;4654:181;;4718:5;4703:11;:20;4699:83;;;-1:-1:-1;4758:1:13;4210:695;-1:-1:-1;;;;4210:695:13:o;4699:83::-;4803:13;;;;;4654:181;-1:-1:-1;4565:3:13;;4529:320;;;;4875:23;;-1:-1:-1;;;4875:23:13;;;;;;;;;;;3358:117:12;1094:13:0;:11;:13::i;:::-;3439:28:12::1;:12;3454:13:::0;;3439:28:::1;:::i;2333:434::-:0;1351:9;1364:10;1351:23;1343:65;;;;-1:-1:-1;;;1343:65:12;;13291:2:14;1343:65:12;;;13273:21:14;13330:2;13310:18;;;13303:30;13369:31;13349:18;;;13342:59;13418:18;;1343:65:12;;;;;;;;;1239:19:1::1;:17;:19::i;:::-;2468:28:12::2;::::0;-1:-1:-1;;2485:10:12::2;7193:2:14::0;7189:15;7185:53;2468:28:12::2;::::0;::::2;7173:66:14::0;2443:12:12::2;::::0;7255::14;;2468:28:12::2;;;;;;;;;;;;2458:39;;;;;;2443:54;;2516:50;2535:11;;2516:50;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::2;::::0;;;;-1:-1:-1;;2548:11:12::2;::::0;;-1:-1:-1;2561:4:12;;-1:-1:-1;2516:18:12::2;:50::i;:::-;2508:83;;;::::0;-1:-1:-1;;;2508:83:12;;14010:2:14;2508:83:12::2;::::0;::::2;13992:21:14::0;14049:2;14029:18;;;14022:30;-1:-1:-1;;;14068:18:14;;;14061:50;14128:18;;2508:83:12::2;13808:344:14::0;2508:83:12::2;2627:10;2611:27;::::0;;;:15:::2;:27;::::0;;;;;::::2;;2610:28;2602:79;;;::::0;-1:-1:-1;;;2602:79:12;;15046:2:14;2602:79:12::2;::::0;::::2;15028:21:14::0;15085:2;15065:18;;;15058:30;15124:34;15104:18;;;15097:62;-1:-1:-1;;;15175:18:14;;;15168:36;15221:19;;2602:79:12::2;14844:402:14::0;2602:79:12::2;2708:10;2692:27;::::0;;;:15:::2;:27;::::0;;;;:32;;-1:-1:-1;;2692:32:12::2;2720:4;2692:32:::0;;::::2;::::0;;;2735:24:::2;::::0;2708:10;2735:9:::2;:24::i;8701:122:13:-:0;8765:7;8791:20;8803:7;8791:11;:20::i;:::-;:25;;8701:122;-1:-1:-1;;8701:122:13:o;4127:65:12:-;1094:13:0;:11;:13::i;:::-;4176:8:12::1;:6;:8::i;:::-;4127:65::o:0;3834:98::-;1094:13:0;:11;:13::i;:::-;3904:9:12::1;:20:::0;3834:98::o;6767:203:13:-;6831:7;-1:-1:-1;;;;;6854:19:13;;6850:60;;6882:28;;-1:-1:-1;;;6882:28:13;;;;;;;;;;;6850:60;-1:-1:-1;;;;;;6935:19:13;;;;;:12;:19;;;;;:27;-1:-1:-1;;;;;6935:27:13;;6767:203::o;1831:101:0:-;1094:13;:11;:13::i;:::-;1895:30:::1;1922:1;1895:18;:30::i;3940:105:12:-:0;1094:13:0;:11;:13::i;:::-;4013:11:12::1;:24:::0;3940:105::o;9047:102:13:-;9103:13;9135:7;9128:14;;;;;:::i;456:30:12:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;1436:887::-;1351:9;1364:10;1351:23;1343:65;;;;-1:-1:-1;;;1343:65:12;;13291:2:14;1343:65:12;;;13273:21:14;13330:2;13310:18;;;13303:30;13369:31;13349:18;;;13342:59;13418:18;;1343:65:12;13089:353:14;1343:65:12;1239:19:1::1;:17;:19::i;:::-;1545:1:12::2;1533:9;:13;1525:42;;;::::0;-1:-1:-1;;;1525:42:12;;12598:2:14;1525:42:12::2;::::0;::::2;12580:21:14::0;12637:2;12617:18;;;12610:30;-1:-1:-1;;;12656:18:14;;;12649:46;12712:18;;1525:42:12::2;12396:340:14::0;1525:42:12::2;1599:2;1586:9;:15;;1578:44;;;::::0;-1:-1:-1;;;1578:44:12;;12598:2:14;1578:44:12::2;::::0;::::2;12580:21:14::0;12637:2;12617:18;;;12610:30;-1:-1:-1;;;12656:18:14;;;12649:46;12712:18;;1578:44:12::2;12396:340:14::0;1578:44:12::2;1670:9;;1657;1641:13;:11;:13::i;:::-;:25;;;;:::i;:::-;:38;;1633:64;;;::::0;-1:-1:-1;;;1633:64:12;;14359:2:14;1633:64:12::2;::::0;::::2;14341:21:14::0;14398:2;14378:18;;;14371:30;-1:-1:-1;;;14417:18:14;;;14410:43;14470:18;;1633:64:12::2;14157:337:14::0;1633:64:12::2;1779:10;1710:27;1770:20:::0;;;:8:::2;:20;::::0;;;;;1756:11:::2;::::0;::::2;;:34;1752:124;;;1853:10;1844:20;::::0;;;:8:::2;:20;::::0;;;;;1830:11:::2;::::0;:34:::2;::::0;1844:20;1830:11:::2;;:34;:::i;:::-;1808:56;;1752:124;1888:21;1940:19;1928:9;:31;1924:131;;;2028:15;::::0;1993:31:::2;2005:19:::0;1993:9;:31:::2;:::i;:::-;1992:51;;;;:::i;:::-;1976:67;;1924:131;2088:13;2075:9;:26;;2067:58;;;::::0;-1:-1:-1;;;2067:58:12;;12943:2:14;2067:58:12::2;::::0;::::2;12925:21:14::0;12982:2;12962:18;;;12955:30;-1:-1:-1;;;13001:18:14;;;12994:49;13060:18;;2067:58:12::2;12741:343:14::0;2067:58:12::2;2140:9;:11:::0;2136:95:::2;;2186:14;::::0;2168:51:::2;::::0;-1:-1:-1;;;;;2186:14:12::2;2202:13;2212:3;2202:9;:13;:::i;:::-;:16;::::0;2216:2:::2;2202:16;:::i;:::-;2168:17;:51::i;:::-;2250:10;2241:20;::::0;;;:8:::2;:20;::::0;;;;:31;;2263:9;;2241:20;:31:::2;::::0;2263:9;;2241:31:::2;:::i;:::-;::::0;;;-1:-1:-1;2283:32:12::2;::::0;-1:-1:-1;2293:10:12::2;2305:9:::0;2283::::2;:32::i;10608:274:13:-:0;-1:-1:-1;;;;;10698:24:13;;719:10:7;10698:24:13;10694:54;;;10731:17;;-1:-1:-1;;;10731:17:13;;;;;;;;;;;10694:54;719:10:7;10759:32:13;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;10759:42:13;;;;;;;;;;;;:53;;-1:-1:-1;;10759:53:13;;;;;;;;;;10827:48;;9832:41:14;;;10759:42:13;;719:10:7;10827:48:13;;9805:18:14;10827:48:13;;;;;;;10608:274;;:::o;5513:178:12:-;1094:13:0;:11;:13::i;:::-;5586:50:12::1;::::0;5569:12:::1;::::0;5586:10:::1;::::0;5610:21:::1;::::0;5569:12;5586:50;5569:12;5586:50;5610:21;5586:10;:50:::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5568:68;;;5655:7;5647:36;;;::::0;-1:-1:-1;;;5647:36:12;;14701:2:14;5647:36:12::1;::::0;::::1;14683:21:14::0;14740:2;14720:18;;;14713:30;-1:-1:-1;;;14759:18:14;;;14752:46;14815:18;;5647:36:12::1;14499:340:14::0;5647:36:12::1;5557:134;5513:178::o:0;11647:332:13:-;11808:28;11818:4;11824:2;11828:7;11808:9;:28::i;:::-;11851:48;11874:4;11880:2;11884:7;11893:5;11851:22;:48::i;:::-;11846:127;;11922:40;;-1:-1:-1;;;11922:40:13;;;;;;;;;;;11846:127;11647:332;;;;:::o;3726:100:12:-;1094:13:0;:11;:13::i;:::-;3796:11:12::1;:22:::0;;-1:-1:-1;;3796:22:12::1;;::::0;;;::::1;::::0;;;::::1;::::0;;3726:100::o;4053:66::-;1094:13:0;:11;:13::i;:::-;4101:10:12::1;:8;:10::i;3610:108::-:0;1094:13:0;:11;:13::i;:::-;3683:15:12::1;:27:::0;3610:108::o;2777:460::-;2850:13;2884:16;2892:7;2884;:16::i;:::-;2876:62;;;;-1:-1:-1;;;2876:62:12;;10659:2:14;2876:62:12;;;10641:21:14;10698:2;10678:18;;;10671:30;10737:34;10717:18;;;10710:62;-1:-1:-1;;;10788:18:14;;;10781:31;10829:19;;2876:62:12;10457:397:14;2876:62:12;2949:28;2980:10;:8;:10::i;:::-;2949:41;;3048:1;3023:14;3017:28;:32;:212;;3214:15;3017:212;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3108:14;3141:18;:7;:16;:18::i;:::-;3073:127;;;;;;;;;:::i;:::-;;;;;;;;;;;;;3017:212;3001:228;2777:460;-1:-1:-1;;;2777:460:12:o;422:27::-;;;;;;;:::i;3483:119::-;1094:13:0;:11;:13::i;:::-;3565:29:12::1;:15;3583:11:::0;;3565:29:::1;:::i;5147:358::-:0;1094:13:0;:11;:13::i;:::-;1239:19:1::1;:17;:19::i;:::-;5288:9:12::2;5283:215;5307:17;:24;5303:1;:28;5283:215;;;5396:9;;5377:12;5390:1;5377:15;;;;;;;;:::i;:::-;;;;;;;5361:13;:11;:13::i;:::-;:31;;;;:::i;:::-;:44;;5353:70;;;::::0;-1:-1:-1;;;5353:70:12;;14359:2:14;5353:70:12::2;::::0;::::2;14341:21:14::0;14398:2;14378:18;;;14371:30;-1:-1:-1;;;14417:18:14;;;14410:43;14470:18;;5353:70:12::2;14157:337:14::0;5353:70:12::2;5438:48;5448:17;5466:1;5448:20;;;;;;;;:::i;:::-;;;;;;;5470:12;5483:1;5470:15;;;;;;;;:::i;:::-;;;;;;;5438:9;:48::i;:::-;5333:3:::0;::::2;::::0;::::2;:::i;:::-;;;;5283:215;;2081:198:0::0;1094:13;:11;:13::i;:::-;-1:-1:-1;;;;;2169:22:0;::::1;2161:73;;;::::0;-1:-1:-1;;;2161:73:0;;11061:2:14;2161:73:0::1;::::0;::::1;11043:21:14::0;11100:2;11080:18;;;11073:30;11139:34;11119:18;;;11112:62;-1:-1:-1;;;11190:18:14;;;11183:36;11236:19;;2161:73:0::1;10859:402:14::0;2161:73:0::1;2244:28;2263:8;2244:18;:28::i;12225:142:13:-:0;12282:4;12315:13;;-1:-1:-1;;;;;12315:13:13;12305:23;;:55;;;;-1:-1:-1;;12333:20:13;;;;:11;:20;;;;;:27;-1:-1:-1;;;12333:27:13;;;;12332:28;;12225:142::o;19254:189::-;19364:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;19364:29:13;-1:-1:-1;;;;;19364:29:13;;;;;;;;;19408:28;;19364:24;;19408:28;;;;;;;19254:189;;;:::o;14859:2067::-;14969:35;15007:20;15019:7;15007:11;:20::i;:::-;15080:18;;14969:58;;-1:-1:-1;15038:22:13;;-1:-1:-1;;;;;15064:34:13;719:10:7;-1:-1:-1;;;;;15064:34:13;;:100;;;-1:-1:-1;15131:18:13;;15114:50;;719:10:7;10948:162:13;:::i;15114:50::-;15064:152;;;-1:-1:-1;719:10:7;15180:20:13;15192:7;15180:11;:20::i;:::-;-1:-1:-1;;;;;15180:36:13;;15064:152;15038:179;;15233:17;15228:66;;15259:35;;-1:-1:-1;;;15259:35:13;;;;;;;;;;;15228:66;15330:4;-1:-1:-1;;;;;15308:26:13;:13;:18;;;-1:-1:-1;;;;;15308:26:13;;15304:67;;15343:28;;-1:-1:-1;;;15343:28:13;;;;;;;;;;;15304:67;-1:-1:-1;;;;;15385:16:13;;15381:52;;15410:23;;-1:-1:-1;;;15410:23:13;;;;;;;;;;;15381:52;15549:49;15566:1;15570:7;15579:13;:18;;;15549:8;:49::i;:::-;-1:-1:-1;;;;;15888:18:13;;;;;;;:12;:18;;;;;;;;:31;;-1:-1:-1;;15888:31:13;;;-1:-1:-1;;;;;15888:31:13;;;-1:-1:-1;;15888:31:13;;;;;;;15933:16;;;;;;;;;:29;;;;;;;;-1:-1:-1;15933:29:13;;;;;;;;;;;15977:20;;;:11;:20;;;;;;:30;;-1:-1:-1;;;;;;16021:61:13;;;;-1:-1:-1;;;16066:15:13;16021:61;;;;;;;;;;;16352:11;;;16381:24;;;;;:29;16352:11;;16381:29;16377:438;;16603:13;;-1:-1:-1;;;;;16603:13:13;16589:27;;16585:216;;;16672:18;;;16640:24;;;:11;:24;;;;;;;;:50;;16754:28;;;;-1:-1:-1;;;;;16712:70:13;-1:-1:-1;;;16712:70:13;-1:-1:-1;;;;;;16712:70:13;;;-1:-1:-1;;;;;16640:50:13;;;16712:70;;;;;;;16585:216;15864:961;16859:7;16855:2;-1:-1:-1;;;;;16840:27:13;16849:4;-1:-1:-1;;;;;16840:27:13;;;;;;;;;;;16877:42;14959:1967;;14859:2067;;;:::o;1359:130:0:-;1273:6;;-1:-1:-1;;;;;1273:6:0;719:10:7;1422:23:0;1414:68;;;;-1:-1:-1;;;1414:68:0;;13649:2:14;1414:68:0;;;13631:21:14;;;13668:18;;;13661:30;13727:34;13707:18;;;13700:62;13779:18;;1414:68:0;13447:356:14;1767:106:1;1685:7;;-1:-1:-1;;;1685:7:1;;;;1836:9;1828:38;;;;-1:-1:-1;;;1828:38:1;;12253:2:14;1828:38:1;;;12235:21:14;12292:2;12272:18;;;12265:30;-1:-1:-1;;;12311:18:14;;;12304:46;12367:18;;1828:38:1;12051:340:14;1153:184:9;1274:4;1326;1297:25;1310:5;1317:4;1297:12;:25::i;:::-;:33;;1153:184;-1:-1:-1;;;;1153:184:9:o;12373:102:13:-;12441:27;12451:2;12455:8;12441:27;;;;;;;;;;;;:9;:27::i;:::-;12373:102;;:::o;7586:1058::-;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;7748:13:13;;7695:7;;-1:-1:-1;;;;;7748:13:13;7741:20;;7737:843;;;7781:31;7815:17;;;:11;:17;;;;;;;;;7781:51;;;;;;;;;-1:-1:-1;;;;;7781:51:13;;;;-1:-1:-1;;;7781:51:13;;-1:-1:-1;;;;;7781:51:13;;;;;;;;-1:-1:-1;;;7781:51:13;;;;;;;;;;;;;;7850:716;;7899:14;;-1:-1:-1;;;;;7899:28:13;;7895:99;;7962:9;7586:1058;-1:-1:-1;;;7586:1058:13:o;7895:99::-;-1:-1:-1;;;8332:6:13;8376:17;;;;:11;:17;;;;;;;;;8364:29;;;;;;;;;-1:-1:-1;;;;;8364:29:13;;;;;-1:-1:-1;;;8364:29:13;;-1:-1:-1;;;;;8364:29:13;;;;;;;;-1:-1:-1;;;8364:29:13;;;;;;;;;;;;;8423:28;8419:107;;8490:9;7586:1058;-1:-1:-1;;;7586:1058:13:o;8419:107::-;8293:255;;;7763:817;7737:843;8606:31;;-1:-1:-1;;;8606:31:13;;;;;;;;;;;2186:115:1;1239:19;:17;:19::i;:::-;2245:7:::1;:14:::0;;-1:-1:-1;;;;2245:14:1::1;-1:-1:-1::0;;;2245:14:1::1;::::0;;2274:20:::1;2281:12;719:10:7::0;;640:96;2281:12:1::1;2274:20;::::0;-1:-1:-1;;;;;8294:32:14;;;8276:51;;8264:2;8249:18;2274:20:1::1;;;;;;;2186:115::o:0;2433:187:0:-;2525:6;;;-1:-1:-1;;;;;2541:17:0;;;-1:-1:-1;;;;;;2541:17:0;;;;;;;2573:40;;2525:6;;;2541:17;2525:6;;2573:40;;2506:16;;2573:40;2496:124;2433:187;:::o;2412:312:6:-;2526:6;2501:21;:31;;2493:73;;;;-1:-1:-1;;;2493:73:6;;11895:2:14;2493:73:6;;;11877:21:14;11934:2;11914:18;;;11907:30;11973:31;11953:18;;;11946:59;12022:18;;2493:73:6;11693:353:14;2493:73:6;2578:12;2596:9;-1:-1:-1;;;;;2596:14:6;2618:6;2596:33;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2577:52;;;2647:7;2639:78;;;;-1:-1:-1;;;2639:78:6;;11468:2:14;2639:78:6;;;11450:21:14;11507:2;11487:18;;;11480:30;11546:34;11526:18;;;11519:62;11617:28;11597:18;;;11590:56;11663:19;;2639:78:6;11266:422:14;19996:769:13;20146:4;-1:-1:-1;;;;;20166:13:13;;1465:19:6;:23;20162:597:13;;20201:72;;-1:-1:-1;;;20201:72:13;;-1:-1:-1;;;;;20201:36:13;;;;;:72;;719:10:7;;20252:4:13;;20258:7;;20267:5;;20201:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;20201:72:13;;;;;;;;-1:-1:-1;;20201:72:13;;;;;;;;;;;;:::i;:::-;;;20197:510;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;20444:13:13;;20440:253;;20493:40;;-1:-1:-1;;;20493:40:13;;;;;;;;;;;20440:253;20645:6;20639:13;20630:6;20626:2;20622:15;20615:38;20197:510;-1:-1:-1;;;;;;20323:55:13;-1:-1:-1;;;20323:55:13;;-1:-1:-1;20316:62:13;;20162:597;-1:-1:-1;20744:4:13;20162:597;19996:769;;;;;;:::o;2433:117:1:-;1486:16;:14;:16::i;:::-;2491:7:::1;:15:::0;;-1:-1:-1;;;;2491:15:1::1;::::0;;2521:22:::1;719:10:7::0;2530:12:1::1;640:96:7::0;3245:105:12;3297:13;3330:12;3323:19;;;;;:::i;392:703:8:-;448:13;665:10;661:51;;-1:-1:-1;;691:10:8;;;;;;;;;;;;-1:-1:-1;;;691:10:8;;;;;392:703::o;661:51::-;736:5;721:12;775:75;782:9;;775:75;;807:8;;;;:::i;:::-;;-1:-1:-1;829:10:8;;-1:-1:-1;837:2:8;829:10;;:::i;:::-;;;775:75;;;859:19;891:6;-1:-1:-1;;;;;881:17:8;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;881:17:8;;859:39;;908:150;915:10;;908:150;;941:11;951:1;941:11;;:::i;:::-;;-1:-1:-1;1009:10:8;1017:2;1009:5;:10;:::i;:::-;996:24;;:2;:24;:::i;:::-;983:39;;966:6;973;966:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;966:56:8;;;;;;;;-1:-1:-1;1036:11:8;1045:2;1036:11;;:::i;:::-;;;908:150;;1991:290:9;2074:7;2116:4;2074:7;2130:116;2154:5;:12;2150:1;:16;2130:116;;;2202:33;2212:12;2226:5;2232:1;2226:8;;;;;;;;:::i;:::-;;;;;;;2202:9;:33::i;:::-;2187:48;-1:-1:-1;2168:3:9;;;;:::i;:::-;;;;2130:116;;;-1:-1:-1;2262:12:9;1991:290;-1:-1:-1;;;1991:290:9:o;12826:157:13:-;12944:32;12950:2;12954:8;12964:5;12971:4;12944:5;:32::i;1945:106:1:-;1685:7;;-1:-1:-1;;;1685:7:1;;;;2003:41;;;;-1:-1:-1;;;2003:41:1;;10310:2:14;2003:41:1;;;10292:21:14;10349:2;10329:18;;;10322:30;-1:-1:-1;;;10368:18:14;;;10361:50;10428:18;;2003:41:1;10108:344:14;8054:147:9;8117:7;8147:1;8143;:5;:51;;8275:13;8366:15;;;8401:4;8394:15;;;8447:4;8431:21;;8143:51;;;-1:-1:-1;8275:13:9;8366:15;;;8401:4;8394:15;8447:4;8431:21;;;8054:147::o;13230:1387:13:-;13363:20;13386:13;-1:-1:-1;;;;;13386:13:13;-1:-1:-1;;;;;13413:16:13;;13409:48;;13438:19;;-1:-1:-1;;;13438:19:13;;;;;;;;;;;13409:48;13471:13;13467:44;;13493:18;;-1:-1:-1;;;13493:18:13;;;;;;;;;;;13467:44;-1:-1:-1;;;;;13855:16:13;;;;;;:12;:16;;;;;;;;:44;;-1:-1:-1;;;;;;13913:49:13;;-1:-1:-1;;;;;13855:44:13;;;;;;;13913:49;;;;-1:-1:-1;;13855:44:13;;;;;;13913:49;;;;;;;;;;;;;;;;13977:25;;;:11;:25;;;;;:35;;-1:-1:-1;;;;;;14026:66:13;;;;-1:-1:-1;;;14076:15:13;14026:66;;;;;;;;;;;13977:25;;14157:322;14177:8;14173:1;:12;14157:322;;;14215:38;;14240:12;;-1:-1:-1;;;;;14215:38:13;;;14232:1;;14215:38;;14232:1;;14215:38;14275:4;:68;;;;;14284:59;14315:1;14319:2;14323:12;14337:5;14284:22;:59::i;:::-;14283:60;14275:68;14271:162;;;14374:40;;-1:-1:-1;;;14374:40:13;;;;;;;;;;;14271:162;14450:14;;;;;14187:3;14157:322;;;-1:-1:-1;14493:13:13;:37;;-1:-1:-1;;;;;;14493:37:13;-1:-1:-1;;;;;14493:37:13;;;;;;;;;;14550:60;11647:332;-1:-1:-1;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:173:14;82:20;;-1:-1:-1;;;;;131:31:14;;121:42;;111:70;;177:1;174;167:12;111:70;14:173;;;:::o;192:673::-;246:5;299:3;292:4;284:6;280:17;276:27;266:55;;317:1;314;307:12;266:55;353:6;340:20;379:4;403:60;419:43;459:2;419:43;:::i;:::-;403:60;:::i;:::-;485:3;509:2;504:3;497:15;537:2;532:3;528:12;521:19;;572:2;564:6;560:15;624:3;619:2;613;610:1;606:10;598:6;594:23;590:32;587:41;584:61;;;641:1;638;631:12;584:61;663:1;673:163;687:2;684:1;681:9;673:163;;;744:17;;732:30;;782:12;;;;814;;;;705:1;698:9;673:163;;;-1:-1:-1;854:5:14;;192:673;-1:-1:-1;;;;;;;192:673:14:o;870:186::-;929:6;982:2;970:9;961:7;957:23;953:32;950:52;;;998:1;995;988:12;950:52;1021:29;1040:9;1021:29;:::i;1061:260::-;1129:6;1137;1190:2;1178:9;1169:7;1165:23;1161:32;1158:52;;;1206:1;1203;1196:12;1158:52;1229:29;1248:9;1229:29;:::i;:::-;1219:39;;1277:38;1311:2;1300:9;1296:18;1277:38;:::i;:::-;1267:48;;1061:260;;;;;:::o;1326:328::-;1403:6;1411;1419;1472:2;1460:9;1451:7;1447:23;1443:32;1440:52;;;1488:1;1485;1478:12;1440:52;1511:29;1530:9;1511:29;:::i;:::-;1501:39;;1559:38;1593:2;1582:9;1578:18;1559:38;:::i;:::-;1549:48;;1644:2;1633:9;1629:18;1616:32;1606:42;;1326:328;;;;;:::o;1659:980::-;1754:6;1762;1770;1778;1831:3;1819:9;1810:7;1806:23;1802:33;1799:53;;;1848:1;1845;1838:12;1799:53;1871:29;1890:9;1871:29;:::i;:::-;1861:39;;1919:2;1940:38;1974:2;1963:9;1959:18;1940:38;:::i;:::-;1930:48;;2025:2;2014:9;2010:18;1997:32;1987:42;;2080:2;2069:9;2065:18;2052:32;-1:-1:-1;;;;;2144:2:14;2136:6;2133:14;2130:34;;;2160:1;2157;2150:12;2130:34;2198:6;2187:9;2183:22;2173:32;;2243:7;2236:4;2232:2;2228:13;2224:27;2214:55;;2265:1;2262;2255:12;2214:55;2301:2;2288:16;2323:2;2319;2316:10;2313:36;;;2329:18;;:::i;:::-;2371:53;2414:2;2395:13;;-1:-1:-1;;2391:27:14;2387:36;;2371:53;:::i;:::-;2358:66;;2447:2;2440:5;2433:17;2487:7;2482:2;2477;2473;2469:11;2465:20;2462:33;2459:53;;;2508:1;2505;2498:12;2459:53;2563:2;2558;2554;2550:11;2545:2;2538:5;2534:14;2521:45;2607:1;2602:2;2597;2590:5;2586:14;2582:23;2575:34;;2628:5;2618:15;;;;;1659:980;;;;;;;:::o;2644:347::-;2709:6;2717;2770:2;2758:9;2749:7;2745:23;2741:32;2738:52;;;2786:1;2783;2776:12;2738:52;2809:29;2828:9;2809:29;:::i;:::-;2799:39;;2888:2;2877:9;2873:18;2860:32;2935:5;2928:13;2921:21;2914:5;2911:32;2901:60;;2957:1;2954;2947:12;2901:60;2980:5;2970:15;;;2644:347;;;;;:::o;2996:254::-;3064:6;3072;3125:2;3113:9;3104:7;3100:23;3096:32;3093:52;;;3141:1;3138;3131:12;3093:52;3164:29;3183:9;3164:29;:::i;:::-;3154:39;3240:2;3225:18;;;;3212:32;;-1:-1:-1;;;2996:254:14:o;3255:1157::-;3373:6;3381;3434:2;3422:9;3413:7;3409:23;3405:32;3402:52;;;3450:1;3447;3440:12;3402:52;3490:9;3477:23;-1:-1:-1;;;;;3560:2:14;3552:6;3549:14;3546:34;;;3576:1;3573;3566:12;3546:34;3614:6;3603:9;3599:22;3589:32;;3659:7;3652:4;3648:2;3644:13;3640:27;3630:55;;3681:1;3678;3671:12;3630:55;3717:2;3704:16;3739:4;3763:60;3779:43;3819:2;3779:43;:::i;3763:60::-;3845:3;3869:2;3864:3;3857:15;3897:2;3892:3;3888:12;3881:19;;3928:2;3924;3920:11;3976:7;3971:2;3965;3962:1;3958:10;3954:2;3950:19;3946:28;3943:41;3940:61;;;3997:1;3994;3987:12;3940:61;4019:1;4010:10;;4029:169;4043:2;4040:1;4037:9;4029:169;;;4100:23;4119:3;4100:23;:::i;:::-;4088:36;;4061:1;4054:9;;;;;4144:12;;;;4176;;4029:169;;;-1:-1:-1;4217:5:14;-1:-1:-1;;4260:18:14;;4247:32;;-1:-1:-1;;4291:16:14;;;4288:36;;;4320:1;4317;4310:12;4288:36;;4343:63;4398:7;4387:8;4376:9;4372:24;4343:63;:::i;:::-;4333:73;;;3255:1157;;;;;:::o;4417:615::-;4503:6;4511;4564:2;4552:9;4543:7;4539:23;4535:32;4532:52;;;4580:1;4577;4570:12;4532:52;4620:9;4607:23;-1:-1:-1;;;;;4690:2:14;4682:6;4679:14;4676:34;;;4706:1;4703;4696:12;4676:34;4744:6;4733:9;4729:22;4719:32;;4789:7;4782:4;4778:2;4774:13;4770:27;4760:55;;4811:1;4808;4801:12;4760:55;4851:2;4838:16;4877:2;4869:6;4866:14;4863:34;;;4893:1;4890;4883:12;4863:34;4946:7;4941:2;4931:6;4928:1;4924:14;4920:2;4916:23;4912:32;4909:45;4906:65;;;4967:1;4964;4957:12;4906:65;4998:2;4990:11;;;;;5020:6;;-1:-1:-1;4417:615:14;;-1:-1:-1;;;;4417:615:14:o;5037:180::-;5096:6;5149:2;5137:9;5128:7;5124:23;5120:32;5117:52;;;5165:1;5162;5155:12;5117:52;-1:-1:-1;5188:23:14;;5037:180;-1:-1:-1;5037:180:14:o;5222:245::-;5280:6;5333:2;5321:9;5312:7;5308:23;5304:32;5301:52;;;5349:1;5346;5339:12;5301:52;5388:9;5375:23;5407:30;5431:5;5407:30;:::i;5472:249::-;5541:6;5594:2;5582:9;5573:7;5569:23;5565:32;5562:52;;;5610:1;5607;5600:12;5562:52;5642:9;5636:16;5661:30;5685:5;5661:30;:::i;5726:592::-;5797:6;5805;5858:2;5846:9;5837:7;5833:23;5829:32;5826:52;;;5874:1;5871;5864:12;5826:52;5914:9;5901:23;-1:-1:-1;;;;;5984:2:14;5976:6;5973:14;5970:34;;;6000:1;5997;5990:12;5970:34;6038:6;6027:9;6023:22;6013:32;;6083:7;6076:4;6072:2;6068:13;6064:27;6054:55;;6105:1;6102;6095:12;6054:55;6145:2;6132:16;6171:2;6163:6;6160:14;6157:34;;;6187:1;6184;6177:12;6157:34;6232:7;6227:2;6218:6;6214:2;6210:15;6206:24;6203:37;6200:57;;;6253:1;6250;6243:12;6508:269;6565:6;6618:2;6606:9;6597:7;6593:23;6589:32;6586:52;;;6634:1;6631;6624:12;6586:52;6673:9;6660:23;6723:4;6716:5;6712:16;6705:5;6702:27;6692:55;;6743:1;6740;6733:12;6782:257;6823:3;6861:5;6855:12;6888:6;6883:3;6876:19;6904:63;6960:6;6953:4;6948:3;6944:14;6937:4;6930:5;6926:16;6904:63;:::i;:::-;7021:2;7000:15;-1:-1:-1;;6996:29:14;6987:39;;;;7028:4;6983:50;;6782:257;-1:-1:-1;;6782:257:14:o;7278:637::-;7558:3;7596:6;7590:13;7612:53;7658:6;7653:3;7646:4;7638:6;7634:17;7612:53;:::i;:::-;7728:13;;7687:16;;;;7750:57;7728:13;7687:16;7784:4;7772:17;;7750:57;:::i;:::-;-1:-1:-1;;;7829:20:14;;7858:22;;;7907:1;7896:13;;7278:637;-1:-1:-1;;;;7278:637:14:o;8562:488::-;-1:-1:-1;;;;;8831:15:14;;;8813:34;;8883:15;;8878:2;8863:18;;8856:43;8930:2;8915:18;;8908:34;;;8978:3;8973:2;8958:18;;8951:31;;;8756:4;;8999:45;;9024:19;;9016:6;8999:45;:::i;:::-;8991:53;8562:488;-1:-1:-1;;;;;;8562:488:14:o;9055:632::-;9226:2;9278:21;;;9348:13;;9251:18;;;9370:22;;;9197:4;;9226:2;9449:15;;;;9423:2;9408:18;;;9197:4;9492:169;9506:6;9503:1;9500:13;9492:169;;;9567:13;;9555:26;;9636:15;;;;9601:12;;;;9528:1;9521:9;9492:169;;;-1:-1:-1;9678:3:14;;9055:632;-1:-1:-1;;;;;;9055:632:14:o;9884:219::-;10033:2;10022:9;10015:21;9996:4;10053:44;10093:2;10082:9;10078:18;10070:6;10053:44;:::i;15622:275::-;15693:2;15687:9;15758:2;15739:13;;-1:-1:-1;;15735:27:14;15723:40;;-1:-1:-1;;;;;15778:34:14;;15814:22;;;15775:62;15772:88;;;15840:18;;:::i;:::-;15876:2;15869:22;15622:275;;-1:-1:-1;15622:275:14:o;15902:183::-;15962:4;-1:-1:-1;;;;;15987:6:14;15984:30;15981:56;;;16017:18;;:::i;:::-;-1:-1:-1;16062:1:14;16058:14;16074:4;16054:25;;15902:183::o;16090:128::-;16130:3;16161:1;16157:6;16154:1;16151:13;16148:39;;;16167:18;;:::i;:::-;-1:-1:-1;16203:9:14;;16090:128::o;16223:120::-;16263:1;16289;16279:35;;16294:18;;:::i;:::-;-1:-1:-1;16328:9:14;;16223:120::o;16348:168::-;16388:7;16454:1;16450;16446:6;16442:14;16439:1;16436:21;16431:1;16424:9;16417:17;16413:45;16410:71;;;16461:18;;:::i;:::-;-1:-1:-1;16501:9:14;;16348:168::o;16521:125::-;16561:4;16589:1;16586;16583:8;16580:34;;;16594:18;;:::i;:::-;-1:-1:-1;16631:9:14;;16521:125::o;16651:258::-;16723:1;16733:113;16747:6;16744:1;16741:13;16733:113;;;16823:11;;;16817:18;16804:11;;;16797:39;16769:2;16762:10;16733:113;;;16864:6;16861:1;16858:13;16855:48;;;-1:-1:-1;;16899:1:14;16881:16;;16874:27;16651:258::o;16914:380::-;16993:1;16989:12;;;;17036;;;17057:61;;17111:4;17103:6;17099:17;17089:27;;17057:61;17164:2;17156:6;17153:14;17133:18;17130:38;17127:161;;;17210:10;17205:3;17201:20;17198:1;17191:31;17245:4;17242:1;17235:15;17273:4;17270:1;17263:15;17127:161;;16914:380;;;:::o;17299:135::-;17338:3;-1:-1:-1;;17359:17:14;;17356:43;;;17379:18;;:::i;:::-;-1:-1:-1;17426:1:14;17415:13;;17299:135::o;17439:112::-;17471:1;17497;17487:35;;17502:18;;:::i;:::-;-1:-1:-1;17536:9:14;;17439:112::o;17556:127::-;17617:10;17612:3;17608:20;17605:1;17598:31;17648:4;17645:1;17638:15;17672:4;17669:1;17662:15;17688:127;17749:10;17744:3;17740:20;17737:1;17730:31;17780:4;17777:1;17770:15;17804:4;17801:1;17794:15;17820:127;17881:10;17876:3;17872:20;17869:1;17862:31;17912:4;17909:1;17902:15;17936:4;17933:1;17926:15;17952:127;18013:10;18008:3;18004:20;18001:1;17994:31;18044:4;18041:1;18034:15;18068:4;18065:1;18058:15;18084:131;-1:-1:-1;;;;;;18158:32:14;;18148:43;;18138:71;;18205:1;18202;18195:12

Swarm Source

ipfs://c315f1d5e7048f6411a42a40d7687f67bc7056c75cf2ed749dee0de690afe97c
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.