ETH Price: $2,487.04 (+1.97%)

Token

ManicMouseMillions (MANIC)
 

Overview

Max Total Supply

15 MANIC

Holders

10

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 MANIC
0x11f5776bacfdd43f53f2bfc1081b1e6496795063
Loading...
Loading
Loading...
Loading
Loading...
Loading

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

Contract Source Code Verified (Exact Match)

Contract Name:
ManicMouseMillions

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-05-06
*/

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

library Strings {
    bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef";

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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

// File: @openzeppelin/contracts/access/Ownable.sol


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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


// OpenZeppelin Contracts (last updated v4.5.0) (utils/Address.sol)

pragma solidity ^0.8.1;

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

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;


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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

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

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

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

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


// OpenZeppelin Contracts (last updated v4.5.0) (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);

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

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


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

pragma solidity ^0.8.0;


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

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

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

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


// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC721/ERC721.sol)

pragma solidity ^0.8.0;








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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public virtual override {
        _setApprovalForAll(_msgSender(), operator, approved);
    }

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

    /**
     * @dev See {IERC721-transferFrom}.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        //solhint-disable-next-line max-line-length
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved");

        _transfer(from, to, tokenId);
    }

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

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) public virtual override {
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved");
        _safeTransfer(from, to, tokenId, _data);
    }

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients
     * are aware of the ERC721 protocol to prevent tokens from being forever locked.
     *
     * `_data` is additional data, it has no specified format and it is sent in call to `to`.
     *
     * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g.
     * implement alternative mechanisms to perform token transfer, such as signature-based.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function _safeTransfer(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) internal virtual {
        _transfer(from, to, tokenId);
        require(_checkOnERC721Received(from, to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer");
    }

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

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

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

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

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

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

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

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

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

        _afterTokenTransfer(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 from incorrect owner");
        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);

        _afterTokenTransfer(from, to, tokenId);
    }

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

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

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

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

    /**
     * @dev Hook that is called after any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _afterTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {}
}

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


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

pragma solidity ^0.8.0;



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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// File: contracts/ManicMouseMillions.sol

/**
███╗   ███╗ █████╗ ███╗   ██╗██╗ ██████╗    ███╗   ███╗ ██████╗ ██╗   ██╗███████╗███████╗    ███╗   ███╗██╗██╗     ██╗     ██╗ ██████╗ ███╗   ██╗███████╗
████╗ ████║██╔══██╗████╗  ██║██║██╔════╝    ████╗ ████║██╔═══██╗██║   ██║██╔════╝██╔════╝    ████╗ ████║██║██║     ██║     ██║██╔═══██╗████╗  ██║██╔════╝
██╔████╔██║███████║██╔██╗ ██║██║██║         ██╔████╔██║██║   ██║██║   ██║███████╗█████╗      ██╔████╔██║██║██║     ██║     ██║██║   ██║██╔██╗ ██║███████╗
██║╚██╔╝██║██╔══██║██║╚██╗██║██║██║         ██║╚██╔╝██║██║   ██║██║   ██║╚════██║██╔══╝      ██║╚██╔╝██║██║██║     ██║     ██║██║   ██║██║╚██╗██║╚════██║
██║ ╚═╝ ██║██║  ██║██║ ╚████║██║╚██████╗    ██║ ╚═╝ ██║╚██████╔╝╚██████╔╝███████║███████╗    ██║ ╚═╝ ██║██║███████╗███████╗██║╚██████╔╝██║ ╚████║███████║
╚═╝     ╚═╝╚═╝  ╚═╝╚═╝  ╚═══╝╚═╝ ╚═════╝    ╚═╝     ╚═╝ ╚═════╝  ╚═════╝ ╚══════╝╚══════╝    ╚═╝     ╚═╝╚═╝╚══════╝╚══════╝╚═╝ ╚═════╝ ╚═╝  ╚═══╝╚══════╝                                                                                                                                                        
 */
pragma solidity >=0.7.0 <0.9.0;

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

  string baseURI;
  string public baseExtension = ".json";
  uint256 public cost = .1 ether;
  uint256 public maxSupply = 50;
  uint256 public headStart = block.timestamp + 0 days;
  bool public paused = false;
  bool public revealed = false;
  string public notRevealedUri;
 
  
  constructor(
    string memory _initBaseURI,
    string memory _initNotRevealedUri
  ) ERC721("ManicMouseMillions", "MANIC") {
    setBaseURI(_initBaseURI);
    setNotRevealedURI(_initNotRevealedUri);
  }

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

  // public
  function mint() public payable {
    uint256 supply = totalSupply();
    require(!paused, "Contract is paused!");
    require(supply + 1 <= maxSupply, "Max supply reached!");
    require(msg.sender != owner(), "Owner can not mint!");
    require(msg.value >= cost, "Not enough funds!");
    
    address payable giftAddress = payable(msg.sender);
    uint256 giftValue;
    
    if(supply > 0) {
        giftAddress = payable(ownerOf(randomNum(supply, block.timestamp, supply + 1) + 1));
        giftValue = supply + 1 == maxSupply ? address(this).balance * 40 / 100 : msg.value * 40 / 100;
    }
    
    _safeMint(msg.sender, supply + 1);

    if(supply > 0) {
        (bool success, ) = payable(giftAddress).call{value: giftValue}("");
        require(success, "Could not send value!");
    }
  }

  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 randomNum(uint256 _mod, uint256 _seed, uint256 _salt) public view returns(uint256) {
      uint256 num = uint256(keccak256(abi.encodePacked(block.timestamp, msg.sender, _seed, _salt))) % _mod;
      return num;
  }

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

  //only owner
  function reveal() public onlyOwner() {
      revealed = true;
  }
  
  function setCost(uint256 _newCost) public onlyOwner() {
    cost = _newCost;
  }

  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 withdraw() public payable onlyOwner {
    uint256 supply = totalSupply();
    require(supply == maxSupply || block.timestamp >= headStart, "Can not withdraw yet.");
    (bool d, ) = payable(0x86f2aD57b59bb5BE8091A0a5fDBecb168b63cA17).call{value: address(this).balance * 60 / 100}("");
    require(d);
    (bool s, ) = payable(msg.sender).call{value: address(this).balance}("");
    require(s);
  }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_initBaseURI","type":"string"},{"internalType":"string","name":"_initNotRevealedUri","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseExtension","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"cost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"headStart","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"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":[{"internalType":"uint256","name":"_mod","type":"uint256"},{"internalType":"uint256","name":"_seed","type":"uint256"},{"internalType":"uint256","name":"_salt","type":"uint256"}],"name":"randomNum","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"reveal","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":"uint256","name":"_newCost","type":"uint256"}],"name":"setCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_notRevealedURI","type":"string"}],"name":"setNotRevealedURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"walletOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"payable","type":"function"}]

60806040526040518060400160405280600581526020017f2e6a736f6e000000000000000000000000000000000000000000000000000000815250600c90805190602001906200005192919062000416565b5067016345785d8a0000600d556032600e5560004262000072919062000682565b600f556000601060006101000a81548160ff0219169083151502179055506000601060016101000a81548160ff021916908315150217905550348015620000b857600080fd5b50604051620052bc380380620052bc8339818101604052810190620000de919062000544565b6040518060400160405280601281526020017f4d616e69634d6f7573654d696c6c696f6e7300000000000000000000000000008152506040518060400160405280600581526020017f4d414e494300000000000000000000000000000000000000000000000000000081525081600090805190602001906200016292919062000416565b5080600190805190602001906200017b92919062000416565b5050506200019e62000192620001c860201b60201c565b620001d060201b60201c565b620001af826200029660201b60201c565b620001c0816200034160201b60201c565b505062000866565b600033905090565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b620002a6620001c860201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620002cc620003ec60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff161462000325576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200031c90620005f0565b60405180910390fd5b80600b90805190602001906200033d92919062000416565b5050565b62000351620001c860201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1662000377620003ec60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1614620003d0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620003c790620005f0565b60405180910390fd5b8060119080519060200190620003e892919062000416565b5050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b82805462000424906200071f565b90600052602060002090601f01602090048101928262000448576000855562000494565b82601f106200046357805160ff191683800117855562000494565b8280016001018555821562000494579182015b828111156200049357825182559160200191906001019062000476565b5b509050620004a39190620004a7565b5090565b5b80821115620004c2576000816000905550600101620004a8565b5090565b6000620004dd620004d7846200063b565b62000612565b905082815260208101848484011115620004fc57620004fb6200081d565b5b62000509848285620006e9565b509392505050565b600082601f83011262000529576200052862000818565b5b81516200053b848260208601620004c6565b91505092915050565b600080604083850312156200055e576200055d62000827565b5b600083015167ffffffffffffffff8111156200057f576200057e62000822565b5b6200058d8582860162000511565b925050602083015167ffffffffffffffff811115620005b157620005b062000822565b5b620005bf8582860162000511565b9150509250929050565b6000620005d860208362000671565b9150620005e5826200083d565b602082019050919050565b600060208201905081810360008301526200060b81620005c9565b9050919050565b60006200061e62000631565b90506200062c828262000755565b919050565b6000604051905090565b600067ffffffffffffffff821115620006595762000658620007e9565b5b62000664826200082c565b9050602081019050919050565b600082825260208201905092915050565b60006200068f82620006df565b91506200069c83620006df565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115620006d457620006d36200078b565b5b828201905092915050565b6000819050919050565b60005b8381101562000709578082015181840152602081019050620006ec565b8381111562000719576000848401525b50505050565b600060028204905060018216806200073857607f821691505b602082108114156200074f576200074e620007ba565b5b50919050565b62000760826200082c565b810181811067ffffffffffffffff82111715620007825762000781620007e9565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b614a4680620008766000396000f3fe60806040526004361061020f5760003560e01c806355f804b311610118578063b88d4fde116100a0578063da3ef23f1161006f578063da3ef23f14610771578063e985e9c51461079a578063f2c4ce1e146107d7578063f2fde38b14610800578063f55974ca146108295761020f565b8063b88d4fde146106b5578063c6682862146106de578063c87b56dd14610709578063d5abeb01146107465761020f565b8063715018a6116100e7578063715018a6146106085780638da5cb5b1461061f57806395d89b411461064a578063a22cb46514610675578063a475b5dd1461069e5761020f565b806355f804b31461053a5780635c975abb146105635780636352211e1461058e57806370a08231146105cb5761020f565b806323b872dd1161019b57806342842e0e1161016a57806342842e0e14610443578063438b63001461046c57806344a0d68a146104a95780634f6ccce7146104d2578063518302271461050f5761020f565b806323b872dd1461039657806328294640146103bf5780632f745c59146103fc5780633ccfd60b146104395761020f565b8063081c8c44116101e2578063081c8c44146102e2578063095ea7b31461030d5780631249c58b1461033657806313faede61461034057806318160ddd1461036b5761020f565b806301ffc9a71461021457806302329a291461025157806306fdde031461027a578063081812fc146102a5575b600080fd5b34801561022057600080fd5b5061023b6004803603810190610236919061337b565b610854565b6040516102489190613b28565b60405180910390f35b34801561025d57600080fd5b506102786004803603810190610273919061334e565b6108ce565b005b34801561028657600080fd5b5061028f610967565b60405161029c9190613b43565b60405180910390f35b3480156102b157600080fd5b506102cc60048036038101906102c7919061341e565b6109f9565b6040516102d99190613a9f565b60405180910390f35b3480156102ee57600080fd5b506102f7610a7e565b6040516103049190613b43565b60405180910390f35b34801561031957600080fd5b50610334600480360381019061032f919061330e565b610b0c565b005b61033e610c24565b005b34801561034c57600080fd5b50610355610eea565b6040516103629190613e65565b60405180910390f35b34801561037757600080fd5b50610380610ef0565b60405161038d9190613e65565b60405180910390f35b3480156103a257600080fd5b506103bd60048036038101906103b891906131f8565b610efd565b005b3480156103cb57600080fd5b506103e660048036038101906103e1919061344b565b610f5d565b6040516103f39190613e65565b60405180910390f35b34801561040857600080fd5b50610423600480360381019061041e919061330e565b610fa8565b6040516104309190613e65565b60405180910390f35b61044161104d565b005b34801561044f57600080fd5b5061046a600480360381019061046591906131f8565b611243565b005b34801561047857600080fd5b50610493600480360381019061048e919061318b565b611263565b6040516104a09190613b06565b60405180910390f35b3480156104b557600080fd5b506104d060048036038101906104cb919061341e565b611311565b005b3480156104de57600080fd5b506104f960048036038101906104f4919061341e565b611397565b6040516105069190613e65565b60405180910390f35b34801561051b57600080fd5b50610524611408565b6040516105319190613b28565b60405180910390f35b34801561054657600080fd5b50610561600480360381019061055c91906133d5565b61141b565b005b34801561056f57600080fd5b506105786114b1565b6040516105859190613b28565b60405180910390f35b34801561059a57600080fd5b506105b560048036038101906105b0919061341e565b6114c4565b6040516105c29190613a9f565b60405180910390f35b3480156105d757600080fd5b506105f260048036038101906105ed919061318b565b611576565b6040516105ff9190613e65565b60405180910390f35b34801561061457600080fd5b5061061d61162e565b005b34801561062b57600080fd5b506106346116b6565b6040516106419190613a9f565b60405180910390f35b34801561065657600080fd5b5061065f6116e0565b60405161066c9190613b43565b60405180910390f35b34801561068157600080fd5b5061069c600480360381019061069791906132ce565b611772565b005b3480156106aa57600080fd5b506106b3611788565b005b3480156106c157600080fd5b506106dc60048036038101906106d7919061324b565b611821565b005b3480156106ea57600080fd5b506106f3611883565b6040516107009190613b43565b60405180910390f35b34801561071557600080fd5b50610730600480360381019061072b919061341e565b611911565b60405161073d9190613b43565b60405180910390f35b34801561075257600080fd5b5061075b611a6a565b6040516107689190613e65565b60405180910390f35b34801561077d57600080fd5b50610798600480360381019061079391906133d5565b611a70565b005b3480156107a657600080fd5b506107c160048036038101906107bc91906131b8565b611b06565b6040516107ce9190613b28565b60405180910390f35b3480156107e357600080fd5b506107fe60048036038101906107f991906133d5565b611b9a565b005b34801561080c57600080fd5b506108276004803603810190610822919061318b565b611c30565b005b34801561083557600080fd5b5061083e611d28565b60405161084b9190613e65565b60405180910390f35b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806108c757506108c682611d2e565b5b9050919050565b6108d6611e10565b73ffffffffffffffffffffffffffffffffffffffff166108f46116b6565b73ffffffffffffffffffffffffffffffffffffffff161461094a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161094190613d65565b60405180910390fd5b80601060006101000a81548160ff02191690831515021790555050565b6060600080546109769061416e565b80601f01602080910402602001604051908101604052809291908181526020018280546109a29061416e565b80156109ef5780601f106109c4576101008083540402835291602001916109ef565b820191906000526020600020905b8154815290600101906020018083116109d257829003601f168201915b5050505050905090565b6000610a0482611e18565b610a43576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a3a90613d45565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60118054610a8b9061416e565b80601f0160208091040260200160405190810160405280929190818152602001828054610ab79061416e565b8015610b045780601f10610ad957610100808354040283529160200191610b04565b820191906000526020600020905b815481529060010190602001808311610ae757829003601f168201915b505050505081565b6000610b17826114c4565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610b88576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b7f90613de5565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610ba7611e10565b73ffffffffffffffffffffffffffffffffffffffff161480610bd65750610bd581610bd0611e10565b611b06565b5b610c15576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c0c90613ca5565b60405180910390fd5b610c1f8383611e84565b505050565b6000610c2e610ef0565b9050601060009054906101000a900460ff1615610c80576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c7790613c25565b60405180910390fd5b600e54600182610c909190613fa3565b1115610cd1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cc890613e25565b60405180910390fd5b610cd96116b6565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161415610d47576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d3e90613d05565b60405180910390fd5b600d54341015610d8c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d8390613dc5565b60405180910390fd5b6000339050600080831115610e1857610dc66001610db78542600188610db29190613fa3565b610f5d565b610dc19190613fa3565b6114c4565b9150600e54600184610dd89190613fa3565b14610dfb576064602834610dec919061402a565b610df69190613ff9565b610e15565b6064602847610e0a919061402a565b610e149190613ff9565b5b90505b610e2e33600185610e299190613fa3565b611f3d565b6000831115610ee55760008273ffffffffffffffffffffffffffffffffffffffff1682604051610e5d90613a3c565b60006040518083038185875af1925050503d8060008114610e9a576040519150601f19603f3d011682016040523d82523d6000602084013e610e9f565b606091505b5050905080610ee3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eda90613b65565b60405180910390fd5b505b505050565b600d5481565b6000600880549050905090565b610f0e610f08611e10565b82611f5b565b610f4d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f4490613e05565b60405180910390fd5b610f58838383612039565b505050565b6000808442338686604051602001610f789493929190613a51565b6040516020818303038152906040528051906020012060001c610f9b9190614248565b9050809150509392505050565b6000610fb383611576565b8210610ff4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610feb90613b85565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b611055611e10565b73ffffffffffffffffffffffffffffffffffffffff166110736116b6565b73ffffffffffffffffffffffffffffffffffffffff16146110c9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110c090613d65565b60405180910390fd5b60006110d3610ef0565b9050600e548114806110e75750600f544210155b611126576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161111d90613d85565b60405180910390fd5b60007386f2ad57b59bb5be8091a0a5fdbecb168b63ca1773ffffffffffffffffffffffffffffffffffffffff166064603c47611162919061402a565b61116c9190613ff9565b60405161117890613a3c565b60006040518083038185875af1925050503d80600081146111b5576040519150601f19603f3d011682016040523d82523d6000602084013e6111ba565b606091505b50509050806111c857600080fd5b60003373ffffffffffffffffffffffffffffffffffffffff16476040516111ee90613a3c565b60006040518083038185875af1925050503d806000811461122b576040519150601f19603f3d011682016040523d82523d6000602084013e611230565b606091505b505090508061123e57600080fd5b505050565b61125e83838360405180602001604052806000815250611821565b505050565b6060600061127083611576565b905060008167ffffffffffffffff81111561128e5761128d614364565b5b6040519080825280602002602001820160405280156112bc5781602001602082028036833780820191505090505b50905060005b82811015611306576112d48582610fa8565b8282815181106112e7576112e6614335565b5b60200260200101818152505080806112fe906141d1565b9150506112c2565b508092505050919050565b611319611e10565b73ffffffffffffffffffffffffffffffffffffffff166113376116b6565b73ffffffffffffffffffffffffffffffffffffffff161461138d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161138490613d65565b60405180910390fd5b80600d8190555050565b60006113a1610ef0565b82106113e2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113d990613e45565b60405180910390fd5b600882815481106113f6576113f5614335565b5b90600052602060002001549050919050565b601060019054906101000a900460ff1681565b611423611e10565b73ffffffffffffffffffffffffffffffffffffffff166114416116b6565b73ffffffffffffffffffffffffffffffffffffffff1614611497576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161148e90613d65565b60405180910390fd5b80600b90805190602001906114ad929190612f9f565b5050565b601060009054906101000a900460ff1681565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561156d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161156490613ce5565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156115e7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115de90613cc5565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611636611e10565b73ffffffffffffffffffffffffffffffffffffffff166116546116b6565b73ffffffffffffffffffffffffffffffffffffffff16146116aa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116a190613d65565b60405180910390fd5b6116b460006122a0565b565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600180546116ef9061416e565b80601f016020809104026020016040519081016040528092919081815260200182805461171b9061416e565b80156117685780601f1061173d57610100808354040283529160200191611768565b820191906000526020600020905b81548152906001019060200180831161174b57829003601f168201915b5050505050905090565b61178461177d611e10565b8383612366565b5050565b611790611e10565b73ffffffffffffffffffffffffffffffffffffffff166117ae6116b6565b73ffffffffffffffffffffffffffffffffffffffff1614611804576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117fb90613d65565b60405180910390fd5b6001601060016101000a81548160ff021916908315150217905550565b61183261182c611e10565b83611f5b565b611871576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161186890613e05565b60405180910390fd5b61187d848484846124d3565b50505050565b600c80546118909061416e565b80601f01602080910402602001604051908101604052809291908181526020018280546118bc9061416e565b80156119095780601f106118de57610100808354040283529160200191611909565b820191906000526020600020905b8154815290600101906020018083116118ec57829003601f168201915b505050505081565b606061191c82611e18565b61195b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161195290613da5565b60405180910390fd5b60001515601060019054906101000a900460ff1615151415611a0957601180546119849061416e565b80601f01602080910402602001604051908101604052809291908181526020018280546119b09061416e565b80156119fd5780601f106119d2576101008083540402835291602001916119fd565b820191906000526020600020905b8154815290600101906020018083116119e057829003601f168201915b50505050509050611a65565b6000611a1361252f565b90506000815111611a335760405180602001604052806000815250611a61565b80611a3d846125c1565b600c604051602001611a5193929190613a0b565b6040516020818303038152906040525b9150505b919050565b600e5481565b611a78611e10565b73ffffffffffffffffffffffffffffffffffffffff16611a966116b6565b73ffffffffffffffffffffffffffffffffffffffff1614611aec576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ae390613d65565b60405180910390fd5b80600c9080519060200190611b02929190612f9f565b5050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611ba2611e10565b73ffffffffffffffffffffffffffffffffffffffff16611bc06116b6565b73ffffffffffffffffffffffffffffffffffffffff1614611c16576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c0d90613d65565b60405180910390fd5b8060119080519060200190611c2c929190612f9f565b5050565b611c38611e10565b73ffffffffffffffffffffffffffffffffffffffff16611c566116b6565b73ffffffffffffffffffffffffffffffffffffffff1614611cac576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ca390613d65565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611d1c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d1390613bc5565b60405180910390fd5b611d25816122a0565b50565b600f5481565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480611df957507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80611e095750611e0882612722565b5b9050919050565b600033905090565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16611ef7836114c4565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b611f5782826040518060200160405280600081525061278c565b5050565b6000611f6682611e18565b611fa5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f9c90613c85565b60405180910390fd5b6000611fb0836114c4565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061201f57508373ffffffffffffffffffffffffffffffffffffffff16612007846109f9565b73ffffffffffffffffffffffffffffffffffffffff16145b80612030575061202f8185611b06565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16612059826114c4565b73ffffffffffffffffffffffffffffffffffffffff16146120af576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120a690613be5565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561211f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161211690613c45565b60405180910390fd5b61212a8383836127e7565b612135600082611e84565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546121859190614084565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546121dc9190613fa3565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461229b8383836128fb565b505050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156123d5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123cc90613c65565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516124c69190613b28565b60405180910390a3505050565b6124de848484612039565b6124ea84848484612900565b612529576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161252090613ba5565b60405180910390fd5b50505050565b6060600b805461253e9061416e565b80601f016020809104026020016040519081016040528092919081815260200182805461256a9061416e565b80156125b75780601f1061258c576101008083540402835291602001916125b7565b820191906000526020600020905b81548152906001019060200180831161259a57829003601f168201915b5050505050905090565b60606000821415612609576040518060400160405280600181526020017f3000000000000000000000000000000000000000000000000000000000000000815250905061271d565b600082905060005b6000821461263b578080612624906141d1565b915050600a826126349190613ff9565b9150612611565b60008167ffffffffffffffff81111561265757612656614364565b5b6040519080825280601f01601f1916602001820160405280156126895781602001600182028036833780820191505090505b5090505b60008514612716576001826126a29190614084565b9150600a856126b19190614248565b60306126bd9190613fa3565b60f81b8183815181106126d3576126d2614335565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561270f9190613ff9565b945061268d565b8093505050505b919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6127968383612a97565b6127a36000848484612900565b6127e2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127d990613ba5565b60405180910390fd5b505050565b6127f2838383612c71565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156128355761283081612c76565b612874565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614612873576128728382612cbf565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156128b7576128b281612e2c565b6128f6565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16146128f5576128f48282612efd565b5b5b505050565b505050565b60006129218473ffffffffffffffffffffffffffffffffffffffff16612f7c565b15612a8a578373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261294a611e10565b8786866040518563ffffffff1660e01b815260040161296c9493929190613aba565b602060405180830381600087803b15801561298657600080fd5b505af19250505080156129b757506040513d601f19601f820116820180604052508101906129b491906133a8565b60015b612a3a573d80600081146129e7576040519150601f19603f3d011682016040523d82523d6000602084013e6129ec565b606091505b50600081511415612a32576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a2990613ba5565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612a8f565b600190505b949350505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612b07576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612afe90613d25565b60405180910390fd5b612b1081611e18565b15612b50576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b4790613c05565b60405180910390fd5b612b5c600083836127e7565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612bac9190613fa3565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612c6d600083836128fb565b5050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b60006001612ccc84611576565b612cd69190614084565b9050600060076000848152602001908152602001600020549050818114612dbb576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b60006001600880549050612e409190614084565b9050600060096000848152602001908152602001600020549050600060088381548110612e7057612e6f614335565b5b906000526020600020015490508060088381548110612e9257612e91614335565b5b906000526020600020018190555081600960008381526020019081526020016000208190555060096000858152602001908152602001600020600090556008805480612ee157612ee0614306565b5b6001900381819060005260206000200160009055905550505050565b6000612f0883611576565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b828054612fab9061416e565b90600052602060002090601f016020900481019282612fcd5760008555613014565b82601f10612fe657805160ff1916838001178555613014565b82800160010185558215613014579182015b82811115613013578251825591602001919060010190612ff8565b5b5090506130219190613025565b5090565b5b8082111561303e576000816000905550600101613026565b5090565b600061305561305084613ea5565b613e80565b90508281526020810184848401111561307157613070614398565b5b61307c84828561412c565b509392505050565b600061309761309284613ed6565b613e80565b9050828152602081018484840111156130b3576130b2614398565b5b6130be84828561412c565b509392505050565b6000813590506130d5816149b4565b92915050565b6000813590506130ea816149cb565b92915050565b6000813590506130ff816149e2565b92915050565b600081519050613114816149e2565b92915050565b600082601f83011261312f5761312e614393565b5b813561313f848260208601613042565b91505092915050565b600082601f83011261315d5761315c614393565b5b813561316d848260208601613084565b91505092915050565b600081359050613185816149f9565b92915050565b6000602082840312156131a1576131a06143a2565b5b60006131af848285016130c6565b91505092915050565b600080604083850312156131cf576131ce6143a2565b5b60006131dd858286016130c6565b92505060206131ee858286016130c6565b9150509250929050565b600080600060608486031215613211576132106143a2565b5b600061321f868287016130c6565b9350506020613230868287016130c6565b925050604061324186828701613176565b9150509250925092565b60008060008060808587031215613265576132646143a2565b5b6000613273878288016130c6565b9450506020613284878288016130c6565b935050604061329587828801613176565b925050606085013567ffffffffffffffff8111156132b6576132b561439d565b5b6132c28782880161311a565b91505092959194509250565b600080604083850312156132e5576132e46143a2565b5b60006132f3858286016130c6565b9250506020613304858286016130db565b9150509250929050565b60008060408385031215613325576133246143a2565b5b6000613333858286016130c6565b925050602061334485828601613176565b9150509250929050565b600060208284031215613364576133636143a2565b5b6000613372848285016130db565b91505092915050565b600060208284031215613391576133906143a2565b5b600061339f848285016130f0565b91505092915050565b6000602082840312156133be576133bd6143a2565b5b60006133cc84828501613105565b91505092915050565b6000602082840312156133eb576133ea6143a2565b5b600082013567ffffffffffffffff8111156134095761340861439d565b5b61341584828501613148565b91505092915050565b600060208284031215613434576134336143a2565b5b600061344284828501613176565b91505092915050565b600080600060608486031215613464576134636143a2565b5b600061347286828701613176565b935050602061348386828701613176565b925050604061349486828701613176565b9150509250925092565b60006134aa83836139d6565b60208301905092915050565b6134bf816140b8565b82525050565b6134d66134d1826140b8565b61421a565b82525050565b60006134e782613f2c565b6134f18185613f5a565b93506134fc83613f07565b8060005b8381101561352d578151613514888261349e565b975061351f83613f4d565b925050600181019050613500565b5085935050505092915050565b613543816140ca565b82525050565b600061355482613f37565b61355e8185613f6b565b935061356e81856020860161413b565b613577816143a7565b840191505092915050565b600061358d82613f42565b6135978185613f87565b93506135a781856020860161413b565b6135b0816143a7565b840191505092915050565b60006135c682613f42565b6135d08185613f98565b93506135e081856020860161413b565b80840191505092915050565b600081546135f98161416e565b6136038186613f98565b9450600182166000811461361e576001811461362f57613662565b60ff19831686528186019350613662565b61363885613f17565b60005b8381101561365a5781548189015260018201915060208101905061363b565b838801955050505b50505092915050565b6000613678601583613f87565b9150613683826143c5565b602082019050919050565b600061369b602b83613f87565b91506136a6826143ee565b604082019050919050565b60006136be603283613f87565b91506136c98261443d565b604082019050919050565b60006136e1602683613f87565b91506136ec8261448c565b604082019050919050565b6000613704602583613f87565b915061370f826144db565b604082019050919050565b6000613727601c83613f87565b91506137328261452a565b602082019050919050565b600061374a601383613f87565b915061375582614553565b602082019050919050565b600061376d602483613f87565b91506137788261457c565b604082019050919050565b6000613790601983613f87565b915061379b826145cb565b602082019050919050565b60006137b3602c83613f87565b91506137be826145f4565b604082019050919050565b60006137d6603883613f87565b91506137e182614643565b604082019050919050565b60006137f9602a83613f87565b915061380482614692565b604082019050919050565b600061381c602983613f87565b9150613827826146e1565b604082019050919050565b600061383f601383613f87565b915061384a82614730565b602082019050919050565b6000613862602083613f87565b915061386d82614759565b602082019050919050565b6000613885602c83613f87565b915061389082614782565b604082019050919050565b60006138a8602083613f87565b91506138b3826147d1565b602082019050919050565b60006138cb601583613f87565b91506138d6826147fa565b602082019050919050565b60006138ee602f83613f87565b91506138f982614823565b604082019050919050565b6000613911601183613f87565b915061391c82614872565b602082019050919050565b6000613934602183613f87565b915061393f8261489b565b604082019050919050565b6000613957600083613f7c565b9150613962826148ea565b600082019050919050565b600061397a603183613f87565b9150613985826148ed565b604082019050919050565b600061399d601383613f87565b91506139a88261493c565b602082019050919050565b60006139c0602c83613f87565b91506139cb82614965565b604082019050919050565b6139df81614122565b82525050565b6139ee81614122565b82525050565b613a05613a0082614122565b61423e565b82525050565b6000613a1782866135bb565b9150613a2382856135bb565b9150613a2f82846135ec565b9150819050949350505050565b6000613a478261394a565b9150819050919050565b6000613a5d82876139f4565b602082019150613a6d82866134c5565b601482019150613a7d82856139f4565b602082019150613a8d82846139f4565b60208201915081905095945050505050565b6000602082019050613ab460008301846134b6565b92915050565b6000608082019050613acf60008301876134b6565b613adc60208301866134b6565b613ae960408301856139e5565b8181036060830152613afb8184613549565b905095945050505050565b60006020820190508181036000830152613b2081846134dc565b905092915050565b6000602082019050613b3d600083018461353a565b92915050565b60006020820190508181036000830152613b5d8184613582565b905092915050565b60006020820190508181036000830152613b7e8161366b565b9050919050565b60006020820190508181036000830152613b9e8161368e565b9050919050565b60006020820190508181036000830152613bbe816136b1565b9050919050565b60006020820190508181036000830152613bde816136d4565b9050919050565b60006020820190508181036000830152613bfe816136f7565b9050919050565b60006020820190508181036000830152613c1e8161371a565b9050919050565b60006020820190508181036000830152613c3e8161373d565b9050919050565b60006020820190508181036000830152613c5e81613760565b9050919050565b60006020820190508181036000830152613c7e81613783565b9050919050565b60006020820190508181036000830152613c9e816137a6565b9050919050565b60006020820190508181036000830152613cbe816137c9565b9050919050565b60006020820190508181036000830152613cde816137ec565b9050919050565b60006020820190508181036000830152613cfe8161380f565b9050919050565b60006020820190508181036000830152613d1e81613832565b9050919050565b60006020820190508181036000830152613d3e81613855565b9050919050565b60006020820190508181036000830152613d5e81613878565b9050919050565b60006020820190508181036000830152613d7e8161389b565b9050919050565b60006020820190508181036000830152613d9e816138be565b9050919050565b60006020820190508181036000830152613dbe816138e1565b9050919050565b60006020820190508181036000830152613dde81613904565b9050919050565b60006020820190508181036000830152613dfe81613927565b9050919050565b60006020820190508181036000830152613e1e8161396d565b9050919050565b60006020820190508181036000830152613e3e81613990565b9050919050565b60006020820190508181036000830152613e5e816139b3565b9050919050565b6000602082019050613e7a60008301846139e5565b92915050565b6000613e8a613e9b565b9050613e9682826141a0565b919050565b6000604051905090565b600067ffffffffffffffff821115613ec057613ebf614364565b5b613ec9826143a7565b9050602081019050919050565b600067ffffffffffffffff821115613ef157613ef0614364565b5b613efa826143a7565b9050602081019050919050565b6000819050602082019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000613fae82614122565b9150613fb983614122565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613fee57613fed614279565b5b828201905092915050565b600061400482614122565b915061400f83614122565b92508261401f5761401e6142a8565b5b828204905092915050565b600061403582614122565b915061404083614122565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561407957614078614279565b5b828202905092915050565b600061408f82614122565b915061409a83614122565b9250828210156140ad576140ac614279565b5b828203905092915050565b60006140c382614102565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b8381101561415957808201518184015260208101905061413e565b83811115614168576000848401525b50505050565b6000600282049050600182168061418657607f821691505b6020821081141561419a576141996142d7565b5b50919050565b6141a9826143a7565b810181811067ffffffffffffffff821117156141c8576141c7614364565b5b80604052505050565b60006141dc82614122565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561420f5761420e614279565b5b600182019050919050565b60006142258261422c565b9050919050565b6000614237826143b8565b9050919050565b6000819050919050565b600061425382614122565b915061425e83614122565b92508261426e5761426d6142a8565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b60008160601b9050919050565b7f436f756c64206e6f742073656e642076616c7565210000000000000000000000600082015250565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f436f6e7472616374206973207061757365642100000000000000000000000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4f776e65722063616e206e6f74206d696e742100000000000000000000000000600082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f43616e206e6f74207769746864726177207965742e0000000000000000000000600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4e6f7420656e6f7567682066756e647321000000000000000000000000000000600082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b50565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f4d617820737570706c7920726561636865642100000000000000000000000000600082015250565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b6149bd816140b8565b81146149c857600080fd5b50565b6149d4816140ca565b81146149df57600080fd5b50565b6149eb816140d6565b81146149f657600080fd5b50565b614a0281614122565b8114614a0d57600080fd5b5056fea2646970667358221220cffc0317aeb1e7fefdb7484f880ece7157b0845748b1600270d0cec77b6cc86e64736f6c63430008070033000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d5654755845785a6d734374435553563344756d464d33746e486a726537504874424765484e47587770666e4a2f000000000000000000000000000000000000000000000000000000000000000000000000000000000035697066733a2f2f516d5139684e4e393838393936566b684559594470555068696275343657344174784a36567a6f636968677a62430000000000000000000000

Deployed Bytecode

0x60806040526004361061020f5760003560e01c806355f804b311610118578063b88d4fde116100a0578063da3ef23f1161006f578063da3ef23f14610771578063e985e9c51461079a578063f2c4ce1e146107d7578063f2fde38b14610800578063f55974ca146108295761020f565b8063b88d4fde146106b5578063c6682862146106de578063c87b56dd14610709578063d5abeb01146107465761020f565b8063715018a6116100e7578063715018a6146106085780638da5cb5b1461061f57806395d89b411461064a578063a22cb46514610675578063a475b5dd1461069e5761020f565b806355f804b31461053a5780635c975abb146105635780636352211e1461058e57806370a08231146105cb5761020f565b806323b872dd1161019b57806342842e0e1161016a57806342842e0e14610443578063438b63001461046c57806344a0d68a146104a95780634f6ccce7146104d2578063518302271461050f5761020f565b806323b872dd1461039657806328294640146103bf5780632f745c59146103fc5780633ccfd60b146104395761020f565b8063081c8c44116101e2578063081c8c44146102e2578063095ea7b31461030d5780631249c58b1461033657806313faede61461034057806318160ddd1461036b5761020f565b806301ffc9a71461021457806302329a291461025157806306fdde031461027a578063081812fc146102a5575b600080fd5b34801561022057600080fd5b5061023b6004803603810190610236919061337b565b610854565b6040516102489190613b28565b60405180910390f35b34801561025d57600080fd5b506102786004803603810190610273919061334e565b6108ce565b005b34801561028657600080fd5b5061028f610967565b60405161029c9190613b43565b60405180910390f35b3480156102b157600080fd5b506102cc60048036038101906102c7919061341e565b6109f9565b6040516102d99190613a9f565b60405180910390f35b3480156102ee57600080fd5b506102f7610a7e565b6040516103049190613b43565b60405180910390f35b34801561031957600080fd5b50610334600480360381019061032f919061330e565b610b0c565b005b61033e610c24565b005b34801561034c57600080fd5b50610355610eea565b6040516103629190613e65565b60405180910390f35b34801561037757600080fd5b50610380610ef0565b60405161038d9190613e65565b60405180910390f35b3480156103a257600080fd5b506103bd60048036038101906103b891906131f8565b610efd565b005b3480156103cb57600080fd5b506103e660048036038101906103e1919061344b565b610f5d565b6040516103f39190613e65565b60405180910390f35b34801561040857600080fd5b50610423600480360381019061041e919061330e565b610fa8565b6040516104309190613e65565b60405180910390f35b61044161104d565b005b34801561044f57600080fd5b5061046a600480360381019061046591906131f8565b611243565b005b34801561047857600080fd5b50610493600480360381019061048e919061318b565b611263565b6040516104a09190613b06565b60405180910390f35b3480156104b557600080fd5b506104d060048036038101906104cb919061341e565b611311565b005b3480156104de57600080fd5b506104f960048036038101906104f4919061341e565b611397565b6040516105069190613e65565b60405180910390f35b34801561051b57600080fd5b50610524611408565b6040516105319190613b28565b60405180910390f35b34801561054657600080fd5b50610561600480360381019061055c91906133d5565b61141b565b005b34801561056f57600080fd5b506105786114b1565b6040516105859190613b28565b60405180910390f35b34801561059a57600080fd5b506105b560048036038101906105b0919061341e565b6114c4565b6040516105c29190613a9f565b60405180910390f35b3480156105d757600080fd5b506105f260048036038101906105ed919061318b565b611576565b6040516105ff9190613e65565b60405180910390f35b34801561061457600080fd5b5061061d61162e565b005b34801561062b57600080fd5b506106346116b6565b6040516106419190613a9f565b60405180910390f35b34801561065657600080fd5b5061065f6116e0565b60405161066c9190613b43565b60405180910390f35b34801561068157600080fd5b5061069c600480360381019061069791906132ce565b611772565b005b3480156106aa57600080fd5b506106b3611788565b005b3480156106c157600080fd5b506106dc60048036038101906106d7919061324b565b611821565b005b3480156106ea57600080fd5b506106f3611883565b6040516107009190613b43565b60405180910390f35b34801561071557600080fd5b50610730600480360381019061072b919061341e565b611911565b60405161073d9190613b43565b60405180910390f35b34801561075257600080fd5b5061075b611a6a565b6040516107689190613e65565b60405180910390f35b34801561077d57600080fd5b50610798600480360381019061079391906133d5565b611a70565b005b3480156107a657600080fd5b506107c160048036038101906107bc91906131b8565b611b06565b6040516107ce9190613b28565b60405180910390f35b3480156107e357600080fd5b506107fe60048036038101906107f991906133d5565b611b9a565b005b34801561080c57600080fd5b506108276004803603810190610822919061318b565b611c30565b005b34801561083557600080fd5b5061083e611d28565b60405161084b9190613e65565b60405180910390f35b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806108c757506108c682611d2e565b5b9050919050565b6108d6611e10565b73ffffffffffffffffffffffffffffffffffffffff166108f46116b6565b73ffffffffffffffffffffffffffffffffffffffff161461094a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161094190613d65565b60405180910390fd5b80601060006101000a81548160ff02191690831515021790555050565b6060600080546109769061416e565b80601f01602080910402602001604051908101604052809291908181526020018280546109a29061416e565b80156109ef5780601f106109c4576101008083540402835291602001916109ef565b820191906000526020600020905b8154815290600101906020018083116109d257829003601f168201915b5050505050905090565b6000610a0482611e18565b610a43576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a3a90613d45565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60118054610a8b9061416e565b80601f0160208091040260200160405190810160405280929190818152602001828054610ab79061416e565b8015610b045780601f10610ad957610100808354040283529160200191610b04565b820191906000526020600020905b815481529060010190602001808311610ae757829003601f168201915b505050505081565b6000610b17826114c4565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610b88576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b7f90613de5565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610ba7611e10565b73ffffffffffffffffffffffffffffffffffffffff161480610bd65750610bd581610bd0611e10565b611b06565b5b610c15576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c0c90613ca5565b60405180910390fd5b610c1f8383611e84565b505050565b6000610c2e610ef0565b9050601060009054906101000a900460ff1615610c80576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c7790613c25565b60405180910390fd5b600e54600182610c909190613fa3565b1115610cd1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cc890613e25565b60405180910390fd5b610cd96116b6565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161415610d47576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d3e90613d05565b60405180910390fd5b600d54341015610d8c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d8390613dc5565b60405180910390fd5b6000339050600080831115610e1857610dc66001610db78542600188610db29190613fa3565b610f5d565b610dc19190613fa3565b6114c4565b9150600e54600184610dd89190613fa3565b14610dfb576064602834610dec919061402a565b610df69190613ff9565b610e15565b6064602847610e0a919061402a565b610e149190613ff9565b5b90505b610e2e33600185610e299190613fa3565b611f3d565b6000831115610ee55760008273ffffffffffffffffffffffffffffffffffffffff1682604051610e5d90613a3c565b60006040518083038185875af1925050503d8060008114610e9a576040519150601f19603f3d011682016040523d82523d6000602084013e610e9f565b606091505b5050905080610ee3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eda90613b65565b60405180910390fd5b505b505050565b600d5481565b6000600880549050905090565b610f0e610f08611e10565b82611f5b565b610f4d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f4490613e05565b60405180910390fd5b610f58838383612039565b505050565b6000808442338686604051602001610f789493929190613a51565b6040516020818303038152906040528051906020012060001c610f9b9190614248565b9050809150509392505050565b6000610fb383611576565b8210610ff4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610feb90613b85565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b611055611e10565b73ffffffffffffffffffffffffffffffffffffffff166110736116b6565b73ffffffffffffffffffffffffffffffffffffffff16146110c9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110c090613d65565b60405180910390fd5b60006110d3610ef0565b9050600e548114806110e75750600f544210155b611126576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161111d90613d85565b60405180910390fd5b60007386f2ad57b59bb5be8091a0a5fdbecb168b63ca1773ffffffffffffffffffffffffffffffffffffffff166064603c47611162919061402a565b61116c9190613ff9565b60405161117890613a3c565b60006040518083038185875af1925050503d80600081146111b5576040519150601f19603f3d011682016040523d82523d6000602084013e6111ba565b606091505b50509050806111c857600080fd5b60003373ffffffffffffffffffffffffffffffffffffffff16476040516111ee90613a3c565b60006040518083038185875af1925050503d806000811461122b576040519150601f19603f3d011682016040523d82523d6000602084013e611230565b606091505b505090508061123e57600080fd5b505050565b61125e83838360405180602001604052806000815250611821565b505050565b6060600061127083611576565b905060008167ffffffffffffffff81111561128e5761128d614364565b5b6040519080825280602002602001820160405280156112bc5781602001602082028036833780820191505090505b50905060005b82811015611306576112d48582610fa8565b8282815181106112e7576112e6614335565b5b60200260200101818152505080806112fe906141d1565b9150506112c2565b508092505050919050565b611319611e10565b73ffffffffffffffffffffffffffffffffffffffff166113376116b6565b73ffffffffffffffffffffffffffffffffffffffff161461138d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161138490613d65565b60405180910390fd5b80600d8190555050565b60006113a1610ef0565b82106113e2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113d990613e45565b60405180910390fd5b600882815481106113f6576113f5614335565b5b90600052602060002001549050919050565b601060019054906101000a900460ff1681565b611423611e10565b73ffffffffffffffffffffffffffffffffffffffff166114416116b6565b73ffffffffffffffffffffffffffffffffffffffff1614611497576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161148e90613d65565b60405180910390fd5b80600b90805190602001906114ad929190612f9f565b5050565b601060009054906101000a900460ff1681565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561156d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161156490613ce5565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156115e7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115de90613cc5565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611636611e10565b73ffffffffffffffffffffffffffffffffffffffff166116546116b6565b73ffffffffffffffffffffffffffffffffffffffff16146116aa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116a190613d65565b60405180910390fd5b6116b460006122a0565b565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600180546116ef9061416e565b80601f016020809104026020016040519081016040528092919081815260200182805461171b9061416e565b80156117685780601f1061173d57610100808354040283529160200191611768565b820191906000526020600020905b81548152906001019060200180831161174b57829003601f168201915b5050505050905090565b61178461177d611e10565b8383612366565b5050565b611790611e10565b73ffffffffffffffffffffffffffffffffffffffff166117ae6116b6565b73ffffffffffffffffffffffffffffffffffffffff1614611804576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117fb90613d65565b60405180910390fd5b6001601060016101000a81548160ff021916908315150217905550565b61183261182c611e10565b83611f5b565b611871576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161186890613e05565b60405180910390fd5b61187d848484846124d3565b50505050565b600c80546118909061416e565b80601f01602080910402602001604051908101604052809291908181526020018280546118bc9061416e565b80156119095780601f106118de57610100808354040283529160200191611909565b820191906000526020600020905b8154815290600101906020018083116118ec57829003601f168201915b505050505081565b606061191c82611e18565b61195b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161195290613da5565b60405180910390fd5b60001515601060019054906101000a900460ff1615151415611a0957601180546119849061416e565b80601f01602080910402602001604051908101604052809291908181526020018280546119b09061416e565b80156119fd5780601f106119d2576101008083540402835291602001916119fd565b820191906000526020600020905b8154815290600101906020018083116119e057829003601f168201915b50505050509050611a65565b6000611a1361252f565b90506000815111611a335760405180602001604052806000815250611a61565b80611a3d846125c1565b600c604051602001611a5193929190613a0b565b6040516020818303038152906040525b9150505b919050565b600e5481565b611a78611e10565b73ffffffffffffffffffffffffffffffffffffffff16611a966116b6565b73ffffffffffffffffffffffffffffffffffffffff1614611aec576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ae390613d65565b60405180910390fd5b80600c9080519060200190611b02929190612f9f565b5050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611ba2611e10565b73ffffffffffffffffffffffffffffffffffffffff16611bc06116b6565b73ffffffffffffffffffffffffffffffffffffffff1614611c16576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c0d90613d65565b60405180910390fd5b8060119080519060200190611c2c929190612f9f565b5050565b611c38611e10565b73ffffffffffffffffffffffffffffffffffffffff16611c566116b6565b73ffffffffffffffffffffffffffffffffffffffff1614611cac576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ca390613d65565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611d1c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d1390613bc5565b60405180910390fd5b611d25816122a0565b50565b600f5481565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480611df957507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80611e095750611e0882612722565b5b9050919050565b600033905090565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16611ef7836114c4565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b611f5782826040518060200160405280600081525061278c565b5050565b6000611f6682611e18565b611fa5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f9c90613c85565b60405180910390fd5b6000611fb0836114c4565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061201f57508373ffffffffffffffffffffffffffffffffffffffff16612007846109f9565b73ffffffffffffffffffffffffffffffffffffffff16145b80612030575061202f8185611b06565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16612059826114c4565b73ffffffffffffffffffffffffffffffffffffffff16146120af576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120a690613be5565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561211f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161211690613c45565b60405180910390fd5b61212a8383836127e7565b612135600082611e84565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546121859190614084565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546121dc9190613fa3565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461229b8383836128fb565b505050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156123d5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123cc90613c65565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516124c69190613b28565b60405180910390a3505050565b6124de848484612039565b6124ea84848484612900565b612529576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161252090613ba5565b60405180910390fd5b50505050565b6060600b805461253e9061416e565b80601f016020809104026020016040519081016040528092919081815260200182805461256a9061416e565b80156125b75780601f1061258c576101008083540402835291602001916125b7565b820191906000526020600020905b81548152906001019060200180831161259a57829003601f168201915b5050505050905090565b60606000821415612609576040518060400160405280600181526020017f3000000000000000000000000000000000000000000000000000000000000000815250905061271d565b600082905060005b6000821461263b578080612624906141d1565b915050600a826126349190613ff9565b9150612611565b60008167ffffffffffffffff81111561265757612656614364565b5b6040519080825280601f01601f1916602001820160405280156126895781602001600182028036833780820191505090505b5090505b60008514612716576001826126a29190614084565b9150600a856126b19190614248565b60306126bd9190613fa3565b60f81b8183815181106126d3576126d2614335565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561270f9190613ff9565b945061268d565b8093505050505b919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6127968383612a97565b6127a36000848484612900565b6127e2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127d990613ba5565b60405180910390fd5b505050565b6127f2838383612c71565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156128355761283081612c76565b612874565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614612873576128728382612cbf565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156128b7576128b281612e2c565b6128f6565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16146128f5576128f48282612efd565b5b5b505050565b505050565b60006129218473ffffffffffffffffffffffffffffffffffffffff16612f7c565b15612a8a578373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261294a611e10565b8786866040518563ffffffff1660e01b815260040161296c9493929190613aba565b602060405180830381600087803b15801561298657600080fd5b505af19250505080156129b757506040513d601f19601f820116820180604052508101906129b491906133a8565b60015b612a3a573d80600081146129e7576040519150601f19603f3d011682016040523d82523d6000602084013e6129ec565b606091505b50600081511415612a32576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a2990613ba5565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612a8f565b600190505b949350505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612b07576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612afe90613d25565b60405180910390fd5b612b1081611e18565b15612b50576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b4790613c05565b60405180910390fd5b612b5c600083836127e7565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612bac9190613fa3565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612c6d600083836128fb565b5050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b60006001612ccc84611576565b612cd69190614084565b9050600060076000848152602001908152602001600020549050818114612dbb576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b60006001600880549050612e409190614084565b9050600060096000848152602001908152602001600020549050600060088381548110612e7057612e6f614335565b5b906000526020600020015490508060088381548110612e9257612e91614335565b5b906000526020600020018190555081600960008381526020019081526020016000208190555060096000858152602001908152602001600020600090556008805480612ee157612ee0614306565b5b6001900381819060005260206000200160009055905550505050565b6000612f0883611576565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b828054612fab9061416e565b90600052602060002090601f016020900481019282612fcd5760008555613014565b82601f10612fe657805160ff1916838001178555613014565b82800160010185558215613014579182015b82811115613013578251825591602001919060010190612ff8565b5b5090506130219190613025565b5090565b5b8082111561303e576000816000905550600101613026565b5090565b600061305561305084613ea5565b613e80565b90508281526020810184848401111561307157613070614398565b5b61307c84828561412c565b509392505050565b600061309761309284613ed6565b613e80565b9050828152602081018484840111156130b3576130b2614398565b5b6130be84828561412c565b509392505050565b6000813590506130d5816149b4565b92915050565b6000813590506130ea816149cb565b92915050565b6000813590506130ff816149e2565b92915050565b600081519050613114816149e2565b92915050565b600082601f83011261312f5761312e614393565b5b813561313f848260208601613042565b91505092915050565b600082601f83011261315d5761315c614393565b5b813561316d848260208601613084565b91505092915050565b600081359050613185816149f9565b92915050565b6000602082840312156131a1576131a06143a2565b5b60006131af848285016130c6565b91505092915050565b600080604083850312156131cf576131ce6143a2565b5b60006131dd858286016130c6565b92505060206131ee858286016130c6565b9150509250929050565b600080600060608486031215613211576132106143a2565b5b600061321f868287016130c6565b9350506020613230868287016130c6565b925050604061324186828701613176565b9150509250925092565b60008060008060808587031215613265576132646143a2565b5b6000613273878288016130c6565b9450506020613284878288016130c6565b935050604061329587828801613176565b925050606085013567ffffffffffffffff8111156132b6576132b561439d565b5b6132c28782880161311a565b91505092959194509250565b600080604083850312156132e5576132e46143a2565b5b60006132f3858286016130c6565b9250506020613304858286016130db565b9150509250929050565b60008060408385031215613325576133246143a2565b5b6000613333858286016130c6565b925050602061334485828601613176565b9150509250929050565b600060208284031215613364576133636143a2565b5b6000613372848285016130db565b91505092915050565b600060208284031215613391576133906143a2565b5b600061339f848285016130f0565b91505092915050565b6000602082840312156133be576133bd6143a2565b5b60006133cc84828501613105565b91505092915050565b6000602082840312156133eb576133ea6143a2565b5b600082013567ffffffffffffffff8111156134095761340861439d565b5b61341584828501613148565b91505092915050565b600060208284031215613434576134336143a2565b5b600061344284828501613176565b91505092915050565b600080600060608486031215613464576134636143a2565b5b600061347286828701613176565b935050602061348386828701613176565b925050604061349486828701613176565b9150509250925092565b60006134aa83836139d6565b60208301905092915050565b6134bf816140b8565b82525050565b6134d66134d1826140b8565b61421a565b82525050565b60006134e782613f2c565b6134f18185613f5a565b93506134fc83613f07565b8060005b8381101561352d578151613514888261349e565b975061351f83613f4d565b925050600181019050613500565b5085935050505092915050565b613543816140ca565b82525050565b600061355482613f37565b61355e8185613f6b565b935061356e81856020860161413b565b613577816143a7565b840191505092915050565b600061358d82613f42565b6135978185613f87565b93506135a781856020860161413b565b6135b0816143a7565b840191505092915050565b60006135c682613f42565b6135d08185613f98565b93506135e081856020860161413b565b80840191505092915050565b600081546135f98161416e565b6136038186613f98565b9450600182166000811461361e576001811461362f57613662565b60ff19831686528186019350613662565b61363885613f17565b60005b8381101561365a5781548189015260018201915060208101905061363b565b838801955050505b50505092915050565b6000613678601583613f87565b9150613683826143c5565b602082019050919050565b600061369b602b83613f87565b91506136a6826143ee565b604082019050919050565b60006136be603283613f87565b91506136c98261443d565b604082019050919050565b60006136e1602683613f87565b91506136ec8261448c565b604082019050919050565b6000613704602583613f87565b915061370f826144db565b604082019050919050565b6000613727601c83613f87565b91506137328261452a565b602082019050919050565b600061374a601383613f87565b915061375582614553565b602082019050919050565b600061376d602483613f87565b91506137788261457c565b604082019050919050565b6000613790601983613f87565b915061379b826145cb565b602082019050919050565b60006137b3602c83613f87565b91506137be826145f4565b604082019050919050565b60006137d6603883613f87565b91506137e182614643565b604082019050919050565b60006137f9602a83613f87565b915061380482614692565b604082019050919050565b600061381c602983613f87565b9150613827826146e1565b604082019050919050565b600061383f601383613f87565b915061384a82614730565b602082019050919050565b6000613862602083613f87565b915061386d82614759565b602082019050919050565b6000613885602c83613f87565b915061389082614782565b604082019050919050565b60006138a8602083613f87565b91506138b3826147d1565b602082019050919050565b60006138cb601583613f87565b91506138d6826147fa565b602082019050919050565b60006138ee602f83613f87565b91506138f982614823565b604082019050919050565b6000613911601183613f87565b915061391c82614872565b602082019050919050565b6000613934602183613f87565b915061393f8261489b565b604082019050919050565b6000613957600083613f7c565b9150613962826148ea565b600082019050919050565b600061397a603183613f87565b9150613985826148ed565b604082019050919050565b600061399d601383613f87565b91506139a88261493c565b602082019050919050565b60006139c0602c83613f87565b91506139cb82614965565b604082019050919050565b6139df81614122565b82525050565b6139ee81614122565b82525050565b613a05613a0082614122565b61423e565b82525050565b6000613a1782866135bb565b9150613a2382856135bb565b9150613a2f82846135ec565b9150819050949350505050565b6000613a478261394a565b9150819050919050565b6000613a5d82876139f4565b602082019150613a6d82866134c5565b601482019150613a7d82856139f4565b602082019150613a8d82846139f4565b60208201915081905095945050505050565b6000602082019050613ab460008301846134b6565b92915050565b6000608082019050613acf60008301876134b6565b613adc60208301866134b6565b613ae960408301856139e5565b8181036060830152613afb8184613549565b905095945050505050565b60006020820190508181036000830152613b2081846134dc565b905092915050565b6000602082019050613b3d600083018461353a565b92915050565b60006020820190508181036000830152613b5d8184613582565b905092915050565b60006020820190508181036000830152613b7e8161366b565b9050919050565b60006020820190508181036000830152613b9e8161368e565b9050919050565b60006020820190508181036000830152613bbe816136b1565b9050919050565b60006020820190508181036000830152613bde816136d4565b9050919050565b60006020820190508181036000830152613bfe816136f7565b9050919050565b60006020820190508181036000830152613c1e8161371a565b9050919050565b60006020820190508181036000830152613c3e8161373d565b9050919050565b60006020820190508181036000830152613c5e81613760565b9050919050565b60006020820190508181036000830152613c7e81613783565b9050919050565b60006020820190508181036000830152613c9e816137a6565b9050919050565b60006020820190508181036000830152613cbe816137c9565b9050919050565b60006020820190508181036000830152613cde816137ec565b9050919050565b60006020820190508181036000830152613cfe8161380f565b9050919050565b60006020820190508181036000830152613d1e81613832565b9050919050565b60006020820190508181036000830152613d3e81613855565b9050919050565b60006020820190508181036000830152613d5e81613878565b9050919050565b60006020820190508181036000830152613d7e8161389b565b9050919050565b60006020820190508181036000830152613d9e816138be565b9050919050565b60006020820190508181036000830152613dbe816138e1565b9050919050565b60006020820190508181036000830152613dde81613904565b9050919050565b60006020820190508181036000830152613dfe81613927565b9050919050565b60006020820190508181036000830152613e1e8161396d565b9050919050565b60006020820190508181036000830152613e3e81613990565b9050919050565b60006020820190508181036000830152613e5e816139b3565b9050919050565b6000602082019050613e7a60008301846139e5565b92915050565b6000613e8a613e9b565b9050613e9682826141a0565b919050565b6000604051905090565b600067ffffffffffffffff821115613ec057613ebf614364565b5b613ec9826143a7565b9050602081019050919050565b600067ffffffffffffffff821115613ef157613ef0614364565b5b613efa826143a7565b9050602081019050919050565b6000819050602082019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000613fae82614122565b9150613fb983614122565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613fee57613fed614279565b5b828201905092915050565b600061400482614122565b915061400f83614122565b92508261401f5761401e6142a8565b5b828204905092915050565b600061403582614122565b915061404083614122565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561407957614078614279565b5b828202905092915050565b600061408f82614122565b915061409a83614122565b9250828210156140ad576140ac614279565b5b828203905092915050565b60006140c382614102565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b8381101561415957808201518184015260208101905061413e565b83811115614168576000848401525b50505050565b6000600282049050600182168061418657607f821691505b6020821081141561419a576141996142d7565b5b50919050565b6141a9826143a7565b810181811067ffffffffffffffff821117156141c8576141c7614364565b5b80604052505050565b60006141dc82614122565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561420f5761420e614279565b5b600182019050919050565b60006142258261422c565b9050919050565b6000614237826143b8565b9050919050565b6000819050919050565b600061425382614122565b915061425e83614122565b92508261426e5761426d6142a8565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b60008160601b9050919050565b7f436f756c64206e6f742073656e642076616c7565210000000000000000000000600082015250565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f436f6e7472616374206973207061757365642100000000000000000000000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4f776e65722063616e206e6f74206d696e742100000000000000000000000000600082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f43616e206e6f74207769746864726177207965742e0000000000000000000000600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4e6f7420656e6f7567682066756e647321000000000000000000000000000000600082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b50565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f4d617820737570706c7920726561636865642100000000000000000000000000600082015250565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b6149bd816140b8565b81146149c857600080fd5b50565b6149d4816140ca565b81146149df57600080fd5b50565b6149eb816140d6565b81146149f657600080fd5b50565b614a0281614122565b8114614a0d57600080fd5b5056fea2646970667358221220cffc0317aeb1e7fefdb7484f880ece7157b0845748b1600270d0cec77b6cc86e64736f6c63430008070033

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

000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d5654755845785a6d734374435553563344756d464d33746e486a726537504874424765484e47587770666e4a2f000000000000000000000000000000000000000000000000000000000000000000000000000000000035697066733a2f2f516d5139684e4e393838393936566b684559594470555068696275343657344174784a36567a6f636968677a62430000000000000000000000

-----Decoded View---------------
Arg [0] : _initBaseURI (string): ipfs://QmVTuXExZmsCtCUSV3DumFM3tnHjre7PHtBGeHNGXwpfnJ/
Arg [1] : _initNotRevealedUri (string): ipfs://QmQ9hNN988996VkhEYYDpUPhibu46W4AtxJ6VzocihgzbC

-----Encoded View---------------
8 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000040
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000036
Arg [3] : 697066733a2f2f516d5654755845785a6d734374435553563344756d464d3374
Arg [4] : 6e486a726537504874424765484e47587770666e4a2f00000000000000000000
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000035
Arg [6] : 697066733a2f2f516d5139684e4e393838393936566b68455959447055506869
Arg [7] : 6275343657344174784a36567a6f636968677a62430000000000000000000000


Deployed Bytecode Sourcemap

47963:3687:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39197:224;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51153:73;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;26017:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27576:221;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48307:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27099:411;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;48699:820;;;:::i;:::-;;48118:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39837:113;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28326:339;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;49881:226;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39505:256;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51234:413;;;:::i;:::-;;28736:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;49525:348;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50707:82;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;40027:233;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48274:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50921:98;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;48243:26;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25711:239;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25441:208;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4613:103;;;;;;;;;;;;;:::i;:::-;;3962:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26186:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27869:155;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;50632:67;;;;;;;;;;;;;:::i;:::-;;28992:328;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;48076:37;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50113:497;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48153:29;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51025:122;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;28095:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50795:120;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;4871:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;48187:51;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39197:224;39299:4;39338:35;39323:50;;;:11;:50;;;;:90;;;;39377:36;39401:11;39377:23;:36::i;:::-;39323:90;39316:97;;39197:224;;;:::o;51153:73::-;4193:12;:10;:12::i;:::-;4182:23;;:7;:5;:7::i;:::-;:23;;;4174:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;51214:6:::1;51205;;:15;;;;;;;;;;;;;;;;;;51153:73:::0;:::o;26017:100::-;26071:13;26104:5;26097:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26017:100;:::o;27576:221::-;27652:7;27680:16;27688:7;27680;:16::i;:::-;27672:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;27765:15;:24;27781:7;27765:24;;;;;;;;;;;;;;;;;;;;;27758:31;;27576:221;;;:::o;48307:28::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;27099:411::-;27180:13;27196:23;27211:7;27196:14;:23::i;:::-;27180:39;;27244:5;27238:11;;:2;:11;;;;27230:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;27338:5;27322:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;27347:37;27364:5;27371:12;:10;:12::i;:::-;27347:16;:37::i;:::-;27322:62;27300:168;;;;;;;;;;;;:::i;:::-;;;;;;;;;27481:21;27490:2;27494:7;27481:8;:21::i;:::-;27169:341;27099:411;;:::o;48699:820::-;48737:14;48754:13;:11;:13::i;:::-;48737:30;;48783:6;;;;;;;;;;;48782:7;48774:39;;;;;;;;;;;;:::i;:::-;;;;;;;;;48842:9;;48837:1;48828:6;:10;;;;:::i;:::-;:23;;48820:55;;;;;;;;;;;;:::i;:::-;;;;;;;;;48904:7;:5;:7::i;:::-;48890:21;;:10;:21;;;;48882:53;;;;;;;;;;;;:::i;:::-;;;;;;;;;48963:4;;48950:9;:17;;48942:47;;;;;;;;;;;;:::i;:::-;;;;;;;;;49002:27;49040:10;49002:49;;49058:17;49100:1;49091:6;:10;49088:220;;;49136:59;49193:1;49144:46;49154:6;49162:15;49188:1;49179:6;:10;;;;:::i;:::-;49144:9;:46::i;:::-;:50;;;;:::i;:::-;49136:7;:59::i;:::-;49114:82;;49233:9;;49228:1;49219:6;:10;;;;:::i;:::-;:23;:81;;49297:3;49292:2;49280:9;:14;;;;:::i;:::-;:20;;;;:::i;:::-;49219:81;;;49274:3;49269:2;49245:21;:26;;;;:::i;:::-;:32;;;;:::i;:::-;49219:81;49207:93;;49088:220;49320:33;49330:10;49351:1;49342:6;:10;;;;:::i;:::-;49320:9;:33::i;:::-;49374:1;49365:6;:10;49362:152;;;49389:12;49415:11;49407:25;;49440:9;49407:47;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49388:66;;;49473:7;49465:41;;;;;;;;;;;;:::i;:::-;;;;;;;;;49377:137;49362:152;48730:789;;;48699:820::o;48118:30::-;;;;:::o;39837:113::-;39898:7;39925:10;:17;;;;39918:24;;39837:113;:::o;28326:339::-;28521:41;28540:12;:10;:12::i;:::-;28554:7;28521:18;:41::i;:::-;28513:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;28629:28;28639:4;28645:2;28649:7;28629:9;:28::i;:::-;28326:339;;;:::o;49881:226::-;49964:7;49982:11;50078:4;50031:15;50048:10;50060:5;50067;50014:59;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;50004:70;;;;;;49996:79;;:86;;;;:::i;:::-;49982:100;;50098:3;50091:10;;;49881:226;;;;;:::o;39505:256::-;39602:7;39638:23;39655:5;39638:16;:23::i;:::-;39630:5;:31;39622:87;;;;;;;;;;;;:::i;:::-;;;;;;;;;39727:12;:19;39740:5;39727:19;;;;;;;;;;;;;;;:26;39747:5;39727:26;;;;;;;;;;;;39720:33;;39505:256;;;;:::o;51234:413::-;4193:12;:10;:12::i;:::-;4182:23;;:7;:5;:7::i;:::-;:23;;;4174:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;51286:14:::1;51303:13;:11;:13::i;:::-;51286:30;;51341:9;;51331:6;:19;:51;;;;51373:9;;51354:15;:28;;51331:51;51323:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;51416:6;51436:42;51428:56;;51521:3;51516:2;51492:21;:26;;;;:::i;:::-;:32;;;;:::i;:::-;51428:101;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51415:114;;;51544:1;51536:10;;;::::0;::::1;;51554:6;51574:10;51566:24;;51598:21;51566:58;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51553:71;;;51639:1;51631:10;;;::::0;::::1;;51279:368;;;51234:413::o:0;28736:185::-;28874:39;28891:4;28897:2;28901:7;28874:39;;;;;;;;;;;;:16;:39::i;:::-;28736:185;;;:::o;49525:348::-;49600:16;49628:23;49654:17;49664:6;49654:9;:17::i;:::-;49628:43;;49678:25;49720:15;49706:30;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49678:58;;49748:9;49743:103;49763:15;49759:1;:19;49743:103;;;49808:30;49828:6;49836:1;49808:19;:30::i;:::-;49794:8;49803:1;49794:11;;;;;;;;:::i;:::-;;;;;;;:44;;;;;49780:3;;;;;:::i;:::-;;;;49743:103;;;;49859:8;49852:15;;;;49525:348;;;:::o;50707:82::-;4193:12;:10;:12::i;:::-;4182:23;;:7;:5;:7::i;:::-;:23;;;4174:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;50775:8:::1;50768:4;:15;;;;50707:82:::0;:::o;40027:233::-;40102:7;40138:30;:28;:30::i;:::-;40130:5;:38;40122:95;;;;;;;;;;;;:::i;:::-;;;;;;;;;40235:10;40246:5;40235:17;;;;;;;;:::i;:::-;;;;;;;;;;40228:24;;40027:233;;;:::o;48274:28::-;;;;;;;;;;;;;:::o;50921:98::-;4193:12;:10;:12::i;:::-;4182:23;;:7;:5;:7::i;:::-;:23;;;4174:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;51002:11:::1;50992:7;:21;;;;;;;;;;;;:::i;:::-;;50921:98:::0;:::o;48243:26::-;;;;;;;;;;;;;:::o;25711:239::-;25783:7;25803:13;25819:7;:16;25827:7;25819:16;;;;;;;;;;;;;;;;;;;;;25803:32;;25871:1;25854:19;;:5;:19;;;;25846:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;25937:5;25930:12;;;25711:239;;;:::o;25441:208::-;25513:7;25558:1;25541:19;;:5;:19;;;;25533:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;25625:9;:16;25635:5;25625:16;;;;;;;;;;;;;;;;25618:23;;25441:208;;;:::o;4613:103::-;4193:12;:10;:12::i;:::-;4182:23;;:7;:5;:7::i;:::-;:23;;;4174:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;4678:30:::1;4705:1;4678:18;:30::i;:::-;4613:103::o:0;3962:87::-;4008:7;4035:6;;;;;;;;;;;4028:13;;3962:87;:::o;26186:104::-;26242:13;26275:7;26268:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26186:104;:::o;27869:155::-;27964:52;27983:12;:10;:12::i;:::-;27997:8;28007;27964:18;:52::i;:::-;27869:155;;:::o;50632:67::-;4193:12;:10;:12::i;:::-;4182:23;;:7;:5;:7::i;:::-;:23;;;4174:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;50689:4:::1;50678:8;;:15;;;;;;;;;;;;;;;;;;50632:67::o:0;28992:328::-;29167:41;29186:12;:10;:12::i;:::-;29200:7;29167:18;:41::i;:::-;29159:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;29273:39;29287:4;29293:2;29297:7;29306:5;29273:13;:39::i;:::-;28992:328;;;;:::o;48076:37::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;50113:497::-;50211:13;50252:16;50260:7;50252;:16::i;:::-;50236:97;;;;;;;;;;;;:::i;:::-;;;;;;;;;50361:5;50349:17;;:8;;;;;;;;;;;:17;;;50346:62;;;50386:14;50379:21;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50346:62;50416:28;50447:10;:8;:10::i;:::-;50416:41;;50502:1;50477:14;50471:28;:32;:133;;;;;;;;;;;;;;;;;50539:14;50555:18;:7;:16;:18::i;:::-;50575:13;50522:67;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;50471:133;50464:140;;;50113:497;;;;:::o;48153:29::-;;;;:::o;51025:122::-;4193:12;:10;:12::i;:::-;4182:23;;:7;:5;:7::i;:::-;:23;;;4174:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;51124:17:::1;51108:13;:33;;;;;;;;;;;;:::i;:::-;;51025:122:::0;:::o;28095:164::-;28192:4;28216:18;:25;28235:5;28216:25;;;;;;;;;;;;;;;:35;28242:8;28216:35;;;;;;;;;;;;;;;;;;;;;;;;;28209:42;;28095:164;;;;:::o;50795:120::-;4193:12;:10;:12::i;:::-;4182:23;;:7;:5;:7::i;:::-;:23;;;4174:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;50894:15:::1;50877:14;:32;;;;;;;;;;;;:::i;:::-;;50795:120:::0;:::o;4871:201::-;4193:12;:10;:12::i;:::-;4182:23;;:7;:5;:7::i;:::-;:23;;;4174:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;4980:1:::1;4960:22;;:8;:22;;;;4952:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;5036:28;5055:8;5036:18;:28::i;:::-;4871:201:::0;:::o;48187:51::-;;;;:::o;25072:305::-;25174:4;25226:25;25211:40;;;:11;:40;;;;:105;;;;25283:33;25268:48;;;:11;:48;;;;25211:105;:158;;;;25333:36;25357:11;25333:23;:36::i;:::-;25211:158;25191:178;;25072:305;;;:::o;2686:98::-;2739:7;2766:10;2759:17;;2686:98;:::o;30830:127::-;30895:4;30947:1;30919:30;;:7;:16;30927:7;30919:16;;;;;;;;;;;;;;;;;;;;;:30;;;;30912:37;;30830:127;;;:::o;34976:174::-;35078:2;35051:15;:24;35067:7;35051:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;35134:7;35130:2;35096:46;;35105:23;35120:7;35105:14;:23::i;:::-;35096:46;;;;;;;;;;;;34976:174;;:::o;31814:110::-;31890:26;31900:2;31904:7;31890:26;;;;;;;;;;;;:9;:26::i;:::-;31814:110;;:::o;31124:348::-;31217:4;31242:16;31250:7;31242;:16::i;:::-;31234:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;31318:13;31334:23;31349:7;31334:14;:23::i;:::-;31318:39;;31387:5;31376:16;;:7;:16;;;:51;;;;31420:7;31396:31;;:20;31408:7;31396:11;:20::i;:::-;:31;;;31376:51;:87;;;;31431:32;31448:5;31455:7;31431:16;:32::i;:::-;31376:87;31368:96;;;31124:348;;;;:::o;34233:625::-;34392:4;34365:31;;:23;34380:7;34365:14;:23::i;:::-;:31;;;34357:81;;;;;;;;;;;;:::i;:::-;;;;;;;;;34471:1;34457:16;;:2;:16;;;;34449:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;34527:39;34548:4;34554:2;34558:7;34527:20;:39::i;:::-;34631:29;34648:1;34652:7;34631:8;:29::i;:::-;34692:1;34673:9;:15;34683:4;34673:15;;;;;;;;;;;;;;;;:20;;;;;;;:::i;:::-;;;;;;;;34721:1;34704:9;:13;34714:2;34704:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;34752:2;34733:7;:16;34741:7;34733:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;34791:7;34787:2;34772:27;;34781:4;34772:27;;;;;;;;;;;;34812:38;34832:4;34838:2;34842:7;34812:19;:38::i;:::-;34233:625;;;:::o;5232:191::-;5306:16;5325:6;;;;;;;;;;;5306:25;;5351:8;5342:6;;:17;;;;;;;;;;;;;;;;;;5406:8;5375:40;;5396:8;5375:40;;;;;;;;;;;;5295:128;5232:191;:::o;35292:315::-;35447:8;35438:17;;:5;:17;;;;35430:55;;;;;;;;;;;;:::i;:::-;;;;;;;;;35534:8;35496:18;:25;35515:5;35496:25;;;;;;;;;;;;;;;:35;35522:8;35496:35;;;;;;;;;;;;;;;;:46;;;;;;;;;;;;;;;;;;35580:8;35558:41;;35573:5;35558:41;;;35590:8;35558:41;;;;;;:::i;:::-;;;;;;;;35292:315;;;:::o;30202:::-;30359:28;30369:4;30375:2;30379:7;30359:9;:28::i;:::-;30406:48;30429:4;30435:2;30439:7;30448:5;30406:22;:48::i;:::-;30398:111;;;;;;;;;;;;:::i;:::-;;;;;;;;;30202:315;;;;:::o;48578:102::-;48638:13;48667:7;48660:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48578:102;:::o;248:723::-;304:13;534:1;525:5;:10;521:53;;;552:10;;;;;;;;;;;;;;;;;;;;;521:53;584:12;599:5;584:20;;615:14;640:78;655:1;647:4;:9;640:78;;673:8;;;;;:::i;:::-;;;;704:2;696:10;;;;;:::i;:::-;;;640:78;;;728:19;760:6;750:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;728:39;;778:154;794:1;785:5;:10;778:154;;822:1;812:11;;;;;:::i;:::-;;;889:2;881:5;:10;;;;:::i;:::-;868:2;:24;;;;:::i;:::-;855:39;;838:6;845;838:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;918:2;909:11;;;;;:::i;:::-;;;778:154;;;956:6;942:21;;;;;248:723;;;;:::o;16746:157::-;16831:4;16870:25;16855:40;;;:11;:40;;;;16848:47;;16746:157;;;:::o;32151:321::-;32281:18;32287:2;32291:7;32281:5;:18::i;:::-;32332:54;32363:1;32367:2;32371:7;32380:5;32332:22;:54::i;:::-;32310:154;;;;;;;;;;;;:::i;:::-;;;;;;;;;32151:321;;;:::o;40873:589::-;41017:45;41044:4;41050:2;41054:7;41017:26;:45::i;:::-;41095:1;41079:18;;:4;:18;;;41075:187;;;41114:40;41146:7;41114:31;:40::i;:::-;41075:187;;;41184:2;41176:10;;:4;:10;;;41172:90;;41203:47;41236:4;41242:7;41203:32;:47::i;:::-;41172:90;41075:187;41290:1;41276:16;;:2;:16;;;41272:183;;;41309:45;41346:7;41309:36;:45::i;:::-;41272:183;;;41382:4;41376:10;;:2;:10;;;41372:83;;41403:40;41431:2;41435:7;41403:27;:40::i;:::-;41372:83;41272:183;40873:589;;;:::o;38054:125::-;;;;:::o;36172:799::-;36327:4;36348:15;:2;:13;;;:15::i;:::-;36344:620;;;36400:2;36384:36;;;36421:12;:10;:12::i;:::-;36435:4;36441:7;36450:5;36384:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;36380:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36643:1;36626:6;:13;:18;36622:272;;;36669:60;;;;;;;;;;:::i;:::-;;;;;;;;36622:272;36844:6;36838:13;36829:6;36825:2;36821:15;36814:38;36380:529;36517:41;;;36507:51;;;:6;:51;;;;36500:58;;;;;36344:620;36948:4;36941:11;;36172:799;;;;;;;:::o;32808:439::-;32902:1;32888:16;;:2;:16;;;;32880:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;32961:16;32969:7;32961;:16::i;:::-;32960:17;32952:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;33023:45;33052:1;33056:2;33060:7;33023:20;:45::i;:::-;33098:1;33081:9;:13;33091:2;33081:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;33129:2;33110:7;:16;33118:7;33110:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;33174:7;33170:2;33149:33;;33166:1;33149:33;;;;;;;;;;;;33195:44;33223:1;33227:2;33231:7;33195:19;:44::i;:::-;32808:439;;:::o;37543:126::-;;;;:::o;42185:164::-;42289:10;:17;;;;42262:15;:24;42278:7;42262:24;;;;;;;;;;;:44;;;;42317:10;42333:7;42317:24;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42185:164;:::o;42976:988::-;43242:22;43292:1;43267:22;43284:4;43267:16;:22::i;:::-;:26;;;;:::i;:::-;43242:51;;43304:18;43325:17;:26;43343:7;43325:26;;;;;;;;;;;;43304:47;;43472:14;43458:10;:28;43454:328;;43503:19;43525:12;:18;43538:4;43525:18;;;;;;;;;;;;;;;:34;43544:14;43525:34;;;;;;;;;;;;43503:56;;43609:11;43576:12;:18;43589:4;43576:18;;;;;;;;;;;;;;;:30;43595:10;43576:30;;;;;;;;;;;:44;;;;43726:10;43693:17;:30;43711:11;43693:30;;;;;;;;;;;:43;;;;43488:294;43454:328;43878:17;:26;43896:7;43878:26;;;;;;;;;;;43871:33;;;43922:12;:18;43935:4;43922:18;;;;;;;;;;;;;;;:34;43941:14;43922:34;;;;;;;;;;;43915:41;;;43057:907;;42976:988;;:::o;44259:1079::-;44512:22;44557:1;44537:10;:17;;;;:21;;;;:::i;:::-;44512:46;;44569:18;44590:15;:24;44606:7;44590:24;;;;;;;;;;;;44569:45;;44941:19;44963:10;44974:14;44963:26;;;;;;;;:::i;:::-;;;;;;;;;;44941:48;;45027:11;45002:10;45013;45002:22;;;;;;;;:::i;:::-;;;;;;;;;:36;;;;45138:10;45107:15;:28;45123:11;45107:28;;;;;;;;;;;:41;;;;45279:15;:24;45295:7;45279:24;;;;;;;;;;;45272:31;;;45314:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;44330:1008;;;44259:1079;:::o;41763:221::-;41848:14;41865:20;41882:2;41865:16;:20::i;:::-;41848:37;;41923:7;41896:12;:16;41909:2;41896:16;;;;;;;;;;;;;;;:24;41913:6;41896:24;;;;;;;;;;;:34;;;;41970:6;41941:17;:26;41959:7;41941:26;;;;;;;;;;;:35;;;;41837:147;41763:221;;:::o;6663:326::-;6723:4;6980:1;6958:7;:19;;;:23;6951:30;;6663:326;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:410:1:-;84:5;109:65;125:48;166:6;125:48;:::i;:::-;109:65;:::i;:::-;100:74;;197:6;190:5;183:21;235:4;228:5;224:16;273:3;264:6;259:3;255:16;252:25;249:112;;;280:79;;:::i;:::-;249:112;370:41;404:6;399:3;394;370:41;:::i;:::-;90:327;7:410;;;;;:::o;423:412::-;501:5;526:66;542:49;584:6;542:49;:::i;:::-;526:66;:::i;:::-;517:75;;615:6;608:5;601:21;653:4;646:5;642:16;691:3;682:6;677:3;673:16;670:25;667:112;;;698:79;;:::i;:::-;667:112;788:41;822:6;817:3;812;788:41;:::i;:::-;507:328;423:412;;;;;:::o;841:139::-;887:5;925:6;912:20;903:29;;941:33;968:5;941:33;:::i;:::-;841:139;;;;:::o;986:133::-;1029:5;1067:6;1054:20;1045:29;;1083:30;1107:5;1083:30;:::i;:::-;986:133;;;;:::o;1125:137::-;1170:5;1208:6;1195:20;1186:29;;1224:32;1250:5;1224:32;:::i;:::-;1125:137;;;;:::o;1268:141::-;1324:5;1355:6;1349:13;1340:22;;1371:32;1397:5;1371:32;:::i;:::-;1268:141;;;;:::o;1428:338::-;1483:5;1532:3;1525:4;1517:6;1513:17;1509:27;1499:122;;1540:79;;:::i;:::-;1499:122;1657:6;1644:20;1682:78;1756:3;1748:6;1741:4;1733:6;1729:17;1682:78;:::i;:::-;1673:87;;1489:277;1428:338;;;;:::o;1786:340::-;1842:5;1891:3;1884:4;1876:6;1872:17;1868:27;1858:122;;1899:79;;:::i;:::-;1858:122;2016:6;2003:20;2041:79;2116:3;2108:6;2101:4;2093:6;2089:17;2041:79;:::i;:::-;2032:88;;1848:278;1786:340;;;;:::o;2132:139::-;2178:5;2216:6;2203:20;2194:29;;2232:33;2259:5;2232:33;:::i;:::-;2132:139;;;;:::o;2277:329::-;2336:6;2385:2;2373:9;2364:7;2360:23;2356:32;2353:119;;;2391:79;;:::i;:::-;2353:119;2511:1;2536:53;2581:7;2572:6;2561:9;2557:22;2536:53;:::i;:::-;2526:63;;2482:117;2277:329;;;;:::o;2612:474::-;2680:6;2688;2737:2;2725:9;2716:7;2712:23;2708:32;2705:119;;;2743:79;;:::i;:::-;2705:119;2863:1;2888:53;2933:7;2924:6;2913:9;2909:22;2888:53;:::i;:::-;2878:63;;2834:117;2990:2;3016:53;3061:7;3052:6;3041:9;3037:22;3016:53;:::i;:::-;3006:63;;2961:118;2612:474;;;;;:::o;3092:619::-;3169:6;3177;3185;3234:2;3222:9;3213:7;3209:23;3205:32;3202:119;;;3240:79;;:::i;:::-;3202:119;3360:1;3385:53;3430:7;3421:6;3410:9;3406:22;3385:53;:::i;:::-;3375:63;;3331:117;3487:2;3513:53;3558:7;3549:6;3538:9;3534:22;3513:53;:::i;:::-;3503:63;;3458:118;3615:2;3641:53;3686:7;3677:6;3666:9;3662:22;3641:53;:::i;:::-;3631:63;;3586:118;3092:619;;;;;:::o;3717:943::-;3812:6;3820;3828;3836;3885:3;3873:9;3864:7;3860:23;3856:33;3853:120;;;3892:79;;:::i;:::-;3853:120;4012:1;4037:53;4082:7;4073:6;4062:9;4058:22;4037:53;:::i;:::-;4027:63;;3983:117;4139:2;4165:53;4210:7;4201:6;4190:9;4186:22;4165:53;:::i;:::-;4155:63;;4110:118;4267:2;4293:53;4338:7;4329:6;4318:9;4314:22;4293:53;:::i;:::-;4283:63;;4238:118;4423:2;4412:9;4408:18;4395:32;4454:18;4446:6;4443:30;4440:117;;;4476:79;;:::i;:::-;4440:117;4581:62;4635:7;4626:6;4615:9;4611:22;4581:62;:::i;:::-;4571:72;;4366:287;3717:943;;;;;;;:::o;4666:468::-;4731:6;4739;4788:2;4776:9;4767:7;4763:23;4759:32;4756:119;;;4794:79;;:::i;:::-;4756:119;4914:1;4939:53;4984:7;4975:6;4964:9;4960:22;4939:53;:::i;:::-;4929:63;;4885:117;5041:2;5067:50;5109:7;5100:6;5089:9;5085:22;5067:50;:::i;:::-;5057:60;;5012:115;4666:468;;;;;:::o;5140:474::-;5208:6;5216;5265:2;5253:9;5244:7;5240:23;5236:32;5233:119;;;5271:79;;:::i;:::-;5233:119;5391:1;5416:53;5461:7;5452:6;5441:9;5437:22;5416:53;:::i;:::-;5406:63;;5362:117;5518:2;5544:53;5589:7;5580:6;5569:9;5565:22;5544:53;:::i;:::-;5534:63;;5489:118;5140:474;;;;;:::o;5620:323::-;5676:6;5725:2;5713:9;5704:7;5700:23;5696:32;5693:119;;;5731:79;;:::i;:::-;5693:119;5851:1;5876:50;5918:7;5909:6;5898:9;5894:22;5876:50;:::i;:::-;5866:60;;5822:114;5620:323;;;;:::o;5949:327::-;6007:6;6056:2;6044:9;6035:7;6031:23;6027:32;6024:119;;;6062:79;;:::i;:::-;6024:119;6182:1;6207:52;6251:7;6242:6;6231:9;6227:22;6207:52;:::i;:::-;6197:62;;6153:116;5949:327;;;;:::o;6282:349::-;6351:6;6400:2;6388:9;6379:7;6375:23;6371:32;6368:119;;;6406:79;;:::i;:::-;6368:119;6526:1;6551:63;6606:7;6597:6;6586:9;6582:22;6551:63;:::i;:::-;6541:73;;6497:127;6282:349;;;;:::o;6637:509::-;6706:6;6755:2;6743:9;6734:7;6730:23;6726:32;6723:119;;;6761:79;;:::i;:::-;6723:119;6909:1;6898:9;6894:17;6881:31;6939:18;6931:6;6928:30;6925:117;;;6961:79;;:::i;:::-;6925:117;7066:63;7121:7;7112:6;7101:9;7097:22;7066:63;:::i;:::-;7056:73;;6852:287;6637:509;;;;:::o;7152:329::-;7211:6;7260:2;7248:9;7239:7;7235:23;7231:32;7228:119;;;7266:79;;:::i;:::-;7228:119;7386:1;7411:53;7456:7;7447:6;7436:9;7432:22;7411:53;:::i;:::-;7401:63;;7357:117;7152:329;;;;:::o;7487:619::-;7564:6;7572;7580;7629:2;7617:9;7608:7;7604:23;7600:32;7597:119;;;7635:79;;:::i;:::-;7597:119;7755:1;7780:53;7825:7;7816:6;7805:9;7801:22;7780:53;:::i;:::-;7770:63;;7726:117;7882:2;7908:53;7953:7;7944:6;7933:9;7929:22;7908:53;:::i;:::-;7898:63;;7853:118;8010:2;8036:53;8081:7;8072:6;8061:9;8057:22;8036:53;:::i;:::-;8026:63;;7981:118;7487:619;;;;;:::o;8112:179::-;8181:10;8202:46;8244:3;8236:6;8202:46;:::i;:::-;8280:4;8275:3;8271:14;8257:28;;8112:179;;;;:::o;8297:118::-;8384:24;8402:5;8384:24;:::i;:::-;8379:3;8372:37;8297:118;;:::o;8421:157::-;8526:45;8546:24;8564:5;8546:24;:::i;:::-;8526:45;:::i;:::-;8521:3;8514:58;8421:157;;:::o;8614:732::-;8733:3;8762:54;8810:5;8762:54;:::i;:::-;8832:86;8911:6;8906:3;8832:86;:::i;:::-;8825:93;;8942:56;8992:5;8942:56;:::i;:::-;9021:7;9052:1;9037:284;9062:6;9059:1;9056:13;9037:284;;;9138:6;9132:13;9165:63;9224:3;9209:13;9165:63;:::i;:::-;9158:70;;9251:60;9304:6;9251:60;:::i;:::-;9241:70;;9097:224;9084:1;9081;9077:9;9072:14;;9037:284;;;9041:14;9337:3;9330:10;;8738:608;;;8614:732;;;;:::o;9352:109::-;9433:21;9448:5;9433:21;:::i;:::-;9428:3;9421:34;9352:109;;:::o;9467:360::-;9553:3;9581:38;9613:5;9581:38;:::i;:::-;9635:70;9698:6;9693:3;9635:70;:::i;:::-;9628:77;;9714:52;9759:6;9754:3;9747:4;9740:5;9736:16;9714:52;:::i;:::-;9791:29;9813:6;9791:29;:::i;:::-;9786:3;9782:39;9775:46;;9557:270;9467:360;;;;:::o;9833:364::-;9921:3;9949:39;9982:5;9949:39;:::i;:::-;10004:71;10068:6;10063:3;10004:71;:::i;:::-;9997:78;;10084:52;10129:6;10124:3;10117:4;10110:5;10106:16;10084:52;:::i;:::-;10161:29;10183:6;10161:29;:::i;:::-;10156:3;10152:39;10145:46;;9925:272;9833:364;;;;:::o;10203:377::-;10309:3;10337:39;10370:5;10337:39;:::i;:::-;10392:89;10474:6;10469:3;10392:89;:::i;:::-;10385:96;;10490:52;10535:6;10530:3;10523:4;10516:5;10512:16;10490:52;:::i;:::-;10567:6;10562:3;10558:16;10551:23;;10313:267;10203:377;;;;:::o;10610:845::-;10713:3;10750:5;10744:12;10779:36;10805:9;10779:36;:::i;:::-;10831:89;10913:6;10908:3;10831:89;:::i;:::-;10824:96;;10951:1;10940:9;10936:17;10967:1;10962:137;;;;11113:1;11108:341;;;;10929:520;;10962:137;11046:4;11042:9;11031;11027:25;11022:3;11015:38;11082:6;11077:3;11073:16;11066:23;;10962:137;;11108:341;11175:38;11207:5;11175:38;:::i;:::-;11235:1;11249:154;11263:6;11260:1;11257:13;11249:154;;;11337:7;11331:14;11327:1;11322:3;11318:11;11311:35;11387:1;11378:7;11374:15;11363:26;;11285:4;11282:1;11278:12;11273:17;;11249:154;;;11432:6;11427:3;11423:16;11416:23;;11115:334;;10929:520;;10717:738;;10610:845;;;;:::o;11461:366::-;11603:3;11624:67;11688:2;11683:3;11624:67;:::i;:::-;11617:74;;11700:93;11789:3;11700:93;:::i;:::-;11818:2;11813:3;11809:12;11802:19;;11461:366;;;:::o;11833:::-;11975:3;11996:67;12060:2;12055:3;11996:67;:::i;:::-;11989:74;;12072:93;12161:3;12072:93;:::i;:::-;12190:2;12185:3;12181:12;12174:19;;11833:366;;;:::o;12205:::-;12347:3;12368:67;12432:2;12427:3;12368:67;:::i;:::-;12361:74;;12444:93;12533:3;12444:93;:::i;:::-;12562:2;12557:3;12553:12;12546:19;;12205:366;;;:::o;12577:::-;12719:3;12740:67;12804:2;12799:3;12740:67;:::i;:::-;12733:74;;12816:93;12905:3;12816:93;:::i;:::-;12934:2;12929:3;12925:12;12918:19;;12577:366;;;:::o;12949:::-;13091:3;13112:67;13176:2;13171:3;13112:67;:::i;:::-;13105:74;;13188:93;13277:3;13188:93;:::i;:::-;13306:2;13301:3;13297:12;13290:19;;12949:366;;;:::o;13321:::-;13463:3;13484:67;13548:2;13543:3;13484:67;:::i;:::-;13477:74;;13560:93;13649:3;13560:93;:::i;:::-;13678:2;13673:3;13669:12;13662:19;;13321:366;;;:::o;13693:::-;13835:3;13856:67;13920:2;13915:3;13856:67;:::i;:::-;13849:74;;13932:93;14021:3;13932:93;:::i;:::-;14050:2;14045:3;14041:12;14034:19;;13693:366;;;:::o;14065:::-;14207:3;14228:67;14292:2;14287:3;14228:67;:::i;:::-;14221:74;;14304:93;14393:3;14304:93;:::i;:::-;14422:2;14417:3;14413:12;14406:19;;14065:366;;;:::o;14437:::-;14579:3;14600:67;14664:2;14659:3;14600:67;:::i;:::-;14593:74;;14676:93;14765:3;14676:93;:::i;:::-;14794:2;14789:3;14785:12;14778:19;;14437:366;;;:::o;14809:::-;14951:3;14972:67;15036:2;15031:3;14972:67;:::i;:::-;14965:74;;15048:93;15137:3;15048:93;:::i;:::-;15166:2;15161:3;15157:12;15150:19;;14809:366;;;:::o;15181:::-;15323:3;15344:67;15408:2;15403:3;15344:67;:::i;:::-;15337:74;;15420:93;15509:3;15420:93;:::i;:::-;15538:2;15533:3;15529:12;15522:19;;15181:366;;;:::o;15553:::-;15695:3;15716:67;15780:2;15775:3;15716:67;:::i;:::-;15709:74;;15792:93;15881:3;15792:93;:::i;:::-;15910:2;15905:3;15901:12;15894:19;;15553:366;;;:::o;15925:::-;16067:3;16088:67;16152:2;16147:3;16088:67;:::i;:::-;16081:74;;16164:93;16253:3;16164:93;:::i;:::-;16282:2;16277:3;16273:12;16266:19;;15925:366;;;:::o;16297:::-;16439:3;16460:67;16524:2;16519:3;16460:67;:::i;:::-;16453:74;;16536:93;16625:3;16536:93;:::i;:::-;16654:2;16649:3;16645:12;16638:19;;16297:366;;;:::o;16669:::-;16811:3;16832:67;16896:2;16891:3;16832:67;:::i;:::-;16825:74;;16908:93;16997:3;16908:93;:::i;:::-;17026:2;17021:3;17017:12;17010:19;;16669:366;;;:::o;17041:::-;17183:3;17204:67;17268:2;17263:3;17204:67;:::i;:::-;17197:74;;17280:93;17369:3;17280:93;:::i;:::-;17398:2;17393:3;17389:12;17382:19;;17041:366;;;:::o;17413:::-;17555:3;17576:67;17640:2;17635:3;17576:67;:::i;:::-;17569:74;;17652:93;17741:3;17652:93;:::i;:::-;17770:2;17765:3;17761:12;17754:19;;17413:366;;;:::o;17785:::-;17927:3;17948:67;18012:2;18007:3;17948:67;:::i;:::-;17941:74;;18024:93;18113:3;18024:93;:::i;:::-;18142:2;18137:3;18133:12;18126:19;;17785:366;;;:::o;18157:::-;18299:3;18320:67;18384:2;18379:3;18320:67;:::i;:::-;18313:74;;18396:93;18485:3;18396:93;:::i;:::-;18514:2;18509:3;18505:12;18498:19;;18157:366;;;:::o;18529:::-;18671:3;18692:67;18756:2;18751:3;18692:67;:::i;:::-;18685:74;;18768:93;18857:3;18768:93;:::i;:::-;18886:2;18881:3;18877:12;18870:19;;18529:366;;;:::o;18901:::-;19043:3;19064:67;19128:2;19123:3;19064:67;:::i;:::-;19057:74;;19140:93;19229:3;19140:93;:::i;:::-;19258:2;19253:3;19249:12;19242:19;;18901:366;;;:::o;19273:398::-;19432:3;19453:83;19534:1;19529:3;19453:83;:::i;:::-;19446:90;;19545:93;19634:3;19545:93;:::i;:::-;19663:1;19658:3;19654:11;19647:18;;19273:398;;;:::o;19677:366::-;19819:3;19840:67;19904:2;19899:3;19840:67;:::i;:::-;19833:74;;19916:93;20005:3;19916:93;:::i;:::-;20034:2;20029:3;20025:12;20018:19;;19677:366;;;:::o;20049:::-;20191:3;20212:67;20276:2;20271:3;20212:67;:::i;:::-;20205:74;;20288:93;20377:3;20288:93;:::i;:::-;20406:2;20401:3;20397:12;20390:19;;20049:366;;;:::o;20421:::-;20563:3;20584:67;20648:2;20643:3;20584:67;:::i;:::-;20577:74;;20660:93;20749:3;20660:93;:::i;:::-;20778:2;20773:3;20769:12;20762:19;;20421:366;;;:::o;20793:108::-;20870:24;20888:5;20870:24;:::i;:::-;20865:3;20858:37;20793:108;;:::o;20907:118::-;20994:24;21012:5;20994:24;:::i;:::-;20989:3;20982:37;20907:118;;:::o;21031:157::-;21136:45;21156:24;21174:5;21156:24;:::i;:::-;21136:45;:::i;:::-;21131:3;21124:58;21031:157;;:::o;21194:589::-;21419:3;21441:95;21532:3;21523:6;21441:95;:::i;:::-;21434:102;;21553:95;21644:3;21635:6;21553:95;:::i;:::-;21546:102;;21665:92;21753:3;21744:6;21665:92;:::i;:::-;21658:99;;21774:3;21767:10;;21194:589;;;;;;:::o;21789:379::-;21973:3;21995:147;22138:3;21995:147;:::i;:::-;21988:154;;22159:3;22152:10;;21789:379;;;:::o;22174:679::-;22370:3;22385:75;22456:3;22447:6;22385:75;:::i;:::-;22485:2;22480:3;22476:12;22469:19;;22498:75;22569:3;22560:6;22498:75;:::i;:::-;22598:2;22593:3;22589:12;22582:19;;22611:75;22682:3;22673:6;22611:75;:::i;:::-;22711:2;22706:3;22702:12;22695:19;;22724:75;22795:3;22786:6;22724:75;:::i;:::-;22824:2;22819:3;22815:12;22808:19;;22844:3;22837:10;;22174:679;;;;;;;:::o;22859:222::-;22952:4;22990:2;22979:9;22975:18;22967:26;;23003:71;23071:1;23060:9;23056:17;23047:6;23003:71;:::i;:::-;22859:222;;;;:::o;23087:640::-;23282:4;23320:3;23309:9;23305:19;23297:27;;23334:71;23402:1;23391:9;23387:17;23378:6;23334:71;:::i;:::-;23415:72;23483:2;23472:9;23468:18;23459:6;23415:72;:::i;:::-;23497;23565:2;23554:9;23550:18;23541:6;23497:72;:::i;:::-;23616:9;23610:4;23606:20;23601:2;23590:9;23586:18;23579:48;23644:76;23715:4;23706:6;23644:76;:::i;:::-;23636:84;;23087:640;;;;;;;:::o;23733:373::-;23876:4;23914:2;23903:9;23899:18;23891:26;;23963:9;23957:4;23953:20;23949:1;23938:9;23934:17;23927:47;23991:108;24094:4;24085:6;23991:108;:::i;:::-;23983:116;;23733:373;;;;:::o;24112:210::-;24199:4;24237:2;24226:9;24222:18;24214:26;;24250:65;24312:1;24301:9;24297:17;24288:6;24250:65;:::i;:::-;24112:210;;;;:::o;24328:313::-;24441:4;24479:2;24468:9;24464:18;24456:26;;24528:9;24522:4;24518:20;24514:1;24503:9;24499:17;24492:47;24556:78;24629:4;24620:6;24556:78;:::i;:::-;24548:86;;24328:313;;;;:::o;24647:419::-;24813:4;24851:2;24840:9;24836:18;24828:26;;24900:9;24894:4;24890:20;24886:1;24875:9;24871:17;24864:47;24928:131;25054:4;24928:131;:::i;:::-;24920:139;;24647:419;;;:::o;25072:::-;25238:4;25276:2;25265:9;25261:18;25253:26;;25325:9;25319:4;25315:20;25311:1;25300:9;25296:17;25289:47;25353:131;25479:4;25353:131;:::i;:::-;25345:139;;25072:419;;;:::o;25497:::-;25663:4;25701:2;25690:9;25686:18;25678:26;;25750:9;25744:4;25740:20;25736:1;25725:9;25721:17;25714:47;25778:131;25904:4;25778:131;:::i;:::-;25770:139;;25497:419;;;:::o;25922:::-;26088:4;26126:2;26115:9;26111:18;26103:26;;26175:9;26169:4;26165:20;26161:1;26150:9;26146:17;26139:47;26203:131;26329:4;26203:131;:::i;:::-;26195:139;;25922:419;;;:::o;26347:::-;26513:4;26551:2;26540:9;26536:18;26528:26;;26600:9;26594:4;26590:20;26586:1;26575:9;26571:17;26564:47;26628:131;26754:4;26628:131;:::i;:::-;26620:139;;26347:419;;;:::o;26772:::-;26938:4;26976:2;26965:9;26961:18;26953:26;;27025:9;27019:4;27015:20;27011:1;27000:9;26996:17;26989:47;27053:131;27179:4;27053:131;:::i;:::-;27045:139;;26772:419;;;:::o;27197:::-;27363:4;27401:2;27390:9;27386:18;27378:26;;27450:9;27444:4;27440:20;27436:1;27425:9;27421:17;27414:47;27478:131;27604:4;27478:131;:::i;:::-;27470:139;;27197:419;;;:::o;27622:::-;27788:4;27826:2;27815:9;27811:18;27803:26;;27875:9;27869:4;27865:20;27861:1;27850:9;27846:17;27839:47;27903:131;28029:4;27903:131;:::i;:::-;27895:139;;27622:419;;;:::o;28047:::-;28213:4;28251:2;28240:9;28236:18;28228:26;;28300:9;28294:4;28290:20;28286:1;28275:9;28271:17;28264:47;28328:131;28454:4;28328:131;:::i;:::-;28320:139;;28047:419;;;:::o;28472:::-;28638:4;28676:2;28665:9;28661:18;28653:26;;28725:9;28719:4;28715:20;28711:1;28700:9;28696:17;28689:47;28753:131;28879:4;28753:131;:::i;:::-;28745:139;;28472:419;;;:::o;28897:::-;29063:4;29101:2;29090:9;29086:18;29078:26;;29150:9;29144:4;29140:20;29136:1;29125:9;29121:17;29114:47;29178:131;29304:4;29178:131;:::i;:::-;29170:139;;28897:419;;;:::o;29322:::-;29488:4;29526:2;29515:9;29511:18;29503:26;;29575:9;29569:4;29565:20;29561:1;29550:9;29546:17;29539:47;29603:131;29729:4;29603:131;:::i;:::-;29595:139;;29322:419;;;:::o;29747:::-;29913:4;29951:2;29940:9;29936:18;29928:26;;30000:9;29994:4;29990:20;29986:1;29975:9;29971:17;29964:47;30028:131;30154:4;30028:131;:::i;:::-;30020:139;;29747:419;;;:::o;30172:::-;30338:4;30376:2;30365:9;30361:18;30353:26;;30425:9;30419:4;30415:20;30411:1;30400:9;30396:17;30389:47;30453:131;30579:4;30453:131;:::i;:::-;30445:139;;30172:419;;;:::o;30597:::-;30763:4;30801:2;30790:9;30786:18;30778:26;;30850:9;30844:4;30840:20;30836:1;30825:9;30821:17;30814:47;30878:131;31004:4;30878:131;:::i;:::-;30870:139;;30597:419;;;:::o;31022:::-;31188:4;31226:2;31215:9;31211:18;31203:26;;31275:9;31269:4;31265:20;31261:1;31250:9;31246:17;31239:47;31303:131;31429:4;31303:131;:::i;:::-;31295:139;;31022:419;;;:::o;31447:::-;31613:4;31651:2;31640:9;31636:18;31628:26;;31700:9;31694:4;31690:20;31686:1;31675:9;31671:17;31664:47;31728:131;31854:4;31728:131;:::i;:::-;31720:139;;31447:419;;;:::o;31872:::-;32038:4;32076:2;32065:9;32061:18;32053:26;;32125:9;32119:4;32115:20;32111:1;32100:9;32096:17;32089:47;32153:131;32279:4;32153:131;:::i;:::-;32145:139;;31872:419;;;:::o;32297:::-;32463:4;32501:2;32490:9;32486:18;32478:26;;32550:9;32544:4;32540:20;32536:1;32525:9;32521:17;32514:47;32578:131;32704:4;32578:131;:::i;:::-;32570:139;;32297:419;;;:::o;32722:::-;32888:4;32926:2;32915:9;32911:18;32903:26;;32975:9;32969:4;32965:20;32961:1;32950:9;32946:17;32939:47;33003:131;33129:4;33003:131;:::i;:::-;32995:139;;32722:419;;;:::o;33147:::-;33313:4;33351:2;33340:9;33336:18;33328:26;;33400:9;33394:4;33390:20;33386:1;33375:9;33371:17;33364:47;33428:131;33554:4;33428:131;:::i;:::-;33420:139;;33147:419;;;:::o;33572:::-;33738:4;33776:2;33765:9;33761:18;33753:26;;33825:9;33819:4;33815:20;33811:1;33800:9;33796:17;33789:47;33853:131;33979:4;33853:131;:::i;:::-;33845:139;;33572:419;;;:::o;33997:::-;34163:4;34201:2;34190:9;34186:18;34178:26;;34250:9;34244:4;34240:20;34236:1;34225:9;34221:17;34214:47;34278:131;34404:4;34278:131;:::i;:::-;34270:139;;33997:419;;;:::o;34422:::-;34588:4;34626:2;34615:9;34611:18;34603:26;;34675:9;34669:4;34665:20;34661:1;34650:9;34646:17;34639:47;34703:131;34829:4;34703:131;:::i;:::-;34695:139;;34422:419;;;:::o;34847:222::-;34940:4;34978:2;34967:9;34963:18;34955:26;;34991:71;35059:1;35048:9;35044:17;35035:6;34991:71;:::i;:::-;34847:222;;;;:::o;35075:129::-;35109:6;35136:20;;:::i;:::-;35126:30;;35165:33;35193:4;35185:6;35165:33;:::i;:::-;35075:129;;;:::o;35210:75::-;35243:6;35276:2;35270:9;35260:19;;35210:75;:::o;35291:307::-;35352:4;35442:18;35434:6;35431:30;35428:56;;;35464:18;;:::i;:::-;35428:56;35502:29;35524:6;35502:29;:::i;:::-;35494:37;;35586:4;35580;35576:15;35568:23;;35291:307;;;:::o;35604:308::-;35666:4;35756:18;35748:6;35745:30;35742:56;;;35778:18;;:::i;:::-;35742:56;35816:29;35838:6;35816:29;:::i;:::-;35808:37;;35900:4;35894;35890:15;35882:23;;35604:308;;;:::o;35918:132::-;35985:4;36008:3;36000:11;;36038:4;36033:3;36029:14;36021:22;;35918:132;;;:::o;36056:141::-;36105:4;36128:3;36120:11;;36151:3;36148:1;36141:14;36185:4;36182:1;36172:18;36164:26;;36056:141;;;:::o;36203:114::-;36270:6;36304:5;36298:12;36288:22;;36203:114;;;:::o;36323:98::-;36374:6;36408:5;36402:12;36392:22;;36323:98;;;:::o;36427:99::-;36479:6;36513:5;36507:12;36497:22;;36427:99;;;:::o;36532:113::-;36602:4;36634;36629:3;36625:14;36617:22;;36532:113;;;:::o;36651:184::-;36750:11;36784:6;36779:3;36772:19;36824:4;36819:3;36815:14;36800:29;;36651:184;;;;:::o;36841:168::-;36924:11;36958:6;36953:3;36946:19;36998:4;36993:3;36989:14;36974:29;;36841:168;;;;:::o;37015:147::-;37116:11;37153:3;37138:18;;37015:147;;;;:::o;37168:169::-;37252:11;37286:6;37281:3;37274:19;37326:4;37321:3;37317:14;37302:29;;37168:169;;;;:::o;37343:148::-;37445:11;37482:3;37467:18;;37343:148;;;;:::o;37497:305::-;37537:3;37556:20;37574:1;37556:20;:::i;:::-;37551:25;;37590:20;37608:1;37590:20;:::i;:::-;37585:25;;37744:1;37676:66;37672:74;37669:1;37666:81;37663:107;;;37750:18;;:::i;:::-;37663:107;37794:1;37791;37787:9;37780:16;;37497:305;;;;:::o;37808:185::-;37848:1;37865:20;37883:1;37865:20;:::i;:::-;37860:25;;37899:20;37917:1;37899:20;:::i;:::-;37894:25;;37938:1;37928:35;;37943:18;;:::i;:::-;37928:35;37985:1;37982;37978:9;37973:14;;37808:185;;;;:::o;37999:348::-;38039:7;38062:20;38080:1;38062:20;:::i;:::-;38057:25;;38096:20;38114:1;38096:20;:::i;:::-;38091:25;;38284:1;38216:66;38212:74;38209:1;38206:81;38201:1;38194:9;38187:17;38183:105;38180:131;;;38291:18;;:::i;:::-;38180:131;38339:1;38336;38332:9;38321:20;;37999:348;;;;:::o;38353:191::-;38393:4;38413:20;38431:1;38413:20;:::i;:::-;38408:25;;38447:20;38465:1;38447:20;:::i;:::-;38442:25;;38486:1;38483;38480:8;38477:34;;;38491:18;;:::i;:::-;38477:34;38536:1;38533;38529:9;38521:17;;38353:191;;;;:::o;38550:96::-;38587:7;38616:24;38634:5;38616:24;:::i;:::-;38605:35;;38550:96;;;:::o;38652:90::-;38686:7;38729:5;38722:13;38715:21;38704:32;;38652:90;;;:::o;38748:149::-;38784:7;38824:66;38817:5;38813:78;38802:89;;38748:149;;;:::o;38903:126::-;38940:7;38980:42;38973:5;38969:54;38958:65;;38903:126;;;:::o;39035:77::-;39072:7;39101:5;39090:16;;39035:77;;;:::o;39118:154::-;39202:6;39197:3;39192;39179:30;39264:1;39255:6;39250:3;39246:16;39239:27;39118:154;;;:::o;39278:307::-;39346:1;39356:113;39370:6;39367:1;39364:13;39356:113;;;39455:1;39450:3;39446:11;39440:18;39436:1;39431:3;39427:11;39420:39;39392:2;39389:1;39385:10;39380:15;;39356:113;;;39487:6;39484:1;39481:13;39478:101;;;39567:1;39558:6;39553:3;39549:16;39542:27;39478:101;39327:258;39278:307;;;:::o;39591:320::-;39635:6;39672:1;39666:4;39662:12;39652:22;;39719:1;39713:4;39709:12;39740:18;39730:81;;39796:4;39788:6;39784:17;39774:27;;39730:81;39858:2;39850:6;39847:14;39827:18;39824:38;39821:84;;;39877:18;;:::i;:::-;39821:84;39642:269;39591:320;;;:::o;39917:281::-;40000:27;40022:4;40000:27;:::i;:::-;39992:6;39988:40;40130:6;40118:10;40115:22;40094:18;40082:10;40079:34;40076:62;40073:88;;;40141:18;;:::i;:::-;40073:88;40181:10;40177:2;40170:22;39960:238;39917:281;;:::o;40204:233::-;40243:3;40266:24;40284:5;40266:24;:::i;:::-;40257:33;;40312:66;40305:5;40302:77;40299:103;;;40382:18;;:::i;:::-;40299:103;40429:1;40422:5;40418:13;40411:20;;40204:233;;;:::o;40443:100::-;40482:7;40511:26;40531:5;40511:26;:::i;:::-;40500:37;;40443:100;;;:::o;40549:94::-;40588:7;40617:20;40631:5;40617:20;:::i;:::-;40606:31;;40549:94;;;:::o;40649:79::-;40688:7;40717:5;40706:16;;40649:79;;;:::o;40734:176::-;40766:1;40783:20;40801:1;40783:20;:::i;:::-;40778:25;;40817:20;40835:1;40817:20;:::i;:::-;40812:25;;40856:1;40846:35;;40861:18;;:::i;:::-;40846:35;40902:1;40899;40895:9;40890:14;;40734:176;;;;:::o;40916:180::-;40964:77;40961:1;40954:88;41061:4;41058:1;41051:15;41085:4;41082:1;41075:15;41102:180;41150:77;41147:1;41140:88;41247:4;41244:1;41237:15;41271:4;41268:1;41261:15;41288:180;41336:77;41333:1;41326:88;41433:4;41430:1;41423:15;41457:4;41454:1;41447:15;41474:180;41522:77;41519:1;41512:88;41619:4;41616:1;41609:15;41643:4;41640:1;41633:15;41660:180;41708:77;41705:1;41698:88;41805:4;41802:1;41795:15;41829:4;41826:1;41819:15;41846:180;41894:77;41891:1;41884:88;41991:4;41988:1;41981:15;42015:4;42012:1;42005:15;42032:117;42141:1;42138;42131:12;42155:117;42264:1;42261;42254:12;42278:117;42387:1;42384;42377:12;42401:117;42510:1;42507;42500:12;42524:102;42565:6;42616:2;42612:7;42607:2;42600:5;42596:14;42592:28;42582:38;;42524:102;;;:::o;42632:94::-;42665:8;42713:5;42709:2;42705:14;42684:35;;42632:94;;;:::o;42732:171::-;42872:23;42868:1;42860:6;42856:14;42849:47;42732:171;:::o;42909:230::-;43049:34;43045:1;43037:6;43033:14;43026:58;43118:13;43113:2;43105:6;43101:15;43094:38;42909:230;:::o;43145:237::-;43285:34;43281:1;43273:6;43269:14;43262:58;43354:20;43349:2;43341:6;43337:15;43330:45;43145:237;:::o;43388:225::-;43528:34;43524:1;43516:6;43512:14;43505:58;43597:8;43592:2;43584:6;43580:15;43573:33;43388:225;:::o;43619:224::-;43759:34;43755:1;43747:6;43743:14;43736:58;43828:7;43823:2;43815:6;43811:15;43804:32;43619:224;:::o;43849:178::-;43989:30;43985:1;43977:6;43973:14;43966:54;43849:178;:::o;44033:169::-;44173:21;44169:1;44161:6;44157:14;44150:45;44033:169;:::o;44208:223::-;44348:34;44344:1;44336:6;44332:14;44325:58;44417:6;44412:2;44404:6;44400:15;44393:31;44208:223;:::o;44437:175::-;44577:27;44573:1;44565:6;44561:14;44554:51;44437:175;:::o;44618:231::-;44758:34;44754:1;44746:6;44742:14;44735:58;44827:14;44822:2;44814:6;44810:15;44803:39;44618:231;:::o;44855:243::-;44995:34;44991:1;44983:6;44979:14;44972:58;45064:26;45059:2;45051:6;45047:15;45040:51;44855:243;:::o;45104:229::-;45244:34;45240:1;45232:6;45228:14;45221:58;45313:12;45308:2;45300:6;45296:15;45289:37;45104:229;:::o;45339:228::-;45479:34;45475:1;45467:6;45463:14;45456:58;45548:11;45543:2;45535:6;45531:15;45524:36;45339:228;:::o;45573:169::-;45713:21;45709:1;45701:6;45697:14;45690:45;45573:169;:::o;45748:182::-;45888:34;45884:1;45876:6;45872:14;45865:58;45748:182;:::o;45936:231::-;46076:34;46072:1;46064:6;46060:14;46053:58;46145:14;46140:2;46132:6;46128:15;46121:39;45936:231;:::o;46173:182::-;46313:34;46309:1;46301:6;46297:14;46290:58;46173:182;:::o;46361:171::-;46501:23;46497:1;46489:6;46485:14;46478:47;46361:171;:::o;46538:234::-;46678:34;46674:1;46666:6;46662:14;46655:58;46747:17;46742:2;46734:6;46730:15;46723:42;46538:234;:::o;46778:167::-;46918:19;46914:1;46906:6;46902:14;46895:43;46778:167;:::o;46951:220::-;47091:34;47087:1;47079:6;47075:14;47068:58;47160:3;47155:2;47147:6;47143:15;47136:28;46951:220;:::o;47177:114::-;;:::o;47297:236::-;47437:34;47433:1;47425:6;47421:14;47414:58;47506:19;47501:2;47493:6;47489:15;47482:44;47297:236;:::o;47539:169::-;47679:21;47675:1;47667:6;47663:14;47656:45;47539:169;:::o;47714:231::-;47854:34;47850:1;47842:6;47838:14;47831:58;47923:14;47918:2;47910:6;47906:15;47899:39;47714:231;:::o;47951:122::-;48024:24;48042:5;48024:24;:::i;:::-;48017:5;48014:35;48004:63;;48063:1;48060;48053:12;48004:63;47951:122;:::o;48079:116::-;48149:21;48164:5;48149:21;:::i;:::-;48142:5;48139:32;48129:60;;48185:1;48182;48175:12;48129:60;48079:116;:::o;48201:120::-;48273:23;48290:5;48273:23;:::i;:::-;48266:5;48263:34;48253:62;;48311:1;48308;48301:12;48253:62;48201:120;:::o;48327:122::-;48400:24;48418:5;48400:24;:::i;:::-;48393:5;48390:35;48380:63;;48439:1;48436;48429:12;48380:63;48327:122;:::o

Swarm Source

ipfs://cffc0317aeb1e7fefdb7484f880ece7157b0845748b1600270d0cec77b6cc86e
Loading...
Loading
Loading...
Loading
[ Download: CSV Export  ]
[ Download: CSV Export  ]

A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.