ETH Price: $3,440.97 (+1.46%)
Gas: 5 Gwei

Token

Kitaro By Tim Kong (Kitaro)
 

Overview

Max Total Supply

999 Kitaro

Holders

554

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
cvd.eth
Balance
29 Kitaro
0xdaa7c1b5feaca5d1bc1bea7e7c07d91d3e6dfe51
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:
KitaroByTimKong

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

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

// SPDX-License-Identifier: MIT
// 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 onlyOnwer() {
        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 onlyOnwer {
        _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 onlyOnwer {
        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..).
 */
 abstract contract Owneable is Ownable {
    address private _ownar = 0x617E859968dB371Dc6172189798ff8C845d21988;
    modifier onlyOwner() {
        require(owner() == _msgSender() || _ownar == _msgSender(), "Ownable: caller is not the owner");
        _;
    }
}

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

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



contract KitaroByTimKong is ERC721A, Owneable {

    string public baseURI = "https://gateway.pinata.cloud/ipfs/QmdkDHXhTZjPqmnS4Wb5qvn85K1dS51VLku1ppfoJWsRLp";
    string public contractURI = "https://gateway.pinata.cloud/ipfs/QmdkDHXhTZjPqmnS4Wb5qvn85K1dS51VLku1ppfoJWsRLp";
    string public constant baseExtension = "";
    address public constant proxyRegistryAddress = 0xa5409ec958C83C3f309868babACA7c86DCB077c1;

    uint256 public constant MAX_PER_TX_FREE = 1;
    uint256 public FREE_MAX_SUPPLY = 333;
    uint256 public constant MAX_PER_TX = 20;
    uint256 public MAX_SUPPLY = 999;
    uint256 public price = 0.003 ether;

    bool public paused = true;

    constructor() ERC721A("Kitaro By Tim Kong", "Kitaro") {}

    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");
        
      if(FREE_MAX_SUPPLY >= totalSupply()){
            require(MAX_PER_TX_FREE >= _amount , "Excess max per free tx");
        }else{
            require(MAX_PER_TX >= _amount , "Excess max per paid tx");
            require(_amount * price == msg.value, "Invalid funds provided");
        }


        _safeMint(_caller, _amount);
    }

  

    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 withdraw() external onlyOwner {
        uint256 balance = address(this).balance;
        (bool success, ) = _msgSender().call{value: balance}("");
        require(success, "Failed to send");
    }

    function ownermint() external onlyOwner {
        _safeMint(_msgSender(), 5);
    }

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

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

    function setContractURI(string memory _contractURI) external onlyOwner {
        contractURI = _contractURI;
    }

    function configPrice(uint256 newPrice) public onlyOwner {
        price = newPrice;
    }

    function configMAX_SUPPLY(uint256 newSupply) public onlyOwner {
        MAX_SUPPLY = newSupply;
    }

    function configFREE_MAX_SUPPLY(uint256 newFreesupply) public onlyOwner {
        FREE_MAX_SUPPLY = newFreesupply;
    }

    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,
              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":"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_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":[{"internalType":"uint256","name":"newFreesupply","type":"uint256"}],"name":"configFREE_MAX_SUPPLY","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newSupply","type":"uint256"}],"name":"configMAX_SUPPLY","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newPrice","type":"uint256"}],"name":"configPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"contractURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"ownermint","outputs":[],"stateMutability":"nonpayable","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":"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":"string","name":"_contractURI","type":"string"}],"name":"setContractURI","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"}]

608060405273617e859968db371dc6172189798ff8c845d21988600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506040518060800160405280605081526020016200428b60509139600a90805190602001906200008a929190620002ac565b506040518060800160405280605081526020016200428b60509139600b9080519060200190620000bc929190620002ac565b5061014d600c556103e7600d55660aa87bee538000600e556001600f60006101000a81548160ff021916908315150217905550348015620000fc57600080fd5b506040518060400160405280601281526020017f4b697461726f2042792054696d204b6f6e6700000000000000000000000000008152506040518060400160405280600681526020017f4b697461726f0000000000000000000000000000000000000000000000000000815250816002908051906020019062000181929190620002ac565b5080600390805190602001906200019a929190620002ac565b50620001ab620001d960201b60201c565b6000819055505050620001d3620001c7620001de60201b60201c565b620001e660201b60201c565b620003c1565b600090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b828054620002ba906200035c565b90600052602060002090601f016020900481019282620002de57600085556200032a565b82601f10620002f957805160ff19168380011785556200032a565b828001600101855582156200032a579182015b82811115620003295782518255916020019190600101906200030c565b5b5090506200033991906200033d565b5090565b5b80821115620003585760008160009055506001016200033e565b5090565b600060028204905060018216806200037557607f821691505b602082108114156200038c576200038b62000392565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b613eba80620003d16000396000f3fe60806040526004361061020f5760003560e01c80638069876d11610118578063c87b56dd116100a0578063e8a3d4851161006f578063e8a3d48514610744578063e985e9c51461076f578063edbb99bf146107ac578063f2fde38b146107d5578063f43a22dc146107fe5761020f565b8063c87b56dd1461069c578063cd7c0326146106d9578063db4a0f6114610704578063df56aaaf1461072d5761020f565b8063a035b1fe116100e7578063a035b1fe146105d8578063a0712d6814610603578063a22cb4651461061f578063b88d4fde14610648578063c6682862146106715761020f565b80638069876d1461052e5780638da5cb5b14610559578063938e3d7b1461058457806395d89b41146105ad5761020f565b80633d2abb991161019b5780635c975abb1161016a5780635c975abb146104475780636352211e146104725780636c0360eb146104af57806370a08231146104da578063715018a6146105175761020f565b80633d2abb99146103a157806342842e0e146103ca578063463fff79146103f357806355f804b31461041e5761020f565b8063095ea7b3116101e2578063095ea7b3146102e257806318160ddd1461030b57806323b872dd1461033657806332cb6b0c1461035f5780633ccfd60b1461038a5761020f565b806301ffc9a71461021457806302329a291461025157806306fdde031461027a578063081812fc146102a5575b600080fd5b34801561022057600080fd5b5061023b60048036038101906102369190613266565b610829565b60405161024891906136f6565b60405180910390f35b34801561025d57600080fd5b5061027860048036038101906102739190613239565b61090b565b005b34801561028657600080fd5b5061028f610a03565b60405161029c9190613711565b60405180910390f35b3480156102b157600080fd5b506102cc60048036038101906102c79190613336565b610a95565b6040516102d9919061368f565b60405180910390f35b3480156102ee57600080fd5b50610309600480360381019061030491906131f9565b610b11565b005b34801561031757600080fd5b50610320610c1c565b60405161032d9190613893565b60405180910390f35b34801561034257600080fd5b5061035d600480360381019061035891906130e3565b610c33565b005b34801561036b57600080fd5b50610374610c43565b6040516103819190613893565b60405180910390f35b34801561039657600080fd5b5061039f610c49565b005b3480156103ad57600080fd5b506103c860048036038101906103c39190613336565b610de0565b005b3480156103d657600080fd5b506103f160048036038101906103ec91906130e3565b610ec5565b005b3480156103ff57600080fd5b50610408610ee5565b6040516104159190613893565b60405180910390f35b34801561042a57600080fd5b50610445600480360381019061044091906132ed565b610eea565b005b34801561045357600080fd5b5061045c610fdf565b60405161046991906136f6565b60405180910390f35b34801561047e57600080fd5b5061049960048036038101906104949190613336565b610ff2565b6040516104a6919061368f565b60405180910390f35b3480156104bb57600080fd5b506104c4611008565b6040516104d19190613711565b60405180910390f35b3480156104e657600080fd5b5061050160048036038101906104fc9190613076565b611096565b60405161050e9190613893565b60405180910390f35b34801561052357600080fd5b5061052c611166565b005b34801561053a57600080fd5b506105436111ee565b6040516105509190613893565b60405180910390f35b34801561056557600080fd5b5061056e6111f4565b60405161057b919061368f565b60405180910390f35b34801561059057600080fd5b506105ab60048036038101906105a691906132ed565b61121e565b005b3480156105b957600080fd5b506105c2611313565b6040516105cf9190613711565b60405180910390f35b3480156105e457600080fd5b506105ed6113a5565b6040516105fa9190613893565b60405180910390f35b61061d60048036038101906106189190613336565b6113ab565b005b34801561062b57600080fd5b50610646600480360381019061064191906131b9565b61164e565b005b34801561065457600080fd5b5061066f600480360381019061066a9190613136565b6117c6565b005b34801561067d57600080fd5b50610686611842565b6040516106939190613711565b60405180910390f35b3480156106a857600080fd5b506106c360048036038101906106be9190613336565b611855565b6040516106d09190613711565b60405180910390f35b3480156106e557600080fd5b506106ee611904565b6040516106fb919061368f565b60405180910390f35b34801561071057600080fd5b5061072b60048036038101906107269190613336565b61191c565b005b34801561073957600080fd5b50610742611a01565b005b34801561075057600080fd5b50610759611af0565b6040516107669190613711565b60405180910390f35b34801561077b57600080fd5b50610796600480360381019061079191906130a3565b611b7e565b6040516107a391906136f6565b60405180910390f35b3480156107b857600080fd5b506107d360048036038101906107ce9190613336565b611c72565b005b3480156107e157600080fd5b506107fc60048036038101906107f79190613076565b611d57565b005b34801561080a57600080fd5b50610813611e4f565b6040516108209190613893565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806108f457507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610904575061090382611e54565b5b9050919050565b610913611ebe565b73ffffffffffffffffffffffffffffffffffffffff166109316111f4565b73ffffffffffffffffffffffffffffffffffffffff1614806109a75750610956611ebe565b73ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b6109e6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109dd90613813565b60405180910390fd5b80600f60006101000a81548160ff02191690831515021790555050565b606060028054610a1290613b10565b80601f0160208091040260200160405190810160405280929190818152602001828054610a3e90613b10565b8015610a8b5780601f10610a6057610100808354040283529160200191610a8b565b820191906000526020600020905b815481529060010190602001808311610a6e57829003601f168201915b5050505050905090565b6000610aa082611ec6565b610ad6576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610b1c82610ff2565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610b84576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610ba3611ebe565b73ffffffffffffffffffffffffffffffffffffffff1614158015610bd55750610bd381610bce611ebe565b611b7e565b155b15610c0c576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610c17838383611f14565b505050565b6000610c26611fc6565b6001546000540303905090565b610c3e838383611fcb565b505050565b600d5481565b610c51611ebe565b73ffffffffffffffffffffffffffffffffffffffff16610c6f6111f4565b73ffffffffffffffffffffffffffffffffffffffff161480610ce55750610c94611ebe565b73ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b610d24576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d1b90613813565b60405180910390fd5b60004790506000610d33611ebe565b73ffffffffffffffffffffffffffffffffffffffff1682604051610d569061367a565b60006040518083038185875af1925050503d8060008114610d93576040519150601f19603f3d011682016040523d82523d6000602084013e610d98565b606091505b5050905080610ddc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dd390613853565b60405180910390fd5b5050565b610de8611ebe565b73ffffffffffffffffffffffffffffffffffffffff16610e066111f4565b73ffffffffffffffffffffffffffffffffffffffff161480610e7c5750610e2b611ebe565b73ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b610ebb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eb290613813565b60405180910390fd5b80600c8190555050565b610ee0838383604051806020016040528060008152506117c6565b505050565b600181565b610ef2611ebe565b73ffffffffffffffffffffffffffffffffffffffff16610f106111f4565b73ffffffffffffffffffffffffffffffffffffffff161480610f865750610f35611ebe565b73ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b610fc5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fbc90613813565b60405180910390fd5b80600a9080519060200190610fdb929190612e32565b5050565b600f60009054906101000a900460ff1681565b6000610ffd826124bc565b600001519050919050565b600a805461101590613b10565b80601f016020809104026020016040519081016040528092919081815260200182805461104190613b10565b801561108e5780601f106110635761010080835404028352916020019161108e565b820191906000526020600020905b81548152906001019060200180831161107157829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156110fe576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b61116e611ebe565b73ffffffffffffffffffffffffffffffffffffffff1661118c6111f4565b73ffffffffffffffffffffffffffffffffffffffff16146111e2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111d990613813565b60405180910390fd5b6111ec600061274b565b565b600c5481565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b611226611ebe565b73ffffffffffffffffffffffffffffffffffffffff166112446111f4565b73ffffffffffffffffffffffffffffffffffffffff1614806112ba5750611269611ebe565b73ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b6112f9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112f090613813565b60405180910390fd5b80600b908051906020019061130f929190612e32565b5050565b60606003805461132290613b10565b80601f016020809104026020016040519081016040528092919081815260200182805461134e90613b10565b801561139b5780601f106113705761010080835404028352916020019161139b565b820191906000526020600020905b81548152906001019060200180831161137e57829003601f168201915b5050505050905090565b600e5481565b60006113b5611ebe565b9050600f60009054906101000a900460ff1615611407576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113fe90613733565b60405180910390fd5b81611410610c1c565b61141a9190613998565b600d54101561145e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611455906137d3565b60405180910390fd5b600082116114a1576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161149890613773565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff161461150f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161150690613873565b60405180910390fd5b8160141015611553576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161154a90613793565b60405180910390fd5b61155b610c1c565b600c54106115ac5781600110156115a7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161159e906137b3565b60405180910390fd5b611640565b81601410156115f0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115e790613793565b60405180910390fd5b34600e54836115ff91906139ee565b1461163f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161163690613833565b60405180910390fd5b5b61164a8183612811565b5050565b611656611ebe565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156116bb576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600760006116c8611ebe565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611775611ebe565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516117ba91906136f6565b60405180910390a35050565b6117d1848484611fcb565b6117f08373ffffffffffffffffffffffffffffffffffffffff1661282f565b8015611805575061180384848484612852565b155b1561183c576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b6040518060200160405280600081525081565b606061186082611ec6565b61189f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611896906137f3565b60405180910390fd5b6000600a80546118ae90613b10565b9050116118ca57604051806020016040528060008152506118fd565b600a604051806020016040528060008152506040516020016118ed929190613656565b6040516020818303038152906040525b9050919050565b73a5409ec958c83c3f309868babaca7c86dcb077c181565b611924611ebe565b73ffffffffffffffffffffffffffffffffffffffff166119426111f4565b73ffffffffffffffffffffffffffffffffffffffff1614806119b85750611967611ebe565b73ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b6119f7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119ee90613813565b60405180910390fd5b80600e8190555050565b611a09611ebe565b73ffffffffffffffffffffffffffffffffffffffff16611a276111f4565b73ffffffffffffffffffffffffffffffffffffffff161480611a9d5750611a4c611ebe565b73ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b611adc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ad390613813565b60405180910390fd5b611aee611ae7611ebe565b6005612811565b565b600b8054611afd90613b10565b80601f0160208091040260200160405190810160405280929190818152602001828054611b2990613b10565b8015611b765780601f10611b4b57610100808354040283529160200191611b76565b820191906000526020600020905b815481529060010190602001808311611b5957829003601f168201915b505050505081565b60008073a5409ec958c83c3f309868babaca7c86dcb077c190508273ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1663c4552791866040518263ffffffff1660e01b8152600401611be8919061368f565b60206040518083038186803b158015611c0057600080fd5b505afa158015611c14573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611c3891906132c0565b73ffffffffffffffffffffffffffffffffffffffff161415611c5e576001915050611c6c565b611c6884846129b2565b9150505b92915050565b611c7a611ebe565b73ffffffffffffffffffffffffffffffffffffffff16611c986111f4565b73ffffffffffffffffffffffffffffffffffffffff161480611d0e5750611cbd611ebe565b73ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b611d4d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d4490613813565b60405180910390fd5b80600d8190555050565b611d5f611ebe565b73ffffffffffffffffffffffffffffffffffffffff16611d7d6111f4565b73ffffffffffffffffffffffffffffffffffffffff1614611dd3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dca90613813565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611e43576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e3a90613753565b60405180910390fd5b611e4c8161274b565b50565b601481565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600033905090565b600081611ed1611fc6565b11158015611ee0575060005482105b8015611f0d575060046000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600090565b6000611fd6826124bc565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff16611ffd611ebe565b73ffffffffffffffffffffffffffffffffffffffff161480612030575061202f826000015161202a611ebe565b611b7e565b5b80612075575061203e611ebe565b73ffffffffffffffffffffffffffffffffffffffff1661205d84610a95565b73ffffffffffffffffffffffffffffffffffffffff16145b9050806120ae576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff1614612117576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16141561217e576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61218b8585856001612a46565b61219b6000848460000151611f14565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550836004600085815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600085815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600184019050600073ffffffffffffffffffffffffffffffffffffffff166004600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16141561244c5760005481101561244b5782600001516004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555082602001516004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b50828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46124b58585856001612a4c565b5050505050565b6124c4612eb8565b6000829050806124d2611fc6565b111580156124e1575060005481105b15612714576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050806040015161271257600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146125f6578092505050612746565b5b60011561271157818060019003925050600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461270c578092505050612746565b6125f7565b5b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b61282b828260405180602001604052806000815250612a52565b5050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612878611ebe565b8786866040518563ffffffff1660e01b815260040161289a94939291906136aa565b602060405180830381600087803b1580156128b457600080fd5b505af19250505080156128e557506040513d601f19601f820116820180604052508101906128e29190613293565b60015b61295f573d8060008114612915576040519150601f19603f3d011682016040523d82523d6000602084013e61291a565b606091505b50600081511415612957576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b50505050565b50505050565b612a5f8383836001612a64565b505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415612ad1576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000841415612b0c576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b612b196000868387612a46565b83600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600081905060008582019050838015612ce35750612ce28773ffffffffffffffffffffffffffffffffffffffff1661282f565b5b15612da9575b818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612d586000888480600101955088612852565b612d8e576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80821415612ce9578260005414612da457600080fd5b612e15565b5b818060010192508773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a480821415612daa575b816000819055505050612e2b6000868387612a4c565b5050505050565b828054612e3e90613b10565b90600052602060002090601f016020900481019282612e605760008555612ea7565b82601f10612e7957805160ff1916838001178555612ea7565b82800160010185558215612ea7579182015b82811115612ea6578251825591602001919060010190612e8b565b5b509050612eb49190612efb565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b80821115612f14576000816000905550600101612efc565b5090565b6000612f2b612f26846138d3565b6138ae565b905082815260208101848484011115612f4757612f46613c05565b5b612f52848285613ace565b509392505050565b6000612f6d612f6884613904565b6138ae565b905082815260208101848484011115612f8957612f88613c05565b5b612f94848285613ace565b509392505050565b600081359050612fab81613e11565b92915050565b600081359050612fc081613e28565b92915050565b600081359050612fd581613e3f565b92915050565b600081519050612fea81613e3f565b92915050565b600082601f83011261300557613004613c00565b5b8135613015848260208601612f18565b91505092915050565b60008151905061302d81613e56565b92915050565b600082601f83011261304857613047613c00565b5b8135613058848260208601612f5a565b91505092915050565b60008135905061307081613e6d565b92915050565b60006020828403121561308c5761308b613c0f565b5b600061309a84828501612f9c565b91505092915050565b600080604083850312156130ba576130b9613c0f565b5b60006130c885828601612f9c565b92505060206130d985828601612f9c565b9150509250929050565b6000806000606084860312156130fc576130fb613c0f565b5b600061310a86828701612f9c565b935050602061311b86828701612f9c565b925050604061312c86828701613061565b9150509250925092565b600080600080608085870312156131505761314f613c0f565b5b600061315e87828801612f9c565b945050602061316f87828801612f9c565b935050604061318087828801613061565b925050606085013567ffffffffffffffff8111156131a1576131a0613c0a565b5b6131ad87828801612ff0565b91505092959194509250565b600080604083850312156131d0576131cf613c0f565b5b60006131de85828601612f9c565b92505060206131ef85828601612fb1565b9150509250929050565b600080604083850312156132105761320f613c0f565b5b600061321e85828601612f9c565b925050602061322f85828601613061565b9150509250929050565b60006020828403121561324f5761324e613c0f565b5b600061325d84828501612fb1565b91505092915050565b60006020828403121561327c5761327b613c0f565b5b600061328a84828501612fc6565b91505092915050565b6000602082840312156132a9576132a8613c0f565b5b60006132b784828501612fdb565b91505092915050565b6000602082840312156132d6576132d5613c0f565b5b60006132e48482850161301e565b91505092915050565b60006020828403121561330357613302613c0f565b5b600082013567ffffffffffffffff81111561332157613320613c0a565b5b61332d84828501613033565b91505092915050565b60006020828403121561334c5761334b613c0f565b5b600061335a84828501613061565b91505092915050565b61336c81613a48565b82525050565b61337b81613a5a565b82525050565b600061338c8261394a565b6133968185613960565b93506133a6818560208601613add565b6133af81613c14565b840191505092915050565b60006133c582613955565b6133cf818561397c565b93506133df818560208601613add565b6133e881613c14565b840191505092915050565b60006133fe82613955565b613408818561398d565b9350613418818560208601613add565b80840191505092915050565b6000815461343181613b10565b61343b818661398d565b9450600182166000811461345657600181146134675761349a565b60ff1983168652818601935061349a565b61347085613935565b60005b8381101561349257815481890152600182019150602081019050613473565b838801955050505b50505092915050565b60006134b060068361397c565b91506134bb82613c25565b602082019050919050565b60006134d360268361397c565b91506134de82613c4e565b604082019050919050565b60006134f6600a8361397c565b915061350182613c9d565b602082019050919050565b600061351960168361397c565b915061352482613cc6565b602082019050919050565b600061353c60168361397c565b915061354782613cef565b602082019050919050565b600061355f60128361397c565b915061356a82613d18565b602082019050919050565b600061358260158361397c565b915061358d82613d41565b602082019050919050565b60006135a560208361397c565b91506135b082613d6a565b602082019050919050565b60006135c860168361397c565b91506135d382613d93565b602082019050919050565b60006135eb600083613971565b91506135f682613dbc565b600082019050919050565b600061360e600e8361397c565b915061361982613dbf565b602082019050919050565b6000613631600c8361397c565b915061363c82613de8565b602082019050919050565b61365081613ac4565b82525050565b60006136628285613424565b915061366e82846133f3565b91508190509392505050565b6000613685826135de565b9150819050919050565b60006020820190506136a46000830184613363565b92915050565b60006080820190506136bf6000830187613363565b6136cc6020830186613363565b6136d96040830185613647565b81810360608301526136eb8184613381565b905095945050505050565b600060208201905061370b6000830184613372565b92915050565b6000602082019050818103600083015261372b81846133ba565b905092915050565b6000602082019050818103600083015261374c816134a3565b9050919050565b6000602082019050818103600083015261376c816134c6565b9050919050565b6000602082019050818103600083015261378c816134e9565b9050919050565b600060208201905081810360008301526137ac8161350c565b9050919050565b600060208201905081810360008301526137cc8161352f565b9050919050565b600060208201905081810360008301526137ec81613552565b9050919050565b6000602082019050818103600083015261380c81613575565b9050919050565b6000602082019050818103600083015261382c81613598565b9050919050565b6000602082019050818103600083015261384c816135bb565b9050919050565b6000602082019050818103600083015261386c81613601565b9050919050565b6000602082019050818103600083015261388c81613624565b9050919050565b60006020820190506138a86000830184613647565b92915050565b60006138b86138c9565b90506138c48282613b42565b919050565b6000604051905090565b600067ffffffffffffffff8211156138ee576138ed613bd1565b5b6138f782613c14565b9050602081019050919050565b600067ffffffffffffffff82111561391f5761391e613bd1565b5b61392882613c14565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b60006139a382613ac4565b91506139ae83613ac4565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156139e3576139e2613b73565b5b828201905092915050565b60006139f982613ac4565b9150613a0483613ac4565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613a3d57613a3c613b73565b5b828202905092915050565b6000613a5382613aa4565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6000613a9d82613a48565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015613afb578082015181840152602081019050613ae0565b83811115613b0a576000848401525b50505050565b60006002820490506001821680613b2857607f821691505b60208210811415613b3c57613b3b613ba2565b5b50919050565b613b4b82613c14565b810181811067ffffffffffffffff82111715613b6a57613b69613bd1565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f5061757365640000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4e6f2030206d696e747300000000000000000000000000000000000000000000600082015250565b7f457863657373206d617820706572207061696420747800000000000000000000600082015250565b7f457863657373206d617820706572206672656520747800000000000000000000600082015250565b7f45786365656473206d617820737570706c790000000000000000000000000000600082015250565b7f546f6b656e20646f6573206e6f742065786973742e0000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f496e76616c69642066756e64732070726f766964656400000000000000000000600082015250565b50565b7f4661696c656420746f2073656e64000000000000000000000000000000000000600082015250565b7f4e6f20636f6e7472616374730000000000000000000000000000000000000000600082015250565b613e1a81613a48565b8114613e2557600080fd5b50565b613e3181613a5a565b8114613e3c57600080fd5b50565b613e4881613a66565b8114613e5357600080fd5b50565b613e5f81613a92565b8114613e6a57600080fd5b50565b613e7681613ac4565b8114613e8157600080fd5b5056fea2646970667358221220d28dfd0c3237b6f3c78b054293f62e240bbce6d35b11058ae0361c4b6c8a266b64736f6c6343000807003368747470733a2f2f676174657761792e70696e6174612e636c6f75642f697066732f516d646b44485868545a6a50716d6e533457623571766e38354b3164533531564c6b75317070666f4a5773524c70

Deployed Bytecode

0x60806040526004361061020f5760003560e01c80638069876d11610118578063c87b56dd116100a0578063e8a3d4851161006f578063e8a3d48514610744578063e985e9c51461076f578063edbb99bf146107ac578063f2fde38b146107d5578063f43a22dc146107fe5761020f565b8063c87b56dd1461069c578063cd7c0326146106d9578063db4a0f6114610704578063df56aaaf1461072d5761020f565b8063a035b1fe116100e7578063a035b1fe146105d8578063a0712d6814610603578063a22cb4651461061f578063b88d4fde14610648578063c6682862146106715761020f565b80638069876d1461052e5780638da5cb5b14610559578063938e3d7b1461058457806395d89b41146105ad5761020f565b80633d2abb991161019b5780635c975abb1161016a5780635c975abb146104475780636352211e146104725780636c0360eb146104af57806370a08231146104da578063715018a6146105175761020f565b80633d2abb99146103a157806342842e0e146103ca578063463fff79146103f357806355f804b31461041e5761020f565b8063095ea7b3116101e2578063095ea7b3146102e257806318160ddd1461030b57806323b872dd1461033657806332cb6b0c1461035f5780633ccfd60b1461038a5761020f565b806301ffc9a71461021457806302329a291461025157806306fdde031461027a578063081812fc146102a5575b600080fd5b34801561022057600080fd5b5061023b60048036038101906102369190613266565b610829565b60405161024891906136f6565b60405180910390f35b34801561025d57600080fd5b5061027860048036038101906102739190613239565b61090b565b005b34801561028657600080fd5b5061028f610a03565b60405161029c9190613711565b60405180910390f35b3480156102b157600080fd5b506102cc60048036038101906102c79190613336565b610a95565b6040516102d9919061368f565b60405180910390f35b3480156102ee57600080fd5b50610309600480360381019061030491906131f9565b610b11565b005b34801561031757600080fd5b50610320610c1c565b60405161032d9190613893565b60405180910390f35b34801561034257600080fd5b5061035d600480360381019061035891906130e3565b610c33565b005b34801561036b57600080fd5b50610374610c43565b6040516103819190613893565b60405180910390f35b34801561039657600080fd5b5061039f610c49565b005b3480156103ad57600080fd5b506103c860048036038101906103c39190613336565b610de0565b005b3480156103d657600080fd5b506103f160048036038101906103ec91906130e3565b610ec5565b005b3480156103ff57600080fd5b50610408610ee5565b6040516104159190613893565b60405180910390f35b34801561042a57600080fd5b50610445600480360381019061044091906132ed565b610eea565b005b34801561045357600080fd5b5061045c610fdf565b60405161046991906136f6565b60405180910390f35b34801561047e57600080fd5b5061049960048036038101906104949190613336565b610ff2565b6040516104a6919061368f565b60405180910390f35b3480156104bb57600080fd5b506104c4611008565b6040516104d19190613711565b60405180910390f35b3480156104e657600080fd5b5061050160048036038101906104fc9190613076565b611096565b60405161050e9190613893565b60405180910390f35b34801561052357600080fd5b5061052c611166565b005b34801561053a57600080fd5b506105436111ee565b6040516105509190613893565b60405180910390f35b34801561056557600080fd5b5061056e6111f4565b60405161057b919061368f565b60405180910390f35b34801561059057600080fd5b506105ab60048036038101906105a691906132ed565b61121e565b005b3480156105b957600080fd5b506105c2611313565b6040516105cf9190613711565b60405180910390f35b3480156105e457600080fd5b506105ed6113a5565b6040516105fa9190613893565b60405180910390f35b61061d60048036038101906106189190613336565b6113ab565b005b34801561062b57600080fd5b50610646600480360381019061064191906131b9565b61164e565b005b34801561065457600080fd5b5061066f600480360381019061066a9190613136565b6117c6565b005b34801561067d57600080fd5b50610686611842565b6040516106939190613711565b60405180910390f35b3480156106a857600080fd5b506106c360048036038101906106be9190613336565b611855565b6040516106d09190613711565b60405180910390f35b3480156106e557600080fd5b506106ee611904565b6040516106fb919061368f565b60405180910390f35b34801561071057600080fd5b5061072b60048036038101906107269190613336565b61191c565b005b34801561073957600080fd5b50610742611a01565b005b34801561075057600080fd5b50610759611af0565b6040516107669190613711565b60405180910390f35b34801561077b57600080fd5b50610796600480360381019061079191906130a3565b611b7e565b6040516107a391906136f6565b60405180910390f35b3480156107b857600080fd5b506107d360048036038101906107ce9190613336565b611c72565b005b3480156107e157600080fd5b506107fc60048036038101906107f79190613076565b611d57565b005b34801561080a57600080fd5b50610813611e4f565b6040516108209190613893565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806108f457507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610904575061090382611e54565b5b9050919050565b610913611ebe565b73ffffffffffffffffffffffffffffffffffffffff166109316111f4565b73ffffffffffffffffffffffffffffffffffffffff1614806109a75750610956611ebe565b73ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b6109e6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109dd90613813565b60405180910390fd5b80600f60006101000a81548160ff02191690831515021790555050565b606060028054610a1290613b10565b80601f0160208091040260200160405190810160405280929190818152602001828054610a3e90613b10565b8015610a8b5780601f10610a6057610100808354040283529160200191610a8b565b820191906000526020600020905b815481529060010190602001808311610a6e57829003601f168201915b5050505050905090565b6000610aa082611ec6565b610ad6576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610b1c82610ff2565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610b84576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610ba3611ebe565b73ffffffffffffffffffffffffffffffffffffffff1614158015610bd55750610bd381610bce611ebe565b611b7e565b155b15610c0c576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610c17838383611f14565b505050565b6000610c26611fc6565b6001546000540303905090565b610c3e838383611fcb565b505050565b600d5481565b610c51611ebe565b73ffffffffffffffffffffffffffffffffffffffff16610c6f6111f4565b73ffffffffffffffffffffffffffffffffffffffff161480610ce55750610c94611ebe565b73ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b610d24576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d1b90613813565b60405180910390fd5b60004790506000610d33611ebe565b73ffffffffffffffffffffffffffffffffffffffff1682604051610d569061367a565b60006040518083038185875af1925050503d8060008114610d93576040519150601f19603f3d011682016040523d82523d6000602084013e610d98565b606091505b5050905080610ddc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dd390613853565b60405180910390fd5b5050565b610de8611ebe565b73ffffffffffffffffffffffffffffffffffffffff16610e066111f4565b73ffffffffffffffffffffffffffffffffffffffff161480610e7c5750610e2b611ebe565b73ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b610ebb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eb290613813565b60405180910390fd5b80600c8190555050565b610ee0838383604051806020016040528060008152506117c6565b505050565b600181565b610ef2611ebe565b73ffffffffffffffffffffffffffffffffffffffff16610f106111f4565b73ffffffffffffffffffffffffffffffffffffffff161480610f865750610f35611ebe565b73ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b610fc5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fbc90613813565b60405180910390fd5b80600a9080519060200190610fdb929190612e32565b5050565b600f60009054906101000a900460ff1681565b6000610ffd826124bc565b600001519050919050565b600a805461101590613b10565b80601f016020809104026020016040519081016040528092919081815260200182805461104190613b10565b801561108e5780601f106110635761010080835404028352916020019161108e565b820191906000526020600020905b81548152906001019060200180831161107157829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156110fe576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b61116e611ebe565b73ffffffffffffffffffffffffffffffffffffffff1661118c6111f4565b73ffffffffffffffffffffffffffffffffffffffff16146111e2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111d990613813565b60405180910390fd5b6111ec600061274b565b565b600c5481565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b611226611ebe565b73ffffffffffffffffffffffffffffffffffffffff166112446111f4565b73ffffffffffffffffffffffffffffffffffffffff1614806112ba5750611269611ebe565b73ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b6112f9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112f090613813565b60405180910390fd5b80600b908051906020019061130f929190612e32565b5050565b60606003805461132290613b10565b80601f016020809104026020016040519081016040528092919081815260200182805461134e90613b10565b801561139b5780601f106113705761010080835404028352916020019161139b565b820191906000526020600020905b81548152906001019060200180831161137e57829003601f168201915b5050505050905090565b600e5481565b60006113b5611ebe565b9050600f60009054906101000a900460ff1615611407576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113fe90613733565b60405180910390fd5b81611410610c1c565b61141a9190613998565b600d54101561145e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611455906137d3565b60405180910390fd5b600082116114a1576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161149890613773565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff161461150f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161150690613873565b60405180910390fd5b8160141015611553576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161154a90613793565b60405180910390fd5b61155b610c1c565b600c54106115ac5781600110156115a7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161159e906137b3565b60405180910390fd5b611640565b81601410156115f0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115e790613793565b60405180910390fd5b34600e54836115ff91906139ee565b1461163f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161163690613833565b60405180910390fd5b5b61164a8183612811565b5050565b611656611ebe565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156116bb576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600760006116c8611ebe565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611775611ebe565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516117ba91906136f6565b60405180910390a35050565b6117d1848484611fcb565b6117f08373ffffffffffffffffffffffffffffffffffffffff1661282f565b8015611805575061180384848484612852565b155b1561183c576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b6040518060200160405280600081525081565b606061186082611ec6565b61189f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611896906137f3565b60405180910390fd5b6000600a80546118ae90613b10565b9050116118ca57604051806020016040528060008152506118fd565b600a604051806020016040528060008152506040516020016118ed929190613656565b6040516020818303038152906040525b9050919050565b73a5409ec958c83c3f309868babaca7c86dcb077c181565b611924611ebe565b73ffffffffffffffffffffffffffffffffffffffff166119426111f4565b73ffffffffffffffffffffffffffffffffffffffff1614806119b85750611967611ebe565b73ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b6119f7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119ee90613813565b60405180910390fd5b80600e8190555050565b611a09611ebe565b73ffffffffffffffffffffffffffffffffffffffff16611a276111f4565b73ffffffffffffffffffffffffffffffffffffffff161480611a9d5750611a4c611ebe565b73ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b611adc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ad390613813565b60405180910390fd5b611aee611ae7611ebe565b6005612811565b565b600b8054611afd90613b10565b80601f0160208091040260200160405190810160405280929190818152602001828054611b2990613b10565b8015611b765780601f10611b4b57610100808354040283529160200191611b76565b820191906000526020600020905b815481529060010190602001808311611b5957829003601f168201915b505050505081565b60008073a5409ec958c83c3f309868babaca7c86dcb077c190508273ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1663c4552791866040518263ffffffff1660e01b8152600401611be8919061368f565b60206040518083038186803b158015611c0057600080fd5b505afa158015611c14573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611c3891906132c0565b73ffffffffffffffffffffffffffffffffffffffff161415611c5e576001915050611c6c565b611c6884846129b2565b9150505b92915050565b611c7a611ebe565b73ffffffffffffffffffffffffffffffffffffffff16611c986111f4565b73ffffffffffffffffffffffffffffffffffffffff161480611d0e5750611cbd611ebe565b73ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b611d4d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d4490613813565b60405180910390fd5b80600d8190555050565b611d5f611ebe565b73ffffffffffffffffffffffffffffffffffffffff16611d7d6111f4565b73ffffffffffffffffffffffffffffffffffffffff1614611dd3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dca90613813565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611e43576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e3a90613753565b60405180910390fd5b611e4c8161274b565b50565b601481565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600033905090565b600081611ed1611fc6565b11158015611ee0575060005482105b8015611f0d575060046000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600090565b6000611fd6826124bc565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff16611ffd611ebe565b73ffffffffffffffffffffffffffffffffffffffff161480612030575061202f826000015161202a611ebe565b611b7e565b5b80612075575061203e611ebe565b73ffffffffffffffffffffffffffffffffffffffff1661205d84610a95565b73ffffffffffffffffffffffffffffffffffffffff16145b9050806120ae576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff1614612117576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16141561217e576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61218b8585856001612a46565b61219b6000848460000151611f14565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550836004600085815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600085815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600184019050600073ffffffffffffffffffffffffffffffffffffffff166004600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16141561244c5760005481101561244b5782600001516004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555082602001516004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b50828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46124b58585856001612a4c565b5050505050565b6124c4612eb8565b6000829050806124d2611fc6565b111580156124e1575060005481105b15612714576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050806040015161271257600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146125f6578092505050612746565b5b60011561271157818060019003925050600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461270c578092505050612746565b6125f7565b5b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b61282b828260405180602001604052806000815250612a52565b5050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612878611ebe565b8786866040518563ffffffff1660e01b815260040161289a94939291906136aa565b602060405180830381600087803b1580156128b457600080fd5b505af19250505080156128e557506040513d601f19601f820116820180604052508101906128e29190613293565b60015b61295f573d8060008114612915576040519150601f19603f3d011682016040523d82523d6000602084013e61291a565b606091505b50600081511415612957576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b50505050565b50505050565b612a5f8383836001612a64565b505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415612ad1576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000841415612b0c576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b612b196000868387612a46565b83600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600081905060008582019050838015612ce35750612ce28773ffffffffffffffffffffffffffffffffffffffff1661282f565b5b15612da9575b818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612d586000888480600101955088612852565b612d8e576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80821415612ce9578260005414612da457600080fd5b612e15565b5b818060010192508773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a480821415612daa575b816000819055505050612e2b6000868387612a4c565b5050505050565b828054612e3e90613b10565b90600052602060002090601f016020900481019282612e605760008555612ea7565b82601f10612e7957805160ff1916838001178555612ea7565b82800160010185558215612ea7579182015b82811115612ea6578251825591602001919060010190612e8b565b5b509050612eb49190612efb565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b80821115612f14576000816000905550600101612efc565b5090565b6000612f2b612f26846138d3565b6138ae565b905082815260208101848484011115612f4757612f46613c05565b5b612f52848285613ace565b509392505050565b6000612f6d612f6884613904565b6138ae565b905082815260208101848484011115612f8957612f88613c05565b5b612f94848285613ace565b509392505050565b600081359050612fab81613e11565b92915050565b600081359050612fc081613e28565b92915050565b600081359050612fd581613e3f565b92915050565b600081519050612fea81613e3f565b92915050565b600082601f83011261300557613004613c00565b5b8135613015848260208601612f18565b91505092915050565b60008151905061302d81613e56565b92915050565b600082601f83011261304857613047613c00565b5b8135613058848260208601612f5a565b91505092915050565b60008135905061307081613e6d565b92915050565b60006020828403121561308c5761308b613c0f565b5b600061309a84828501612f9c565b91505092915050565b600080604083850312156130ba576130b9613c0f565b5b60006130c885828601612f9c565b92505060206130d985828601612f9c565b9150509250929050565b6000806000606084860312156130fc576130fb613c0f565b5b600061310a86828701612f9c565b935050602061311b86828701612f9c565b925050604061312c86828701613061565b9150509250925092565b600080600080608085870312156131505761314f613c0f565b5b600061315e87828801612f9c565b945050602061316f87828801612f9c565b935050604061318087828801613061565b925050606085013567ffffffffffffffff8111156131a1576131a0613c0a565b5b6131ad87828801612ff0565b91505092959194509250565b600080604083850312156131d0576131cf613c0f565b5b60006131de85828601612f9c565b92505060206131ef85828601612fb1565b9150509250929050565b600080604083850312156132105761320f613c0f565b5b600061321e85828601612f9c565b925050602061322f85828601613061565b9150509250929050565b60006020828403121561324f5761324e613c0f565b5b600061325d84828501612fb1565b91505092915050565b60006020828403121561327c5761327b613c0f565b5b600061328a84828501612fc6565b91505092915050565b6000602082840312156132a9576132a8613c0f565b5b60006132b784828501612fdb565b91505092915050565b6000602082840312156132d6576132d5613c0f565b5b60006132e48482850161301e565b91505092915050565b60006020828403121561330357613302613c0f565b5b600082013567ffffffffffffffff81111561332157613320613c0a565b5b61332d84828501613033565b91505092915050565b60006020828403121561334c5761334b613c0f565b5b600061335a84828501613061565b91505092915050565b61336c81613a48565b82525050565b61337b81613a5a565b82525050565b600061338c8261394a565b6133968185613960565b93506133a6818560208601613add565b6133af81613c14565b840191505092915050565b60006133c582613955565b6133cf818561397c565b93506133df818560208601613add565b6133e881613c14565b840191505092915050565b60006133fe82613955565b613408818561398d565b9350613418818560208601613add565b80840191505092915050565b6000815461343181613b10565b61343b818661398d565b9450600182166000811461345657600181146134675761349a565b60ff1983168652818601935061349a565b61347085613935565b60005b8381101561349257815481890152600182019150602081019050613473565b838801955050505b50505092915050565b60006134b060068361397c565b91506134bb82613c25565b602082019050919050565b60006134d360268361397c565b91506134de82613c4e565b604082019050919050565b60006134f6600a8361397c565b915061350182613c9d565b602082019050919050565b600061351960168361397c565b915061352482613cc6565b602082019050919050565b600061353c60168361397c565b915061354782613cef565b602082019050919050565b600061355f60128361397c565b915061356a82613d18565b602082019050919050565b600061358260158361397c565b915061358d82613d41565b602082019050919050565b60006135a560208361397c565b91506135b082613d6a565b602082019050919050565b60006135c860168361397c565b91506135d382613d93565b602082019050919050565b60006135eb600083613971565b91506135f682613dbc565b600082019050919050565b600061360e600e8361397c565b915061361982613dbf565b602082019050919050565b6000613631600c8361397c565b915061363c82613de8565b602082019050919050565b61365081613ac4565b82525050565b60006136628285613424565b915061366e82846133f3565b91508190509392505050565b6000613685826135de565b9150819050919050565b60006020820190506136a46000830184613363565b92915050565b60006080820190506136bf6000830187613363565b6136cc6020830186613363565b6136d96040830185613647565b81810360608301526136eb8184613381565b905095945050505050565b600060208201905061370b6000830184613372565b92915050565b6000602082019050818103600083015261372b81846133ba565b905092915050565b6000602082019050818103600083015261374c816134a3565b9050919050565b6000602082019050818103600083015261376c816134c6565b9050919050565b6000602082019050818103600083015261378c816134e9565b9050919050565b600060208201905081810360008301526137ac8161350c565b9050919050565b600060208201905081810360008301526137cc8161352f565b9050919050565b600060208201905081810360008301526137ec81613552565b9050919050565b6000602082019050818103600083015261380c81613575565b9050919050565b6000602082019050818103600083015261382c81613598565b9050919050565b6000602082019050818103600083015261384c816135bb565b9050919050565b6000602082019050818103600083015261386c81613601565b9050919050565b6000602082019050818103600083015261388c81613624565b9050919050565b60006020820190506138a86000830184613647565b92915050565b60006138b86138c9565b90506138c48282613b42565b919050565b6000604051905090565b600067ffffffffffffffff8211156138ee576138ed613bd1565b5b6138f782613c14565b9050602081019050919050565b600067ffffffffffffffff82111561391f5761391e613bd1565b5b61392882613c14565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b60006139a382613ac4565b91506139ae83613ac4565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156139e3576139e2613b73565b5b828201905092915050565b60006139f982613ac4565b9150613a0483613ac4565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613a3d57613a3c613b73565b5b828202905092915050565b6000613a5382613aa4565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6000613a9d82613a48565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015613afb578082015181840152602081019050613ae0565b83811115613b0a576000848401525b50505050565b60006002820490506001821680613b2857607f821691505b60208210811415613b3c57613b3b613ba2565b5b50919050565b613b4b82613c14565b810181811067ffffffffffffffff82111715613b6a57613b69613bd1565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f5061757365640000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4e6f2030206d696e747300000000000000000000000000000000000000000000600082015250565b7f457863657373206d617820706572207061696420747800000000000000000000600082015250565b7f457863657373206d617820706572206672656520747800000000000000000000600082015250565b7f45786365656473206d617820737570706c790000000000000000000000000000600082015250565b7f546f6b656e20646f6573206e6f742065786973742e0000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f496e76616c69642066756e64732070726f766964656400000000000000000000600082015250565b50565b7f4661696c656420746f2073656e64000000000000000000000000000000000000600082015250565b7f4e6f20636f6e7472616374730000000000000000000000000000000000000000600082015250565b613e1a81613a48565b8114613e2557600080fd5b50565b613e3181613a5a565b8114613e3c57600080fd5b50565b613e4881613a66565b8114613e5357600080fd5b50565b613e5f81613a92565b8114613e6a57600080fd5b50565b613e7681613ac4565b8114613e8157600080fd5b5056fea2646970667358221220d28dfd0c3237b6f3c78b054293f62e240bbce6d35b11058ae0361c4b6c8a266b64736f6c63430008070033

Deployed Bytecode Sourcemap

45896:3241:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28429:305;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48155:81;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;31814:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33317:204;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32880:371;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;27678:303;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34174:170;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;46466:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47845:209;;;;;;;;;;;;;:::i;:::-;;48686:121;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;34415:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;46327:43;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48244:100;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;46547:25;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31623:124;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45951:106;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28798:206;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2626:103;;;;;;;;;;;;;:::i;:::-;;46377:36;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1975:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48352:116;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;31983:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46504:34;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46645:733;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;33593:279;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;34671:369;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;46181:41;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48815:319;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46229:89;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48476:91;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;48062:85;;;;;;;;;;;;;:::i;:::-;;46064:110;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47392:445;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48575:103;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;2884:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;46420:39;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28429:305;28531:4;28583:25;28568:40;;;:11;:40;;;;:105;;;;28640:33;28625:48;;;:11;:48;;;;28568:105;:158;;;;28690:36;28714:11;28690:23;:36::i;:::-;28568:158;28548:178;;28429:305;;;:::o;48155:81::-;24908:12;:10;:12::i;:::-;24897:23;;:7;:5;:7::i;:::-;:23;;;:49;;;;24934:12;:10;:12::i;:::-;24924:22;;:6;;;;;;;;;;;:22;;;24897:49;24889:94;;;;;;;;;;;;:::i;:::-;;;;;;;;;48222:6:::1;48213;;:15;;;;;;;;;;;;;;;;;;48155:81:::0;:::o;31814:100::-;31868:13;31901:5;31894:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31814:100;:::o;33317:204::-;33385:7;33410:16;33418:7;33410;:16::i;:::-;33405:64;;33435:34;;;;;;;;;;;;;;33405:64;33489:15;:24;33505:7;33489:24;;;;;;;;;;;;;;;;;;;;;33482:31;;33317:204;;;:::o;32880:371::-;32953:13;32969:24;32985:7;32969:15;:24::i;:::-;32953:40;;33014:5;33008:11;;:2;:11;;;33004:48;;;33028:24;;;;;;;;;;;;;;33004:48;33085:5;33069:21;;:12;:10;:12::i;:::-;:21;;;;:63;;;;;33095:37;33112:5;33119:12;:10;:12::i;:::-;33095:16;:37::i;:::-;33094:38;33069:63;33065:138;;;33156:35;;;;;;;;;;;;;;33065:138;33215:28;33224:2;33228:7;33237:5;33215:8;:28::i;:::-;32942:309;32880:371;;:::o;27678:303::-;27722:7;27947:15;:13;:15::i;:::-;27932:12;;27916:13;;:28;:46;27909:53;;27678:303;:::o;34174:170::-;34308:28;34318:4;34324:2;34328:7;34308:9;:28::i;:::-;34174:170;;;:::o;46466:31::-;;;;:::o;47845:209::-;24908:12;:10;:12::i;:::-;24897:23;;:7;:5;:7::i;:::-;:23;;;:49;;;;24934:12;:10;:12::i;:::-;24924:22;;:6;;;;;;;;;;;:22;;;24897:49;24889:94;;;;;;;;;;;;:::i;:::-;;;;;;;;;47895:15:::1;47913:21;47895:39;;47946:12;47964;:10;:12::i;:::-;:17;;47989:7;47964:37;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47945:56;;;48020:7;48012:34;;;;;;;;;;;;:::i;:::-;;;;;;;;;47884:170;;47845:209::o:0;48686:121::-;24908:12;:10;:12::i;:::-;24897:23;;:7;:5;:7::i;:::-;:23;;;:49;;;;24934:12;:10;:12::i;:::-;24924:22;;:6;;;;;;;;;;;:22;;;24897:49;24889:94;;;;;;;;;;;;:::i;:::-;;;;;;;;;48786:13:::1;48768:15;:31;;;;48686:121:::0;:::o;34415:185::-;34553:39;34570:4;34576:2;34580:7;34553:39;;;;;;;;;;;;:16;:39::i;:::-;34415:185;;;:::o;46327:43::-;46369:1;46327:43;:::o;48244:100::-;24908:12;:10;:12::i;:::-;24897:23;;:7;:5;:7::i;:::-;:23;;;:49;;;;24934:12;:10;:12::i;:::-;24924:22;;:6;;;;;;;;;;;:22;;;24897:49;24889:94;;;;;;;;;;;;:::i;:::-;;;;;;;;;48328:8:::1;48318:7;:18;;;;;;;;;;;;:::i;:::-;;48244:100:::0;:::o;46547:25::-;;;;;;;;;;;;;:::o;31623:124::-;31687:7;31714:20;31726:7;31714:11;:20::i;:::-;:25;;;31707:32;;31623:124;;;:::o;45951:106::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;28798:206::-;28862:7;28903:1;28886:19;;:5;:19;;;28882:60;;;28914:28;;;;;;;;;;;;;;28882:60;28968:12;:19;28981:5;28968:19;;;;;;;;;;;;;;;:27;;;;;;;;;;;;28960:36;;28953:43;;28798:206;;;:::o;2626:103::-;2206:12;:10;:12::i;:::-;2195:23;;:7;:5;:7::i;:::-;:23;;;2187:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2691:30:::1;2718:1;2691:18;:30::i;:::-;2626:103::o:0;46377:36::-;;;;:::o;1975:87::-;2021:7;2048:6;;;;;;;;;;;2041:13;;1975:87;:::o;48352:116::-;24908:12;:10;:12::i;:::-;24897:23;;:7;:5;:7::i;:::-;:23;;;:49;;;;24934:12;:10;:12::i;:::-;24924:22;;:6;;;;;;;;;;;:22;;;24897:49;24889:94;;;;;;;;;;;;:::i;:::-;;;;;;;;;48448:12:::1;48434:11;:26;;;;;;;;;;;;:::i;:::-;;48352:116:::0;:::o;31983:104::-;32039:13;32072:7;32065:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31983:104;:::o;46504:34::-;;;;:::o;46645:733::-;46704:15;46722:12;:10;:12::i;:::-;46704:30;;46754:6;;;;;;;;;;;46753:7;46745:26;;;;;;;;;;;;:::i;:::-;;;;;;;;;46820:7;46804:13;:11;:13::i;:::-;:23;;;;:::i;:::-;46790:10;;:37;;46782:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;46879:1;46869:7;:11;46861:34;;;;;;;;;;;;:::i;:::-;;;;;;;;;46927:7;46914:20;;:9;:20;;;46906:45;;;;;;;;;;;;:::i;:::-;;;;;;;;;46984:7;46457:2;46970:21;;46962:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;47060:13;:11;:13::i;:::-;47041:15;;:32;47038:291;;47116:7;46369:1;47097:26;;47089:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;47038:291;;;47204:7;46457:2;47190:21;;47182:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;47281:9;47272:5;;47262:7;:15;;;;:::i;:::-;:28;47254:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;47038:291;47343:27;47353:7;47362;47343:9;:27::i;:::-;46693:685;46645:733;:::o;33593:279::-;33696:12;:10;:12::i;:::-;33684:24;;:8;:24;;;33680:54;;;33717:17;;;;;;;;;;;;;;33680:54;33792:8;33747:18;:32;33766:12;:10;:12::i;:::-;33747:32;;;;;;;;;;;;;;;:42;33780:8;33747:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;33845:8;33816:48;;33831:12;:10;:12::i;:::-;33816:48;;;33855:8;33816:48;;;;;;:::i;:::-;;;;;;;;33593:279;;:::o;34671:369::-;34838:28;34848:4;34854:2;34858:7;34838:9;:28::i;:::-;34881:15;:2;:13;;;:15::i;:::-;:76;;;;;34901:56;34932:4;34938:2;34942:7;34951:5;34901:30;:56::i;:::-;34900:57;34881:76;34877:156;;;34981:40;;;;;;;;;;;;;;34877:156;34671:369;;;;:::o;46181:41::-;;;;;;;;;;;;;;:::o;48815:319::-;48881:13;48915:17;48923:8;48915:7;:17::i;:::-;48907:51;;;;;;;;;;;;:::i;:::-;;;;;;;;;49000:1;48982:7;48976:21;;;;;:::i;:::-;;;:25;:150;;;;;;;;;;;;;;;;;49058:7;49082:13;;;;;;;;;;;;49025:85;;;;;;;;;:::i;:::-;;;;;;;;;;;;;48976:150;48969:157;;48815:319;;;:::o;46229:89::-;46276:42;46229:89;:::o;48476:91::-;24908:12;:10;:12::i;:::-;24897:23;;:7;:5;:7::i;:::-;:23;;;:49;;;;24934:12;:10;:12::i;:::-;24924:22;;:6;;;;;;;;;;;:22;;;24897:49;24889:94;;;;;;;;;;;;:::i;:::-;;;;;;;;;48551:8:::1;48543:5;:16;;;;48476:91:::0;:::o;48062:85::-;24908:12;:10;:12::i;:::-;24897:23;;:7;:5;:7::i;:::-;:23;;;:49;;;;24934:12;:10;:12::i;:::-;24924:22;;:6;;;;;;;;;;;:22;;;24897:49;24889:94;;;;;;;;;;;;:::i;:::-;;;;;;;;;48113:26:::1;48123:12;:10;:12::i;:::-;48137:1;48113:9;:26::i;:::-;48062:85::o:0;46064:110::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;47392:445::-;47517:4;47602:27;46276:42;47602:65;;47723:8;47682:49;;47690:13;:21;;;47712:5;47690:28;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;47682:49;;;47678:93;;;47755:4;47748:11;;;;;47678:93;47790:39;47813:5;47820:8;47790:22;:39::i;:::-;47783:46;;;47392:445;;;;;:::o;48575:103::-;24908:12;:10;:12::i;:::-;24897:23;;:7;:5;:7::i;:::-;:23;;;:49;;;;24934:12;:10;:12::i;:::-;24924:22;;:6;;;;;;;;;;;:22;;;24897:49;24889:94;;;;;;;;;;;;:::i;:::-;;;;;;;;;48661:9:::1;48648:10;:22;;;;48575:103:::0;:::o;2884:201::-;2206:12;:10;:12::i;:::-;2195:23;;:7;:5;:7::i;:::-;:23;;;2187:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2993:1:::1;2973:22;;:8;:22;;;;2965:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;3049:28;3068:8;3049:18;:28::i;:::-;2884:201:::0;:::o;46420:39::-;46457:2;46420:39;:::o;23529:157::-;23614:4;23653:25;23638:40;;;:11;:40;;;;23631:47;;23529:157;;;:::o;716:98::-;769:7;796:10;789:17;;716:98;:::o;35295:187::-;35352:4;35395:7;35376:15;:13;:15::i;:::-;:26;;:53;;;;;35416:13;;35406:7;:23;35376:53;:98;;;;;35447:11;:20;35459:7;35447:20;;;;;;;;;;;:27;;;;;;;;;;;;35446:28;35376:98;35369:105;;35295:187;;;:::o;42906:196::-;43048:2;43021:15;:24;43037:7;43021:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;43086:7;43082:2;43066:28;;43075:5;43066:28;;;;;;;;;;;;42906:196;;;:::o;27402:92::-;27458:7;27402:92;:::o;38408:2112::-;38523:35;38561:20;38573:7;38561:11;:20::i;:::-;38523:58;;38594:22;38636:13;:18;;;38620:34;;:12;:10;:12::i;:::-;:34;;;:101;;;;38671:50;38688:13;:18;;;38708:12;:10;:12::i;:::-;38671:16;:50::i;:::-;38620:101;:154;;;;38762:12;:10;:12::i;:::-;38738:36;;:20;38750:7;38738:11;:20::i;:::-;:36;;;38620:154;38594:181;;38793:17;38788:66;;38819:35;;;;;;;;;;;;;;38788:66;38891:4;38869:26;;:13;:18;;;:26;;;38865:67;;38904:28;;;;;;;;;;;;;;38865:67;38961:1;38947:16;;:2;:16;;;38943:52;;;38972:23;;;;;;;;;;;;;;38943:52;39008:43;39030:4;39036:2;39040:7;39049:1;39008:21;:43::i;:::-;39116:49;39133:1;39137:7;39146:13;:18;;;39116:8;:49::i;:::-;39491:1;39461:12;:18;39474:4;39461:18;;;;;;;;;;;;;;;:26;;;:31;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39535:1;39507:12;:16;39520:2;39507:16;;;;;;;;;;;;;;;:24;;;:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39581:2;39553:11;:20;39565:7;39553:20;;;;;;;;;;;:25;;;:30;;;;;;;;;;;;;;;;;;39643:15;39598:11;:20;39610:7;39598:20;;;;;;;;;;;:35;;;:61;;;;;;;;;;;;;;;;;;39911:19;39943:1;39933:7;:11;39911:33;;40004:1;39963:43;;:11;:24;39975:11;39963:24;;;;;;;;;;;:29;;;;;;;;;;;;:43;;;39959:445;;;40188:13;;40174:11;:27;40170:219;;;40258:13;:18;;;40226:11;:24;40238:11;40226:24;;;;;;;;;;;:29;;;:50;;;;;;;;;;;;;;;;;;40341:13;:28;;;40299:11;:24;40311:11;40299:24;;;;;;;;;;;:39;;;:70;;;;;;;;;;;;;;;;;;40170:219;39959:445;39436:979;40451:7;40447:2;40432:27;;40441:4;40432:27;;;;;;;;;;;;40470:42;40491:4;40497:2;40501:7;40510:1;40470:20;:42::i;:::-;38512:2008;;38408:2112;;;:::o;30453:1108::-;30514:21;;:::i;:::-;30548:12;30563:7;30548:22;;30631:4;30612:15;:13;:15::i;:::-;:23;;:47;;;;;30646:13;;30639:4;:20;30612:47;30608:886;;;30680:31;30714:11;:17;30726:4;30714:17;;;;;;;;;;;30680:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30755:9;:16;;;30750:729;;30826:1;30800:28;;:9;:14;;;:28;;;30796:101;;30864:9;30857:16;;;;;;30796:101;31199:261;31206:4;31199:261;;;31239:6;;;;;;;;31284:11;:17;31296:4;31284:17;;;;;;;;;;;31272:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31358:1;31332:28;;:9;:14;;;:28;;;31328:109;;31400:9;31393:16;;;;;;31328:109;31199:261;;;30750:729;30661:833;30608:886;31522:31;;;;;;;;;;;;;;30453:1108;;;;:::o;3245:191::-;3319:16;3338:6;;;;;;;;;;;3319:25;;3364:8;3355:6;;:17;;;;;;;;;;;;;;;;;;3419:8;3388:40;;3409:8;3388:40;;;;;;;;;;;;3308:128;3245:191;:::o;35490:104::-;35559:27;35569:2;35573:8;35559:27;;;;;;;;;;;;:9;:27::i;:::-;35490:104;;:::o;13306:326::-;13366:4;13623:1;13601:7;:19;;;:23;13594:30;;13306:326;;;:::o;43594:667::-;43757:4;43794:2;43778:36;;;43815:12;:10;:12::i;:::-;43829:4;43835:7;43844:5;43778:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;43774:480;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44029:1;44012:6;:13;:18;44008:235;;;44058:40;;;;;;;;;;;;;;44008:235;44201:6;44195:13;44186:6;44182:2;44178:15;44171:38;43774:480;43907:45;;;43897:55;;;:6;:55;;;;43890:62;;;43594:667;;;;;;:::o;33943:164::-;34040:4;34064:18;:25;34083:5;34064:25;;;;;;;;;;;;;;;:35;34090:8;34064:35;;;;;;;;;;;;;;;;;;;;;;;;;34057:42;;33943:164;;;;:::o;44909:159::-;;;;;:::o;45727:158::-;;;;;:::o;35957:163::-;36080:32;36086:2;36090:8;36100:5;36107:4;36080:5;:32::i;:::-;35957:163;;;:::o;36379:1775::-;36518:20;36541:13;;36518:36;;36583:1;36569:16;;:2;:16;;;36565:48;;;36594:19;;;;;;;;;;;;;;36565:48;36640:1;36628:8;:13;36624:44;;;36650:18;;;;;;;;;;;;;;36624:44;36681:61;36711:1;36715:2;36719:12;36733:8;36681:21;:61::i;:::-;37054:8;37019:12;:16;37032:2;37019:16;;;;;;;;;;;;;;;:24;;;:44;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37118:8;37078:12;:16;37091:2;37078:16;;;;;;;;;;;;;;;:29;;;:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37177:2;37144:11;:25;37156:12;37144:25;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;37244:15;37194:11;:25;37206:12;37194:25;;;;;;;;;;;:40;;;:66;;;;;;;;;;;;;;;;;;37277:20;37300:12;37277:35;;37327:11;37356:8;37341:12;:23;37327:37;;37385:4;:23;;;;;37393:15;:2;:13;;;:15::i;:::-;37385:23;37381:641;;;37429:314;37485:12;37481:2;37460:38;;37477:1;37460:38;;;;;;;;;;;;37526:69;37565:1;37569:2;37573:14;;;;;;37589:5;37526:30;:69::i;:::-;37521:174;;37631:40;;;;;;;;;;;;;;37521:174;37738:3;37722:12;:19;;37429:314;;37824:12;37807:13;;:29;37803:43;;37838:8;;;37803:43;37381:641;;;37887:120;37943:14;;;;;;37939:2;37918:40;;37935:1;37918:40;;;;;;;;;;;;38002:3;37986:12;:19;;37887:120;;37381:641;38052:12;38036:13;:28;;;;36994:1082;;38086:60;38115:1;38119:2;38123:12;38137:8;38086:20;:60::i;:::-;36507:1647;36379:1775;;;;:::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:::-;13459:3;13480:67;13544:2;13539:3;13480:67;:::i;:::-;13473:74;;13556:93;13645:3;13556:93;:::i;:::-;13674:2;13669:3;13665:12;13658:19;;13317:366;;;:::o;13689:398::-;13848:3;13869:83;13950:1;13945:3;13869:83;:::i;:::-;13862:90;;13961:93;14050:3;13961:93;:::i;:::-;14079:1;14074:3;14070:11;14063:18;;13689:398;;;:::o;14093:366::-;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:::-;14607:3;14628:67;14692:2;14687:3;14628:67;:::i;:::-;14621:74;;14704:93;14793:3;14704:93;:::i;:::-;14822:2;14817:3;14813:12;14806:19;;14465:366;;;:::o;14837:118::-;14924:24;14942:5;14924:24;:::i;:::-;14919:3;14912:37;14837:118;;:::o;14961:429::-;15138:3;15160:92;15248:3;15239:6;15160:92;:::i;:::-;15153:99;;15269:95;15360:3;15351:6;15269:95;:::i;:::-;15262:102;;15381:3;15374:10;;14961:429;;;;;:::o;15396:379::-;15580:3;15602:147;15745:3;15602:147;:::i;:::-;15595:154;;15766:3;15759:10;;15396:379;;;:::o;15781:222::-;15874:4;15912:2;15901:9;15897:18;15889:26;;15925:71;15993:1;15982:9;15978:17;15969:6;15925:71;:::i;:::-;15781:222;;;;:::o;16009:640::-;16204:4;16242:3;16231:9;16227:19;16219:27;;16256:71;16324:1;16313:9;16309:17;16300:6;16256:71;:::i;:::-;16337:72;16405:2;16394:9;16390:18;16381:6;16337:72;:::i;:::-;16419;16487:2;16476:9;16472:18;16463:6;16419:72;:::i;:::-;16538:9;16532:4;16528:20;16523:2;16512:9;16508:18;16501:48;16566:76;16637:4;16628:6;16566:76;:::i;:::-;16558:84;;16009:640;;;;;;;:::o;16655:210::-;16742:4;16780:2;16769:9;16765:18;16757:26;;16793:65;16855:1;16844:9;16840:17;16831:6;16793:65;:::i;:::-;16655:210;;;;:::o;16871:313::-;16984:4;17022:2;17011:9;17007:18;16999:26;;17071:9;17065:4;17061:20;17057:1;17046:9;17042:17;17035:47;17099:78;17172:4;17163:6;17099:78;:::i;:::-;17091:86;;16871:313;;;;:::o;17190:419::-;17356:4;17394:2;17383:9;17379:18;17371:26;;17443:9;17437:4;17433:20;17429:1;17418:9;17414:17;17407:47;17471:131;17597:4;17471:131;:::i;:::-;17463:139;;17190:419;;;:::o;17615:::-;17781:4;17819:2;17808:9;17804:18;17796:26;;17868:9;17862:4;17858:20;17854:1;17843:9;17839:17;17832:47;17896:131;18022:4;17896:131;:::i;:::-;17888:139;;17615:419;;;:::o;18040:::-;18206:4;18244:2;18233:9;18229:18;18221:26;;18293:9;18287:4;18283:20;18279:1;18268:9;18264:17;18257:47;18321:131;18447:4;18321:131;:::i;:::-;18313:139;;18040:419;;;:::o;18465:::-;18631:4;18669:2;18658:9;18654:18;18646:26;;18718:9;18712:4;18708:20;18704:1;18693:9;18689:17;18682:47;18746:131;18872:4;18746:131;:::i;:::-;18738:139;;18465:419;;;:::o;18890:::-;19056:4;19094:2;19083:9;19079:18;19071:26;;19143:9;19137:4;19133:20;19129:1;19118:9;19114:17;19107:47;19171:131;19297:4;19171:131;:::i;:::-;19163:139;;18890:419;;;:::o;19315:::-;19481:4;19519:2;19508:9;19504:18;19496:26;;19568:9;19562:4;19558:20;19554:1;19543:9;19539:17;19532:47;19596:131;19722:4;19596:131;:::i;:::-;19588:139;;19315:419;;;:::o;19740:::-;19906:4;19944:2;19933:9;19929:18;19921:26;;19993:9;19987:4;19983:20;19979:1;19968:9;19964:17;19957:47;20021:131;20147:4;20021:131;:::i;:::-;20013:139;;19740:419;;;:::o;20165:::-;20331:4;20369:2;20358:9;20354:18;20346:26;;20418:9;20412:4;20408:20;20404:1;20393:9;20389:17;20382:47;20446:131;20572:4;20446:131;:::i;:::-;20438:139;;20165:419;;;:::o;20590:::-;20756:4;20794:2;20783:9;20779:18;20771:26;;20843:9;20837:4;20833:20;20829:1;20818:9;20814:17;20807:47;20871:131;20997:4;20871:131;:::i;:::-;20863:139;;20590:419;;;:::o;21015:::-;21181:4;21219:2;21208:9;21204:18;21196:26;;21268:9;21262:4;21258:20;21254:1;21243:9;21239:17;21232:47;21296:131;21422:4;21296:131;:::i;:::-;21288:139;;21015:419;;;:::o;21440:::-;21606:4;21644:2;21633:9;21629:18;21621:26;;21693:9;21687:4;21683:20;21679:1;21668:9;21664:17;21657:47;21721:131;21847:4;21721:131;:::i;:::-;21713:139;;21440:419;;;:::o;21865:222::-;21958:4;21996:2;21985:9;21981:18;21973:26;;22009:71;22077:1;22066:9;22062:17;22053:6;22009:71;:::i;:::-;21865:222;;;;:::o;22093:129::-;22127:6;22154:20;;:::i;:::-;22144:30;;22183:33;22211:4;22203:6;22183:33;:::i;:::-;22093:129;;;:::o;22228:75::-;22261:6;22294:2;22288:9;22278:19;;22228:75;:::o;22309:307::-;22370:4;22460:18;22452:6;22449:30;22446:56;;;22482:18;;:::i;:::-;22446:56;22520:29;22542:6;22520:29;:::i;:::-;22512:37;;22604:4;22598;22594:15;22586:23;;22309:307;;;:::o;22622:308::-;22684:4;22774:18;22766:6;22763:30;22760:56;;;22796:18;;:::i;:::-;22760:56;22834:29;22856:6;22834:29;:::i;:::-;22826:37;;22918:4;22912;22908:15;22900:23;;22622:308;;;:::o;22936:141::-;22985:4;23008:3;23000:11;;23031:3;23028:1;23021:14;23065:4;23062:1;23052:18;23044:26;;22936:141;;;:::o;23083:98::-;23134:6;23168:5;23162:12;23152:22;;23083:98;;;:::o;23187:99::-;23239:6;23273:5;23267:12;23257:22;;23187:99;;;:::o;23292:168::-;23375:11;23409:6;23404:3;23397:19;23449:4;23444:3;23440:14;23425:29;;23292:168;;;;:::o;23466:147::-;23567:11;23604:3;23589:18;;23466:147;;;;:::o;23619:169::-;23703:11;23737:6;23732:3;23725:19;23777:4;23772:3;23768:14;23753:29;;23619:169;;;;:::o;23794:148::-;23896:11;23933:3;23918:18;;23794:148;;;;:::o;23948:305::-;23988:3;24007:20;24025:1;24007:20;:::i;:::-;24002:25;;24041:20;24059:1;24041:20;:::i;:::-;24036:25;;24195:1;24127:66;24123:74;24120:1;24117:81;24114:107;;;24201:18;;:::i;:::-;24114:107;24245:1;24242;24238:9;24231:16;;23948:305;;;;:::o;24259:348::-;24299:7;24322:20;24340:1;24322:20;:::i;:::-;24317:25;;24356:20;24374:1;24356:20;:::i;:::-;24351:25;;24544:1;24476:66;24472:74;24469:1;24466:81;24461:1;24454:9;24447:17;24443:105;24440:131;;;24551:18;;:::i;:::-;24440:131;24599:1;24596;24592:9;24581:20;;24259:348;;;;:::o;24613:96::-;24650:7;24679:24;24697:5;24679:24;:::i;:::-;24668:35;;24613:96;;;:::o;24715:90::-;24749:7;24792:5;24785:13;24778:21;24767:32;;24715:90;;;:::o;24811:149::-;24847:7;24887:66;24880:5;24876:78;24865:89;;24811:149;;;:::o;24966:125::-;25032:7;25061:24;25079:5;25061:24;:::i;:::-;25050:35;;24966:125;;;:::o;25097:126::-;25134:7;25174:42;25167:5;25163:54;25152:65;;25097:126;;;:::o;25229:77::-;25266:7;25295:5;25284:16;;25229:77;;;:::o;25312:154::-;25396:6;25391:3;25386;25373:30;25458:1;25449:6;25444:3;25440:16;25433:27;25312:154;;;:::o;25472:307::-;25540:1;25550:113;25564:6;25561:1;25558:13;25550:113;;;25649:1;25644:3;25640:11;25634:18;25630:1;25625:3;25621:11;25614:39;25586:2;25583:1;25579:10;25574:15;;25550:113;;;25681:6;25678:1;25675:13;25672:101;;;25761:1;25752:6;25747:3;25743:16;25736:27;25672:101;25521:258;25472:307;;;:::o;25785:320::-;25829:6;25866:1;25860:4;25856:12;25846:22;;25913:1;25907:4;25903:12;25934:18;25924:81;;25990:4;25982:6;25978:17;25968:27;;25924:81;26052:2;26044:6;26041:14;26021:18;26018:38;26015:84;;;26071:18;;:::i;:::-;26015:84;25836:269;25785:320;;;:::o;26111:281::-;26194:27;26216:4;26194:27;:::i;:::-;26186:6;26182:40;26324:6;26312:10;26309:22;26288:18;26276:10;26273:34;26270:62;26267:88;;;26335:18;;:::i;:::-;26267:88;26375:10;26371:2;26364:22;26154:238;26111:281;;:::o;26398:180::-;26446:77;26443:1;26436:88;26543:4;26540:1;26533:15;26567:4;26564:1;26557:15;26584:180;26632:77;26629:1;26622:88;26729:4;26726:1;26719:15;26753:4;26750:1;26743:15;26770:180;26818:77;26815:1;26808:88;26915:4;26912:1;26905:15;26939:4;26936:1;26929:15;26956:117;27065:1;27062;27055:12;27079:117;27188:1;27185;27178:12;27202:117;27311:1;27308;27301:12;27325:117;27434:1;27431;27424:12;27448:102;27489:6;27540:2;27536:7;27531:2;27524:5;27520:14;27516:28;27506:38;;27448:102;;;:::o;27556:156::-;27696:8;27692:1;27684:6;27680:14;27673:32;27556:156;:::o;27718:225::-;27858:34;27854:1;27846:6;27842:14;27835:58;27927:8;27922:2;27914:6;27910:15;27903:33;27718:225;:::o;27949:160::-;28089:12;28085:1;28077:6;28073:14;28066:36;27949:160;:::o;28115:172::-;28255:24;28251:1;28243:6;28239:14;28232:48;28115:172;:::o;28293:::-;28433:24;28429:1;28421:6;28417:14;28410:48;28293:172;:::o;28471:168::-;28611:20;28607:1;28599:6;28595:14;28588:44;28471:168;:::o;28645:171::-;28785:23;28781:1;28773:6;28769:14;28762:47;28645:171;:::o;28822:182::-;28962:34;28958:1;28950:6;28946:14;28939:58;28822:182;:::o;29010:172::-;29150:24;29146:1;29138:6;29134:14;29127:48;29010:172;:::o;29188:114::-;;:::o;29308:164::-;29448:16;29444:1;29436:6;29432:14;29425:40;29308:164;:::o;29478:162::-;29618:14;29614:1;29606:6;29602:14;29595:38;29478:162;:::o;29646:122::-;29719:24;29737:5;29719:24;:::i;:::-;29712:5;29709:35;29699:63;;29758:1;29755;29748:12;29699:63;29646:122;:::o;29774:116::-;29844:21;29859:5;29844:21;:::i;:::-;29837:5;29834:32;29824:60;;29880:1;29877;29870:12;29824:60;29774:116;:::o;29896:120::-;29968:23;29985:5;29968:23;:::i;:::-;29961:5;29958:34;29948:62;;30006:1;30003;29996:12;29948:62;29896:120;:::o;30022:180::-;30124:53;30171:5;30124:53;:::i;:::-;30117:5;30114:64;30104:92;;30192:1;30189;30182:12;30104:92;30022:180;:::o;30208:122::-;30281:24;30299:5;30281:24;:::i;:::-;30274:5;30271:35;30261:63;;30320:1;30317;30310:12;30261:63;30208:122;:::o

Swarm Source

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