ETH Price: $3,284.20 (-3.70%)
Gas: 16 Gwei

Token

Epic Elephants Squad (EES)
 

Overview

Max Total Supply

4,000 EES

Holders

836

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
yourfriendm.eth
Balance
4 EES
0xb34e4285de1a6d06e15964f84783ce1978df26a3
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:
Contract

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, GNU LGPLv3 license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-01-14
*/

// File: @openzeppelin/contracts/utils/Strings.sol


// OpenZeppelin Contracts v4.4.1 (utils/Strings.sol)

pragma solidity ^0.8.0;

/**
 * @dev String operations.
 */
library Strings {
    bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef";

    /**
     * @dev Converts a `uint256` to its ASCII `string` decimal representation.
     */
    function toString(uint256 value) internal pure returns (string memory) {
        // Inspired by OraclizeAPI's implementation - MIT licence
        // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol

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

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

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

// File: @openzeppelin/contracts/utils/Context.sol


// 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: @openzeppelin/contracts/access/Ownable.sol


// OpenZeppelin Contracts v4.4.1 (access/Ownable.sol)

pragma solidity ^0.8.0;


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

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

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

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

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
        _;
    }

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions anymore. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby removing any functionality that is only available to the owner.
     */
    function renounceOwnership() public virtual onlyOwner {
        _transferOwnership(address(0));
    }

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

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

// File: @openzeppelin/contracts/utils/Address.sol


// OpenZeppelin Contracts v4.4.1 (utils/Address.sol)

pragma solidity ^0.8.0;

/**
 * @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
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize, which returns 0 for contracts in
        // construction, since the code is only stored at the end of the
        // constructor execution.

        uint256 size;
        assembly {
            size := extcodesize(account)
        }
        return size > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

                assembly {
                    let returndata_size := mload(returndata)
                    revert(add(32, returndata), returndata_size)
                }
            } else {
                revert(errorMessage);
            }
        }
    }
}

// File: @openzeppelin/contracts/token/ERC721/IERC721Receiver.sol


// OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721Receiver.sol)

pragma solidity ^0.8.0;

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

// File: @openzeppelin/contracts/utils/introspection/IERC165.sol


// OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol)

pragma solidity ^0.8.0;

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

// File: @openzeppelin/contracts/utils/introspection/ERC165.sol


// OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol)

pragma solidity ^0.8.0;


/**
 * @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: @openzeppelin/contracts/token/ERC721/IERC721.sol


// OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721.sol)

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

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

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

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

// File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Enumerable.sol


// OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Enumerable.sol)

pragma solidity ^0.8.0;


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

    /**
     * @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: @openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol


// OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol)

pragma solidity ^0.8.0;


/**
 * @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: @openzeppelin/contracts/token/ERC721/ERC721.sol


// OpenZeppelin Contracts v4.4.1 (token/ERC721/ERC721.sol)

pragma solidity ^0.8.0;








/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
 * the Metadata extension, but not including the Enumerable extension, which is available separately as
 * {ERC721Enumerable}.
 */
contract ERC721 is Context, ERC165, IERC721, IERC721Metadata {
    using Address for address;
    using Strings for uint256;

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

    // Mapping from token ID to owner address
    mapping(uint256 => address) private _owners;

    // Mapping owner address to token count
    mapping(address => uint256) private _balances;

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

    /**
     * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection.
     */
    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

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

    /**
     * @dev See {IERC721-balanceOf}.
     */
    function balanceOf(address owner) public view virtual override returns (uint256) {
        require(owner != address(0), "ERC721: balance query for the zero address");
        return _balances[owner];
    }

    /**
     * @dev See {IERC721-ownerOf}.
     */
    function ownerOf(uint256 tokenId) public view virtual override returns (address) {
        address owner = _owners[tokenId];
        require(owner != address(0), "ERC721: owner query for nonexistent token");
        return owner;
    }

    /**
     * @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) {
        require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token");

        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 virtual override {
        address owner = ERC721.ownerOf(tokenId);
        require(to != owner, "ERC721: approval to current owner");

        require(
            _msgSender() == owner || isApprovedForAll(owner, _msgSender()),
            "ERC721: approve caller is not owner nor approved for all"
        );

        _approve(to, tokenId);
    }

    /**
     * @dev See {IERC721-getApproved}.
     */
    function getApproved(uint256 tokenId) public view virtual override returns (address) {
        require(_exists(tokenId), "ERC721: approved query for nonexistent token");

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public virtual override {
        _setApprovalForAll(_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 {
        //solhint-disable-next-line max-line-length
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved");

        _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 {
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved");
        _safeTransfer(from, to, tokenId, _data);
    }

    /**
     * @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.
     *
     * `_data` is additional data, it has no specified format and it is sent in call to `to`.
     *
     * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g.
     * implement alternative mechanisms to perform token transfer, such as signature-based.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function _safeTransfer(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) internal virtual {
        _transfer(from, to, tokenId);
        require(_checkOnERC721Received(from, to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer");
    }

    /**
     * @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`),
     * and stop existing when they are burned (`_burn`).
     */
    function _exists(uint256 tokenId) internal view virtual returns (bool) {
        return _owners[tokenId] != address(0);
    }

    /**
     * @dev Returns whether `spender` is allowed to manage `tokenId`.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) {
        require(_exists(tokenId), "ERC721: operator query for nonexistent token");
        address owner = ERC721.ownerOf(tokenId);
        return (spender == owner || getApproved(tokenId) == spender || isApprovedForAll(owner, spender));
    }

    /**
     * @dev Safely mints `tokenId` and transfers it to `to`.
     *
     * Requirements:
     *
     * - `tokenId` must not exist.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function _safeMint(address to, uint256 tokenId) internal virtual {
        _safeMint(to, tokenId, "");
    }

    /**
     * @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is
     * forwarded in {IERC721Receiver-onERC721Received} to contract recipients.
     */
    function _safeMint(
        address to,
        uint256 tokenId,
        bytes memory _data
    ) internal virtual {
        _mint(to, tokenId);
        require(
            _checkOnERC721Received(address(0), to, tokenId, _data),
            "ERC721: transfer to non ERC721Receiver implementer"
        );
    }

    /**
     * @dev Mints `tokenId` and transfers it to `to`.
     *
     * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible
     *
     * Requirements:
     *
     * - `tokenId` must not exist.
     * - `to` cannot be the zero address.
     *
     * Emits a {Transfer} event.
     */
    function _mint(address to, uint256 tokenId) internal virtual {
        require(to != address(0), "ERC721: mint to the zero address");
        require(!_exists(tokenId), "ERC721: token already minted");

        _beforeTokenTransfer(address(0), to, tokenId);

        _balances[to] += 1;
        _owners[tokenId] = to;

        emit Transfer(address(0), to, tokenId);
    }

    /**
     * @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 {
        address owner = ERC721.ownerOf(tokenId);

        _beforeTokenTransfer(owner, address(0), tokenId);

        // Clear approvals
        _approve(address(0), tokenId);

        _balances[owner] -= 1;
        delete _owners[tokenId];

        emit Transfer(owner, address(0), tokenId);
    }

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *  As opposed to {transferFrom}, this imposes no restrictions on msg.sender.
     *
     * 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
    ) internal virtual {
        require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer of token that is not own");
        require(to != address(0), "ERC721: transfer to the zero address");

        _beforeTokenTransfer(from, to, tokenId);

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

        _balances[from] -= 1;
        _balances[to] += 1;
        _owners[tokenId] = to;

        emit Transfer(from, to, tokenId);
    }

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

    /**
     * @dev Approve `operator` to operate on all of `owner` tokens
     *
     * Emits a {ApprovalForAll} event.
     */
    function _setApprovalForAll(
        address owner,
        address operator,
        bool approved
    ) internal virtual {
        require(owner != operator, "ERC721: approve to caller");
        _operatorApprovals[owner][operator] = approved;
        emit ApprovalForAll(owner, operator, approved);
    }

    /**
     * @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.onERC721Received.selector;
            } catch (bytes memory reason) {
                if (reason.length == 0) {
                    revert("ERC721: transfer to non ERC721Receiver implementer");
                } else {
                    assembly {
                        revert(add(32, reason), mload(reason))
                    }
                }
            }
        } else {
            return true;
        }
    }

    /**
     * @dev Hook that is called before any token transfer. This includes minting
     * and burning.
     *
     * 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, ``from``'s `tokenId` will be burned.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {}
}

// File: @openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol


// OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/ERC721Enumerable.sol)

pragma solidity ^0.8.0;



/**
 * @dev This implements an optional extension of {ERC721} defined in the EIP that adds
 * enumerability of all the token ids in the contract as well as all token ids owned by each
 * account.
 */
abstract contract ERC721Enumerable is ERC721, IERC721Enumerable {
    // Mapping from owner to list of owned token IDs
    mapping(address => mapping(uint256 => uint256)) private _ownedTokens;

    // Mapping from token ID to index of the owner tokens list
    mapping(uint256 => uint256) private _ownedTokensIndex;

    // Array with all token ids, used for enumeration
    uint256[] private _allTokens;

    // Mapping from token id to position in the allTokens array
    mapping(uint256 => uint256) private _allTokensIndex;

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

    /**
     * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) public view virtual override returns (uint256) {
        require(index < ERC721.balanceOf(owner), "ERC721Enumerable: owner index out of bounds");
        return _ownedTokens[owner][index];
    }

    /**
     * @dev See {IERC721Enumerable-totalSupply}.
     */
    function totalSupply() public view virtual override returns (uint256) {
        return _allTokens.length;
    }

    /**
     * @dev See {IERC721Enumerable-tokenByIndex}.
     */
    function tokenByIndex(uint256 index) public view virtual override returns (uint256) {
        require(index < ERC721Enumerable.totalSupply(), "ERC721Enumerable: global index out of bounds");
        return _allTokens[index];
    }

    /**
     * @dev Hook that is called before any token transfer. This includes minting
     * and burning.
     *
     * 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, ``from``'s `tokenId` will be burned.
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual override {
        super._beforeTokenTransfer(from, to, tokenId);

        if (from == address(0)) {
            _addTokenToAllTokensEnumeration(tokenId);
        } else if (from != to) {
            _removeTokenFromOwnerEnumeration(from, tokenId);
        }
        if (to == address(0)) {
            _removeTokenFromAllTokensEnumeration(tokenId);
        } else if (to != from) {
            _addTokenToOwnerEnumeration(to, tokenId);
        }
    }

    /**
     * @dev Private function to add a token to this extension's ownership-tracking data structures.
     * @param to address representing the new owner of the given token ID
     * @param tokenId uint256 ID of the token to be added to the tokens list of the given address
     */
    function _addTokenToOwnerEnumeration(address to, uint256 tokenId) private {
        uint256 length = ERC721.balanceOf(to);
        _ownedTokens[to][length] = tokenId;
        _ownedTokensIndex[tokenId] = length;
    }

    /**
     * @dev Private function to add a token to this extension's token tracking data structures.
     * @param tokenId uint256 ID of the token to be added to the tokens list
     */
    function _addTokenToAllTokensEnumeration(uint256 tokenId) private {
        _allTokensIndex[tokenId] = _allTokens.length;
        _allTokens.push(tokenId);
    }

    /**
     * @dev Private function to remove a token from this extension's ownership-tracking data structures. Note that
     * while the token is not assigned a new owner, the `_ownedTokensIndex` mapping is _not_ updated: this allows for
     * gas optimizations e.g. when performing a transfer operation (avoiding double writes).
     * This has O(1) time complexity, but alters the order of the _ownedTokens array.
     * @param from address representing the previous owner of the given token ID
     * @param tokenId uint256 ID of the token to be removed from the tokens list of the given address
     */
    function _removeTokenFromOwnerEnumeration(address from, uint256 tokenId) private {
        // To prevent a gap in from's tokens array, we store the last token in the index of the token to delete, and
        // then delete the last slot (swap and pop).

        uint256 lastTokenIndex = ERC721.balanceOf(from) - 1;
        uint256 tokenIndex = _ownedTokensIndex[tokenId];

        // When the token to delete is the last token, the swap operation is unnecessary
        if (tokenIndex != lastTokenIndex) {
            uint256 lastTokenId = _ownedTokens[from][lastTokenIndex];

            _ownedTokens[from][tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token
            _ownedTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index
        }

        // This also deletes the contents at the last position of the array
        delete _ownedTokensIndex[tokenId];
        delete _ownedTokens[from][lastTokenIndex];
    }

    /**
     * @dev Private function to remove a token from this extension's token tracking data structures.
     * This has O(1) time complexity, but alters the order of the _allTokens array.
     * @param tokenId uint256 ID of the token to be removed from the tokens list
     */
    function _removeTokenFromAllTokensEnumeration(uint256 tokenId) private {
        // To prevent a gap in the tokens array, we store the last token in the index of the token to delete, and
        // then delete the last slot (swap and pop).

        uint256 lastTokenIndex = _allTokens.length - 1;
        uint256 tokenIndex = _allTokensIndex[tokenId];

        // When the token to delete is the last token, the swap operation is unnecessary. However, since this occurs so
        // rarely (when the last minted token is burnt) that we still do the swap here to avoid the gas cost of adding
        // an 'if' statement (like in _removeTokenFromOwnerEnumeration)
        uint256 lastTokenId = _allTokens[lastTokenIndex];

        _allTokens[tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token
        _allTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index

        // This also deletes the contents at the last position of the array
        delete _allTokensIndex[tokenId];
        _allTokens.pop();
    }
}

// File: Contract.sol



pragma solidity >=0.7.0 <0.9.0;



contract Contract is ERC721Enumerable, Ownable {

  using Strings for uint256;
  string public baseURI;
  string public notRevealedUri;
  string public baseExtension = ".json";
  address[] public WhitelistedWallets;
  bool public RevealedActive = false;
  bool public isPauseMode = false;
  uint256 public PriceNFT = 0.029 ether;
  uint256 public WhitelistPrice = 0.02 ether;
  uint256 public PresalesPrice = 0.025 ether;
  uint256 public MaxToken = 4000;
  uint256 public MaxPSToken = 1500;
  uint256 public MaxWLToken = 500;
  uint256 public TokenRS = 3900;
  uint256 public maxNFTWallet = 5;
  uint256 public maxTrx = 10;
  bool public isWhitelist = true;
  bool public isPresales = false;
  mapping(address => uint256) public WalletMintedBalance;

  constructor(string memory _initBaseURI,string memory _initNotRevealedUri)
    ERC721("Epic Elephants Squad", "EES") 
    {
    Uri_Base(_initBaseURI);
    Uri_NotRevealed(_initNotRevealedUri);
  }

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

  //MINT
  function mint(uint256 _mintAmount) public payable {
    require(!isPauseMode, "Pause Mode ON");
    uint256 supply = totalSupply();
    require(_mintAmount > 0, "Select 1 NFT");  
    require(supply + _mintAmount <= MaxToken, "Collecton Sold");   
   if (msg.sender != owner()) {
        if (isWhitelist == true) {
            require(!isPresales, "");
            require(isAddressWhitelisted(msg.sender), "Wallet not Whitelisted");
            require(supply + _mintAmount <= MaxWLToken, "Whitelist Sales: Collecton Sold"); 
            require(supply + _mintAmount <= maxNFTWallet, "Whitelist Sales: Max NFT Reached");
            require(msg.value >= WhitelistPrice * _mintAmount, "Whitelist Sales: Balance Insufficient");
        }        
        else if (isPresales == true) {
            require(!isWhitelist, "");
            require(supply + _mintAmount <= MaxPSToken, "Presales: Collecton Sold"); 
            require(supply + _mintAmount <= maxNFTWallet, "Presales: Max NFT Reached");
            require(msg.value >= PresalesPrice * _mintAmount, "Presales: Balance Insufficient");
        }
        else {
            require(supply + _mintAmount <= TokenRS, "Sales: Collecton Sold"); 
            require(_mintAmount <= maxTrx, "Transaction: Max NFT Reached");
            require(msg.value >= PriceNFT * _mintAmount, "Main Sale: Balance Insufficient");
        }
    }

    for (uint256 i = 1; i <= _mintAmount; i++) {
      WalletMintedBalance[msg.sender]++;
      _safeMint(msg.sender, supply + i);
    }
  }
  
  function tokenURI(uint256 tokenId) public view virtual override returns (string memory)
  {
    require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token");
    if(RevealedActive == false) {
        return notRevealedUri;
    }
    string memory currentBaseURI = _baseURI();
      return bytes(currentBaseURI).length > 0
        ? string(abi.encodePacked(currentBaseURI, tokenId.toString(), baseExtension))
        : "";
  }

  function isAddressWhitelisted(address _user) public view returns (bool) {
    for (uint i = 0; i < WhitelistedWallets.length; i++) {
      if (WhitelistedWallets[i] == _user) {
          return true;
      }
    }
    return false;
  }

  function walletOfOwner(address _owner) public view returns (uint256[] memory)
  {
    uint256 ownerTokenCount = balanceOf(_owner);

    uint256[] memory tokenIds = new uint256[](ownerTokenCount);
    for (uint256 i; i < ownerTokenCount; i++) {
      tokenIds[i] = tokenOfOwnerByIndex(_owner, i);
    }
    return tokenIds;
  }

  //OWNER
  function Airdrop(address _to, uint256 _mintAmount) external onlyOwner() {
    uint256 supply = totalSupply();
    require(_mintAmount <= maxTrx, "Transaction: Max NFT Reached");
    require(supply + _mintAmount <= MaxToken, "Cant airdrop more NFTs" );
    for (uint256 i = 1; i <= _mintAmount; i++) {
      WalletMintedBalance[msg.sender]++;
      _safeMint(_to, supply + i);
        }
  }

  function TurnRevealMode() public onlyOwner {
    RevealedActive = true;
  }

  function addWhitelistedWallets(address[] calldata _users) public onlyOwner {
    delete WhitelistedWallets;
    WhitelistedWallets = _users;
  }

  function isPauseModebtn(bool _state) public onlyOwner {
    isPauseMode = _state;
  }

  function isWhitelistbtn(bool _state) public onlyOwner {
    isWhitelist = _state;
  }

  function isPresalesbtn(bool _state) public onlyOwner {
    isPresales = _state;
  }

  function PriceMain(uint256 _newPriceNFT) public onlyOwner {
    PriceNFT = _newPriceNFT;
  }

  function PriceWL(uint256 _newWhitelistPrice) public onlyOwner {
    WhitelistPrice = _newWhitelistPrice;
  }

  function PricePS(uint256 _newPresalesPrice) public onlyOwner {
    PresalesPrice = _newPresalesPrice;
  }

  function Uri_Base(string memory _newBaseURI) public onlyOwner {
    baseURI = _newBaseURI;
  }

  function Uri_NotRevealed(string memory _notRevealedURI) public onlyOwner {
    notRevealedUri = _notRevealedURI;
  }
 
  function withdraw() public payable onlyOwner {
    (bool os, ) = payable(owner()).call{value: address(this).balance}("");
    require(os);
  }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_initBaseURI","type":"string"},{"internalType":"string","name":"_initNotRevealedUri","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"Airdrop","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"MaxPSToken","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MaxToken","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MaxWLToken","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PresalesPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newPriceNFT","type":"uint256"}],"name":"PriceMain","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"PriceNFT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newPresalesPrice","type":"uint256"}],"name":"PricePS","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newWhitelistPrice","type":"uint256"}],"name":"PriceWL","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"RevealedActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"TokenRS","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"TurnRevealMode","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseURI","type":"string"}],"name":"Uri_Base","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_notRevealedURI","type":"string"}],"name":"Uri_NotRevealed","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"WalletMintedBalance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"WhitelistPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"WhitelistedWallets","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"_users","type":"address[]"}],"name":"addWhitelistedWallets","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseExtension","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","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":"_user","type":"address"}],"name":"isAddressWhitelisted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isPauseMode","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"isPauseModebtn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"isPresales","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"isPresalesbtn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"isWhitelist","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"isWhitelistbtn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"maxNFTWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTrx","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"notRevealedUri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"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":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","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":"_owner","type":"address"}],"name":"walletOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"payable","type":"function"}]

60c06040526005608081905264173539b7b760d91b60a09081526200002891600d919062000280565b50600f805461ffff1990811690915566670758aa7c800060105566470de4df8200006011556658d15e17628000601255610fa06013556105dc6014556101f4601555610f3c6016556005601755600a6018556019805490911660011790553480156200009357600080fd5b50604051620033a2380380620033a2833981016040819052620000b691620003dd565b604080518082018252601481527f4570696320456c657068616e747320537175616400000000000000000000000060208083019182528351808501909452600384526245455360e81b908401528151919291620001169160009162000280565b5080516200012c90600190602084019062000280565b50505062000149620001436200016760201b60201c565b6200016b565b6200015482620001bd565b6200015f8162000225565b50506200049a565b3390565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600a546001600160a01b031633146200020c5760405162461bcd60e51b815260206004820181905260248201526000805160206200338283398151915260448201526064015b60405180910390fd5b80516200022190600b90602084019062000280565b5050565b600a546001600160a01b03163314620002705760405162461bcd60e51b8152602060048201819052602482015260008051602062003382833981519152604482015260640162000203565b80516200022190600c9060208401905b8280546200028e9062000447565b90600052602060002090601f016020900481019282620002b25760008555620002fd565b82601f10620002cd57805160ff1916838001178555620002fd565b82800160010185558215620002fd579182015b82811115620002fd578251825591602001919060010190620002e0565b506200030b9291506200030f565b5090565b5b808211156200030b576000815560010162000310565b600082601f8301126200033857600080fd5b81516001600160401b038082111562000355576200035562000484565b604051601f8301601f19908116603f0116810190828211818310171562000380576200038062000484565b816040528381526020925086838588010111156200039d57600080fd5b600091505b83821015620003c15785820183015181830184015290820190620003a2565b83821115620003d35760008385830101525b9695505050505050565b60008060408385031215620003f157600080fd5b82516001600160401b03808211156200040957600080fd5b620004178683870162000326565b935060208501519150808211156200042e57600080fd5b506200043d8582860162000326565b9150509250929050565b600181811c908216806200045c57607f821691505b602082108114156200047e57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052604160045260246000fd5b612ed880620004aa6000396000f3fe6080604052600436106102ff5760003560e01c80637a6903b011610190578063bc0ac746116100dc578063dad8d8ca11610095578063e793c9601161006f578063e793c96014610882578063e985e9c5146108a1578063f2fde38b146108ea578063fe6a5afa1461090a57600080fd5b8063dad8d8ca14610829578063dbcf5b4614610843578063dbf066341461086257600080fd5b8063bc0ac74614610793578063bf9bbad2146107a8578063c6682862146107be578063c87b56dd146107d3578063d4c76e8b146107f3578063d9a1c2fc1461080957600080fd5b8063a0712d6811610149578063ae04005311610123578063ae0400531461071d578063b3189b9b14610733578063b860e6b214610753578063b88d4fde1461077357600080fd5b8063a0712d68146106ca578063a22cb465146106dd578063aa09b906146106fd57600080fd5b80637a6903b0146106215780638b4b46f7146106415780638c32c568146106615780638da5cb5b14610681578063911410851461069f57806395d89b41146106b557600080fd5b80632f745c591161024f5780635cbec4df116102085780636c0360eb116101e25780636c0360eb146105aa57806370a08231146105bf57806370a45fa3146105df578063715018a61461060c57600080fd5b80635cbec4df1461055e5780636352211e146105745780636b13c0751461059457600080fd5b80632f745c59146104af5780633ccfd60b146104cf5780634146ed0a146104d757806342842e0e146104f1578063438b6300146105115780634f6ccce71461053e57600080fd5b8063095ea7b3116102bc5780631db53277116102965780631db53277146104435780631dd793f9146104595780632386cc0c1461046f57806323b872dd1461048f57600080fd5b8063095ea7b3146103ee57806313f44d101461040e57806318160ddd1461042e57600080fd5b806301ffc9a714610304578063025faa591461033957806302729d4c1461035b57806306fdde031461037f578063081812fc146103a1578063081c8c44146103d9575b600080fd5b34801561031057600080fd5b5061032461031f366004612a2e565b61092a565b60405190151581526020015b60405180910390f35b34801561034557600080fd5b50610359610354366004612a13565b610955565b005b34801561036757600080fd5b5061037160175481565b604051908152602001610330565b34801561038b57600080fd5b506103946109a2565b6040516103309190612c3b565b3480156103ad57600080fd5b506103c16103bc366004612ab1565b610a34565b6040516001600160a01b039091168152602001610330565b3480156103e557600080fd5b50610394610ac9565b3480156103fa57600080fd5b50610359610409366004612974565b610b57565b34801561041a57600080fd5b50610324610429366004612844565b610c6d565b34801561043a57600080fd5b50600854610371565b34801561044f57600080fd5b5061037160125481565b34801561046557600080fd5b5061037160165481565b34801561047b57600080fd5b5061035961048a36600461299e565b610cd7565b34801561049b57600080fd5b506103596104aa366004612892565b610d19565b3480156104bb57600080fd5b506103716104ca366004612974565b610d4a565b610359610de0565b3480156104e357600080fd5b506019546103249060ff1681565b3480156104fd57600080fd5b5061035961050c366004612892565b610e7e565b34801561051d57600080fd5b5061053161052c366004612844565b610e99565b6040516103309190612bf7565b34801561054a57600080fd5b50610371610559366004612ab1565b610f3b565b34801561056a57600080fd5b5061037160145481565b34801561058057600080fd5b506103c161058f366004612ab1565b610fce565b3480156105a057600080fd5b5061037160185481565b3480156105b657600080fd5b50610394611045565b3480156105cb57600080fd5b506103716105da366004612844565b611052565b3480156105eb57600080fd5b506103716105fa366004612844565b601a6020526000908152604090205481565b34801561061857600080fd5b506103596110d9565b34801561062d57600080fd5b5061035961063c366004612a68565b61110f565b34801561064d57600080fd5b5061035961065c366004612a68565b611150565b34801561066d57600080fd5b5061035961067c366004612974565b61118d565b34801561068d57600080fd5b50600a546001600160a01b03166103c1565b3480156106ab57600080fd5b5061037160155481565b3480156106c157600080fd5b506103946112c0565b6103596106d8366004612ab1565b6112cf565b3480156106e957600080fd5b506103596106f836600461294a565b61181a565b34801561070957600080fd5b506103c1610718366004612ab1565b611825565b34801561072957600080fd5b5061037160115481565b34801561073f57600080fd5b5061035961074e366004612a13565b61184f565b34801561075f57600080fd5b5061035961076e366004612a13565b61188c565b34801561077f57600080fd5b5061035961078e3660046128ce565b6118d0565b34801561079f57600080fd5b50610359611902565b3480156107b457600080fd5b5061037160105481565b3480156107ca57600080fd5b5061039461193b565b3480156107df57600080fd5b506103946107ee366004612ab1565b611948565b3480156107ff57600080fd5b5061037160135481565b34801561081557600080fd5b50610359610824366004612ab1565b611ac2565b34801561083557600080fd5b50600f546103249060ff1681565b34801561084f57600080fd5b5060195461032490610100900460ff1681565b34801561086e57600080fd5b5061035961087d366004612ab1565b611af1565b34801561088e57600080fd5b50600f5461032490610100900460ff1681565b3480156108ad57600080fd5b506103246108bc36600461285f565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b3480156108f657600080fd5b50610359610905366004612844565b611b20565b34801561091657600080fd5b50610359610925366004612ab1565b611bb8565b60006001600160e01b0319821663780e9d6360e01b148061094f575061094f82611be7565b92915050565b600a546001600160a01b031633146109885760405162461bcd60e51b815260040161097f90612ca0565b60405180910390fd5b600f80549115156101000261ff0019909216919091179055565b6060600080546109b190612db4565b80601f01602080910402602001604051908101604052809291908181526020018280546109dd90612db4565b8015610a2a5780601f106109ff57610100808354040283529160200191610a2a565b820191906000526020600020905b815481529060010190602001808311610a0d57829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b0316610aad5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b606482015260840161097f565b506000908152600460205260409020546001600160a01b031690565b600c8054610ad690612db4565b80601f0160208091040260200160405190810160405280929190818152602001828054610b0290612db4565b8015610b4f5780601f10610b2457610100808354040283529160200191610b4f565b820191906000526020600020905b815481529060010190602001808311610b3257829003601f168201915b505050505081565b6000610b6282610fce565b9050806001600160a01b0316836001600160a01b03161415610bd05760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b606482015260840161097f565b336001600160a01b0382161480610bec5750610bec81336108bc565b610c5e5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606482015260840161097f565b610c688383611c37565b505050565b6000805b600e54811015610cce57826001600160a01b0316600e8281548110610c9857610c98612e60565b6000918252602090912001546001600160a01b03161415610cbc5750600192915050565b80610cc681612def565b915050610c71565b50600092915050565b600a546001600160a01b03163314610d015760405162461bcd60e51b815260040161097f90612ca0565b610d0d600e6000612698565b610c68600e83836126b6565b610d233382611ca5565b610d3f5760405162461bcd60e51b815260040161097f90612cd5565b610c68838383611d9c565b6000610d5583611052565b8210610db75760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b606482015260840161097f565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b600a546001600160a01b03163314610e0a5760405162461bcd60e51b815260040161097f90612ca0565b6000610e1e600a546001600160a01b031690565b6001600160a01b03164760405160006040518083038185875af1925050503d8060008114610e68576040519150601f19603f3d011682016040523d82523d6000602084013e610e6d565b606091505b5050905080610e7b57600080fd5b50565b610c68838383604051806020016040528060008152506118d0565b60606000610ea683611052565b905060008167ffffffffffffffff811115610ec357610ec3612e76565b604051908082528060200260200182016040528015610eec578160200160208202803683370190505b50905060005b82811015610f3357610f048582610d4a565b828281518110610f1657610f16612e60565b602090810291909101015280610f2b81612def565b915050610ef2565b509392505050565b6000610f4660085490565b8210610fa95760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b606482015260840161097f565b60088281548110610fbc57610fbc612e60565b90600052602060002001549050919050565b6000818152600260205260408120546001600160a01b03168061094f5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b606482015260840161097f565b600b8054610ad690612db4565b60006001600160a01b0382166110bd5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b606482015260840161097f565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b031633146111035760405162461bcd60e51b815260040161097f90612ca0565b61110d6000611f47565b565b600a546001600160a01b031633146111395760405162461bcd60e51b815260040161097f90612ca0565b805161114c90600c906020840190612719565b5050565b600a546001600160a01b0316331461117a5760405162461bcd60e51b815260040161097f90612ca0565b805161114c90600b906020840190612719565b600a546001600160a01b031633146111b75760405162461bcd60e51b815260040161097f90612ca0565b60006111c260085490565b90506018548211156112165760405162461bcd60e51b815260206004820152601c60248201527f5472616e73616374696f6e3a204d6178204e4654205265616368656400000000604482015260640161097f565b6013546112238383612d26565b111561126a5760405162461bcd60e51b815260206004820152601660248201527543616e742061697264726f70206d6f7265204e46547360501b604482015260640161097f565b60015b8281116112ba57336000908152601a6020526040812080549161128f83612def565b909155506112a89050846112a38385612d26565b611f99565b806112b281612def565b91505061126d565b50505050565b6060600180546109b190612db4565b600f54610100900460ff16156113175760405162461bcd60e51b815260206004820152600d60248201526c2830bab9b29026b7b2329027a760991b604482015260640161097f565b600061132260085490565b9050600082116113635760405162461bcd60e51b815260206004820152600c60248201526b14d95b1958dd080c4813919560a21b604482015260640161097f565b6013546113708383612d26565b11156113af5760405162461bcd60e51b815260206004820152600e60248201526d10dbdb1b1958dd1bdb8814dbdb1960921b604482015260640161097f565b600a546001600160a01b031633146117cf5760195460ff1615156001141561157757601954610100900460ff16156114035760405162461bcd60e51b8152602060048201526000602482015260440161097f565b61140c33610c6d565b6114515760405162461bcd60e51b815260206004820152601660248201527515d85b1b195d081b9bdd0815da1a5d195b1a5cdd195960521b604482015260640161097f565b60155461145e8383612d26565b11156114ac5760405162461bcd60e51b815260206004820152601f60248201527f57686974656c6973742053616c65733a20436f6c6c6563746f6e20536f6c6400604482015260640161097f565b6017546114b98383612d26565b11156115075760405162461bcd60e51b815260206004820181905260248201527f57686974656c6973742053616c65733a204d6178204e46542052656163686564604482015260640161097f565b816011546115159190612d52565b3410156115725760405162461bcd60e51b815260206004820152602560248201527f57686974656c6973742053616c65733a2042616c616e636520496e737566666960448201526418da595b9d60da1b606482015260840161097f565b6117cf565b60195460ff610100909104161515600114156116cd5760195460ff16156115ba5760405162461bcd60e51b8152602060048201526000602482015260440161097f565b6014546115c78383612d26565b11156116155760405162461bcd60e51b815260206004820152601860248201527f50726573616c65733a20436f6c6c6563746f6e20536f6c640000000000000000604482015260640161097f565b6017546116228383612d26565b11156116705760405162461bcd60e51b815260206004820152601960248201527f50726573616c65733a204d6178204e4654205265616368656400000000000000604482015260640161097f565b8160125461167e9190612d52565b3410156115725760405162461bcd60e51b815260206004820152601e60248201527f50726573616c65733a2042616c616e636520496e73756666696369656e740000604482015260640161097f565b6016546116da8383612d26565b11156117205760405162461bcd60e51b815260206004820152601560248201527414d85b195cce8810dbdb1b1958dd1bdb8814dbdb19605a1b604482015260640161097f565b6018548211156117725760405162461bcd60e51b815260206004820152601c60248201527f5472616e73616374696f6e3a204d6178204e4654205265616368656400000000604482015260640161097f565b816010546117809190612d52565b3410156117cf5760405162461bcd60e51b815260206004820152601f60248201527f4d61696e2053616c653a2042616c616e636520496e73756666696369656e7400604482015260640161097f565b60015b828111610c6857336000908152601a602052604081208054916117f483612def565b909155506118089050336112a38385612d26565b8061181281612def565b9150506117d2565b61114c338383611fb3565b600e818154811061183557600080fd5b6000918252602090912001546001600160a01b0316905081565b600a546001600160a01b031633146118795760405162461bcd60e51b815260040161097f90612ca0565b6019805460ff1916911515919091179055565b600a546001600160a01b031633146118b65760405162461bcd60e51b815260040161097f90612ca0565b601980549115156101000261ff0019909216919091179055565b6118da3383611ca5565b6118f65760405162461bcd60e51b815260040161097f90612cd5565b6112ba84848484612082565b600a546001600160a01b0316331461192c5760405162461bcd60e51b815260040161097f90612ca0565b600f805460ff19166001179055565b600d8054610ad690612db4565b6000818152600260205260409020546060906001600160a01b03166119c75760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b606482015260840161097f565b600f5460ff16611a6357600c80546119de90612db4565b80601f0160208091040260200160405190810160405280929190818152602001828054611a0a90612db4565b8015611a575780601f10611a2c57610100808354040283529160200191611a57565b820191906000526020600020905b815481529060010190602001808311611a3a57829003601f168201915b50505050509050919050565b6000611a6d6120b5565b90506000815111611a8d5760405180602001604052806000815250611abb565b80611a97846120c4565b600d604051602001611aab93929190612af6565b6040516020818303038152906040525b9392505050565b600a546001600160a01b03163314611aec5760405162461bcd60e51b815260040161097f90612ca0565b601055565b600a546001600160a01b03163314611b1b5760405162461bcd60e51b815260040161097f90612ca0565b601255565b600a546001600160a01b03163314611b4a5760405162461bcd60e51b815260040161097f90612ca0565b6001600160a01b038116611baf5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161097f565b610e7b81611f47565b600a546001600160a01b03163314611be25760405162461bcd60e51b815260040161097f90612ca0565b601155565b60006001600160e01b031982166380ac58cd60e01b1480611c1857506001600160e01b03198216635b5e139f60e01b145b8061094f57506301ffc9a760e01b6001600160e01b031983161461094f565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190611c6c82610fce565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b0316611d1e5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b606482015260840161097f565b6000611d2983610fce565b9050806001600160a01b0316846001600160a01b03161480611d645750836001600160a01b0316611d5984610a34565b6001600160a01b0316145b80611d9457506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b0316611daf82610fce565b6001600160a01b031614611e175760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b606482015260840161097f565b6001600160a01b038216611e795760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b606482015260840161097f565b611e848383836121c2565b611e8f600082611c37565b6001600160a01b0383166000908152600360205260408120805460019290611eb8908490612d71565b90915550506001600160a01b0382166000908152600360205260408120805460019290611ee6908490612d26565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b61114c82826040518060200160405280600081525061227a565b816001600160a01b0316836001600160a01b031614156120155760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604482015260640161097f565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b61208d848484611d9c565b612099848484846122ad565b6112ba5760405162461bcd60e51b815260040161097f90612c4e565b6060600b80546109b190612db4565b6060816120e85750506040805180820190915260018152600360fc1b602082015290565b8160005b811561211257806120fc81612def565b915061210b9050600a83612d3e565b91506120ec565b60008167ffffffffffffffff81111561212d5761212d612e76565b6040519080825280601f01601f191660200182016040528015612157576020820181803683370190505b5090505b8415611d945761216c600183612d71565b9150612179600a86612e0a565b612184906030612d26565b60f81b81838151811061219957612199612e60565b60200101906001600160f81b031916908160001a9053506121bb600a86612d3e565b945061215b565b6001600160a01b03831661221d5761221881600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b612240565b816001600160a01b0316836001600160a01b0316146122405761224083826123ba565b6001600160a01b03821661225757610c6881612457565b826001600160a01b0316826001600160a01b031614610c6857610c688282612506565b612284838361254a565b61229160008484846122ad565b610c685760405162461bcd60e51b815260040161097f90612c4e565b60006001600160a01b0384163b156123af57604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906122f1903390899088908890600401612bba565b602060405180830381600087803b15801561230b57600080fd5b505af192505050801561233b575060408051601f3d908101601f1916820190925261233891810190612a4b565b60015b612395573d808015612369576040519150601f19603f3d011682016040523d82523d6000602084013e61236e565b606091505b50805161238d5760405162461bcd60e51b815260040161097f90612c4e565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611d94565b506001949350505050565b600060016123c784611052565b6123d19190612d71565b600083815260076020526040902054909150808214612424576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b60085460009061246990600190612d71565b6000838152600960205260408120546008805493945090928490811061249157612491612e60565b9060005260206000200154905080600883815481106124b2576124b2612e60565b60009182526020808320909101929092558281526009909152604080822084905585825281205560088054806124ea576124ea612e4a565b6001900381819060005260206000200160009055905550505050565b600061251183611052565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6001600160a01b0382166125a05760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604482015260640161097f565b6000818152600260205260409020546001600160a01b0316156126055760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604482015260640161097f565b612611600083836121c2565b6001600160a01b038216600090815260036020526040812080546001929061263a908490612d26565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b5080546000825590600052602060002090810190610e7b919061278d565b828054828255906000526020600020908101928215612709579160200282015b828111156127095781546001600160a01b0319166001600160a01b038435161782556020909201916001909101906126d6565b5061271592915061278d565b5090565b82805461272590612db4565b90600052602060002090601f0160209004810192826127475760008555612709565b82601f1061276057805160ff1916838001178555612709565b82800160010185558215612709579182015b82811115612709578251825591602001919060010190612772565b5b80821115612715576000815560010161278e565b600067ffffffffffffffff808411156127bd576127bd612e76565b604051601f8501601f19908116603f011681019082821181831017156127e5576127e5612e76565b816040528093508581528686860111156127fe57600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b038116811461282f57600080fd5b919050565b8035801515811461282f57600080fd5b60006020828403121561285657600080fd5b611abb82612818565b6000806040838503121561287257600080fd5b61287b83612818565b915061288960208401612818565b90509250929050565b6000806000606084860312156128a757600080fd5b6128b084612818565b92506128be60208501612818565b9150604084013590509250925092565b600080600080608085870312156128e457600080fd5b6128ed85612818565b93506128fb60208601612818565b925060408501359150606085013567ffffffffffffffff81111561291e57600080fd5b8501601f8101871361292f57600080fd5b61293e878235602084016127a2565b91505092959194509250565b6000806040838503121561295d57600080fd5b61296683612818565b915061288960208401612834565b6000806040838503121561298757600080fd5b61299083612818565b946020939093013593505050565b600080602083850312156129b157600080fd5b823567ffffffffffffffff808211156129c957600080fd5b818501915085601f8301126129dd57600080fd5b8135818111156129ec57600080fd5b8660208260051b8501011115612a0157600080fd5b60209290920196919550909350505050565b600060208284031215612a2557600080fd5b611abb82612834565b600060208284031215612a4057600080fd5b8135611abb81612e8c565b600060208284031215612a5d57600080fd5b8151611abb81612e8c565b600060208284031215612a7a57600080fd5b813567ffffffffffffffff811115612a9157600080fd5b8201601f81018413612aa257600080fd5b611d94848235602084016127a2565b600060208284031215612ac357600080fd5b5035919050565b60008151808452612ae2816020860160208601612d88565b601f01601f19169290920160200192915050565b600084516020612b098285838a01612d88565b855191840191612b1c8184848a01612d88565b8554920191600090600181811c9080831680612b3957607f831692505b858310811415612b5757634e487b7160e01b85526022600452602485fd5b808015612b6b5760018114612b7c57612ba9565b60ff19851688528388019550612ba9565b60008b81526020902060005b85811015612ba15781548a820152908401908801612b88565b505083880195505b50939b9a5050505050505050505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612bed90830184612aca565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b81811015612c2f57835183529284019291840191600101612c13565b50909695505050505050565b602081526000611abb6020830184612aca565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b60008219821115612d3957612d39612e1e565b500190565b600082612d4d57612d4d612e34565b500490565b6000816000190483118215151615612d6c57612d6c612e1e565b500290565b600082821015612d8357612d83612e1e565b500390565b60005b83811015612da3578181015183820152602001612d8b565b838111156112ba5750506000910152565b600181811c90821680612dc857607f821691505b60208210811415612de957634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415612e0357612e03612e1e565b5060010190565b600082612e1957612e19612e34565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610e7b57600080fdfea26469706673582212203aa596a0efa0c820a8d717635ef25134fd8b576a41306361ff03fd13fffb5ea364736f6c634300080700334f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d6379334a64557232647868657a65414e664a7362503361754458683778374a6d65506a473479654b4a7a75562f000000000000000000000000000000000000000000000000000000000000000000000000000000000041697066733a2f2f516d616d7a57556b477143686a7077544b65626251593156643961583835465431464c4542326338586177476d622f48696464656e2e6a736f6e00000000000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106102ff5760003560e01c80637a6903b011610190578063bc0ac746116100dc578063dad8d8ca11610095578063e793c9601161006f578063e793c96014610882578063e985e9c5146108a1578063f2fde38b146108ea578063fe6a5afa1461090a57600080fd5b8063dad8d8ca14610829578063dbcf5b4614610843578063dbf066341461086257600080fd5b8063bc0ac74614610793578063bf9bbad2146107a8578063c6682862146107be578063c87b56dd146107d3578063d4c76e8b146107f3578063d9a1c2fc1461080957600080fd5b8063a0712d6811610149578063ae04005311610123578063ae0400531461071d578063b3189b9b14610733578063b860e6b214610753578063b88d4fde1461077357600080fd5b8063a0712d68146106ca578063a22cb465146106dd578063aa09b906146106fd57600080fd5b80637a6903b0146106215780638b4b46f7146106415780638c32c568146106615780638da5cb5b14610681578063911410851461069f57806395d89b41146106b557600080fd5b80632f745c591161024f5780635cbec4df116102085780636c0360eb116101e25780636c0360eb146105aa57806370a08231146105bf57806370a45fa3146105df578063715018a61461060c57600080fd5b80635cbec4df1461055e5780636352211e146105745780636b13c0751461059457600080fd5b80632f745c59146104af5780633ccfd60b146104cf5780634146ed0a146104d757806342842e0e146104f1578063438b6300146105115780634f6ccce71461053e57600080fd5b8063095ea7b3116102bc5780631db53277116102965780631db53277146104435780631dd793f9146104595780632386cc0c1461046f57806323b872dd1461048f57600080fd5b8063095ea7b3146103ee57806313f44d101461040e57806318160ddd1461042e57600080fd5b806301ffc9a714610304578063025faa591461033957806302729d4c1461035b57806306fdde031461037f578063081812fc146103a1578063081c8c44146103d9575b600080fd5b34801561031057600080fd5b5061032461031f366004612a2e565b61092a565b60405190151581526020015b60405180910390f35b34801561034557600080fd5b50610359610354366004612a13565b610955565b005b34801561036757600080fd5b5061037160175481565b604051908152602001610330565b34801561038b57600080fd5b506103946109a2565b6040516103309190612c3b565b3480156103ad57600080fd5b506103c16103bc366004612ab1565b610a34565b6040516001600160a01b039091168152602001610330565b3480156103e557600080fd5b50610394610ac9565b3480156103fa57600080fd5b50610359610409366004612974565b610b57565b34801561041a57600080fd5b50610324610429366004612844565b610c6d565b34801561043a57600080fd5b50600854610371565b34801561044f57600080fd5b5061037160125481565b34801561046557600080fd5b5061037160165481565b34801561047b57600080fd5b5061035961048a36600461299e565b610cd7565b34801561049b57600080fd5b506103596104aa366004612892565b610d19565b3480156104bb57600080fd5b506103716104ca366004612974565b610d4a565b610359610de0565b3480156104e357600080fd5b506019546103249060ff1681565b3480156104fd57600080fd5b5061035961050c366004612892565b610e7e565b34801561051d57600080fd5b5061053161052c366004612844565b610e99565b6040516103309190612bf7565b34801561054a57600080fd5b50610371610559366004612ab1565b610f3b565b34801561056a57600080fd5b5061037160145481565b34801561058057600080fd5b506103c161058f366004612ab1565b610fce565b3480156105a057600080fd5b5061037160185481565b3480156105b657600080fd5b50610394611045565b3480156105cb57600080fd5b506103716105da366004612844565b611052565b3480156105eb57600080fd5b506103716105fa366004612844565b601a6020526000908152604090205481565b34801561061857600080fd5b506103596110d9565b34801561062d57600080fd5b5061035961063c366004612a68565b61110f565b34801561064d57600080fd5b5061035961065c366004612a68565b611150565b34801561066d57600080fd5b5061035961067c366004612974565b61118d565b34801561068d57600080fd5b50600a546001600160a01b03166103c1565b3480156106ab57600080fd5b5061037160155481565b3480156106c157600080fd5b506103946112c0565b6103596106d8366004612ab1565b6112cf565b3480156106e957600080fd5b506103596106f836600461294a565b61181a565b34801561070957600080fd5b506103c1610718366004612ab1565b611825565b34801561072957600080fd5b5061037160115481565b34801561073f57600080fd5b5061035961074e366004612a13565b61184f565b34801561075f57600080fd5b5061035961076e366004612a13565b61188c565b34801561077f57600080fd5b5061035961078e3660046128ce565b6118d0565b34801561079f57600080fd5b50610359611902565b3480156107b457600080fd5b5061037160105481565b3480156107ca57600080fd5b5061039461193b565b3480156107df57600080fd5b506103946107ee366004612ab1565b611948565b3480156107ff57600080fd5b5061037160135481565b34801561081557600080fd5b50610359610824366004612ab1565b611ac2565b34801561083557600080fd5b50600f546103249060ff1681565b34801561084f57600080fd5b5060195461032490610100900460ff1681565b34801561086e57600080fd5b5061035961087d366004612ab1565b611af1565b34801561088e57600080fd5b50600f5461032490610100900460ff1681565b3480156108ad57600080fd5b506103246108bc36600461285f565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b3480156108f657600080fd5b50610359610905366004612844565b611b20565b34801561091657600080fd5b50610359610925366004612ab1565b611bb8565b60006001600160e01b0319821663780e9d6360e01b148061094f575061094f82611be7565b92915050565b600a546001600160a01b031633146109885760405162461bcd60e51b815260040161097f90612ca0565b60405180910390fd5b600f80549115156101000261ff0019909216919091179055565b6060600080546109b190612db4565b80601f01602080910402602001604051908101604052809291908181526020018280546109dd90612db4565b8015610a2a5780601f106109ff57610100808354040283529160200191610a2a565b820191906000526020600020905b815481529060010190602001808311610a0d57829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b0316610aad5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b606482015260840161097f565b506000908152600460205260409020546001600160a01b031690565b600c8054610ad690612db4565b80601f0160208091040260200160405190810160405280929190818152602001828054610b0290612db4565b8015610b4f5780601f10610b2457610100808354040283529160200191610b4f565b820191906000526020600020905b815481529060010190602001808311610b3257829003601f168201915b505050505081565b6000610b6282610fce565b9050806001600160a01b0316836001600160a01b03161415610bd05760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b606482015260840161097f565b336001600160a01b0382161480610bec5750610bec81336108bc565b610c5e5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606482015260840161097f565b610c688383611c37565b505050565b6000805b600e54811015610cce57826001600160a01b0316600e8281548110610c9857610c98612e60565b6000918252602090912001546001600160a01b03161415610cbc5750600192915050565b80610cc681612def565b915050610c71565b50600092915050565b600a546001600160a01b03163314610d015760405162461bcd60e51b815260040161097f90612ca0565b610d0d600e6000612698565b610c68600e83836126b6565b610d233382611ca5565b610d3f5760405162461bcd60e51b815260040161097f90612cd5565b610c68838383611d9c565b6000610d5583611052565b8210610db75760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b606482015260840161097f565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b600a546001600160a01b03163314610e0a5760405162461bcd60e51b815260040161097f90612ca0565b6000610e1e600a546001600160a01b031690565b6001600160a01b03164760405160006040518083038185875af1925050503d8060008114610e68576040519150601f19603f3d011682016040523d82523d6000602084013e610e6d565b606091505b5050905080610e7b57600080fd5b50565b610c68838383604051806020016040528060008152506118d0565b60606000610ea683611052565b905060008167ffffffffffffffff811115610ec357610ec3612e76565b604051908082528060200260200182016040528015610eec578160200160208202803683370190505b50905060005b82811015610f3357610f048582610d4a565b828281518110610f1657610f16612e60565b602090810291909101015280610f2b81612def565b915050610ef2565b509392505050565b6000610f4660085490565b8210610fa95760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b606482015260840161097f565b60088281548110610fbc57610fbc612e60565b90600052602060002001549050919050565b6000818152600260205260408120546001600160a01b03168061094f5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b606482015260840161097f565b600b8054610ad690612db4565b60006001600160a01b0382166110bd5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b606482015260840161097f565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b031633146111035760405162461bcd60e51b815260040161097f90612ca0565b61110d6000611f47565b565b600a546001600160a01b031633146111395760405162461bcd60e51b815260040161097f90612ca0565b805161114c90600c906020840190612719565b5050565b600a546001600160a01b0316331461117a5760405162461bcd60e51b815260040161097f90612ca0565b805161114c90600b906020840190612719565b600a546001600160a01b031633146111b75760405162461bcd60e51b815260040161097f90612ca0565b60006111c260085490565b90506018548211156112165760405162461bcd60e51b815260206004820152601c60248201527f5472616e73616374696f6e3a204d6178204e4654205265616368656400000000604482015260640161097f565b6013546112238383612d26565b111561126a5760405162461bcd60e51b815260206004820152601660248201527543616e742061697264726f70206d6f7265204e46547360501b604482015260640161097f565b60015b8281116112ba57336000908152601a6020526040812080549161128f83612def565b909155506112a89050846112a38385612d26565b611f99565b806112b281612def565b91505061126d565b50505050565b6060600180546109b190612db4565b600f54610100900460ff16156113175760405162461bcd60e51b815260206004820152600d60248201526c2830bab9b29026b7b2329027a760991b604482015260640161097f565b600061132260085490565b9050600082116113635760405162461bcd60e51b815260206004820152600c60248201526b14d95b1958dd080c4813919560a21b604482015260640161097f565b6013546113708383612d26565b11156113af5760405162461bcd60e51b815260206004820152600e60248201526d10dbdb1b1958dd1bdb8814dbdb1960921b604482015260640161097f565b600a546001600160a01b031633146117cf5760195460ff1615156001141561157757601954610100900460ff16156114035760405162461bcd60e51b8152602060048201526000602482015260440161097f565b61140c33610c6d565b6114515760405162461bcd60e51b815260206004820152601660248201527515d85b1b195d081b9bdd0815da1a5d195b1a5cdd195960521b604482015260640161097f565b60155461145e8383612d26565b11156114ac5760405162461bcd60e51b815260206004820152601f60248201527f57686974656c6973742053616c65733a20436f6c6c6563746f6e20536f6c6400604482015260640161097f565b6017546114b98383612d26565b11156115075760405162461bcd60e51b815260206004820181905260248201527f57686974656c6973742053616c65733a204d6178204e46542052656163686564604482015260640161097f565b816011546115159190612d52565b3410156115725760405162461bcd60e51b815260206004820152602560248201527f57686974656c6973742053616c65733a2042616c616e636520496e737566666960448201526418da595b9d60da1b606482015260840161097f565b6117cf565b60195460ff610100909104161515600114156116cd5760195460ff16156115ba5760405162461bcd60e51b8152602060048201526000602482015260440161097f565b6014546115c78383612d26565b11156116155760405162461bcd60e51b815260206004820152601860248201527f50726573616c65733a20436f6c6c6563746f6e20536f6c640000000000000000604482015260640161097f565b6017546116228383612d26565b11156116705760405162461bcd60e51b815260206004820152601960248201527f50726573616c65733a204d6178204e4654205265616368656400000000000000604482015260640161097f565b8160125461167e9190612d52565b3410156115725760405162461bcd60e51b815260206004820152601e60248201527f50726573616c65733a2042616c616e636520496e73756666696369656e740000604482015260640161097f565b6016546116da8383612d26565b11156117205760405162461bcd60e51b815260206004820152601560248201527414d85b195cce8810dbdb1b1958dd1bdb8814dbdb19605a1b604482015260640161097f565b6018548211156117725760405162461bcd60e51b815260206004820152601c60248201527f5472616e73616374696f6e3a204d6178204e4654205265616368656400000000604482015260640161097f565b816010546117809190612d52565b3410156117cf5760405162461bcd60e51b815260206004820152601f60248201527f4d61696e2053616c653a2042616c616e636520496e73756666696369656e7400604482015260640161097f565b60015b828111610c6857336000908152601a602052604081208054916117f483612def565b909155506118089050336112a38385612d26565b8061181281612def565b9150506117d2565b61114c338383611fb3565b600e818154811061183557600080fd5b6000918252602090912001546001600160a01b0316905081565b600a546001600160a01b031633146118795760405162461bcd60e51b815260040161097f90612ca0565b6019805460ff1916911515919091179055565b600a546001600160a01b031633146118b65760405162461bcd60e51b815260040161097f90612ca0565b601980549115156101000261ff0019909216919091179055565b6118da3383611ca5565b6118f65760405162461bcd60e51b815260040161097f90612cd5565b6112ba84848484612082565b600a546001600160a01b0316331461192c5760405162461bcd60e51b815260040161097f90612ca0565b600f805460ff19166001179055565b600d8054610ad690612db4565b6000818152600260205260409020546060906001600160a01b03166119c75760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b606482015260840161097f565b600f5460ff16611a6357600c80546119de90612db4565b80601f0160208091040260200160405190810160405280929190818152602001828054611a0a90612db4565b8015611a575780601f10611a2c57610100808354040283529160200191611a57565b820191906000526020600020905b815481529060010190602001808311611a3a57829003601f168201915b50505050509050919050565b6000611a6d6120b5565b90506000815111611a8d5760405180602001604052806000815250611abb565b80611a97846120c4565b600d604051602001611aab93929190612af6565b6040516020818303038152906040525b9392505050565b600a546001600160a01b03163314611aec5760405162461bcd60e51b815260040161097f90612ca0565b601055565b600a546001600160a01b03163314611b1b5760405162461bcd60e51b815260040161097f90612ca0565b601255565b600a546001600160a01b03163314611b4a5760405162461bcd60e51b815260040161097f90612ca0565b6001600160a01b038116611baf5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161097f565b610e7b81611f47565b600a546001600160a01b03163314611be25760405162461bcd60e51b815260040161097f90612ca0565b601155565b60006001600160e01b031982166380ac58cd60e01b1480611c1857506001600160e01b03198216635b5e139f60e01b145b8061094f57506301ffc9a760e01b6001600160e01b031983161461094f565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190611c6c82610fce565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b0316611d1e5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b606482015260840161097f565b6000611d2983610fce565b9050806001600160a01b0316846001600160a01b03161480611d645750836001600160a01b0316611d5984610a34565b6001600160a01b0316145b80611d9457506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b0316611daf82610fce565b6001600160a01b031614611e175760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b606482015260840161097f565b6001600160a01b038216611e795760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b606482015260840161097f565b611e848383836121c2565b611e8f600082611c37565b6001600160a01b0383166000908152600360205260408120805460019290611eb8908490612d71565b90915550506001600160a01b0382166000908152600360205260408120805460019290611ee6908490612d26565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b61114c82826040518060200160405280600081525061227a565b816001600160a01b0316836001600160a01b031614156120155760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604482015260640161097f565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b61208d848484611d9c565b612099848484846122ad565b6112ba5760405162461bcd60e51b815260040161097f90612c4e565b6060600b80546109b190612db4565b6060816120e85750506040805180820190915260018152600360fc1b602082015290565b8160005b811561211257806120fc81612def565b915061210b9050600a83612d3e565b91506120ec565b60008167ffffffffffffffff81111561212d5761212d612e76565b6040519080825280601f01601f191660200182016040528015612157576020820181803683370190505b5090505b8415611d945761216c600183612d71565b9150612179600a86612e0a565b612184906030612d26565b60f81b81838151811061219957612199612e60565b60200101906001600160f81b031916908160001a9053506121bb600a86612d3e565b945061215b565b6001600160a01b03831661221d5761221881600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b612240565b816001600160a01b0316836001600160a01b0316146122405761224083826123ba565b6001600160a01b03821661225757610c6881612457565b826001600160a01b0316826001600160a01b031614610c6857610c688282612506565b612284838361254a565b61229160008484846122ad565b610c685760405162461bcd60e51b815260040161097f90612c4e565b60006001600160a01b0384163b156123af57604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906122f1903390899088908890600401612bba565b602060405180830381600087803b15801561230b57600080fd5b505af192505050801561233b575060408051601f3d908101601f1916820190925261233891810190612a4b565b60015b612395573d808015612369576040519150601f19603f3d011682016040523d82523d6000602084013e61236e565b606091505b50805161238d5760405162461bcd60e51b815260040161097f90612c4e565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611d94565b506001949350505050565b600060016123c784611052565b6123d19190612d71565b600083815260076020526040902054909150808214612424576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b60085460009061246990600190612d71565b6000838152600960205260408120546008805493945090928490811061249157612491612e60565b9060005260206000200154905080600883815481106124b2576124b2612e60565b60009182526020808320909101929092558281526009909152604080822084905585825281205560088054806124ea576124ea612e4a565b6001900381819060005260206000200160009055905550505050565b600061251183611052565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6001600160a01b0382166125a05760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604482015260640161097f565b6000818152600260205260409020546001600160a01b0316156126055760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604482015260640161097f565b612611600083836121c2565b6001600160a01b038216600090815260036020526040812080546001929061263a908490612d26565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b5080546000825590600052602060002090810190610e7b919061278d565b828054828255906000526020600020908101928215612709579160200282015b828111156127095781546001600160a01b0319166001600160a01b038435161782556020909201916001909101906126d6565b5061271592915061278d565b5090565b82805461272590612db4565b90600052602060002090601f0160209004810192826127475760008555612709565b82601f1061276057805160ff1916838001178555612709565b82800160010185558215612709579182015b82811115612709578251825591602001919060010190612772565b5b80821115612715576000815560010161278e565b600067ffffffffffffffff808411156127bd576127bd612e76565b604051601f8501601f19908116603f011681019082821181831017156127e5576127e5612e76565b816040528093508581528686860111156127fe57600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b038116811461282f57600080fd5b919050565b8035801515811461282f57600080fd5b60006020828403121561285657600080fd5b611abb82612818565b6000806040838503121561287257600080fd5b61287b83612818565b915061288960208401612818565b90509250929050565b6000806000606084860312156128a757600080fd5b6128b084612818565b92506128be60208501612818565b9150604084013590509250925092565b600080600080608085870312156128e457600080fd5b6128ed85612818565b93506128fb60208601612818565b925060408501359150606085013567ffffffffffffffff81111561291e57600080fd5b8501601f8101871361292f57600080fd5b61293e878235602084016127a2565b91505092959194509250565b6000806040838503121561295d57600080fd5b61296683612818565b915061288960208401612834565b6000806040838503121561298757600080fd5b61299083612818565b946020939093013593505050565b600080602083850312156129b157600080fd5b823567ffffffffffffffff808211156129c957600080fd5b818501915085601f8301126129dd57600080fd5b8135818111156129ec57600080fd5b8660208260051b8501011115612a0157600080fd5b60209290920196919550909350505050565b600060208284031215612a2557600080fd5b611abb82612834565b600060208284031215612a4057600080fd5b8135611abb81612e8c565b600060208284031215612a5d57600080fd5b8151611abb81612e8c565b600060208284031215612a7a57600080fd5b813567ffffffffffffffff811115612a9157600080fd5b8201601f81018413612aa257600080fd5b611d94848235602084016127a2565b600060208284031215612ac357600080fd5b5035919050565b60008151808452612ae2816020860160208601612d88565b601f01601f19169290920160200192915050565b600084516020612b098285838a01612d88565b855191840191612b1c8184848a01612d88565b8554920191600090600181811c9080831680612b3957607f831692505b858310811415612b5757634e487b7160e01b85526022600452602485fd5b808015612b6b5760018114612b7c57612ba9565b60ff19851688528388019550612ba9565b60008b81526020902060005b85811015612ba15781548a820152908401908801612b88565b505083880195505b50939b9a5050505050505050505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612bed90830184612aca565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b81811015612c2f57835183529284019291840191600101612c13565b50909695505050505050565b602081526000611abb6020830184612aca565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b60008219821115612d3957612d39612e1e565b500190565b600082612d4d57612d4d612e34565b500490565b6000816000190483118215151615612d6c57612d6c612e1e565b500290565b600082821015612d8357612d83612e1e565b500390565b60005b83811015612da3578181015183820152602001612d8b565b838111156112ba5750506000910152565b600181811c90821680612dc857607f821691505b60208210811415612de957634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415612e0357612e03612e1e565b5060010190565b600082612e1957612e19612e34565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610e7b57600080fdfea26469706673582212203aa596a0efa0c820a8d717635ef25134fd8b576a41306361ff03fd13fffb5ea364736f6c63430008070033

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

000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d6379334a64557232647868657a65414e664a7362503361754458683778374a6d65506a473479654b4a7a75562f000000000000000000000000000000000000000000000000000000000000000000000000000000000041697066733a2f2f516d616d7a57556b477143686a7077544b65626251593156643961583835465431464c4542326338586177476d622f48696464656e2e6a736f6e00000000000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : _initBaseURI (string): ipfs://Qmcy3JdUr2dxhezeANfJsbP3auDXh7x7JmePjG4yeKJzuV/
Arg [1] : _initNotRevealedUri (string): ipfs://QmamzWUkGqChjpwTKebbQY1Vd9aX85FT1FLEB2c8XawGmb/Hidden.json

-----Encoded View---------------
9 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000040
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000036
Arg [3] : 697066733a2f2f516d6379334a64557232647868657a65414e664a7362503361
Arg [4] : 754458683778374a6d65506a473479654b4a7a75562f00000000000000000000
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000041
Arg [6] : 697066733a2f2f516d616d7a57556b477143686a7077544b6562625159315664
Arg [7] : 3961583835465431464c4542326338586177476d622f48696464656e2e6a736f
Arg [8] : 6e00000000000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

44482:5350:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38266:224;;;;;;;;;;-1:-1:-1;38266:224:0;;;;;:::i;:::-;;:::i;:::-;;;8427:14:1;;8420:22;8402:41;;8390:2;8375:18;38266:224:0;;;;;;;;48851:87;;;;;;;;;;-1:-1:-1;48851:87:0;;;;;:::i;:::-;;:::i;:::-;;45060:31;;;;;;;;;;;;;;;;;;;21308:25:1;;;21296:2;21281:18;45060:31:0;21162:177:1;25760:100:0;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;27319:221::-;;;;;;;;;;-1:-1:-1;27319:221:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;7088:32:1;;;7070:51;;7058:2;7043:18;27319:221:0;6924:203:1;44592:28:0;;;;;;;;;;;;;:::i;26842:411::-;;;;;;;;;;-1:-1:-1;26842:411:0;;;;;:::i;:::-;;:::i;47612:242::-;;;;;;;;;;-1:-1:-1;47612:242:0;;;;;:::i;:::-;;:::i;38906:113::-;;;;;;;;;;-1:-1:-1;38994:10:0;:17;38906:113;;44871:42;;;;;;;;;;;;;;;;45026:29;;;;;;;;;;;;;;;;48698:147;;;;;;;;;;-1:-1:-1;48698:147:0;;;;;:::i;:::-;;:::i;28069:339::-;;;;;;;;;;-1:-1:-1;28069:339:0;;;;;:::i;:::-;;:::i;38574:256::-;;;;;;;;;;-1:-1:-1;38574:256:0;;;;;:::i;:::-;;:::i;49684:145::-;;;:::i;45127:30::-;;;;;;;;;;-1:-1:-1;45127:30:0;;;;;;;;28479:185;;;;;;;;;;-1:-1:-1;28479:185:0;;;;;:::i;:::-;;:::i;47860:335::-;;;;;;;;;;-1:-1:-1;47860:335:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;39096:233::-;;;;;;;;;;-1:-1:-1;39096:233:0;;;;;:::i;:::-;;:::i;44953:32::-;;;;;;;;;;;;;;;;25454:239;;;;;;;;;;-1:-1:-1;25454:239:0;;;;;:::i;:::-;;:::i;45096:26::-;;;;;;;;;;;;;;;;44566:21;;;;;;;;;;;;;:::i;25184:208::-;;;;;;;;;;-1:-1:-1;25184:208:0;;;;;:::i;:::-;;:::i;45197:54::-;;;;;;;;;;-1:-1:-1;45197:54:0;;;;;:::i;:::-;;;;;;;;;;;;;;4730:103;;;;;;;;;;;;;:::i;49559:118::-;;;;;;;;;;-1:-1:-1;49559:118:0;;;;;:::i;:::-;;:::i;49457:96::-;;;;;;;;;;-1:-1:-1;49457:96:0;;;;;:::i;:::-;;:::i;48212:397::-;;;;;;;;;;-1:-1:-1;48212:397:0;;;;;:::i;:::-;;:::i;4079:87::-;;;;;;;;;;-1:-1:-1;4152:6:0;;-1:-1:-1;;;;;4152:6:0;4079:87;;44990:31;;;;;;;;;;;;;;;;25929:104;;;;;;;;;;;;;:::i;45592:1555::-;;;;;;:::i;:::-;;:::i;27612:155::-;;;;;;;;;;-1:-1:-1;27612:155:0;;;;;:::i;:::-;;:::i;44667:35::-;;;;;;;;;;-1:-1:-1;44667:35:0;;;;;:::i;:::-;;:::i;44824:42::-;;;;;;;;;;;;;;;;48944:87;;;;;;;;;;-1:-1:-1;48944:87:0;;;;;:::i;:::-;;:::i;49037:85::-;;;;;;;;;;-1:-1:-1;49037:85:0;;;;;:::i;:::-;;:::i;28735:328::-;;;;;;;;;;-1:-1:-1;28735:328:0;;;;;:::i;:::-;;:::i;48615:77::-;;;;;;;;;;;;;:::i;44782:37::-;;;;;;;;;;;;;;;;44625;;;;;;;;;;;;;:::i;47155:451::-;;;;;;;;;;-1:-1:-1;47155:451:0;;;;;:::i;:::-;;:::i;44918:30::-;;;;;;;;;;;;;;;;49128:94;;;;;;;;;;-1:-1:-1;49128:94:0;;;;;:::i;:::-;;:::i;44707:34::-;;;;;;;;;;-1:-1:-1;44707:34:0;;;;;;;;45162:30;;;;;;;;;;-1:-1:-1;45162:30:0;;;;;;;;;;;49344:107;;;;;;;;;;-1:-1:-1;49344:107:0;;;;;:::i;:::-;;:::i;44746:31::-;;;;;;;;;;-1:-1:-1;44746:31:0;;;;;;;;;;;27838:164;;;;;;;;;;-1:-1:-1;27838:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;27959:25:0;;;27935:4;27959:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;27838:164;4988:201;;;;;;;;;;-1:-1:-1;4988:201:0;;;;;:::i;:::-;;:::i;49228:110::-;;;;;;;;;;-1:-1:-1;49228:110:0;;;;;:::i;:::-;;:::i;38266:224::-;38368:4;-1:-1:-1;;;;;;38392:50:0;;-1:-1:-1;;;38392:50:0;;:90;;;38446:36;38470:11;38446:23;:36::i;:::-;38385:97;38266:224;-1:-1:-1;;38266:224:0:o;48851:87::-;4152:6;;-1:-1:-1;;;;;4152:6:0;2883:10;4299:23;4291:68;;;;-1:-1:-1;;;4291:68:0;;;;;;;:::i;:::-;;;;;;;;;48912:11:::1;:20:::0;;;::::1;;;;-1:-1:-1::0;;48912:20:0;;::::1;::::0;;;::::1;::::0;;48851:87::o;25760:100::-;25814:13;25847:5;25840:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25760:100;:::o;27319:221::-;27395:7;30662:16;;;:7;:16;;;;;;-1:-1:-1;;;;;30662:16:0;27415:73;;;;-1:-1:-1;;;27415:73:0;;16487:2:1;27415:73:0;;;16469:21:1;16526:2;16506:18;;;16499:30;16565:34;16545:18;;;16538:62;-1:-1:-1;;;16616:18:1;;;16609:42;16668:19;;27415:73:0;16285:408:1;27415:73:0;-1:-1:-1;27508:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;27508:24:0;;27319:221::o;44592:28::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;26842:411::-;26923:13;26939:23;26954:7;26939:14;:23::i;:::-;26923:39;;26987:5;-1:-1:-1;;;;;26981:11:0;:2;-1:-1:-1;;;;;26981:11:0;;;26973:57;;;;-1:-1:-1;;;26973:57:0;;18794:2:1;26973:57:0;;;18776:21:1;18833:2;18813:18;;;18806:30;18872:34;18852:18;;;18845:62;-1:-1:-1;;;18923:18:1;;;18916:31;18964:19;;26973:57:0;18592:397:1;26973:57:0;2883:10;-1:-1:-1;;;;;27065:21:0;;;;:62;;-1:-1:-1;27090:37:0;27107:5;2883:10;27838:164;:::i;27090:37::-;27043:168;;;;-1:-1:-1;;;27043:168:0;;14169:2:1;27043:168:0;;;14151:21:1;14208:2;14188:18;;;14181:30;14247:34;14227:18;;;14220:62;14318:26;14298:18;;;14291:54;14362:19;;27043:168:0;13967:420:1;27043:168:0;27224:21;27233:2;27237:7;27224:8;:21::i;:::-;26912:341;26842:411;;:::o;47612:242::-;47678:4;;47691:139;47712:18;:25;47708:29;;47691:139;;;47782:5;-1:-1:-1;;;;;47757:30:0;:18;47776:1;47757:21;;;;;;;;:::i;:::-;;;;;;;;;;;-1:-1:-1;;;;;47757:21:0;:30;47753:70;;;-1:-1:-1;47809:4:0;;47612:242;-1:-1:-1;;47612:242:0:o;47753:70::-;47739:3;;;;:::i;:::-;;;;47691:139;;;-1:-1:-1;47843:5:0;;47612:242;-1:-1:-1;;47612:242:0:o;48698:147::-;4152:6;;-1:-1:-1;;;;;4152:6:0;2883:10;4299:23;4291:68;;;;-1:-1:-1;;;4291:68:0;;;;;;;:::i;:::-;48780:25:::1;48787:18;;48780:25;:::i;:::-;48812:27;:18;48833:6:::0;;48812:27:::1;:::i;28069:339::-:0;28264:41;2883:10;28297:7;28264:18;:41::i;:::-;28256:103;;;;-1:-1:-1;;;28256:103:0;;;;;;;:::i;:::-;28372:28;28382:4;28388:2;28392:7;28372:9;:28::i;38574:256::-;38671:7;38707:23;38724:5;38707:16;:23::i;:::-;38699:5;:31;38691:87;;;;-1:-1:-1;;;38691:87:0;;9581:2:1;38691:87:0;;;9563:21:1;9620:2;9600:18;;;9593:30;9659:34;9639:18;;;9632:62;-1:-1:-1;;;9710:18:1;;;9703:41;9761:19;;38691:87:0;9379:407:1;38691:87:0;-1:-1:-1;;;;;;38796:19:0;;;;;;;;:12;:19;;;;;;;;:26;;;;;;;;;38574:256::o;49684:145::-;4152:6;;-1:-1:-1;;;;;4152:6:0;2883:10;4299:23;4291:68;;;;-1:-1:-1;;;4291:68:0;;;;;;;:::i;:::-;49737:7:::1;49758;4152:6:::0;;-1:-1:-1;;;;;4152:6:0;;4079:87;49758:7:::1;-1:-1:-1::0;;;;;49750:21:0::1;49779;49750:55;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49736:69;;;49820:2;49812:11;;;::::0;::::1;;49729:100;49684:145::o:0;28479:185::-;28617:39;28634:4;28640:2;28644:7;28617:39;;;;;;;;;;;;:16;:39::i;47860:335::-;47920:16;47948:23;47974:17;47984:6;47974:9;:17::i;:::-;47948:43;;48000:25;48042:15;48028:30;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;48028:30:0;;48000:58;;48070:9;48065:103;48085:15;48081:1;:19;48065:103;;;48130:30;48150:6;48158:1;48130:19;:30::i;:::-;48116:8;48125:1;48116:11;;;;;;;;:::i;:::-;;;;;;;;;;:44;48102:3;;;;:::i;:::-;;;;48065:103;;;-1:-1:-1;48181:8:0;47860:335;-1:-1:-1;;;47860:335:0:o;39096:233::-;39171:7;39207:30;38994:10;:17;;38906:113;39207:30;39199:5;:38;39191:95;;;;-1:-1:-1;;;39191:95:0;;20257:2:1;39191:95:0;;;20239:21:1;20296:2;20276:18;;;20269:30;20335:34;20315:18;;;20308:62;-1:-1:-1;;;20386:18:1;;;20379:42;20438:19;;39191:95:0;20055:408:1;39191:95:0;39304:10;39315:5;39304:17;;;;;;;;:::i;:::-;;;;;;;;;39297:24;;39096:233;;;:::o;25454:239::-;25526:7;25562:16;;;:7;:16;;;;;;-1:-1:-1;;;;;25562:16:0;25597:19;25589:73;;;;-1:-1:-1;;;25589:73:0;;15005:2:1;25589:73:0;;;14987:21:1;15044:2;15024:18;;;15017:30;15083:34;15063:18;;;15056:62;-1:-1:-1;;;15134:18:1;;;15127:39;15183:19;;25589:73:0;14803:405:1;44566:21:0;;;;;;;:::i;25184:208::-;25256:7;-1:-1:-1;;;;;25284:19:0;;25276:74;;;;-1:-1:-1;;;25276:74:0;;14594:2:1;25276:74:0;;;14576:21:1;14633:2;14613:18;;;14606:30;14672:34;14652:18;;;14645:62;-1:-1:-1;;;14723:18:1;;;14716:40;14773:19;;25276:74:0;14392:406:1;25276:74:0;-1:-1:-1;;;;;;25368:16:0;;;;;:9;:16;;;;;;;25184:208::o;4730:103::-;4152:6;;-1:-1:-1;;;;;4152:6:0;2883:10;4299:23;4291:68;;;;-1:-1:-1;;;4291:68:0;;;;;;;:::i;:::-;4795:30:::1;4822:1;4795:18;:30::i;:::-;4730:103::o:0;49559:118::-;4152:6;;-1:-1:-1;;;;;4152:6:0;2883:10;4299:23;4291:68;;;;-1:-1:-1;;;4291:68:0;;;;;;;:::i;:::-;49639:32;;::::1;::::0;:14:::1;::::0;:32:::1;::::0;::::1;::::0;::::1;:::i;:::-;;49559:118:::0;:::o;49457:96::-;4152:6;;-1:-1:-1;;;;;4152:6:0;2883:10;4299:23;4291:68;;;;-1:-1:-1;;;4291:68:0;;;;;;;:::i;:::-;49526:21;;::::1;::::0;:7:::1;::::0;:21:::1;::::0;::::1;::::0;::::1;:::i;48212:397::-:0;4152:6;;-1:-1:-1;;;;;4152:6:0;2883:10;4299:23;4291:68;;;;-1:-1:-1;;;4291:68:0;;;;;;;:::i;:::-;48291:14:::1;48308:13;38994:10:::0;:17;;38906:113;48308:13:::1;48291:30;;48351:6;;48336:11;:21;;48328:62;;;::::0;-1:-1:-1;;;48328:62:0;;17671:2:1;48328:62:0::1;::::0;::::1;17653:21:1::0;17710:2;17690:18;;;17683:30;17749;17729:18;;;17722:58;17797:18;;48328:62:0::1;17469:352:1::0;48328:62:0::1;48429:8;::::0;48405:20:::1;48414:11:::0;48405:6;:20:::1;:::i;:::-;:32;;48397:68;;;::::0;-1:-1:-1;;;48397:68:0;;21013:2:1;48397:68:0::1;::::0;::::1;20995:21:1::0;21052:2;21032:18;;;21025:30;-1:-1:-1;;;21071:18:1;;;21064:52;21133:18;;48397:68:0::1;20811:346:1::0;48397:68:0::1;48489:1;48472:132;48497:11;48492:1;:16;48472:132;;48544:10;48524:31;::::0;;;:19:::1;:31;::::0;;;;:33;;;::::1;::::0;::::1;:::i;:::-;::::0;;;-1:-1:-1;48566:26:0::1;::::0;-1:-1:-1;48576:3:0;48581:10:::1;48590:1:::0;48581:6;:10:::1;:::i;:::-;48566:9;:26::i;:::-;48510:3:::0;::::1;::::0;::::1;:::i;:::-;;;;48472:132;;;;48284:325;48212:397:::0;;:::o;25929:104::-;25985:13;26018:7;26011:14;;;;;:::i;45592:1555::-;45658:11;;;;;;;45657:12;45649:38;;;;-1:-1:-1;;;45649:38:0;;13468:2:1;45649:38:0;;;13450:21:1;13507:2;13487:18;;;13480:30;-1:-1:-1;;;13526:18:1;;;13519:43;13579:18;;45649:38:0;13266:337:1;45649:38:0;45694:14;45711:13;38994:10;:17;;38906:113;45711:13;45694:30;;45753:1;45739:11;:15;45731:40;;;;-1:-1:-1;;;45731:40:0;;8880:2:1;45731:40:0;;;8862:21:1;8919:2;8899:18;;;8892:30;-1:-1:-1;;;8938:18:1;;;8931:42;8990:18;;45731:40:0;8678:336:1;45731:40:0;45812:8;;45788:20;45797:11;45788:6;:20;:::i;:::-;:32;;45780:59;;;;-1:-1:-1;;;45780:59:0;;20670:2:1;45780:59:0;;;20652:21:1;20709:2;20689:18;;;20682:30;-1:-1:-1;;;20728:18:1;;;20721:44;20782:18;;45780:59:0;20468:338:1;45780:59:0;4152:6;;-1:-1:-1;;;;;4152:6:0;45852:10;:21;45848:1151;;45890:11;;;;:19;;:11;:19;45886:1106;;;45935:10;;;;;;;45934:11;45926:24;;;;-1:-1:-1;;;45926:24:0;;19550:2:1;45926:24:0;;;19532:21:1;-1:-1:-1;19569:18:1;;;19562:29;19608:18;;45926:24:0;19348:284:1;45926:24:0;45973:32;45994:10;45973:20;:32::i;:::-;45965:67;;;;-1:-1:-1;;;45965:67:0;;15775:2:1;45965:67:0;;;15757:21:1;15814:2;15794:18;;;15787:30;-1:-1:-1;;;15833:18:1;;;15826:52;15895:18;;45965:67:0;15573:346:1;45965:67:0;46079:10;;46055:20;46064:11;46055:6;:20;:::i;:::-;:34;;46047:78;;;;-1:-1:-1;;;46047:78:0;;9221:2:1;46047:78:0;;;9203:21:1;9260:2;9240:18;;;9233:30;9299:33;9279:18;;;9272:61;9350:18;;46047:78:0;9019:355:1;46047:78:0;46173:12;;46149:20;46158:11;46149:6;:20;:::i;:::-;:36;;46141:81;;;;-1:-1:-1;;;46141:81:0;;11935:2:1;46141:81:0;;;11917:21:1;;;11954:18;;;11947:30;12013:34;11993:18;;;11986:62;12065:18;;46141:81:0;11733:356:1;46141:81:0;46275:11;46258:14;;:28;;;;:::i;:::-;46245:9;:41;;46237:91;;;;-1:-1:-1;;;46237:91:0;;11176:2:1;46237:91:0;;;11158:21:1;11215:2;11195:18;;;11188:30;11254:34;11234:18;;;11227:62;-1:-1:-1;;;11305:18:1;;;11298:35;11350:19;;46237:91:0;10974:401:1;46237:91:0;45886:1106;;;46367:10;;;;;;;;:18;;:10;:18;46363:629;;;46411:11;;;;46410:12;46402:25;;;;-1:-1:-1;;;46402:25:0;;19550:2:1;46402:25:0;;;19532:21:1;-1:-1:-1;19569:18:1;;;19562:29;19608:18;;46402:25:0;19348:284:1;46402:25:0;46474:10;;46450:20;46459:11;46450:6;:20;:::i;:::-;:34;;46442:71;;;;-1:-1:-1;;;46442:71:0;;11582:2:1;46442:71:0;;;11564:21:1;11621:2;11601:18;;;11594:30;11660:26;11640:18;;;11633:54;11704:18;;46442:71:0;11380:348:1;46442:71:0;46561:12;;46537:20;46546:11;46537:6;:20;:::i;:::-;:36;;46529:74;;;;-1:-1:-1;;;46529:74:0;;19196:2:1;46529:74:0;;;19178:21:1;19235:2;19215:18;;;19208:30;19274:27;19254:18;;;19247:55;19319:18;;46529:74:0;18994:349:1;46529:74:0;46655:11;46639:13;;:27;;;;:::i;:::-;46626:9;:40;;46618:83;;;;-1:-1:-1;;;46618:83:0;;13810:2:1;46618:83:0;;;13792:21:1;13849:2;13829:18;;;13822:30;13888:32;13868:18;;;13861:60;13938:18;;46618:83:0;13608:354:1;46363:629:0;46775:7;;46751:20;46760:11;46751:6;:20;:::i;:::-;:31;;46743:65;;;;-1:-1:-1;;;46743:65:0;;18444:2:1;46743:65:0;;;18426:21:1;18483:2;18463:18;;;18456:30;-1:-1:-1;;;18502:18:1;;;18495:51;18563:18;;46743:65:0;18242:345:1;46743:65:0;46847:6;;46832:11;:21;;46824:62;;;;-1:-1:-1;;;46824:62:0;;17671:2:1;46824:62:0;;;17653:21:1;17710:2;17690:18;;;17683:30;17749;17729:18;;;17722:58;17797:18;;46824:62:0;17469:352:1;46824:62:0;46933:11;46922:8;;:22;;;;:::i;:::-;46909:9;:35;;46901:79;;;;-1:-1:-1;;;46901:79:0;;15415:2:1;46901:79:0;;;15397:21:1;15454:2;15434:18;;;15427:30;15493:33;15473:18;;;15466:61;15544:18;;46901:79:0;15213:355:1;46901:79:0;47024:1;47007:135;47032:11;47027:1;:16;47007:135;;47079:10;47059:31;;;;:19;:31;;;;;:33;;;;;;:::i;:::-;;;;-1:-1:-1;47101:33:0;;-1:-1:-1;47111:10:0;47123;47132:1;47123:6;:10;:::i;47101:33::-;47045:3;;;;:::i;:::-;;;;47007:135;;27612:155;27707:52;2883:10;27740:8;27750;27707:18;:52::i;44667:35::-;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;44667:35:0;;-1:-1:-1;44667:35:0;:::o;48944:87::-;4152:6;;-1:-1:-1;;;;;4152:6:0;2883:10;4299:23;4291:68;;;;-1:-1:-1;;;4291:68:0;;;;;;;:::i;:::-;49005:11:::1;:20:::0;;-1:-1:-1;;49005:20:0::1;::::0;::::1;;::::0;;;::::1;::::0;;48944:87::o;49037:85::-;4152:6;;-1:-1:-1;;;;;4152:6:0;2883:10;4299:23;4291:68;;;;-1:-1:-1;;;4291:68:0;;;;;;;:::i;:::-;49097:10:::1;:19:::0;;;::::1;;;;-1:-1:-1::0;;49097:19:0;;::::1;::::0;;;::::1;::::0;;49037:85::o;28735:328::-;28910:41;2883:10;28943:7;28910:18;:41::i;:::-;28902:103;;;;-1:-1:-1;;;28902:103:0;;;;;;;:::i;:::-;29016:39;29030:4;29036:2;29040:7;29049:5;29016:13;:39::i;48615:77::-;4152:6;;-1:-1:-1;;;;;4152:6:0;2883:10;4299:23;4291:68;;;;-1:-1:-1;;;4291:68:0;;;;;;;:::i;:::-;48665:14:::1;:21:::0;;-1:-1:-1;;48665:21:0::1;48682:4;48665:21;::::0;;48615:77::o;44625:37::-;;;;;;;:::i;47155:451::-;30638:4;30662:16;;;:7;:16;;;;;;47228:13;;-1:-1:-1;;;;;30662:16:0;47253:76;;;;-1:-1:-1;;;47253:76:0;;18028:2:1;47253:76:0;;;18010:21:1;18067:2;18047:18;;;18040:30;18106:34;18086:18;;;18079:62;-1:-1:-1;;;18157:18:1;;;18150:45;18212:19;;47253:76:0;17826:411:1;47253:76:0;47339:14;;;;47336:68;;47382:14;47375:21;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47155:451;;;:::o;47336:68::-;47410:28;47441:10;:8;:10::i;:::-;47410:41;;47498:1;47473:14;47467:28;:32;:133;;;;;;;;;;;;;;;;;47535:14;47551:18;:7;:16;:18::i;:::-;47571:13;47518:67;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;47467:133;47460:140;47155:451;-1:-1:-1;;;47155:451:0:o;49128:94::-;4152:6;;-1:-1:-1;;;;;4152:6:0;2883:10;4299:23;4291:68;;;;-1:-1:-1;;;4291:68:0;;;;;;;:::i;:::-;49193:8:::1;:23:::0;49128:94::o;49344:107::-;4152:6;;-1:-1:-1;;;;;4152:6:0;2883:10;4299:23;4291:68;;;;-1:-1:-1;;;4291:68:0;;;;;;;:::i;:::-;49412:13:::1;:33:::0;49344:107::o;4988:201::-;4152:6;;-1:-1:-1;;;;;4152:6:0;2883:10;4299:23;4291:68;;;;-1:-1:-1;;;4291:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;5077:22:0;::::1;5069:73;;;::::0;-1:-1:-1;;;5069:73:0;;10412:2:1;5069:73:0::1;::::0;::::1;10394:21:1::0;10451:2;10431:18;;;10424:30;10490:34;10470:18;;;10463:62;-1:-1:-1;;;10541:18:1;;;10534:36;10587:19;;5069:73:0::1;10210:402:1::0;5069:73:0::1;5153:28;5172:8;5153:18;:28::i;49228:110::-:0;4152:6;;-1:-1:-1;;;;;4152:6:0;2883:10;4299:23;4291:68;;;;-1:-1:-1;;;4291:68:0;;;;;;;:::i;:::-;49297:14:::1;:35:::0;49228:110::o;24815:305::-;24917:4;-1:-1:-1;;;;;;24954:40:0;;-1:-1:-1;;;24954:40:0;;:105;;-1:-1:-1;;;;;;;25011:48:0;;-1:-1:-1;;;25011:48:0;24954:105;:158;;;-1:-1:-1;;;;;;;;;;16620:40:0;;;25076:36;16511:157;34555:174;34630:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;34630:29:0;-1:-1:-1;;;;;34630:29:0;;;;;;;;:24;;34684:23;34630:24;34684:14;:23::i;:::-;-1:-1:-1;;;;;34675:46:0;;;;;;;;;;;34555:174;;:::o;30867:348::-;30960:4;30662:16;;;:7;:16;;;;;;-1:-1:-1;;;;;30662:16:0;30977:73;;;;-1:-1:-1;;;30977:73:0;;13055:2:1;30977:73:0;;;13037:21:1;13094:2;13074:18;;;13067:30;13133:34;13113:18;;;13106:62;-1:-1:-1;;;13184:18:1;;;13177:42;13236:19;;30977:73:0;12853:408:1;30977:73:0;31061:13;31077:23;31092:7;31077:14;:23::i;:::-;31061:39;;31130:5;-1:-1:-1;;;;;31119:16:0;:7;-1:-1:-1;;;;;31119:16:0;;:51;;;;31163:7;-1:-1:-1;;;;;31139:31:0;:20;31151:7;31139:11;:20::i;:::-;-1:-1:-1;;;;;31139:31:0;;31119:51;:87;;;-1:-1:-1;;;;;;27959:25:0;;;27935:4;27959:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;31174:32;31111:96;30867:348;-1:-1:-1;;;;30867:348:0:o;33859:578::-;34018:4;-1:-1:-1;;;;;33991:31:0;:23;34006:7;33991:14;:23::i;:::-;-1:-1:-1;;;;;33991:31:0;;33983:85;;;;-1:-1:-1;;;33983:85:0;;17261:2:1;33983:85:0;;;17243:21:1;17300:2;17280:18;;;17273:30;17339:34;17319:18;;;17312:62;-1:-1:-1;;;17390:18:1;;;17383:39;17439:19;;33983:85:0;17059:405:1;33983:85:0;-1:-1:-1;;;;;34087:16:0;;34079:65;;;;-1:-1:-1;;;34079:65:0;;12296:2:1;34079:65:0;;;12278:21:1;12335:2;12315:18;;;12308:30;12374:34;12354:18;;;12347:62;-1:-1:-1;;;12425:18:1;;;12418:34;12469:19;;34079:65:0;12094:400:1;34079:65:0;34157:39;34178:4;34184:2;34188:7;34157:20;:39::i;:::-;34261:29;34278:1;34282:7;34261:8;:29::i;:::-;-1:-1:-1;;;;;34303:15:0;;;;;;:9;:15;;;;;:20;;34322:1;;34303:15;:20;;34322:1;;34303:20;:::i;:::-;;;;-1:-1:-1;;;;;;;34334:13:0;;;;;;:9;:13;;;;;:18;;34351:1;;34334:13;:18;;34351:1;;34334:18;:::i;:::-;;;;-1:-1:-1;;34363:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;34363:21:0;-1:-1:-1;;;;;34363:21:0;;;;;;;;;34402:27;;34363:16;;34402:27;;;;;;;33859:578;;;:::o;5349:191::-;5442:6;;;-1:-1:-1;;;;;5459:17:0;;;-1:-1:-1;;;;;;5459:17:0;;;;;;;5492:40;;5442:6;;;5459:17;5442:6;;5492:40;;5423:16;;5492:40;5412:128;5349:191;:::o;31557:110::-;31633:26;31643:2;31647:7;31633:26;;;;;;;;;;;;:9;:26::i;34871:315::-;35026:8;-1:-1:-1;;;;;35017:17:0;:5;-1:-1:-1;;;;;35017:17:0;;;35009:55;;;;-1:-1:-1;;;35009:55:0;;12701:2:1;35009:55:0;;;12683:21:1;12740:2;12720:18;;;12713:30;12779:27;12759:18;;;12752:55;12824:18;;35009:55:0;12499:349:1;35009:55:0;-1:-1:-1;;;;;35075:25:0;;;;;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;:46;;-1:-1:-1;;35075:46:0;;;;;;;;;;35137:41;;8402::1;;;35137::0;;8375:18:1;35137:41:0;;;;;;;34871:315;;;:::o;29945:::-;30102:28;30112:4;30118:2;30122:7;30102:9;:28::i;:::-;30149:48;30172:4;30178:2;30182:7;30191:5;30149:22;:48::i;:::-;30141:111;;;;-1:-1:-1;;;30141:111:0;;;;;;;:::i;45474:102::-;45534:13;45563:7;45556:14;;;;;:::i;365:723::-;421:13;642:10;638:53;;-1:-1:-1;;669:10:0;;;;;;;;;;;;-1:-1:-1;;;669:10:0;;;;;365:723::o;638:53::-;716:5;701:12;757:78;764:9;;757:78;;790:8;;;;:::i;:::-;;-1:-1:-1;813:10:0;;-1:-1:-1;821:2:0;813:10;;:::i;:::-;;;757:78;;;845:19;877:6;867:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;867:17:0;;845:39;;895:154;902:10;;895:154;;929:11;939:1;929:11;;:::i;:::-;;-1:-1:-1;998:10:0;1006:2;998:5;:10;:::i;:::-;985:24;;:2;:24;:::i;:::-;972:39;;955:6;962;955:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;955:56:0;;;;;;;;-1:-1:-1;1026:11:0;1035:2;1026:11;;:::i;:::-;;;895:154;;39942:589;-1:-1:-1;;;;;40148:18:0;;40144:187;;40183:40;40215:7;41358:10;:17;;41331:24;;;;:15;:24;;;;;:44;;;41386:24;;;;;;;;;;;;41254:164;40183:40;40144:187;;;40253:2;-1:-1:-1;;;;;40245:10:0;:4;-1:-1:-1;;;;;40245:10:0;;40241:90;;40272:47;40305:4;40311:7;40272:32;:47::i;:::-;-1:-1:-1;;;;;40345:16:0;;40341:183;;40378:45;40415:7;40378:36;:45::i;40341:183::-;40451:4;-1:-1:-1;;;;;40445:10:0;:2;-1:-1:-1;;;;;40445:10:0;;40441:83;;40472:40;40500:2;40504:7;40472:27;:40::i;31894:321::-;32024:18;32030:2;32034:7;32024:5;:18::i;:::-;32075:54;32106:1;32110:2;32114:7;32123:5;32075:22;:54::i;:::-;32053:154;;;;-1:-1:-1;;;32053:154:0;;;;;;;:::i;35751:799::-;35906:4;-1:-1:-1;;;;;35927:13:0;;6690:20;6738:8;35923:620;;35963:72;;-1:-1:-1;;;35963:72:0;;-1:-1:-1;;;;;35963:36:0;;;;;:72;;2883:10;;36014:4;;36020:7;;36029:5;;35963:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;35963:72:0;;;;;;;;-1:-1:-1;;35963:72:0;;;;;;;;;;;;:::i;:::-;;;35959:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;36205:13:0;;36201:272;;36248:60;;-1:-1:-1;;;36248:60:0;;;;;;;:::i;36201:272::-;36423:6;36417:13;36408:6;36404:2;36400:15;36393:38;35959:529;-1:-1:-1;;;;;;36086:51:0;-1:-1:-1;;;36086:51:0;;-1:-1:-1;36079:58:0;;35923:620;-1:-1:-1;36527:4:0;35751:799;;;;;;:::o;42045:988::-;42311:22;42361:1;42336:22;42353:4;42336:16;:22::i;:::-;:26;;;;:::i;:::-;42373:18;42394:26;;;:17;:26;;;;;;42311:51;;-1:-1:-1;42527:28:0;;;42523:328;;-1:-1:-1;;;;;42594:18:0;;42572:19;42594:18;;;:12;:18;;;;;;;;:34;;;;;;;;;42645:30;;;;;;:44;;;42762:30;;:17;:30;;;;;:43;;;42523:328;-1:-1:-1;42947:26:0;;;;:17;:26;;;;;;;;42940:33;;;-1:-1:-1;;;;;42991:18:0;;;;;:12;:18;;;;;:34;;;;;;;42984:41;42045:988::o;43328:1079::-;43606:10;:17;43581:22;;43606:21;;43626:1;;43606:21;:::i;:::-;43638:18;43659:24;;;:15;:24;;;;;;44032:10;:26;;43581:46;;-1:-1:-1;43659:24:0;;43581:46;;44032:26;;;;;;:::i;:::-;;;;;;;;;44010:48;;44096:11;44071:10;44082;44071:22;;;;;;;;:::i;:::-;;;;;;;;;;;;:36;;;;44176:28;;;:15;:28;;;;;;;:41;;;44348:24;;;;;44341:31;44383:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;43399:1008;;;43328:1079;:::o;40832:221::-;40917:14;40934:20;40951:2;40934:16;:20::i;:::-;-1:-1:-1;;;;;40965:16:0;;;;;;;:12;:16;;;;;;;;:24;;;;;;;;:34;;;41010:26;;;:17;:26;;;;;;:35;;;;-1:-1:-1;40832:221:0:o;32551:382::-;-1:-1:-1;;;;;32631:16:0;;32623:61;;;;-1:-1:-1;;;32623:61:0;;16126:2:1;32623:61:0;;;16108:21:1;;;16145:18;;;16138:30;16204:34;16184:18;;;16177:62;16256:18;;32623:61:0;15924:356:1;32623:61:0;30638:4;30662:16;;;:7;:16;;;;;;-1:-1:-1;;;;;30662:16:0;:30;32695:58;;;;-1:-1:-1;;;32695:58:0;;10819:2:1;32695:58:0;;;10801:21:1;10858:2;10838:18;;;10831:30;10897;10877:18;;;10870:58;10945:18;;32695:58:0;10617:352:1;32695:58:0;32766:45;32795:1;32799:2;32803:7;32766:20;:45::i;:::-;-1:-1:-1;;;;;32824:13:0;;;;;;:9;:13;;;;;:18;;32841:1;;32824:13;:18;;32841:1;;32824:18;:::i;:::-;;;;-1:-1:-1;;32853:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;32853:21:0;-1:-1:-1;;;;;32853:21:0;;;;;;;;32892:33;;32853:16;;;32892:33;;32853:16;;32892:33;32551:382;;:::o;-1:-1:-1:-;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14:631:1;78:5;108:18;149:2;141:6;138:14;135:40;;;155:18;;:::i;:::-;230:2;224:9;198:2;284:15;;-1:-1:-1;;280:24:1;;;306:2;276:33;272:42;260:55;;;330:18;;;350:22;;;327:46;324:72;;;376:18;;:::i;:::-;416:10;412:2;405:22;445:6;436:15;;475:6;467;460:22;515:3;506:6;501:3;497:16;494:25;491:45;;;532:1;529;522:12;491:45;582:6;577:3;570:4;562:6;558:17;545:44;637:1;630:4;621:6;613;609:19;605:30;598:41;;;;14:631;;;;;:::o;650:173::-;718:20;;-1:-1:-1;;;;;767:31:1;;757:42;;747:70;;813:1;810;803:12;747:70;650:173;;;:::o;828:160::-;893:20;;949:13;;942:21;932:32;;922:60;;978:1;975;968:12;993:186;1052:6;1105:2;1093:9;1084:7;1080:23;1076:32;1073:52;;;1121:1;1118;1111:12;1073:52;1144:29;1163:9;1144:29;:::i;1184:260::-;1252:6;1260;1313:2;1301:9;1292:7;1288:23;1284:32;1281:52;;;1329:1;1326;1319:12;1281:52;1352:29;1371:9;1352:29;:::i;:::-;1342:39;;1400:38;1434:2;1423:9;1419:18;1400:38;:::i;:::-;1390:48;;1184:260;;;;;:::o;1449:328::-;1526:6;1534;1542;1595:2;1583:9;1574:7;1570:23;1566:32;1563:52;;;1611:1;1608;1601:12;1563:52;1634:29;1653:9;1634:29;:::i;:::-;1624:39;;1682:38;1716:2;1705:9;1701:18;1682:38;:::i;:::-;1672:48;;1767:2;1756:9;1752:18;1739:32;1729:42;;1449:328;;;;;:::o;1782:666::-;1877:6;1885;1893;1901;1954:3;1942:9;1933:7;1929:23;1925:33;1922:53;;;1971:1;1968;1961:12;1922:53;1994:29;2013:9;1994:29;:::i;:::-;1984:39;;2042:38;2076:2;2065:9;2061:18;2042:38;:::i;:::-;2032:48;;2127:2;2116:9;2112:18;2099:32;2089:42;;2182:2;2171:9;2167:18;2154:32;2209:18;2201:6;2198:30;2195:50;;;2241:1;2238;2231:12;2195:50;2264:22;;2317:4;2309:13;;2305:27;-1:-1:-1;2295:55:1;;2346:1;2343;2336:12;2295:55;2369:73;2434:7;2429:2;2416:16;2411:2;2407;2403:11;2369:73;:::i;:::-;2359:83;;;1782:666;;;;;;;:::o;2453:254::-;2518:6;2526;2579:2;2567:9;2558:7;2554:23;2550:32;2547:52;;;2595:1;2592;2585:12;2547:52;2618:29;2637:9;2618:29;:::i;:::-;2608:39;;2666:35;2697:2;2686:9;2682:18;2666:35;:::i;2712:254::-;2780:6;2788;2841:2;2829:9;2820:7;2816:23;2812:32;2809:52;;;2857:1;2854;2847:12;2809:52;2880:29;2899:9;2880:29;:::i;:::-;2870:39;2956:2;2941:18;;;;2928:32;;-1:-1:-1;;;2712:254:1:o;2971:615::-;3057:6;3065;3118:2;3106:9;3097:7;3093:23;3089:32;3086:52;;;3134:1;3131;3124:12;3086:52;3174:9;3161:23;3203:18;3244:2;3236:6;3233:14;3230:34;;;3260:1;3257;3250:12;3230:34;3298:6;3287:9;3283:22;3273:32;;3343:7;3336:4;3332:2;3328:13;3324:27;3314:55;;3365:1;3362;3355:12;3314:55;3405:2;3392:16;3431:2;3423:6;3420:14;3417:34;;;3447:1;3444;3437:12;3417:34;3500:7;3495:2;3485:6;3482:1;3478:14;3474:2;3470:23;3466:32;3463:45;3460:65;;;3521:1;3518;3511:12;3460:65;3552:2;3544:11;;;;;3574:6;;-1:-1:-1;2971:615:1;;-1:-1:-1;;;;2971:615:1:o;3591:180::-;3647:6;3700:2;3688:9;3679:7;3675:23;3671:32;3668:52;;;3716:1;3713;3706:12;3668:52;3739:26;3755:9;3739:26;:::i;3776:245::-;3834:6;3887:2;3875:9;3866:7;3862:23;3858:32;3855:52;;;3903:1;3900;3893:12;3855:52;3942:9;3929:23;3961:30;3985:5;3961:30;:::i;4026:249::-;4095:6;4148:2;4136:9;4127:7;4123:23;4119:32;4116:52;;;4164:1;4161;4154:12;4116:52;4196:9;4190:16;4215:30;4239:5;4215:30;:::i;4280:450::-;4349:6;4402:2;4390:9;4381:7;4377:23;4373:32;4370:52;;;4418:1;4415;4408:12;4370:52;4458:9;4445:23;4491:18;4483:6;4480:30;4477:50;;;4523:1;4520;4513:12;4477:50;4546:22;;4599:4;4591:13;;4587:27;-1:-1:-1;4577:55:1;;4628:1;4625;4618:12;4577:55;4651:73;4716:7;4711:2;4698:16;4693:2;4689;4685:11;4651:73;:::i;4735:180::-;4794:6;4847:2;4835:9;4826:7;4822:23;4818:32;4815:52;;;4863:1;4860;4853:12;4815:52;-1:-1:-1;4886:23:1;;4735:180;-1:-1:-1;4735:180:1:o;4920:257::-;4961:3;4999:5;4993:12;5026:6;5021:3;5014:19;5042:63;5098:6;5091:4;5086:3;5082:14;5075:4;5068:5;5064:16;5042:63;:::i;:::-;5159:2;5138:15;-1:-1:-1;;5134:29:1;5125:39;;;;5166:4;5121:50;;4920:257;-1:-1:-1;;4920:257:1:o;5182:1527::-;5406:3;5444:6;5438:13;5470:4;5483:51;5527:6;5522:3;5517:2;5509:6;5505:15;5483:51;:::i;:::-;5597:13;;5556:16;;;;5619:55;5597:13;5556:16;5641:15;;;5619:55;:::i;:::-;5763:13;;5696:20;;;5736:1;;5823;5845:18;;;;5898;;;;5925:93;;6003:4;5993:8;5989:19;5977:31;;5925:93;6066:2;6056:8;6053:16;6033:18;6030:40;6027:167;;;-1:-1:-1;;;6093:33:1;;6149:4;6146:1;6139:15;6179:4;6100:3;6167:17;6027:167;6210:18;6237:110;;;;6361:1;6356:328;;;;6203:481;;6237:110;-1:-1:-1;;6272:24:1;;6258:39;;6317:20;;;;-1:-1:-1;6237:110:1;;6356:328;21417:1;21410:14;;;21454:4;21441:18;;6451:1;6465:169;6479:8;6476:1;6473:15;6465:169;;;6561:14;;6546:13;;;6539:37;6604:16;;;;6496:10;;6465:169;;;6469:3;;6665:8;6658:5;6654:20;6647:27;;6203:481;-1:-1:-1;6700:3:1;;5182:1527;-1:-1:-1;;;;;;;;;;;5182:1527:1:o;7132:488::-;-1:-1:-1;;;;;7401:15:1;;;7383:34;;7453:15;;7448:2;7433:18;;7426:43;7500:2;7485:18;;7478:34;;;7548:3;7543:2;7528:18;;7521:31;;;7326:4;;7569:45;;7594:19;;7586:6;7569:45;:::i;:::-;7561:53;7132:488;-1:-1:-1;;;;;;7132:488:1:o;7625:632::-;7796:2;7848:21;;;7918:13;;7821:18;;;7940:22;;;7767:4;;7796:2;8019:15;;;;7993:2;7978:18;;;7767:4;8062:169;8076:6;8073:1;8070:13;8062:169;;;8137:13;;8125:26;;8206:15;;;;8171:12;;;;8098:1;8091:9;8062:169;;;-1:-1:-1;8248:3:1;;7625:632;-1:-1:-1;;;;;;7625:632:1:o;8454:219::-;8603:2;8592:9;8585:21;8566:4;8623:44;8663:2;8652:9;8648:18;8640:6;8623:44;:::i;9791:414::-;9993:2;9975:21;;;10032:2;10012:18;;;10005:30;10071:34;10066:2;10051:18;;10044:62;-1:-1:-1;;;10137:2:1;10122:18;;10115:48;10195:3;10180:19;;9791:414::o;16698:356::-;16900:2;16882:21;;;16919:18;;;16912:30;16978:34;16973:2;16958:18;;16951:62;17045:2;17030:18;;16698:356::o;19637:413::-;19839:2;19821:21;;;19878:2;19858:18;;;19851:30;19917:34;19912:2;19897:18;;19890:62;-1:-1:-1;;;19983:2:1;19968:18;;19961:47;20040:3;20025:19;;19637:413::o;21470:128::-;21510:3;21541:1;21537:6;21534:1;21531:13;21528:39;;;21547:18;;:::i;:::-;-1:-1:-1;21583:9:1;;21470:128::o;21603:120::-;21643:1;21669;21659:35;;21674:18;;:::i;:::-;-1:-1:-1;21708:9:1;;21603:120::o;21728:168::-;21768:7;21834:1;21830;21826:6;21822:14;21819:1;21816:21;21811:1;21804:9;21797:17;21793:45;21790:71;;;21841:18;;:::i;:::-;-1:-1:-1;21881:9:1;;21728:168::o;21901:125::-;21941:4;21969:1;21966;21963:8;21960:34;;;21974:18;;:::i;:::-;-1:-1:-1;22011:9:1;;21901:125::o;22031:258::-;22103:1;22113:113;22127:6;22124:1;22121:13;22113:113;;;22203:11;;;22197:18;22184:11;;;22177:39;22149:2;22142:10;22113:113;;;22244:6;22241:1;22238:13;22235:48;;;-1:-1:-1;;22279:1:1;22261:16;;22254:27;22031:258::o;22294:380::-;22373:1;22369:12;;;;22416;;;22437:61;;22491:4;22483:6;22479:17;22469:27;;22437:61;22544:2;22536:6;22533:14;22513:18;22510:38;22507:161;;;22590:10;22585:3;22581:20;22578:1;22571:31;22625:4;22622:1;22615:15;22653:4;22650:1;22643:15;22507:161;;22294:380;;;:::o;22679:135::-;22718:3;-1:-1:-1;;22739:17:1;;22736:43;;;22759:18;;:::i;:::-;-1:-1:-1;22806:1:1;22795:13;;22679:135::o;22819:112::-;22851:1;22877;22867:35;;22882:18;;:::i;:::-;-1:-1:-1;22916:9:1;;22819:112::o;22936:127::-;22997:10;22992:3;22988:20;22985:1;22978:31;23028:4;23025:1;23018:15;23052:4;23049:1;23042:15;23068:127;23129:10;23124:3;23120:20;23117:1;23110:31;23160:4;23157:1;23150:15;23184:4;23181:1;23174:15;23200:127;23261:10;23256:3;23252:20;23249:1;23242:31;23292:4;23289:1;23282:15;23316:4;23313:1;23306:15;23332:127;23393:10;23388:3;23384:20;23381:1;23374:31;23424:4;23421:1;23414:15;23448:4;23445:1;23438:15;23464:127;23525:10;23520:3;23516:20;23513:1;23506:31;23556:4;23553:1;23546:15;23580:4;23577:1;23570:15;23596:131;-1:-1:-1;;;;;;23670:32:1;;23660:43;;23650:71;;23717:1;23714;23707:12

Swarm Source

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