ETH Price: $3,345.28 (+2.62%)
Gas: 1 Gwei

Token

SimpleGuys (SIMPLE)
 

Overview

Max Total Supply

868 SIMPLE

Holders

832

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Balance
1 SIMPLE
0x6BaFDA2192811B823fc3D4A2078E0A7024E9f73B
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:
SimpleGuys

Compiler Version
v0.8.9+commit.e5eed63a

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

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

pragma solidity ^0.8.0;

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

// OpenZeppelin Contracts (last updated v4.7.0) (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`.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes calldata data
    ) external;

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

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

pragma solidity ^0.8.1;

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

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// OpenZeppelin Contracts (last updated v4.7.0) (utils/Strings.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

    /**
     * @dev Converts an `address` with fixed length of 20 bytes to its not checksummed ASCII `string` hexadecimal representation.
     */
    function toHexString(address addr) internal pure returns (string memory) {
        return toHexString(uint256(uint160(addr)), _ADDRESS_LENGTH);
    }
}

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


// OpenZeppelin Contracts (last updated v4.7.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: address zero is not a valid owner");
        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: invalid token ID");
        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) {
        _requireMinted(tokenId);

        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 overridden 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 token owner nor approved for all"
        );

        _approve(to, tokenId);
    }

    /**
     * @dev See {IERC721-getApproved}.
     */
    function getApproved(uint256 tokenId) public view virtual override returns (address) {
        _requireMinted(tokenId);

        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: caller is not token 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: caller is not token 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) {
        address owner = ERC721.ownerOf(tokenId);
        return (spender == owner || isApprovedForAll(owner, spender) || getApproved(tokenId) == 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 an {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 an {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 Reverts if the `tokenId` has not been minted yet.
     */
    function _requireMinted(uint256 tokenId) internal view virtual {
        require(_exists(tokenId), "ERC721: invalid token ID");
    }

    /**
     * @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 {
                    /// @solidity memory-safe-assembly
                    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 {}
}

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

pragma solidity ^0.8.0;

/**
 * @title Counters
 * @author Matt Condon (@shrugs)
 * @dev Provides counters that can only be incremented, decremented or reset. This can be used e.g. to track the number
 * of elements in a mapping, issuing ERC721 ids, or counting request ids.
 *
 * Include with `using Counters for Counters.Counter;`
 */
library Counters {
    struct Counter {
        // This variable should never be directly accessed by users of the library: interactions must be restricted to
        // the library's function. As of Solidity v0.5.2, this cannot be enforced, though there is a proposal to add
        // this feature: see https://github.com/ethereum/solidity/issues/4637
        uint256 _value; // default: 0
    }

    function current(Counter storage counter) internal view returns (uint256) {
        return counter._value;
    }

    function increment(Counter storage counter) internal {
        unchecked {
            counter._value += 1;
        }
    }

    function decrement(Counter storage counter) internal {
        uint256 value = counter._value;
        require(value > 0, "Counter: decrement overflow");
        unchecked {
            counter._value = value - 1;
        }
    }

    function reset(Counter storage counter) internal {
        counter._value = 0;
    }
}

// OpenZeppelin Contracts (last updated v4.7.0) (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 Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        _checkOwner();
        _;
    }

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

    /**
     * @dev Throws if the sender is not the owner.
     */
    function _checkOwner() internal view virtual {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
    }

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

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

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

// OpenZeppelin Contracts (last updated v4.7.0) (token/ERC721/extensions/ERC721URIStorage.sol)

pragma solidity ^0.8.0;

/**
 * @dev ERC721 token with storage based token URI management.
 */
abstract contract ERC721URIStorage is ERC721 {
    using Strings for uint256;

    // Optional mapping for token URIs
    mapping(uint256 => string) private _tokenURIs;

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

        string memory _tokenURI = _tokenURIs[tokenId];
        string memory base = _baseURI();

        // If there is no base URI, return the token URI.
        if (bytes(base).length == 0) {
            return _tokenURI;
        }
        // If both are set, concatenate the baseURI and tokenURI (via abi.encodePacked).
        if (bytes(_tokenURI).length > 0) {
            return string(abi.encodePacked(base, _tokenURI));
        }

        return super.tokenURI(tokenId);
    }

    /**
     * @dev Sets `_tokenURI` as the tokenURI of `tokenId`.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function _setTokenURI(uint256 tokenId, string memory _tokenURI) internal virtual {
        require(_exists(tokenId), "ERC721URIStorage: URI set of nonexistent token");
        _tokenURIs[tokenId] = _tokenURI;
    }

    /**
     * @dev See {ERC721-_burn}. This override additionally checks to see if a
     * token-specific URI was set for the token, and if so, it deletes the token URI from
     * the storage mapping.
     */
    function _burn(uint256 tokenId) internal virtual override {
        super._burn(tokenId);

        if (bytes(_tokenURIs[tokenId]).length != 0) {
            delete _tokenURIs[tokenId];
        }
    }
}

//Contract based on [https://docs.openzeppelin.com/contracts/3.x/erc721](https://docs.openzeppelin.com/contracts/3.x/erc721)
pragma solidity >=0.6.0 <0.9.0;
contract SimpleGuys is ERC721URIStorage, Ownable {
    using Counters for Counters.Counter;
    Counters.Counter private _tokenIds;

    uint256 public totalSupply;
    uint256 public collectionSize;
    uint256 public maxPerWallet;
    uint256 public simpleListCost;
    uint256 public devMints;

    string public baseURI;
    string public notRevealedURI;

    bool public simpleListMintEnabled = false;
    bool public revealed = false;

    mapping(address => uint256) public walletMints;

    constructor(
        uint256 maxPerWallet_,
        uint256 simpleListCost_,
        uint256 devMints_,
        string memory baseURI_,
        string memory notRevealedURI_
    ) ERC721("SimpleGuys", "SIMPLE") {
        totalSupply = 0;
        collectionSize = 4444;
        maxPerWallet = maxPerWallet_;
        simpleListCost = simpleListCost_;
        devMints = devMints_;
        baseURI = baseURI_;
        notRevealedURI = notRevealedURI_;
    }

    //Only Owner
    function reveal(bool reveal_) external onlyOwner {
        revealed = reveal_;
    }

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

    function setNotRevealedBaseURI(string memory _newBaseURI)
        external
        onlyOwner
    {
        notRevealedURI = _newBaseURI;
    }

    function setMaxPerWallet(uint256 maxPerWallet_) external onlyOwner {
        maxPerWallet = maxPerWallet_;
    }

    function setSimpleListCost(uint256 simpleListCost_) external onlyOwner {
        simpleListCost = simpleListCost_;
    }

    function setDevMints(uint256 devMints_) external onlyOwner {
        devMints = devMints_;
    }

    function setSimpleListMintEnabled(bool simpleListMintEnabled_)
        external
        onlyOwner
    {
        simpleListMintEnabled = simpleListMintEnabled_;
    }

    function withdraw(address to_) external onlyOwner {
        payable(to_).transfer(address(this).balance);
    }

    function devMint() external onlyOwner {
        require(walletMints[msg.sender] <= devMints, "Exceed dev mint");
        mint(devMints);
    }

    function getWalletMints() external view returns (uint256) {
        return walletMints[msg.sender];
    }

    function getTotalSupply() external view returns (uint256) {
        return totalSupply;
    }

    function getCollectionSize() external view returns (uint256) {
        return collectionSize;
    }

    function getWhitelistStatus() external view returns (bool) {
        return simpleListMintEnabled;
    }

    //Public

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

    function mint(uint256 quantity_) internal {
        require(quantity_ <= 3, "Too many mints");
        for (uint256 i = 0; i < quantity_; i++) {
            _tokenIds.increment();
            uint256 newItemId = _tokenIds.current();
            _safeMint(msg.sender, newItemId);
            totalSupply++;
        }

        walletMints[msg.sender] += quantity_;
    }

    function mintSimpleList(uint256 quantity_) external payable {
        require(simpleListMintEnabled, "Simple list minting is not enabled");
        require(
            totalSupply + quantity_ <= collectionSize,
            "All SimpleGuys have been minted"
        );
        require(
            walletMints[msg.sender] + quantity_ <= maxPerWallet,
            "Exceed max mint"
        );

        if (quantity_ == 1) {
            if (walletMints[msg.sender] == 0) {
                mint(quantity_);
            } else {
                require(
                    msg.value * quantity_ >= simpleListCost * quantity_,
                    "Not enough ether for mint"
                );
                mint(quantity_);
            }
        } else {
            if (walletMints[msg.sender] == 0) {
                require(
                    msg.value * (quantity_ - 1) >= simpleListCost * (quantity_ - 1),
                    "Not enough ether for mint"
                );
                mint(quantity_);
            } else {
                require(
                    msg.value * (quantity_) >= simpleListCost * (quantity_),
                    "Not enough ether for mint"
                );
                mint(quantity_);
            }
        }
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"uint256","name":"maxPerWallet_","type":"uint256"},{"internalType":"uint256","name":"simpleListCost_","type":"uint256"},{"internalType":"uint256","name":"devMints_","type":"uint256"},{"internalType":"string","name":"baseURI_","type":"string"},{"internalType":"string","name":"notRevealedURI_","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":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"collectionSize","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"devMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"devMints","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":"getCollectionSize","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getTotalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getWalletMints","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getWhitelistStatus","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPerWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity_","type":"uint256"}],"name":"mintSimpleList","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"notRevealedURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"reveal_","type":"bool"}],"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":"_newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"devMints_","type":"uint256"}],"name":"setDevMints","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"maxPerWallet_","type":"uint256"}],"name":"setMaxPerWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseURI","type":"string"}],"name":"setNotRevealedBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"simpleListCost_","type":"uint256"}],"name":"setSimpleListCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"simpleListMintEnabled_","type":"bool"}],"name":"setSimpleListMintEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"simpleListCost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"simpleListMintEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","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":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"walletMints","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to_","type":"address"}],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040526000601060006101000a81548160ff0219169083151502179055506000601060016101000a81548160ff0219169083151502179055503480156200004757600080fd5b506040516200412d3803806200412d83398181016040528101906200006d9190620004e6565b6040518060400160405280600a81526020017f53696d706c6547757973000000000000000000000000000000000000000000008152506040518060400160405280600681526020017f53494d504c4500000000000000000000000000000000000000000000000000008152508160009080519060200190620000f19291906200025e565b5080600190805190602001906200010a9291906200025e565b5050506200012d620001216200019060201b60201c565b6200019860201b60201c565b600060098190555061115c600a8190555084600b8190555083600c8190555082600d8190555081600e90805190602001906200016b9291906200025e565b5080600f9080519060200190620001849291906200025e565b50505050505062000611565b600033905090565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8280546200026c90620005db565b90600052602060002090601f016020900481019282620002905760008555620002dc565b82601f10620002ab57805160ff1916838001178555620002dc565b82800160010185558215620002dc579182015b82811115620002db578251825591602001919060010190620002be565b5b509050620002eb9190620002ef565b5090565b5b808211156200030a576000816000905550600101620002f0565b5090565b6000604051905090565b600080fd5b600080fd5b6000819050919050565b620003378162000322565b81146200034357600080fd5b50565b60008151905062000357816200032c565b92915050565b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b620003b28262000367565b810181811067ffffffffffffffff82111715620003d457620003d362000378565b5b80604052505050565b6000620003e96200030e565b9050620003f78282620003a7565b919050565b600067ffffffffffffffff8211156200041a576200041962000378565b5b620004258262000367565b9050602081019050919050565b60005b838110156200045257808201518184015260208101905062000435565b8381111562000462576000848401525b50505050565b60006200047f6200047984620003fc565b620003dd565b9050828152602081018484840111156200049e576200049d62000362565b5b620004ab84828562000432565b509392505050565b600082601f830112620004cb57620004ca6200035d565b5b8151620004dd84826020860162000468565b91505092915050565b600080600080600060a0868803121562000505576200050462000318565b5b6000620005158882890162000346565b9550506020620005288882890162000346565b94505060406200053b8882890162000346565b935050606086015167ffffffffffffffff8111156200055f576200055e6200031d565b5b6200056d88828901620004b3565b925050608086015167ffffffffffffffff8111156200059157620005906200031d565b5b6200059f88828901620004b3565b9150509295509295909350565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680620005f457607f821691505b602082108114156200060b576200060a620005ac565b5b50919050565b613b0c80620006216000396000f3fe60806040526004361061023b5760003560e01c8063722503801161012e578063bec0637c116100ab578063e268e4d31161006f578063e268e4d31461082c578063e8672aa014610855578063e985e9c514610880578063f0293fd3146108bd578063f2fde38b146108fa5761023b565b8063bec0637c14610747578063c4e41b2214610770578063c87b56dd1461079b578063ca43b305146107d8578063d7fc5e6c146108035761023b565b8063959000e4116100f2578063959000e41461067657806395d89b411461069f5780639ee4c938146106ca578063a22cb465146106f5578063b88d4fde1461071e5761023b565b806372250380146105b55780637a0767d0146105e05780637c69e2071461060b5780638da5cb5b14610622578063940cd05b1461064d5761023b565b8063453c2310116101bc5780636352211e116101805780636352211e146104ce5780636c0360eb1461050b57806370a0823114610536578063715018a6146105735780637155c1ea1461058a5761023b565b8063453c2310146103fb57806345c0f53314610426578063518302271461045157806351cff8d91461047c57806355f804b3146104a55761023b565b806318160ddd1161020357806318160ddd14610339578063194c29361461036457806323b872dd1461038d57806335612be9146103b657806342842e0e146103d25761023b565b806301ffc9a71461024057806306fdde031461027d578063081812fc146102a8578063095ea7b3146102e557806311e93af61461030e575b600080fd5b34801561024c57600080fd5b5061026760048036038101906102629190612700565b610923565b6040516102749190612748565b60405180910390f35b34801561028957600080fd5b50610292610a05565b60405161029f91906127fc565b60405180910390f35b3480156102b457600080fd5b506102cf60048036038101906102ca9190612854565b610a97565b6040516102dc91906128c2565b60405180910390f35b3480156102f157600080fd5b5061030c60048036038101906103079190612909565b610add565b005b34801561031a57600080fd5b50610323610bf5565b6040516103309190612958565b60405180910390f35b34801561034557600080fd5b5061034e610c3c565b60405161035b9190612958565b60405180910390f35b34801561037057600080fd5b5061038b60048036038101906103869190612aa8565b610c42565b005b34801561039957600080fd5b506103b460048036038101906103af9190612af1565b610c64565b005b6103d060048036038101906103cb9190612854565b610cc4565b005b3480156103de57600080fd5b506103f960048036038101906103f49190612af1565b610fef565b005b34801561040757600080fd5b5061041061100f565b60405161041d9190612958565b60405180910390f35b34801561043257600080fd5b5061043b611015565b6040516104489190612958565b60405180910390f35b34801561045d57600080fd5b5061046661101b565b6040516104739190612748565b60405180910390f35b34801561048857600080fd5b506104a3600480360381019061049e9190612b44565b61102e565b005b3480156104b157600080fd5b506104cc60048036038101906104c79190612aa8565b611080565b005b3480156104da57600080fd5b506104f560048036038101906104f09190612854565b6110a2565b60405161050291906128c2565b60405180910390f35b34801561051757600080fd5b50610520611154565b60405161052d91906127fc565b60405180910390f35b34801561054257600080fd5b5061055d60048036038101906105589190612b44565b6111e2565b60405161056a9190612958565b60405180910390f35b34801561057f57600080fd5b5061058861129a565b005b34801561059657600080fd5b5061059f6112ae565b6040516105ac9190612958565b60405180910390f35b3480156105c157600080fd5b506105ca6112b8565b6040516105d791906127fc565b60405180910390f35b3480156105ec57600080fd5b506105f5611346565b6040516106029190612748565b60405180910390f35b34801561061757600080fd5b5061062061135d565b005b34801561062e57600080fd5b506106376113f6565b60405161064491906128c2565b60405180910390f35b34801561065957600080fd5b50610674600480360381019061066f9190612b9d565b611420565b005b34801561068257600080fd5b5061069d60048036038101906106989190612b9d565b611445565b005b3480156106ab57600080fd5b506106b461146a565b6040516106c191906127fc565b60405180910390f35b3480156106d657600080fd5b506106df6114fc565b6040516106ec9190612958565b60405180910390f35b34801561070157600080fd5b5061071c60048036038101906107179190612bca565b611502565b005b34801561072a57600080fd5b5061074560048036038101906107409190612cab565b611518565b005b34801561075357600080fd5b5061076e60048036038101906107699190612854565b61157a565b005b34801561077c57600080fd5b5061078561158c565b6040516107929190612958565b60405180910390f35b3480156107a757600080fd5b506107c260048036038101906107bd9190612854565b611596565b6040516107cf91906127fc565b60405180910390f35b3480156107e457600080fd5b506107ed611767565b6040516107fa9190612958565b60405180910390f35b34801561080f57600080fd5b5061082a60048036038101906108259190612854565b61176d565b005b34801561083857600080fd5b50610853600480360381019061084e9190612854565b61177f565b005b34801561086157600080fd5b5061086a611791565b6040516108779190612748565b60405180910390f35b34801561088c57600080fd5b506108a760048036038101906108a29190612d2e565b6117a4565b6040516108b49190612748565b60405180910390f35b3480156108c957600080fd5b506108e460048036038101906108df9190612b44565b611838565b6040516108f19190612958565b60405180910390f35b34801561090657600080fd5b50610921600480360381019061091c9190612b44565b611850565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806109ee57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806109fe57506109fd826118d4565b5b9050919050565b606060008054610a1490612d9d565b80601f0160208091040260200160405190810160405280929190818152602001828054610a4090612d9d565b8015610a8d5780601f10610a6257610100808354040283529160200191610a8d565b820191906000526020600020905b815481529060010190602001808311610a7057829003601f168201915b5050505050905090565b6000610aa28261193e565b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610ae8826110a2565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610b59576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b5090612e41565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610b78611989565b73ffffffffffffffffffffffffffffffffffffffff161480610ba75750610ba681610ba1611989565b6117a4565b5b610be6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bdd90612ed3565b60405180910390fd5b610bf08383611991565b505050565b6000601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905090565b60095481565b610c4a611a4a565b80600f9080519060200190610c609291906125f1565b5050565b610c75610c6f611989565b82611ac8565b610cb4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cab90612f65565b60405180910390fd5b610cbf838383611b5d565b505050565b601060009054906101000a900460ff16610d13576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d0a90612ff7565b60405180910390fd5b600a5481600954610d249190613046565b1115610d65576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d5c906130e8565b60405180910390fd5b600b5481601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610db39190613046565b1115610df4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610deb90613154565b60405180910390fd5b6001811415610ebd576000601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020541415610e5357610e4e81611dc4565b610eb8565b80600c54610e619190613174565b8134610e6d9190613174565b1015610eae576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ea59061321a565b60405180910390fd5b610eb781611dc4565b5b610fec565b6000601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020541415610f8657600181610f12919061323a565b600c54610f1f9190613174565b600182610f2c919061323a565b34610f379190613174565b1015610f78576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f6f9061321a565b60405180910390fd5b610f8181611dc4565b610feb565b80600c54610f949190613174565b8134610fa09190613174565b1015610fe1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fd89061321a565b60405180910390fd5b610fea81611dc4565b5b5b50565b61100a83838360405180602001604052806000815250611518565b505050565b600b5481565b600a5481565b601060019054906101000a900460ff1681565b611036611a4a565b8073ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f1935050505015801561107c573d6000803e3d6000fd5b5050565b611088611a4a565b80600e908051906020019061109e9291906125f1565b5050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561114b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611142906132ba565b60405180910390fd5b80915050919050565b600e805461116190612d9d565b80601f016020809104026020016040519081016040528092919081815260200182805461118d90612d9d565b80156111da5780601f106111af576101008083540402835291602001916111da565b820191906000526020600020905b8154815290600101906020018083116111bd57829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611253576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161124a9061334c565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6112a2611a4a565b6112ac6000611ebb565b565b6000600a54905090565b600f80546112c590612d9d565b80601f01602080910402602001604051908101604052809291908181526020018280546112f190612d9d565b801561133e5780601f106113135761010080835404028352916020019161133e565b820191906000526020600020905b81548152906001019060200180831161132157829003601f168201915b505050505081565b6000601060009054906101000a900460ff16905090565b611365611a4a565b600d54601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205411156113e9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113e0906133b8565b60405180910390fd5b6113f4600d54611dc4565b565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b611428611a4a565b80601060016101000a81548160ff02191690831515021790555050565b61144d611a4a565b80601060006101000a81548160ff02191690831515021790555050565b60606001805461147990612d9d565b80601f01602080910402602001604051908101604052809291908181526020018280546114a590612d9d565b80156114f25780601f106114c7576101008083540402835291602001916114f2565b820191906000526020600020905b8154815290600101906020018083116114d557829003601f168201915b5050505050905090565b600c5481565b61151461150d611989565b8383611f81565b5050565b611529611523611989565b83611ac8565b611568576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161155f90612f65565b60405180910390fd5b611574848484846120ee565b50505050565b611582611a4a565b80600c8190555050565b6000600954905090565b60606115a18261214a565b6115e0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115d79061344a565b60405180910390fd5b60001515601060019054906101000a900460ff161515141561168e57600f805461160990612d9d565b80601f016020809104026020016040519081016040528092919081815260200182805461163590612d9d565b80156116825780601f1061165757610100808354040283529160200191611682565b820191906000526020600020905b81548152906001019060200180831161166557829003601f168201915b50505050509050611762565b6000600e805461169d90612d9d565b80601f01602080910402602001604051908101604052809291908181526020018280546116c990612d9d565b80156117165780601f106116eb57610100808354040283529160200191611716565b820191906000526020600020905b8154815290600101906020018083116116f957829003601f168201915b50505050509050600081511161173b576040518060200160405280600081525061175e565b808360405160200161174e929190613513565b6040516020818303038152906040525b9150505b919050565b600d5481565b611775611a4a565b80600d8190555050565b611787611a4a565b80600b8190555050565b601060009054906101000a900460ff1681565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b60116020528060005260406000206000915090505481565b611858611a4a565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156118c8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118bf906135b8565b60405180910390fd5b6118d181611ebb565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6119478161214a565b611986576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161197d906132ba565b60405180910390fd5b50565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16611a04836110a2565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b611a52611989565b73ffffffffffffffffffffffffffffffffffffffff16611a706113f6565b73ffffffffffffffffffffffffffffffffffffffff1614611ac6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611abd90613624565b60405180910390fd5b565b600080611ad4836110a2565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611b165750611b1581856117a4565b5b80611b5457508373ffffffffffffffffffffffffffffffffffffffff16611b3c84610a97565b73ffffffffffffffffffffffffffffffffffffffff16145b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16611b7d826110a2565b73ffffffffffffffffffffffffffffffffffffffff1614611bd3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bca906136b6565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611c43576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c3a90613748565b60405180910390fd5b611c4e8383836121b6565b611c59600082611991565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611ca9919061323a565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611d009190613046565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611dbf8383836121bb565b505050565b6003811115611e08576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dff906137b4565b60405180910390fd5b60005b81811015611e6157611e1d60086121c0565b6000611e2960086121d6565b9050611e3533826121e4565b60096000815480929190611e48906137d4565b9190505550508080611e59906137d4565b915050611e0b565b5080601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611eb19190613046565b9250508190555050565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611ff0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fe790613869565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516120e19190612748565b60405180910390a3505050565b6120f9848484611b5d565b61210584848484612202565b612144576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161213b906138fb565b60405180910390fd5b50505050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b505050565b505050565b6001816000016000828254019250508190555050565b600081600001549050919050565b6121fe828260405180602001604052806000815250612399565b5050565b60006122238473ffffffffffffffffffffffffffffffffffffffff166123f4565b1561238c578373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261224c611989565b8786866040518563ffffffff1660e01b815260040161226e9493929190613970565b602060405180830381600087803b15801561228857600080fd5b505af19250505080156122b957506040513d601f19601f820116820180604052508101906122b691906139d1565b60015b61233c573d80600081146122e9576040519150601f19603f3d011682016040523d82523d6000602084013e6122ee565b606091505b50600081511415612334576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161232b906138fb565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612391565b600190505b949350505050565b6123a38383612417565b6123b06000848484612202565b6123ef576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123e6906138fb565b60405180910390fd5b505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612487576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161247e90613a4a565b60405180910390fd5b6124908161214a565b156124d0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124c790613ab6565b60405180910390fd5b6124dc600083836121b6565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461252c9190613046565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46125ed600083836121bb565b5050565b8280546125fd90612d9d565b90600052602060002090601f01602090048101928261261f5760008555612666565b82601f1061263857805160ff1916838001178555612666565b82800160010185558215612666579182015b8281111561266557825182559160200191906001019061264a565b5b5090506126739190612677565b5090565b5b80821115612690576000816000905550600101612678565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6126dd816126a8565b81146126e857600080fd5b50565b6000813590506126fa816126d4565b92915050565b6000602082840312156127165761271561269e565b5b6000612724848285016126eb565b91505092915050565b60008115159050919050565b6127428161272d565b82525050565b600060208201905061275d6000830184612739565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561279d578082015181840152602081019050612782565b838111156127ac576000848401525b50505050565b6000601f19601f8301169050919050565b60006127ce82612763565b6127d8818561276e565b93506127e881856020860161277f565b6127f1816127b2565b840191505092915050565b6000602082019050818103600083015261281681846127c3565b905092915050565b6000819050919050565b6128318161281e565b811461283c57600080fd5b50565b60008135905061284e81612828565b92915050565b60006020828403121561286a5761286961269e565b5b60006128788482850161283f565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006128ac82612881565b9050919050565b6128bc816128a1565b82525050565b60006020820190506128d760008301846128b3565b92915050565b6128e6816128a1565b81146128f157600080fd5b50565b600081359050612903816128dd565b92915050565b600080604083850312156129205761291f61269e565b5b600061292e858286016128f4565b925050602061293f8582860161283f565b9150509250929050565b6129528161281e565b82525050565b600060208201905061296d6000830184612949565b92915050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6129b5826127b2565b810181811067ffffffffffffffff821117156129d4576129d361297d565b5b80604052505050565b60006129e7612694565b90506129f382826129ac565b919050565b600067ffffffffffffffff821115612a1357612a1261297d565b5b612a1c826127b2565b9050602081019050919050565b82818337600083830152505050565b6000612a4b612a46846129f8565b6129dd565b905082815260208101848484011115612a6757612a66612978565b5b612a72848285612a29565b509392505050565b600082601f830112612a8f57612a8e612973565b5b8135612a9f848260208601612a38565b91505092915050565b600060208284031215612abe57612abd61269e565b5b600082013567ffffffffffffffff811115612adc57612adb6126a3565b5b612ae884828501612a7a565b91505092915050565b600080600060608486031215612b0a57612b0961269e565b5b6000612b18868287016128f4565b9350506020612b29868287016128f4565b9250506040612b3a8682870161283f565b9150509250925092565b600060208284031215612b5a57612b5961269e565b5b6000612b68848285016128f4565b91505092915050565b612b7a8161272d565b8114612b8557600080fd5b50565b600081359050612b9781612b71565b92915050565b600060208284031215612bb357612bb261269e565b5b6000612bc184828501612b88565b91505092915050565b60008060408385031215612be157612be061269e565b5b6000612bef858286016128f4565b9250506020612c0085828601612b88565b9150509250929050565b600067ffffffffffffffff821115612c2557612c2461297d565b5b612c2e826127b2565b9050602081019050919050565b6000612c4e612c4984612c0a565b6129dd565b905082815260208101848484011115612c6a57612c69612978565b5b612c75848285612a29565b509392505050565b600082601f830112612c9257612c91612973565b5b8135612ca2848260208601612c3b565b91505092915050565b60008060008060808587031215612cc557612cc461269e565b5b6000612cd3878288016128f4565b9450506020612ce4878288016128f4565b9350506040612cf58782880161283f565b925050606085013567ffffffffffffffff811115612d1657612d156126a3565b5b612d2287828801612c7d565b91505092959194509250565b60008060408385031215612d4557612d4461269e565b5b6000612d53858286016128f4565b9250506020612d64858286016128f4565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680612db557607f821691505b60208210811415612dc957612dc8612d6e565b5b50919050565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b6000612e2b60218361276e565b9150612e3682612dcf565b604082019050919050565b60006020820190508181036000830152612e5a81612e1e565b9050919050565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60008201527f6b656e206f776e6572206e6f7220617070726f76656420666f7220616c6c0000602082015250565b6000612ebd603e8361276e565b9150612ec882612e61565b604082019050919050565b60006020820190508181036000830152612eec81612eb0565b9050919050565b7f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560008201527f72206e6f7220617070726f766564000000000000000000000000000000000000602082015250565b6000612f4f602e8361276e565b9150612f5a82612ef3565b604082019050919050565b60006020820190508181036000830152612f7e81612f42565b9050919050565b7f53696d706c65206c697374206d696e74696e67206973206e6f7420656e61626c60008201527f6564000000000000000000000000000000000000000000000000000000000000602082015250565b6000612fe160228361276e565b9150612fec82612f85565b604082019050919050565b6000602082019050818103600083015261301081612fd4565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006130518261281e565b915061305c8361281e565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561309157613090613017565b5b828201905092915050565b7f416c6c2053696d706c65477579732068617665206265656e206d696e74656400600082015250565b60006130d2601f8361276e565b91506130dd8261309c565b602082019050919050565b60006020820190508181036000830152613101816130c5565b9050919050565b7f457863656564206d6178206d696e740000000000000000000000000000000000600082015250565b600061313e600f8361276e565b915061314982613108565b602082019050919050565b6000602082019050818103600083015261316d81613131565b9050919050565b600061317f8261281e565b915061318a8361281e565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156131c3576131c2613017565b5b828202905092915050565b7f4e6f7420656e6f75676820657468657220666f72206d696e7400000000000000600082015250565b600061320460198361276e565b915061320f826131ce565b602082019050919050565b60006020820190508181036000830152613233816131f7565b9050919050565b60006132458261281e565b91506132508361281e565b92508282101561326357613262613017565b5b828203905092915050565b7f4552433732313a20696e76616c696420746f6b656e2049440000000000000000600082015250565b60006132a460188361276e565b91506132af8261326e565b602082019050919050565b600060208201905081810360008301526132d381613297565b9050919050565b7f4552433732313a2061646472657373207a65726f206973206e6f74206120766160008201527f6c6964206f776e65720000000000000000000000000000000000000000000000602082015250565b600061333660298361276e565b9150613341826132da565b604082019050919050565b6000602082019050818103600083015261336581613329565b9050919050565b7f45786365656420646576206d696e740000000000000000000000000000000000600082015250565b60006133a2600f8361276e565b91506133ad8261336c565b602082019050919050565b600060208201905081810360008301526133d181613395565b9050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b6000613434602f8361276e565b915061343f826133d8565b604082019050919050565b6000602082019050818103600083015261346381613427565b9050919050565b600081905092915050565b600061348082612763565b61348a818561346a565b935061349a81856020860161277f565b80840191505092915050565b6000819050919050565b6134c16134bc8261281e565b6134a6565b82525050565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b60006134fd60058361346a565b9150613508826134c7565b600582019050919050565b600061351f8285613475565b915061352b82846134b0565b60208201915061353a826134f0565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006135a260268361276e565b91506135ad82613546565b604082019050919050565b600060208201905081810360008301526135d181613595565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600061360e60208361276e565b9150613619826135d8565b602082019050919050565b6000602082019050818103600083015261363d81613601565b9050919050565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b60006136a060258361276e565b91506136ab82613644565b604082019050919050565b600060208201905081810360008301526136cf81613693565b9050919050565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b600061373260248361276e565b915061373d826136d6565b604082019050919050565b6000602082019050818103600083015261376181613725565b9050919050565b7f546f6f206d616e79206d696e7473000000000000000000000000000000000000600082015250565b600061379e600e8361276e565b91506137a982613768565b602082019050919050565b600060208201905081810360008301526137cd81613791565b9050919050565b60006137df8261281e565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561381257613811613017565b5b600182019050919050565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b600061385360198361276e565b915061385e8261381d565b602082019050919050565b6000602082019050818103600083015261388281613846565b9050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b60006138e560328361276e565b91506138f082613889565b604082019050919050565b60006020820190508181036000830152613914816138d8565b9050919050565b600081519050919050565b600082825260208201905092915050565b60006139428261391b565b61394c8185613926565b935061395c81856020860161277f565b613965816127b2565b840191505092915050565b600060808201905061398560008301876128b3565b61399260208301866128b3565b61399f6040830185612949565b81810360608301526139b18184613937565b905095945050505050565b6000815190506139cb816126d4565b92915050565b6000602082840312156139e7576139e661269e565b5b60006139f5848285016139bc565b91505092915050565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b6000613a3460208361276e565b9150613a3f826139fe565b602082019050919050565b60006020820190508181036000830152613a6381613a27565b9050919050565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b6000613aa0601c8361276e565b9150613aab82613a6a565b602082019050919050565b60006020820190508181036000830152613acf81613a93565b905091905056fea2646970667358221220842e2d12f2d663217b64546f54e92886e075554c96947e86677be64813213e2f64736f6c6343000809003300000000000000000000000000000000000000000000000000000000000000030000000000000000000000000000000000000000000000000018838370f34000000000000000000000000000000000000000000000000000000000000000008c00000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000120000000000000000000000000000000000000000000000000000000000000005968747470733a2f2f6e667473746f726167652e6c696e6b2f697066732f62616679626569686437326b6963787677657632626e7735746c6e6e76777a69707175617a736c7675796c7434666a636e33746f706c67687971692f00000000000000000000000000000000000000000000000000000000000000000000000000006a68747470733a2f2f6e667473746f726167652e6c696e6b2f697066732f6261667962656963346532797132647a6b676b786735667771736d616235656f76703561347179626572347a346c73666b6f6b796f6776757569652f756e72657665616c65645f312e6a736f6e00000000000000000000000000000000000000000000

Deployed Bytecode

0x60806040526004361061023b5760003560e01c8063722503801161012e578063bec0637c116100ab578063e268e4d31161006f578063e268e4d31461082c578063e8672aa014610855578063e985e9c514610880578063f0293fd3146108bd578063f2fde38b146108fa5761023b565b8063bec0637c14610747578063c4e41b2214610770578063c87b56dd1461079b578063ca43b305146107d8578063d7fc5e6c146108035761023b565b8063959000e4116100f2578063959000e41461067657806395d89b411461069f5780639ee4c938146106ca578063a22cb465146106f5578063b88d4fde1461071e5761023b565b806372250380146105b55780637a0767d0146105e05780637c69e2071461060b5780638da5cb5b14610622578063940cd05b1461064d5761023b565b8063453c2310116101bc5780636352211e116101805780636352211e146104ce5780636c0360eb1461050b57806370a0823114610536578063715018a6146105735780637155c1ea1461058a5761023b565b8063453c2310146103fb57806345c0f53314610426578063518302271461045157806351cff8d91461047c57806355f804b3146104a55761023b565b806318160ddd1161020357806318160ddd14610339578063194c29361461036457806323b872dd1461038d57806335612be9146103b657806342842e0e146103d25761023b565b806301ffc9a71461024057806306fdde031461027d578063081812fc146102a8578063095ea7b3146102e557806311e93af61461030e575b600080fd5b34801561024c57600080fd5b5061026760048036038101906102629190612700565b610923565b6040516102749190612748565b60405180910390f35b34801561028957600080fd5b50610292610a05565b60405161029f91906127fc565b60405180910390f35b3480156102b457600080fd5b506102cf60048036038101906102ca9190612854565b610a97565b6040516102dc91906128c2565b60405180910390f35b3480156102f157600080fd5b5061030c60048036038101906103079190612909565b610add565b005b34801561031a57600080fd5b50610323610bf5565b6040516103309190612958565b60405180910390f35b34801561034557600080fd5b5061034e610c3c565b60405161035b9190612958565b60405180910390f35b34801561037057600080fd5b5061038b60048036038101906103869190612aa8565b610c42565b005b34801561039957600080fd5b506103b460048036038101906103af9190612af1565b610c64565b005b6103d060048036038101906103cb9190612854565b610cc4565b005b3480156103de57600080fd5b506103f960048036038101906103f49190612af1565b610fef565b005b34801561040757600080fd5b5061041061100f565b60405161041d9190612958565b60405180910390f35b34801561043257600080fd5b5061043b611015565b6040516104489190612958565b60405180910390f35b34801561045d57600080fd5b5061046661101b565b6040516104739190612748565b60405180910390f35b34801561048857600080fd5b506104a3600480360381019061049e9190612b44565b61102e565b005b3480156104b157600080fd5b506104cc60048036038101906104c79190612aa8565b611080565b005b3480156104da57600080fd5b506104f560048036038101906104f09190612854565b6110a2565b60405161050291906128c2565b60405180910390f35b34801561051757600080fd5b50610520611154565b60405161052d91906127fc565b60405180910390f35b34801561054257600080fd5b5061055d60048036038101906105589190612b44565b6111e2565b60405161056a9190612958565b60405180910390f35b34801561057f57600080fd5b5061058861129a565b005b34801561059657600080fd5b5061059f6112ae565b6040516105ac9190612958565b60405180910390f35b3480156105c157600080fd5b506105ca6112b8565b6040516105d791906127fc565b60405180910390f35b3480156105ec57600080fd5b506105f5611346565b6040516106029190612748565b60405180910390f35b34801561061757600080fd5b5061062061135d565b005b34801561062e57600080fd5b506106376113f6565b60405161064491906128c2565b60405180910390f35b34801561065957600080fd5b50610674600480360381019061066f9190612b9d565b611420565b005b34801561068257600080fd5b5061069d60048036038101906106989190612b9d565b611445565b005b3480156106ab57600080fd5b506106b461146a565b6040516106c191906127fc565b60405180910390f35b3480156106d657600080fd5b506106df6114fc565b6040516106ec9190612958565b60405180910390f35b34801561070157600080fd5b5061071c60048036038101906107179190612bca565b611502565b005b34801561072a57600080fd5b5061074560048036038101906107409190612cab565b611518565b005b34801561075357600080fd5b5061076e60048036038101906107699190612854565b61157a565b005b34801561077c57600080fd5b5061078561158c565b6040516107929190612958565b60405180910390f35b3480156107a757600080fd5b506107c260048036038101906107bd9190612854565b611596565b6040516107cf91906127fc565b60405180910390f35b3480156107e457600080fd5b506107ed611767565b6040516107fa9190612958565b60405180910390f35b34801561080f57600080fd5b5061082a60048036038101906108259190612854565b61176d565b005b34801561083857600080fd5b50610853600480360381019061084e9190612854565b61177f565b005b34801561086157600080fd5b5061086a611791565b6040516108779190612748565b60405180910390f35b34801561088c57600080fd5b506108a760048036038101906108a29190612d2e565b6117a4565b6040516108b49190612748565b60405180910390f35b3480156108c957600080fd5b506108e460048036038101906108df9190612b44565b611838565b6040516108f19190612958565b60405180910390f35b34801561090657600080fd5b50610921600480360381019061091c9190612b44565b611850565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806109ee57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806109fe57506109fd826118d4565b5b9050919050565b606060008054610a1490612d9d565b80601f0160208091040260200160405190810160405280929190818152602001828054610a4090612d9d565b8015610a8d5780601f10610a6257610100808354040283529160200191610a8d565b820191906000526020600020905b815481529060010190602001808311610a7057829003601f168201915b5050505050905090565b6000610aa28261193e565b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610ae8826110a2565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610b59576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b5090612e41565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610b78611989565b73ffffffffffffffffffffffffffffffffffffffff161480610ba75750610ba681610ba1611989565b6117a4565b5b610be6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bdd90612ed3565b60405180910390fd5b610bf08383611991565b505050565b6000601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905090565b60095481565b610c4a611a4a565b80600f9080519060200190610c609291906125f1565b5050565b610c75610c6f611989565b82611ac8565b610cb4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cab90612f65565b60405180910390fd5b610cbf838383611b5d565b505050565b601060009054906101000a900460ff16610d13576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d0a90612ff7565b60405180910390fd5b600a5481600954610d249190613046565b1115610d65576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d5c906130e8565b60405180910390fd5b600b5481601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610db39190613046565b1115610df4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610deb90613154565b60405180910390fd5b6001811415610ebd576000601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020541415610e5357610e4e81611dc4565b610eb8565b80600c54610e619190613174565b8134610e6d9190613174565b1015610eae576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ea59061321a565b60405180910390fd5b610eb781611dc4565b5b610fec565b6000601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020541415610f8657600181610f12919061323a565b600c54610f1f9190613174565b600182610f2c919061323a565b34610f379190613174565b1015610f78576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f6f9061321a565b60405180910390fd5b610f8181611dc4565b610feb565b80600c54610f949190613174565b8134610fa09190613174565b1015610fe1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fd89061321a565b60405180910390fd5b610fea81611dc4565b5b5b50565b61100a83838360405180602001604052806000815250611518565b505050565b600b5481565b600a5481565b601060019054906101000a900460ff1681565b611036611a4a565b8073ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f1935050505015801561107c573d6000803e3d6000fd5b5050565b611088611a4a565b80600e908051906020019061109e9291906125f1565b5050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561114b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611142906132ba565b60405180910390fd5b80915050919050565b600e805461116190612d9d565b80601f016020809104026020016040519081016040528092919081815260200182805461118d90612d9d565b80156111da5780601f106111af576101008083540402835291602001916111da565b820191906000526020600020905b8154815290600101906020018083116111bd57829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611253576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161124a9061334c565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6112a2611a4a565b6112ac6000611ebb565b565b6000600a54905090565b600f80546112c590612d9d565b80601f01602080910402602001604051908101604052809291908181526020018280546112f190612d9d565b801561133e5780601f106113135761010080835404028352916020019161133e565b820191906000526020600020905b81548152906001019060200180831161132157829003601f168201915b505050505081565b6000601060009054906101000a900460ff16905090565b611365611a4a565b600d54601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205411156113e9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113e0906133b8565b60405180910390fd5b6113f4600d54611dc4565b565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b611428611a4a565b80601060016101000a81548160ff02191690831515021790555050565b61144d611a4a565b80601060006101000a81548160ff02191690831515021790555050565b60606001805461147990612d9d565b80601f01602080910402602001604051908101604052809291908181526020018280546114a590612d9d565b80156114f25780601f106114c7576101008083540402835291602001916114f2565b820191906000526020600020905b8154815290600101906020018083116114d557829003601f168201915b5050505050905090565b600c5481565b61151461150d611989565b8383611f81565b5050565b611529611523611989565b83611ac8565b611568576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161155f90612f65565b60405180910390fd5b611574848484846120ee565b50505050565b611582611a4a565b80600c8190555050565b6000600954905090565b60606115a18261214a565b6115e0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115d79061344a565b60405180910390fd5b60001515601060019054906101000a900460ff161515141561168e57600f805461160990612d9d565b80601f016020809104026020016040519081016040528092919081815260200182805461163590612d9d565b80156116825780601f1061165757610100808354040283529160200191611682565b820191906000526020600020905b81548152906001019060200180831161166557829003601f168201915b50505050509050611762565b6000600e805461169d90612d9d565b80601f01602080910402602001604051908101604052809291908181526020018280546116c990612d9d565b80156117165780601f106116eb57610100808354040283529160200191611716565b820191906000526020600020905b8154815290600101906020018083116116f957829003601f168201915b50505050509050600081511161173b576040518060200160405280600081525061175e565b808360405160200161174e929190613513565b6040516020818303038152906040525b9150505b919050565b600d5481565b611775611a4a565b80600d8190555050565b611787611a4a565b80600b8190555050565b601060009054906101000a900460ff1681565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b60116020528060005260406000206000915090505481565b611858611a4a565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156118c8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118bf906135b8565b60405180910390fd5b6118d181611ebb565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6119478161214a565b611986576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161197d906132ba565b60405180910390fd5b50565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16611a04836110a2565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b611a52611989565b73ffffffffffffffffffffffffffffffffffffffff16611a706113f6565b73ffffffffffffffffffffffffffffffffffffffff1614611ac6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611abd90613624565b60405180910390fd5b565b600080611ad4836110a2565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611b165750611b1581856117a4565b5b80611b5457508373ffffffffffffffffffffffffffffffffffffffff16611b3c84610a97565b73ffffffffffffffffffffffffffffffffffffffff16145b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16611b7d826110a2565b73ffffffffffffffffffffffffffffffffffffffff1614611bd3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bca906136b6565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611c43576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c3a90613748565b60405180910390fd5b611c4e8383836121b6565b611c59600082611991565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611ca9919061323a565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611d009190613046565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611dbf8383836121bb565b505050565b6003811115611e08576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dff906137b4565b60405180910390fd5b60005b81811015611e6157611e1d60086121c0565b6000611e2960086121d6565b9050611e3533826121e4565b60096000815480929190611e48906137d4565b9190505550508080611e59906137d4565b915050611e0b565b5080601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611eb19190613046565b9250508190555050565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611ff0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fe790613869565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516120e19190612748565b60405180910390a3505050565b6120f9848484611b5d565b61210584848484612202565b612144576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161213b906138fb565b60405180910390fd5b50505050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b505050565b505050565b6001816000016000828254019250508190555050565b600081600001549050919050565b6121fe828260405180602001604052806000815250612399565b5050565b60006122238473ffffffffffffffffffffffffffffffffffffffff166123f4565b1561238c578373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261224c611989565b8786866040518563ffffffff1660e01b815260040161226e9493929190613970565b602060405180830381600087803b15801561228857600080fd5b505af19250505080156122b957506040513d601f19601f820116820180604052508101906122b691906139d1565b60015b61233c573d80600081146122e9576040519150601f19603f3d011682016040523d82523d6000602084013e6122ee565b606091505b50600081511415612334576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161232b906138fb565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612391565b600190505b949350505050565b6123a38383612417565b6123b06000848484612202565b6123ef576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123e6906138fb565b60405180910390fd5b505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612487576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161247e90613a4a565b60405180910390fd5b6124908161214a565b156124d0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124c790613ab6565b60405180910390fd5b6124dc600083836121b6565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461252c9190613046565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46125ed600083836121bb565b5050565b8280546125fd90612d9d565b90600052602060002090601f01602090048101928261261f5760008555612666565b82601f1061263857805160ff1916838001178555612666565b82800160010185558215612666579182015b8281111561266557825182559160200191906001019061264a565b5b5090506126739190612677565b5090565b5b80821115612690576000816000905550600101612678565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6126dd816126a8565b81146126e857600080fd5b50565b6000813590506126fa816126d4565b92915050565b6000602082840312156127165761271561269e565b5b6000612724848285016126eb565b91505092915050565b60008115159050919050565b6127428161272d565b82525050565b600060208201905061275d6000830184612739565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561279d578082015181840152602081019050612782565b838111156127ac576000848401525b50505050565b6000601f19601f8301169050919050565b60006127ce82612763565b6127d8818561276e565b93506127e881856020860161277f565b6127f1816127b2565b840191505092915050565b6000602082019050818103600083015261281681846127c3565b905092915050565b6000819050919050565b6128318161281e565b811461283c57600080fd5b50565b60008135905061284e81612828565b92915050565b60006020828403121561286a5761286961269e565b5b60006128788482850161283f565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006128ac82612881565b9050919050565b6128bc816128a1565b82525050565b60006020820190506128d760008301846128b3565b92915050565b6128e6816128a1565b81146128f157600080fd5b50565b600081359050612903816128dd565b92915050565b600080604083850312156129205761291f61269e565b5b600061292e858286016128f4565b925050602061293f8582860161283f565b9150509250929050565b6129528161281e565b82525050565b600060208201905061296d6000830184612949565b92915050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6129b5826127b2565b810181811067ffffffffffffffff821117156129d4576129d361297d565b5b80604052505050565b60006129e7612694565b90506129f382826129ac565b919050565b600067ffffffffffffffff821115612a1357612a1261297d565b5b612a1c826127b2565b9050602081019050919050565b82818337600083830152505050565b6000612a4b612a46846129f8565b6129dd565b905082815260208101848484011115612a6757612a66612978565b5b612a72848285612a29565b509392505050565b600082601f830112612a8f57612a8e612973565b5b8135612a9f848260208601612a38565b91505092915050565b600060208284031215612abe57612abd61269e565b5b600082013567ffffffffffffffff811115612adc57612adb6126a3565b5b612ae884828501612a7a565b91505092915050565b600080600060608486031215612b0a57612b0961269e565b5b6000612b18868287016128f4565b9350506020612b29868287016128f4565b9250506040612b3a8682870161283f565b9150509250925092565b600060208284031215612b5a57612b5961269e565b5b6000612b68848285016128f4565b91505092915050565b612b7a8161272d565b8114612b8557600080fd5b50565b600081359050612b9781612b71565b92915050565b600060208284031215612bb357612bb261269e565b5b6000612bc184828501612b88565b91505092915050565b60008060408385031215612be157612be061269e565b5b6000612bef858286016128f4565b9250506020612c0085828601612b88565b9150509250929050565b600067ffffffffffffffff821115612c2557612c2461297d565b5b612c2e826127b2565b9050602081019050919050565b6000612c4e612c4984612c0a565b6129dd565b905082815260208101848484011115612c6a57612c69612978565b5b612c75848285612a29565b509392505050565b600082601f830112612c9257612c91612973565b5b8135612ca2848260208601612c3b565b91505092915050565b60008060008060808587031215612cc557612cc461269e565b5b6000612cd3878288016128f4565b9450506020612ce4878288016128f4565b9350506040612cf58782880161283f565b925050606085013567ffffffffffffffff811115612d1657612d156126a3565b5b612d2287828801612c7d565b91505092959194509250565b60008060408385031215612d4557612d4461269e565b5b6000612d53858286016128f4565b9250506020612d64858286016128f4565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680612db557607f821691505b60208210811415612dc957612dc8612d6e565b5b50919050565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b6000612e2b60218361276e565b9150612e3682612dcf565b604082019050919050565b60006020820190508181036000830152612e5a81612e1e565b9050919050565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60008201527f6b656e206f776e6572206e6f7220617070726f76656420666f7220616c6c0000602082015250565b6000612ebd603e8361276e565b9150612ec882612e61565b604082019050919050565b60006020820190508181036000830152612eec81612eb0565b9050919050565b7f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560008201527f72206e6f7220617070726f766564000000000000000000000000000000000000602082015250565b6000612f4f602e8361276e565b9150612f5a82612ef3565b604082019050919050565b60006020820190508181036000830152612f7e81612f42565b9050919050565b7f53696d706c65206c697374206d696e74696e67206973206e6f7420656e61626c60008201527f6564000000000000000000000000000000000000000000000000000000000000602082015250565b6000612fe160228361276e565b9150612fec82612f85565b604082019050919050565b6000602082019050818103600083015261301081612fd4565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006130518261281e565b915061305c8361281e565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561309157613090613017565b5b828201905092915050565b7f416c6c2053696d706c65477579732068617665206265656e206d696e74656400600082015250565b60006130d2601f8361276e565b91506130dd8261309c565b602082019050919050565b60006020820190508181036000830152613101816130c5565b9050919050565b7f457863656564206d6178206d696e740000000000000000000000000000000000600082015250565b600061313e600f8361276e565b915061314982613108565b602082019050919050565b6000602082019050818103600083015261316d81613131565b9050919050565b600061317f8261281e565b915061318a8361281e565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156131c3576131c2613017565b5b828202905092915050565b7f4e6f7420656e6f75676820657468657220666f72206d696e7400000000000000600082015250565b600061320460198361276e565b915061320f826131ce565b602082019050919050565b60006020820190508181036000830152613233816131f7565b9050919050565b60006132458261281e565b91506132508361281e565b92508282101561326357613262613017565b5b828203905092915050565b7f4552433732313a20696e76616c696420746f6b656e2049440000000000000000600082015250565b60006132a460188361276e565b91506132af8261326e565b602082019050919050565b600060208201905081810360008301526132d381613297565b9050919050565b7f4552433732313a2061646472657373207a65726f206973206e6f74206120766160008201527f6c6964206f776e65720000000000000000000000000000000000000000000000602082015250565b600061333660298361276e565b9150613341826132da565b604082019050919050565b6000602082019050818103600083015261336581613329565b9050919050565b7f45786365656420646576206d696e740000000000000000000000000000000000600082015250565b60006133a2600f8361276e565b91506133ad8261336c565b602082019050919050565b600060208201905081810360008301526133d181613395565b9050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b6000613434602f8361276e565b915061343f826133d8565b604082019050919050565b6000602082019050818103600083015261346381613427565b9050919050565b600081905092915050565b600061348082612763565b61348a818561346a565b935061349a81856020860161277f565b80840191505092915050565b6000819050919050565b6134c16134bc8261281e565b6134a6565b82525050565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b60006134fd60058361346a565b9150613508826134c7565b600582019050919050565b600061351f8285613475565b915061352b82846134b0565b60208201915061353a826134f0565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006135a260268361276e565b91506135ad82613546565b604082019050919050565b600060208201905081810360008301526135d181613595565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600061360e60208361276e565b9150613619826135d8565b602082019050919050565b6000602082019050818103600083015261363d81613601565b9050919050565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b60006136a060258361276e565b91506136ab82613644565b604082019050919050565b600060208201905081810360008301526136cf81613693565b9050919050565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b600061373260248361276e565b915061373d826136d6565b604082019050919050565b6000602082019050818103600083015261376181613725565b9050919050565b7f546f6f206d616e79206d696e7473000000000000000000000000000000000000600082015250565b600061379e600e8361276e565b91506137a982613768565b602082019050919050565b600060208201905081810360008301526137cd81613791565b9050919050565b60006137df8261281e565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561381257613811613017565b5b600182019050919050565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b600061385360198361276e565b915061385e8261381d565b602082019050919050565b6000602082019050818103600083015261388281613846565b9050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b60006138e560328361276e565b91506138f082613889565b604082019050919050565b60006020820190508181036000830152613914816138d8565b9050919050565b600081519050919050565b600082825260208201905092915050565b60006139428261391b565b61394c8185613926565b935061395c81856020860161277f565b613965816127b2565b840191505092915050565b600060808201905061398560008301876128b3565b61399260208301866128b3565b61399f6040830185612949565b81810360608301526139b18184613937565b905095945050505050565b6000815190506139cb816126d4565b92915050565b6000602082840312156139e7576139e661269e565b5b60006139f5848285016139bc565b91505092915050565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b6000613a3460208361276e565b9150613a3f826139fe565b602082019050919050565b60006020820190508181036000830152613a6381613a27565b9050919050565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b6000613aa0601c8361276e565b9150613aab82613a6a565b602082019050919050565b60006020820190508181036000830152613acf81613a93565b905091905056fea2646970667358221220842e2d12f2d663217b64546f54e92886e075554c96947e86677be64813213e2f64736f6c63430008090033

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

00000000000000000000000000000000000000000000000000000000000000030000000000000000000000000000000000000000000000000018838370f34000000000000000000000000000000000000000000000000000000000000000008c00000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000120000000000000000000000000000000000000000000000000000000000000005968747470733a2f2f6e667473746f726167652e6c696e6b2f697066732f62616679626569686437326b6963787677657632626e7735746c6e6e76777a69707175617a736c7675796c7434666a636e33746f706c67687971692f00000000000000000000000000000000000000000000000000000000000000000000000000006a68747470733a2f2f6e667473746f726167652e6c696e6b2f697066732f6261667962656963346532797132647a6b676b786735667771736d616235656f76703561347179626572347a346c73666b6f6b796f6776757569652f756e72657665616c65645f312e6a736f6e00000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : maxPerWallet_ (uint256): 3
Arg [1] : simpleListCost_ (uint256): 6900000000000000
Arg [2] : devMints_ (uint256): 140
Arg [3] : baseURI_ (string): https://nftstorage.link/ipfs/bafybeihd72kicxvwev2bnw5tlnnvwzipquazslvuylt4fjcn3toplghyqi/
Arg [4] : notRevealedURI_ (string): https://nftstorage.link/ipfs/bafybeic4e2yq2dzkgkxg5fwqsmab5eovp5a4qyber4z4lsfkokyogvuuie/unrevealed_1.json

-----Encoded View---------------
14 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000003
Arg [1] : 0000000000000000000000000000000000000000000000000018838370f34000
Arg [2] : 000000000000000000000000000000000000000000000000000000000000008c
Arg [3] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000120
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000059
Arg [6] : 68747470733a2f2f6e667473746f726167652e6c696e6b2f697066732f626166
Arg [7] : 79626569686437326b6963787677657632626e7735746c6e6e76777a69707175
Arg [8] : 617a736c7675796c7434666a636e33746f706c67687971692f00000000000000
Arg [9] : 000000000000000000000000000000000000000000000000000000000000006a
Arg [10] : 68747470733a2f2f6e667473746f726167652e6c696e6b2f697066732f626166
Arg [11] : 7962656963346532797132647a6b676b786735667771736d616235656f767035
Arg [12] : 61347179626572347a346c73666b6f6b796f6776757569652f756e7265766561
Arg [13] : 6c65645f312e6a736f6e00000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

40733:4905:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21467:305;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22394:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23907:171;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23424:417;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;42917:107;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40874:26;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41952:147;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;24607:336;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;44335:1300;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;25014:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;40943:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40907:29;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41158:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42643:113;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;41838:106;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;22105:222;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41045:21;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21836:207;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37881:103;;;;;;;;;;;;;:::i;:::-;;43135:101;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41073:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43244:106;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42764:145;;;;;;;;;;;;;:::i;:::-;;37233:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41744:86;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;42465:170;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;22563:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40977:29;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24150:155;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;25270:323;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;42229:122;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;43032:95;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43374:567;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41013:23;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42359:98;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;42107:114;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;41110:41;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24376:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41195:46;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38139:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;21467:305;21569:4;21621:25;21606:40;;;:11;:40;;;;:105;;;;21678:33;21663:48;;;:11;:48;;;;21606:105;:158;;;;21728:36;21752:11;21728:23;:36::i;:::-;21606:158;21586:178;;21467:305;;;:::o;22394:100::-;22448:13;22481:5;22474:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22394:100;:::o;23907:171::-;23983:7;24003:23;24018:7;24003:14;:23::i;:::-;24046:15;:24;24062:7;24046:24;;;;;;;;;;;;;;;;;;;;;24039:31;;23907:171;;;:::o;23424:417::-;23505:13;23521:23;23536:7;23521:14;:23::i;:::-;23505:39;;23569:5;23563:11;;:2;:11;;;;23555:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;23663:5;23647:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;23672:37;23689:5;23696:12;:10;:12::i;:::-;23672:16;:37::i;:::-;23647:62;23625:174;;;;;;;;;;;;:::i;:::-;;;;;;;;;23812:21;23821:2;23825:7;23812:8;:21::i;:::-;23494:347;23424:417;;:::o;42917:107::-;42966:7;42993:11;:23;43005:10;42993:23;;;;;;;;;;;;;;;;42986:30;;42917:107;:::o;40874:26::-;;;;:::o;41952:147::-;37119:13;:11;:13::i;:::-;42080:11:::1;42063:14;:28;;;;;;;;;;;;:::i;:::-;;41952:147:::0;:::o;24607:336::-;24802:41;24821:12;:10;:12::i;:::-;24835:7;24802:18;:41::i;:::-;24794:100;;;;;;;;;;;;:::i;:::-;;;;;;;;;24907:28;24917:4;24923:2;24927:7;24907:9;:28::i;:::-;24607:336;;;:::o;44335:1300::-;44414:21;;;;;;;;;;;44406:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;44534:14;;44521:9;44507:11;;:23;;;;:::i;:::-;:41;;44485:122;;;;;;;;;;;;:::i;:::-;;;;;;;;;44679:12;;44666:9;44640:11;:23;44652:10;44640:23;;;;;;;;;;;;;;;;:35;;;;:::i;:::-;:51;;44618:116;;;;;;;;;;;;:::i;:::-;;;;;;;;;44764:1;44751:9;:14;44747:881;;;44813:1;44786:11;:23;44798:10;44786:23;;;;;;;;;;;;;;;;:28;44782:309;;;44835:15;44840:9;44835:4;:15::i;:::-;44782:309;;;44963:9;44946:14;;:26;;;;:::i;:::-;44933:9;44921;:21;;;;:::i;:::-;:51;;44891:150;;;;;;;;;;;;:::i;:::-;;;;;;;;;45060:15;45065:9;45060:4;:15::i;:::-;44782:309;44747:881;;;45154:1;45127:11;:23;45139:10;45127:23;;;;;;;;;;;;;;;;:28;45123:494;;;45267:1;45255:9;:13;;;;:::i;:::-;45237:14;;:32;;;;:::i;:::-;45231:1;45219:9;:13;;;;:::i;:::-;45206:9;:27;;;;:::i;:::-;:63;;45176:162;;;;;;;;;;;;:::i;:::-;;;;;;;;;45357:15;45362:9;45357:4;:15::i;:::-;45123:494;;;45488:9;45470:14;;:28;;;;:::i;:::-;45456:9;45443;:23;;;;:::i;:::-;:55;;45413:154;;;;;;;;;;;;:::i;:::-;;;;;;;;;45586:15;45591:9;45586:4;:15::i;:::-;45123:494;44747:881;44335:1300;:::o;25014:185::-;25152:39;25169:4;25175:2;25179:7;25152:39;;;;;;;;;;;;:16;:39::i;:::-;25014:185;;;:::o;40943:27::-;;;;:::o;40907:29::-;;;;:::o;41158:28::-;;;;;;;;;;;;;:::o;42643:113::-;37119:13;:11;:13::i;:::-;42712:3:::1;42704:21;;:44;42726:21;42704:44;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;42643:113:::0;:::o;41838:106::-;37119:13;:11;:13::i;:::-;41925:11:::1;41915:7;:21;;;;;;;;;;;;:::i;:::-;;41838:106:::0;:::o;22105:222::-;22177:7;22197:13;22213:7;:16;22221:7;22213:16;;;;;;;;;;;;;;;;;;;;;22197:32;;22265:1;22248:19;;:5;:19;;;;22240:56;;;;;;;;;;;;:::i;:::-;;;;;;;;;22314:5;22307:12;;;22105:222;;;:::o;41045:21::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;21836:207::-;21908:7;21953:1;21936:19;;:5;:19;;;;21928:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;22019:9;:16;22029:5;22019:16;;;;;;;;;;;;;;;;22012:23;;21836:207;;;:::o;37881:103::-;37119:13;:11;:13::i;:::-;37946:30:::1;37973:1;37946:18;:30::i;:::-;37881:103::o:0;43135:101::-;43187:7;43214:14;;43207:21;;43135:101;:::o;41073:28::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;43244:106::-;43297:4;43321:21;;;;;;;;;;;43314:28;;43244:106;:::o;42764:145::-;37119:13;:11;:13::i;:::-;42848:8:::1;;42821:11;:23;42833:10;42821:23;;;;;;;;;;;;;;;;:35;;42813:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;42887:14;42892:8;;42887:4;:14::i;:::-;42764:145::o:0;37233:87::-;37279:7;37306:6;;;;;;;;;;;37299:13;;37233:87;:::o;41744:86::-;37119:13;:11;:13::i;:::-;41815:7:::1;41804:8;;:18;;;;;;;;;;;;;;;;;;41744:86:::0;:::o;42465:170::-;37119:13;:11;:13::i;:::-;42605:22:::1;42581:21;;:46;;;;;;;;;;;;;;;;;;42465:170:::0;:::o;22563:104::-;22619:13;22652:7;22645:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22563:104;:::o;40977:29::-;;;;:::o;24150:155::-;24245:52;24264:12;:10;:12::i;:::-;24278:8;24288;24245:18;:52::i;:::-;24150:155;;:::o;25270:323::-;25444:41;25463:12;:10;:12::i;:::-;25477:7;25444:18;:41::i;:::-;25436:100;;;;;;;;;;;;:::i;:::-;;;;;;;;;25547:38;25561:4;25567:2;25571:7;25580:4;25547:13;:38::i;:::-;25270:323;;;;:::o;42229:122::-;37119:13;:11;:13::i;:::-;42328:15:::1;42311:14;:32;;;;42229:122:::0;:::o;43032:95::-;43081:7;43108:11;;43101:18;;43032:95;:::o;43374:567::-;43492:13;43545:16;43553:7;43545;:16::i;:::-;43523:113;;;;;;;;;;;;:::i;:::-;;;;;;;;;43665:5;43653:17;;:8;;;;;;;;;;;:17;;;43649:71;;;43694:14;43687:21;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43649:71;43732:28;43763:7;43732:38;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43832:1;43807:14;43801:28;:32;:132;;;;;;;;;;;;;;;;;43877:14;43893:7;43860:50;;;;;;;;;:::i;:::-;;;;;;;;;;;;;43801:132;43781:152;;;43374:567;;;;:::o;41013:23::-;;;;:::o;42359:98::-;37119:13;:11;:13::i;:::-;42440:9:::1;42429:8;:20;;;;42359:98:::0;:::o;42107:114::-;37119:13;:11;:13::i;:::-;42200::::1;42185:12;:28;;;;42107:114:::0;:::o;41110:41::-;;;;;;;;;;;;;:::o;24376:164::-;24473:4;24497:18;:25;24516:5;24497:25;;;;;;;;;;;;;;;:35;24523:8;24497:35;;;;;;;;;;;;;;;;;;;;;;;;;24490:42;;24376:164;;;;:::o;41195:46::-;;;;;;;;;;;;;;;;;:::o;38139:201::-;37119:13;:11;:13::i;:::-;38248:1:::1;38228:22;;:8;:22;;;;38220:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;38304:28;38323:8;38304:18;:28::i;:::-;38139:201:::0;:::o;19970:157::-;20055:4;20094:25;20079:40;;;:11;:40;;;;20072:47;;19970:157;;;:::o;31882:135::-;31964:16;31972:7;31964;:16::i;:::-;31956:53;;;;;;;;;;;;:::i;:::-;;;;;;;;;31882:135;:::o;16521:98::-;16574:7;16601:10;16594:17;;16521:98;:::o;31161:174::-;31263:2;31236:15;:24;31252:7;31236:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;31319:7;31315:2;31281:46;;31290:23;31305:7;31290:14;:23::i;:::-;31281:46;;;;;;;;;;;;31161:174;;:::o;37398:132::-;37473:12;:10;:12::i;:::-;37462:23;;:7;:5;:7::i;:::-;:23;;;37454:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;37398:132::o;27394:264::-;27487:4;27504:13;27520:23;27535:7;27520:14;:23::i;:::-;27504:39;;27573:5;27562:16;;:7;:16;;;:52;;;;27582:32;27599:5;27606:7;27582:16;:32::i;:::-;27562:52;:87;;;;27642:7;27618:31;;:20;27630:7;27618:11;:20::i;:::-;:31;;;27562:87;27554:96;;;27394:264;;;;:::o;30417:625::-;30576:4;30549:31;;:23;30564:7;30549:14;:23::i;:::-;:31;;;30541:81;;;;;;;;;;;;:::i;:::-;;;;;;;;;30655:1;30641:16;;:2;:16;;;;30633:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;30711:39;30732:4;30738:2;30742:7;30711:20;:39::i;:::-;30815:29;30832:1;30836:7;30815:8;:29::i;:::-;30876:1;30857:9;:15;30867:4;30857:15;;;;;;;;;;;;;;;;:20;;;;;;;:::i;:::-;;;;;;;;30905:1;30888:9;:13;30898:2;30888:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;30936:2;30917:7;:16;30925:7;30917:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;30975:7;30971:2;30956:27;;30965:4;30956:27;;;;;;;;;;;;30996:38;31016:4;31022:2;31026:7;30996:19;:38::i;:::-;30417:625;;;:::o;43949:378::-;44023:1;44010:9;:14;;44002:41;;;;;;;;;;;;:::i;:::-;;;;;;;;;44059:9;44054:217;44078:9;44074:1;:13;44054:217;;;44109:21;:9;:19;:21::i;:::-;44145:17;44165:19;:9;:17;:19::i;:::-;44145:39;;44199:32;44209:10;44221:9;44199;:32::i;:::-;44246:11;;:13;;;;;;;;;:::i;:::-;;;;;;44094:177;44089:3;;;;;:::i;:::-;;;;44054:217;;;;44310:9;44283:11;:23;44295:10;44283:23;;;;;;;;;;;;;;;;:36;;;;;;;:::i;:::-;;;;;;;;43949:378;:::o;38500:191::-;38574:16;38593:6;;;;;;;;;;;38574:25;;38619:8;38610:6;;:17;;;;;;;;;;;;;;;;;;38674:8;38643:40;;38664:8;38643:40;;;;;;;;;;;;38563:128;38500:191;:::o;31478:315::-;31633:8;31624:17;;:5;:17;;;;31616:55;;;;;;;;;;;;:::i;:::-;;;;;;;;;31720:8;31682:18;:25;31701:5;31682:25;;;;;;;;;;;;;;;:35;31708:8;31682:35;;;;;;;;;;;;;;;;:46;;;;;;;;;;;;;;;;;;31766:8;31744:41;;31759:5;31744:41;;;31776:8;31744:41;;;;;;:::i;:::-;;;;;;;;31478:315;;;:::o;26474:313::-;26630:28;26640:4;26646:2;26650:7;26630:9;:28::i;:::-;26677:47;26700:4;26706:2;26710:7;26719:4;26677:22;:47::i;:::-;26669:110;;;;;;;;;;;;:::i;:::-;;;;;;;;;26474:313;;;;:::o;27100:127::-;27165:4;27217:1;27189:30;;:7;:16;27197:7;27189:16;;;;;;;;;;;;;;;;;;;;;:30;;;;27182:37;;27100:127;;;:::o;34006:126::-;;;;:::o;34517:125::-;;;;:::o;35586:127::-;35693:1;35675:7;:14;;;:19;;;;;;;;;;;35586:127;:::o;35464:114::-;35529:7;35556;:14;;;35549:21;;35464:114;;;:::o;28000:110::-;28076:26;28086:2;28090:7;28076:26;;;;;;;;;;;;:9;:26::i;:::-;28000:110;;:::o;32581:853::-;32735:4;32756:15;:2;:13;;;:15::i;:::-;32752:675;;;32808:2;32792:36;;;32829:12;:10;:12::i;:::-;32843:4;32849:7;32858:4;32792:71;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;32788:584;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33050:1;33033:6;:13;:18;33029:328;;;33076:60;;;;;;;;;;:::i;:::-;;;;;;;;33029:328;33307:6;33301:13;33292:6;33288:2;33284:15;33277:38;32788:584;32924:41;;;32914:51;;;:6;:51;;;;32907:58;;;;;32752:675;33411:4;33404:11;;32581:853;;;;;;;:::o;28337:319::-;28466:18;28472:2;28476:7;28466:5;:18::i;:::-;28517:53;28548:1;28552:2;28556:7;28565:4;28517:22;:53::i;:::-;28495:153;;;;;;;;;;;;:::i;:::-;;;;;;;;;28337:319;;;:::o;8578:326::-;8638:4;8895:1;8873:7;:19;;;:23;8866:30;;8578:326;;;:::o;28992:439::-;29086:1;29072:16;;:2;:16;;;;29064:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;29145:16;29153:7;29145;:16::i;:::-;29144:17;29136:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;29207:45;29236:1;29240:2;29244:7;29207:20;:45::i;:::-;29282:1;29265:9;:13;29275:2;29265:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;29313:2;29294:7;:16;29302:7;29294:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;29358:7;29354:2;29333:33;;29350:1;29333:33;;;;;;;;;;;;29379:44;29407:1;29411:2;29415:7;29379:19;:44::i;:::-;28992:439;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:75:1:-;40:6;73:2;67:9;57:19;;7:75;:::o;88:117::-;197:1;194;187:12;211:117;320:1;317;310:12;334:149;370:7;410:66;403:5;399:78;388:89;;334:149;;;:::o;489:120::-;561:23;578:5;561:23;:::i;:::-;554:5;551:34;541:62;;599:1;596;589:12;541:62;489:120;:::o;615:137::-;660:5;698:6;685:20;676:29;;714:32;740:5;714:32;:::i;:::-;615:137;;;;:::o;758:327::-;816:6;865:2;853:9;844:7;840:23;836:32;833:119;;;871:79;;:::i;:::-;833:119;991:1;1016:52;1060:7;1051:6;1040:9;1036:22;1016:52;:::i;:::-;1006:62;;962:116;758:327;;;;:::o;1091:90::-;1125:7;1168:5;1161:13;1154:21;1143:32;;1091:90;;;:::o;1187:109::-;1268:21;1283:5;1268:21;:::i;:::-;1263:3;1256:34;1187:109;;:::o;1302:210::-;1389:4;1427:2;1416:9;1412:18;1404:26;;1440:65;1502:1;1491:9;1487:17;1478:6;1440:65;:::i;:::-;1302:210;;;;:::o;1518:99::-;1570:6;1604:5;1598:12;1588:22;;1518:99;;;:::o;1623:169::-;1707:11;1741:6;1736:3;1729:19;1781:4;1776:3;1772:14;1757:29;;1623:169;;;;:::o;1798:307::-;1866:1;1876:113;1890:6;1887:1;1884:13;1876:113;;;1975:1;1970:3;1966:11;1960:18;1956:1;1951:3;1947:11;1940:39;1912:2;1909:1;1905:10;1900:15;;1876:113;;;2007:6;2004:1;2001:13;1998:101;;;2087:1;2078:6;2073:3;2069:16;2062:27;1998:101;1847:258;1798:307;;;:::o;2111:102::-;2152:6;2203:2;2199:7;2194:2;2187:5;2183:14;2179:28;2169:38;;2111:102;;;:::o;2219:364::-;2307:3;2335:39;2368:5;2335:39;:::i;:::-;2390:71;2454:6;2449:3;2390:71;:::i;:::-;2383:78;;2470:52;2515:6;2510:3;2503:4;2496:5;2492:16;2470:52;:::i;:::-;2547:29;2569:6;2547:29;:::i;:::-;2542:3;2538:39;2531:46;;2311:272;2219:364;;;;:::o;2589:313::-;2702:4;2740:2;2729:9;2725:18;2717:26;;2789:9;2783:4;2779:20;2775:1;2764:9;2760:17;2753:47;2817:78;2890:4;2881:6;2817:78;:::i;:::-;2809:86;;2589:313;;;;:::o;2908:77::-;2945:7;2974:5;2963:16;;2908:77;;;:::o;2991:122::-;3064:24;3082:5;3064:24;:::i;:::-;3057:5;3054:35;3044:63;;3103:1;3100;3093:12;3044:63;2991:122;:::o;3119:139::-;3165:5;3203:6;3190:20;3181:29;;3219:33;3246:5;3219:33;:::i;:::-;3119:139;;;;:::o;3264:329::-;3323:6;3372:2;3360:9;3351:7;3347:23;3343:32;3340:119;;;3378:79;;:::i;:::-;3340:119;3498:1;3523:53;3568:7;3559:6;3548:9;3544:22;3523:53;:::i;:::-;3513:63;;3469:117;3264:329;;;;:::o;3599:126::-;3636:7;3676:42;3669:5;3665:54;3654:65;;3599:126;;;:::o;3731:96::-;3768:7;3797:24;3815:5;3797:24;:::i;:::-;3786:35;;3731:96;;;:::o;3833:118::-;3920:24;3938:5;3920:24;:::i;:::-;3915:3;3908:37;3833:118;;:::o;3957:222::-;4050:4;4088:2;4077:9;4073:18;4065:26;;4101:71;4169:1;4158:9;4154:17;4145:6;4101:71;:::i;:::-;3957:222;;;;:::o;4185:122::-;4258:24;4276:5;4258:24;:::i;:::-;4251:5;4248:35;4238:63;;4297:1;4294;4287:12;4238:63;4185:122;:::o;4313:139::-;4359:5;4397:6;4384:20;4375:29;;4413:33;4440:5;4413:33;:::i;:::-;4313:139;;;;:::o;4458:474::-;4526:6;4534;4583:2;4571:9;4562:7;4558:23;4554:32;4551:119;;;4589:79;;:::i;:::-;4551:119;4709:1;4734:53;4779:7;4770:6;4759:9;4755:22;4734:53;:::i;:::-;4724:63;;4680:117;4836:2;4862:53;4907:7;4898:6;4887:9;4883:22;4862:53;:::i;:::-;4852:63;;4807:118;4458:474;;;;;:::o;4938:118::-;5025:24;5043:5;5025:24;:::i;:::-;5020:3;5013:37;4938:118;;:::o;5062:222::-;5155:4;5193:2;5182:9;5178:18;5170:26;;5206:71;5274:1;5263:9;5259:17;5250:6;5206:71;:::i;:::-;5062:222;;;;:::o;5290:117::-;5399:1;5396;5389:12;5413:117;5522:1;5519;5512:12;5536:180;5584:77;5581:1;5574:88;5681:4;5678:1;5671:15;5705:4;5702:1;5695:15;5722:281;5805:27;5827:4;5805:27;:::i;:::-;5797:6;5793:40;5935:6;5923:10;5920:22;5899:18;5887:10;5884:34;5881:62;5878:88;;;5946:18;;:::i;:::-;5878:88;5986:10;5982:2;5975:22;5765:238;5722:281;;:::o;6009:129::-;6043:6;6070:20;;:::i;:::-;6060:30;;6099:33;6127:4;6119:6;6099:33;:::i;:::-;6009:129;;;:::o;6144:308::-;6206:4;6296:18;6288:6;6285:30;6282:56;;;6318:18;;:::i;:::-;6282:56;6356:29;6378:6;6356:29;:::i;:::-;6348:37;;6440:4;6434;6430:15;6422:23;;6144:308;;;:::o;6458:154::-;6542:6;6537:3;6532;6519:30;6604:1;6595:6;6590:3;6586:16;6579:27;6458:154;;;:::o;6618:412::-;6696:5;6721:66;6737:49;6779:6;6737:49;:::i;:::-;6721:66;:::i;:::-;6712:75;;6810:6;6803:5;6796:21;6848:4;6841:5;6837:16;6886:3;6877:6;6872:3;6868:16;6865:25;6862:112;;;6893:79;;:::i;:::-;6862:112;6983:41;7017:6;7012:3;7007;6983:41;:::i;:::-;6702:328;6618:412;;;;;:::o;7050:340::-;7106:5;7155:3;7148:4;7140:6;7136:17;7132:27;7122:122;;7163:79;;:::i;:::-;7122:122;7280:6;7267:20;7305:79;7380:3;7372:6;7365:4;7357:6;7353:17;7305:79;:::i;:::-;7296:88;;7112:278;7050:340;;;;:::o;7396:509::-;7465:6;7514:2;7502:9;7493:7;7489:23;7485:32;7482:119;;;7520:79;;:::i;:::-;7482:119;7668:1;7657:9;7653:17;7640:31;7698:18;7690:6;7687:30;7684:117;;;7720:79;;:::i;:::-;7684:117;7825:63;7880:7;7871:6;7860:9;7856:22;7825:63;:::i;:::-;7815:73;;7611:287;7396:509;;;;:::o;7911:619::-;7988:6;7996;8004;8053:2;8041:9;8032:7;8028:23;8024:32;8021:119;;;8059:79;;:::i;:::-;8021:119;8179:1;8204:53;8249:7;8240:6;8229:9;8225:22;8204:53;:::i;:::-;8194:63;;8150:117;8306:2;8332:53;8377:7;8368:6;8357:9;8353:22;8332:53;:::i;:::-;8322:63;;8277:118;8434:2;8460:53;8505:7;8496:6;8485:9;8481:22;8460:53;:::i;:::-;8450:63;;8405:118;7911:619;;;;;:::o;8536:329::-;8595:6;8644:2;8632:9;8623:7;8619:23;8615:32;8612:119;;;8650:79;;:::i;:::-;8612:119;8770:1;8795:53;8840:7;8831:6;8820:9;8816:22;8795:53;:::i;:::-;8785:63;;8741:117;8536:329;;;;:::o;8871:116::-;8941:21;8956:5;8941:21;:::i;:::-;8934:5;8931:32;8921:60;;8977:1;8974;8967:12;8921:60;8871:116;:::o;8993:133::-;9036:5;9074:6;9061:20;9052:29;;9090:30;9114:5;9090:30;:::i;:::-;8993:133;;;;:::o;9132:323::-;9188:6;9237:2;9225:9;9216:7;9212:23;9208:32;9205:119;;;9243:79;;:::i;:::-;9205:119;9363:1;9388:50;9430:7;9421:6;9410:9;9406:22;9388:50;:::i;:::-;9378:60;;9334:114;9132:323;;;;:::o;9461:468::-;9526:6;9534;9583:2;9571:9;9562:7;9558:23;9554:32;9551:119;;;9589:79;;:::i;:::-;9551:119;9709:1;9734:53;9779:7;9770:6;9759:9;9755:22;9734:53;:::i;:::-;9724:63;;9680:117;9836:2;9862:50;9904:7;9895:6;9884:9;9880:22;9862:50;:::i;:::-;9852:60;;9807:115;9461:468;;;;;:::o;9935:307::-;9996:4;10086:18;10078:6;10075:30;10072:56;;;10108:18;;:::i;:::-;10072:56;10146:29;10168:6;10146:29;:::i;:::-;10138:37;;10230:4;10224;10220:15;10212:23;;9935:307;;;:::o;10248:410::-;10325:5;10350:65;10366:48;10407:6;10366:48;:::i;:::-;10350:65;:::i;:::-;10341:74;;10438:6;10431:5;10424:21;10476:4;10469:5;10465:16;10514:3;10505:6;10500:3;10496:16;10493:25;10490:112;;;10521:79;;:::i;:::-;10490:112;10611:41;10645:6;10640:3;10635;10611:41;:::i;:::-;10331:327;10248:410;;;;;:::o;10677:338::-;10732:5;10781:3;10774:4;10766:6;10762:17;10758:27;10748:122;;10789:79;;:::i;:::-;10748:122;10906:6;10893:20;10931:78;11005:3;10997:6;10990:4;10982:6;10978:17;10931:78;:::i;:::-;10922:87;;10738:277;10677:338;;;;:::o;11021:943::-;11116:6;11124;11132;11140;11189:3;11177:9;11168:7;11164:23;11160:33;11157:120;;;11196:79;;:::i;:::-;11157:120;11316:1;11341:53;11386:7;11377:6;11366:9;11362:22;11341:53;:::i;:::-;11331:63;;11287:117;11443:2;11469:53;11514:7;11505:6;11494:9;11490:22;11469:53;:::i;:::-;11459:63;;11414:118;11571:2;11597:53;11642:7;11633:6;11622:9;11618:22;11597:53;:::i;:::-;11587:63;;11542:118;11727:2;11716:9;11712:18;11699:32;11758:18;11750:6;11747:30;11744:117;;;11780:79;;:::i;:::-;11744:117;11885:62;11939:7;11930:6;11919:9;11915:22;11885:62;:::i;:::-;11875:72;;11670:287;11021:943;;;;;;;:::o;11970:474::-;12038:6;12046;12095:2;12083:9;12074:7;12070:23;12066:32;12063:119;;;12101:79;;:::i;:::-;12063:119;12221:1;12246:53;12291:7;12282:6;12271:9;12267:22;12246:53;:::i;:::-;12236:63;;12192:117;12348:2;12374:53;12419:7;12410:6;12399:9;12395:22;12374:53;:::i;:::-;12364:63;;12319:118;11970:474;;;;;:::o;12450:180::-;12498:77;12495:1;12488:88;12595:4;12592:1;12585:15;12619:4;12616:1;12609:15;12636:320;12680:6;12717:1;12711:4;12707:12;12697:22;;12764:1;12758:4;12754:12;12785:18;12775:81;;12841:4;12833:6;12829:17;12819:27;;12775:81;12903:2;12895:6;12892:14;12872:18;12869:38;12866:84;;;12922:18;;:::i;:::-;12866:84;12687:269;12636:320;;;:::o;12962:220::-;13102:34;13098:1;13090:6;13086:14;13079:58;13171:3;13166:2;13158:6;13154:15;13147:28;12962:220;:::o;13188:366::-;13330:3;13351:67;13415:2;13410:3;13351:67;:::i;:::-;13344:74;;13427:93;13516:3;13427:93;:::i;:::-;13545:2;13540:3;13536:12;13529:19;;13188:366;;;:::o;13560:419::-;13726:4;13764:2;13753:9;13749:18;13741:26;;13813:9;13807:4;13803:20;13799:1;13788:9;13784:17;13777:47;13841:131;13967:4;13841:131;:::i;:::-;13833:139;;13560:419;;;:::o;13985:249::-;14125:34;14121:1;14113:6;14109:14;14102:58;14194:32;14189:2;14181:6;14177:15;14170:57;13985:249;:::o;14240:366::-;14382:3;14403:67;14467:2;14462:3;14403:67;:::i;:::-;14396:74;;14479:93;14568:3;14479:93;:::i;:::-;14597:2;14592:3;14588:12;14581:19;;14240:366;;;:::o;14612:419::-;14778:4;14816:2;14805:9;14801:18;14793:26;;14865:9;14859:4;14855:20;14851:1;14840:9;14836:17;14829:47;14893:131;15019:4;14893:131;:::i;:::-;14885:139;;14612:419;;;:::o;15037:233::-;15177:34;15173:1;15165:6;15161:14;15154:58;15246:16;15241:2;15233:6;15229:15;15222:41;15037:233;:::o;15276:366::-;15418:3;15439:67;15503:2;15498:3;15439:67;:::i;:::-;15432:74;;15515:93;15604:3;15515:93;:::i;:::-;15633:2;15628:3;15624:12;15617:19;;15276:366;;;:::o;15648:419::-;15814:4;15852:2;15841:9;15837:18;15829:26;;15901:9;15895:4;15891:20;15887:1;15876:9;15872:17;15865:47;15929:131;16055:4;15929:131;:::i;:::-;15921:139;;15648:419;;;:::o;16073:221::-;16213:34;16209:1;16201:6;16197:14;16190:58;16282:4;16277:2;16269:6;16265:15;16258:29;16073:221;:::o;16300:366::-;16442:3;16463:67;16527:2;16522:3;16463:67;:::i;:::-;16456:74;;16539:93;16628:3;16539:93;:::i;:::-;16657:2;16652:3;16648:12;16641:19;;16300:366;;;:::o;16672:419::-;16838:4;16876:2;16865:9;16861:18;16853:26;;16925:9;16919:4;16915:20;16911:1;16900:9;16896:17;16889:47;16953:131;17079:4;16953:131;:::i;:::-;16945:139;;16672:419;;;:::o;17097:180::-;17145:77;17142:1;17135:88;17242:4;17239:1;17232:15;17266:4;17263:1;17256:15;17283:305;17323:3;17342:20;17360:1;17342:20;:::i;:::-;17337:25;;17376:20;17394:1;17376:20;:::i;:::-;17371:25;;17530:1;17462:66;17458:74;17455:1;17452:81;17449:107;;;17536:18;;:::i;:::-;17449:107;17580:1;17577;17573:9;17566:16;;17283:305;;;;:::o;17594:181::-;17734:33;17730:1;17722:6;17718:14;17711:57;17594:181;:::o;17781:366::-;17923:3;17944:67;18008:2;18003:3;17944:67;:::i;:::-;17937:74;;18020:93;18109:3;18020:93;:::i;:::-;18138:2;18133:3;18129:12;18122:19;;17781:366;;;:::o;18153:419::-;18319:4;18357:2;18346:9;18342:18;18334:26;;18406:9;18400:4;18396:20;18392:1;18381:9;18377:17;18370:47;18434:131;18560:4;18434:131;:::i;:::-;18426:139;;18153:419;;;:::o;18578:165::-;18718:17;18714:1;18706:6;18702:14;18695:41;18578:165;:::o;18749:366::-;18891:3;18912:67;18976:2;18971:3;18912:67;:::i;:::-;18905:74;;18988:93;19077:3;18988:93;:::i;:::-;19106:2;19101:3;19097:12;19090:19;;18749:366;;;:::o;19121:419::-;19287:4;19325:2;19314:9;19310:18;19302:26;;19374:9;19368:4;19364:20;19360:1;19349:9;19345:17;19338:47;19402:131;19528:4;19402:131;:::i;:::-;19394:139;;19121:419;;;:::o;19546:348::-;19586:7;19609:20;19627:1;19609:20;:::i;:::-;19604:25;;19643:20;19661:1;19643:20;:::i;:::-;19638:25;;19831:1;19763:66;19759:74;19756:1;19753:81;19748:1;19741:9;19734:17;19730:105;19727:131;;;19838:18;;:::i;:::-;19727:131;19886:1;19883;19879:9;19868:20;;19546:348;;;;:::o;19900:175::-;20040:27;20036:1;20028:6;20024:14;20017:51;19900:175;:::o;20081:366::-;20223:3;20244:67;20308:2;20303:3;20244:67;:::i;:::-;20237:74;;20320:93;20409:3;20320:93;:::i;:::-;20438:2;20433:3;20429:12;20422:19;;20081:366;;;:::o;20453:419::-;20619:4;20657:2;20646:9;20642:18;20634:26;;20706:9;20700:4;20696:20;20692:1;20681:9;20677:17;20670:47;20734:131;20860:4;20734:131;:::i;:::-;20726:139;;20453:419;;;:::o;20878:191::-;20918:4;20938:20;20956:1;20938:20;:::i;:::-;20933:25;;20972:20;20990:1;20972:20;:::i;:::-;20967:25;;21011:1;21008;21005:8;21002:34;;;21016:18;;:::i;:::-;21002:34;21061:1;21058;21054:9;21046:17;;20878:191;;;;:::o;21075:174::-;21215:26;21211:1;21203:6;21199:14;21192:50;21075:174;:::o;21255:366::-;21397:3;21418:67;21482:2;21477:3;21418:67;:::i;:::-;21411:74;;21494:93;21583:3;21494:93;:::i;:::-;21612:2;21607:3;21603:12;21596:19;;21255:366;;;:::o;21627:419::-;21793:4;21831:2;21820:9;21816:18;21808:26;;21880:9;21874:4;21870:20;21866:1;21855:9;21851:17;21844:47;21908:131;22034:4;21908:131;:::i;:::-;21900:139;;21627:419;;;:::o;22052:228::-;22192:34;22188:1;22180:6;22176:14;22169:58;22261:11;22256:2;22248:6;22244:15;22237:36;22052:228;:::o;22286:366::-;22428:3;22449:67;22513:2;22508:3;22449:67;:::i;:::-;22442:74;;22525:93;22614:3;22525:93;:::i;:::-;22643:2;22638:3;22634:12;22627:19;;22286:366;;;:::o;22658:419::-;22824:4;22862:2;22851:9;22847:18;22839:26;;22911:9;22905:4;22901:20;22897:1;22886:9;22882:17;22875:47;22939:131;23065:4;22939:131;:::i;:::-;22931:139;;22658:419;;;:::o;23083:165::-;23223:17;23219:1;23211:6;23207:14;23200:41;23083:165;:::o;23254:366::-;23396:3;23417:67;23481:2;23476:3;23417:67;:::i;:::-;23410:74;;23493:93;23582:3;23493:93;:::i;:::-;23611:2;23606:3;23602:12;23595:19;;23254:366;;;:::o;23626:419::-;23792:4;23830:2;23819:9;23815:18;23807:26;;23879:9;23873:4;23869:20;23865:1;23854:9;23850:17;23843:47;23907:131;24033:4;23907:131;:::i;:::-;23899:139;;23626:419;;;:::o;24051:234::-;24191:34;24187:1;24179:6;24175:14;24168:58;24260:17;24255:2;24247:6;24243:15;24236:42;24051:234;:::o;24291:366::-;24433:3;24454:67;24518:2;24513:3;24454:67;:::i;:::-;24447:74;;24530:93;24619:3;24530:93;:::i;:::-;24648:2;24643:3;24639:12;24632:19;;24291:366;;;:::o;24663:419::-;24829:4;24867:2;24856:9;24852:18;24844:26;;24916:9;24910:4;24906:20;24902:1;24891:9;24887:17;24880:47;24944:131;25070:4;24944:131;:::i;:::-;24936:139;;24663:419;;;:::o;25088:148::-;25190:11;25227:3;25212:18;;25088:148;;;;:::o;25242:377::-;25348:3;25376:39;25409:5;25376:39;:::i;:::-;25431:89;25513:6;25508:3;25431:89;:::i;:::-;25424:96;;25529:52;25574:6;25569:3;25562:4;25555:5;25551:16;25529:52;:::i;:::-;25606:6;25601:3;25597:16;25590:23;;25352:267;25242:377;;;;:::o;25625:79::-;25664:7;25693:5;25682:16;;25625:79;;;:::o;25710:157::-;25815:45;25835:24;25853:5;25835:24;:::i;:::-;25815:45;:::i;:::-;25810:3;25803:58;25710:157;;:::o;25873:155::-;26013:7;26009:1;26001:6;25997:14;25990:31;25873:155;:::o;26034:400::-;26194:3;26215:84;26297:1;26292:3;26215:84;:::i;:::-;26208:91;;26308:93;26397:3;26308:93;:::i;:::-;26426:1;26421:3;26417:11;26410:18;;26034:400;;;:::o;26440:682::-;26701:3;26723:95;26814:3;26805:6;26723:95;:::i;:::-;26716:102;;26828:75;26899:3;26890:6;26828:75;:::i;:::-;26928:2;26923:3;26919:12;26912:19;;26948:148;27092:3;26948:148;:::i;:::-;26941:155;;27113:3;27106:10;;26440:682;;;;;:::o;27128:225::-;27268:34;27264:1;27256:6;27252:14;27245:58;27337:8;27332:2;27324:6;27320:15;27313:33;27128:225;:::o;27359:366::-;27501:3;27522:67;27586:2;27581:3;27522:67;:::i;:::-;27515:74;;27598:93;27687:3;27598:93;:::i;:::-;27716:2;27711:3;27707:12;27700:19;;27359:366;;;:::o;27731:419::-;27897:4;27935:2;27924:9;27920:18;27912:26;;27984:9;27978:4;27974:20;27970:1;27959:9;27955:17;27948:47;28012:131;28138:4;28012:131;:::i;:::-;28004:139;;27731:419;;;:::o;28156:182::-;28296:34;28292:1;28284:6;28280:14;28273:58;28156:182;:::o;28344:366::-;28486:3;28507:67;28571:2;28566:3;28507:67;:::i;:::-;28500:74;;28583:93;28672:3;28583:93;:::i;:::-;28701:2;28696:3;28692:12;28685:19;;28344:366;;;:::o;28716:419::-;28882:4;28920:2;28909:9;28905:18;28897:26;;28969:9;28963:4;28959:20;28955:1;28944:9;28940:17;28933:47;28997:131;29123:4;28997:131;:::i;:::-;28989:139;;28716:419;;;:::o;29141:224::-;29281:34;29277:1;29269:6;29265:14;29258:58;29350:7;29345:2;29337:6;29333:15;29326:32;29141:224;:::o;29371:366::-;29513:3;29534:67;29598:2;29593:3;29534:67;:::i;:::-;29527:74;;29610:93;29699:3;29610:93;:::i;:::-;29728:2;29723:3;29719:12;29712:19;;29371:366;;;:::o;29743:419::-;29909:4;29947:2;29936:9;29932:18;29924:26;;29996:9;29990:4;29986:20;29982:1;29971:9;29967:17;29960:47;30024:131;30150:4;30024:131;:::i;:::-;30016:139;;29743:419;;;:::o;30168:223::-;30308:34;30304:1;30296:6;30292:14;30285:58;30377:6;30372:2;30364:6;30360:15;30353:31;30168:223;:::o;30397:366::-;30539:3;30560:67;30624:2;30619:3;30560:67;:::i;:::-;30553:74;;30636:93;30725:3;30636:93;:::i;:::-;30754:2;30749:3;30745:12;30738:19;;30397:366;;;:::o;30769:419::-;30935:4;30973:2;30962:9;30958:18;30950:26;;31022:9;31016:4;31012:20;31008:1;30997:9;30993:17;30986:47;31050:131;31176:4;31050:131;:::i;:::-;31042:139;;30769:419;;;:::o;31194:164::-;31334:16;31330:1;31322:6;31318:14;31311:40;31194:164;:::o;31364:366::-;31506:3;31527:67;31591:2;31586:3;31527:67;:::i;:::-;31520:74;;31603:93;31692:3;31603:93;:::i;:::-;31721:2;31716:3;31712:12;31705:19;;31364:366;;;:::o;31736:419::-;31902:4;31940:2;31929:9;31925:18;31917:26;;31989:9;31983:4;31979:20;31975:1;31964:9;31960:17;31953:47;32017:131;32143:4;32017:131;:::i;:::-;32009:139;;31736:419;;;:::o;32161:233::-;32200:3;32223:24;32241:5;32223:24;:::i;:::-;32214:33;;32269:66;32262:5;32259:77;32256:103;;;32339:18;;:::i;:::-;32256:103;32386:1;32379:5;32375:13;32368:20;;32161:233;;;:::o;32400:175::-;32540:27;32536:1;32528:6;32524:14;32517:51;32400:175;:::o;32581:366::-;32723:3;32744:67;32808:2;32803:3;32744:67;:::i;:::-;32737:74;;32820:93;32909:3;32820:93;:::i;:::-;32938:2;32933:3;32929:12;32922:19;;32581:366;;;:::o;32953:419::-;33119:4;33157:2;33146:9;33142:18;33134:26;;33206:9;33200:4;33196:20;33192:1;33181:9;33177:17;33170:47;33234:131;33360:4;33234:131;:::i;:::-;33226:139;;32953:419;;;:::o;33378:237::-;33518:34;33514:1;33506:6;33502:14;33495:58;33587:20;33582:2;33574:6;33570:15;33563:45;33378:237;:::o;33621:366::-;33763:3;33784:67;33848:2;33843:3;33784:67;:::i;:::-;33777:74;;33860:93;33949:3;33860:93;:::i;:::-;33978:2;33973:3;33969:12;33962:19;;33621:366;;;:::o;33993:419::-;34159:4;34197:2;34186:9;34182:18;34174:26;;34246:9;34240:4;34236:20;34232:1;34221:9;34217:17;34210:47;34274:131;34400:4;34274:131;:::i;:::-;34266:139;;33993:419;;;:::o;34418:98::-;34469:6;34503:5;34497:12;34487:22;;34418:98;;;:::o;34522:168::-;34605:11;34639:6;34634:3;34627:19;34679:4;34674:3;34670:14;34655:29;;34522:168;;;;:::o;34696:360::-;34782:3;34810:38;34842:5;34810:38;:::i;:::-;34864:70;34927:6;34922:3;34864:70;:::i;:::-;34857:77;;34943:52;34988:6;34983:3;34976:4;34969:5;34965:16;34943:52;:::i;:::-;35020:29;35042:6;35020:29;:::i;:::-;35015:3;35011:39;35004:46;;34786:270;34696:360;;;;:::o;35062:640::-;35257:4;35295:3;35284:9;35280:19;35272:27;;35309:71;35377:1;35366:9;35362:17;35353:6;35309:71;:::i;:::-;35390:72;35458:2;35447:9;35443:18;35434:6;35390:72;:::i;:::-;35472;35540:2;35529:9;35525:18;35516:6;35472:72;:::i;:::-;35591:9;35585:4;35581:20;35576:2;35565:9;35561:18;35554:48;35619:76;35690:4;35681:6;35619:76;:::i;:::-;35611:84;;35062:640;;;;;;;:::o;35708:141::-;35764:5;35795:6;35789:13;35780:22;;35811:32;35837:5;35811:32;:::i;:::-;35708:141;;;;:::o;35855:349::-;35924:6;35973:2;35961:9;35952:7;35948:23;35944:32;35941:119;;;35979:79;;:::i;:::-;35941:119;36099:1;36124:63;36179:7;36170:6;36159:9;36155:22;36124:63;:::i;:::-;36114:73;;36070:127;35855:349;;;;:::o;36210:182::-;36350:34;36346:1;36338:6;36334:14;36327:58;36210:182;:::o;36398:366::-;36540:3;36561:67;36625:2;36620:3;36561:67;:::i;:::-;36554:74;;36637:93;36726:3;36637:93;:::i;:::-;36755:2;36750:3;36746:12;36739:19;;36398:366;;;:::o;36770:419::-;36936:4;36974:2;36963:9;36959:18;36951:26;;37023:9;37017:4;37013:20;37009:1;36998:9;36994:17;36987:47;37051:131;37177:4;37051:131;:::i;:::-;37043:139;;36770:419;;;:::o;37195:178::-;37335:30;37331:1;37323:6;37319:14;37312:54;37195:178;:::o;37379:366::-;37521:3;37542:67;37606:2;37601:3;37542:67;:::i;:::-;37535:74;;37618:93;37707:3;37618:93;:::i;:::-;37736:2;37731:3;37727:12;37720:19;;37379:366;;;:::o;37751:419::-;37917:4;37955:2;37944:9;37940:18;37932:26;;38004:9;37998:4;37994:20;37990:1;37979:9;37975:17;37968:47;38032:131;38158:4;38032:131;:::i;:::-;38024:139;;37751:419;;;:::o

Swarm Source

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