ETH Price: $3,424.12 (-1.98%)
Gas: 6 Gwei

Token

Naked Metas (NMetas)
 

Overview

Max Total Supply

395 NMetas

Holders

205

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Balance
2 NMetas
0xd3d33d9088e7f8ec6cc7b7f8ac0abd7f48d08460
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:
NAKEDMETAS

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

/**
 *Submitted for verification at Etherscan.io on 2021-11-25
*/

/**
 *Submitted for verification at Etherscan.io on 2021-10-07
*/

// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

// CAUTION
// This version of SafeMath should only be used with Solidity 0.8 or later,
// because it relies on the compiler's built in overflow checks.

/**
 * @dev Wrappers over Solidity's arithmetic operations.
 *
 * NOTE: `SafeMath` is no longer needed starting with Solidity 0.8. The compiler
 * now has built in overflow checking.
 */
library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            uint256 c = a + b;
            if (c < a) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the substraction of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b > a) return (false, 0);
            return (true, a - b);
        }
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            // Gas optimization: this is cheaper than requiring 'a' not being zero, but the
            // benefit is lost if 'b' is also tested.
            // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
            if (a == 0) return (true, 0);
            uint256 c = a * b;
            if (c / a != b) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the division of two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a / b);
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a % b);
        }
    }

    /**
     * @dev Returns the addition of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `+` operator.
     *
     * Requirements:
     *
     * - Addition cannot overflow.
     */
    function add(uint256 a, uint256 b) internal pure returns (uint256) {
        return a + b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting on
     * overflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b) internal pure returns (uint256) {
        return a - b;
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `*` operator.
     *
     * Requirements:
     *
     * - Multiplication cannot overflow.
     */
    function mul(uint256 a, uint256 b) internal pure returns (uint256) {
        return a * b;
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator.
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        return a / b;
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting when dividing by zero.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(uint256 a, uint256 b) internal pure returns (uint256) {
        return a % b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting with custom message on
     * overflow (when the result is negative).
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {trySub}.
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b <= a, errorMessage);
            return a - b;
        }
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting with custom message on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator. Note: this function uses a
     * `revert` opcode (which leaves remaining gas untouched) while Solidity
     * uses an invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a / b;
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting with custom message when dividing by zero.
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {tryMod}.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a % b;
        }
    }
}

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);
    }
}

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);
    }

    function _verifyCallResult(
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) private 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);
            }
        }
    }
}

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);
}

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);
}

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

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

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);
}

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);
}

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

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 () {
        address msgSender = _msgSender();
        _owner = msgSender;
        emit OwnershipTransferred(address(0), 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.
     */

    /**
     * @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");
        _setOwner(newOwner);
    }

    function _setOwner(address newOwner) private {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}

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;


    string public _baseURI;
    /**
     * @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 base = baseURI();
        return bytes(base).length > 0 ? string(abi.encodePacked(base, 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 _baseURI;
    }

    /**
     * @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 {
        require(operator != _msgSender(), "ERC721: approve to caller");

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

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

    /**
     * @dev See {IERC721-transferFrom}.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        //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 Internal function to invoke {IERC721Receiver-onERC721Received} on a target address.
     * The call is not executed if the target address is not a contract.
     *
     * @param from address representing the previous owner of the given token ID
     * @param to target address that will receive the tokens
     * @param tokenId uint256 ID of the token to be transferred
     * @param _data bytes optional data to send along with the call
     * @return bool whether the call correctly returned the expected magic value
     */
    function _checkOnERC721Received(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) private returns (bool) {
        if (to.isContract()) {
            try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) {
                return retval == IERC721Receiver(to).onERC721Received.selector;
            } catch (bytes memory reason) {
                if (reason.length == 0) {
                    revert("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 {}
}

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();
    }
}

pragma solidity ^0.8.0;

contract  NAKEDMETAS  is ERC721Enumerable, Ownable
{
    using SafeMath for uint256;

    struct userAddress {
        address userAddress;
        uint counter;
    }

    uint public constant _TOTALSUPPLY   = 10000;
    uint private tokenId                = 1;
    uint public reserve                 = 250;

    uint public freeSaleSupply          = 2500;
    uint public freeSaleMaxQuantity     = 2;
    bool public isfreeSalePaused        = true;
    mapping(address => userAddress) public _freeSaleAddresses;
    mapping(address => bool) public _freeSaleAddressExist;

    uint256 public preSaleTwoprice      = 0.06 ether;
    uint public preSaleTwoSupply        = 2500;
    uint public preSaleTwoMaxQuantity   = 10;
    bool public isPreSaleTwoPaused      = true;
    mapping(address => userAddress) public _preSaleTwoAddresses;
    mapping(address => bool) public _preSaleTwoAddressExist;

    uint256 public publicSaleprice      = 0.07 ether;
    uint public publicSaleSupply        = 1900;
    uint public publicSaleMaxQuantity   = 10;
    bool public isPublicSalePaused      = true;
    mapping(address => userAddress) public _publicAddresses;
    mapping(address => bool) public _publicAddressExist;

    constructor(string memory baseURI) ERC721("Naked Metas", "NMetas")  {
        setBaseURI(baseURI);
    }
    
    function setBaseURI(string memory baseURI) public onlyOwner {
        _baseURI = baseURI;
    }
    
    function totalsupply() private view returns (uint) {
        return tokenId;
    }

    modifier isSaleOpen {
        require(totalSupply() < _TOTALSUPPLY, "Sale Ended");
        _;
    }

    // Set Price Functions For Public, PreSaleOne & PreSaleTwo
    function setPublicPrice(uint256 _newPrice) public onlyOwner() {
        publicSaleprice = _newPrice;
    }
   
    function setPreSaleTwoPrice(uint256 _newPrice) public onlyOwner() {
        preSaleTwoprice = _newPrice;
    }

    // Flip Status Functions For Free, Public, PreSaleOne & PreSaleTwo
    function flipFreeSalePauseStatus() public onlyOwner {
        isfreeSalePaused = !isfreeSalePaused;
    }
    function flipPublicSalePauseStatus() public onlyOwner {
        isPublicSalePaused = !isPublicSalePaused;
    }
    function flipPreSaleTwoPauseStatus() public onlyOwner {
        isPreSaleTwoPaused = !isPreSaleTwoPaused;
    }

    // Set Max Quantity Functions For Free, Public, PreSaleOne & PreSaleTwo
    function setFreeSaleMaxQuantity(uint256 _quantity) public onlyOwner {
        freeSaleMaxQuantity =_quantity;
    }
    function setPublicSaleMaxQuantity(uint256 _quantity) public onlyOwner {
        publicSaleMaxQuantity =_quantity;
    }
    function setPreSaleTwoMaxQuantity(uint256 _quantity) public onlyOwner {
        preSaleTwoMaxQuantity =_quantity;
    }

    // Set Price Functions For Public, PreSaleOne & PreSaleTwo
    function getPublicPrice(uint256 _quantity) public view returns (uint256) { 
        return _quantity * publicSaleprice;
    }
    
    function getPreSaleTwoPrice(uint256 _quantity) public view returns (uint256) { 
        return _quantity * preSaleTwoprice;
    }

    // Mint Functions For Free, Public, PreSaleOne & PreSaleTwo
    function freeMint(uint chosenAmount) public payable isSaleOpen {
        if (_freeSaleAddressExist[msg.sender] == false) {
            _freeSaleAddresses[msg.sender] = userAddress({
                userAddress: msg.sender,
                counter: 0
            });
            _freeSaleAddressExist[msg.sender] = true;
        }
        require(freeSaleSupply > 0, "Public sale ended");
        require(freeSaleSupply > chosenAmount, "Chosen amount is greater than supply");
        require(_freeSaleAddresses[msg.sender].counter + chosenAmount <= freeSaleMaxQuantity, "Quantity must be lesser than MaxSupply");
        require(isfreeSalePaused == false, "Sale is not active at the moment");
        require(totalSupply() + chosenAmount <= _TOTALSUPPLY - reserve, "Quantity must be lesser then MaxSupply");
        require(chosenAmount > 0, "Number of tokens can not be less than or equal to 0");
        require(chosenAmount <= freeSaleMaxQuantity, "Chosen Amount exceeds MaxQuantity");
        for (uint i = 0; i < chosenAmount; i++) {
            _safeMint(msg.sender, totalsupply());
            tokenId++;
            freeSaleSupply--;
        }
        _freeSaleAddresses[msg.sender].counter += chosenAmount;
    }
    function mint(uint chosenAmount) public payable isSaleOpen {
        if (_publicAddressExist[msg.sender] == false) {
            _publicAddresses[msg.sender] = userAddress({
                userAddress: msg.sender,
                counter: 0
            });
            _publicAddressExist[msg.sender] = true;
        }
        require(publicSaleSupply > 0, "Public sale ended");
        require(publicSaleSupply > chosenAmount, "Chosen amount is greater than supply");
        require(_publicAddresses[msg.sender].counter + chosenAmount <= publicSaleMaxQuantity, "Quantity must be lesser than MaxSupply");
        require(isPublicSalePaused == false, "Sale is not active at the moment");
        require(totalSupply() + chosenAmount <= _TOTALSUPPLY - reserve, "Quantity must be lesser then MaxSupply");
        require(chosenAmount > 0, "Number of tokens can not be less than or equal to 0");
        require(chosenAmount <= publicSaleMaxQuantity, "Chosen Amount exceeds MaxQuantity");
        require(publicSaleprice.mul(chosenAmount) == msg.value, "Sent ether value is incorrect");
        for (uint i = 0; i < chosenAmount; i++) {
            _safeMint(msg.sender, totalsupply());
            tokenId++;
            publicSaleSupply--;
        }
        _publicAddresses[msg.sender].counter += chosenAmount;
    }
    function preSaleTwoMint(uint chosenAmount) public payable isSaleOpen {
        if (_preSaleTwoAddressExist[msg.sender] == false) {
            _preSaleTwoAddresses[msg.sender] = userAddress({
                userAddress: msg.sender,
                counter: 0
            });
            _preSaleTwoAddressExist[msg.sender] = true;
        }
        require(preSaleTwoSupply > 0, "Pre sale two ended");
        require(preSaleTwoSupply > chosenAmount, "Chosen amount is greater than supply");
        require(_preSaleTwoAddresses[msg.sender].counter + chosenAmount <= preSaleTwoMaxQuantity, "Quantity must be lesser than MaxSupply");
        require(isPreSaleTwoPaused == false, "Sale is not active at the moment");
        require(totalSupply() + chosenAmount <= _TOTALSUPPLY - reserve, "Quantity must be lesser then MaxSupply");
        require(chosenAmount > 0, "Number of tokens can not be less than or equal to 0");
        require(chosenAmount <= preSaleTwoMaxQuantity, "Chosen Amount exceeds MaxQuantity");
        require(preSaleTwoprice.mul(chosenAmount) == msg.value, "Sent ether value is incorrect");
        for (uint i = 0; i < chosenAmount; i++) {
            _safeMint(msg.sender, totalsupply());
            tokenId++;
            preSaleTwoSupply--;
        }
        _preSaleTwoAddresses[msg.sender].counter += chosenAmount;
    }

    
    function setReserveTokens(uint256 _quantity) public onlyOwner {
        reserve=_quantity;
    }
    function reserveTokens(uint quantity) public onlyOwner {
        require(quantity <= reserve, "The quantity exceeds the reserve.");
        reserve -= quantity;
        for (uint i = 0; i < quantity; i++) {
            _safeMint(msg.sender,totalsupply());
            tokenId++;
        }
    }
    function tokensOfOwner(address _owner) public view returns (uint256[] memory) {
        uint256 count = balanceOf(_owner);
        uint256[] memory result = new uint256[](count);
        for (uint256 index = 0; index < count; index++) {
            result[index] = tokenOfOwnerByIndex(_owner, index);
        }
        return result;
    }
    function withdraw() public onlyOwner {
        uint balance = address(this).balance;
        payable(msg.sender).transfer(balance);
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"baseURI","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":[],"name":"_TOTALSUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_freeSaleAddressExist","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_freeSaleAddresses","outputs":[{"internalType":"address","name":"userAddress","type":"address"},{"internalType":"uint256","name":"counter","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_preSaleTwoAddressExist","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_preSaleTwoAddresses","outputs":[{"internalType":"address","name":"userAddress","type":"address"},{"internalType":"uint256","name":"counter","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_publicAddressExist","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_publicAddresses","outputs":[{"internalType":"address","name":"userAddress","type":"address"},{"internalType":"uint256","name":"counter","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"flipFreeSalePauseStatus","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"flipPreSaleTwoPauseStatus","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"flipPublicSalePauseStatus","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"chosenAmount","type":"uint256"}],"name":"freeMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"freeSaleMaxQuantity","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"freeSaleSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"uint256","name":"_quantity","type":"uint256"}],"name":"getPreSaleTwoPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_quantity","type":"uint256"}],"name":"getPublicPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isPreSaleTwoPaused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isPublicSalePaused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isfreeSalePaused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"chosenAmount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"preSaleTwoMaxQuantity","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"chosenAmount","type":"uint256"}],"name":"preSaleTwoMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"preSaleTwoSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"preSaleTwoprice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicSaleMaxQuantity","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicSaleSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicSaleprice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"reserve","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"reserveTokens","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_quantity","type":"uint256"}],"name":"setFreeSaleMaxQuantity","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_quantity","type":"uint256"}],"name":"setPreSaleTwoMaxQuantity","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newPrice","type":"uint256"}],"name":"setPreSaleTwoPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newPrice","type":"uint256"}],"name":"setPublicPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_quantity","type":"uint256"}],"name":"setPublicSaleMaxQuantity","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_quantity","type":"uint256"}],"name":"setReserveTokens","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":[{"internalType":"address","name":"_owner","type":"address"}],"name":"tokensOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040526001600c81905560fa600d556109c4600e8190556002600f556010805460ff19908116841790915566d529ae9e860000601355601491909155600a60158190556016805483168417905566f8b0a10e47000060195561076c601a55601b55601c805490911690911790553480156200007b57600080fd5b50604051620034cb380380620034cb8339810160408190526200009e916200029c565b604080518082018252600b81526a4e616b6564204d6574617360a81b6020808301918252835180850190945260068452654e4d6574617360d01b908401528151919291620000ef91600091620001f6565b50805162000105906001906020840190620001f6565b50505060006200011a6200017a60201b60201c565b600b80546001600160a01b0319166001600160a01b038316908117909155604051919250906000907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a35062000173816200017e565b50620003cb565b3390565b600b546001600160a01b03163314620001dd5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640160405180910390fd5b8051620001f2906006906020840190620001f6565b5050565b828054620002049062000378565b90600052602060002090601f01602090048101928262000228576000855562000273565b82601f106200024357805160ff191683800117855562000273565b8280016001018555821562000273579182015b828111156200027357825182559160200191906001019062000256565b506200028192915062000285565b5090565b5b8082111562000281576000815560010162000286565b60006020808385031215620002b057600080fd5b82516001600160401b0380821115620002c857600080fd5b818501915085601f830112620002dd57600080fd5b815181811115620002f257620002f2620003b5565b604051601f8201601f19908116603f011681019083821181831017156200031d576200031d620003b5565b8160405282815288868487010111156200033657600080fd5b600093505b828410156200035a57848401860151818501870152928501926200033b565b828411156200036c5760008684830101525b98975050505050505050565b600181811c908216806200038d57607f821691505b60208210811415620003af57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052604160045260246000fd5b6130f080620003db6000396000f3fe60806040526004361061036b5760003560e01c8063719649b3116101c6578063b33ee278116100f7578063d92e98e311610095578063e985e9c51161006f578063e985e9c5146109f1578063ed8b55de14610a3a578063f2fde38b14610a6a578063fbf2c33114610a8a57600080fd5b8063d92e98e31461095b578063db4568e21461099b578063dc57e06f146109b157600080fd5b8063c87b56dd116100d1578063c87b56dd146108ef578063cbfd14a21461090f578063cd3293de14610925578063d031370b1461093b57600080fd5b8063b33ee27814610899578063b88d4fde146108af578063c6275255146108cf57600080fd5b80638da5cb5b11610164578063a0712d681161013e578063a0712d681461083b578063a1ead0831461084e578063a22cb46514610864578063acda3e011461088457600080fd5b80638da5cb5b146107e857806395d89b41146108065780639a6ec4851461081b57600080fd5b80637c928fe9116101a05780637c928fe91461077d5780637de604d61461079057806383190124146107a55780638462151c146107bb57600080fd5b8063719649b31461073857806373efad7714610752578063743976a01461076857600080fd5b80633ccfd60b116102a057806359d966031161023e57806366b89c191161021857806366b89c19146106cf5780636a44e173146106e25780636fa384901461070257806370a082311461071857600080fd5b806359d96603146106695780635c381dda146106995780636352211e146106af57600080fd5b80634abaf45e1161027a5780634abaf45e146105e35780634f6ccce71461061357806355f804b314610633578063599f01531461065357600080fd5b80633ccfd60b1461059457806342842e0e146105a9578063492b5ff7146105c957600080fd5b806318160ddd1161030d57806328c9fdc7116102e757806328c9fdc7146104d5578063295cde8c146105345780632f745c591461055457806330a3f4461461057457600080fd5b806318160ddd146104765780631f9443ca1461049557806323b872dd146104b557600080fd5b8063093f8b0b11610349578063093f8b0b146103ff578063095ea7b3146104215780631269c8c21461044157806314a6993b1461046157600080fd5b806301ffc9a71461037057806306fdde03146103a5578063081812fc146103c7575b600080fd5b34801561037c57600080fd5b5061039061038b366004612b07565b610aa4565b60405190151581526020015b60405180910390f35b3480156103b157600080fd5b506103ba610acf565b60405161039c9190612c7f565b3480156103d357600080fd5b506103e76103e2366004612b8a565b610b61565b6040516001600160a01b03909116815260200161039c565b34801561040b57600080fd5b5061041f61041a366004612b8a565b610bfb565b005b34801561042d57600080fd5b5061041f61043c366004612add565b610c2a565b34801561044d57600080fd5b5061041f61045c366004612b8a565b610d40565b34801561046d57600080fd5b5061041f610d6f565b34801561048257600080fd5b506009545b60405190815260200161039c565b3480156104a157600080fd5b5061041f6104b0366004612b8a565b610dad565b3480156104c157600080fd5b5061041f6104d03660046129e9565b610ddc565b3480156104e157600080fd5b506105156104f036600461299b565b601d60205260009081526040902080546001909101546001600160a01b039091169082565b604080516001600160a01b03909316835260208301919091520161039c565b34801561054057600080fd5b5061048761054f366004612b8a565b610e0d565b34801561056057600080fd5b5061048761056f366004612add565b610e1d565b34801561058057600080fd5b5061048761058f366004612b8a565b610eb3565b3480156105a057600080fd5b5061041f610ec3565b3480156105b557600080fd5b5061041f6105c43660046129e9565b610f20565b3480156105d557600080fd5b50601c546103909060ff1681565b3480156105ef57600080fd5b506103906105fe36600461299b565b60126020526000908152604090205460ff1681565b34801561061f57600080fd5b5061048761062e366004612b8a565b610f3b565b34801561063f57600080fd5b5061041f61064e366004612b41565b610fce565b34801561065f57600080fd5b50610487600f5481565b34801561067557600080fd5b5061039061068436600461299b565b601e6020526000908152604090205460ff1681565b3480156106a557600080fd5b5061048760195481565b3480156106bb57600080fd5b506103e76106ca366004612b8a565b61100b565b61041f6106dd366004612b8a565b611082565b3480156106ee57600080fd5b5061041f6106fd366004612b8a565b61134a565b34801561070e57600080fd5b5061048760155481565b34801561072457600080fd5b5061048761073336600461299b565b611379565b34801561074457600080fd5b506010546103909060ff1681565b34801561075e57600080fd5b50610487600e5481565b34801561077457600080fd5b506103ba611400565b61041f61078b366004612b8a565b61148e565b34801561079c57600080fd5b5061041f6116ec565b3480156107b157600080fd5b5061048760145481565b3480156107c757600080fd5b506107db6107d636600461299b565b61172a565b60405161039c9190612c3b565b3480156107f457600080fd5b50600b546001600160a01b03166103e7565b34801561081257600080fd5b506103ba6117cc565b34801561082757600080fd5b5061041f610836366004612b8a565b6117db565b61041f610849366004612b8a565b61180a565b34801561085a57600080fd5b5061048760135481565b34801561087057600080fd5b5061041f61087f366004612aa1565b611ac4565b34801561089057600080fd5b5061041f611b89565b3480156108a557600080fd5b50610487601b5481565b3480156108bb57600080fd5b5061041f6108ca366004612a25565b611bc7565b3480156108db57600080fd5b5061041f6108ea366004612b8a565b611bff565b3480156108fb57600080fd5b506103ba61090a366004612b8a565b611c2e565b34801561091b57600080fd5b50610487601a5481565b34801561093157600080fd5b50610487600d5481565b34801561094757600080fd5b5061041f610956366004612b8a565b611d09565b34801561096757600080fd5b5061051561097636600461299b565b601760205260009081526040902080546001909101546001600160a01b039091169082565b3480156109a757600080fd5b5061048761271081565b3480156109bd57600080fd5b506105156109cc36600461299b565b601160205260009081526040902080546001909101546001600160a01b039091169082565b3480156109fd57600080fd5b50610390610a0c3660046129b6565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b348015610a4657600080fd5b50610390610a5536600461299b565b60186020526000908152604090205460ff1681565b348015610a7657600080fd5b5061041f610a8536600461299b565b611de7565b348015610a9657600080fd5b506016546103909060ff1681565b60006001600160e01b0319821663780e9d6360e01b1480610ac95750610ac982611e82565b92915050565b606060008054610ade90612fcc565b80601f0160208091040260200160405190810160405280929190818152602001828054610b0a90612fcc565b8015610b575780601f10610b2c57610100808354040283529160200191610b57565b820191906000526020600020905b815481529060010190602001808311610b3a57829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b0316610bdf5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b600b546001600160a01b03163314610c255760405162461bcd60e51b8152600401610bd690612e26565b600f55565b6000610c358261100b565b9050806001600160a01b0316836001600160a01b03161415610ca35760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610bd6565b336001600160a01b0382161480610cbf5750610cbf8133610a0c565b610d315760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610bd6565b610d3b8383611ed2565b505050565b600b546001600160a01b03163314610d6a5760405162461bcd60e51b8152600401610bd690612e26565b601355565b600b546001600160a01b03163314610d995760405162461bcd60e51b8152600401610bd690612e26565b6016805460ff19811660ff90911615179055565b600b546001600160a01b03163314610dd75760405162461bcd60e51b8152600401610bd690612e26565b601b55565b610de63382611f40565b610e025760405162461bcd60e51b8152600401610bd690612ea1565b610d3b838383612037565b600060135482610ac99190612f53565b6000610e2883611379565b8210610e8a5760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b6064820152608401610bd6565b506001600160a01b03919091166000908152600760209081526040808320938352929052205490565b600060195482610ac99190612f53565b600b546001600160a01b03163314610eed5760405162461bcd60e51b8152600401610bd690612e26565b6040514790339082156108fc029083906000818181858888f19350505050158015610f1c573d6000803e3d6000fd5b5050565b610d3b83838360405180602001604052806000815250611bc7565b6000610f4660095490565b8210610fa95760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b6064820152608401610bd6565b60098281548110610fbc57610fbc613078565b90600052602060002001549050919050565b600b546001600160a01b03163314610ff85760405162461bcd60e51b8152600401610bd690612e26565b8051610f1c906006906020840190612870565b6000818152600260205260408120546001600160a01b031680610ac95760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610bd6565b61271061108e60095490565b106110ab5760405162461bcd60e51b8152600401610bd690612dc1565b3360009081526018602052604090205460ff1661111c57604080518082018252338082526000602080840182815292825260178152848220935184546001600160a01b0319166001600160a01b039091161784559151600193840155601890915291909120805460ff191690911790555b6000601454116111635760405162461bcd60e51b8152602060048201526012602482015271141c99481cd85b19481d1ddbc8195b99195960721b6044820152606401610bd6565b80601454116111845760405162461bcd60e51b8152600401610bd690612d37565b601554336000908152601760205260409020600101546111a5908390612f27565b11156111c35760405162461bcd60e51b8152600401610bd690612d7b565b60165460ff16156111e65760405162461bcd60e51b8152600401610bd690612ef2565b600d546111f590612710612f72565b816111ff60095490565b6112099190612f27565b11156112275760405162461bcd60e51b8152600401610bd690612e5b565b600081116112475760405162461bcd60e51b8152600401610bd690612c92565b6015548111156112695760405162461bcd60e51b8152600401610bd690612de5565b601354349061127890836121e2565b146112c55760405162461bcd60e51b815260206004820152601d60248201527f53656e742065746865722076616c756520697320696e636f72726563740000006044820152606401610bd6565b60005b8181101561131f576112e2336112dd600c5490565b6121ee565b600c80549060006112f283613007565b90915550506014805490600061130783612fb5565b9190505550808061131790613007565b9150506112c8565b503360009081526017602052604081206001018054839290611342908490612f27565b909155505050565b600b546001600160a01b031633146113745760405162461bcd60e51b8152600401610bd690612e26565b600d55565b60006001600160a01b0382166113e45760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610bd6565b506001600160a01b031660009081526003602052604090205490565b6006805461140d90612fcc565b80601f016020809104026020016040519081016040528092919081815260200182805461143990612fcc565b80156114865780601f1061145b57610100808354040283529160200191611486565b820191906000526020600020905b81548152906001019060200180831161146957829003601f168201915b505050505081565b61271061149a60095490565b106114b75760405162461bcd60e51b8152600401610bd690612dc1565b3360009081526012602052604090205460ff1661152857604080518082018252338082526000602080840182815292825260118152848220935184546001600160a01b0319166001600160a01b039091161784559151600193840155601290915291909120805460ff191690911790555b6000600e541161156e5760405162461bcd60e51b8152602060048201526011602482015270141d589b1a58c81cd85b1948195b991959607a1b6044820152606401610bd6565b80600e541161158f5760405162461bcd60e51b8152600401610bd690612d37565b600f54336000908152601160205260409020600101546115b0908390612f27565b11156115ce5760405162461bcd60e51b8152600401610bd690612d7b565b60105460ff16156115f15760405162461bcd60e51b8152600401610bd690612ef2565b600d5461160090612710612f72565b8161160a60095490565b6116149190612f27565b11156116325760405162461bcd60e51b8152600401610bd690612e5b565b600081116116525760405162461bcd60e51b8152600401610bd690612c92565b600f548111156116745760405162461bcd60e51b8152600401610bd690612de5565b60005b818110156116c95761168c336112dd600c5490565b600c805490600061169c83613007565b9091555050600e80549060006116b183612fb5565b919050555080806116c190613007565b915050611677565b503360009081526011602052604081206001018054839290611342908490612f27565b600b546001600160a01b031633146117165760405162461bcd60e51b8152600401610bd690612e26565b6010805460ff19811660ff90911615179055565b6060600061173783611379565b905060008167ffffffffffffffff8111156117545761175461308e565b60405190808252806020026020018201604052801561177d578160200160208202803683370190505b50905060005b828110156117c4576117958582610e1d565b8282815181106117a7576117a7613078565b6020908102919091010152806117bc81613007565b915050611783565b509392505050565b606060018054610ade90612fcc565b600b546001600160a01b031633146118055760405162461bcd60e51b8152600401610bd690612e26565b601555565b61271061181660095490565b106118335760405162461bcd60e51b8152600401610bd690612dc1565b336000908152601e602052604090205460ff166118a4576040805180820182523380825260006020808401828152928252601d8152848220935184546001600160a01b0319166001600160a01b039091161784559151600193840155601e90915291909120805460ff191690911790555b6000601a54116118ea5760405162461bcd60e51b8152602060048201526011602482015270141d589b1a58c81cd85b1948195b991959607a1b6044820152606401610bd6565b80601a541161190b5760405162461bcd60e51b8152600401610bd690612d37565b601b54336000908152601d602052604090206001015461192c908390612f27565b111561194a5760405162461bcd60e51b8152600401610bd690612d7b565b601c5460ff161561196d5760405162461bcd60e51b8152600401610bd690612ef2565b600d5461197c90612710612f72565b8161198660095490565b6119909190612f27565b11156119ae5760405162461bcd60e51b8152600401610bd690612e5b565b600081116119ce5760405162461bcd60e51b8152600401610bd690612c92565b601b548111156119f05760405162461bcd60e51b8152600401610bd690612de5565b60195434906119ff90836121e2565b14611a4c5760405162461bcd60e51b815260206004820152601d60248201527f53656e742065746865722076616c756520697320696e636f72726563740000006044820152606401610bd6565b60005b81811015611aa157611a64336112dd600c5490565b600c8054906000611a7483613007565b9091555050601a8054906000611a8983612fb5565b91905055508080611a9990613007565b915050611a4f565b50336000908152601d602052604081206001018054839290611342908490612f27565b6001600160a01b038216331415611b1d5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610bd6565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b600b546001600160a01b03163314611bb35760405162461bcd60e51b8152600401610bd690612e26565b601c805460ff19811660ff90911615179055565b611bd13383611f40565b611bed5760405162461bcd60e51b8152600401610bd690612ea1565b611bf984848484612208565b50505050565b600b546001600160a01b03163314611c295760405162461bcd60e51b8152600401610bd690612e26565b601955565b6000818152600260205260409020546060906001600160a01b0316611cad5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610bd6565b6000611cb761223b565b90506000815111611cd75760405180602001604052806000815250611d02565b80611ce18461224a565b604051602001611cf2929190612bcf565b6040516020818303038152906040525b9392505050565b600b546001600160a01b03163314611d335760405162461bcd60e51b8152600401610bd690612e26565b600d54811115611d8f5760405162461bcd60e51b815260206004820152602160248201527f546865207175616e7469747920657863656564732074686520726573657276656044820152601760f91b6064820152608401610bd6565b80600d6000828254611da19190612f72565b90915550600090505b81811015610f1c57611dbf336112dd600c5490565b600c8054906000611dcf83613007565b91905055508080611ddf90613007565b915050611daa565b600b546001600160a01b03163314611e115760405162461bcd60e51b8152600401610bd690612e26565b6001600160a01b038116611e765760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610bd6565b611e7f81612348565b50565b60006001600160e01b031982166380ac58cd60e01b1480611eb357506001600160e01b03198216635b5e139f60e01b145b80610ac957506301ffc9a760e01b6001600160e01b0319831614610ac9565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190611f078261100b565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b0316611fb95760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610bd6565b6000611fc48361100b565b9050806001600160a01b0316846001600160a01b03161480611fff5750836001600160a01b0316611ff484610b61565b6001600160a01b0316145b8061202f57506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b031661204a8261100b565b6001600160a01b0316146120b25760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b6064820152608401610bd6565b6001600160a01b0382166121145760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610bd6565b61211f83838361239a565b61212a600082611ed2565b6001600160a01b0383166000908152600360205260408120805460019290612153908490612f72565b90915550506001600160a01b0382166000908152600360205260408120805460019290612181908490612f27565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b6000611d028284612f53565b610f1c828260405180602001604052806000815250612452565b612213848484612037565b61221f84848484612485565b611bf95760405162461bcd60e51b8152600401610bd690612ce5565b606060068054610ade90612fcc565b60608161226e5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115612298578061228281613007565b91506122919050600a83612f3f565b9150612272565b60008167ffffffffffffffff8111156122b3576122b361308e565b6040519080825280601f01601f1916602001820160405280156122dd576020820181803683370190505b5090505b841561202f576122f2600183612f72565b91506122ff600a86613022565b61230a906030612f27565b60f81b81838151811061231f5761231f613078565b60200101906001600160f81b031916908160001a905350612341600a86612f3f565b94506122e1565b600b80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b0383166123f5576123f081600980546000838152600a60205260408120829055600182018355919091527f6e1540171b6c0c960b71a7020d9f60077f6af931a8bbf590da0223dacf75c7af0155565b612418565b816001600160a01b0316836001600160a01b031614612418576124188382612592565b6001600160a01b03821661242f57610d3b8161262f565b826001600160a01b0316826001600160a01b031614610d3b57610d3b82826126de565b61245c8383612722565b6124696000848484612485565b610d3b5760405162461bcd60e51b8152600401610bd690612ce5565b60006001600160a01b0384163b1561258757604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906124c9903390899088908890600401612bfe565b602060405180830381600087803b1580156124e357600080fd5b505af1925050508015612513575060408051601f3d908101601f1916820190925261251091810190612b24565b60015b61256d573d808015612541576040519150601f19603f3d011682016040523d82523d6000602084013e612546565b606091505b5080516125655760405162461bcd60e51b8152600401610bd690612ce5565b805181602001fd5b6001600160e01b031916630a85bd0160e11b14905061202f565b506001949350505050565b6000600161259f84611379565b6125a99190612f72565b6000838152600860205260409020549091508082146125fc576001600160a01b03841660009081526007602090815260408083208584528252808320548484528184208190558352600890915290208190555b5060009182526008602090815260408084208490556001600160a01b039094168352600781528383209183525290812055565b60095460009061264190600190612f72565b6000838152600a60205260408120546009805493945090928490811061266957612669613078565b90600052602060002001549050806009838154811061268a5761268a613078565b6000918252602080832090910192909255828152600a909152604080822084905585825281205560098054806126c2576126c2613062565b6001900381819060005260206000200160009055905550505050565b60006126e983611379565b6001600160a01b039093166000908152600760209081526040808320868452825280832085905593825260089052919091209190915550565b6001600160a01b0382166127785760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610bd6565b6000818152600260205260409020546001600160a01b0316156127dd5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610bd6565b6127e96000838361239a565b6001600160a01b0382166000908152600360205260408120805460019290612812908490612f27565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b82805461287c90612fcc565b90600052602060002090601f01602090048101928261289e57600085556128e4565b82601f106128b757805160ff19168380011785556128e4565b828001600101855582156128e4579182015b828111156128e45782518255916020019190600101906128c9565b506128f09291506128f4565b5090565b5b808211156128f057600081556001016128f5565b600067ffffffffffffffff808411156129245761292461308e565b604051601f8501601f19908116603f0116810190828211818310171561294c5761294c61308e565b8160405280935085815286868601111561296557600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b038116811461299657600080fd5b919050565b6000602082840312156129ad57600080fd5b611d028261297f565b600080604083850312156129c957600080fd5b6129d28361297f565b91506129e06020840161297f565b90509250929050565b6000806000606084860312156129fe57600080fd5b612a078461297f565b9250612a156020850161297f565b9150604084013590509250925092565b60008060008060808587031215612a3b57600080fd5b612a448561297f565b9350612a526020860161297f565b925060408501359150606085013567ffffffffffffffff811115612a7557600080fd5b8501601f81018713612a8657600080fd5b612a9587823560208401612909565b91505092959194509250565b60008060408385031215612ab457600080fd5b612abd8361297f565b915060208301358015158114612ad257600080fd5b809150509250929050565b60008060408385031215612af057600080fd5b612af98361297f565b946020939093013593505050565b600060208284031215612b1957600080fd5b8135611d02816130a4565b600060208284031215612b3657600080fd5b8151611d02816130a4565b600060208284031215612b5357600080fd5b813567ffffffffffffffff811115612b6a57600080fd5b8201601f81018413612b7b57600080fd5b61202f84823560208401612909565b600060208284031215612b9c57600080fd5b5035919050565b60008151808452612bbb816020860160208601612f89565b601f01601f19169290920160200192915050565b60008351612be1818460208801612f89565b835190830190612bf5818360208801612f89565b01949350505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612c3190830184612ba3565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b81811015612c7357835183529284019291840191600101612c57565b50909695505050505050565b602081526000611d026020830184612ba3565b60208082526033908201527f4e756d626572206f6620746f6b656e732063616e206e6f74206265206c6573736040820152720207468616e206f7220657175616c20746f203606c1b606082015260800190565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b60208082526024908201527f43686f73656e20616d6f756e742069732067726561746572207468616e20737560408201526370706c7960e01b606082015260800190565b60208082526026908201527f5175616e74697479206d757374206265206c6573736572207468616e204d6178604082015265537570706c7960d01b606082015260800190565b6020808252600a908201526914d85b1948115b99195960b21b604082015260600190565b60208082526021908201527f43686f73656e20416d6f756e742065786365656473204d61785175616e7469746040820152607960f81b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526026908201527f5175616e74697479206d757374206265206c6573736572207468656e204d6178604082015265537570706c7960d01b606082015260800190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b6020808252818101527f53616c65206973206e6f742061637469766520617420746865206d6f6d656e74604082015260600190565b60008219821115612f3a57612f3a613036565b500190565b600082612f4e57612f4e61304c565b500490565b6000816000190483118215151615612f6d57612f6d613036565b500290565b600082821015612f8457612f84613036565b500390565b60005b83811015612fa4578181015183820152602001612f8c565b83811115611bf95750506000910152565b600081612fc457612fc4613036565b506000190190565b600181811c90821680612fe057607f821691505b6020821081141561300157634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561301b5761301b613036565b5060010190565b6000826130315761303161304c565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114611e7f57600080fdfea26469706673582212208e70a47ffd70076616f75ee1885070cf988cf685549365a961bea9c257326acb64736f6c634300080700330000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000002e68747470733a2f2f6e616b65646d657461732e6865726f6b756170702e636f6d2f6170692f6d657461646174612f000000000000000000000000000000000000

Deployed Bytecode

0x60806040526004361061036b5760003560e01c8063719649b3116101c6578063b33ee278116100f7578063d92e98e311610095578063e985e9c51161006f578063e985e9c5146109f1578063ed8b55de14610a3a578063f2fde38b14610a6a578063fbf2c33114610a8a57600080fd5b8063d92e98e31461095b578063db4568e21461099b578063dc57e06f146109b157600080fd5b8063c87b56dd116100d1578063c87b56dd146108ef578063cbfd14a21461090f578063cd3293de14610925578063d031370b1461093b57600080fd5b8063b33ee27814610899578063b88d4fde146108af578063c6275255146108cf57600080fd5b80638da5cb5b11610164578063a0712d681161013e578063a0712d681461083b578063a1ead0831461084e578063a22cb46514610864578063acda3e011461088457600080fd5b80638da5cb5b146107e857806395d89b41146108065780639a6ec4851461081b57600080fd5b80637c928fe9116101a05780637c928fe91461077d5780637de604d61461079057806383190124146107a55780638462151c146107bb57600080fd5b8063719649b31461073857806373efad7714610752578063743976a01461076857600080fd5b80633ccfd60b116102a057806359d966031161023e57806366b89c191161021857806366b89c19146106cf5780636a44e173146106e25780636fa384901461070257806370a082311461071857600080fd5b806359d96603146106695780635c381dda146106995780636352211e146106af57600080fd5b80634abaf45e1161027a5780634abaf45e146105e35780634f6ccce71461061357806355f804b314610633578063599f01531461065357600080fd5b80633ccfd60b1461059457806342842e0e146105a9578063492b5ff7146105c957600080fd5b806318160ddd1161030d57806328c9fdc7116102e757806328c9fdc7146104d5578063295cde8c146105345780632f745c591461055457806330a3f4461461057457600080fd5b806318160ddd146104765780631f9443ca1461049557806323b872dd146104b557600080fd5b8063093f8b0b11610349578063093f8b0b146103ff578063095ea7b3146104215780631269c8c21461044157806314a6993b1461046157600080fd5b806301ffc9a71461037057806306fdde03146103a5578063081812fc146103c7575b600080fd5b34801561037c57600080fd5b5061039061038b366004612b07565b610aa4565b60405190151581526020015b60405180910390f35b3480156103b157600080fd5b506103ba610acf565b60405161039c9190612c7f565b3480156103d357600080fd5b506103e76103e2366004612b8a565b610b61565b6040516001600160a01b03909116815260200161039c565b34801561040b57600080fd5b5061041f61041a366004612b8a565b610bfb565b005b34801561042d57600080fd5b5061041f61043c366004612add565b610c2a565b34801561044d57600080fd5b5061041f61045c366004612b8a565b610d40565b34801561046d57600080fd5b5061041f610d6f565b34801561048257600080fd5b506009545b60405190815260200161039c565b3480156104a157600080fd5b5061041f6104b0366004612b8a565b610dad565b3480156104c157600080fd5b5061041f6104d03660046129e9565b610ddc565b3480156104e157600080fd5b506105156104f036600461299b565b601d60205260009081526040902080546001909101546001600160a01b039091169082565b604080516001600160a01b03909316835260208301919091520161039c565b34801561054057600080fd5b5061048761054f366004612b8a565b610e0d565b34801561056057600080fd5b5061048761056f366004612add565b610e1d565b34801561058057600080fd5b5061048761058f366004612b8a565b610eb3565b3480156105a057600080fd5b5061041f610ec3565b3480156105b557600080fd5b5061041f6105c43660046129e9565b610f20565b3480156105d557600080fd5b50601c546103909060ff1681565b3480156105ef57600080fd5b506103906105fe36600461299b565b60126020526000908152604090205460ff1681565b34801561061f57600080fd5b5061048761062e366004612b8a565b610f3b565b34801561063f57600080fd5b5061041f61064e366004612b41565b610fce565b34801561065f57600080fd5b50610487600f5481565b34801561067557600080fd5b5061039061068436600461299b565b601e6020526000908152604090205460ff1681565b3480156106a557600080fd5b5061048760195481565b3480156106bb57600080fd5b506103e76106ca366004612b8a565b61100b565b61041f6106dd366004612b8a565b611082565b3480156106ee57600080fd5b5061041f6106fd366004612b8a565b61134a565b34801561070e57600080fd5b5061048760155481565b34801561072457600080fd5b5061048761073336600461299b565b611379565b34801561074457600080fd5b506010546103909060ff1681565b34801561075e57600080fd5b50610487600e5481565b34801561077457600080fd5b506103ba611400565b61041f61078b366004612b8a565b61148e565b34801561079c57600080fd5b5061041f6116ec565b3480156107b157600080fd5b5061048760145481565b3480156107c757600080fd5b506107db6107d636600461299b565b61172a565b60405161039c9190612c3b565b3480156107f457600080fd5b50600b546001600160a01b03166103e7565b34801561081257600080fd5b506103ba6117cc565b34801561082757600080fd5b5061041f610836366004612b8a565b6117db565b61041f610849366004612b8a565b61180a565b34801561085a57600080fd5b5061048760135481565b34801561087057600080fd5b5061041f61087f366004612aa1565b611ac4565b34801561089057600080fd5b5061041f611b89565b3480156108a557600080fd5b50610487601b5481565b3480156108bb57600080fd5b5061041f6108ca366004612a25565b611bc7565b3480156108db57600080fd5b5061041f6108ea366004612b8a565b611bff565b3480156108fb57600080fd5b506103ba61090a366004612b8a565b611c2e565b34801561091b57600080fd5b50610487601a5481565b34801561093157600080fd5b50610487600d5481565b34801561094757600080fd5b5061041f610956366004612b8a565b611d09565b34801561096757600080fd5b5061051561097636600461299b565b601760205260009081526040902080546001909101546001600160a01b039091169082565b3480156109a757600080fd5b5061048761271081565b3480156109bd57600080fd5b506105156109cc36600461299b565b601160205260009081526040902080546001909101546001600160a01b039091169082565b3480156109fd57600080fd5b50610390610a0c3660046129b6565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b348015610a4657600080fd5b50610390610a5536600461299b565b60186020526000908152604090205460ff1681565b348015610a7657600080fd5b5061041f610a8536600461299b565b611de7565b348015610a9657600080fd5b506016546103909060ff1681565b60006001600160e01b0319821663780e9d6360e01b1480610ac95750610ac982611e82565b92915050565b606060008054610ade90612fcc565b80601f0160208091040260200160405190810160405280929190818152602001828054610b0a90612fcc565b8015610b575780601f10610b2c57610100808354040283529160200191610b57565b820191906000526020600020905b815481529060010190602001808311610b3a57829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b0316610bdf5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b600b546001600160a01b03163314610c255760405162461bcd60e51b8152600401610bd690612e26565b600f55565b6000610c358261100b565b9050806001600160a01b0316836001600160a01b03161415610ca35760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610bd6565b336001600160a01b0382161480610cbf5750610cbf8133610a0c565b610d315760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610bd6565b610d3b8383611ed2565b505050565b600b546001600160a01b03163314610d6a5760405162461bcd60e51b8152600401610bd690612e26565b601355565b600b546001600160a01b03163314610d995760405162461bcd60e51b8152600401610bd690612e26565b6016805460ff19811660ff90911615179055565b600b546001600160a01b03163314610dd75760405162461bcd60e51b8152600401610bd690612e26565b601b55565b610de63382611f40565b610e025760405162461bcd60e51b8152600401610bd690612ea1565b610d3b838383612037565b600060135482610ac99190612f53565b6000610e2883611379565b8210610e8a5760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b6064820152608401610bd6565b506001600160a01b03919091166000908152600760209081526040808320938352929052205490565b600060195482610ac99190612f53565b600b546001600160a01b03163314610eed5760405162461bcd60e51b8152600401610bd690612e26565b6040514790339082156108fc029083906000818181858888f19350505050158015610f1c573d6000803e3d6000fd5b5050565b610d3b83838360405180602001604052806000815250611bc7565b6000610f4660095490565b8210610fa95760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b6064820152608401610bd6565b60098281548110610fbc57610fbc613078565b90600052602060002001549050919050565b600b546001600160a01b03163314610ff85760405162461bcd60e51b8152600401610bd690612e26565b8051610f1c906006906020840190612870565b6000818152600260205260408120546001600160a01b031680610ac95760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610bd6565b61271061108e60095490565b106110ab5760405162461bcd60e51b8152600401610bd690612dc1565b3360009081526018602052604090205460ff1661111c57604080518082018252338082526000602080840182815292825260178152848220935184546001600160a01b0319166001600160a01b039091161784559151600193840155601890915291909120805460ff191690911790555b6000601454116111635760405162461bcd60e51b8152602060048201526012602482015271141c99481cd85b19481d1ddbc8195b99195960721b6044820152606401610bd6565b80601454116111845760405162461bcd60e51b8152600401610bd690612d37565b601554336000908152601760205260409020600101546111a5908390612f27565b11156111c35760405162461bcd60e51b8152600401610bd690612d7b565b60165460ff16156111e65760405162461bcd60e51b8152600401610bd690612ef2565b600d546111f590612710612f72565b816111ff60095490565b6112099190612f27565b11156112275760405162461bcd60e51b8152600401610bd690612e5b565b600081116112475760405162461bcd60e51b8152600401610bd690612c92565b6015548111156112695760405162461bcd60e51b8152600401610bd690612de5565b601354349061127890836121e2565b146112c55760405162461bcd60e51b815260206004820152601d60248201527f53656e742065746865722076616c756520697320696e636f72726563740000006044820152606401610bd6565b60005b8181101561131f576112e2336112dd600c5490565b6121ee565b600c80549060006112f283613007565b90915550506014805490600061130783612fb5565b9190505550808061131790613007565b9150506112c8565b503360009081526017602052604081206001018054839290611342908490612f27565b909155505050565b600b546001600160a01b031633146113745760405162461bcd60e51b8152600401610bd690612e26565b600d55565b60006001600160a01b0382166113e45760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610bd6565b506001600160a01b031660009081526003602052604090205490565b6006805461140d90612fcc565b80601f016020809104026020016040519081016040528092919081815260200182805461143990612fcc565b80156114865780601f1061145b57610100808354040283529160200191611486565b820191906000526020600020905b81548152906001019060200180831161146957829003601f168201915b505050505081565b61271061149a60095490565b106114b75760405162461bcd60e51b8152600401610bd690612dc1565b3360009081526012602052604090205460ff1661152857604080518082018252338082526000602080840182815292825260118152848220935184546001600160a01b0319166001600160a01b039091161784559151600193840155601290915291909120805460ff191690911790555b6000600e541161156e5760405162461bcd60e51b8152602060048201526011602482015270141d589b1a58c81cd85b1948195b991959607a1b6044820152606401610bd6565b80600e541161158f5760405162461bcd60e51b8152600401610bd690612d37565b600f54336000908152601160205260409020600101546115b0908390612f27565b11156115ce5760405162461bcd60e51b8152600401610bd690612d7b565b60105460ff16156115f15760405162461bcd60e51b8152600401610bd690612ef2565b600d5461160090612710612f72565b8161160a60095490565b6116149190612f27565b11156116325760405162461bcd60e51b8152600401610bd690612e5b565b600081116116525760405162461bcd60e51b8152600401610bd690612c92565b600f548111156116745760405162461bcd60e51b8152600401610bd690612de5565b60005b818110156116c95761168c336112dd600c5490565b600c805490600061169c83613007565b9091555050600e80549060006116b183612fb5565b919050555080806116c190613007565b915050611677565b503360009081526011602052604081206001018054839290611342908490612f27565b600b546001600160a01b031633146117165760405162461bcd60e51b8152600401610bd690612e26565b6010805460ff19811660ff90911615179055565b6060600061173783611379565b905060008167ffffffffffffffff8111156117545761175461308e565b60405190808252806020026020018201604052801561177d578160200160208202803683370190505b50905060005b828110156117c4576117958582610e1d565b8282815181106117a7576117a7613078565b6020908102919091010152806117bc81613007565b915050611783565b509392505050565b606060018054610ade90612fcc565b600b546001600160a01b031633146118055760405162461bcd60e51b8152600401610bd690612e26565b601555565b61271061181660095490565b106118335760405162461bcd60e51b8152600401610bd690612dc1565b336000908152601e602052604090205460ff166118a4576040805180820182523380825260006020808401828152928252601d8152848220935184546001600160a01b0319166001600160a01b039091161784559151600193840155601e90915291909120805460ff191690911790555b6000601a54116118ea5760405162461bcd60e51b8152602060048201526011602482015270141d589b1a58c81cd85b1948195b991959607a1b6044820152606401610bd6565b80601a541161190b5760405162461bcd60e51b8152600401610bd690612d37565b601b54336000908152601d602052604090206001015461192c908390612f27565b111561194a5760405162461bcd60e51b8152600401610bd690612d7b565b601c5460ff161561196d5760405162461bcd60e51b8152600401610bd690612ef2565b600d5461197c90612710612f72565b8161198660095490565b6119909190612f27565b11156119ae5760405162461bcd60e51b8152600401610bd690612e5b565b600081116119ce5760405162461bcd60e51b8152600401610bd690612c92565b601b548111156119f05760405162461bcd60e51b8152600401610bd690612de5565b60195434906119ff90836121e2565b14611a4c5760405162461bcd60e51b815260206004820152601d60248201527f53656e742065746865722076616c756520697320696e636f72726563740000006044820152606401610bd6565b60005b81811015611aa157611a64336112dd600c5490565b600c8054906000611a7483613007565b9091555050601a8054906000611a8983612fb5565b91905055508080611a9990613007565b915050611a4f565b50336000908152601d602052604081206001018054839290611342908490612f27565b6001600160a01b038216331415611b1d5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610bd6565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b600b546001600160a01b03163314611bb35760405162461bcd60e51b8152600401610bd690612e26565b601c805460ff19811660ff90911615179055565b611bd13383611f40565b611bed5760405162461bcd60e51b8152600401610bd690612ea1565b611bf984848484612208565b50505050565b600b546001600160a01b03163314611c295760405162461bcd60e51b8152600401610bd690612e26565b601955565b6000818152600260205260409020546060906001600160a01b0316611cad5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610bd6565b6000611cb761223b565b90506000815111611cd75760405180602001604052806000815250611d02565b80611ce18461224a565b604051602001611cf2929190612bcf565b6040516020818303038152906040525b9392505050565b600b546001600160a01b03163314611d335760405162461bcd60e51b8152600401610bd690612e26565b600d54811115611d8f5760405162461bcd60e51b815260206004820152602160248201527f546865207175616e7469747920657863656564732074686520726573657276656044820152601760f91b6064820152608401610bd6565b80600d6000828254611da19190612f72565b90915550600090505b81811015610f1c57611dbf336112dd600c5490565b600c8054906000611dcf83613007565b91905055508080611ddf90613007565b915050611daa565b600b546001600160a01b03163314611e115760405162461bcd60e51b8152600401610bd690612e26565b6001600160a01b038116611e765760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610bd6565b611e7f81612348565b50565b60006001600160e01b031982166380ac58cd60e01b1480611eb357506001600160e01b03198216635b5e139f60e01b145b80610ac957506301ffc9a760e01b6001600160e01b0319831614610ac9565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190611f078261100b565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b0316611fb95760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610bd6565b6000611fc48361100b565b9050806001600160a01b0316846001600160a01b03161480611fff5750836001600160a01b0316611ff484610b61565b6001600160a01b0316145b8061202f57506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b031661204a8261100b565b6001600160a01b0316146120b25760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b6064820152608401610bd6565b6001600160a01b0382166121145760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610bd6565b61211f83838361239a565b61212a600082611ed2565b6001600160a01b0383166000908152600360205260408120805460019290612153908490612f72565b90915550506001600160a01b0382166000908152600360205260408120805460019290612181908490612f27565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b6000611d028284612f53565b610f1c828260405180602001604052806000815250612452565b612213848484612037565b61221f84848484612485565b611bf95760405162461bcd60e51b8152600401610bd690612ce5565b606060068054610ade90612fcc565b60608161226e5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115612298578061228281613007565b91506122919050600a83612f3f565b9150612272565b60008167ffffffffffffffff8111156122b3576122b361308e565b6040519080825280601f01601f1916602001820160405280156122dd576020820181803683370190505b5090505b841561202f576122f2600183612f72565b91506122ff600a86613022565b61230a906030612f27565b60f81b81838151811061231f5761231f613078565b60200101906001600160f81b031916908160001a905350612341600a86612f3f565b94506122e1565b600b80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b0383166123f5576123f081600980546000838152600a60205260408120829055600182018355919091527f6e1540171b6c0c960b71a7020d9f60077f6af931a8bbf590da0223dacf75c7af0155565b612418565b816001600160a01b0316836001600160a01b031614612418576124188382612592565b6001600160a01b03821661242f57610d3b8161262f565b826001600160a01b0316826001600160a01b031614610d3b57610d3b82826126de565b61245c8383612722565b6124696000848484612485565b610d3b5760405162461bcd60e51b8152600401610bd690612ce5565b60006001600160a01b0384163b1561258757604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906124c9903390899088908890600401612bfe565b602060405180830381600087803b1580156124e357600080fd5b505af1925050508015612513575060408051601f3d908101601f1916820190925261251091810190612b24565b60015b61256d573d808015612541576040519150601f19603f3d011682016040523d82523d6000602084013e612546565b606091505b5080516125655760405162461bcd60e51b8152600401610bd690612ce5565b805181602001fd5b6001600160e01b031916630a85bd0160e11b14905061202f565b506001949350505050565b6000600161259f84611379565b6125a99190612f72565b6000838152600860205260409020549091508082146125fc576001600160a01b03841660009081526007602090815260408083208584528252808320548484528184208190558352600890915290208190555b5060009182526008602090815260408084208490556001600160a01b039094168352600781528383209183525290812055565b60095460009061264190600190612f72565b6000838152600a60205260408120546009805493945090928490811061266957612669613078565b90600052602060002001549050806009838154811061268a5761268a613078565b6000918252602080832090910192909255828152600a909152604080822084905585825281205560098054806126c2576126c2613062565b6001900381819060005260206000200160009055905550505050565b60006126e983611379565b6001600160a01b039093166000908152600760209081526040808320868452825280832085905593825260089052919091209190915550565b6001600160a01b0382166127785760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610bd6565b6000818152600260205260409020546001600160a01b0316156127dd5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610bd6565b6127e96000838361239a565b6001600160a01b0382166000908152600360205260408120805460019290612812908490612f27565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b82805461287c90612fcc565b90600052602060002090601f01602090048101928261289e57600085556128e4565b82601f106128b757805160ff19168380011785556128e4565b828001600101855582156128e4579182015b828111156128e45782518255916020019190600101906128c9565b506128f09291506128f4565b5090565b5b808211156128f057600081556001016128f5565b600067ffffffffffffffff808411156129245761292461308e565b604051601f8501601f19908116603f0116810190828211818310171561294c5761294c61308e565b8160405280935085815286868601111561296557600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b038116811461299657600080fd5b919050565b6000602082840312156129ad57600080fd5b611d028261297f565b600080604083850312156129c957600080fd5b6129d28361297f565b91506129e06020840161297f565b90509250929050565b6000806000606084860312156129fe57600080fd5b612a078461297f565b9250612a156020850161297f565b9150604084013590509250925092565b60008060008060808587031215612a3b57600080fd5b612a448561297f565b9350612a526020860161297f565b925060408501359150606085013567ffffffffffffffff811115612a7557600080fd5b8501601f81018713612a8657600080fd5b612a9587823560208401612909565b91505092959194509250565b60008060408385031215612ab457600080fd5b612abd8361297f565b915060208301358015158114612ad257600080fd5b809150509250929050565b60008060408385031215612af057600080fd5b612af98361297f565b946020939093013593505050565b600060208284031215612b1957600080fd5b8135611d02816130a4565b600060208284031215612b3657600080fd5b8151611d02816130a4565b600060208284031215612b5357600080fd5b813567ffffffffffffffff811115612b6a57600080fd5b8201601f81018413612b7b57600080fd5b61202f84823560208401612909565b600060208284031215612b9c57600080fd5b5035919050565b60008151808452612bbb816020860160208601612f89565b601f01601f19169290920160200192915050565b60008351612be1818460208801612f89565b835190830190612bf5818360208801612f89565b01949350505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612c3190830184612ba3565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b81811015612c7357835183529284019291840191600101612c57565b50909695505050505050565b602081526000611d026020830184612ba3565b60208082526033908201527f4e756d626572206f6620746f6b656e732063616e206e6f74206265206c6573736040820152720207468616e206f7220657175616c20746f203606c1b606082015260800190565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b60208082526024908201527f43686f73656e20616d6f756e742069732067726561746572207468616e20737560408201526370706c7960e01b606082015260800190565b60208082526026908201527f5175616e74697479206d757374206265206c6573736572207468616e204d6178604082015265537570706c7960d01b606082015260800190565b6020808252600a908201526914d85b1948115b99195960b21b604082015260600190565b60208082526021908201527f43686f73656e20416d6f756e742065786365656473204d61785175616e7469746040820152607960f81b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526026908201527f5175616e74697479206d757374206265206c6573736572207468656e204d6178604082015265537570706c7960d01b606082015260800190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b6020808252818101527f53616c65206973206e6f742061637469766520617420746865206d6f6d656e74604082015260600190565b60008219821115612f3a57612f3a613036565b500190565b600082612f4e57612f4e61304c565b500490565b6000816000190483118215151615612f6d57612f6d613036565b500290565b600082821015612f8457612f84613036565b500390565b60005b83811015612fa4578181015183820152602001612f8c565b83811115611bf95750506000910152565b600081612fc457612fc4613036565b506000190190565b600181811c90821680612fe057607f821691505b6020821081141561300157634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561301b5761301b613036565b5060010190565b6000826130315761303161304c565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114611e7f57600080fdfea26469706673582212208e70a47ffd70076616f75ee1885070cf988cf685549365a961bea9c257326acb64736f6c63430008070033

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

0000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000002e68747470733a2f2f6e616b65646d657461732e6865726f6b756170702e636f6d2f6170692f6d657461646174612f000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : baseURI (string): https://nakedmetas.herokuapp.com/api/metadata/

-----Encoded View---------------
4 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000020
Arg [1] : 000000000000000000000000000000000000000000000000000000000000002e
Arg [2] : 68747470733a2f2f6e616b65646d657461732e6865726f6b756170702e636f6d
Arg [3] : 2f6170692f6d657461646174612f000000000000000000000000000000000000


Deployed Bytecode Sourcemap

49161:8153:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42986:224;;;;;;;;;;-1:-1:-1;42986:224:0;;;;;:::i;:::-;;:::i;:::-;;;6562:14:1;;6555:22;6537:41;;6525:2;6510:18;42986:224:0;;;;;;;;30968:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;32522:221::-;;;;;;;;;;-1:-1:-1;32522:221:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;4944:32:1;;;4926:51;;4914:2;4899:18;32522:221:0;4780:203:1;51645:117:0;;;;;;;;;;-1:-1:-1;51645:117:0;;;;;:::i;:::-;;:::i;:::-;;32045:411;;;;;;;;;;-1:-1:-1;32045:411:0;;;;;:::i;:::-;;:::i;51023:112::-;;;;;;;;;;-1:-1:-1;51023:112:0;;;;;:::i;:::-;;:::i;51447:113::-;;;;;;;;;;;;;:::i;43626:::-;;;;;;;;;;-1:-1:-1;43714:10:0;:17;43626:113;;;18360:25:1;;;18348:2;18333:18;43626:113:0;18214:177:1;51768:121:0;;;;;;;;;;-1:-1:-1;51768:121:0;;;;;:::i;:::-;;:::i;33412:339::-;;;;;;;;;;-1:-1:-1;33412:339:0;;;;;:::i;:::-;;:::i;50289:55::-;;;;;;;;;;-1:-1:-1;50289:55:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;50289:55:0;;;;;;;;;;-1:-1:-1;;;;;5673:32:1;;;5655:51;;5737:2;5722:18;;5715:34;;;;5628:18;50289:55:0;5481:274:1;52227:131:0;;;;;;;;;;-1:-1:-1;52227:131:0;;;;;:::i;:::-;;:::i;43294:256::-;;;;;;;;;;-1:-1:-1;43294:256:0;;;;;:::i;:::-;;:::i;52088:127::-;;;;;;;;;;-1:-1:-1;52088:127:0;;;;;:::i;:::-;;:::i;57171:140::-;;;;;;;;;;;;;:::i;33822:185::-;;;;;;;;;;-1:-1:-1;33822:185:0;;;;;:::i;:::-;;:::i;50240:42::-;;;;;;;;;;-1:-1:-1;50240:42:0;;;;;;;;49697:53;;;;;;;;;;-1:-1:-1;49697:53:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;43816:233;;;;;;;;;;-1:-1:-1;43816:233:0;;;;;:::i;:::-;;:::i;50529:97::-;;;;;;;;;;-1:-1:-1;50529:97:0;;;;;:::i;:::-;;:::i;49538:39::-;;;;;;;;;;;;;;;;50351:51;;;;;;;;;;-1:-1:-1;50351:51:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;50089:48;;;;;;;;;;;;;;;;30662:239;;;;;;;;;;-1:-1:-1;30662:239:0;;;;;:::i;:::-;;:::i;55024:1370::-;;;;;;:::i;:::-;;:::i;56408:98::-;;;;;;;;;;-1:-1:-1;56408:98:0;;;;;:::i;:::-;;:::i;49863:40::-;;;;;;;;;;;;;;;;30392:208;;;;;;;;;;-1:-1:-1;30392:208:0;;;;;:::i;:::-;;:::i;49584:42::-;;;;;;;;;;-1:-1:-1;49584:42:0;;;;;;;;49489;;;;;;;;;;;;;;;;29690:22;;;;;;;;;;;;;:::i;52431:1242::-;;;;;;:::i;:::-;;:::i;51215:107::-;;;;;;;;;;;;;:::i;49814:42::-;;;;;;;;;;;;;;;;56819:346;;;;;;;;;;-1:-1:-1;56819:346:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;27558:87::-;;;;;;;;;;-1:-1:-1;27631:6:0;;-1:-1:-1;;;;;27631:6:0;27558:87;;31137:104;;;;;;;;;;;;;:::i;51895:121::-;;;;;;;;;;-1:-1:-1;51895:121:0;;;;;:::i;:::-;;:::i;53679:1339::-;;;;;;:::i;:::-;;:::i;49759:48::-;;;;;;;;;;;;;;;;32815:295;;;;;;;;;;-1:-1:-1;32815:295:0;;;;;:::i;:::-;;:::i;51328:113::-;;;;;;;;;;;;;:::i;50193:40::-;;;;;;;;;;;;;;;;34078:328;;;;;;;;;;-1:-1:-1;34078:328:0;;;;;:::i;:::-;;:::i;50904:108::-;;;;;;;;;;-1:-1:-1;50904:108:0;;;;;:::i;:::-;;:::i;31312:324::-;;;;;;;;;;-1:-1:-1;31312:324:0;;;;;:::i;:::-;;:::i;50144:42::-;;;;;;;;;;;;;;;;49439:41;;;;;;;;;;;;;;;;56512:301;;;;;;;;;;-1:-1:-1;56512:301:0;;;;;:::i;:::-;;:::i;49959:59::-;;;;;;;;;;-1:-1:-1;49959:59:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;49959:59:0;;;;;;49343:43;;;;;;;;;;;;49381:5;49343:43;;49633:57;;;;;;;;;;-1:-1:-1;49633:57:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;49633:57:0;;;;;;33181:164;;;;;;;;;;-1:-1:-1;33181:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;33302:25:0;;;33278:4;33302:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;33181:164;50025:55;;;;;;;;;;-1:-1:-1;50025:55:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;28358:192;;;;;;;;;;-1:-1:-1;28358:192:0;;;;;:::i;:::-;;:::i;49910:42::-;;;;;;;;;;-1:-1:-1;49910:42:0;;;;;;;;42986:224;43088:4;-1:-1:-1;;;;;;43112:50:0;;-1:-1:-1;;;43112:50:0;;:90;;;43166:36;43190:11;43166:23;:36::i;:::-;43105:97;42986:224;-1:-1:-1;;42986:224:0:o;30968:100::-;31022:13;31055:5;31048:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30968:100;:::o;32522:221::-;32598:7;36005:16;;;:7;:16;;;;;;-1:-1:-1;;;;;36005:16:0;32618:73;;;;-1:-1:-1;;;32618:73:0;;14815:2:1;32618:73:0;;;14797:21:1;14854:2;14834:18;;;14827:30;14893:34;14873:18;;;14866:62;-1:-1:-1;;;14944:18:1;;;14937:42;14996:19;;32618:73:0;;;;;;;;;-1:-1:-1;32711:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;32711:24:0;;32522:221::o;51645:117::-;27631:6;;-1:-1:-1;;;;;27631:6:0;26389:10;27778:23;27770:68;;;;-1:-1:-1;;;27770:68:0;;;;;;;:::i;:::-;51724:19:::1;:30:::0;51645:117::o;32045:411::-;32126:13;32142:23;32157:7;32142:14;:23::i;:::-;32126:39;;32190:5;-1:-1:-1;;;;;32184:11:0;:2;-1:-1:-1;;;;;32184:11:0;;;32176:57;;;;-1:-1:-1;;;32176:57:0;;16822:2:1;32176:57:0;;;16804:21:1;16861:2;16841:18;;;16834:30;16900:34;16880:18;;;16873:62;-1:-1:-1;;;16951:18:1;;;16944:31;16992:19;;32176:57:0;16620:397:1;32176:57:0;26389:10;-1:-1:-1;;;;;32268:21:0;;;;:62;;-1:-1:-1;32293:37:0;32310:5;26389:10;33181:164;:::i;32293:37::-;32246:168;;;;-1:-1:-1;;;32246:168:0;;12102:2:1;32246:168:0;;;12084:21:1;12141:2;12121:18;;;12114:30;12180:34;12160:18;;;12153:62;12251:26;12231:18;;;12224:54;12295:19;;32246:168:0;11900:420:1;32246:168:0;32427:21;32436:2;32440:7;32427:8;:21::i;:::-;32115:341;32045:411;;:::o;51023:112::-;27631:6;;-1:-1:-1;;;;;27631:6:0;26389:10;27778:23;27770:68;;;;-1:-1:-1;;;27770:68:0;;;;;;;:::i;:::-;51100:15:::1;:27:::0;51023:112::o;51447:113::-;27631:6;;-1:-1:-1;;;;;27631:6:0;26389:10;27778:23;27770:68;;;;-1:-1:-1;;;27770:68:0;;;;;;;:::i;:::-;51534:18:::1;::::0;;-1:-1:-1;;51512:40:0;::::1;51534:18;::::0;;::::1;51533:19;51512:40;::::0;;51447:113::o;51768:121::-;27631:6;;-1:-1:-1;;;;;27631:6:0;26389:10;27778:23;27770:68;;;;-1:-1:-1;;;27770:68:0;;;;;;;:::i;:::-;51849:21:::1;:32:::0;51768:121::o;33412:339::-;33607:41;26389:10;33640:7;33607:18;:41::i;:::-;33599:103;;;;-1:-1:-1;;;33599:103:0;;;;;;;:::i;:::-;33715:28;33725:4;33731:2;33735:7;33715:9;:28::i;52227:131::-;52295:7;52335:15;;52323:9;:27;;;;:::i;43294:256::-;43391:7;43427:23;43444:5;43427:16;:23::i;:::-;43419:5;:31;43411:87;;;;-1:-1:-1;;;43411:87:0;;7435:2:1;43411:87:0;;;7417:21:1;7474:2;7454:18;;;7447:30;7513:34;7493:18;;;7486:62;-1:-1:-1;;;7564:18:1;;;7557:41;7615:19;;43411:87:0;7233:407:1;43411:87:0;-1:-1:-1;;;;;;43516:19:0;;;;;;;;:12;:19;;;;;;;;:26;;;;;;;;;43294:256::o;52088:127::-;52152:7;52192:15;;52180:9;:27;;;;:::i;57171:140::-;27631:6;;-1:-1:-1;;;;;27631:6:0;26389:10;27778:23;27770:68;;;;-1:-1:-1;;;27770:68:0;;;;;;;:::i;:::-;57266:37:::1;::::0;57234:21:::1;::::0;57274:10:::1;::::0;57266:37;::::1;;;::::0;57234:21;;57219:12:::1;57266:37:::0;57219:12;57266:37;57234:21;57274:10;57266:37;::::1;;;;;;;;;;;;;::::0;::::1;;;;;;57208:103;57171:140::o:0;33822:185::-;33960:39;33977:4;33983:2;33987:7;33960:39;;;;;;;;;;;;:16;:39::i;43816:233::-;43891:7;43927:30;43714:10;:17;;43626:113;43927:30;43919:5;:38;43911:95;;;;-1:-1:-1;;;43911:95:0;;17642:2:1;43911:95:0;;;17624:21:1;17681:2;17661:18;;;17654:30;17720:34;17700:18;;;17693:62;-1:-1:-1;;;17771:18:1;;;17764:42;17823:19;;43911:95:0;17440:408:1;43911:95:0;44024:10;44035:5;44024:17;;;;;;;;:::i;:::-;;;;;;;;;44017:24;;43816:233;;;:::o;50529:97::-;27631:6;;-1:-1:-1;;;;;27631:6:0;26389:10;27778:23;27770:68;;;;-1:-1:-1;;;27770:68:0;;;;;;;:::i;:::-;50600:18;;::::1;::::0;:8:::1;::::0;:18:::1;::::0;::::1;::::0;::::1;:::i;30662:239::-:0;30734:7;30770:16;;;:7;:16;;;;;;-1:-1:-1;;;;;30770:16:0;30805:19;30797:73;;;;-1:-1:-1;;;30797:73:0;;13284:2:1;30797:73:0;;;13266:21:1;13323:2;13303:18;;;13296:30;13362:34;13342:18;;;13335:62;-1:-1:-1;;;13413:18:1;;;13406:39;13462:19;;30797:73:0;13082:405:1;55024:1370:0;49381:5;50769:13;43714:10;:17;;43626:113;50769:13;:28;50761:51;;;;-1:-1:-1;;;50761:51:0;;;;;;;:::i;:::-;55132:10:::1;55108:35;::::0;;;:23:::1;:35;::::0;;;;;::::1;;55104:268;;55204:99;::::0;;;;::::1;::::0;;55248:10:::1;55204:99:::0;;;-1:-1:-1;55204:99:0::1;::::0;;::::1;::::0;;;55169:32;;;:20:::1;:32:::0;;;;;:134;;;;-1:-1:-1;;;;;;55169:134:0::1;-1:-1:-1::0;;;;;55169:134:0;;::::1;;::::0;;;;-1:-1:-1;55169:134:0;;::::1;::::0;55318:23:::1;:35:::0;;;;;;;:42;;-1:-1:-1;;55318:42:0::1;::::0;;::::1;::::0;;55104:268:::1;55409:1;55390:16;;:20;55382:51;;;::::0;-1:-1:-1;;;55382:51:0;;11755:2:1;55382:51:0::1;::::0;::::1;11737:21:1::0;11794:2;11774:18;;;11767:30;-1:-1:-1;;;11813:18:1;;;11806:48;11871:18;;55382:51:0::1;11553:342:1::0;55382:51:0::1;55471:12;55452:16;;:31;55444:80;;;;-1:-1:-1::0;;;55444:80:0::1;;;;;;;:::i;:::-;55602:21;::::0;55564:10:::1;55543:32;::::0;;;:20:::1;:32;::::0;;;;:40:::1;;::::0;:55:::1;::::0;55586:12;;55543:55:::1;:::i;:::-;:80;;55535:131;;;;-1:-1:-1::0;;;55535:131:0::1;;;;;;;:::i;:::-;55685:18;::::0;::::1;;:27;55677:72;;;;-1:-1:-1::0;;;55677:72:0::1;;;;;;;:::i;:::-;55815:7;::::0;55800:22:::1;::::0;49381:5:::1;55800:22;:::i;:::-;55784:12;55768:13;43714:10:::0;:17;;43626:113;55768:13:::1;:28;;;;:::i;:::-;:54;;55760:105;;;;-1:-1:-1::0;;;55760:105:0::1;;;;;;;:::i;:::-;55899:1;55884:12;:16;55876:80;;;;-1:-1:-1::0;;;55876:80:0::1;;;;;;;:::i;:::-;55991:21;;55975:12;:37;;55967:83;;;;-1:-1:-1::0;;;55967:83:0::1;;;;;;;:::i;:::-;56069:15;::::0;56106:9:::1;::::0;56069:33:::1;::::0;56089:12;56069:19:::1;:33::i;:::-;:46;56061:88;;;::::0;-1:-1:-1;;;56061:88:0;;13694:2:1;56061:88:0::1;::::0;::::1;13676:21:1::0;13733:2;13713:18;;;13706:30;13772:31;13752:18;;;13745:59;13821:18;;56061:88:0::1;13492:353:1::0;56061:88:0::1;56165:6;56160:160;56181:12;56177:1;:16;56160:160;;;56215:36;56225:10;56237:13;50707:7:::0;;;50638:84;56237:13:::1;56215:9;:36::i;:::-;56266:7;:9:::0;;;:7:::1;:9;::::0;::::1;:::i;:::-;::::0;;;-1:-1:-1;;56290:16:0::1;:18:::0;;;:16:::1;:18;::::0;::::1;:::i;:::-;;;;;;56195:3;;;;;:::i;:::-;;;;56160:160;;;-1:-1:-1::0;56351:10:0::1;56330:32;::::0;;;:20:::1;:32;::::0;;;;:40:::1;;:56:::0;;56374:12;;56330:32;:56:::1;::::0;56374:12;;56330:56:::1;:::i;:::-;::::0;;;-1:-1:-1;;;55024:1370:0:o;56408:98::-;27631:6;;-1:-1:-1;;;;;27631:6:0;26389:10;27778:23;27770:68;;;;-1:-1:-1;;;27770:68:0;;;;;;;:::i;:::-;56481:7:::1;:17:::0;56408:98::o;30392:208::-;30464:7;-1:-1:-1;;;;;30492:19:0;;30484:74;;;;-1:-1:-1;;;30484:74:0;;12873:2:1;30484:74:0;;;12855:21:1;12912:2;12892:18;;;12885:30;12951:34;12931:18;;;12924:62;-1:-1:-1;;;13002:18:1;;;12995:40;13052:19;;30484:74:0;12671:406:1;30484:74:0;-1:-1:-1;;;;;;30576:16:0;;;;;:9;:16;;;;;;;30392:208::o;29690:22::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;52431:1242::-;49381:5;50769:13;43714:10;:17;;43626:113;50769:13;:28;50761:51;;;;-1:-1:-1;;;50761:51:0;;;;;;;:::i;:::-;52531:10:::1;52509:33;::::0;;;:21:::1;:33;::::0;;;;;::::1;;52505:262;;52601:99;::::0;;;;::::1;::::0;;52645:10:::1;52601:99:::0;;;-1:-1:-1;52601:99:0::1;::::0;;::::1;::::0;;;52568:30;;;:18:::1;:30:::0;;;;;:132;;;;-1:-1:-1;;;;;;52568:132:0::1;-1:-1:-1::0;;;;;52568:132:0;;::::1;;::::0;;;;-1:-1:-1;52568:132:0;;::::1;::::0;52715:21:::1;:33:::0;;;;;;;:40;;-1:-1:-1;;52715:40:0::1;::::0;;::::1;::::0;;52505:262:::1;52802:1;52785:14;;:18;52777:48;;;::::0;-1:-1:-1;;;52777:48:0;;12527:2:1;52777:48:0::1;::::0;::::1;12509:21:1::0;12566:2;12546:18;;;12539:30;-1:-1:-1;;;12585:18:1;;;12578:47;12642:18;;52777:48:0::1;12325:341:1::0;52777:48:0::1;52861:12;52844:14;;:29;52836:78;;;;-1:-1:-1::0;;;52836:78:0::1;;;;;;;:::i;:::-;52990:19;::::0;52952:10:::1;52933:30;::::0;;;:18:::1;:30;::::0;;;;:38:::1;;::::0;:53:::1;::::0;52974:12;;52933:53:::1;:::i;:::-;:76;;52925:127;;;;-1:-1:-1::0;;;52925:127:0::1;;;;;;;:::i;:::-;53071:16;::::0;::::1;;:25;53063:70;;;;-1:-1:-1::0;;;53063:70:0::1;;;;;;;:::i;:::-;53199:7;::::0;53184:22:::1;::::0;49381:5:::1;53184:22;:::i;:::-;53168:12;53152:13;43714:10:::0;:17;;43626:113;53152:13:::1;:28;;;;:::i;:::-;:54;;53144:105;;;;-1:-1:-1::0;;;53144:105:0::1;;;;;;;:::i;:::-;53283:1;53268:12;:16;53260:80;;;;-1:-1:-1::0;;;53260:80:0::1;;;;;;;:::i;:::-;53375:19;;53359:12;:35;;53351:81;;;;-1:-1:-1::0;;;53351:81:0::1;;;;;;;:::i;:::-;53448:6;53443:158;53464:12;53460:1;:16;53443:158;;;53498:36;53508:10;53520:13;50707:7:::0;;;50638:84;53498:36:::1;53549:7;:9:::0;;;:7:::1;:9;::::0;::::1;:::i;:::-;::::0;;;-1:-1:-1;;53573:14:0::1;:16:::0;;;:14:::1;:16;::::0;::::1;:::i;:::-;;;;;;53478:3;;;;;:::i;:::-;;;;53443:158;;;-1:-1:-1::0;53630:10:0::1;53611:30;::::0;;;:18:::1;:30;::::0;;;;:38:::1;;:54:::0;;53653:12;;53611:30;:54:::1;::::0;53653:12;;53611:54:::1;:::i;51215:107::-:0;27631:6;;-1:-1:-1;;;;;27631:6:0;26389:10;27778:23;27770:68;;;;-1:-1:-1;;;27770:68:0;;;;;;;:::i;:::-;51298:16:::1;::::0;;-1:-1:-1;;51278:36:0;::::1;51298:16;::::0;;::::1;51297:17;51278:36;::::0;;51215:107::o;56819:346::-;56879:16;56908:13;56924:17;56934:6;56924:9;:17::i;:::-;56908:33;;56952:23;56992:5;56978:20;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;56978:20:0;;56952:46;;57014:13;57009:125;57041:5;57033;:13;57009:125;;;57088:34;57108:6;57116:5;57088:19;:34::i;:::-;57072:6;57079:5;57072:13;;;;;;;;:::i;:::-;;;;;;;;;;:50;57048:7;;;;:::i;:::-;;;;57009:125;;;-1:-1:-1;57151:6:0;56819:346;-1:-1:-1;;;56819:346:0:o;31137:104::-;31193:13;31226:7;31219:14;;;;;:::i;51895:121::-;27631:6;;-1:-1:-1;;;;;27631:6:0;26389:10;27778:23;27770:68;;;;-1:-1:-1;;;27770:68:0;;;;;;;:::i;:::-;51976:21:::1;:32:::0;51895:121::o;53679:1339::-;49381:5;50769:13;43714:10;:17;;43626:113;50769:13;:28;50761:51;;;;-1:-1:-1;;;50761:51:0;;;;;;;:::i;:::-;53773:10:::1;53753:31;::::0;;;:19:::1;:31;::::0;;;;;::::1;;53749:256;;53841:99;::::0;;;;::::1;::::0;;53885:10:::1;53841:99:::0;;;-1:-1:-1;53841:99:0::1;::::0;;::::1;::::0;;;53810:28;;;:16:::1;:28:::0;;;;;:130;;;;-1:-1:-1;;;;;;53810:130:0::1;-1:-1:-1::0;;;;;53810:130:0;;::::1;;::::0;;;;-1:-1:-1;53810:130:0;;::::1;::::0;53955:19:::1;:31:::0;;;;;;;:38;;-1:-1:-1;;53955:38:0::1;::::0;;::::1;::::0;;53749:256:::1;54042:1;54023:16;;:20;54015:50;;;::::0;-1:-1:-1;;;54015:50:0;;12527:2:1;54015:50:0::1;::::0;::::1;12509:21:1::0;12566:2;12546:18;;;12539:30;-1:-1:-1;;;12585:18:1;;;12578:47;12642:18;;54015:50:0::1;12325:341:1::0;54015:50:0::1;54103:12;54084:16;;:31;54076:80;;;;-1:-1:-1::0;;;54076:80:0::1;;;;;;;:::i;:::-;54230:21;::::0;54192:10:::1;54175:28;::::0;;;:16:::1;:28;::::0;;;;:36:::1;;::::0;:51:::1;::::0;54214:12;;54175:51:::1;:::i;:::-;:76;;54167:127;;;;-1:-1:-1::0;;;54167:127:0::1;;;;;;;:::i;:::-;54313:18;::::0;::::1;;:27;54305:72;;;;-1:-1:-1::0;;;54305:72:0::1;;;;;;;:::i;:::-;54443:7;::::0;54428:22:::1;::::0;49381:5:::1;54428:22;:::i;:::-;54412:12;54396:13;43714:10:::0;:17;;43626:113;54396:13:::1;:28;;;;:::i;:::-;:54;;54388:105;;;;-1:-1:-1::0;;;54388:105:0::1;;;;;;;:::i;:::-;54527:1;54512:12;:16;54504:80;;;;-1:-1:-1::0;;;54504:80:0::1;;;;;;;:::i;:::-;54619:21;;54603:12;:37;;54595:83;;;;-1:-1:-1::0;;;54595:83:0::1;;;;;;;:::i;:::-;54697:15;::::0;54734:9:::1;::::0;54697:33:::1;::::0;54717:12;54697:19:::1;:33::i;:::-;:46;54689:88;;;::::0;-1:-1:-1;;;54689:88:0;;13694:2:1;54689:88:0::1;::::0;::::1;13676:21:1::0;13733:2;13713:18;;;13706:30;13772:31;13752:18;;;13745:59;13821:18;;54689:88:0::1;13492:353:1::0;54689:88:0::1;54793:6;54788:160;54809:12;54805:1;:16;54788:160;;;54843:36;54853:10;54865:13;50707:7:::0;;;50638:84;54843:36:::1;54894:7;:9:::0;;;:7:::1;:9;::::0;::::1;:::i;:::-;::::0;;;-1:-1:-1;;54918:16:0::1;:18:::0;;;:16:::1;:18;::::0;::::1;:::i;:::-;;;;;;54823:3;;;;;:::i;:::-;;;;54788:160;;;-1:-1:-1::0;54975:10:0::1;54958:28;::::0;;;:16:::1;:28;::::0;;;;:36:::1;;:52:::0;;54998:12;;54958:28;:52:::1;::::0;54998:12;;54958:52:::1;:::i;32815:295::-:0;-1:-1:-1;;;;;32918:24:0;;26389:10;32918:24;;32910:62;;;;-1:-1:-1;;;32910:62:0;;10649:2:1;32910:62:0;;;10631:21:1;10688:2;10668:18;;;10661:30;10727:27;10707:18;;;10700:55;10772:18;;32910:62:0;10447:349:1;32910:62:0;26389:10;32985:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;32985:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;32985:53:0;;;;;;;;;;33054:48;;6537:41:1;;;32985:42:0;;26389:10;33054:48;;6510:18:1;33054:48:0;;;;;;;32815:295;;:::o;51328:113::-;27631:6;;-1:-1:-1;;;;;27631:6:0;26389:10;27778:23;27770:68;;;;-1:-1:-1;;;27770:68:0;;;;;;;:::i;:::-;51415:18:::1;::::0;;-1:-1:-1;;51393:40:0;::::1;51415:18;::::0;;::::1;51414:19;51393:40;::::0;;51328:113::o;34078:328::-;34253:41;26389:10;34286:7;34253:18;:41::i;:::-;34245:103;;;;-1:-1:-1;;;34245:103:0;;;;;;;:::i;:::-;34359:39;34373:4;34379:2;34383:7;34392:5;34359:13;:39::i;:::-;34078:328;;;;:::o;50904:108::-;27631:6;;-1:-1:-1;;;;;27631:6:0;26389:10;27778:23;27770:68;;;;-1:-1:-1;;;27770:68:0;;;;;;;:::i;:::-;50977:15:::1;:27:::0;50904:108::o;31312:324::-;35981:4;36005:16;;;:7;:16;;;;;;31385:13;;-1:-1:-1;;;;;36005:16:0;31411:76;;;;-1:-1:-1;;;31411:76:0;;16406:2:1;31411:76:0;;;16388:21:1;16445:2;16425:18;;;16418:30;16484:34;16464:18;;;16457:62;-1:-1:-1;;;16535:18:1;;;16528:45;16590:19;;31411:76:0;16204:411:1;31411:76:0;31500:18;31521:9;:7;:9::i;:::-;31500:30;;31569:1;31554:4;31548:18;:22;:80;;;;;;;;;;;;;;;;;31597:4;31603:18;:7;:16;:18::i;:::-;31580:42;;;;;;;;;:::i;:::-;;;;;;;;;;;;;31548:80;31541:87;31312:324;-1:-1:-1;;;31312:324:0:o;56512:301::-;27631:6;;-1:-1:-1;;;;;27631:6:0;26389:10;27778:23;27770:68;;;;-1:-1:-1;;;27770:68:0;;;;;;;:::i;:::-;56598:7:::1;;56586:8;:19;;56578:65;;;::::0;-1:-1:-1;;;56578:65:0;;9842:2:1;56578:65:0::1;::::0;::::1;9824:21:1::0;9881:2;9861:18;;;9854:30;9920:34;9900:18;;;9893:62;-1:-1:-1;;;9971:18:1;;;9964:31;10012:19;;56578:65:0::1;9640:397:1::0;56578:65:0::1;56665:8;56654:7;;:19;;;;;;;:::i;:::-;::::0;;;-1:-1:-1;56689:6:0::1;::::0;-1:-1:-1;56684:122:0::1;56705:8;56701:1;:12;56684:122;;;56735:35;56745:10;56756:13;50707:7:::0;;;50638:84;56735:35:::1;56785:7;:9:::0;;;:7:::1;:9;::::0;::::1;:::i;:::-;;;;;;56715:3;;;;;:::i;:::-;;;;56684:122;;28358:192:::0;27631:6;;-1:-1:-1;;;;;27631:6:0;26389:10;27778:23;27770:68;;;;-1:-1:-1;;;27770:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;28447:22:0;::::1;28439:73;;;::::0;-1:-1:-1;;;28439:73:0;;8671:2:1;28439:73:0::1;::::0;::::1;8653:21:1::0;8710:2;8690:18;;;8683:30;8749:34;8729:18;;;8722:62;-1:-1:-1;;;8800:18:1;;;8793:36;8846:19;;28439:73:0::1;8469:402:1::0;28439:73:0::1;28523:19;28533:8;28523:9;:19::i;:::-;28358:192:::0;:::o;30023:305::-;30125:4;-1:-1:-1;;;;;;30162:40:0;;-1:-1:-1;;;30162:40:0;;:105;;-1:-1:-1;;;;;;;30219:48:0;;-1:-1:-1;;;30219:48:0;30162:105;:158;;;-1:-1:-1;;;;;;;;;;19404:40:0;;;30284:36;19295:157;39898:174;39973:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;39973:29:0;-1:-1:-1;;;;;39973:29:0;;;;;;;;:24;;40027:23;39973:24;40027:14;:23::i;:::-;-1:-1:-1;;;;;40018:46:0;;;;;;;;;;;39898:174;;:::o;36210:348::-;36303:4;36005:16;;;:7;:16;;;;;;-1:-1:-1;;;;;36005:16:0;36320:73;;;;-1:-1:-1;;;36320:73:0;;11003:2:1;36320:73:0;;;10985:21:1;11042:2;11022:18;;;11015:30;11081:34;11061:18;;;11054:62;-1:-1:-1;;;11132:18:1;;;11125:42;11184:19;;36320:73:0;10801:408:1;36320:73:0;36404:13;36420:23;36435:7;36420:14;:23::i;:::-;36404:39;;36473:5;-1:-1:-1;;;;;36462:16:0;:7;-1:-1:-1;;;;;36462:16:0;;:51;;;;36506:7;-1:-1:-1;;;;;36482:31:0;:20;36494:7;36482:11;:20::i;:::-;-1:-1:-1;;;;;36482:31:0;;36462:51;:87;;;-1:-1:-1;;;;;;33302:25:0;;;33278:4;33302:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;36517:32;36454:96;36210:348;-1:-1:-1;;;;36210:348:0:o;39202:578::-;39361:4;-1:-1:-1;;;;;39334:31:0;:23;39349:7;39334:14;:23::i;:::-;-1:-1:-1;;;;;39334:31:0;;39326:85;;;;-1:-1:-1;;;39326:85:0;;15996:2:1;39326:85:0;;;15978:21:1;16035:2;16015:18;;;16008:30;16074:34;16054:18;;;16047:62;-1:-1:-1;;;16125:18:1;;;16118:39;16174:19;;39326:85:0;15794:405:1;39326:85:0;-1:-1:-1;;;;;39430:16:0;;39422:65;;;;-1:-1:-1;;;39422:65:0;;10244:2:1;39422:65:0;;;10226:21:1;10283:2;10263:18;;;10256:30;10322:34;10302:18;;;10295:62;-1:-1:-1;;;10373:18:1;;;10366:34;10417:19;;39422:65:0;10042:400:1;39422:65:0;39500:39;39521:4;39527:2;39531:7;39500:20;:39::i;:::-;39604:29;39621:1;39625:7;39604:8;:29::i;:::-;-1:-1:-1;;;;;39646:15:0;;;;;;:9;:15;;;;;:20;;39665:1;;39646:15;:20;;39665:1;;39646:20;:::i;:::-;;;;-1:-1:-1;;;;;;;39677:13:0;;;;;;:9;:13;;;;;:18;;39694:1;;39677:13;:18;;39694:1;;39677:18;:::i;:::-;;;;-1:-1:-1;;39706:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;39706:21:0;-1:-1:-1;;;;;39706:21:0;;;;;;;;;39745:27;;39706:16;;39745:27;;;;;;;39202:578;;;:::o;3643:98::-;3701:7;3728:5;3732:1;3728;:5;:::i;36900:110::-;36976:26;36986:2;36990:7;36976:26;;;;;;;;;;;;:9;:26::i;35288:315::-;35445:28;35455:4;35461:2;35465:7;35445:9;:28::i;:::-;35492:48;35515:4;35521:2;35525:7;35534:5;35492:22;:48::i;:::-;35484:111;;;;-1:-1:-1;;;35484:111:0;;;;;;;:::i;31884:99::-;31934:13;31967:8;31960:15;;;;;:::i;7323:723::-;7379:13;7600:10;7596:53;;-1:-1:-1;;7627:10:0;;;;;;;;;;;;-1:-1:-1;;;7627:10:0;;;;;7323:723::o;7596:53::-;7674:5;7659:12;7715:78;7722:9;;7715:78;;7748:8;;;;:::i;:::-;;-1:-1:-1;7771:10:0;;-1:-1:-1;7779:2:0;7771:10;;:::i;:::-;;;7715:78;;;7803:19;7835:6;7825:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;7825:17:0;;7803:39;;7853:154;7860:10;;7853:154;;7887:11;7897:1;7887:11;;:::i;:::-;;-1:-1:-1;7956:10:0;7964:2;7956:5;:10;:::i;:::-;7943:24;;:2;:24;:::i;:::-;7930:39;;7913:6;7920;7913:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;7913:56:0;;;;;;;;-1:-1:-1;7984:11:0;7993:2;7984:11;;:::i;:::-;;;7853:154;;28558:173;28633:6;;;-1:-1:-1;;;;;28650:17:0;;;-1:-1:-1;;;;;;28650:17:0;;;;;;;28683:40;;28633:6;;;28650:17;28633:6;;28683:40;;28614:16;;28683:40;28603:128;28558:173;:::o;44662:589::-;-1:-1:-1;;;;;44868:18:0;;44864:187;;44903:40;44935:7;46078:10;:17;;46051:24;;;;:15;:24;;;;;:44;;;46106:24;;;;;;;;;;;;45974:164;44903:40;44864:187;;;44973:2;-1:-1:-1;;;;;44965:10:0;:4;-1:-1:-1;;;;;44965:10:0;;44961:90;;44992:47;45025:4;45031:7;44992:32;:47::i;:::-;-1:-1:-1;;;;;45065:16:0;;45061:183;;45098:45;45135:7;45098:36;:45::i;45061:183::-;45171:4;-1:-1:-1;;;;;45165:10:0;:2;-1:-1:-1;;;;;45165:10:0;;45161:83;;45192:40;45220:2;45224:7;45192:27;:40::i;37237:321::-;37367:18;37373:2;37377:7;37367:5;:18::i;:::-;37418:54;37449:1;37453:2;37457:7;37466:5;37418:22;:54::i;:::-;37396:154;;;;-1:-1:-1;;;37396:154:0;;;;;;;:::i;40637:803::-;40792:4;-1:-1:-1;;;;;40813:13:0;;10113:20;10161:8;40809:624;;40849:72;;-1:-1:-1;;;40849:72:0;;-1:-1:-1;;;;;40849:36:0;;;;;:72;;26389:10;;40900:4;;40906:7;;40915:5;;40849:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;40849:72:0;;;;;;;;-1:-1:-1;;40849:72:0;;;;;;;;;;;;:::i;:::-;;;40845:533;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;41095:13:0;;41091:272;;41138:60;;-1:-1:-1;;;41138:60:0;;;;;;;:::i;41091:272::-;41313:6;41307:13;41298:6;41294:2;41290:15;41283:38;40845:533;-1:-1:-1;;;;;;40972:55:0;-1:-1:-1;;;40972:55:0;;-1:-1:-1;40965:62:0;;40809:624;-1:-1:-1;41417:4:0;40637:803;;;;;;:::o;46765:988::-;47031:22;47081:1;47056:22;47073:4;47056:16;:22::i;:::-;:26;;;;:::i;:::-;47093:18;47114:26;;;:17;:26;;;;;;47031:51;;-1:-1:-1;47247:28:0;;;47243:328;;-1:-1:-1;;;;;47314:18:0;;47292:19;47314:18;;;:12;:18;;;;;;;;:34;;;;;;;;;47365:30;;;;;;:44;;;47482:30;;:17;:30;;;;;:43;;;47243:328;-1:-1:-1;47667:26:0;;;;:17;:26;;;;;;;;47660:33;;;-1:-1:-1;;;;;47711:18:0;;;;;:12;:18;;;;;:34;;;;;;;47704:41;46765:988::o;48048:1079::-;48326:10;:17;48301:22;;48326:21;;48346:1;;48326:21;:::i;:::-;48358:18;48379:24;;;:15;:24;;;;;;48752:10;:26;;48301:46;;-1:-1:-1;48379:24:0;;48301:46;;48752:26;;;;;;:::i;:::-;;;;;;;;;48730:48;;48816:11;48791:10;48802;48791:22;;;;;;;;:::i;:::-;;;;;;;;;;;;:36;;;;48896:28;;;:15;:28;;;;;;;:41;;;49068:24;;;;;49061:31;49103:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;48119:1008;;;48048:1079;:::o;45552:221::-;45637:14;45654:20;45671:2;45654:16;:20::i;:::-;-1:-1:-1;;;;;45685:16:0;;;;;;;:12;:16;;;;;;;;:24;;;;;;;;:34;;;45730:26;;;:17;:26;;;;;;:35;;;;-1:-1:-1;45552:221:0:o;37894:382::-;-1:-1:-1;;;;;37974:16:0;;37966:61;;;;-1:-1:-1;;;37966:61:0;;14052:2:1;37966:61:0;;;14034:21:1;;;14071:18;;;14064:30;14130:34;14110:18;;;14103:62;14182:18;;37966:61:0;13850:356:1;37966:61:0;35981:4;36005:16;;;:7;:16;;;;;;-1:-1:-1;;;;;36005:16:0;:30;38038:58;;;;-1:-1:-1;;;38038:58:0;;9078:2:1;38038:58:0;;;9060:21:1;9117:2;9097:18;;;9090:30;9156;9136:18;;;9129:58;9204:18;;38038:58:0;8876:352:1;38038:58:0;38109:45;38138:1;38142:2;38146:7;38109:20;:45::i;:::-;-1:-1:-1;;;;;38167:13:0;;;;;;:9;:13;;;;;:18;;38184:1;;38167:13;:18;;38184:1;;38167:18;:::i;:::-;;;;-1:-1:-1;;38196:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;38196:21:0;-1:-1:-1;;;;;38196:21:0;;;;;;;;38235:33;;38196:16;;;38235:33;;38196:16;;38235:33;37894:382;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;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:186::-;887:6;940:2;928:9;919:7;915:23;911:32;908:52;;;956:1;953;946:12;908:52;979:29;998:9;979:29;:::i;1019:260::-;1087:6;1095;1148:2;1136:9;1127:7;1123:23;1119:32;1116:52;;;1164:1;1161;1154:12;1116:52;1187:29;1206:9;1187:29;:::i;:::-;1177:39;;1235:38;1269:2;1258:9;1254:18;1235:38;:::i;:::-;1225:48;;1019:260;;;;;:::o;1284:328::-;1361:6;1369;1377;1430:2;1418:9;1409:7;1405:23;1401:32;1398:52;;;1446:1;1443;1436:12;1398:52;1469:29;1488:9;1469:29;:::i;:::-;1459:39;;1517:38;1551:2;1540:9;1536:18;1517:38;:::i;:::-;1507:48;;1602:2;1591:9;1587:18;1574:32;1564:42;;1284:328;;;;;:::o;1617:666::-;1712:6;1720;1728;1736;1789:3;1777:9;1768:7;1764:23;1760:33;1757:53;;;1806:1;1803;1796:12;1757:53;1829:29;1848:9;1829:29;:::i;:::-;1819:39;;1877:38;1911:2;1900:9;1896:18;1877:38;:::i;:::-;1867:48;;1962:2;1951:9;1947:18;1934:32;1924:42;;2017:2;2006:9;2002:18;1989:32;2044:18;2036:6;2033:30;2030:50;;;2076:1;2073;2066:12;2030:50;2099:22;;2152:4;2144:13;;2140:27;-1:-1:-1;2130:55:1;;2181:1;2178;2171:12;2130:55;2204:73;2269:7;2264:2;2251:16;2246:2;2242;2238:11;2204:73;:::i;:::-;2194:83;;;1617:666;;;;;;;:::o;2288:347::-;2353:6;2361;2414:2;2402:9;2393:7;2389:23;2385:32;2382:52;;;2430:1;2427;2420:12;2382:52;2453:29;2472:9;2453:29;:::i;:::-;2443:39;;2532:2;2521:9;2517:18;2504:32;2579:5;2572:13;2565:21;2558:5;2555:32;2545:60;;2601:1;2598;2591:12;2545:60;2624:5;2614:15;;;2288:347;;;;;:::o;2640:254::-;2708:6;2716;2769:2;2757:9;2748:7;2744:23;2740:32;2737:52;;;2785:1;2782;2775:12;2737:52;2808:29;2827:9;2808:29;:::i;:::-;2798:39;2884:2;2869:18;;;;2856:32;;-1:-1:-1;;;2640:254:1:o;2899:245::-;2957:6;3010:2;2998:9;2989:7;2985:23;2981:32;2978:52;;;3026:1;3023;3016:12;2978:52;3065:9;3052:23;3084:30;3108:5;3084:30;:::i;3149:249::-;3218:6;3271:2;3259:9;3250:7;3246:23;3242:32;3239:52;;;3287:1;3284;3277:12;3239:52;3319:9;3313:16;3338:30;3362:5;3338:30;:::i;3403:450::-;3472:6;3525:2;3513:9;3504:7;3500:23;3496:32;3493:52;;;3541:1;3538;3531:12;3493:52;3581:9;3568:23;3614:18;3606:6;3603:30;3600:50;;;3646:1;3643;3636:12;3600:50;3669:22;;3722:4;3714:13;;3710:27;-1:-1:-1;3700:55:1;;3751:1;3748;3741:12;3700:55;3774:73;3839:7;3834:2;3821:16;3816:2;3812;3808:11;3774:73;:::i;3858:180::-;3917:6;3970:2;3958:9;3949:7;3945:23;3941:32;3938:52;;;3986:1;3983;3976:12;3938:52;-1:-1:-1;4009:23:1;;3858:180;-1:-1:-1;3858:180:1:o;4043:257::-;4084:3;4122:5;4116:12;4149:6;4144:3;4137:19;4165:63;4221:6;4214:4;4209:3;4205:14;4198:4;4191:5;4187:16;4165:63;:::i;:::-;4282:2;4261:15;-1:-1:-1;;4257:29:1;4248:39;;;;4289:4;4244:50;;4043:257;-1:-1:-1;;4043:257:1:o;4305:470::-;4484:3;4522:6;4516:13;4538:53;4584:6;4579:3;4572:4;4564:6;4560:17;4538:53;:::i;:::-;4654:13;;4613:16;;;;4676:57;4654:13;4613:16;4710:4;4698:17;;4676:57;:::i;:::-;4749:20;;4305:470;-1:-1:-1;;;;4305:470:1:o;4988:488::-;-1:-1:-1;;;;;5257:15:1;;;5239:34;;5309:15;;5304:2;5289:18;;5282:43;5356:2;5341:18;;5334:34;;;5404:3;5399:2;5384:18;;5377:31;;;5182:4;;5425:45;;5450:19;;5442:6;5425:45;:::i;:::-;5417:53;4988:488;-1:-1:-1;;;;;;4988:488:1:o;5760:632::-;5931:2;5983:21;;;6053:13;;5956:18;;;6075:22;;;5902:4;;5931:2;6154:15;;;;6128:2;6113:18;;;5902:4;6197:169;6211:6;6208:1;6205:13;6197:169;;;6272:13;;6260:26;;6341:15;;;;6306:12;;;;6233:1;6226:9;6197:169;;;-1:-1:-1;6383:3:1;;5760:632;-1:-1:-1;;;;;;5760:632:1:o;6589:219::-;6738:2;6727:9;6720:21;6701:4;6758:44;6798:2;6787:9;6783:18;6775:6;6758:44;:::i;6813:415::-;7015:2;6997:21;;;7054:2;7034:18;;;7027:30;7093:34;7088:2;7073:18;;7066:62;-1:-1:-1;;;7159:2:1;7144:18;;7137:49;7218:3;7203:19;;6813:415::o;7645:414::-;7847:2;7829:21;;;7886:2;7866:18;;;7859:30;7925:34;7920:2;7905:18;;7898:62;-1:-1:-1;;;7991:2:1;7976:18;;7969:48;8049:3;8034:19;;7645:414::o;8064:400::-;8266:2;8248:21;;;8305:2;8285:18;;;8278:30;8344:34;8339:2;8324:18;;8317:62;-1:-1:-1;;;8410:2:1;8395:18;;8388:34;8454:3;8439:19;;8064:400::o;9233:402::-;9435:2;9417:21;;;9474:2;9454:18;;;9447:30;9513:34;9508:2;9493:18;;9486:62;-1:-1:-1;;;9579:2:1;9564:18;;9557:36;9625:3;9610:19;;9233:402::o;11214:334::-;11416:2;11398:21;;;11455:2;11435:18;;;11428:30;-1:-1:-1;;;11489:2:1;11474:18;;11467:40;11539:2;11524:18;;11214:334::o;14211:397::-;14413:2;14395:21;;;14452:2;14432:18;;;14425:30;14491:34;14486:2;14471:18;;14464:62;-1:-1:-1;;;14557:2:1;14542:18;;14535:31;14598:3;14583:19;;14211:397::o;15026:356::-;15228:2;15210:21;;;15247:18;;;15240:30;15306:34;15301:2;15286:18;;15279:62;15373:2;15358:18;;15026:356::o;15387:402::-;15589:2;15571:21;;;15628:2;15608:18;;;15601:30;15667:34;15662:2;15647:18;;15640:62;-1:-1:-1;;;15733:2:1;15718:18;;15711:36;15779:3;15764:19;;15387:402::o;17022:413::-;17224:2;17206:21;;;17263:2;17243:18;;;17236:30;17302:34;17297:2;17282:18;;17275:62;-1:-1:-1;;;17368:2:1;17353:18;;17346:47;17425:3;17410:19;;17022:413::o;17853:356::-;18055:2;18037:21;;;18074:18;;;18067:30;18133:34;18128:2;18113:18;;18106:62;18200:2;18185:18;;17853:356::o;18396:128::-;18436:3;18467:1;18463:6;18460:1;18457:13;18454:39;;;18473:18;;:::i;:::-;-1:-1:-1;18509:9:1;;18396:128::o;18529:120::-;18569:1;18595;18585:35;;18600:18;;:::i;:::-;-1:-1:-1;18634:9:1;;18529:120::o;18654:168::-;18694:7;18760:1;18756;18752:6;18748:14;18745:1;18742:21;18737:1;18730:9;18723:17;18719:45;18716:71;;;18767:18;;:::i;:::-;-1:-1:-1;18807:9:1;;18654:168::o;18827:125::-;18867:4;18895:1;18892;18889:8;18886:34;;;18900:18;;:::i;:::-;-1:-1:-1;18937:9:1;;18827:125::o;18957:258::-;19029:1;19039:113;19053:6;19050:1;19047:13;19039:113;;;19129:11;;;19123:18;19110:11;;;19103:39;19075:2;19068:10;19039:113;;;19170:6;19167:1;19164:13;19161:48;;;-1:-1:-1;;19205:1:1;19187:16;;19180:27;18957:258::o;19220:136::-;19259:3;19287:5;19277:39;;19296:18;;:::i;:::-;-1:-1:-1;;;19332:18:1;;19220:136::o;19361:380::-;19440:1;19436:12;;;;19483;;;19504:61;;19558:4;19550:6;19546:17;19536:27;;19504:61;19611:2;19603:6;19600:14;19580:18;19577:38;19574:161;;;19657:10;19652:3;19648:20;19645:1;19638:31;19692:4;19689:1;19682:15;19720:4;19717:1;19710:15;19574:161;;19361:380;;;:::o;19746:135::-;19785:3;-1:-1:-1;;19806:17:1;;19803:43;;;19826:18;;:::i;:::-;-1:-1:-1;19873:1:1;19862:13;;19746:135::o;19886:112::-;19918:1;19944;19934:35;;19949:18;;:::i;:::-;-1:-1:-1;19983:9:1;;19886:112::o;20003:127::-;20064:10;20059:3;20055:20;20052:1;20045:31;20095:4;20092:1;20085:15;20119:4;20116:1;20109:15;20135:127;20196:10;20191:3;20187:20;20184:1;20177:31;20227:4;20224:1;20217:15;20251:4;20248:1;20241:15;20267:127;20328:10;20323:3;20319:20;20316:1;20309:31;20359:4;20356:1;20349:15;20383:4;20380:1;20373:15;20399:127;20460:10;20455:3;20451:20;20448:1;20441:31;20491:4;20488:1;20481:15;20515:4;20512:1;20505:15;20531:127;20592:10;20587:3;20583:20;20580:1;20573:31;20623:4;20620:1;20613:15;20647:4;20644:1;20637:15;20663:131;-1:-1:-1;;;;;;20737:32:1;;20727:43;;20717:71;;20784:1;20781;20774:12

Swarm Source

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