Token example2

Overview ERC-721

Total Supply:
17 example2

Holders:
6 addresses

Transfers:
-

Profile Summary

 
Contract:
0xfba58904a995bdec927fb03d3d3ba8894e3b39540xfba58904a995bDeC927fb03d3D3BA8894e3B3954

Loading
[ Download CSV Export  ] 
Loading
[ Download CSV Export  ] 
Loading

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

Contract Source Code Verified (Exact Match)

Contract Name:
box

Compiler Version
v0.8.9+commit.e5eed63a

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @dev Returns the amount of tokens in existence.
     */
    function totalSupply() external view returns (uint256);

    /**
     * @dev Returns the amount of tokens owned by `account`.
     */
    function balanceOf(address account) external view returns (uint256);

    /**
     * @dev Moves `amount` tokens from the caller's account to `recipient`.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transfer(address recipient, uint256 amount)
        external
        returns (bool);

    /**
     * @dev Returns the remaining number of tokens that `spender` will be
     * allowed to spend on behalf of `owner` through {transferFrom}. This is
     * zero by default.
     *
     * This value changes when {approve} or {transferFrom} are called.
     */
    function allowance(address owner, address spender)
        external
        view
        returns (uint256);

    /**
     * @dev Sets `amount` as the allowance of `spender` over the caller's tokens.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * IMPORTANT: Beware that changing an allowance with this method brings the risk
     * that someone may use both the old and the new allowance by unfortunate
     * transaction ordering. One possible solution to mitigate this race
     * condition is to first reduce the spender's allowance to 0 and set the
     * desired value afterwards:
     * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
     *
     * Emits an {Approval} event.
     */
    function approve(address spender, uint256 amount) external returns (bool);

    /**
     * @dev Moves `amount` tokens from `sender` to `recipient` using the
     * allowance mechanism. `amount` is then deducted from the caller's
     * allowance.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(
        address sender,
        address recipient,
        uint256 amount
    ) external returns (bool);

    /**
     * @dev Emitted when `value` tokens are moved from one account (`from`) to
     * another (`to`).
     *
     * Note that `value` may be zero.
     */
    event Transfer(address indexed from, address indexed to, uint256 value);

    /**
     * @dev Emitted when the allowance of a `spender` for an `owner` is set by
     * a call to {approve}. `value` is the new allowance.
     */
    event Approval(
        address indexed owner,
        address indexed spender,
        uint256 value
    );
}

// File: @openzeppelin/contracts/utils/introspection/IERC165.sol
pragma solidity ^0.8.0;

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

// File: @openzeppelin/contracts/token/ERC721/IERC721.sol
pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

// File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Enumerable.sol
pragma solidity ^0.8.0;

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

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

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

// File: @openzeppelin/contracts/utils/introspection/ERC165.sol
pragma solidity ^0.8.0;

/**
 * @dev Implementation of the {IERC165} interface.
 *
 * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check
 * for the additional interface id that will be supported. For example:
 *
 * ```solidity
 * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
 *     return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId);
 * }
 * ```
 *
 * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation.
 */
abstract contract ERC165 is IERC165 {
    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId)
        public
        view
        virtual
        override
        returns (bool)
    {
        return interfaceId == type(IERC165).interfaceId;
    }
}

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

pragma solidity ^0.8.0;

/**
 * @dev Collection of functions related to the address type
 */
library Address {
    /**
     * @dev Returns true if `account` is a contract.
     *
     * [IMPORTANT]
     * ====
     * It is unsafe to assume that an address for which this function returns
     * false is an externally-owned account (EOA) and not a contract.
     *
     * Among others, `isContract` will return false for the following
     * types of addresses:
     *
     *  - an externally-owned account
     *  - a contract in construction
     *  - an address where a contract will be created
     *  - an address where a contract lived, but was destroyed
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize, which returns 0 for contracts in
        // construction, since the code is only stored at the end of the
        // constructor execution.

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

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

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

pragma solidity ^0.8.0;

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

// File: @openzeppelin/contracts/utils/Context.sol
pragma solidity ^0.8.0;

/**
 * @dev Provides information about the current execution context, including the
 * sender of the transaction and its data. While these are generally available
 * via msg.sender and msg.data, they should not be accessed in such a direct
 * manner, since when dealing with meta-transactions the account sending and
 * paying for execution may not be the actual sender (as far as an application
 * is concerned).
 *
 * This contract is only required for intermediate, library-like contracts.
 */
abstract contract Context {
    function _msgSender() internal view virtual returns (address) {
        return msg.sender;
    }

    function _msgData() internal view virtual returns (bytes calldata) {
        return msg.data;
    }
}

// File: @openzeppelin/contracts/token/ERC721/ERC721.sol
pragma solidity ^0.8.0;

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

    /**
     * @dev See {IERC721Metadata-tokenURI}.
     */
    function tokenURI(uint256 tokenId)
        public
        view
        virtual
        override
        returns (string memory)
    {
        require(
            _exists(tokenId),
            "ERC721Metadata: URI query for nonexistent token"
        );

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

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

    /**
     * @dev See {IERC721-approve}.
     */
    function approve(address to, uint256 tokenId) public virtual override {
        address owner = ERC721.ownerOf(tokenId);
        require(to != owner, "ERC721: approval to current owner");

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved)
        public
        virtual
        override
    {
        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.onERC721Received.selector;
            } catch (bytes memory reason) {
                if (reason.length == 0) {
                    revert(
                        "ERC721: transfer to non ERC721Receiver implementer"
                    );
                } else {
                    assembly {
                        revert(add(32, reason), mload(reason))
                    }
                }
            }
        } else {
            return true;
        }
    }

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

    /**
     * @dev Hook that is called before any token transfer. This includes minting
     * and burning.
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be
     * transferred to `to`.
     * - When `from` is zero, `tokenId` will be minted for `to`.
     * - When `to` is zero, ``from``'s `tokenId` will be burned.
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual override {
        super._beforeTokenTransfer(from, to, tokenId);

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

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

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

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

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

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

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

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

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

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

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

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

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

// File: @openzeppelin/contracts/access/Ownable.sol
pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

pragma solidity >=0.7.0 <0.9.0;

contract box is ERC721Enumerable, Ownable {
    using Strings for uint256;

    bool public alien;
    IERC20 dmd = IERC20(address(0x90E892FED501ae00596448aECF998C88816e5C0F));
    address private AlienAddress = 0xAb8eA62C1E520ecB3b99b9D13FdAe5d15177233c;
    string baseURI;
    string public baseExtension = ".json";
    uint256 public price = 0.002 ether;
    uint256 public MAX_SUPPLY = 18;
    uint256 public constant MAX_MINT_PER_TX = 5;
    bool public paused = true;
    bool public revealed = false;
    string public notRevealedUri;
    
    constructor(
        string memory _name,
        string memory _symbol,
        string memory _initBaseURI,
        string memory _initNotRevealedUri
    ) ERC721(_name, _symbol) {
        setBaseURI(_initBaseURI);
        setNotRevealedURI(_initNotRevealedUri);
        alien = true;
    }

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

    // public
    function mint(uint256 _amount) public payable {
        uint256 supply = totalSupply();
        if (alien == true)
            require(
                dmd.balanceOf(msg.sender) > 10 wei,
                "to buy NFT you need 10 DMD in your address"
            );
        require(!paused);
        require(
            _amount > 0 && _amount <= MAX_MINT_PER_TX,
            "Can only mint between 1 and 5 tokens at once"
        );
        require(
            supply + _amount <= MAX_SUPPLY,
            "Can't mint more than max supply"
        );
        require(msg.value == price * _amount, "Wrong amount of FTM sent");

        for (uint256 i = 1; i <= _amount; i++) {
            _safeMint(msg.sender, supply + i);
        }
    }

    function walletOfOwner(address _owner)
        public
        view
        returns (uint256[] memory)
    {
        uint256 ownerTokenCount = balanceOf(_owner);
        uint256[] memory tokenIds = new uint256[](ownerTokenCount);
        for (uint256 i; i < ownerTokenCount; i++) {
            tokenIds[i] = tokenOfOwnerByIndex(_owner, i);
        }
        return tokenIds;
    }

    function tokenURI(uint256 tokenId)
        public
        view
        virtual
        override
        returns (string memory)
    {
        require(
            _exists(tokenId),
            "ERC721Metadata: URI query for nonexistent token"
        );

        if (revealed == false) {
            return notRevealedUri;
        }

        string memory currentBaseURI = _baseURI();
        return
            bytes(currentBaseURI).length > 0
                ? string(
                    abi.encodePacked(
                        currentBaseURI,
                        tokenId.toString(),
                        baseExtension
                    )
                )
                : "";
    }

    function _alien() public onlyOwner {
        alien = !alien;
    }

    //only owner
    function showboobs() public onlyOwner {
        revealed = true;
    }

    function setPrice(uint256 _newprice) public onlyOwner {
        price = _newprice;
    }

    function setNotRevealedURI(string memory _notRevealedURI) public onlyOwner {
        notRevealedUri = _notRevealedURI;
    }

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

    function setBaseExtension(string memory _newBaseExtension)
        public
        onlyOwner
    {
        baseExtension = _newBaseExtension;
    }

    function pause(bool _state) public onlyOwner {
        paused = _state;
    }

    function burner (uint256 tokenId) public virtual {
        require(_isApprovedOrOwner(_msgSender(), tokenId), "You must own an NFT from this collection");
        _burn(tokenId);
    }

    function SendNudes() public onlyOwner {
        uint256 Alien = ((address(this).balance * 100) / 100);
        payable(AlienAddress).transfer(Alien);
    }

    //in case ftm gets stuck or address change.
    function withdrawFTM(address payable _to, uint256 _amount)
        external
        onlyOwner
    {
        _to.transfer(_amount);
    }

    receive() external payable {}
}

Contract ABI

[{"inputs":[{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_symbol","type":"string"},{"internalType":"string","name":"_initBaseURI","type":"string"},{"internalType":"string","name":"_initNotRevealedUri","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"MAX_MINT_PER_TX","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"SendNudes","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"_alien","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"alien","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseExtension","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"burner","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"notRevealedUri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"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":"_newBaseExtension","type":"string"}],"name":"setBaseExtension","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_notRevealedURI","type":"string"}],"name":"setNotRevealedURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newprice","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"showboobs","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"walletOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address payable","name":"_to","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"withdrawFTM","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

60806040527390e892fed501ae00596448aecf998c88816e5c0f600b60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555073ab8ea62c1e520ecb3b99b9d13fdae5d15177233c600c60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506040518060400160405280600581526020017f2e6a736f6e000000000000000000000000000000000000000000000000000000815250600e9080519060200190620000fb92919062000460565b5066071afd498d0000600f5560126010556001601160006101000a81548160ff0219169083151502179055506000601160016101000a81548160ff0219169083151502179055503480156200014f57600080fd5b5060405162005408380380620054088339818101604052810190620001759190620006ad565b838381600090805190602001906200018f92919062000460565b508060019080519060200190620001a892919062000460565b505050620001cb620001bf6200021260201b60201c565b6200021a60201b60201c565b620001dc82620002e060201b60201c565b620001ed816200038b60201b60201c565b6001600a60146101000a81548160ff0219169083151502179055505050505062000883565b600033905090565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b620002f06200021260201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620003166200043660201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16146200036f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200036690620007fc565b60405180910390fd5b80600d90805190602001906200038792919062000460565b5050565b6200039b6200021260201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620003c16200043660201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16146200041a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200041190620007fc565b60405180910390fd5b80601290805190602001906200043292919062000460565b5050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b8280546200046e906200084d565b90600052602060002090601f016020900481019282620004925760008555620004de565b82601f10620004ad57805160ff1916838001178555620004de565b82800160010185558215620004de579182015b82811115620004dd578251825591602001919060010190620004c0565b5b509050620004ed9190620004f1565b5090565b5b808211156200050c576000816000905550600101620004f2565b5090565b6000604051905090565b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b62000579826200052e565b810181811067ffffffffffffffff821117156200059b576200059a6200053f565b5b80604052505050565b6000620005b062000510565b9050620005be82826200056e565b919050565b600067ffffffffffffffff821115620005e157620005e06200053f565b5b620005ec826200052e565b9050602081019050919050565b60005b8381101562000619578082015181840152602081019050620005fc565b8381111562000629576000848401525b50505050565b6000620006466200064084620005c3565b620005a4565b90508281526020810184848401111562000665576200066462000529565b5b62000672848285620005f9565b509392505050565b600082601f83011262000692576200069162000524565b5b8151620006a48482602086016200062f565b91505092915050565b60008060008060808587031215620006ca57620006c96200051a565b5b600085015167ffffffffffffffff811115620006eb57620006ea6200051f565b5b620006f9878288016200067a565b945050602085015167ffffffffffffffff8111156200071d576200071c6200051f565b5b6200072b878288016200067a565b935050604085015167ffffffffffffffff8111156200074f576200074e6200051f565b5b6200075d878288016200067a565b925050606085015167ffffffffffffffff8111156200078157620007806200051f565b5b6200078f878288016200067a565b91505092959194509250565b600082825260208201905092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000620007e46020836200079b565b9150620007f182620007ac565b602082019050919050565b600060208201905081810360008301526200081781620007d5565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200086657607f821691505b602082108114156200087d576200087c6200081e565b5b50919050565b614b7580620008936000396000f3fe6080604052600436106102345760003560e01c80636352211e1161012e578063a22cb465116100ab578063d4068acd1161006f578063d4068acd14610815578063da3ef23f1461083e578063e985e9c514610867578063f2c4ce1e146108a4578063f2fde38b146108cd5761023b565b8063a22cb46514610744578063b88d4fde1461076d578063be1963b514610796578063c6682862146107ad578063c87b56dd146107d85761023b565b806391b7f5ed116100f257806391b7f5ed1461067e578063948ea65c146106a757806395d89b41146106d2578063a035b1fe146106fd578063a0712d68146107285761023b565b80636352211e1461059757806370a08231146105d4578063715018a6146106115780638da5cb5b146106285780638ecad721146106535761023b565b80632f745c59116101bc5780634f6ccce7116101805780634f6ccce7146104c4578063518302271461050157806351d642741461052c57806355f804b3146105435780635c975abb1461056c5761023b565b80632f745c59146103df57806332cb6b0c1461041c57806342842e0e14610447578063438b63001461047057806347b5c007146104ad5761023b565b8063081c8c4411610203578063081c8c441461030e578063095ea7b31461033957806311db8d1b1461036257806318160ddd1461038b57806323b872dd146103b65761023b565b806301ffc9a71461024057806302329a291461027d57806306fdde03146102a6578063081812fc146102d15761023b565b3661023b57005b600080fd5b34801561024c57600080fd5b5061026760048036038101906102629190613267565b6108f6565b60405161027491906132af565b60405180910390f35b34801561028957600080fd5b506102a4600480360381019061029f91906132f6565b610970565b005b3480156102b257600080fd5b506102bb610a09565b6040516102c891906133bc565b60405180910390f35b3480156102dd57600080fd5b506102f860048036038101906102f39190613414565b610a9b565b6040516103059190613482565b60405180910390f35b34801561031a57600080fd5b50610323610b20565b60405161033091906133bc565b60405180910390f35b34801561034557600080fd5b50610360600480360381019061035b91906134c9565b610bae565b005b34801561036e57600080fd5b5061038960048036038101906103849190613414565b610cc6565b005b34801561039757600080fd5b506103a0610d22565b6040516103ad9190613518565b60405180910390f35b3480156103c257600080fd5b506103dd60048036038101906103d89190613533565b610d2f565b005b3480156103eb57600080fd5b50610406600480360381019061040191906134c9565b610d8f565b6040516104139190613518565b60405180910390f35b34801561042857600080fd5b50610431610e34565b60405161043e9190613518565b60405180910390f35b34801561045357600080fd5b5061046e60048036038101906104699190613533565b610e3a565b005b34801561047c57600080fd5b5061049760048036038101906104929190613586565b610e5a565b6040516104a49190613671565b60405180910390f35b3480156104b957600080fd5b506104c2610f08565b005b3480156104d057600080fd5b506104eb60048036038101906104e69190613414565b61100c565b6040516104f89190613518565b60405180910390f35b34801561050d57600080fd5b5061051661107d565b60405161052391906132af565b60405180910390f35b34801561053857600080fd5b50610541611090565b005b34801561054f57600080fd5b5061056a600480360381019061056591906137c8565b611138565b005b34801561057857600080fd5b506105816111ce565b60405161058e91906132af565b60405180910390f35b3480156105a357600080fd5b506105be60048036038101906105b99190613414565b6111e1565b6040516105cb9190613482565b60405180910390f35b3480156105e057600080fd5b506105fb60048036038101906105f69190613586565b611293565b6040516106089190613518565b60405180910390f35b34801561061d57600080fd5b5061062661134b565b005b34801561063457600080fd5b5061063d6113d3565b60405161064a9190613482565b60405180910390f35b34801561065f57600080fd5b506106686113fd565b6040516106759190613518565b60405180910390f35b34801561068a57600080fd5b506106a560048036038101906106a09190613414565b611402565b005b3480156106b357600080fd5b506106bc611488565b6040516106c991906132af565b60405180910390f35b3480156106de57600080fd5b506106e761149b565b6040516106f491906133bc565b60405180910390f35b34801561070957600080fd5b5061071261152d565b60405161071f9190613518565b60405180910390f35b610742600480360381019061073d9190613414565b611533565b005b34801561075057600080fd5b5061076b60048036038101906107669190613811565b61178d565b005b34801561077957600080fd5b50610794600480360381019061078f91906138f2565b61190e565b005b3480156107a257600080fd5b506107ab611970565b005b3480156107b957600080fd5b506107c2611a09565b6040516107cf91906133bc565b60405180910390f35b3480156107e457600080fd5b506107ff60048036038101906107fa9190613414565b611a97565b60405161080c91906133bc565b60405180910390f35b34801561082157600080fd5b5061083c600480360381019061083791906139b3565b611bf0565b005b34801561084a57600080fd5b50610865600480360381019061086091906137c8565b611cb7565b005b34801561087357600080fd5b5061088e600480360381019061088991906139f3565b611d4d565b60405161089b91906132af565b60405180910390f35b3480156108b057600080fd5b506108cb60048036038101906108c691906137c8565b611de1565b005b3480156108d957600080fd5b506108f460048036038101906108ef9190613586565b611e77565b005b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610969575061096882611f6f565b5b9050919050565b610978612051565b73ffffffffffffffffffffffffffffffffffffffff166109966113d3565b73ffffffffffffffffffffffffffffffffffffffff16146109ec576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109e390613a7f565b60405180910390fd5b80601160006101000a81548160ff02191690831515021790555050565b606060008054610a1890613ace565b80601f0160208091040260200160405190810160405280929190818152602001828054610a4490613ace565b8015610a915780601f10610a6657610100808354040283529160200191610a91565b820191906000526020600020905b815481529060010190602001808311610a7457829003601f168201915b5050505050905090565b6000610aa682612059565b610ae5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610adc90613b72565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60128054610b2d90613ace565b80601f0160208091040260200160405190810160405280929190818152602001828054610b5990613ace565b8015610ba65780601f10610b7b57610100808354040283529160200191610ba6565b820191906000526020600020905b815481529060010190602001808311610b8957829003601f168201915b505050505081565b6000610bb9826111e1565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610c2a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c2190613c04565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610c49612051565b73ffffffffffffffffffffffffffffffffffffffff161480610c785750610c7781610c72612051565b611d4d565b5b610cb7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cae90613c96565b60405180910390fd5b610cc183836120c5565b505050565b610cd7610cd1612051565b8261217e565b610d16576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d0d90613d28565b60405180910390fd5b610d1f8161225c565b50565b6000600880549050905090565b610d40610d3a612051565b8261217e565b610d7f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d7690613dba565b60405180910390fd5b610d8a83838361236d565b505050565b6000610d9a83611293565b8210610ddb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dd290613e4c565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b60105481565b610e558383836040518060200160405280600081525061190e565b505050565b60606000610e6783611293565b905060008167ffffffffffffffff811115610e8557610e8461369d565b5b604051908082528060200260200182016040528015610eb35781602001602082028036833780820191505090505b50905060005b82811015610efd57610ecb8582610d8f565b828281518110610ede57610edd613e6c565b5b6020026020010181815250508080610ef590613eca565b915050610eb9565b508092505050919050565b610f10612051565b73ffffffffffffffffffffffffffffffffffffffff16610f2e6113d3565b73ffffffffffffffffffffffffffffffffffffffff1614610f84576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f7b90613a7f565b60405180910390fd5b600060648047610f949190613f13565b610f9e9190613f9c565b9050600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015611008573d6000803e3d6000fd5b5050565b6000611016610d22565b8210611057576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161104e9061403f565b60405180910390fd5b6008828154811061106b5761106a613e6c565b5b90600052602060002001549050919050565b601160019054906101000a900460ff1681565b611098612051565b73ffffffffffffffffffffffffffffffffffffffff166110b66113d3565b73ffffffffffffffffffffffffffffffffffffffff161461110c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161110390613a7f565b60405180910390fd5b600a60149054906101000a900460ff1615600a60146101000a81548160ff021916908315150217905550565b611140612051565b73ffffffffffffffffffffffffffffffffffffffff1661115e6113d3565b73ffffffffffffffffffffffffffffffffffffffff16146111b4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111ab90613a7f565b60405180910390fd5b80600d90805190602001906111ca929190613158565b5050565b601160009054906101000a900460ff1681565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561128a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611281906140d1565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611304576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112fb90614163565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611353612051565b73ffffffffffffffffffffffffffffffffffffffff166113716113d3565b73ffffffffffffffffffffffffffffffffffffffff16146113c7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113be90613a7f565b60405180910390fd5b6113d160006125c9565b565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600581565b61140a612051565b73ffffffffffffffffffffffffffffffffffffffff166114286113d3565b73ffffffffffffffffffffffffffffffffffffffff161461147e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161147590613a7f565b60405180910390fd5b80600f8190555050565b600a60149054906101000a900460ff1681565b6060600180546114aa90613ace565b80601f01602080910402602001604051908101604052809291908181526020018280546114d690613ace565b80156115235780601f106114f857610100808354040283529160200191611523565b820191906000526020600020905b81548152906001019060200180831161150657829003601f168201915b5050505050905090565b600f5481565b600061153d610d22565b905060011515600a60149054906101000a900460ff161515141561164957600a600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231336040518263ffffffff1660e01b81526004016115b89190613482565b60206040518083038186803b1580156115d057600080fd5b505afa1580156115e4573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906116089190614198565b11611648576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161163f90614237565b60405180910390fd5b5b601160009054906101000a900460ff161561166357600080fd5b600082118015611674575060058211155b6116b3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116aa906142c9565b60405180910390fd5b60105482826116c291906142e9565b1115611703576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116fa9061438b565b60405180910390fd5b81600f546117119190613f13565b3414611752576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611749906143f7565b60405180910390fd5b6000600190505b8281116117885761177533828461177091906142e9565b61268f565b808061178090613eca565b915050611759565b505050565b611795612051565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611803576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117fa90614463565b60405180910390fd5b8060056000611810612051565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166118bd612051565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161190291906132af565b60405180910390a35050565b61191f611919612051565b8361217e565b61195e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161195590613dba565b60405180910390fd5b61196a848484846126ad565b50505050565b611978612051565b73ffffffffffffffffffffffffffffffffffffffff166119966113d3565b73ffffffffffffffffffffffffffffffffffffffff16146119ec576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119e390613a7f565b60405180910390fd5b6001601160016101000a81548160ff021916908315150217905550565b600e8054611a1690613ace565b80601f0160208091040260200160405190810160405280929190818152602001828054611a4290613ace565b8015611a8f5780601f10611a6457610100808354040283529160200191611a8f565b820191906000526020600020905b815481529060010190602001808311611a7257829003601f168201915b505050505081565b6060611aa282612059565b611ae1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ad8906144f5565b60405180910390fd5b60001515601160019054906101000a900460ff1615151415611b8f5760128054611b0a90613ace565b80601f0160208091040260200160405190810160405280929190818152602001828054611b3690613ace565b8015611b835780601f10611b5857610100808354040283529160200191611b83565b820191906000526020600020905b815481529060010190602001808311611b6657829003601f168201915b50505050509050611beb565b6000611b99612709565b90506000815111611bb95760405180602001604052806000815250611be7565b80611bc38461279b565b600e604051602001611bd7939291906145e5565b6040516020818303038152906040525b9150505b919050565b611bf8612051565b73ffffffffffffffffffffffffffffffffffffffff16611c166113d3565b73ffffffffffffffffffffffffffffffffffffffff1614611c6c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c6390613a7f565b60405180910390fd5b8173ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015611cb2573d6000803e3d6000fd5b505050565b611cbf612051565b73ffffffffffffffffffffffffffffffffffffffff16611cdd6113d3565b73ffffffffffffffffffffffffffffffffffffffff1614611d33576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d2a90613a7f565b60405180910390fd5b80600e9080519060200190611d49929190613158565b5050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611de9612051565b73ffffffffffffffffffffffffffffffffffffffff16611e076113d3565b73ffffffffffffffffffffffffffffffffffffffff1614611e5d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e5490613a7f565b60405180910390fd5b8060129080519060200190611e73929190613158565b5050565b611e7f612051565b73ffffffffffffffffffffffffffffffffffffffff16611e9d6113d3565b73ffffffffffffffffffffffffffffffffffffffff1614611ef3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611eea90613a7f565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611f63576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f5a90614688565b60405180910390fd5b611f6c816125c9565b50565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061203a57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061204a5750612049826128fc565b5b9050919050565b600033905090565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16612138836111e1565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600061218982612059565b6121c8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121bf9061471a565b60405180910390fd5b60006121d3836111e1565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061224257508373ffffffffffffffffffffffffffffffffffffffff1661222a84610a9b565b73ffffffffffffffffffffffffffffffffffffffff16145b8061225357506122528185611d4d565b5b91505092915050565b6000612267826111e1565b905061227581600084612966565b6122806000836120c5565b6001600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546122d0919061473a565b925050819055506002600083815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff021916905581600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b8273ffffffffffffffffffffffffffffffffffffffff1661238d826111e1565b73ffffffffffffffffffffffffffffffffffffffff16146123e3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123da906147e0565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612453576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161244a90614872565b60405180910390fd5b61245e838383612966565b6124696000826120c5565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546124b9919061473a565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461251091906142e9565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6126a9828260405180602001604052806000815250612a7a565b5050565b6126b884848461236d565b6126c484848484612ad5565b612703576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126fa90614904565b60405180910390fd5b50505050565b6060600d805461271890613ace565b80601f016020809104026020016040519081016040528092919081815260200182805461274490613ace565b80156127915780601f1061276657610100808354040283529160200191612791565b820191906000526020600020905b81548152906001019060200180831161277457829003601f168201915b5050505050905090565b606060008214156127e3576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506128f7565b600082905060005b600082146128155780806127fe90613eca565b915050600a8261280e9190613f9c565b91506127eb565b60008167ffffffffffffffff8111156128315761283061369d565b5b6040519080825280601f01601f1916602001820160405280156128635781602001600182028036833780820191505090505b5090505b600085146128f05760018261287c919061473a565b9150600a8561288b9190614924565b603061289791906142e9565b60f81b8183815181106128ad576128ac613e6c565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856128e99190613f9c565b9450612867565b8093505050505b919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b612971838383612c6c565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156129b4576129af81612c71565b6129f3565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16146129f2576129f18382612cba565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612a3657612a3181612e27565b612a75565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614612a7457612a738282612ef8565b5b5b505050565b612a848383612f77565b612a916000848484612ad5565b612ad0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ac790614904565b60405180910390fd5b505050565b6000612af68473ffffffffffffffffffffffffffffffffffffffff16613145565b15612c5f578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612b1f612051565b8786866040518563ffffffff1660e01b8152600401612b4194939291906149aa565b602060405180830381600087803b158015612b5b57600080fd5b505af1925050508015612b8c57506040513d601f19601f82011682018060405250810190612b899190614a0b565b60015b612c0f573d8060008114612bbc576040519150601f19603f3d011682016040523d82523d6000602084013e612bc1565b606091505b50600081511415612c07576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612bfe90614904565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612c64565b600190505b949350505050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b60006001612cc784611293565b612cd1919061473a565b9050600060076000848152602001908152602001600020549050818114612db6576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b60006001600880549050612e3b919061473a565b9050600060096000848152602001908152602001600020549050600060088381548110612e6b57612e6a613e6c565b5b906000526020600020015490508060088381548110612e8d57612e8c613e6c565b5b906000526020600020018190555081600960008381526020019081526020016000208190555060096000858152602001908152602001600020600090556008805480612edc57612edb614a38565b5b6001900381819060005260206000200160009055905550505050565b6000612f0383611293565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612fe7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612fde90614ab3565b60405180910390fd5b612ff081612059565b15613030576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161302790614b1f565b60405180910390fd5b61303c60008383612966565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461308c91906142e9565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b82805461316490613ace565b90600052602060002090601f01602090048101928261318657600085556131cd565b82601f1061319f57805160ff19168380011785556131cd565b828001600101855582156131cd579182015b828111156131cc5782518255916020019190600101906131b1565b5b5090506131da91906131de565b5090565b5b808211156131f75760008160009055506001016131df565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6132448161320f565b811461324f57600080fd5b50565b6000813590506132618161323b565b92915050565b60006020828403121561327d5761327c613205565b5b600061328b84828501613252565b91505092915050565b60008115159050919050565b6132a981613294565b82525050565b60006020820190506132c460008301846132a0565b92915050565b6132d381613294565b81146132de57600080fd5b50565b6000813590506132f0816132ca565b92915050565b60006020828403121561330c5761330b613205565b5b600061331a848285016132e1565b91505092915050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561335d578082015181840152602081019050613342565b8381111561336c576000848401525b50505050565b6000601f19601f8301169050919050565b600061338e82613323565b613398818561332e565b93506133a881856020860161333f565b6133b181613372565b840191505092915050565b600060208201905081810360008301526133d68184613383565b905092915050565b6000819050919050565b6133f1816133de565b81146133fc57600080fd5b50565b60008135905061340e816133e8565b92915050565b60006020828403121561342a57613429613205565b5b6000613438848285016133ff565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061346c82613441565b9050919050565b61347c81613461565b82525050565b60006020820190506134976000830184613473565b92915050565b6134a681613461565b81146134b157600080fd5b50565b6000813590506134c38161349d565b92915050565b600080604083850312156134e0576134df613205565b5b60006134ee858286016134b4565b92505060206134ff858286016133ff565b9150509250929050565b613512816133de565b82525050565b600060208201905061352d6000830184613509565b92915050565b60008060006060848603121561354c5761354b613205565b5b600061355a868287016134b4565b935050602061356b868287016134b4565b925050604061357c868287016133ff565b9150509250925092565b60006020828403121561359c5761359b613205565b5b60006135aa848285016134b4565b91505092915050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b6135e8816133de565b82525050565b60006135fa83836135df565b60208301905092915050565b6000602082019050919050565b600061361e826135b3565b61362881856135be565b9350613633836135cf565b8060005b8381101561366457815161364b88826135ee565b975061365683613606565b925050600181019050613637565b5085935050505092915050565b6000602082019050818103600083015261368b8184613613565b905092915050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6136d582613372565b810181811067ffffffffffffffff821117156136f4576136f361369d565b5b80604052505050565b60006137076131fb565b905061371382826136cc565b919050565b600067ffffffffffffffff8211156137335761373261369d565b5b61373c82613372565b9050602081019050919050565b82818337600083830152505050565b600061376b61376684613718565b6136fd565b90508281526020810184848401111561378757613786613698565b5b613792848285613749565b509392505050565b600082601f8301126137af576137ae613693565b5b81356137bf848260208601613758565b91505092915050565b6000602082840312156137de576137dd613205565b5b600082013567ffffffffffffffff8111156137fc576137fb61320a565b5b6138088482850161379a565b91505092915050565b6000806040838503121561382857613827613205565b5b6000613836858286016134b4565b9250506020613847858286016132e1565b9150509250929050565b600067ffffffffffffffff82111561386c5761386b61369d565b5b61387582613372565b9050602081019050919050565b600061389561389084613851565b6136fd565b9050828152602081018484840111156138b1576138b0613698565b5b6138bc848285613749565b509392505050565b600082601f8301126138d9576138d8613693565b5b81356138e9848260208601613882565b91505092915050565b6000806000806080858703121561390c5761390b613205565b5b600061391a878288016134b4565b945050602061392b878288016134b4565b935050604061393c878288016133ff565b925050606085013567ffffffffffffffff81111561395d5761395c61320a565b5b613969878288016138c4565b91505092959194509250565b600061398082613441565b9050919050565b61399081613975565b811461399b57600080fd5b50565b6000813590506139ad81613987565b92915050565b600080604083850312156139ca576139c9613205565b5b60006139d88582860161399e565b92505060206139e9858286016133ff565b9150509250929050565b60008060408385031215613a0a57613a09613205565b5b6000613a18858286016134b4565b9250506020613a29858286016134b4565b9150509250929050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000613a6960208361332e565b9150613a7482613a33565b602082019050919050565b60006020820190508181036000830152613a9881613a5c565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680613ae657607f821691505b60208210811415613afa57613af9613a9f565b5b50919050565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b6000613b5c602c8361332e565b9150613b6782613b00565b604082019050919050565b60006020820190508181036000830152613b8b81613b4f565b9050919050565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b6000613bee60218361332e565b9150613bf982613b92565b604082019050919050565b60006020820190508181036000830152613c1d81613be1565b9050919050565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b6000613c8060388361332e565b9150613c8b82613c24565b604082019050919050565b60006020820190508181036000830152613caf81613c73565b9050919050565b7f596f75206d757374206f776e20616e204e46542066726f6d207468697320636f60008201527f6c6c656374696f6e000000000000000000000000000000000000000000000000602082015250565b6000613d1260288361332e565b9150613d1d82613cb6565b604082019050919050565b60006020820190508181036000830152613d4181613d05565b9050919050565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b6000613da460318361332e565b9150613daf82613d48565b604082019050919050565b60006020820190508181036000830152613dd381613d97565b9050919050565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b6000613e36602b8361332e565b9150613e4182613dda565b604082019050919050565b60006020820190508181036000830152613e6581613e29565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000613ed5826133de565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613f0857613f07613e9b565b5b600182019050919050565b6000613f1e826133de565b9150613f29836133de565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613f6257613f61613e9b565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000613fa7826133de565b9150613fb2836133de565b925082613fc257613fc1613f6d565b5b828204905092915050565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b6000614029602c8361332e565b915061403482613fcd565b604082019050919050565b600060208201905081810360008301526140588161401c565b9050919050565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b60006140bb60298361332e565b91506140c68261405f565b604082019050919050565b600060208201905081810360008301526140ea816140ae565b9050919050565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b600061414d602a8361332e565b9150614158826140f1565b604082019050919050565b6000602082019050818103600083015261417c81614140565b9050919050565b600081519050614192816133e8565b92915050565b6000602082840312156141ae576141ad613205565b5b60006141bc84828501614183565b91505092915050565b7f746f20627579204e465420796f75206e65656420313020444d4420696e20796f60008201527f7572206164647265737300000000000000000000000000000000000000000000602082015250565b6000614221602a8361332e565b915061422c826141c5565b604082019050919050565b6000602082019050818103600083015261425081614214565b9050919050565b7f43616e206f6e6c79206d696e74206265747765656e203120616e64203520746f60008201527f6b656e73206174206f6e63650000000000000000000000000000000000000000602082015250565b60006142b3602c8361332e565b91506142be82614257565b604082019050919050565b600060208201905081810360008301526142e2816142a6565b9050919050565b60006142f4826133de565b91506142ff836133de565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561433457614333613e9b565b5b828201905092915050565b7f43616e2774206d696e74206d6f7265207468616e206d617820737570706c7900600082015250565b6000614375601f8361332e565b91506143808261433f565b602082019050919050565b600060208201905081810360008301526143a481614368565b9050919050565b7f57726f6e6720616d6f756e74206f662046544d2073656e740000000000000000600082015250565b60006143e160188361332e565b91506143ec826143ab565b602082019050919050565b60006020820190508181036000830152614410816143d4565b9050919050565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b600061444d60198361332e565b915061445882614417565b602082019050919050565b6000602082019050818103600083015261447c81614440565b9050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b60006144df602f8361332e565b91506144ea82614483565b604082019050919050565b6000602082019050818103600083015261450e816144d2565b9050919050565b600081905092915050565b600061452b82613323565b6145358185614515565b935061454581856020860161333f565b80840191505092915050565b60008190508160005260206000209050919050565b6000815461457381613ace565b61457d8186614515565b9450600182166000811461459857600181146145a9576145dc565b60ff198316865281860193506145dc565b6145b285614551565b60005b838110156145d4578154818901526001820191506020810190506145b5565b838801955050505b50505092915050565b60006145f18286614520565b91506145fd8285614520565b91506146098284614566565b9150819050949350505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b600061467260268361332e565b915061467d82614616565b604082019050919050565b600060208201905081810360008301526146a181614665565b9050919050565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b6000614704602c8361332e565b915061470f826146a8565b604082019050919050565b60006020820190508181036000830152614733816146f7565b9050919050565b6000614745826133de565b9150614750836133de565b92508282101561476357614762613e9b565b5b828203905092915050565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b60006147ca60298361332e565b91506147d58261476e565b604082019050919050565b600060208201905081810360008301526147f9816147bd565b9050919050565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b600061485c60248361332e565b915061486782614800565b604082019050919050565b6000602082019050818103600083015261488b8161484f565b9050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b60006148ee60328361332e565b91506148f982614892565b604082019050919050565b6000602082019050818103600083015261491d816148e1565b9050919050565b600061492f826133de565b915061493a836133de565b92508261494a57614949613f6d565b5b828206905092915050565b600081519050919050565b600082825260208201905092915050565b600061497c82614955565b6149868185614960565b935061499681856020860161333f565b61499f81613372565b840191505092915050565b60006080820190506149bf6000830187613473565b6149cc6020830186613473565b6149d96040830185613509565b81810360608301526149eb8184614971565b905095945050505050565b600081519050614a058161323b565b92915050565b600060208284031215614a2157614a20613205565b5b6000614a2f848285016149f6565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b6000614a9d60208361332e565b9150614aa882614a67565b602082019050919050565b60006020820190508181036000830152614acc81614a90565b9050919050565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b6000614b09601c8361332e565b9150614b1482614ad3565b602082019050919050565b60006020820190508181036000830152614b3881614afc565b905091905056fea264697066735822122018139244c78b991a01be38df169b78fa1899c47b9a2d433d205a97032af359ab64736f6c63430008090033000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000018000000000000000000000000000000000000000000000000000000000000000086578616d706c653200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000086578616d706c6532000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004f68747470733a2f2f646d642e6d7970696e6174612e636c6f75642f697066732f516d5763724b5a39754d34323965366577466b453777354a4d4c47395353554e754a374d484c573438767576634c2f00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000

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

000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000018000000000000000000000000000000000000000000000000000000000000000086578616d706c653200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000086578616d706c6532000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004f68747470733a2f2f646d642e6d7970696e6174612e636c6f75642f697066732f516d5763724b5a39754d34323965366577466b453777354a4d4c47395353554e754a374d484c573438767576634c2f00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : _name (string): example2
Arg [1] : _symbol (string): example2
Arg [2] : _initBaseURI (string): https://dmd.mypinata.cloud/ipfs/QmWcrKZ9uM429e6ewFkE7w5JMLG9SSUNuJ7MHLW48vuvcL/
Arg [3] : _initNotRevealedUri (string):

-----Encoded View---------------
13 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000c0
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000100
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000180
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000008
Arg [5] : 6578616d706c6532000000000000000000000000000000000000000000000000
Arg [6] : 0000000000000000000000000000000000000000000000000000000000000008
Arg [7] : 6578616d706c6532000000000000000000000000000000000000000000000000
Arg [8] : 000000000000000000000000000000000000000000000000000000000000004f
Arg [9] : 68747470733a2f2f646d642e6d7970696e6174612e636c6f75642f697066732f
Arg [10] : 516d5763724b5a39754d34323965366577466b453777354a4d4c47395353554e
Arg [11] : 754a374d484c573438767576634c2f0000000000000000000000000000000000
Arg [12] : 0000000000000000000000000000000000000000000000000000000000000000


Deployed ByteCode Sourcemap

47964:4275:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39185:300;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51561:79;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;26349:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28042:308;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48490:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27565:411;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;51648:187;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;39988:113;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29101:376;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;39569:343;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48336:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29548:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;49753:390;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51843:158;;;;;;;;;;;;;:::i;:::-;;40178:320;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48455:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50884:68;;;;;;;;;;;;;:::i;:::-;;51290:104;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;48423:25;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25956:326;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25599:295;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47263:94;;;;;;;;;;;;;:::i;:::-;;46612:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48373:43;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51058:90;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;48047:17;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26518:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48295:34;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48987:758;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;28422:327;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;29804:365;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;50978:72;;;;;;;;;;;;;:::i;:::-;;48251:37;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50151:725;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;52058:141;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;51402:151;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;28820:214;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51156:126;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;47512:229;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;39185:300;39332:4;39389:35;39374:50;;;:11;:50;;;;:103;;;;39441:36;39465:11;39441:23;:36::i;:::-;39374:103;39354:123;;39185:300;;;:::o;51561:79::-;46843:12;:10;:12::i;:::-;46832:23;;:7;:5;:7::i;:::-;:23;;;46824:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;51626:6:::1;51617;;:15;;;;;;;;;;;;;;;;;;51561:79:::0;:::o;26349:100::-;26403:13;26436:5;26429:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26349:100;:::o;28042:308::-;28163:7;28210:16;28218:7;28210;:16::i;:::-;28188:110;;;;;;;;;;;;:::i;:::-;;;;;;;;;28318:15;:24;28334:7;28318:24;;;;;;;;;;;;;;;;;;;;;28311:31;;28042:308;;;:::o;48490:28::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;27565:411::-;27646:13;27662:23;27677:7;27662:14;:23::i;:::-;27646:39;;27710:5;27704:11;;:2;:11;;;;27696:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;27804:5;27788:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;27813:37;27830:5;27837:12;:10;:12::i;:::-;27813:16;:37::i;:::-;27788:62;27766:168;;;;;;;;;;;;:::i;:::-;;;;;;;;;27947:21;27956:2;27960:7;27947:8;:21::i;:::-;27635:341;27565:411;;:::o;51648:187::-;51716:41;51735:12;:10;:12::i;:::-;51749:7;51716:18;:41::i;:::-;51708:94;;;;;;;;;;;;:::i;:::-;;;;;;;;;51813:14;51819:7;51813:5;:14::i;:::-;51648:187;:::o;39988:113::-;40049:7;40076:10;:17;;;;40069:24;;39988:113;:::o;29101:376::-;29310:41;29329:12;:10;:12::i;:::-;29343:7;29310:18;:41::i;:::-;29288:140;;;;;;;;;;;;:::i;:::-;;;;;;;;;29441:28;29451:4;29457:2;29461:7;29441:9;:28::i;:::-;29101:376;;;:::o;39569:343::-;39711:7;39766:23;39783:5;39766:16;:23::i;:::-;39758:5;:31;39736:124;;;;;;;;;;;;:::i;:::-;;;;;;;;;39878:12;:19;39891:5;39878:19;;;;;;;;;;;;;;;:26;39898:5;39878:26;;;;;;;;;;;;39871:33;;39569:343;;;;:::o;48336:30::-;;;;:::o;29548:185::-;29686:39;29703:4;29709:2;29713:7;29686:39;;;;;;;;;;;;:16;:39::i;:::-;29548:185;;;:::o;49753:390::-;49840:16;49874:23;49900:17;49910:6;49900:9;:17::i;:::-;49874:43;;49928:25;49970:15;49956:30;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49928:58;;50002:9;49997:113;50017:15;50013:1;:19;49997:113;;;50068:30;50088:6;50096:1;50068:19;:30::i;:::-;50054:8;50063:1;50054:11;;;;;;;;:::i;:::-;;;;;;;:44;;;;;50034:3;;;;;:::i;:::-;;;;49997:113;;;;50127:8;50120:15;;;;49753:390;;;:::o;51843:158::-;46843:12;:10;:12::i;:::-;46832:23;;:7;:5;:7::i;:::-;:23;;;46824:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;51892:13:::1;51941:3;51934::::0;51910:21:::1;:27;;;;:::i;:::-;51909:35;;;;:::i;:::-;51892:53;;51964:12;;;;;;;;;;;51956:30;;:37;51987:5;51956:37;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;51881:120;51843:158::o:0;40178:320::-;40298:7;40353:30;:28;:30::i;:::-;40345:5;:38;40323:132;;;;;;;;;;;;:::i;:::-;;;;;;;;;40473:10;40484:5;40473:17;;;;;;;;:::i;:::-;;;;;;;;;;40466:24;;40178:320;;;:::o;48455:28::-;;;;;;;;;;;;;:::o;50884:68::-;46843:12;:10;:12::i;:::-;46832:23;;:7;:5;:7::i;:::-;:23;;;46824:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;50939:5:::1;;;;;;;;;;;50938:6;50930:5;;:14;;;;;;;;;;;;;;;;;;50884:68::o:0;51290:104::-;46843:12;:10;:12::i;:::-;46832:23;;:7;:5;:7::i;:::-;:23;;;46824:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;51375:11:::1;51365:7;:21;;;;;;;;;;;;:::i;:::-;;51290:104:::0;:::o;48423:25::-;;;;;;;;;;;;;:::o;25956:326::-;26073:7;26098:13;26114:7;:16;26122:7;26114:16;;;;;;;;;;;;;;;;;;;;;26098:32;;26180:1;26163:19;;:5;:19;;;;26141:110;;;;;;;;;;;;:::i;:::-;;;;;;;;;26269:5;26262:12;;;25956:326;;;:::o;25599:295::-;25716:7;25780:1;25763:19;;:5;:19;;;;25741:111;;;;;;;;;;;;:::i;:::-;;;;;;;;;25870:9;:16;25880:5;25870:16;;;;;;;;;;;;;;;;25863:23;;25599:295;;;:::o;47263:94::-;46843:12;:10;:12::i;:::-;46832:23;;:7;:5;:7::i;:::-;:23;;;46824:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;47328:21:::1;47346:1;47328:9;:21::i;:::-;47263:94::o:0;46612:87::-;46658:7;46685:6;;;;;;;;;;;46678:13;;46612:87;:::o;48373:43::-;48415:1;48373:43;:::o;51058:90::-;46843:12;:10;:12::i;:::-;46832:23;;:7;:5;:7::i;:::-;:23;;;46824:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;51131:9:::1;51123:5;:17;;;;51058:90:::0;:::o;48047:17::-;;;;;;;;;;;;;:::o;26518:104::-;26574:13;26607:7;26600:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26518:104;:::o;48295:34::-;;;;:::o;48987:758::-;49044:14;49061:13;:11;:13::i;:::-;49044:30;;49098:4;49089:13;;:5;;;;;;;;;;;:13;;;49085:170;;;49171:6;49143:3;;;;;;;;;;;:13;;;49157:10;49143:25;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:34;49117:138;;;;;;;;;;;;:::i;:::-;;;;;;;;;49085:170;49275:6;;;;;;;;;;;49274:7;49266:16;;;;;;49325:1;49315:7;:11;:41;;;;;48415:1;49330:7;:26;;49315:41;49293:135;;;;;;;;;;;;:::i;:::-;;;;;;;;;49481:10;;49470:7;49461:6;:16;;;;:::i;:::-;:30;;49439:111;;;;;;;;;;;;:::i;:::-;;;;;;;;;49590:7;49582:5;;:15;;;;:::i;:::-;49569:9;:28;49561:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;49644:9;49656:1;49644:13;;49639:99;49664:7;49659:1;:12;49639:99;;49693:33;49703:10;49724:1;49715:6;:10;;;;:::i;:::-;49693:9;:33::i;:::-;49673:3;;;;;:::i;:::-;;;;49639:99;;;;49033:712;48987:758;:::o;28422:327::-;28569:12;:10;:12::i;:::-;28557:24;;:8;:24;;;;28549:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;28669:8;28624:18;:32;28643:12;:10;:12::i;:::-;28624:32;;;;;;;;;;;;;;;:42;28657:8;28624:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;28722:8;28693:48;;28708:12;:10;:12::i;:::-;28693:48;;;28732:8;28693:48;;;;;;:::i;:::-;;;;;;;;28422:327;;:::o;29804:365::-;29993:41;30012:12;:10;:12::i;:::-;30026:7;29993:18;:41::i;:::-;29971:140;;;;;;;;;;;;:::i;:::-;;;;;;;;;30122:39;30136:4;30142:2;30146:7;30155:5;30122:13;:39::i;:::-;29804:365;;;;:::o;50978:72::-;46843:12;:10;:12::i;:::-;46832:23;;:7;:5;:7::i;:::-;:23;;;46824:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;51038:4:::1;51027:8;;:15;;;;;;;;;;;;;;;;;;50978:72::o:0;48251:37::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;50151:725::-;50269:13;50322:16;50330:7;50322;:16::i;:::-;50300:113;;;;;;;;;;;;:::i;:::-;;;;;;;;;50442:5;50430:17;;:8;;;;;;;;;;;:17;;;50426:71;;;50471:14;50464:21;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50426:71;50509:28;50540:10;:8;:10::i;:::-;50509:41;;50612:1;50587:14;50581:28;:32;:287;;;;;;;;;;;;;;;;;50705:14;50746:18;:7;:16;:18::i;:::-;50791:13;50662:165;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;50581:287;50561:307;;;50151:725;;;;:::o;52058:141::-;46843:12;:10;:12::i;:::-;46832:23;;:7;:5;:7::i;:::-;:23;;;46824:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;52170:3:::1;:12;;:21;52183:7;52170:21;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;52058:141:::0;;:::o;51402:151::-;46843:12;:10;:12::i;:::-;46832:23;;:7;:5;:7::i;:::-;:23;;;46824:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;51528:17:::1;51512:13;:33;;;;;;;;;;;;:::i;:::-;;51402:151:::0;:::o;28820:214::-;28962:4;28991:18;:25;29010:5;28991:25;;;;;;;;;;;;;;;:35;29017:8;28991:35;;;;;;;;;;;;;;;;;;;;;;;;;28984:42;;28820:214;;;;:::o;51156:126::-;46843:12;:10;:12::i;:::-;46832:23;;:7;:5;:7::i;:::-;:23;;;46824:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;51259:15:::1;51242:14;:32;;;;;;;;;;;;:::i;:::-;;51156:126:::0;:::o;47512:229::-;46843:12;:10;:12::i;:::-;46832:23;;:7;:5;:7::i;:::-;:23;;;46824:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;47635:1:::1;47615:22;;:8;:22;;;;47593:110;;;;;;;;;;;;:::i;:::-;;;;;;;;;47714:19;47724:8;47714:9;:19::i;:::-;47512:229:::0;:::o;25180:355::-;25327:4;25384:25;25369:40;;;:11;:40;;;;:105;;;;25441:33;25426:48;;;:11;:48;;;;25369:105;:158;;;;25491:36;25515:11;25491:23;:36::i;:::-;25369:158;25349:178;;25180:355;;;:::o;23654:98::-;23707:7;23734:10;23727:17;;23654:98;:::o;31716:127::-;31781:4;31833:1;31805:30;;:7;:16;31813:7;31805:16;;;;;;;;;;;;;;;;;;;;;:30;;;;31798:37;;31716:127;;;:::o;35839:174::-;35941:2;35914:15;:24;35930:7;35914:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;35997:7;35993:2;35959:46;;35968:23;35983:7;35968:14;:23::i;:::-;35959:46;;;;;;;;;;;;35839:174;;:::o;32010:452::-;32139:4;32183:16;32191:7;32183;:16::i;:::-;32161:110;;;;;;;;;;;;:::i;:::-;;;;;;;;;32282:13;32298:23;32313:7;32298:14;:23::i;:::-;32282:39;;32351:5;32340:16;;:7;:16;;;:64;;;;32397:7;32373:31;;:20;32385:7;32373:11;:20::i;:::-;:31;;;32340:64;:113;;;;32421:32;32438:5;32445:7;32421:16;:32::i;:::-;32340:113;32332:122;;;32010:452;;;;:::o;34409:360::-;34469:13;34485:23;34500:7;34485:14;:23::i;:::-;34469:39;;34521:48;34542:5;34557:1;34561:7;34521:20;:48::i;:::-;34610:29;34627:1;34631:7;34610:8;:29::i;:::-;34672:1;34652:9;:16;34662:5;34652:16;;;;;;;;;;;;;;;;:21;;;;;;;:::i;:::-;;;;;;;;34691:7;:16;34699:7;34691:16;;;;;;;;;;;;34684:23;;;;;;;;;;;34753:7;34749:1;34725:36;;34734:5;34725:36;;;;;;;;;;;;34458:311;34409:360;:::o;35106:615::-;35279:4;35252:31;;:23;35267:7;35252:14;:23::i;:::-;:31;;;35230:122;;;;;;;;;;;;:::i;:::-;;;;;;;;;35385:1;35371:16;;:2;:16;;;;35363:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;35441:39;35462:4;35468:2;35472:7;35441:20;:39::i;:::-;35545:29;35562:1;35566:7;35545:8;:29::i;:::-;35606:1;35587:9;:15;35597:4;35587:15;;;;;;;;;;;;;;;;:20;;;;;;;:::i;:::-;;;;;;;;35635:1;35618:9;:13;35628:2;35618:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;35666:2;35647:7;:16;35655:7;35647:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;35705:7;35701:2;35686:27;;35695:4;35686:27;;;;;;;;;;;;35106:615;;;:::o;47749:173::-;47805:16;47824:6;;;;;;;;;;;47805:25;;47850:8;47841:6;;:17;;;;;;;;;;;;;;;;;;47905:8;47874:40;;47895:8;47874:40;;;;;;;;;;;;47794:128;47749:173;:::o;32804:110::-;32880:26;32890:2;32894:7;32880:26;;;;;;;;;;;;:9;:26::i;:::-;32804:110;;:::o;31051:352::-;31208:28;31218:4;31224:2;31228:7;31208:9;:28::i;:::-;31269:48;31292:4;31298:2;31302:7;31311:5;31269:22;:48::i;:::-;31247:148;;;;;;;;;;;;:::i;:::-;;;;;;;;;31051:352;;;;:::o;48856:108::-;48916:13;48949:7;48942:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48856:108;:::o;10999:723::-;11055:13;11285:1;11276:5;:10;11272:53;;;11303:10;;;;;;;;;;;;;;;;;;;;;11272:53;11335:12;11350:5;11335:20;;11366:14;11391:78;11406:1;11398:4;:9;11391:78;;11424:8;;;;;:::i;:::-;;;;11455:2;11447:10;;;;;:::i;:::-;;;11391:78;;;11479:19;11511:6;11501:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11479:39;;11529:154;11545:1;11536:5;:10;11529:154;;11573:1;11563:11;;;;;:::i;:::-;;;11640:2;11632:5;:10;;;;:::i;:::-;11619:2;:24;;;;:::i;:::-;11606:39;;11589:6;11596;11589:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;11669:2;11660:11;;;;;:::i;:::-;;;11529:154;;;11707:6;11693:21;;;;;10999:723;;;;:::o;10478:207::-;10608:4;10652:25;10637:40;;;:11;:40;;;;10630:47;;10478:207;;;:::o;41111:589::-;41255:45;41282:4;41288:2;41292:7;41255:26;:45::i;:::-;41333:1;41317:18;;:4;:18;;;41313:187;;;41352:40;41384:7;41352:31;:40::i;:::-;41313:187;;;41422:2;41414:10;;:4;:10;;;41410:90;;41441:47;41474:4;41480:7;41441:32;:47::i;:::-;41410:90;41313:187;41528:1;41514:16;;:2;:16;;;41510:183;;;41547:45;41584:7;41547:36;:45::i;:::-;41510:183;;;41620:4;41614:10;;:2;:10;;;41610:83;;41641:40;41669:2;41673:7;41641:27;:40::i;:::-;41610:83;41510:183;41111:589;;;:::o;33141:321::-;33271:18;33277:2;33281:7;33271:5;:18::i;:::-;33322:54;33353:1;33357:2;33361:7;33370:5;33322:22;:54::i;:::-;33300:154;;;;;;;;;;;;:::i;:::-;;;;;;;;;33141:321;;;:::o;36578:980::-;36733:4;36754:15;:2;:13;;;:15::i;:::-;36750:801;;;36823:2;36807:36;;;36866:12;:10;:12::i;:::-;36901:4;36928:7;36958:5;36807:175;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;36786:710;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37182:1;37165:6;:13;:18;37161:320;;;37208:108;;;;;;;;;;:::i;:::-;;;;;;;;37161:320;37431:6;37425:13;37416:6;37412:2;37408:15;37401:38;36786:710;37056:41;;;37046:51;;;:6;:51;;;;37039:58;;;;;36750:801;37535:4;37528:11;;36578:980;;;;;;;:::o;38130:126::-;;;;:::o;42423:164::-;42527:10;:17;;;;42500:15;:24;42516:7;42500:24;;;;;;;;;;;:44;;;;42555:10;42571:7;42555:24;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42423:164;:::o;43214:1002::-;43494:22;43544:1;43519:22;43536:4;43519:16;:22::i;:::-;:26;;;;:::i;:::-;43494:51;;43556:18;43577:17;:26;43595:7;43577:26;;;;;;;;;;;;43556:47;;43724:14;43710:10;:28;43706:328;;43755:19;43777:12;:18;43790:4;43777:18;;;;;;;;;;;;;;;:34;43796:14;43777:34;;;;;;;;;;;;43755:56;;43861:11;43828:12;:18;43841:4;43828:18;;;;;;;;;;;;;;;:30;43847:10;43828:30;;;;;;;;;;;:44;;;;43978:10;43945:17;:30;43963:11;43945:30;;;;;;;;;;;:43;;;;43740:294;43706:328;44130:17;:26;44148:7;44130:26;;;;;;;;;;;44123:33;;;44174:12;:18;44187:4;44174:18;;;;;;;;;;;;;;;:34;44193:14;44174:34;;;;;;;;;;;44167:41;;;43309:907;;43214:1002;;:::o;44511:1079::-;44764:22;44809:1;44789:10;:17;;;;:21;;;;:::i;:::-;44764:46;;44821:18;44842:15;:24;44858:7;44842:24;;;;;;;;;;;;44821:45;;45193:19;45215:10;45226:14;45215:26;;;;;;;;:::i;:::-;;;;;;;;;;45193:48;;45279:11;45254:10;45265;45254:22;;;;;;;;:::i;:::-;;;;;;;;;:36;;;;45390:10;45359:15;:28;45375:11;45359:28;;;;;;;;;;;:41;;;;45531:15;:24;45547:7;45531:24;;;;;;;;;;;45524:31;;;45566:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;44582:1008;;;44511:1079;:::o;42001:221::-;42086:14;42103:20;42120:2;42103:16;:20::i;:::-;42086:37;;42161:7;42134:12;:16;42147:2;42134:16;;;;;;;;;;;;;;;:24;42151:6;42134:24;;;;;;;;;;;:34;;;;42208:6;42179:17;:26;42197:7;42179:26;;;;;;;;;;;:35;;;;42075:147;42001:221;;:::o;33798:382::-;33892:1;33878:16;;:2;:16;;;;33870:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;33951:16;33959:7;33951;:16::i;:::-;33950:17;33942:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;34013:45;34042:1;34046:2;34050:7;34013:20;:45::i;:::-;34088:1;34071:9;:13;34081:2;34071:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;34119:2;34100:7;:16;34108:7;34100:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;34164:7;34160:2;34139:33;;34156:1;34139:33;;;;;;;;;;;;33798:382;;:::o;13552:387::-;13612:4;13820:12;13887:7;13875:20;13867:28;;13930:1;13923:4;:8;13916:15;;;13552:387;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:75:1:-;40:6;73:2;67:9;57:19;;7:75;:::o;88:117::-;197:1;194;187:12;211:117;320:1;317;310:12;334:149;370:7;410:66;403:5;399:78;388:89;;334:149;;;:::o;489:120::-;561:23;578:5;561:23;:::i;:::-;554:5;551:34;541:62;;599:1;596;589:12;541:62;489:120;:::o;615:137::-;660:5;698:6;685:20;676:29;;714:32;740:5;714:32;:::i;:::-;615:137;;;;:::o;758:327::-;816:6;865:2;853:9;844:7;840:23;836:32;833:119;;;871:79;;:::i;:::-;833:119;991:1;1016:52;1060:7;1051:6;1040:9;1036:22;1016:52;:::i;:::-;1006:62;;962:116;758:327;;;;:::o;1091:90::-;1125:7;1168:5;1161:13;1154:21;1143:32;;1091:90;;;:::o;1187:109::-;1268:21;1283:5;1268:21;:::i;:::-;1263:3;1256:34;1187:109;;:::o;1302:210::-;1389:4;1427:2;1416:9;1412:18;1404:26;;1440:65;1502:1;1491:9;1487:17;1478:6;1440:65;:::i;:::-;1302:210;;;;:::o;1518:116::-;1588:21;1603:5;1588:21;:::i;:::-;1581:5;1578:32;1568:60;;1624:1;1621;1614:12;1568:60;1518:116;:::o;1640:133::-;1683:5;1721:6;1708:20;1699:29;;1737:30;1761:5;1737:30;:::i;:::-;1640:133;;;;:::o;1779:323::-;1835:6;1884:2;1872:9;1863:7;1859:23;1855:32;1852:119;;;1890:79;;:::i;:::-;1852:119;2010:1;2035:50;2077:7;2068:6;2057:9;2053:22;2035:50;:::i;:::-;2025:60;;1981:114;1779:323;;;;:::o;2108:99::-;2160:6;2194:5;2188:12;2178:22;;2108:99;;;:::o;2213:169::-;2297:11;2331:6;2326:3;2319:19;2371:4;2366:3;2362:14;2347:29;;2213:169;;;;:::o;2388:307::-;2456:1;2466:113;2480:6;2477:1;2474:13;2466:113;;;2565:1;2560:3;2556:11;2550:18;2546:1;2541:3;2537:11;2530:39;2502:2;2499:1;2495:10;2490:15;;2466:113;;;2597:6;2594:1;2591:13;2588:101;;;2677:1;2668:6;2663:3;2659:16;2652:27;2588:101;2437:258;2388:307;;;:::o;2701:102::-;2742:6;2793:2;2789:7;2784:2;2777:5;2773:14;2769:28;2759:38;;2701:102;;;:::o;2809:364::-;2897:3;2925:39;2958:5;2925:39;:::i;:::-;2980:71;3044:6;3039:3;2980:71;:::i;:::-;2973:78;;3060:52;3105:6;3100:3;3093:4;3086:5;3082:16;3060:52;:::i;:::-;3137:29;3159:6;3137:29;:::i;:::-;3132:3;3128:39;3121:46;;2901:272;2809:364;;;;:::o;3179:313::-;3292:4;3330:2;3319:9;3315:18;3307:26;;3379:9;3373:4;3369:20;3365:1;3354:9;3350:17;3343:47;3407:78;3480:4;3471:6;3407:78;:::i;:::-;3399:86;;3179:313;;;;:::o;3498:77::-;3535:7;3564:5;3553:16;;3498:77;;;:::o;3581:122::-;3654:24;3672:5;3654:24;:::i;:::-;3647:5;3644:35;3634:63;;3693:1;3690;3683:12;3634:63;3581:122;:::o;3709:139::-;3755:5;3793:6;3780:20;3771:29;;3809:33;3836:5;3809:33;:::i;:::-;3709:139;;;;:::o;3854:329::-;3913:6;3962:2;3950:9;3941:7;3937:23;3933:32;3930:119;;;3968:79;;:::i;:::-;3930:119;4088:1;4113:53;4158:7;4149:6;4138:9;4134:22;4113:53;:::i;:::-;4103:63;;4059:117;3854:329;;;;:::o;4189:126::-;4226:7;4266:42;4259:5;4255:54;4244:65;;4189:126;;;:::o;4321:96::-;4358:7;4387:24;4405:5;4387:24;:::i;:::-;4376:35;;4321:96;;;:::o;4423:118::-;4510:24;4528:5;4510:24;:::i;:::-;4505:3;4498:37;4423:118;;:::o;4547:222::-;4640:4;4678:2;4667:9;4663:18;4655:26;;4691:71;4759:1;4748:9;4744:17;4735:6;4691:71;:::i;:::-;4547:222;;;;:::o;4775:122::-;4848:24;4866:5;4848:24;:::i;:::-;4841:5;4838:35;4828:63;;4887:1;4884;4877:12;4828:63;4775:122;:::o;4903:139::-;4949:5;4987:6;4974:20;4965:29;;5003:33;5030:5;5003:33;:::i;:::-;4903:139;;;;:::o;5048:474::-;5116:6;5124;5173:2;5161:9;5152:7;5148:23;5144:32;5141:119;;;5179:79;;:::i;:::-;5141:119;5299:1;5324:53;5369:7;5360:6;5349:9;5345:22;5324:53;:::i;:::-;5314:63;;5270:117;5426:2;5452:53;5497:7;5488:6;5477:9;5473:22;5452:53;:::i;:::-;5442:63;;5397:118;5048:474;;;;;:::o;5528:118::-;5615:24;5633:5;5615:24;:::i;:::-;5610:3;5603:37;5528:118;;:::o;5652:222::-;5745:4;5783:2;5772:9;5768:18;5760:26;;5796:71;5864:1;5853:9;5849:17;5840:6;5796:71;:::i;:::-;5652:222;;;;:::o;5880:619::-;5957:6;5965;5973;6022:2;6010:9;6001:7;5997:23;5993:32;5990:119;;;6028:79;;:::i;:::-;5990:119;6148:1;6173:53;6218:7;6209:6;6198:9;6194:22;6173:53;:::i;:::-;6163:63;;6119:117;6275:2;6301:53;6346:7;6337:6;6326:9;6322:22;6301:53;:::i;:::-;6291:63;;6246:118;6403:2;6429:53;6474:7;6465:6;6454:9;6450:22;6429:53;:::i;:::-;6419:63;;6374:118;5880:619;;;;;:::o;6505:329::-;6564:6;6613:2;6601:9;6592:7;6588:23;6584:32;6581:119;;;6619:79;;:::i;:::-;6581:119;6739:1;6764:53;6809:7;6800:6;6789:9;6785:22;6764:53;:::i;:::-;6754:63;;6710:117;6505:329;;;;:::o;6840:114::-;6907:6;6941:5;6935:12;6925:22;;6840:114;;;:::o;6960:184::-;7059:11;7093:6;7088:3;7081:19;7133:4;7128:3;7124:14;7109:29;;6960:184;;;;:::o;7150:132::-;7217:4;7240:3;7232:11;;7270:4;7265:3;7261:14;7253:22;;7150:132;;;:::o;7288:108::-;7365:24;7383:5;7365:24;:::i;:::-;7360:3;7353:37;7288:108;;:::o;7402:179::-;7471:10;7492:46;7534:3;7526:6;7492:46;:::i;:::-;7570:4;7565:3;7561:14;7547:28;;7402:179;;;;:::o;7587:113::-;7657:4;7689;7684:3;7680:14;7672:22;;7587:113;;;:::o;7736:732::-;7855:3;7884:54;7932:5;7884:54;:::i;:::-;7954:86;8033:6;8028:3;7954:86;:::i;:::-;7947:93;;8064:56;8114:5;8064:56;:::i;:::-;8143:7;8174:1;8159:284;8184:6;8181:1;8178:13;8159:284;;;8260:6;8254:13;8287:63;8346:3;8331:13;8287:63;:::i;:::-;8280:70;;8373:60;8426:6;8373:60;:::i;:::-;8363:70;;8219:224;8206:1;8203;8199:9;8194:14;;8159:284;;;8163:14;8459:3;8452:10;;7860:608;;;7736:732;;;;:::o;8474:373::-;8617:4;8655:2;8644:9;8640:18;8632:26;;8704:9;8698:4;8694:20;8690:1;8679:9;8675:17;8668:47;8732:108;8835:4;8826:6;8732:108;:::i;:::-;8724:116;;8474:373;;;;:::o;8853:117::-;8962:1;8959;8952:12;8976:117;9085:1;9082;9075:12;9099:180;9147:77;9144:1;9137:88;9244:4;9241:1;9234:15;9268:4;9265:1;9258:15;9285:281;9368:27;9390:4;9368:27;:::i;:::-;9360:6;9356:40;9498:6;9486:10;9483:22;9462:18;9450:10;9447:34;9444:62;9441:88;;;9509:18;;:::i;:::-;9441:88;9549:10;9545:2;9538:22;9328:238;9285:281;;:::o;9572:129::-;9606:6;9633:20;;:::i;:::-;9623:30;;9662:33;9690:4;9682:6;9662:33;:::i;:::-;9572:129;;;:::o;9707:308::-;9769:4;9859:18;9851:6;9848:30;9845:56;;;9881:18;;:::i;:::-;9845:56;9919:29;9941:6;9919:29;:::i;:::-;9911:37;;10003:4;9997;9993:15;9985:23;;9707:308;;;:::o;10021:154::-;10105:6;10100:3;10095;10082:30;10167:1;10158:6;10153:3;10149:16;10142:27;10021:154;;;:::o;10181:412::-;10259:5;10284:66;10300:49;10342:6;10300:49;:::i;:::-;10284:66;:::i;:::-;10275:75;;10373:6;10366:5;10359:21;10411:4;10404:5;10400:16;10449:3;10440:6;10435:3;10431:16;10428:25;10425:112;;;10456:79;;:::i;:::-;10425:112;10546:41;10580:6;10575:3;10570;10546:41;:::i;:::-;10265:328;10181:412;;;;;:::o;10613:340::-;10669:5;10718:3;10711:4;10703:6;10699:17;10695:27;10685:122;;10726:79;;:::i;:::-;10685:122;10843:6;10830:20;10868:79;10943:3;10935:6;10928:4;10920:6;10916:17;10868:79;:::i;:::-;10859:88;;10675:278;10613:340;;;;:::o;10959:509::-;11028:6;11077:2;11065:9;11056:7;11052:23;11048:32;11045:119;;;11083:79;;:::i;:::-;11045:119;11231:1;11220:9;11216:17;11203:31;11261:18;11253:6;11250:30;11247:117;;;11283:79;;:::i;:::-;11247:117;11388:63;11443:7;11434:6;11423:9;11419:22;11388:63;:::i;:::-;11378:73;;11174:287;10959:509;;;;:::o;11474:468::-;11539:6;11547;11596:2;11584:9;11575:7;11571:23;11567:32;11564:119;;;11602:79;;:::i;:::-;11564:119;11722:1;11747:53;11792:7;11783:6;11772:9;11768:22;11747:53;:::i;:::-;11737:63;;11693:117;11849:2;11875:50;11917:7;11908:6;11897:9;11893:22;11875:50;:::i;:::-;11865:60;;11820:115;11474:468;;;;;:::o;11948:307::-;12009:4;12099:18;12091:6;12088:30;12085:56;;;12121:18;;:::i;:::-;12085:56;12159:29;12181:6;12159:29;:::i;:::-;12151:37;;12243:4;12237;12233:15;12225:23;;11948:307;;;:::o;12261:410::-;12338:5;12363:65;12379:48;12420:6;12379:48;:::i;:::-;12363:65;:::i;:::-;12354:74;;12451:6;12444:5;12437:21;12489:4;12482:5;12478:16;12527:3;12518:6;12513:3;12509:16;12506:25;12503:112;;;12534:79;;:::i;:::-;12503:112;12624:41;12658:6;12653:3;12648;12624:41;:::i;:::-;12344:327;12261:410;;;;;:::o;12690:338::-;12745:5;12794:3;12787:4;12779:6;12775:17;12771:27;12761:122;;12802:79;;:::i;:::-;12761:122;12919:6;12906:20;12944:78;13018:3;13010:6;13003:4;12995:6;12991:17;12944:78;:::i;:::-;12935:87;;12751:277;12690:338;;;;:::o;13034:943::-;13129:6;13137;13145;13153;13202:3;13190:9;13181:7;13177:23;13173:33;13170:120;;;13209:79;;:::i;:::-;13170:120;13329:1;13354:53;13399:7;13390:6;13379:9;13375:22;13354:53;:::i;:::-;13344:63;;13300:117;13456:2;13482:53;13527:7;13518:6;13507:9;13503:22;13482:53;:::i;:::-;13472:63;;13427:118;13584:2;13610:53;13655:7;13646:6;13635:9;13631:22;13610:53;:::i;:::-;13600:63;;13555:118;13740:2;13729:9;13725:18;13712:32;13771:18;13763:6;13760:30;13757:117;;;13793:79;;:::i;:::-;13757:117;13898:62;13952:7;13943:6;13932:9;13928:22;13898:62;:::i;:::-;13888:72;;13683:287;13034:943;;;;;;;:::o;13983:104::-;14028:7;14057:24;14075:5;14057:24;:::i;:::-;14046:35;;13983:104;;;:::o;14093:138::-;14174:32;14200:5;14174:32;:::i;:::-;14167:5;14164:43;14154:71;;14221:1;14218;14211:12;14154:71;14093:138;:::o;14237:155::-;14291:5;14329:6;14316:20;14307:29;;14345:41;14380:5;14345:41;:::i;:::-;14237:155;;;;:::o;14398:490::-;14474:6;14482;14531:2;14519:9;14510:7;14506:23;14502:32;14499:119;;;14537:79;;:::i;:::-;14499:119;14657:1;14682:61;14735:7;14726:6;14715:9;14711:22;14682:61;:::i;:::-;14672:71;;14628:125;14792:2;14818:53;14863:7;14854:6;14843:9;14839:22;14818:53;:::i;:::-;14808:63;;14763:118;14398:490;;;;;:::o;14894:474::-;14962:6;14970;15019:2;15007:9;14998:7;14994:23;14990:32;14987:119;;;15025:79;;:::i;:::-;14987:119;15145:1;15170:53;15215:7;15206:6;15195:9;15191:22;15170:53;:::i;:::-;15160:63;;15116:117;15272:2;15298:53;15343:7;15334:6;15323:9;15319:22;15298:53;:::i;:::-;15288:63;;15243:118;14894:474;;;;;:::o;15374:182::-;15514:34;15510:1;15502:6;15498:14;15491:58;15374:182;:::o;15562:366::-;15704:3;15725:67;15789:2;15784:3;15725:67;:::i;:::-;15718:74;;15801:93;15890:3;15801:93;:::i;:::-;15919:2;15914:3;15910:12;15903:19;;15562:366;;;:::o;15934:419::-;16100:4;16138:2;16127:9;16123:18;16115:26;;16187:9;16181:4;16177:20;16173:1;16162:9;16158:17;16151:47;16215:131;16341:4;16215:131;:::i;:::-;16207:139;;15934:419;;;:::o;16359:180::-;16407:77;16404:1;16397:88;16504:4;16501:1;16494:15;16528:4;16525:1;16518:15;16545:320;16589:6;16626:1;16620:4;16616:12;16606:22;;16673:1;16667:4;16663:12;16694:18;16684:81;;16750:4;16742:6;16738:17;16728:27;;16684:81;16812:2;16804:6;16801:14;16781:18;16778:38;16775:84;;;16831:18;;:::i;:::-;16775:84;16596:269;16545:320;;;:::o;16871:231::-;17011:34;17007:1;16999:6;16995:14;16988:58;17080:14;17075:2;17067:6;17063:15;17056:39;16871:231;:::o;17108:366::-;17250:3;17271:67;17335:2;17330:3;17271:67;:::i;:::-;17264:74;;17347:93;17436:3;17347:93;:::i;:::-;17465:2;17460:3;17456:12;17449:19;;17108:366;;;:::o;17480:419::-;17646:4;17684:2;17673:9;17669:18;17661:26;;17733:9;17727:4;17723:20;17719:1;17708:9;17704:17;17697:47;17761:131;17887:4;17761:131;:::i;:::-;17753:139;;17480:419;;;:::o;17905:220::-;18045:34;18041:1;18033:6;18029:14;18022:58;18114:3;18109:2;18101:6;18097:15;18090:28;17905:220;:::o;18131:366::-;18273:3;18294:67;18358:2;18353:3;18294:67;:::i;:::-;18287:74;;18370:93;18459:3;18370:93;:::i;:::-;18488:2;18483:3;18479:12;18472:19;;18131:366;;;:::o;18503:419::-;18669:4;18707:2;18696:9;18692:18;18684:26;;18756:9;18750:4;18746:20;18742:1;18731:9;18727:17;18720:47;18784:131;18910:4;18784:131;:::i;:::-;18776:139;;18503:419;;;:::o;18928:243::-;19068:34;19064:1;19056:6;19052:14;19045:58;19137:26;19132:2;19124:6;19120:15;19113:51;18928:243;:::o;19177:366::-;19319:3;19340:67;19404:2;19399:3;19340:67;:::i;:::-;19333:74;;19416:93;19505:3;19416:93;:::i;:::-;19534:2;19529:3;19525:12;19518:19;;19177:366;;;:::o;19549:419::-;19715:4;19753:2;19742:9;19738:18;19730:26;;19802:9;19796:4;19792:20;19788:1;19777:9;19773:17;19766:47;19830:131;19956:4;19830:131;:::i;:::-;19822:139;;19549:419;;;:::o;19974:227::-;20114:34;20110:1;20102:6;20098:14;20091:58;20183:10;20178:2;20170:6;20166:15;20159:35;19974:227;:::o;20207:366::-;20349:3;20370:67;20434:2;20429:3;20370:67;:::i;:::-;20363:74;;20446:93;20535:3;20446:93;:::i;:::-;20564:2;20559:3;20555:12;20548:19;;20207:366;;;:::o;20579:419::-;20745:4;20783:2;20772:9;20768:18;20760:26;;20832:9;20826:4;20822:20;20818:1;20807:9;20803:17;20796:47;20860:131;20986:4;20860:131;:::i;:::-;20852:139;;20579:419;;;:::o;21004:236::-;21144:34;21140:1;21132:6;21128:14;21121:58;21213:19;21208:2;21200:6;21196:15;21189:44;21004:236;:::o;21246:366::-;21388:3;21409:67;21473:2;21468:3;21409:67;:::i;:::-;21402:74;;21485:93;21574:3;21485:93;:::i;:::-;21603:2;21598:3;21594:12;21587:19;;21246:366;;;:::o;21618:419::-;21784:4;21822:2;21811:9;21807:18;21799:26;;21871:9;21865:4;21861:20;21857:1;21846:9;21842:17;21835:47;21899:131;22025:4;21899:131;:::i;:::-;21891:139;;21618:419;;;:::o;22043:230::-;22183:34;22179:1;22171:6;22167:14;22160:58;22252:13;22247:2;22239:6;22235:15;22228:38;22043:230;:::o;22279:366::-;22421:3;22442:67;22506:2;22501:3;22442:67;:::i;:::-;22435:74;;22518:93;22607:3;22518:93;:::i;:::-;22636:2;22631:3;22627:12;22620:19;;22279:366;;;:::o;22651:419::-;22817:4;22855:2;22844:9;22840:18;22832:26;;22904:9;22898:4;22894:20;22890:1;22879:9;22875:17;22868:47;22932:131;23058:4;22932:131;:::i;:::-;22924:139;;22651:419;;;:::o;23076:180::-;23124:77;23121:1;23114:88;23221:4;23218:1;23211:15;23245:4;23242:1;23235:15;23262:180;23310:77;23307:1;23300:88;23407:4;23404:1;23397:15;23431:4;23428:1;23421:15;23448:233;23487:3;23510:24;23528:5;23510:24;:::i;:::-;23501:33;;23556:66;23549:5;23546:77;23543:103;;;23626:18;;:::i;:::-;23543:103;23673:1;23666:5;23662:13;23655:20;;23448:233;;;:::o;23687:348::-;23727:7;23750:20;23768:1;23750:20;:::i;:::-;23745:25;;23784:20;23802:1;23784:20;:::i;:::-;23779:25;;23972:1;23904:66;23900:74;23897:1;23894:81;23889:1;23882:9;23875:17;23871:105;23868:131;;;23979:18;;:::i;:::-;23868:131;24027:1;24024;24020:9;24009:20;;23687:348;;;;:::o;24041:180::-;24089:77;24086:1;24079:88;24186:4;24183:1;24176:15;24210:4;24207:1;24200:15;24227:185;24267:1;24284:20;24302:1;24284:20;:::i;:::-;24279:25;;24318:20;24336:1;24318:20;:::i;:::-;24313:25;;24357:1;24347:35;;24362:18;;:::i;:::-;24347:35;24404:1;24401;24397:9;24392:14;;24227:185;;;;:::o;24418:231::-;24558:34;24554:1;24546:6;24542:14;24535:58;24627:14;24622:2;24614:6;24610:15;24603:39;24418:231;:::o;24655:366::-;24797:3;24818:67;24882:2;24877:3;24818:67;:::i;:::-;24811:74;;24894:93;24983:3;24894:93;:::i;:::-;25012:2;25007:3;25003:12;24996:19;;24655:366;;;:::o;25027:419::-;25193:4;25231:2;25220:9;25216:18;25208:26;;25280:9;25274:4;25270:20;25266:1;25255:9;25251:17;25244:47;25308:131;25434:4;25308:131;:::i;:::-;25300:139;;25027:419;;;:::o;25452:228::-;25592:34;25588:1;25580:6;25576:14;25569:58;25661:11;25656:2;25648:6;25644:15;25637:36;25452:228;:::o;25686:366::-;25828:3;25849:67;25913:2;25908:3;25849:67;:::i;:::-;25842:74;;25925:93;26014:3;25925:93;:::i;:::-;26043:2;26038:3;26034:12;26027:19;;25686:366;;;:::o;26058:419::-;26224:4;26262:2;26251:9;26247:18;26239:26;;26311:9;26305:4;26301:20;26297:1;26286:9;26282:17;26275:47;26339:131;26465:4;26339:131;:::i;:::-;26331:139;;26058:419;;;:::o;26483:229::-;26623:34;26619:1;26611:6;26607:14;26600:58;26692:12;26687:2;26679:6;26675:15;26668:37;26483:229;:::o;26718:366::-;26860:3;26881:67;26945:2;26940:3;26881:67;:::i;:::-;26874:74;;26957:93;27046:3;26957:93;:::i;:::-;27075:2;27070:3;27066:12;27059:19;;26718:366;;;:::o;27090:419::-;27256:4;27294:2;27283:9;27279:18;27271:26;;27343:9;27337:4;27333:20;27329:1;27318:9;27314:17;27307:47;27371:131;27497:4;27371:131;:::i;:::-;27363:139;;27090:419;;;:::o;27515:143::-;27572:5;27603:6;27597:13;27588:22;;27619:33;27646:5;27619:33;:::i;:::-;27515:143;;;;:::o;27664:351::-;27734:6;27783:2;27771:9;27762:7;27758:23;27754:32;27751:119;;;27789:79;;:::i;:::-;27751:119;27909:1;27934:64;27990:7;27981:6;27970:9;27966:22;27934:64;:::i;:::-;27924:74;;27880:128;27664:351;;;;:::o;28021:229::-;28161:34;28157:1;28149:6;28145:14;28138:58;28230:12;28225:2;28217:6;28213:15;28206:37;28021:229;:::o;28256:366::-;28398:3;28419:67;28483:2;28478:3;28419:67;:::i;:::-;28412:74;;28495:93;28584:3;28495:93;:::i;:::-;28613:2;28608:3;28604:12;28597:19;;28256:366;;;:::o;28628:419::-;28794:4;28832:2;28821:9;28817:18;28809:26;;28881:9;28875:4;28871:20;28867:1;28856:9;28852:17;28845:47;28909:131;29035:4;28909:131;:::i;:::-;28901:139;;28628:419;;;:::o;29053:231::-;29193:34;29189:1;29181:6;29177:14;29170:58;29262:14;29257:2;29249:6;29245:15;29238:39;29053:231;:::o;29290:366::-;29432:3;29453:67;29517:2;29512:3;29453:67;:::i;:::-;29446:74;;29529:93;29618:3;29529:93;:::i;:::-;29647:2;29642:3;29638:12;29631:19;;29290:366;;;:::o;29662:419::-;29828:4;29866:2;29855:9;29851:18;29843:26;;29915:9;29909:4;29905:20;29901:1;29890:9;29886:17;29879:47;29943:131;30069:4;29943:131;:::i;:::-;29935:139;;29662:419;;;:::o;30087:305::-;30127:3;30146:20;30164:1;30146:20;:::i;:::-;30141:25;;30180:20;30198:1;30180:20;:::i;:::-;30175:25;;30334:1;30266:66;30262:74;30259:1;30256:81;30253:107;;;30340:18;;:::i;:::-;30253:107;30384:1;30381;30377:9;30370:16;;30087:305;;;;:::o;30398:181::-;30538:33;30534:1;30526:6;30522:14;30515:57;30398:181;:::o;30585:366::-;30727:3;30748:67;30812:2;30807:3;30748:67;:::i;:::-;30741:74;;30824:93;30913:3;30824:93;:::i;:::-;30942:2;30937:3;30933:12;30926:19;;30585:366;;;:::o;30957:419::-;31123:4;31161:2;31150:9;31146:18;31138:26;;31210:9;31204:4;31200:20;31196:1;31185:9;31181:17;31174:47;31238:131;31364:4;31238:131;:::i;:::-;31230:139;;30957:419;;;:::o;31382:174::-;31522:26;31518:1;31510:6;31506:14;31499:50;31382:174;:::o;31562:366::-;31704:3;31725:67;31789:2;31784:3;31725:67;:::i;:::-;31718:74;;31801:93;31890:3;31801:93;:::i;:::-;31919:2;31914:3;31910:12;31903:19;;31562:366;;;:::o;31934:419::-;32100:4;32138:2;32127:9;32123:18;32115:26;;32187:9;32181:4;32177:20;32173:1;32162:9;32158:17;32151:47;32215:131;32341:4;32215:131;:::i;:::-;32207:139;;31934:419;;;:::o;32359:175::-;32499:27;32495:1;32487:6;32483:14;32476:51;32359:175;:::o;32540:366::-;32682:3;32703:67;32767:2;32762:3;32703:67;:::i;:::-;32696:74;;32779:93;32868:3;32779:93;:::i;:::-;32897:2;32892:3;32888:12;32881:19;;32540:366;;;:::o;32912:419::-;33078:4;33116:2;33105:9;33101:18;33093:26;;33165:9;33159:4;33155:20;33151:1;33140:9;33136:17;33129:47;33193:131;33319:4;33193:131;:::i;:::-;33185:139;;32912:419;;;:::o;33337:234::-;33477:34;33473:1;33465:6;33461:14;33454:58;33546:17;33541:2;33533:6;33529:15;33522:42;33337:234;:::o;33577:366::-;33719:3;33740:67;33804:2;33799:3;33740:67;:::i;:::-;33733:74;;33816:93;33905:3;33816:93;:::i;:::-;33934:2;33929:3;33925:12;33918:19;;33577:366;;;:::o;33949:419::-;34115:4;34153:2;34142:9;34138:18;34130:26;;34202:9;34196:4;34192:20;34188:1;34177:9;34173:17;34166:47;34230:131;34356:4;34230:131;:::i;:::-;34222:139;;33949:419;;;:::o;34374:148::-;34476:11;34513:3;34498:18;;34374:148;;;;:::o;34528:377::-;34634:3;34662:39;34695:5;34662:39;:::i;:::-;34717:89;34799:6;34794:3;34717:89;:::i;:::-;34710:96;;34815:52;34860:6;34855:3;34848:4;34841:5;34837:16;34815:52;:::i;:::-;34892:6;34887:3;34883:16;34876:23;;34638:267;34528:377;;;;:::o;34911:141::-;34960:4;34983:3;34975:11;;35006:3;35003:1;34996:14;35040:4;35037:1;35027:18;35019:26;;34911:141;;;:::o;35082:845::-;35185:3;35222:5;35216:12;35251:36;35277:9;35251:36;:::i;:::-;35303:89;35385:6;35380:3;35303:89;:::i;:::-;35296:96;;35423:1;35412:9;35408:17;35439:1;35434:137;;;;35585:1;35580:341;;;;35401:520;;35434:137;35518:4;35514:9;35503;35499:25;35494:3;35487:38;35554:6;35549:3;35545:16;35538:23;;35434:137;;35580:341;35647:38;35679:5;35647:38;:::i;:::-;35707:1;35721:154;35735:6;35732:1;35729:13;35721:154;;;35809:7;35803:14;35799:1;35794:3;35790:11;35783:35;35859:1;35850:7;35846:15;35835:26;;35757:4;35754:1;35750:12;35745:17;;35721:154;;;35904:6;35899:3;35895:16;35888:23;;35587:334;;35401:520;;35189:738;;35082:845;;;;:::o;35933:589::-;36158:3;36180:95;36271:3;36262:6;36180:95;:::i;:::-;36173:102;;36292:95;36383:3;36374:6;36292:95;:::i;:::-;36285:102;;36404:92;36492:3;36483:6;36404:92;:::i;:::-;36397:99;;36513:3;36506:10;;35933:589;;;;;;:::o;36528:225::-;36668:34;36664:1;36656:6;36652:14;36645:58;36737:8;36732:2;36724:6;36720:15;36713:33;36528:225;:::o;36759:366::-;36901:3;36922:67;36986:2;36981:3;36922:67;:::i;:::-;36915:74;;36998:93;37087:3;36998:93;:::i;:::-;37116:2;37111:3;37107:12;37100:19;;36759:366;;;:::o;37131:419::-;37297:4;37335:2;37324:9;37320:18;37312:26;;37384:9;37378:4;37374:20;37370:1;37359:9;37355:17;37348:47;37412:131;37538:4;37412:131;:::i;:::-;37404:139;;37131:419;;;:::o;37556:231::-;37696:34;37692:1;37684:6;37680:14;37673:58;37765:14;37760:2;37752:6;37748:15;37741:39;37556:231;:::o;37793:366::-;37935:3;37956:67;38020:2;38015:3;37956:67;:::i;:::-;37949:74;;38032:93;38121:3;38032:93;:::i;:::-;38150:2;38145:3;38141:12;38134:19;;37793:366;;;:::o;38165:419::-;38331:4;38369:2;38358:9;38354:18;38346:26;;38418:9;38412:4;38408:20;38404:1;38393:9;38389:17;38382:47;38446:131;38572:4;38446:131;:::i;:::-;38438:139;;38165:419;;;:::o;38590:191::-;38630:4;38650:20;38668:1;38650:20;:::i;:::-;38645:25;;38684:20;38702:1;38684:20;:::i;:::-;38679:25;;38723:1;38720;38717:8;38714:34;;;38728:18;;:::i;:::-;38714:34;38773:1;38770;38766:9;38758:17;;38590:191;;;;:::o;38787:228::-;38927:34;38923:1;38915:6;38911:14;38904:58;38996:11;38991:2;38983:6;38979:15;38972:36;38787:228;:::o;39021:366::-;39163:3;39184:67;39248:2;39243:3;39184:67;:::i;:::-;39177:74;;39260:93;39349:3;39260:93;:::i;:::-;39378:2;39373:3;39369:12;39362:19;;39021:366;;;:::o;39393:419::-;39559:4;39597:2;39586:9;39582:18;39574:26;;39646:9;39640:4;39636:20;39632:1;39621:9;39617:17;39610:47;39674:131;39800:4;39674:131;:::i;:::-;39666:139;;39393:419;;;:::o;39818:223::-;39958:34;39954:1;39946:6;39942:14;39935:58;40027:6;40022:2;40014:6;40010:15;40003:31;39818:223;:::o;40047:366::-;40189:3;40210:67;40274:2;40269:3;40210:67;:::i;:::-;40203:74;;40286:93;40375:3;40286:93;:::i;:::-;40404:2;40399:3;40395:12;40388:19;;40047:366;;;:::o;40419:419::-;40585:4;40623:2;40612:9;40608:18;40600:26;;40672:9;40666:4;40662:20;40658:1;40647:9;40643:17;40636:47;40700:131;40826:4;40700:131;:::i;:::-;40692:139;;40419:419;;;:::o;40844:237::-;40984:34;40980:1;40972:6;40968:14;40961:58;41053:20;41048:2;41040:6;41036:15;41029:45;40844:237;:::o;41087:366::-;41229:3;41250:67;41314:2;41309:3;41250:67;:::i;:::-;41243:74;;41326:93;41415:3;41326:93;:::i;:::-;41444:2;41439:3;41435:12;41428:19;;41087:366;;;:::o;41459:419::-;41625:4;41663:2;41652:9;41648:18;41640:26;;41712:9;41706:4;41702:20;41698:1;41687:9;41683:17;41676:47;41740:131;41866:4;41740:131;:::i;:::-;41732:139;;41459:419;;;:::o;41884:176::-;41916:1;41933:20;41951:1;41933:20;:::i;:::-;41928:25;;41967:20;41985:1;41967:20;:::i;:::-;41962:25;;42006:1;41996:35;;42011:18;;:::i;:::-;41996:35;42052:1;42049;42045:9;42040:14;;41884:176;;;;:::o;42066:98::-;42117:6;42151:5;42145:12;42135:22;;42066:98;;;:::o;42170:168::-;42253:11;42287:6;42282:3;42275:19;42327:4;42322:3;42318:14;42303:29;;42170:168;;;;:::o;42344:360::-;42430:3;42458:38;42490:5;42458:38;:::i;:::-;42512:70;42575:6;42570:3;42512:70;:::i;:::-;42505:77;;42591:52;42636:6;42631:3;42624:4;42617:5;42613:16;42591:52;:::i;:::-;42668:29;42690:6;42668:29;:::i;:::-;42663:3;42659:39;42652:46;;42434:270;42344:360;;;;:::o;42710:640::-;42905:4;42943:3;42932:9;42928:19;42920:27;;42957:71;43025:1;43014:9;43010:17;43001:6;42957:71;:::i;:::-;43038:72;43106:2;43095:9;43091:18;43082:6;43038:72;:::i;:::-;43120;43188:2;43177:9;43173:18;43164:6;43120:72;:::i;:::-;43239:9;43233:4;43229:20;43224:2;43213:9;43209:18;43202:48;43267:76;43338:4;43329:6;43267:76;:::i;:::-;43259:84;;42710:640;;;;;;;:::o;43356:141::-;43412:5;43443:6;43437:13;43428:22;;43459:32;43485:5;43459:32;:::i;:::-;43356:141;;;;:::o;43503:349::-;43572:6;43621:2;43609:9;43600:7;43596:23;43592:32;43589:119;;;43627:79;;:::i;:::-;43589:119;43747:1;43772:63;43827:7;43818:6;43807:9;43803:22;43772:63;:::i;:::-;43762:73;;43718:127;43503:349;;;;:::o;43858:180::-;43906:77;43903:1;43896:88;44003:4;44000:1;43993:15;44027:4;44024:1;44017:15;44044:182;44184:34;44180:1;44172:6;44168:14;44161:58;44044:182;:::o;44232:366::-;44374:3;44395:67;44459:2;44454:3;44395:67;:::i;:::-;44388:74;;44471:93;44560:3;44471:93;:::i;:::-;44589:2;44584:3;44580:12;44573:19;;44232:366;;;:::o;44604:419::-;44770:4;44808:2;44797:9;44793:18;44785:26;;44857:9;44851:4;44847:20;44843:1;44832:9;44828:17;44821:47;44885:131;45011:4;44885:131;:::i;:::-;44877:139;;44604:419;;;:::o;45029:178::-;45169:30;45165:1;45157:6;45153:14;45146:54;45029:178;:::o;45213:366::-;45355:3;45376:67;45440:2;45435:3;45376:67;:::i;:::-;45369:74;;45452:93;45541:3;45452:93;:::i;:::-;45570:2;45565:3;45561:12;45554:19;;45213:366;;;:::o;45585:419::-;45751:4;45789:2;45778:9;45774:18;45766:26;;45838:9;45832:4;45828:20;45824:1;45813:9;45809:17;45802:47;45866:131;45992:4;45866:131;:::i;:::-;45858:139;;45585:419;;;:::o

Swarm Source

ipfs://18139244c78b991a01be38df169b78fa1899c47b9a2d433d205a97032af359ab
Loading