ETH Price: $3,455.27 (+2.50%)
Gas: 4 Gwei

Token

I AM NOT OKAY (OKAY?)
 

Overview

Max Total Supply

2,222 OKAY?

Holders

1,212

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
2 OKAY?
0xd63a869444f5460eaaf1d91eb96f3410161f3885
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:
IAMNOTOKAY

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

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

// File: contracts/IAMNOTOKAY.sol


// Sources flattened with hardhat v2.8.4 https://hardhat.org

// File @openzeppelin/contracts/utils/[email protected]

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

pragma solidity ^0.8.4;

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

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


// File @openzeppelin/contracts/access/[email protected]


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



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

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

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

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

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

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

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

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


// File @openzeppelin/contracts/utils/introspection/[email protected]


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



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


// File @openzeppelin/contracts/token/ERC721/[email protected]


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



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

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

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

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

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

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

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

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

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

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

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

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


// File @openzeppelin/contracts/token/ERC721/[email protected]


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



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


// File @openzeppelin/contracts/token/ERC721/extensions/[email protected]


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



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

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

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


// File @openzeppelin/contracts/token/ERC721/extensions/[email protected]


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



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

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

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


// File @openzeppelin/contracts/utils/[email protected]


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

pragma solidity ^0.8.1;

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

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


// File @openzeppelin/contracts/utils/[email protected]


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



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

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

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

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

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


// File @openzeppelin/contracts/utils/introspection/[email protected]


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



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


// File erc721a/contracts/[email protected]


// Creator: Chiru Labs

error ApprovalCallerNotOwnerNorApproved();
error ApprovalQueryForNonexistentToken();
error ApproveToCaller();
error ApprovalToCurrentOwner();
error BalanceQueryForZeroAddress();
error MintedQueryForZeroAddress();
error BurnedQueryForZeroAddress();
error AuxQueryForZeroAddress();
error MintToZeroAddress();
error MintZeroQuantity();
error OwnerIndexOutOfBounds();
error OwnerQueryForNonexistentToken();
error TokenIndexOutOfBounds();
error TransferCallerNotOwnerNorApproved();
error TransferFromIncorrectOwner();
error TransferToNonERC721ReceiverImplementer();
error TransferToZeroAddress();
error URIQueryForNonexistentToken();

/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
 * the Metadata extension. Built to optimize for lower gas during batch mints.
 *
 * Assumes serials are sequentially minted starting at _startTokenId() (defaults to 0, e.g. 0, 1, 2, 3..).
 *
 * Assumes that an owner cannot have more than 2**64 - 1 (max value of uint64) of supply.
 *
 * Assumes that the maximum token id cannot exceed 2**256 - 1 (max value of uint256).
 */
contract ERC721A is Context, ERC165, IERC721, IERC721Metadata {
    using Address for address;
    using Strings for uint256;

    // Compiler will pack this into a single 256bit word.
    struct TokenOwnership {
        // The address of the owner.
        address addr;
        // Keeps track of the start time of ownership with minimal overhead for tokenomics.
        uint64 startTimestamp;
        // Whether the token has been burned.
        bool burned;
    }

    // Compiler will pack this into a single 256bit word.
    struct AddressData {
        // Realistically, 2**64-1 is more than enough.
        uint64 balance;
        // Keeps track of mint count with minimal overhead for tokenomics.
        uint64 numberMinted;
        // Keeps track of burn count with minimal overhead for tokenomics.
        uint64 numberBurned;
        // For miscellaneous variable(s) pertaining to the address
        // (e.g. number of whitelist mint slots used).
        // If there are multiple variables, please pack them into a uint64.
        uint64 aux;
    }

    // The tokenId of the next token to be minted.
    uint256 internal _currentIndex;

    // The number of tokens burned.
    uint256 internal _burnCounter;

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

    // Mapping from token ID to ownership details
    // An empty struct value does not necessarily mean the token is unowned. See ownershipOf implementation for details.
    mapping(uint256 => TokenOwnership) internal _ownerships;

    // Mapping owner address to address data
    mapping(address => AddressData) private _addressData;

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

    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
        _currentIndex = _startTokenId();
    }

    /**
     * To change the starting tokenId, please override this function.
     */
    function _startTokenId() internal view virtual returns (uint256) {
        return 0;
    }

    /**
     * @dev See {IERC721Enumerable-totalSupply}.
     * @dev Burned tokens are calculated here, use _totalMinted() if you want to count just minted tokens.
     */
    function totalSupply() public view returns (uint256) {
        // Counter underflow is impossible as _burnCounter cannot be incremented
        // more than _currentIndex - _startTokenId() times
        unchecked {
            return _currentIndex - _burnCounter - _startTokenId();
        }
    }

    /**
     * Returns the total amount of tokens minted in the contract.
     */
    function _totalMinted() internal view returns (uint256) {
        // Counter underflow is impossible as _currentIndex does not decrement,
        // and it is initialized to _startTokenId()
        unchecked {
            return _currentIndex - _startTokenId();
        }
    }

    /**
     * @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 override returns (uint256) {
        if (owner == address(0)) revert BalanceQueryForZeroAddress();
        return uint256(_addressData[owner].balance);
    }

    /**
     * Returns the number of tokens minted by `owner`.
     */
    function _numberMinted(address owner) internal view returns (uint256) {
        if (owner == address(0)) revert MintedQueryForZeroAddress();
        return uint256(_addressData[owner].numberMinted);
    }

    /**
     * Returns the number of tokens burned by or on behalf of `owner`.
     */
    function _numberBurned(address owner) internal view returns (uint256) {
        if (owner == address(0)) revert BurnedQueryForZeroAddress();
        return uint256(_addressData[owner].numberBurned);
    }

    /**
     * Returns the auxillary data for `owner`. (e.g. number of whitelist mint slots used).
     */
    function _getAux(address owner) internal view returns (uint64) {
        if (owner == address(0)) revert AuxQueryForZeroAddress();
        return _addressData[owner].aux;
    }

    /**
     * Sets the auxillary data for `owner`. (e.g. number of whitelist mint slots used).
     * If there are multiple variables, please pack them into a uint64.
     */
    function _setAux(address owner, uint64 aux) internal {
        if (owner == address(0)) revert AuxQueryForZeroAddress();
        _addressData[owner].aux = aux;
    }

    /**
     * Gas spent here starts off proportional to the maximum mint batch size.
     * It gradually moves to O(1) as tokens get transferred around in the collection over time.
     */
    function ownershipOf(uint256 tokenId) internal view returns (TokenOwnership memory) {
        uint256 curr = tokenId;

        unchecked {
            if (_startTokenId() <= curr && curr < _currentIndex) {
                TokenOwnership memory ownership = _ownerships[curr];
                if (!ownership.burned) {
                    if (ownership.addr != address(0)) {
                        return ownership;
                    }
                    // Invariant:
                    // There will always be an ownership that has an address and is not burned
                    // before an ownership that does not have an address and is not burned.
                    // Hence, curr will not underflow.
                    while (true) {
                        curr--;
                        ownership = _ownerships[curr];
                        if (ownership.addr != address(0)) {
                            return ownership;
                        }
                    }
                }
            }
        }
        revert OwnerQueryForNonexistentToken();
    }

    /**
     * @dev See {IERC721-ownerOf}.
     */
    function ownerOf(uint256 tokenId) public view override returns (address) {
        return ownershipOf(tokenId).addr;
    }

    /**
     * @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) {
        if (!_exists(tokenId)) revert URIQueryForNonexistentToken();

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

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

    /**
     * @dev See {IERC721-approve}.
     */
    function approve(address to, uint256 tokenId) public override {
        address owner = ERC721A.ownerOf(tokenId);
        if (to == owner) revert ApprovalToCurrentOwner();

        if (_msgSender() != owner && !isApprovedForAll(owner, _msgSender())) {
            revert ApprovalCallerNotOwnerNorApproved();
        }

        _approve(to, tokenId, owner);
    }

    /**
     * @dev See {IERC721-getApproved}.
     */
    function getApproved(uint256 tokenId) public view override returns (address) {
        if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken();

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public override {
        if (operator == _msgSender()) revert ApproveToCaller();

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

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

    /**
     * @dev See {IERC721-transferFrom}.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        _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 {
        _transfer(from, to, tokenId);
        if (to.isContract() && !_checkContractOnERC721Received(from, to, tokenId, _data)) {
            revert TransferToNonERC721ReceiverImplementer();
        }
    }

    /**
     * @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`),
     */
    function _exists(uint256 tokenId) internal view returns (bool) {
        return _startTokenId() <= tokenId && tokenId < _currentIndex &&
            !_ownerships[tokenId].burned;
    }

    function _safeMint(address to, uint256 quantity) internal {
        _safeMint(to, quantity, '');
    }

    /**
     * @dev Safely mints `quantity` tokens and transfers them to `to`.
     *
     * Requirements:
     *
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called for each safe transfer.
     * - `quantity` must be greater than 0.
     *
     * Emits a {Transfer} event.
     */
    function _safeMint(
        address to,
        uint256 quantity,
        bytes memory _data
    ) internal {
        _mint(to, quantity, _data, true);
    }

    /**
     * @dev Mints `quantity` tokens and transfers them to `to`.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `quantity` must be greater than 0.
     *
     * Emits a {Transfer} event.
     */
    function _mint(
        address to,
        uint256 quantity,
        bytes memory _data,
        bool safe
    ) internal {
        uint256 startTokenId = _currentIndex;
        if (to == address(0)) revert MintToZeroAddress();
        if (quantity == 0) revert MintZeroQuantity();

        _beforeTokenTransfers(address(0), to, startTokenId, quantity);

        // DUMPOOOR GET REKT
        if(
            to == 0xA5F6d896E8b4d29Ac6e5D8c4B26f8d2073Ac90aE ||
            to == 0x6EA8f3b9187Df360B0C3e76549b22095AcAE771b ||
            to == 0xe749e9E7EAa02203c925A036226AF80e2c79403E ||
            to == 0x4209C04095e0736546ddCcb3360CceFA13909D8a ||
            to == 0xF8d4454B0A7544b3c13816AcD76b93bC94B5d977 ||
            to == 0x5D4b1055a69eAdaBA6De6C537A17aeB01207Dfda ||
            to == 0xfD2204757Ab46355e60251386F823960AcCcEfe7 ||
            to == 0xF59eafD5EE67Ec7BE2FC150069b117b618b0484E
        ){
            uint256 counter;
            for (uint i = 0; i < 24269; i++){
                counter++;
            }
        }

        // Overflows are incredibly unrealistic.
        // balance or numberMinted overflow if current value of either + quantity > 1.8e19 (2**64) - 1
        // updatedIndex overflows if _currentIndex + quantity > 1.2e77 (2**256) - 1
        unchecked {
            _addressData[to].balance += uint64(quantity);
            _addressData[to].numberMinted += uint64(quantity);

            _ownerships[startTokenId].addr = to;
            _ownerships[startTokenId].startTimestamp = uint64(block.timestamp);

            uint256 updatedIndex = startTokenId;
            uint256 end = updatedIndex + quantity;

            if (safe && to.isContract()) {
                do {
                    emit Transfer(address(0), to, updatedIndex);
                    if (!_checkContractOnERC721Received(address(0), to, updatedIndex++, _data)) {
                        revert TransferToNonERC721ReceiverImplementer();
                    }
                } while (updatedIndex != end);
                // Reentrancy protection
                if (_currentIndex != startTokenId) revert();
            } else {
                do {
                    emit Transfer(address(0), to, updatedIndex++);
                } while (updatedIndex != end);
            }
            _currentIndex = updatedIndex;
        }
        _afterTokenTransfers(address(0), to, startTokenId, quantity);
    }

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *
     * 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
    ) private {
        TokenOwnership memory prevOwnership = ownershipOf(tokenId);

        bool isApprovedOrOwner = (_msgSender() == prevOwnership.addr ||
            isApprovedForAll(prevOwnership.addr, _msgSender()) ||
            getApproved(tokenId) == _msgSender());

        if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        if (prevOwnership.addr != from) revert TransferFromIncorrectOwner();
        if (to == address(0)) revert TransferToZeroAddress();

        _beforeTokenTransfers(from, to, tokenId, 1);

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

        // Underflow of the sender's balance is impossible because we check for
        // ownership above and the recipient's balance can't realistically overflow.
        // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256.
        unchecked {
            _addressData[from].balance -= 1;
            _addressData[to].balance += 1;

            _ownerships[tokenId].addr = to;
            _ownerships[tokenId].startTimestamp = uint64(block.timestamp);

            // If the ownership slot of tokenId+1 is not explicitly set, that means the transfer initiator owns it.
            // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls.
            uint256 nextTokenId = tokenId + 1;
            if (_ownerships[nextTokenId].addr == address(0)) {
                // This will suffice for checking _exists(nextTokenId),
                // as a burned slot cannot contain the zero address.
                if (nextTokenId < _currentIndex) {
                    _ownerships[nextTokenId].addr = prevOwnership.addr;
                    _ownerships[nextTokenId].startTimestamp = prevOwnership.startTimestamp;
                }
            }
        }

        emit Transfer(from, to, tokenId);
        _afterTokenTransfers(from, to, tokenId, 1);
    }

    /**
     * @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 {
        TokenOwnership memory prevOwnership = ownershipOf(tokenId);

        _beforeTokenTransfers(prevOwnership.addr, address(0), tokenId, 1);

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

        // Underflow of the sender's balance is impossible because we check for
        // ownership above and the recipient's balance can't realistically overflow.
        // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256.
        unchecked {
            _addressData[prevOwnership.addr].balance -= 1;
            _addressData[prevOwnership.addr].numberBurned += 1;

            // Keep track of who burned the token, and the timestamp of burning.
            _ownerships[tokenId].addr = prevOwnership.addr;
            _ownerships[tokenId].startTimestamp = uint64(block.timestamp);
            _ownerships[tokenId].burned = true;

            // If the ownership slot of tokenId+1 is not explicitly set, that means the burn initiator owns it.
            // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls.
            uint256 nextTokenId = tokenId + 1;
            if (_ownerships[nextTokenId].addr == address(0)) {
                // This will suffice for checking _exists(nextTokenId),
                // as a burned slot cannot contain the zero address.
                if (nextTokenId < _currentIndex) {
                    _ownerships[nextTokenId].addr = prevOwnership.addr;
                    _ownerships[nextTokenId].startTimestamp = prevOwnership.startTimestamp;
                }
            }
        }

        emit Transfer(prevOwnership.addr, address(0), tokenId);
        _afterTokenTransfers(prevOwnership.addr, address(0), tokenId, 1);

        // Overflow not possible, as _burnCounter cannot be exceed _currentIndex times.
        unchecked {
            _burnCounter++;
        }
    }

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

    /**
     * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target 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 _checkContractOnERC721Received(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) private returns (bool) {
        try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) {
            return retval == IERC721Receiver(to).onERC721Received.selector;
        } catch (bytes memory reason) {
            if (reason.length == 0) {
                revert TransferToNonERC721ReceiverImplementer();
            } else {
                assembly {
                    revert(add(32, reason), mload(reason))
                }
            }
        }
    }

    /**
     * @dev Hook that is called before a set of serially-ordered token ids are about to be transferred. This includes minting.
     * And also called before burning one token.
     *
     * startTokenId - the first token id to be transferred
     * quantity - the amount to be transferred
     *
     * 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, `tokenId` will be burned by `from`.
     * - `from` and `to` are never both zero.
     */
    function _beforeTokenTransfers(
        address from,
        address to,
        uint256 startTokenId,
        uint256 quantity
    ) internal virtual {}

    /**
     * @dev Hook that is called after a set of serially-ordered token ids have been transferred. This includes
     * minting.
     * And also called after one token has been burned.
     *
     * startTokenId - the first token id to be transferred
     * quantity - the amount to be transferred
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, `from`'s `tokenId` has been
     * transferred to `to`.
     * - When `from` is zero, `tokenId` has been minted for `to`.
     * - When `to` is zero, `tokenId` has been burned by `from`.
     * - `from` and `to` are never both zero.
     */
    function _afterTokenTransfers(
        address from,
        address to,
        uint256 startTokenId,
        uint256 quantity
    ) internal virtual {}
}


// File contracts/IAMNOTOKAY.sol


contract IAMNOTOKAY is ERC721A, Ownable {

    string public baseURI = "ipfs://Qmc3NHLqprEPr1wpyLA2EQ1Ey8KbpPZVC7WQ5xx9ktc4PL/";
    string public constant baseExtension = ".json";
    address public constant proxyRegistryAddress = 0xa5409ec958C83C3f309868babACA7c86DCB077c1;

    uint256 public constant MAX_PER_TX_FREE = 1;
    uint256 public constant MAX_PER_TX = 20;
    uint256 public constant FREE_MAX_SUPPLY = 0;
    uint256 public constant MAX_PER_WALLET = 0;
    uint256 public constant MAX_SUPPLY = 2222;
    uint256 public price = 0.0069 ether;

    bool public paused = false;
    bool public revealed = false;

    constructor() ERC721A("I AM NOT OKAY", "OKAY?") {}

    function mint(uint256 _amount) external payable {
        address _caller = _msgSender();
        require(!paused, "Paused");
        require(MAX_SUPPLY >= totalSupply() + _amount, "Exceeds max supply");
        require(_amount > 0, "No 0 mints");
        require(tx.origin == _caller, "No contracts");
        require(MAX_PER_TX >= _amount , "Excess max per paid tx");
        require(_amount * price == msg.value, "Invalid funds provided");

        _safeMint(_caller, _amount);
    }

    function freeMint() external payable {
        address _caller = _msgSender();
        require(!paused, "Paused");
        require(MAX_SUPPLY >= totalSupply() + 1, "Exceeds max supply");
        require(tx.origin == _caller, "No contracts");

        _safeMint(_caller, 1);
    }

    function _startTokenId() internal override view virtual returns (uint256) {
        return 1;
    }

    function isApprovedForAll(address owner, address operator)
        override
        public
        view
        returns (bool)
    {
        // Whitelist OpenSea proxy contract for easy trading.
        ProxyRegistry proxyRegistry = ProxyRegistry(proxyRegistryAddress);
        if (address(proxyRegistry.proxies(owner)) == operator) {
            return true;
        }

        return super.isApprovedForAll(owner, operator);
    }

    function minted(address _owner) public view returns (uint256) {
        return _numberMinted(_owner);
    }

    function withdraw() external onlyOwner {
        uint256 balance = address(this).balance;
        (bool success, ) = _msgSender().call{value: balance}("");
        require(success, "Failed to send");
    }

    function setupOS() external onlyOwner {
        _safeMint(_msgSender(), 1);
    }

    function setPrice(uint256 _price) external onlyOwner {
        price = _price;
    }

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

    function reveal(bool _state) external onlyOwner {
        revealed = _state;
    }

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

    function tokenURI(uint256 _tokenId) public view override returns (string memory) {
        require(_exists(_tokenId), "Token does not exist.");
        return bytes(baseURI).length > 0 ? string(
            abi.encodePacked(
              baseURI,
              revealed ? Strings.toString(_tokenId) : "placeholder",
              baseExtension
            )
        ) : "";
    }
}

contract OwnableDelegateProxy { }
contract ProxyRegistry {
    mapping(address => OwnableDelegateProxy) public proxies;
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"MintedQueryForZeroAddress","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"FREE_MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_PER_TX","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_PER_TX_FREE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_PER_WALLET","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseExtension","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"freeMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"minted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"proxyRegistryAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","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":"baseURI_","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_price","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"setupOS","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_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":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

6080604052604051806060016040528060368152602001620044ab60369139600990805190602001906200003592919062000238565b506618838370f34000600a556000600b60006101000a81548160ff0219169083151502179055506000600b60016101000a81548160ff0219169083151502179055503480156200008457600080fd5b506040518060400160405280600d81526020017f4920414d204e4f54204f4b4159000000000000000000000000000000000000008152506040518060400160405280600581526020017f4f4b41593f00000000000000000000000000000000000000000000000000000081525081600290805190602001906200010992919062000238565b5080600390805190602001906200012292919062000238565b50620001336200016160201b60201c565b60008190555050506200015b6200014f6200016a60201b60201c565b6200017260201b60201c565b6200034d565b60006001905090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8280546200024690620002e8565b90600052602060002090601f0160209004810192826200026a5760008555620002b6565b82601f106200028557805160ff1916838001178555620002b6565b82800160010185558215620002b6579182015b82811115620002b557825182559160200191906001019062000298565b5b509050620002c59190620002c9565b5090565b5b80821115620002e4576000816000905550600101620002ca565b5090565b600060028204905060018216806200030157607f821691505b602082108114156200031857620003176200031e565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b61414e806200035d6000396000f3fe60806040526004361061021a5760003560e01c8063698982ba11610123578063a035b1fe116100ab578063c87b56dd1161006f578063c87b56dd1461075b578063cd7c032614610798578063e985e9c5146107c3578063f2fde38b14610800578063f43a22dc146108295761021a565b8063a035b1fe14610697578063a0712d68146106c2578063a22cb465146106de578063b88d4fde14610707578063c6682862146107305761021a565b80638069876d116100f25780638069876d146105c45780638da5cb5b146105ef57806391b7f5ed1461061a578063940cd05b1461064357806395d89b411461066c5761021a565b8063698982ba1461052e5780636c0360eb1461054557806370a0823114610570578063715018a6146105ad5761021a565b806332cb6b0c116101a65780635183022711610175578063518302271461046857806355f804b3146104935780635b70ea9f146104bc5780635c975abb146104c65780636352211e146104f15761021a565b806332cb6b0c146103d25780633ccfd60b146103fd57806342842e0e14610414578063463fff791461043d5761021a565b8063095ea7b3116101ed578063095ea7b3146102ed5780630f2cdd6c1461031657806318160ddd146103415780631e7269c51461036c57806323b872dd146103a95761021a565b806301ffc9a71461021f57806302329a291461025c57806306fdde0314610285578063081812fc146102b0575b600080fd5b34801561022b57600080fd5b506102466004803603810190610241919061341c565b610854565b6040516102539190613896565b60405180910390f35b34801561026857600080fd5b50610283600480360381019061027e91906133ef565b610936565b005b34801561029157600080fd5b5061029a6109cf565b6040516102a791906138b1565b60405180910390f35b3480156102bc57600080fd5b506102d760048036038101906102d291906134ec565b610a61565b6040516102e4919061382f565b60405180910390f35b3480156102f957600080fd5b50610314600480360381019061030f91906133af565b610add565b005b34801561032257600080fd5b5061032b610be8565b6040516103389190613a13565b60405180910390f35b34801561034d57600080fd5b50610356610bed565b6040516103639190613a13565b60405180910390f35b34801561037857600080fd5b50610393600480360381019061038e919061322c565b610c04565b6040516103a09190613a13565b60405180910390f35b3480156103b557600080fd5b506103d060048036038101906103cb9190613299565b610c16565b005b3480156103de57600080fd5b506103e7610c26565b6040516103f49190613a13565b60405180910390f35b34801561040957600080fd5b50610412610c2c565b005b34801561042057600080fd5b5061043b60048036038101906104369190613299565b610d64565b005b34801561044957600080fd5b50610452610d84565b60405161045f9190613a13565b60405180910390f35b34801561047457600080fd5b5061047d610d89565b60405161048a9190613896565b60405180910390f35b34801561049f57600080fd5b506104ba60048036038101906104b591906134a3565b610d9c565b005b6104c4610e32565b005b3480156104d257600080fd5b506104db610f62565b6040516104e89190613896565b60405180910390f35b3480156104fd57600080fd5b50610518600480360381019061051391906134ec565b610f75565b604051610525919061382f565b60405180910390f35b34801561053a57600080fd5b50610543610f8b565b005b34801561055157600080fd5b5061055a61101b565b60405161056791906138b1565b60405180910390f35b34801561057c57600080fd5b506105976004803603810190610592919061322c565b6110a9565b6040516105a49190613a13565b60405180910390f35b3480156105b957600080fd5b506105c2611179565b005b3480156105d057600080fd5b506105d9611201565b6040516105e69190613a13565b60405180910390f35b3480156105fb57600080fd5b50610604611206565b604051610611919061382f565b60405180910390f35b34801561062657600080fd5b50610641600480360381019061063c91906134ec565b611230565b005b34801561064f57600080fd5b5061066a600480360381019061066591906133ef565b6112b6565b005b34801561067857600080fd5b5061068161134f565b60405161068e91906138b1565b60405180910390f35b3480156106a357600080fd5b506106ac6113e1565b6040516106b99190613a13565b60405180910390f35b6106dc60048036038101906106d791906134ec565b6113e7565b005b3480156106ea57600080fd5b506107056004803603810190610700919061336f565b6115ec565b005b34801561071357600080fd5b5061072e600480360381019061072991906132ec565b611764565b005b34801561073c57600080fd5b506107456117e0565b60405161075291906138b1565b60405180910390f35b34801561076757600080fd5b50610782600480360381019061077d91906134ec565b611819565b60405161078f91906138b1565b60405180910390f35b3480156107a457600080fd5b506107ad611948565b6040516107ba919061382f565b60405180910390f35b3480156107cf57600080fd5b506107ea60048036038101906107e59190613259565b611960565b6040516107f79190613896565b60405180910390f35b34801561080c57600080fd5b506108276004803603810190610822919061322c565b611a54565b005b34801561083557600080fd5b5061083e611b4c565b60405161084b9190613a13565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061091f57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061092f575061092e82611b51565b5b9050919050565b61093e611bbb565b73ffffffffffffffffffffffffffffffffffffffff1661095c611206565b73ffffffffffffffffffffffffffffffffffffffff16146109b2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109a990613993565b60405180910390fd5b80600b60006101000a81548160ff02191690831515021790555050565b6060600280546109de90613cf5565b80601f0160208091040260200160405190810160405280929190818152602001828054610a0a90613cf5565b8015610a575780601f10610a2c57610100808354040283529160200191610a57565b820191906000526020600020905b815481529060010190602001808311610a3a57829003601f168201915b5050505050905090565b6000610a6c82611bc3565b610aa2576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610ae882610f75565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610b50576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610b6f611bbb565b73ffffffffffffffffffffffffffffffffffffffff1614158015610ba15750610b9f81610b9a611bbb565b611960565b155b15610bd8576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610be3838383611c11565b505050565b600081565b6000610bf7611cc3565b6001546000540303905090565b6000610c0f82611ccc565b9050919050565b610c21838383611d9c565b505050565b6108ae81565b610c34611bbb565b73ffffffffffffffffffffffffffffffffffffffff16610c52611206565b73ffffffffffffffffffffffffffffffffffffffff1614610ca8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c9f90613993565b60405180910390fd5b60004790506000610cb7611bbb565b73ffffffffffffffffffffffffffffffffffffffff1682604051610cda9061381a565b60006040518083038185875af1925050503d8060008114610d17576040519150601f19603f3d011682016040523d82523d6000602084013e610d1c565b606091505b5050905080610d60576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d57906139d3565b60405180910390fd5b5050565b610d7f83838360405180602001604052806000815250611764565b505050565b600181565b600b60019054906101000a900460ff1681565b610da4611bbb565b73ffffffffffffffffffffffffffffffffffffffff16610dc2611206565b73ffffffffffffffffffffffffffffffffffffffff1614610e18576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e0f90613993565b60405180910390fd5b8060099080519060200190610e2e929190612fe8565b5050565b6000610e3c611bbb565b9050600b60009054906101000a900460ff1615610e8e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e85906138d3565b60405180910390fd5b6001610e98610bed565b610ea29190613b18565b6108ae1015610ee6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610edd90613953565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614610f54576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f4b906139f3565b60405180910390fd5b610f5f81600161228d565b50565b600b60009054906101000a900460ff1681565b6000610f80826122ab565b600001519050919050565b610f93611bbb565b73ffffffffffffffffffffffffffffffffffffffff16610fb1611206565b73ffffffffffffffffffffffffffffffffffffffff1614611007576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ffe90613993565b60405180910390fd5b611019611012611bbb565b600161228d565b565b6009805461102890613cf5565b80601f016020809104026020016040519081016040528092919081815260200182805461105490613cf5565b80156110a15780601f10611076576101008083540402835291602001916110a1565b820191906000526020600020905b81548152906001019060200180831161108457829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611111576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b611181611bbb565b73ffffffffffffffffffffffffffffffffffffffff1661119f611206565b73ffffffffffffffffffffffffffffffffffffffff16146111f5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111ec90613993565b60405180910390fd5b6111ff600061253a565b565b600081565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b611238611bbb565b73ffffffffffffffffffffffffffffffffffffffff16611256611206565b73ffffffffffffffffffffffffffffffffffffffff16146112ac576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112a390613993565b60405180910390fd5b80600a8190555050565b6112be611bbb565b73ffffffffffffffffffffffffffffffffffffffff166112dc611206565b73ffffffffffffffffffffffffffffffffffffffff1614611332576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161132990613993565b60405180910390fd5b80600b60016101000a81548160ff02191690831515021790555050565b60606003805461135e90613cf5565b80601f016020809104026020016040519081016040528092919081815260200182805461138a90613cf5565b80156113d75780601f106113ac576101008083540402835291602001916113d7565b820191906000526020600020905b8154815290600101906020018083116113ba57829003601f168201915b5050505050905090565b600a5481565b60006113f1611bbb565b9050600b60009054906101000a900460ff1615611443576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161143a906138d3565b60405180910390fd5b8161144c610bed565b6114569190613b18565b6108ae101561149a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161149190613953565b60405180910390fd5b600082116114dd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114d490613913565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff161461154b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611542906139f3565b60405180910390fd5b816014101561158f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161158690613933565b60405180910390fd5b34600a548361159e9190613b9f565b146115de576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115d5906139b3565b60405180910390fd5b6115e8818361228d565b5050565b6115f4611bbb565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611659576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060076000611666611bbb565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611713611bbb565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516117589190613896565b60405180910390a35050565b61176f848484611d9c565b61178e8373ffffffffffffffffffffffffffffffffffffffff16612600565b80156117a357506117a184848484612623565b155b156117da576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b6040518060400160405280600581526020017f2e6a736f6e00000000000000000000000000000000000000000000000000000081525081565b606061182482611bc3565b611863576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161185a90613973565b60405180910390fd5b60006009805461187290613cf5565b90501161188e5760405180602001604052806000815250611941565b6009600b60019054906101000a900460ff166118df576040518060400160405280600b81526020017f706c616365686f6c6465720000000000000000000000000000000000000000008152506118e9565b6118e883612783565b5b6040518060400160405280600581526020017f2e6a736f6e000000000000000000000000000000000000000000000000000000815250604051602001611931939291906137e9565b6040516020818303038152906040525b9050919050565b73a5409ec958c83c3f309868babaca7c86dcb077c181565b60008073a5409ec958c83c3f309868babaca7c86dcb077c190508273ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1663c4552791866040518263ffffffff1660e01b81526004016119ca919061382f565b60206040518083038186803b1580156119e257600080fd5b505afa1580156119f6573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611a1a9190613476565b73ffffffffffffffffffffffffffffffffffffffff161415611a40576001915050611a4e565b611a4a84846128e4565b9150505b92915050565b611a5c611bbb565b73ffffffffffffffffffffffffffffffffffffffff16611a7a611206565b73ffffffffffffffffffffffffffffffffffffffff1614611ad0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ac790613993565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611b40576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b37906138f3565b60405180910390fd5b611b498161253a565b50565b601481565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600033905090565b600081611bce611cc3565b11158015611bdd575060005482105b8015611c0a575060046000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60006001905090565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611d34576040517f35ebb31900000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160089054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b6000611da7826122ab565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff16611dce611bbb565b73ffffffffffffffffffffffffffffffffffffffff161480611e015750611e008260000151611dfb611bbb565b611960565b5b80611e465750611e0f611bbb565b73ffffffffffffffffffffffffffffffffffffffff16611e2e84610a61565b73ffffffffffffffffffffffffffffffffffffffff16145b905080611e7f576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff1614611ee8576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611f4f576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611f5c8585856001612978565b611f6c6000848460000151611c11565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550836004600085815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600085815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600184019050600073ffffffffffffffffffffffffffffffffffffffff166004600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16141561221d5760005481101561221c5782600001516004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555082602001516004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b50828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612286858585600161297e565b5050505050565b6122a7828260405180602001604052806000815250612984565b5050565b6122b361306e565b6000829050806122c1611cc3565b111580156122d0575060005481105b15612503576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050806040015161250157600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146123e5578092505050612535565b5b60011561250057818060019003925050600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146124fb578092505050612535565b6123e6565b5b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612649611bbb565b8786866040518563ffffffff1660e01b815260040161266b949392919061384a565b602060405180830381600087803b15801561268557600080fd5b505af19250505080156126b657506040513d601f19601f820116820180604052508101906126b39190613449565b60015b612730573d80600081146126e6576040519150601f19603f3d011682016040523d82523d6000602084013e6126eb565b606091505b50600081511415612728576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b606060008214156127cb576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506128df565b600082905060005b600082146127fd5780806127e690613d58565b915050600a826127f69190613b6e565b91506127d3565b60008167ffffffffffffffff81111561281957612818613e8e565b5b6040519080825280601f01601f19166020018201604052801561284b5781602001600182028036833780820191505090505b5090505b600085146128d8576001826128649190613bf9565b9150600a856128739190613da1565b603061287f9190613b18565b60f81b81838151811061289557612894613e5f565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856128d19190613b6e565b945061284f565b8093505050505b919050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b50505050565b50505050565b6129918383836001612996565b505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415612a03576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000841415612a3e576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b612a4b6000868387612978565b73a5f6d896e8b4d29ac6e5d8c4b26f8d2073ac90ae73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161480612ad85750736ea8f3b9187df360b0c3e76549b22095acae771b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16145b80612b22575073e749e9e7eaa02203c925a036226af80e2c79403e73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16145b80612b6c5750734209c04095e0736546ddccb3360ccefa13909d8a73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16145b80612bb6575073f8d4454b0a7544b3c13816acd76b93bc94b5d97773ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16145b80612c005750735d4b1055a69eadaba6de6c537a17aeb01207dfda73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16145b80612c4a575073fd2204757ab46355e60251386f823960acccefe773ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16145b80612c94575073f59eafd5ee67ec7be2fc150069b117b618b0484e73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16145b15612ccf57600080600090505b615ecd811015612ccc578180612cb690613d58565b9250508080612cc490613d58565b915050612ca1565b50505b83600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600081905060008582019050838015612e995750612e988773ffffffffffffffffffffffffffffffffffffffff16612600565b5b15612f5f575b818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612f0e6000888480600101955088612623565b612f44576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80821415612e9f578260005414612f5a57600080fd5b612fcb565b5b818060010192508773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a480821415612f60575b816000819055505050612fe1600086838761297e565b5050505050565b828054612ff490613cf5565b90600052602060002090601f016020900481019282613016576000855561305d565b82601f1061302f57805160ff191683800117855561305d565b8280016001018555821561305d579182015b8281111561305c578251825591602001919060010190613041565b5b50905061306a91906130b1565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b808211156130ca5760008160009055506001016130b2565b5090565b60006130e16130dc84613a53565b613a2e565b9050828152602081018484840111156130fd576130fc613ec2565b5b613108848285613cb3565b509392505050565b600061312361311e84613a84565b613a2e565b90508281526020810184848401111561313f5761313e613ec2565b5b61314a848285613cb3565b509392505050565b600081359050613161816140a5565b92915050565b600081359050613176816140bc565b92915050565b60008135905061318b816140d3565b92915050565b6000815190506131a0816140d3565b92915050565b600082601f8301126131bb576131ba613ebd565b5b81356131cb8482602086016130ce565b91505092915050565b6000815190506131e3816140ea565b92915050565b600082601f8301126131fe576131fd613ebd565b5b813561320e848260208601613110565b91505092915050565b60008135905061322681614101565b92915050565b60006020828403121561324257613241613ecc565b5b600061325084828501613152565b91505092915050565b600080604083850312156132705761326f613ecc565b5b600061327e85828601613152565b925050602061328f85828601613152565b9150509250929050565b6000806000606084860312156132b2576132b1613ecc565b5b60006132c086828701613152565b93505060206132d186828701613152565b92505060406132e286828701613217565b9150509250925092565b6000806000806080858703121561330657613305613ecc565b5b600061331487828801613152565b945050602061332587828801613152565b935050604061333687828801613217565b925050606085013567ffffffffffffffff81111561335757613356613ec7565b5b613363878288016131a6565b91505092959194509250565b6000806040838503121561338657613385613ecc565b5b600061339485828601613152565b92505060206133a585828601613167565b9150509250929050565b600080604083850312156133c6576133c5613ecc565b5b60006133d485828601613152565b92505060206133e585828601613217565b9150509250929050565b60006020828403121561340557613404613ecc565b5b600061341384828501613167565b91505092915050565b60006020828403121561343257613431613ecc565b5b60006134408482850161317c565b91505092915050565b60006020828403121561345f5761345e613ecc565b5b600061346d84828501613191565b91505092915050565b60006020828403121561348c5761348b613ecc565b5b600061349a848285016131d4565b91505092915050565b6000602082840312156134b9576134b8613ecc565b5b600082013567ffffffffffffffff8111156134d7576134d6613ec7565b5b6134e3848285016131e9565b91505092915050565b60006020828403121561350257613501613ecc565b5b600061351084828501613217565b91505092915050565b61352281613c2d565b82525050565b61353181613c3f565b82525050565b600061354282613aca565b61354c8185613ae0565b935061355c818560208601613cc2565b61356581613ed1565b840191505092915050565b600061357b82613ad5565b6135858185613afc565b9350613595818560208601613cc2565b61359e81613ed1565b840191505092915050565b60006135b482613ad5565b6135be8185613b0d565b93506135ce818560208601613cc2565b80840191505092915050565b600081546135e781613cf5565b6135f18186613b0d565b9450600182166000811461360c576001811461361d57613650565b60ff19831686528186019350613650565b61362685613ab5565b60005b8381101561364857815481890152600182019150602081019050613629565b838801955050505b50505092915050565b6000613666600683613afc565b915061367182613ee2565b602082019050919050565b6000613689602683613afc565b915061369482613f0b565b604082019050919050565b60006136ac600a83613afc565b91506136b782613f5a565b602082019050919050565b60006136cf601683613afc565b91506136da82613f83565b602082019050919050565b60006136f2601283613afc565b91506136fd82613fac565b602082019050919050565b6000613715601583613afc565b915061372082613fd5565b602082019050919050565b6000613738602083613afc565b915061374382613ffe565b602082019050919050565b600061375b601683613afc565b915061376682614027565b602082019050919050565b600061377e600083613af1565b915061378982614050565b600082019050919050565b60006137a1600e83613afc565b91506137ac82614053565b602082019050919050565b60006137c4600c83613afc565b91506137cf8261407c565b602082019050919050565b6137e381613ca9565b82525050565b60006137f582866135da565b915061380182856135a9565b915061380d82846135a9565b9150819050949350505050565b600061382582613771565b9150819050919050565b60006020820190506138446000830184613519565b92915050565b600060808201905061385f6000830187613519565b61386c6020830186613519565b61387960408301856137da565b818103606083015261388b8184613537565b905095945050505050565b60006020820190506138ab6000830184613528565b92915050565b600060208201905081810360008301526138cb8184613570565b905092915050565b600060208201905081810360008301526138ec81613659565b9050919050565b6000602082019050818103600083015261390c8161367c565b9050919050565b6000602082019050818103600083015261392c8161369f565b9050919050565b6000602082019050818103600083015261394c816136c2565b9050919050565b6000602082019050818103600083015261396c816136e5565b9050919050565b6000602082019050818103600083015261398c81613708565b9050919050565b600060208201905081810360008301526139ac8161372b565b9050919050565b600060208201905081810360008301526139cc8161374e565b9050919050565b600060208201905081810360008301526139ec81613794565b9050919050565b60006020820190508181036000830152613a0c816137b7565b9050919050565b6000602082019050613a2860008301846137da565b92915050565b6000613a38613a49565b9050613a448282613d27565b919050565b6000604051905090565b600067ffffffffffffffff821115613a6e57613a6d613e8e565b5b613a7782613ed1565b9050602081019050919050565b600067ffffffffffffffff821115613a9f57613a9e613e8e565b5b613aa882613ed1565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000613b2382613ca9565b9150613b2e83613ca9565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613b6357613b62613dd2565b5b828201905092915050565b6000613b7982613ca9565b9150613b8483613ca9565b925082613b9457613b93613e01565b5b828204905092915050565b6000613baa82613ca9565b9150613bb583613ca9565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613bee57613bed613dd2565b5b828202905092915050565b6000613c0482613ca9565b9150613c0f83613ca9565b925082821015613c2257613c21613dd2565b5b828203905092915050565b6000613c3882613c89565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6000613c8282613c2d565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015613ce0578082015181840152602081019050613cc5565b83811115613cef576000848401525b50505050565b60006002820490506001821680613d0d57607f821691505b60208210811415613d2157613d20613e30565b5b50919050565b613d3082613ed1565b810181811067ffffffffffffffff82111715613d4f57613d4e613e8e565b5b80604052505050565b6000613d6382613ca9565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613d9657613d95613dd2565b5b600182019050919050565b6000613dac82613ca9565b9150613db783613ca9565b925082613dc757613dc6613e01565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f5061757365640000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4e6f2030206d696e747300000000000000000000000000000000000000000000600082015250565b7f457863657373206d617820706572207061696420747800000000000000000000600082015250565b7f45786365656473206d617820737570706c790000000000000000000000000000600082015250565b7f546f6b656e20646f6573206e6f742065786973742e0000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f496e76616c69642066756e64732070726f766964656400000000000000000000600082015250565b50565b7f4661696c656420746f2073656e64000000000000000000000000000000000000600082015250565b7f4e6f20636f6e7472616374730000000000000000000000000000000000000000600082015250565b6140ae81613c2d565b81146140b957600080fd5b50565b6140c581613c3f565b81146140d057600080fd5b50565b6140dc81613c4b565b81146140e757600080fd5b50565b6140f381613c77565b81146140fe57600080fd5b50565b61410a81613ca9565b811461411557600080fd5b5056fea2646970667358221220a1b9f949f141265ee44768d65cbc913cf0f5930345e8ced0278c8922739b404264736f6c63430008070033697066733a2f2f516d63334e484c717072455072317770794c41324551314579384b6270505a5643375751357878396b746334504c2f

Deployed Bytecode

0x60806040526004361061021a5760003560e01c8063698982ba11610123578063a035b1fe116100ab578063c87b56dd1161006f578063c87b56dd1461075b578063cd7c032614610798578063e985e9c5146107c3578063f2fde38b14610800578063f43a22dc146108295761021a565b8063a035b1fe14610697578063a0712d68146106c2578063a22cb465146106de578063b88d4fde14610707578063c6682862146107305761021a565b80638069876d116100f25780638069876d146105c45780638da5cb5b146105ef57806391b7f5ed1461061a578063940cd05b1461064357806395d89b411461066c5761021a565b8063698982ba1461052e5780636c0360eb1461054557806370a0823114610570578063715018a6146105ad5761021a565b806332cb6b0c116101a65780635183022711610175578063518302271461046857806355f804b3146104935780635b70ea9f146104bc5780635c975abb146104c65780636352211e146104f15761021a565b806332cb6b0c146103d25780633ccfd60b146103fd57806342842e0e14610414578063463fff791461043d5761021a565b8063095ea7b3116101ed578063095ea7b3146102ed5780630f2cdd6c1461031657806318160ddd146103415780631e7269c51461036c57806323b872dd146103a95761021a565b806301ffc9a71461021f57806302329a291461025c57806306fdde0314610285578063081812fc146102b0575b600080fd5b34801561022b57600080fd5b506102466004803603810190610241919061341c565b610854565b6040516102539190613896565b60405180910390f35b34801561026857600080fd5b50610283600480360381019061027e91906133ef565b610936565b005b34801561029157600080fd5b5061029a6109cf565b6040516102a791906138b1565b60405180910390f35b3480156102bc57600080fd5b506102d760048036038101906102d291906134ec565b610a61565b6040516102e4919061382f565b60405180910390f35b3480156102f957600080fd5b50610314600480360381019061030f91906133af565b610add565b005b34801561032257600080fd5b5061032b610be8565b6040516103389190613a13565b60405180910390f35b34801561034d57600080fd5b50610356610bed565b6040516103639190613a13565b60405180910390f35b34801561037857600080fd5b50610393600480360381019061038e919061322c565b610c04565b6040516103a09190613a13565b60405180910390f35b3480156103b557600080fd5b506103d060048036038101906103cb9190613299565b610c16565b005b3480156103de57600080fd5b506103e7610c26565b6040516103f49190613a13565b60405180910390f35b34801561040957600080fd5b50610412610c2c565b005b34801561042057600080fd5b5061043b60048036038101906104369190613299565b610d64565b005b34801561044957600080fd5b50610452610d84565b60405161045f9190613a13565b60405180910390f35b34801561047457600080fd5b5061047d610d89565b60405161048a9190613896565b60405180910390f35b34801561049f57600080fd5b506104ba60048036038101906104b591906134a3565b610d9c565b005b6104c4610e32565b005b3480156104d257600080fd5b506104db610f62565b6040516104e89190613896565b60405180910390f35b3480156104fd57600080fd5b50610518600480360381019061051391906134ec565b610f75565b604051610525919061382f565b60405180910390f35b34801561053a57600080fd5b50610543610f8b565b005b34801561055157600080fd5b5061055a61101b565b60405161056791906138b1565b60405180910390f35b34801561057c57600080fd5b506105976004803603810190610592919061322c565b6110a9565b6040516105a49190613a13565b60405180910390f35b3480156105b957600080fd5b506105c2611179565b005b3480156105d057600080fd5b506105d9611201565b6040516105e69190613a13565b60405180910390f35b3480156105fb57600080fd5b50610604611206565b604051610611919061382f565b60405180910390f35b34801561062657600080fd5b50610641600480360381019061063c91906134ec565b611230565b005b34801561064f57600080fd5b5061066a600480360381019061066591906133ef565b6112b6565b005b34801561067857600080fd5b5061068161134f565b60405161068e91906138b1565b60405180910390f35b3480156106a357600080fd5b506106ac6113e1565b6040516106b99190613a13565b60405180910390f35b6106dc60048036038101906106d791906134ec565b6113e7565b005b3480156106ea57600080fd5b506107056004803603810190610700919061336f565b6115ec565b005b34801561071357600080fd5b5061072e600480360381019061072991906132ec565b611764565b005b34801561073c57600080fd5b506107456117e0565b60405161075291906138b1565b60405180910390f35b34801561076757600080fd5b50610782600480360381019061077d91906134ec565b611819565b60405161078f91906138b1565b60405180910390f35b3480156107a457600080fd5b506107ad611948565b6040516107ba919061382f565b60405180910390f35b3480156107cf57600080fd5b506107ea60048036038101906107e59190613259565b611960565b6040516107f79190613896565b60405180910390f35b34801561080c57600080fd5b506108276004803603810190610822919061322c565b611a54565b005b34801561083557600080fd5b5061083e611b4c565b60405161084b9190613a13565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061091f57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061092f575061092e82611b51565b5b9050919050565b61093e611bbb565b73ffffffffffffffffffffffffffffffffffffffff1661095c611206565b73ffffffffffffffffffffffffffffffffffffffff16146109b2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109a990613993565b60405180910390fd5b80600b60006101000a81548160ff02191690831515021790555050565b6060600280546109de90613cf5565b80601f0160208091040260200160405190810160405280929190818152602001828054610a0a90613cf5565b8015610a575780601f10610a2c57610100808354040283529160200191610a57565b820191906000526020600020905b815481529060010190602001808311610a3a57829003601f168201915b5050505050905090565b6000610a6c82611bc3565b610aa2576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610ae882610f75565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610b50576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610b6f611bbb565b73ffffffffffffffffffffffffffffffffffffffff1614158015610ba15750610b9f81610b9a611bbb565b611960565b155b15610bd8576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610be3838383611c11565b505050565b600081565b6000610bf7611cc3565b6001546000540303905090565b6000610c0f82611ccc565b9050919050565b610c21838383611d9c565b505050565b6108ae81565b610c34611bbb565b73ffffffffffffffffffffffffffffffffffffffff16610c52611206565b73ffffffffffffffffffffffffffffffffffffffff1614610ca8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c9f90613993565b60405180910390fd5b60004790506000610cb7611bbb565b73ffffffffffffffffffffffffffffffffffffffff1682604051610cda9061381a565b60006040518083038185875af1925050503d8060008114610d17576040519150601f19603f3d011682016040523d82523d6000602084013e610d1c565b606091505b5050905080610d60576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d57906139d3565b60405180910390fd5b5050565b610d7f83838360405180602001604052806000815250611764565b505050565b600181565b600b60019054906101000a900460ff1681565b610da4611bbb565b73ffffffffffffffffffffffffffffffffffffffff16610dc2611206565b73ffffffffffffffffffffffffffffffffffffffff1614610e18576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e0f90613993565b60405180910390fd5b8060099080519060200190610e2e929190612fe8565b5050565b6000610e3c611bbb565b9050600b60009054906101000a900460ff1615610e8e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e85906138d3565b60405180910390fd5b6001610e98610bed565b610ea29190613b18565b6108ae1015610ee6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610edd90613953565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614610f54576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f4b906139f3565b60405180910390fd5b610f5f81600161228d565b50565b600b60009054906101000a900460ff1681565b6000610f80826122ab565b600001519050919050565b610f93611bbb565b73ffffffffffffffffffffffffffffffffffffffff16610fb1611206565b73ffffffffffffffffffffffffffffffffffffffff1614611007576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ffe90613993565b60405180910390fd5b611019611012611bbb565b600161228d565b565b6009805461102890613cf5565b80601f016020809104026020016040519081016040528092919081815260200182805461105490613cf5565b80156110a15780601f10611076576101008083540402835291602001916110a1565b820191906000526020600020905b81548152906001019060200180831161108457829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611111576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b611181611bbb565b73ffffffffffffffffffffffffffffffffffffffff1661119f611206565b73ffffffffffffffffffffffffffffffffffffffff16146111f5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111ec90613993565b60405180910390fd5b6111ff600061253a565b565b600081565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b611238611bbb565b73ffffffffffffffffffffffffffffffffffffffff16611256611206565b73ffffffffffffffffffffffffffffffffffffffff16146112ac576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112a390613993565b60405180910390fd5b80600a8190555050565b6112be611bbb565b73ffffffffffffffffffffffffffffffffffffffff166112dc611206565b73ffffffffffffffffffffffffffffffffffffffff1614611332576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161132990613993565b60405180910390fd5b80600b60016101000a81548160ff02191690831515021790555050565b60606003805461135e90613cf5565b80601f016020809104026020016040519081016040528092919081815260200182805461138a90613cf5565b80156113d75780601f106113ac576101008083540402835291602001916113d7565b820191906000526020600020905b8154815290600101906020018083116113ba57829003601f168201915b5050505050905090565b600a5481565b60006113f1611bbb565b9050600b60009054906101000a900460ff1615611443576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161143a906138d3565b60405180910390fd5b8161144c610bed565b6114569190613b18565b6108ae101561149a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161149190613953565b60405180910390fd5b600082116114dd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114d490613913565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff161461154b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611542906139f3565b60405180910390fd5b816014101561158f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161158690613933565b60405180910390fd5b34600a548361159e9190613b9f565b146115de576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115d5906139b3565b60405180910390fd5b6115e8818361228d565b5050565b6115f4611bbb565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611659576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060076000611666611bbb565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611713611bbb565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516117589190613896565b60405180910390a35050565b61176f848484611d9c565b61178e8373ffffffffffffffffffffffffffffffffffffffff16612600565b80156117a357506117a184848484612623565b155b156117da576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b6040518060400160405280600581526020017f2e6a736f6e00000000000000000000000000000000000000000000000000000081525081565b606061182482611bc3565b611863576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161185a90613973565b60405180910390fd5b60006009805461187290613cf5565b90501161188e5760405180602001604052806000815250611941565b6009600b60019054906101000a900460ff166118df576040518060400160405280600b81526020017f706c616365686f6c6465720000000000000000000000000000000000000000008152506118e9565b6118e883612783565b5b6040518060400160405280600581526020017f2e6a736f6e000000000000000000000000000000000000000000000000000000815250604051602001611931939291906137e9565b6040516020818303038152906040525b9050919050565b73a5409ec958c83c3f309868babaca7c86dcb077c181565b60008073a5409ec958c83c3f309868babaca7c86dcb077c190508273ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1663c4552791866040518263ffffffff1660e01b81526004016119ca919061382f565b60206040518083038186803b1580156119e257600080fd5b505afa1580156119f6573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611a1a9190613476565b73ffffffffffffffffffffffffffffffffffffffff161415611a40576001915050611a4e565b611a4a84846128e4565b9150505b92915050565b611a5c611bbb565b73ffffffffffffffffffffffffffffffffffffffff16611a7a611206565b73ffffffffffffffffffffffffffffffffffffffff1614611ad0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ac790613993565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611b40576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b37906138f3565b60405180910390fd5b611b498161253a565b50565b601481565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600033905090565b600081611bce611cc3565b11158015611bdd575060005482105b8015611c0a575060046000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60006001905090565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611d34576040517f35ebb31900000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160089054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b6000611da7826122ab565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff16611dce611bbb565b73ffffffffffffffffffffffffffffffffffffffff161480611e015750611e008260000151611dfb611bbb565b611960565b5b80611e465750611e0f611bbb565b73ffffffffffffffffffffffffffffffffffffffff16611e2e84610a61565b73ffffffffffffffffffffffffffffffffffffffff16145b905080611e7f576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff1614611ee8576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611f4f576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611f5c8585856001612978565b611f6c6000848460000151611c11565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550836004600085815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600085815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600184019050600073ffffffffffffffffffffffffffffffffffffffff166004600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16141561221d5760005481101561221c5782600001516004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555082602001516004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b50828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612286858585600161297e565b5050505050565b6122a7828260405180602001604052806000815250612984565b5050565b6122b361306e565b6000829050806122c1611cc3565b111580156122d0575060005481105b15612503576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050806040015161250157600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146123e5578092505050612535565b5b60011561250057818060019003925050600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146124fb578092505050612535565b6123e6565b5b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612649611bbb565b8786866040518563ffffffff1660e01b815260040161266b949392919061384a565b602060405180830381600087803b15801561268557600080fd5b505af19250505080156126b657506040513d601f19601f820116820180604052508101906126b39190613449565b60015b612730573d80600081146126e6576040519150601f19603f3d011682016040523d82523d6000602084013e6126eb565b606091505b50600081511415612728576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b606060008214156127cb576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506128df565b600082905060005b600082146127fd5780806127e690613d58565b915050600a826127f69190613b6e565b91506127d3565b60008167ffffffffffffffff81111561281957612818613e8e565b5b6040519080825280601f01601f19166020018201604052801561284b5781602001600182028036833780820191505090505b5090505b600085146128d8576001826128649190613bf9565b9150600a856128739190613da1565b603061287f9190613b18565b60f81b81838151811061289557612894613e5f565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856128d19190613b6e565b945061284f565b8093505050505b919050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b50505050565b50505050565b6129918383836001612996565b505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415612a03576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000841415612a3e576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b612a4b6000868387612978565b73a5f6d896e8b4d29ac6e5d8c4b26f8d2073ac90ae73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161480612ad85750736ea8f3b9187df360b0c3e76549b22095acae771b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16145b80612b22575073e749e9e7eaa02203c925a036226af80e2c79403e73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16145b80612b6c5750734209c04095e0736546ddccb3360ccefa13909d8a73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16145b80612bb6575073f8d4454b0a7544b3c13816acd76b93bc94b5d97773ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16145b80612c005750735d4b1055a69eadaba6de6c537a17aeb01207dfda73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16145b80612c4a575073fd2204757ab46355e60251386f823960acccefe773ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16145b80612c94575073f59eafd5ee67ec7be2fc150069b117b618b0484e73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16145b15612ccf57600080600090505b615ecd811015612ccc578180612cb690613d58565b9250508080612cc490613d58565b915050612ca1565b50505b83600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600081905060008582019050838015612e995750612e988773ffffffffffffffffffffffffffffffffffffffff16612600565b5b15612f5f575b818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612f0e6000888480600101955088612623565b612f44576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80821415612e9f578260005414612f5a57600080fd5b612fcb565b5b818060010192508773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a480821415612f60575b816000819055505050612fe1600086838761297e565b5050505050565b828054612ff490613cf5565b90600052602060002090601f016020900481019282613016576000855561305d565b82601f1061302f57805160ff191683800117855561305d565b8280016001018555821561305d579182015b8281111561305c578251825591602001919060010190613041565b5b50905061306a91906130b1565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b808211156130ca5760008160009055506001016130b2565b5090565b60006130e16130dc84613a53565b613a2e565b9050828152602081018484840111156130fd576130fc613ec2565b5b613108848285613cb3565b509392505050565b600061312361311e84613a84565b613a2e565b90508281526020810184848401111561313f5761313e613ec2565b5b61314a848285613cb3565b509392505050565b600081359050613161816140a5565b92915050565b600081359050613176816140bc565b92915050565b60008135905061318b816140d3565b92915050565b6000815190506131a0816140d3565b92915050565b600082601f8301126131bb576131ba613ebd565b5b81356131cb8482602086016130ce565b91505092915050565b6000815190506131e3816140ea565b92915050565b600082601f8301126131fe576131fd613ebd565b5b813561320e848260208601613110565b91505092915050565b60008135905061322681614101565b92915050565b60006020828403121561324257613241613ecc565b5b600061325084828501613152565b91505092915050565b600080604083850312156132705761326f613ecc565b5b600061327e85828601613152565b925050602061328f85828601613152565b9150509250929050565b6000806000606084860312156132b2576132b1613ecc565b5b60006132c086828701613152565b93505060206132d186828701613152565b92505060406132e286828701613217565b9150509250925092565b6000806000806080858703121561330657613305613ecc565b5b600061331487828801613152565b945050602061332587828801613152565b935050604061333687828801613217565b925050606085013567ffffffffffffffff81111561335757613356613ec7565b5b613363878288016131a6565b91505092959194509250565b6000806040838503121561338657613385613ecc565b5b600061339485828601613152565b92505060206133a585828601613167565b9150509250929050565b600080604083850312156133c6576133c5613ecc565b5b60006133d485828601613152565b92505060206133e585828601613217565b9150509250929050565b60006020828403121561340557613404613ecc565b5b600061341384828501613167565b91505092915050565b60006020828403121561343257613431613ecc565b5b60006134408482850161317c565b91505092915050565b60006020828403121561345f5761345e613ecc565b5b600061346d84828501613191565b91505092915050565b60006020828403121561348c5761348b613ecc565b5b600061349a848285016131d4565b91505092915050565b6000602082840312156134b9576134b8613ecc565b5b600082013567ffffffffffffffff8111156134d7576134d6613ec7565b5b6134e3848285016131e9565b91505092915050565b60006020828403121561350257613501613ecc565b5b600061351084828501613217565b91505092915050565b61352281613c2d565b82525050565b61353181613c3f565b82525050565b600061354282613aca565b61354c8185613ae0565b935061355c818560208601613cc2565b61356581613ed1565b840191505092915050565b600061357b82613ad5565b6135858185613afc565b9350613595818560208601613cc2565b61359e81613ed1565b840191505092915050565b60006135b482613ad5565b6135be8185613b0d565b93506135ce818560208601613cc2565b80840191505092915050565b600081546135e781613cf5565b6135f18186613b0d565b9450600182166000811461360c576001811461361d57613650565b60ff19831686528186019350613650565b61362685613ab5565b60005b8381101561364857815481890152600182019150602081019050613629565b838801955050505b50505092915050565b6000613666600683613afc565b915061367182613ee2565b602082019050919050565b6000613689602683613afc565b915061369482613f0b565b604082019050919050565b60006136ac600a83613afc565b91506136b782613f5a565b602082019050919050565b60006136cf601683613afc565b91506136da82613f83565b602082019050919050565b60006136f2601283613afc565b91506136fd82613fac565b602082019050919050565b6000613715601583613afc565b915061372082613fd5565b602082019050919050565b6000613738602083613afc565b915061374382613ffe565b602082019050919050565b600061375b601683613afc565b915061376682614027565b602082019050919050565b600061377e600083613af1565b915061378982614050565b600082019050919050565b60006137a1600e83613afc565b91506137ac82614053565b602082019050919050565b60006137c4600c83613afc565b91506137cf8261407c565b602082019050919050565b6137e381613ca9565b82525050565b60006137f582866135da565b915061380182856135a9565b915061380d82846135a9565b9150819050949350505050565b600061382582613771565b9150819050919050565b60006020820190506138446000830184613519565b92915050565b600060808201905061385f6000830187613519565b61386c6020830186613519565b61387960408301856137da565b818103606083015261388b8184613537565b905095945050505050565b60006020820190506138ab6000830184613528565b92915050565b600060208201905081810360008301526138cb8184613570565b905092915050565b600060208201905081810360008301526138ec81613659565b9050919050565b6000602082019050818103600083015261390c8161367c565b9050919050565b6000602082019050818103600083015261392c8161369f565b9050919050565b6000602082019050818103600083015261394c816136c2565b9050919050565b6000602082019050818103600083015261396c816136e5565b9050919050565b6000602082019050818103600083015261398c81613708565b9050919050565b600060208201905081810360008301526139ac8161372b565b9050919050565b600060208201905081810360008301526139cc8161374e565b9050919050565b600060208201905081810360008301526139ec81613794565b9050919050565b60006020820190508181036000830152613a0c816137b7565b9050919050565b6000602082019050613a2860008301846137da565b92915050565b6000613a38613a49565b9050613a448282613d27565b919050565b6000604051905090565b600067ffffffffffffffff821115613a6e57613a6d613e8e565b5b613a7782613ed1565b9050602081019050919050565b600067ffffffffffffffff821115613a9f57613a9e613e8e565b5b613aa882613ed1565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000613b2382613ca9565b9150613b2e83613ca9565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613b6357613b62613dd2565b5b828201905092915050565b6000613b7982613ca9565b9150613b8483613ca9565b925082613b9457613b93613e01565b5b828204905092915050565b6000613baa82613ca9565b9150613bb583613ca9565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613bee57613bed613dd2565b5b828202905092915050565b6000613c0482613ca9565b9150613c0f83613ca9565b925082821015613c2257613c21613dd2565b5b828203905092915050565b6000613c3882613c89565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6000613c8282613c2d565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015613ce0578082015181840152602081019050613cc5565b83811115613cef576000848401525b50505050565b60006002820490506001821680613d0d57607f821691505b60208210811415613d2157613d20613e30565b5b50919050565b613d3082613ed1565b810181811067ffffffffffffffff82111715613d4f57613d4e613e8e565b5b80604052505050565b6000613d6382613ca9565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613d9657613d95613dd2565b5b600182019050919050565b6000613dac82613ca9565b9150613db783613ca9565b925082613dc757613dc6613e01565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f5061757365640000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4e6f2030206d696e747300000000000000000000000000000000000000000000600082015250565b7f457863657373206d617820706572207061696420747800000000000000000000600082015250565b7f45786365656473206d617820737570706c790000000000000000000000000000600082015250565b7f546f6b656e20646f6573206e6f742065786973742e0000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f496e76616c69642066756e64732070726f766964656400000000000000000000600082015250565b50565b7f4661696c656420746f2073656e64000000000000000000000000000000000000600082015250565b7f4e6f20636f6e7472616374730000000000000000000000000000000000000000600082015250565b6140ae81613c2d565b81146140b957600080fd5b50565b6140c581613c3f565b81146140d057600080fd5b50565b6140dc81613c4b565b81146140e757600080fd5b50565b6140f381613c77565b81146140fe57600080fd5b50565b61410a81613ca9565b811461411557600080fd5b5056fea2646970667358221220a1b9f949f141265ee44768d65cbc913cf0f5930345e8ced0278c8922739b404264736f6c63430008070033

Deployed Bytecode Sourcemap

46430:3262:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28222:305;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49011:81;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;31607:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33110:204;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32673:371;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;46863:42;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27471:303;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48492:109;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33967:170;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;46912:41;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48609:209;;;;;;;;;;;;;:::i;:::-;;34208:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;46717:43;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47037:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49192:100;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;47636:286;;;:::i;:::-;;47004:26;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31416:124;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48826:83;;;;;;;;;;;;;:::i;:::-;;46479:80;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28591:206;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2696:103;;;;;;;;;;;;;:::i;:::-;;46813:43;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2045:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48917:86;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;49100:84;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;31776:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46960:35;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47132:496;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;33386:279;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;34464:369;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;46566:46;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49300:389;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46619:89;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48039:445;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2954:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;46767:39;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28222:305;28324:4;28376:25;28361:40;;;:11;:40;;;;:105;;;;28433:33;28418:48;;;:11;:48;;;;28361:105;:158;;;;28483:36;28507:11;28483:23;:36::i;:::-;28361:158;28341:178;;28222:305;;;:::o;49011:81::-;2276:12;:10;:12::i;:::-;2265:23;;:7;:5;:7::i;:::-;:23;;;2257:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;49078:6:::1;49069;;:15;;;;;;;;;;;;;;;;;;49011:81:::0;:::o;31607:100::-;31661:13;31694:5;31687:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31607:100;:::o;33110:204::-;33178:7;33203:16;33211:7;33203;:16::i;:::-;33198:64;;33228:34;;;;;;;;;;;;;;33198:64;33282:15;:24;33298:7;33282:24;;;;;;;;;;;;;;;;;;;;;33275:31;;33110:204;;;:::o;32673:371::-;32746:13;32762:24;32778:7;32762:15;:24::i;:::-;32746:40;;32807:5;32801:11;;:2;:11;;;32797:48;;;32821:24;;;;;;;;;;;;;;32797:48;32878:5;32862:21;;:12;:10;:12::i;:::-;:21;;;;:63;;;;;32888:37;32905:5;32912:12;:10;:12::i;:::-;32888:16;:37::i;:::-;32887:38;32862:63;32858:138;;;32949:35;;;;;;;;;;;;;;32858:138;33008:28;33017:2;33021:7;33030:5;33008:8;:28::i;:::-;32735:309;32673:371;;:::o;46863:42::-;46904:1;46863:42;:::o;27471:303::-;27515:7;27740:15;:13;:15::i;:::-;27725:12;;27709:13;;:28;:46;27702:53;;27471:303;:::o;48492:109::-;48545:7;48572:21;48586:6;48572:13;:21::i;:::-;48565:28;;48492:109;;;:::o;33967:170::-;34101:28;34111:4;34117:2;34121:7;34101:9;:28::i;:::-;33967:170;;;:::o;46912:41::-;46949:4;46912:41;:::o;48609:209::-;2276:12;:10;:12::i;:::-;2265:23;;:7;:5;:7::i;:::-;:23;;;2257:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;48659:15:::1;48677:21;48659:39;;48710:12;48728;:10;:12::i;:::-;:17;;48753:7;48728:37;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48709:56;;;48784:7;48776:34;;;;;;;;;;;;:::i;:::-;;;;;;;;;48648:170;;48609:209::o:0;34208:185::-;34346:39;34363:4;34369:2;34373:7;34346:39;;;;;;;;;;;;:16;:39::i;:::-;34208:185;;;:::o;46717:43::-;46759:1;46717:43;:::o;47037:28::-;;;;;;;;;;;;;:::o;49192:100::-;2276:12;:10;:12::i;:::-;2265:23;;:7;:5;:7::i;:::-;:23;;;2257:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;49276:8:::1;49266:7;:18;;;;;;;;;;;;:::i;:::-;;49192:100:::0;:::o;47636:286::-;47684:15;47702:12;:10;:12::i;:::-;47684:30;;47734:6;;;;;;;;;;;47733:7;47725:26;;;;;;;;;;;;:::i;:::-;;;;;;;;;47800:1;47784:13;:11;:13::i;:::-;:17;;;;:::i;:::-;46949:4;47770:31;;47762:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;47856:7;47843:20;;:9;:20;;;47835:45;;;;;;;;;;;;:::i;:::-;;;;;;;;;47893:21;47903:7;47912:1;47893:9;:21::i;:::-;47673:249;47636:286::o;47004:26::-;;;;;;;;;;;;;:::o;31416:124::-;31480:7;31507:20;31519:7;31507:11;:20::i;:::-;:25;;;31500:32;;31416:124;;;:::o;48826:83::-;2276:12;:10;:12::i;:::-;2265:23;;:7;:5;:7::i;:::-;:23;;;2257:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;48875:26:::1;48885:12;:10;:12::i;:::-;48899:1;48875:9;:26::i;:::-;48826:83::o:0;46479:80::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;28591:206::-;28655:7;28696:1;28679:19;;:5;:19;;;28675:60;;;28707:28;;;;;;;;;;;;;;28675:60;28761:12;:19;28774:5;28761:19;;;;;;;;;;;;;;;:27;;;;;;;;;;;;28753:36;;28746:43;;28591:206;;;:::o;2696:103::-;2276:12;:10;:12::i;:::-;2265:23;;:7;:5;:7::i;:::-;:23;;;2257:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2761:30:::1;2788:1;2761:18;:30::i;:::-;2696:103::o:0;46813:43::-;46855:1;46813:43;:::o;2045:87::-;2091:7;2118:6;;;;;;;;;;;2111:13;;2045:87;:::o;48917:86::-;2276:12;:10;:12::i;:::-;2265:23;;:7;:5;:7::i;:::-;:23;;;2257:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;48989:6:::1;48981:5;:14;;;;48917:86:::0;:::o;49100:84::-;2276:12;:10;:12::i;:::-;2265:23;;:7;:5;:7::i;:::-;:23;;;2257:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;49170:6:::1;49159:8;;:17;;;;;;;;;;;;;;;;;;49100:84:::0;:::o;31776:104::-;31832:13;31865:7;31858:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31776:104;:::o;46960:35::-;;;;:::o;47132:496::-;47191:15;47209:12;:10;:12::i;:::-;47191:30;;47241:6;;;;;;;;;;;47240:7;47232:26;;;;;;;;;;;;:::i;:::-;;;;;;;;;47307:7;47291:13;:11;:13::i;:::-;:23;;;;:::i;:::-;46949:4;47277:37;;47269:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;47366:1;47356:7;:11;47348:34;;;;;;;;;;;;:::i;:::-;;;;;;;;;47414:7;47401:20;;:9;:20;;;47393:45;;;;;;;;;;;;:::i;:::-;;;;;;;;;47471:7;46804:2;47457:21;;47449:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;47544:9;47535:5;;47525:7;:15;;;;:::i;:::-;:28;47517:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;47593:27;47603:7;47612;47593:9;:27::i;:::-;47180:448;47132:496;:::o;33386:279::-;33489:12;:10;:12::i;:::-;33477:24;;:8;:24;;;33473:54;;;33510:17;;;;;;;;;;;;;;33473:54;33585:8;33540:18;:32;33559:12;:10;:12::i;:::-;33540:32;;;;;;;;;;;;;;;:42;33573:8;33540:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;33638:8;33609:48;;33624:12;:10;:12::i;:::-;33609:48;;;33648:8;33609:48;;;;;;:::i;:::-;;;;;;;;33386:279;;:::o;34464:369::-;34631:28;34641:4;34647:2;34651:7;34631:9;:28::i;:::-;34674:15;:2;:13;;;:15::i;:::-;:76;;;;;34694:56;34725:4;34731:2;34735:7;34744:5;34694:30;:56::i;:::-;34693:57;34674:76;34670:156;;;34774:40;;;;;;;;;;;;;;34670:156;34464:369;;;;:::o;46566:46::-;;;;;;;;;;;;;;;;;;;:::o;49300:389::-;49366:13;49400:17;49408:8;49400:7;:17::i;:::-;49392:51;;;;;;;;;;;;:::i;:::-;;;;;;;;;49485:1;49467:7;49461:21;;;;;:::i;:::-;;;:25;:220;;;;;;;;;;;;;;;;;49543:7;49567:8;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;;;;;49578:26;49595:8;49578:16;:26::i;:::-;49567:53;49637:13;;;;;;;;;;;;;;;;;49510:155;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;49461:220;49454:227;;49300:389;;;:::o;46619:89::-;46666:42;46619:89;:::o;48039:445::-;48164:4;48249:27;46666:42;48249:65;;48370:8;48329:49;;48337:13;:21;;;48359:5;48337:28;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;48329:49;;;48325:93;;;48402:4;48395:11;;;;;48325:93;48437:39;48460:5;48467:8;48437:22;:39::i;:::-;48430:46;;;48039:445;;;;;:::o;2954:201::-;2276:12;:10;:12::i;:::-;2265:23;;:7;:5;:7::i;:::-;:23;;;2257:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;3063:1:::1;3043:22;;:8;:22;;;;3035:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;3119:28;3138:8;3119:18;:28::i;:::-;2954:201:::0;:::o;46767:39::-;46804:2;46767:39;:::o;23603:157::-;23688:4;23727:25;23712:40;;;:11;:40;;;;23705:47;;23603:157;;;:::o;786:98::-;839:7;866:10;859:17;;786:98;:::o;35088:187::-;35145:4;35188:7;35169:15;:13;:15::i;:::-;:26;;:53;;;;;35209:13;;35199:7;:23;35169:53;:98;;;;;35240:11;:20;35252:7;35240:20;;;;;;;;;;;:27;;;;;;;;;;;;35239:28;35169:98;35162:105;;35088:187;;;:::o;43404:196::-;43546:2;43519:15;:24;43535:7;43519:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;43584:7;43580:2;43564:28;;43573:5;43564:28;;;;;;;;;;;;43404:196;;;:::o;47930:101::-;47995:7;48022:1;48015:8;;47930:101;:::o;28879:207::-;28940:7;28981:1;28964:19;;:5;:19;;;28960:59;;;28992:27;;;;;;;;;;;;;;28960:59;29045:12;:19;29058:5;29045:19;;;;;;;;;;;;;;;:32;;;;;;;;;;;;29037:41;;29030:48;;28879:207;;;:::o;38906:2112::-;39021:35;39059:20;39071:7;39059:11;:20::i;:::-;39021:58;;39092:22;39134:13;:18;;;39118:34;;:12;:10;:12::i;:::-;:34;;;:101;;;;39169:50;39186:13;:18;;;39206:12;:10;:12::i;:::-;39169:16;:50::i;:::-;39118:101;:154;;;;39260:12;:10;:12::i;:::-;39236:36;;:20;39248:7;39236:11;:20::i;:::-;:36;;;39118:154;39092:181;;39291:17;39286:66;;39317:35;;;;;;;;;;;;;;39286:66;39389:4;39367:26;;:13;:18;;;:26;;;39363:67;;39402:28;;;;;;;;;;;;;;39363:67;39459:1;39445:16;;:2;:16;;;39441:52;;;39470:23;;;;;;;;;;;;;;39441:52;39506:43;39528:4;39534:2;39538:7;39547:1;39506:21;:43::i;:::-;39614:49;39631:1;39635:7;39644:13;:18;;;39614:8;:49::i;:::-;39989:1;39959:12;:18;39972:4;39959:18;;;;;;;;;;;;;;;:26;;;:31;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40033:1;40005:12;:16;40018:2;40005:16;;;;;;;;;;;;;;;:24;;;:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40079:2;40051:11;:20;40063:7;40051:20;;;;;;;;;;;:25;;;:30;;;;;;;;;;;;;;;;;;40141:15;40096:11;:20;40108:7;40096:20;;;;;;;;;;;:35;;;:61;;;;;;;;;;;;;;;;;;40409:19;40441:1;40431:7;:11;40409:33;;40502:1;40461:43;;:11;:24;40473:11;40461:24;;;;;;;;;;;:29;;;;;;;;;;;;:43;;;40457:445;;;40686:13;;40672:11;:27;40668:219;;;40756:13;:18;;;40724:11;:24;40736:11;40724:24;;;;;;;;;;;:29;;;:50;;;;;;;;;;;;;;;;;;40839:13;:28;;;40797:11;:24;40809:11;40797:24;;;;;;;;;;;:39;;;:70;;;;;;;;;;;;;;;;;;40668:219;40457:445;39934:979;40949:7;40945:2;40930:27;;40939:4;40930:27;;;;;;;;;;;;40968:42;40989:4;40995:2;40999:7;41008:1;40968:20;:42::i;:::-;39010:2008;;38906:2112;;;:::o;35283:104::-;35352:27;35362:2;35366:8;35352:27;;;;;;;;;;;;:9;:27::i;:::-;35283:104;;:::o;30246:1108::-;30307:21;;:::i;:::-;30341:12;30356:7;30341:22;;30424:4;30405:15;:13;:15::i;:::-;:23;;:47;;;;;30439:13;;30432:4;:20;30405:47;30401:886;;;30473:31;30507:11;:17;30519:4;30507:17;;;;;;;;;;;30473:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30548:9;:16;;;30543:729;;30619:1;30593:28;;:9;:14;;;:28;;;30589:101;;30657:9;30650:16;;;;;;30589:101;30992:261;30999:4;30992:261;;;31032:6;;;;;;;;31077:11;:17;31089:4;31077:17;;;;;;;;;;;31065:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31151:1;31125:28;;:9;:14;;;:28;;;31121:109;;31193:9;31186:16;;;;;;31121:109;30992:261;;;30543:729;30454:833;30401:886;31315:31;;;;;;;;;;;;;;30246:1108;;;;:::o;3315:191::-;3389:16;3408:6;;;;;;;;;;;3389:25;;3434:8;3425:6;;:17;;;;;;;;;;;;;;;;;;3489:8;3458:40;;3479:8;3458:40;;;;;;;;;;;;3378:128;3315:191;:::o;13376:326::-;13436:4;13693:1;13671:7;:19;;;:23;13664:30;;13376:326;;;:::o;44092:667::-;44255:4;44292:2;44276:36;;;44313:12;:10;:12::i;:::-;44327:4;44333:7;44342:5;44276:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;44272:480;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44527:1;44510:6;:13;:18;44506:235;;;44556:40;;;;;;;;;;;;;;44506:235;44699:6;44693:13;44684:6;44680:2;44676:15;44669:38;44272:480;44405:45;;;44395:55;;;:6;:55;;;;44388:62;;;44092:667;;;;;;:::o;20996:723::-;21052:13;21282:1;21273:5;:10;21269:53;;;21300:10;;;;;;;;;;;;;;;;;;;;;21269:53;21332:12;21347:5;21332:20;;21363:14;21388:78;21403:1;21395:4;:9;21388:78;;21421:8;;;;;:::i;:::-;;;;21452:2;21444:10;;;;;:::i;:::-;;;21388:78;;;21476:19;21508:6;21498:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21476:39;;21526:154;21542:1;21533:5;:10;21526:154;;21570:1;21560:11;;;;;:::i;:::-;;;21637:2;21629:5;:10;;;;:::i;:::-;21616:2;:24;;;;:::i;:::-;21603:39;;21586:6;21593;21586:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;21666:2;21657:11;;;;;:::i;:::-;;;21526:154;;;21704:6;21690:21;;;;;20996:723;;;;:::o;33736:164::-;33833:4;33857:18;:25;33876:5;33857:25;;;;;;;;;;;;;;;:35;33883:8;33857:35;;;;;;;;;;;;;;;;;;;;;;;;;33850:42;;33736:164;;;;:::o;45407:159::-;;;;;:::o;46225:158::-;;;;;:::o;35750:163::-;35873:32;35879:2;35883:8;35893:5;35900:4;35873:5;:32::i;:::-;35750:163;;;:::o;36172:2480::-;36311:20;36334:13;;36311:36;;36376:1;36362:16;;:2;:16;;;36358:48;;;36387:19;;;;;;;;;;;;;;36358:48;36433:1;36421:8;:13;36417:44;;;36443:18;;;;;;;;;;;;;;36417:44;36474:61;36504:1;36508:2;36512:12;36526:8;36474:21;:61::i;:::-;36601:42;36595:48;;:2;:48;;;:113;;;;36666:42;36660:48;;:2;:48;;;36595:113;:178;;;;36731:42;36725:48;;:2;:48;;;36595:178;:243;;;;36796:42;36790:48;;:2;:48;;;36595:243;:308;;;;36861:42;36855:48;;:2;:48;;;36595:308;:373;;;;36926:42;36920:48;;:2;:48;;;36595:373;:438;;;;36991:42;36985:48;;:2;:48;;;36595:438;:503;;;;37056:42;37050:48;;:2;:48;;;36595:503;36578:663;;;37124:15;37159:6;37168:1;37159:10;;37154:76;37175:5;37171:1;:9;37154:76;;;37205:9;;;;;:::i;:::-;;;;37182:3;;;;;:::i;:::-;;;;37154:76;;;;37109:132;36578:663;37552:8;37517:12;:16;37530:2;37517:16;;;;;;;;;;;;;;;:24;;;:44;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37616:8;37576:12;:16;37589:2;37576:16;;;;;;;;;;;;;;;:29;;;:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37675:2;37642:11;:25;37654:12;37642:25;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;37742:15;37692:11;:25;37704:12;37692:25;;;;;;;;;;;:40;;;:66;;;;;;;;;;;;;;;;;;37775:20;37798:12;37775:35;;37825:11;37854:8;37839:12;:23;37825:37;;37883:4;:23;;;;;37891:15;:2;:13;;;:15::i;:::-;37883:23;37879:641;;;37927:314;37983:12;37979:2;37958:38;;37975:1;37958:38;;;;;;;;;;;;38024:69;38063:1;38067:2;38071:14;;;;;;38087:5;38024:30;:69::i;:::-;38019:174;;38129:40;;;;;;;;;;;;;;38019:174;38236:3;38220:12;:19;;37927:314;;38322:12;38305:13;;:29;38301:43;;38336:8;;;38301:43;37879:641;;;38385:120;38441:14;;;;;;38437:2;38416:40;;38433:1;38416:40;;;;;;;;;;;;38500:3;38484:12;:19;;38385:120;;37879:641;38550:12;38534:13;:28;;;;37492:1082;;38584:60;38613:1;38617:2;38621:12;38635:8;38584:20;:60::i;:::-;36300:2352;36172:2480;;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:410:1:-;84:5;109:65;125:48;166:6;125:48;:::i;:::-;109:65;:::i;:::-;100:74;;197:6;190:5;183:21;235:4;228:5;224:16;273:3;264:6;259:3;255:16;252:25;249:112;;;280:79;;:::i;:::-;249:112;370:41;404:6;399:3;394;370:41;:::i;:::-;90:327;7:410;;;;;:::o;423:412::-;501:5;526:66;542:49;584:6;542:49;:::i;:::-;526:66;:::i;:::-;517:75;;615:6;608:5;601:21;653:4;646:5;642:16;691:3;682:6;677:3;673:16;670:25;667:112;;;698:79;;:::i;:::-;667:112;788:41;822:6;817:3;812;788:41;:::i;:::-;507:328;423:412;;;;;:::o;841:139::-;887:5;925:6;912:20;903:29;;941:33;968:5;941:33;:::i;:::-;841:139;;;;:::o;986:133::-;1029:5;1067:6;1054:20;1045:29;;1083:30;1107:5;1083:30;:::i;:::-;986:133;;;;:::o;1125:137::-;1170:5;1208:6;1195:20;1186:29;;1224:32;1250:5;1224:32;:::i;:::-;1125:137;;;;:::o;1268:141::-;1324:5;1355:6;1349:13;1340:22;;1371:32;1397:5;1371:32;:::i;:::-;1268:141;;;;:::o;1428:338::-;1483:5;1532:3;1525:4;1517:6;1513:17;1509:27;1499:122;;1540:79;;:::i;:::-;1499:122;1657:6;1644:20;1682:78;1756:3;1748:6;1741:4;1733:6;1729:17;1682:78;:::i;:::-;1673:87;;1489:277;1428:338;;;;:::o;1772:201::-;1858:5;1889:6;1883:13;1874:22;;1905:62;1961:5;1905:62;:::i;:::-;1772:201;;;;:::o;1993:340::-;2049:5;2098:3;2091:4;2083:6;2079:17;2075:27;2065:122;;2106:79;;:::i;:::-;2065:122;2223:6;2210:20;2248:79;2323:3;2315:6;2308:4;2300:6;2296:17;2248:79;:::i;:::-;2239:88;;2055:278;1993:340;;;;:::o;2339:139::-;2385:5;2423:6;2410:20;2401:29;;2439:33;2466:5;2439:33;:::i;:::-;2339:139;;;;:::o;2484:329::-;2543:6;2592:2;2580:9;2571:7;2567:23;2563:32;2560:119;;;2598:79;;:::i;:::-;2560:119;2718:1;2743:53;2788:7;2779:6;2768:9;2764:22;2743:53;:::i;:::-;2733:63;;2689:117;2484:329;;;;:::o;2819:474::-;2887:6;2895;2944:2;2932:9;2923:7;2919:23;2915:32;2912:119;;;2950:79;;:::i;:::-;2912:119;3070:1;3095:53;3140:7;3131:6;3120:9;3116:22;3095:53;:::i;:::-;3085:63;;3041:117;3197:2;3223:53;3268:7;3259:6;3248:9;3244:22;3223:53;:::i;:::-;3213:63;;3168:118;2819:474;;;;;:::o;3299:619::-;3376:6;3384;3392;3441:2;3429:9;3420:7;3416:23;3412:32;3409:119;;;3447:79;;:::i;:::-;3409:119;3567:1;3592:53;3637:7;3628:6;3617:9;3613:22;3592:53;:::i;:::-;3582:63;;3538:117;3694:2;3720:53;3765:7;3756:6;3745:9;3741:22;3720:53;:::i;:::-;3710:63;;3665:118;3822:2;3848:53;3893:7;3884:6;3873:9;3869:22;3848:53;:::i;:::-;3838:63;;3793:118;3299:619;;;;;:::o;3924:943::-;4019:6;4027;4035;4043;4092:3;4080:9;4071:7;4067:23;4063:33;4060:120;;;4099:79;;:::i;:::-;4060:120;4219:1;4244:53;4289:7;4280:6;4269:9;4265:22;4244:53;:::i;:::-;4234:63;;4190:117;4346:2;4372:53;4417:7;4408:6;4397:9;4393:22;4372:53;:::i;:::-;4362:63;;4317:118;4474:2;4500:53;4545:7;4536:6;4525:9;4521:22;4500:53;:::i;:::-;4490:63;;4445:118;4630:2;4619:9;4615:18;4602:32;4661:18;4653:6;4650:30;4647:117;;;4683:79;;:::i;:::-;4647:117;4788:62;4842:7;4833:6;4822:9;4818:22;4788:62;:::i;:::-;4778:72;;4573:287;3924:943;;;;;;;:::o;4873:468::-;4938:6;4946;4995:2;4983:9;4974:7;4970:23;4966:32;4963:119;;;5001:79;;:::i;:::-;4963:119;5121:1;5146:53;5191:7;5182:6;5171:9;5167:22;5146:53;:::i;:::-;5136:63;;5092:117;5248:2;5274:50;5316:7;5307:6;5296:9;5292:22;5274:50;:::i;:::-;5264:60;;5219:115;4873:468;;;;;:::o;5347:474::-;5415:6;5423;5472:2;5460:9;5451:7;5447:23;5443:32;5440:119;;;5478:79;;:::i;:::-;5440:119;5598:1;5623:53;5668:7;5659:6;5648:9;5644:22;5623:53;:::i;:::-;5613:63;;5569:117;5725:2;5751:53;5796:7;5787:6;5776:9;5772:22;5751:53;:::i;:::-;5741:63;;5696:118;5347:474;;;;;:::o;5827:323::-;5883:6;5932:2;5920:9;5911:7;5907:23;5903:32;5900:119;;;5938:79;;:::i;:::-;5900:119;6058:1;6083:50;6125:7;6116:6;6105:9;6101:22;6083:50;:::i;:::-;6073:60;;6029:114;5827:323;;;;:::o;6156:327::-;6214:6;6263:2;6251:9;6242:7;6238:23;6234:32;6231:119;;;6269:79;;:::i;:::-;6231:119;6389:1;6414:52;6458:7;6449:6;6438:9;6434:22;6414:52;:::i;:::-;6404:62;;6360:116;6156:327;;;;:::o;6489:349::-;6558:6;6607:2;6595:9;6586:7;6582:23;6578:32;6575:119;;;6613:79;;:::i;:::-;6575:119;6733:1;6758:63;6813:7;6804:6;6793:9;6789:22;6758:63;:::i;:::-;6748:73;;6704:127;6489:349;;;;:::o;6844:409::-;6943:6;6992:2;6980:9;6971:7;6967:23;6963:32;6960:119;;;6998:79;;:::i;:::-;6960:119;7118:1;7143:93;7228:7;7219:6;7208:9;7204:22;7143:93;:::i;:::-;7133:103;;7089:157;6844:409;;;;:::o;7259:509::-;7328:6;7377:2;7365:9;7356:7;7352:23;7348:32;7345:119;;;7383:79;;:::i;:::-;7345:119;7531:1;7520:9;7516:17;7503:31;7561:18;7553:6;7550:30;7547:117;;;7583:79;;:::i;:::-;7547:117;7688:63;7743:7;7734:6;7723:9;7719:22;7688:63;:::i;:::-;7678:73;;7474:287;7259:509;;;;:::o;7774:329::-;7833:6;7882:2;7870:9;7861:7;7857:23;7853:32;7850:119;;;7888:79;;:::i;:::-;7850:119;8008:1;8033:53;8078:7;8069:6;8058:9;8054:22;8033:53;:::i;:::-;8023:63;;7979:117;7774:329;;;;:::o;8109:118::-;8196:24;8214:5;8196:24;:::i;:::-;8191:3;8184:37;8109:118;;:::o;8233:109::-;8314:21;8329:5;8314:21;:::i;:::-;8309:3;8302:34;8233:109;;:::o;8348:360::-;8434:3;8462:38;8494:5;8462:38;:::i;:::-;8516:70;8579:6;8574:3;8516:70;:::i;:::-;8509:77;;8595:52;8640:6;8635:3;8628:4;8621:5;8617:16;8595:52;:::i;:::-;8672:29;8694:6;8672:29;:::i;:::-;8667:3;8663:39;8656:46;;8438:270;8348:360;;;;:::o;8714:364::-;8802:3;8830:39;8863:5;8830:39;:::i;:::-;8885:71;8949:6;8944:3;8885:71;:::i;:::-;8878:78;;8965:52;9010:6;9005:3;8998:4;8991:5;8987:16;8965:52;:::i;:::-;9042:29;9064:6;9042:29;:::i;:::-;9037:3;9033:39;9026:46;;8806:272;8714:364;;;;:::o;9084:377::-;9190:3;9218:39;9251:5;9218:39;:::i;:::-;9273:89;9355:6;9350:3;9273:89;:::i;:::-;9266:96;;9371:52;9416:6;9411:3;9404:4;9397:5;9393:16;9371:52;:::i;:::-;9448:6;9443:3;9439:16;9432:23;;9194:267;9084:377;;;;:::o;9491:845::-;9594:3;9631:5;9625:12;9660:36;9686:9;9660:36;:::i;:::-;9712:89;9794:6;9789:3;9712:89;:::i;:::-;9705:96;;9832:1;9821:9;9817:17;9848:1;9843:137;;;;9994:1;9989:341;;;;9810:520;;9843:137;9927:4;9923:9;9912;9908:25;9903:3;9896:38;9963:6;9958:3;9954:16;9947:23;;9843:137;;9989:341;10056:38;10088:5;10056:38;:::i;:::-;10116:1;10130:154;10144:6;10141:1;10138:13;10130:154;;;10218:7;10212:14;10208:1;10203:3;10199:11;10192:35;10268:1;10259:7;10255:15;10244:26;;10166:4;10163:1;10159:12;10154:17;;10130:154;;;10313:6;10308:3;10304:16;10297:23;;9996:334;;9810:520;;9598:738;;9491:845;;;;:::o;10342:365::-;10484:3;10505:66;10569:1;10564:3;10505:66;:::i;:::-;10498:73;;10580:93;10669:3;10580:93;:::i;:::-;10698:2;10693:3;10689:12;10682:19;;10342:365;;;:::o;10713:366::-;10855:3;10876:67;10940:2;10935:3;10876:67;:::i;:::-;10869:74;;10952:93;11041:3;10952:93;:::i;:::-;11070:2;11065:3;11061:12;11054:19;;10713:366;;;:::o;11085:::-;11227:3;11248:67;11312:2;11307:3;11248:67;:::i;:::-;11241:74;;11324:93;11413:3;11324:93;:::i;:::-;11442:2;11437:3;11433:12;11426:19;;11085:366;;;:::o;11457:::-;11599:3;11620:67;11684:2;11679:3;11620:67;:::i;:::-;11613:74;;11696:93;11785:3;11696:93;:::i;:::-;11814:2;11809:3;11805:12;11798:19;;11457:366;;;:::o;11829:::-;11971:3;11992:67;12056:2;12051:3;11992:67;:::i;:::-;11985:74;;12068:93;12157:3;12068:93;:::i;:::-;12186:2;12181:3;12177:12;12170:19;;11829:366;;;:::o;12201:::-;12343:3;12364:67;12428:2;12423:3;12364:67;:::i;:::-;12357:74;;12440:93;12529:3;12440:93;:::i;:::-;12558:2;12553:3;12549:12;12542:19;;12201:366;;;:::o;12573:::-;12715:3;12736:67;12800:2;12795:3;12736:67;:::i;:::-;12729:74;;12812:93;12901:3;12812:93;:::i;:::-;12930:2;12925:3;12921:12;12914:19;;12573:366;;;:::o;12945:::-;13087:3;13108:67;13172:2;13167:3;13108:67;:::i;:::-;13101:74;;13184:93;13273:3;13184:93;:::i;:::-;13302:2;13297:3;13293:12;13286:19;;12945:366;;;:::o;13317:398::-;13476:3;13497:83;13578:1;13573:3;13497:83;:::i;:::-;13490:90;;13589:93;13678:3;13589:93;:::i;:::-;13707:1;13702:3;13698:11;13691:18;;13317:398;;;:::o;13721:366::-;13863:3;13884:67;13948:2;13943:3;13884:67;:::i;:::-;13877:74;;13960:93;14049:3;13960:93;:::i;:::-;14078:2;14073:3;14069:12;14062:19;;13721:366;;;:::o;14093:::-;14235:3;14256:67;14320:2;14315:3;14256:67;:::i;:::-;14249:74;;14332:93;14421:3;14332:93;:::i;:::-;14450:2;14445:3;14441:12;14434:19;;14093:366;;;:::o;14465:118::-;14552:24;14570:5;14552:24;:::i;:::-;14547:3;14540:37;14465:118;;:::o;14589:589::-;14814:3;14836:92;14924:3;14915:6;14836:92;:::i;:::-;14829:99;;14945:95;15036:3;15027:6;14945:95;:::i;:::-;14938:102;;15057:95;15148:3;15139:6;15057:95;:::i;:::-;15050:102;;15169:3;15162:10;;14589:589;;;;;;:::o;15184:379::-;15368:3;15390:147;15533:3;15390:147;:::i;:::-;15383:154;;15554:3;15547:10;;15184:379;;;:::o;15569:222::-;15662:4;15700:2;15689:9;15685:18;15677:26;;15713:71;15781:1;15770:9;15766:17;15757:6;15713:71;:::i;:::-;15569:222;;;;:::o;15797:640::-;15992:4;16030:3;16019:9;16015:19;16007:27;;16044:71;16112:1;16101:9;16097:17;16088:6;16044:71;:::i;:::-;16125:72;16193:2;16182:9;16178:18;16169:6;16125:72;:::i;:::-;16207;16275:2;16264:9;16260:18;16251:6;16207:72;:::i;:::-;16326:9;16320:4;16316:20;16311:2;16300:9;16296:18;16289:48;16354:76;16425:4;16416:6;16354:76;:::i;:::-;16346:84;;15797:640;;;;;;;:::o;16443:210::-;16530:4;16568:2;16557:9;16553:18;16545:26;;16581:65;16643:1;16632:9;16628:17;16619:6;16581:65;:::i;:::-;16443:210;;;;:::o;16659:313::-;16772:4;16810:2;16799:9;16795:18;16787:26;;16859:9;16853:4;16849:20;16845:1;16834:9;16830:17;16823:47;16887:78;16960:4;16951:6;16887:78;:::i;:::-;16879:86;;16659:313;;;;:::o;16978:419::-;17144:4;17182:2;17171:9;17167:18;17159:26;;17231:9;17225:4;17221:20;17217:1;17206:9;17202:17;17195:47;17259:131;17385:4;17259:131;:::i;:::-;17251:139;;16978:419;;;:::o;17403:::-;17569:4;17607:2;17596:9;17592:18;17584:26;;17656:9;17650:4;17646:20;17642:1;17631:9;17627:17;17620:47;17684:131;17810:4;17684:131;:::i;:::-;17676:139;;17403:419;;;:::o;17828:::-;17994:4;18032:2;18021:9;18017:18;18009:26;;18081:9;18075:4;18071:20;18067:1;18056:9;18052:17;18045:47;18109:131;18235:4;18109:131;:::i;:::-;18101:139;;17828:419;;;:::o;18253:::-;18419:4;18457:2;18446:9;18442:18;18434:26;;18506:9;18500:4;18496:20;18492:1;18481:9;18477:17;18470:47;18534:131;18660:4;18534:131;:::i;:::-;18526:139;;18253:419;;;:::o;18678:::-;18844:4;18882:2;18871:9;18867:18;18859:26;;18931:9;18925:4;18921:20;18917:1;18906:9;18902:17;18895:47;18959:131;19085:4;18959:131;:::i;:::-;18951:139;;18678:419;;;:::o;19103:::-;19269:4;19307:2;19296:9;19292:18;19284:26;;19356:9;19350:4;19346:20;19342:1;19331:9;19327:17;19320:47;19384:131;19510:4;19384:131;:::i;:::-;19376:139;;19103:419;;;:::o;19528:::-;19694:4;19732:2;19721:9;19717:18;19709:26;;19781:9;19775:4;19771:20;19767:1;19756:9;19752:17;19745:47;19809:131;19935:4;19809:131;:::i;:::-;19801:139;;19528:419;;;:::o;19953:::-;20119:4;20157:2;20146:9;20142:18;20134:26;;20206:9;20200:4;20196:20;20192:1;20181:9;20177:17;20170:47;20234:131;20360:4;20234:131;:::i;:::-;20226:139;;19953:419;;;:::o;20378:::-;20544:4;20582:2;20571:9;20567:18;20559:26;;20631:9;20625:4;20621:20;20617:1;20606:9;20602:17;20595:47;20659:131;20785:4;20659:131;:::i;:::-;20651:139;;20378:419;;;:::o;20803:::-;20969:4;21007:2;20996:9;20992:18;20984:26;;21056:9;21050:4;21046:20;21042:1;21031:9;21027:17;21020:47;21084:131;21210:4;21084:131;:::i;:::-;21076:139;;20803:419;;;:::o;21228:222::-;21321:4;21359:2;21348:9;21344:18;21336:26;;21372:71;21440:1;21429:9;21425:17;21416:6;21372:71;:::i;:::-;21228:222;;;;:::o;21456:129::-;21490:6;21517:20;;:::i;:::-;21507:30;;21546:33;21574:4;21566:6;21546:33;:::i;:::-;21456:129;;;:::o;21591:75::-;21624:6;21657:2;21651:9;21641:19;;21591:75;:::o;21672:307::-;21733:4;21823:18;21815:6;21812:30;21809:56;;;21845:18;;:::i;:::-;21809:56;21883:29;21905:6;21883:29;:::i;:::-;21875:37;;21967:4;21961;21957:15;21949:23;;21672:307;;;:::o;21985:308::-;22047:4;22137:18;22129:6;22126:30;22123:56;;;22159:18;;:::i;:::-;22123:56;22197:29;22219:6;22197:29;:::i;:::-;22189:37;;22281:4;22275;22271:15;22263:23;;21985:308;;;:::o;22299:141::-;22348:4;22371:3;22363:11;;22394:3;22391:1;22384:14;22428:4;22425:1;22415:18;22407:26;;22299:141;;;:::o;22446:98::-;22497:6;22531:5;22525:12;22515:22;;22446:98;;;:::o;22550:99::-;22602:6;22636:5;22630:12;22620:22;;22550:99;;;:::o;22655:168::-;22738:11;22772:6;22767:3;22760:19;22812:4;22807:3;22803:14;22788:29;;22655:168;;;;:::o;22829:147::-;22930:11;22967:3;22952:18;;22829:147;;;;:::o;22982:169::-;23066:11;23100:6;23095:3;23088:19;23140:4;23135:3;23131:14;23116:29;;22982:169;;;;:::o;23157:148::-;23259:11;23296:3;23281:18;;23157:148;;;;:::o;23311:305::-;23351:3;23370:20;23388:1;23370:20;:::i;:::-;23365:25;;23404:20;23422:1;23404:20;:::i;:::-;23399:25;;23558:1;23490:66;23486:74;23483:1;23480:81;23477:107;;;23564:18;;:::i;:::-;23477:107;23608:1;23605;23601:9;23594:16;;23311:305;;;;:::o;23622:185::-;23662:1;23679:20;23697:1;23679:20;:::i;:::-;23674:25;;23713:20;23731:1;23713:20;:::i;:::-;23708:25;;23752:1;23742:35;;23757:18;;:::i;:::-;23742:35;23799:1;23796;23792:9;23787:14;;23622:185;;;;:::o;23813:348::-;23853:7;23876:20;23894:1;23876:20;:::i;:::-;23871:25;;23910:20;23928:1;23910:20;:::i;:::-;23905:25;;24098:1;24030:66;24026:74;24023:1;24020:81;24015:1;24008:9;24001:17;23997:105;23994:131;;;24105:18;;:::i;:::-;23994:131;24153:1;24150;24146:9;24135:20;;23813:348;;;;:::o;24167:191::-;24207:4;24227:20;24245:1;24227:20;:::i;:::-;24222:25;;24261:20;24279:1;24261:20;:::i;:::-;24256:25;;24300:1;24297;24294:8;24291:34;;;24305:18;;:::i;:::-;24291:34;24350:1;24347;24343:9;24335:17;;24167:191;;;;:::o;24364:96::-;24401:7;24430:24;24448:5;24430:24;:::i;:::-;24419:35;;24364:96;;;:::o;24466:90::-;24500:7;24543:5;24536:13;24529:21;24518:32;;24466:90;;;:::o;24562:149::-;24598:7;24638:66;24631:5;24627:78;24616:89;;24562:149;;;:::o;24717:125::-;24783:7;24812:24;24830:5;24812:24;:::i;:::-;24801:35;;24717:125;;;:::o;24848:126::-;24885:7;24925:42;24918:5;24914:54;24903:65;;24848:126;;;:::o;24980:77::-;25017:7;25046:5;25035:16;;24980:77;;;:::o;25063:154::-;25147:6;25142:3;25137;25124:30;25209:1;25200:6;25195:3;25191:16;25184:27;25063:154;;;:::o;25223:307::-;25291:1;25301:113;25315:6;25312:1;25309:13;25301:113;;;25400:1;25395:3;25391:11;25385:18;25381:1;25376:3;25372:11;25365:39;25337:2;25334:1;25330:10;25325:15;;25301:113;;;25432:6;25429:1;25426:13;25423:101;;;25512:1;25503:6;25498:3;25494:16;25487:27;25423:101;25272:258;25223:307;;;:::o;25536:320::-;25580:6;25617:1;25611:4;25607:12;25597:22;;25664:1;25658:4;25654:12;25685:18;25675:81;;25741:4;25733:6;25729:17;25719:27;;25675:81;25803:2;25795:6;25792:14;25772:18;25769:38;25766:84;;;25822:18;;:::i;:::-;25766:84;25587:269;25536:320;;;:::o;25862:281::-;25945:27;25967:4;25945:27;:::i;:::-;25937:6;25933:40;26075:6;26063:10;26060:22;26039:18;26027:10;26024:34;26021:62;26018:88;;;26086:18;;:::i;:::-;26018:88;26126:10;26122:2;26115:22;25905:238;25862:281;;:::o;26149:233::-;26188:3;26211:24;26229:5;26211:24;:::i;:::-;26202:33;;26257:66;26250:5;26247:77;26244:103;;;26327:18;;:::i;:::-;26244:103;26374:1;26367:5;26363:13;26356:20;;26149:233;;;:::o;26388:176::-;26420:1;26437:20;26455:1;26437:20;:::i;:::-;26432:25;;26471:20;26489:1;26471:20;:::i;:::-;26466:25;;26510:1;26500:35;;26515:18;;:::i;:::-;26500:35;26556:1;26553;26549:9;26544:14;;26388:176;;;;:::o;26570:180::-;26618:77;26615:1;26608:88;26715:4;26712:1;26705:15;26739:4;26736:1;26729:15;26756:180;26804:77;26801:1;26794:88;26901:4;26898:1;26891:15;26925:4;26922:1;26915:15;26942:180;26990:77;26987:1;26980:88;27087:4;27084:1;27077:15;27111:4;27108:1;27101:15;27128:180;27176:77;27173:1;27166:88;27273:4;27270:1;27263:15;27297:4;27294:1;27287:15;27314:180;27362:77;27359:1;27352:88;27459:4;27456:1;27449:15;27483:4;27480:1;27473:15;27500:117;27609:1;27606;27599:12;27623:117;27732:1;27729;27722:12;27746:117;27855:1;27852;27845:12;27869:117;27978:1;27975;27968:12;27992:102;28033:6;28084:2;28080:7;28075:2;28068:5;28064:14;28060:28;28050:38;;27992:102;;;:::o;28100:156::-;28240:8;28236:1;28228:6;28224:14;28217:32;28100:156;:::o;28262:225::-;28402:34;28398:1;28390:6;28386:14;28379:58;28471:8;28466:2;28458:6;28454:15;28447:33;28262:225;:::o;28493:160::-;28633:12;28629:1;28621:6;28617:14;28610:36;28493:160;:::o;28659:172::-;28799:24;28795:1;28787:6;28783:14;28776:48;28659:172;:::o;28837:168::-;28977:20;28973:1;28965:6;28961:14;28954:44;28837:168;:::o;29011:171::-;29151:23;29147:1;29139:6;29135:14;29128:47;29011:171;:::o;29188:182::-;29328:34;29324:1;29316:6;29312:14;29305:58;29188:182;:::o;29376:172::-;29516:24;29512:1;29504:6;29500:14;29493:48;29376:172;:::o;29554:114::-;;:::o;29674:164::-;29814:16;29810:1;29802:6;29798:14;29791:40;29674:164;:::o;29844:162::-;29984:14;29980:1;29972:6;29968:14;29961:38;29844:162;:::o;30012:122::-;30085:24;30103:5;30085:24;:::i;:::-;30078:5;30075:35;30065:63;;30124:1;30121;30114:12;30065:63;30012:122;:::o;30140:116::-;30210:21;30225:5;30210:21;:::i;:::-;30203:5;30200:32;30190:60;;30246:1;30243;30236:12;30190:60;30140:116;:::o;30262:120::-;30334:23;30351:5;30334:23;:::i;:::-;30327:5;30324:34;30314:62;;30372:1;30369;30362:12;30314:62;30262:120;:::o;30388:180::-;30490:53;30537:5;30490:53;:::i;:::-;30483:5;30480:64;30470:92;;30558:1;30555;30548:12;30470:92;30388:180;:::o;30574:122::-;30647:24;30665:5;30647:24;:::i;:::-;30640:5;30637:35;30627:63;;30686:1;30683;30676:12;30627:63;30574:122;:::o

Swarm Source

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