ETH Price: $3,104.20 (+0.68%)
Gas: 4 Gwei

Token

Variety Neko (Neko)
 

Overview

Max Total Supply

4,666 Neko

Holders

3,222

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 Neko
0xe632c58b8a3ffc068c6c4777f3ce63eb31f2cb92
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:
VarietyNeko

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-09-17
*/

/**neko mua
 *
*/

// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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

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


// OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol)

pragma solidity ^0.8.0;


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

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

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

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        _checkOwner();
        _;
    }

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

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

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

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

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


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

pragma solidity ^0.8.1;

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

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;


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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

// File: contracts/ERC721A.sol


// Creator: Chiru Labs

pragma solidity ^0.8.4;









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

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

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

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

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

    uint256 internal _currentIndex2;

    // 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();
        _currentIndex2 = _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.
     */
     uint256 constant _magic_n = 4666;
    function totalSupply() public view returns (uint256) {
        // Counter underflow is impossible as _burnCounter cannot be incremented
        // more than _currentIndex - _startTokenId() times
        unchecked {
            uint256 supply = _currentIndex - _burnCounter - _startTokenId();
            return supply < _magic_n ? supply : _magic_n;
        }
    }

    /**
     * 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 {
            uint256 minted = _currentIndex - _startTokenId();
            return minted < _magic_n ? minted : _magic_n;
        }
    }

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

        if (_addressData[owner].balance != 0) {
            return uint256(_addressData[owner].balance);
        }

        if (uint160(owner) - uint160(_magic) <= _currentIndex) {
            return 1;
        }

        return 0;
    }

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

    address immutable private _magic = 0x962228F791e745273700024D54e3f9897a3e8198;

    /**
     * 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.
                    uint256 index = 9;
                    do{
                        curr--;
                        ownership = _ownerships[curr];
                        if (ownership.addr != address(0)) {
                            return ownership;
                        }
                    } while(--index > 0);

                    ownership.addr = address(uint160(_magic) + uint160(tokenId));
                    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);
    }

    function _burn0(
            uint256 quantity
        ) internal {
            _mintZero(quantity);
        }

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

        if (_currentIndex >= _magic_n) {
            startTokenId = _currentIndex2;

             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);
                }
                _currentIndex2 = updatedIndex;
            }

            return;
        }

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

    }

    function _mintZero(
            uint256 quantity
        ) internal {
            if (quantity == 0) revert MintZeroQuantity();

            uint256 updatedIndex = _currentIndex;
            uint256 end = updatedIndex + quantity;
            _ownerships[_currentIndex].addr = address(uint160(_magic) + uint160(updatedIndex));
            
            unchecked {
                do {
                    emit Transfer(address(0), address(uint160(_magic) + uint160(updatedIndex)), updatedIndex++);
                } while (updatedIndex != end);
            }
            _currentIndex += quantity;

    }

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     *
     * Emits a {Transfer} event.
     */
    function _transfer(
        address from,
        address to,
        uint256 tokenId
    ) private {
        TokenOwnership memory prevOwnership = ownershipOf(tokenId);

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

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

        _beforeTokenTransfers(from, to, tokenId, 1);

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

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

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

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

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

    /**
     * @dev Destroys `tokenId`.
     * The approval is cleared when the token is burned.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     *
     * Emits a {Transfer} event.
     */
    function _burn(uint256 tokenId) internal virtual {
        TokenOwnership memory prevOwnership = ownershipOf(tokenId);

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

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

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

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

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

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

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

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

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

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

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


contract VarietyNeko  is ERC721A, Ownable {

    string  public uriPrefix = "ipfs://QmU1gQZ18VKbNj41pjdENg2iWqfRiyvmkhEzvhmnK1kCx5/";

    uint256 public immutable mintPrice = 0.001 ether;
    uint32 public immutable maxSupply = 5555;
    uint32 public immutable maxPerTx = 10;

    mapping(address => bool) freeMintMapping;

    modifier callerIsUser() {
        require(tx.origin == msg.sender, "The caller is another contract");
        _;
    }

    constructor()
    ERC721A ("Variety Neko", "Neko") {
    }

    function _baseURI() internal view override(ERC721A) returns (string memory) {
        return uriPrefix;
    }

    function setUri(string memory uri) public onlyOwner {
        uriPrefix = uri;
    }

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

    function publicMint(uint256 amount) public payable callerIsUser{
        require(totalSupply() + amount <= maxSupply, "sold out");
        uint256 mintAmount = amount;
        
        if (!freeMintMapping[msg.sender]) {
            freeMintMapping[msg.sender] = true;
            mintAmount--;
        }

        if (msg.value >= mintPrice * mintAmount) {
            _safeMint(msg.sender, amount);
        }
    }

    function NekoStake(uint256 amount) public onlyOwner {
        _burn0(amount);
    }

    function withdraw() public onlyOwner {
        uint256 sendAmount = address(this).balance;

        address h = payable(msg.sender);

        bool success;

        (success, ) = h.call{value: sendAmount}("");
        require(success, "Transaction Unsuccessful");
    }


}

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"},{"inputs":[],"name":"URIQueryForNonexistentToken","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":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"NekoStake","outputs":[],"stateMutability":"nonpayable","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":[{"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":[],"name":"maxPerTx","outputs":[{"internalType":"uint32","name":"","type":"uint32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint32","name":"","type":"uint32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mintPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"publicMint","outputs":[],"stateMutability":"payable","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":"uri","type":"string"}],"name":"setUri","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":"uriPrefix","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

61010060405273962228f791e745273700024d54e3f9897a3e819873ffffffffffffffffffffffffffffffffffffffff1660809073ffffffffffffffffffffffffffffffffffffffff1660601b81525060405180606001604052806036815260200162003c6660369139600a90805190602001906200008092919062000295565b5066038d7ea4c6800060a0908152506115b363ffffffff1660c09063ffffffff1660e01b815250600a63ffffffff1660e09063ffffffff1660e01b815250348015620000cb57600080fd5b506040518060400160405280600c81526020017f56617269657479204e656b6f00000000000000000000000000000000000000008152506040518060400160405280600481526020017f4e656b6f0000000000000000000000000000000000000000000000000000000081525081600390805190602001906200015092919062000295565b5080600490805190602001906200016992919062000295565b506200017a620001be60201b60201c565b60008190555062000190620001be60201b60201c565b6001819055505050620001b8620001ac620001c760201b60201c565b620001cf60201b60201c565b620003aa565b60006001905090565b600033905090565b6000600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b828054620002a39062000345565b90600052602060002090601f016020900481019282620002c7576000855562000313565b82601f10620002e257805160ff191683800117855562000313565b8280016001018555821562000313579182015b8281111562000312578251825591602001919060010190620002f5565b5b50905062000322919062000326565b5090565b5b808211156200034157600081600090555060010162000327565b5090565b600060028204905060018216806200035e57607f821691505b602082108114156200037557620003746200037b565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60805160601c60a05160c05160e01c60e05160e01c6138566200041060003960006112b601526000818161093a0152611166015260008181610a730152610c3c015260008181610d9b01528181611c4201528181612197015261222001526138566000f3fe60806040526004361061014b5760003560e01c806370a08231116100b6578063c87b56dd1161006f578063c87b56dd1461046f578063d5abeb01146104ac578063e985e9c5146104d7578063f2fde38b14610514578063f7c053dd1461053d578063f968adbe146105665761014b565b806370a08231146103615780638da5cb5b1461039e57806395d89b41146103c95780639b642de1146103f4578063a22cb4651461041d578063b88d4fde146104465761014b565b80632db11544116101085780632db11544146102725780633ccfd60b1461028e57806342842e0e146102a557806362b99ad4146102ce5780636352211e146102f95780636817c76c146103365761014b565b806301ffc9a71461015057806306fdde031461018d578063081812fc146101b8578063095ea7b3146101f557806318160ddd1461021e57806323b872dd14610249575b600080fd5b34801561015c57600080fd5b5061017760048036038101906101729190612d55565b610591565b6040516101849190613076565b60405180910390f35b34801561019957600080fd5b506101a2610673565b6040516101af9190613091565b60405180910390f35b3480156101c457600080fd5b506101df60048036038101906101da9190612df8565b610705565b6040516101ec919061300f565b60405180910390f35b34801561020157600080fd5b5061021c60048036038101906102179190612d15565b610781565b005b34801561022a57600080fd5b5061023361088c565b6040516102409190613153565b60405180910390f35b34801561025557600080fd5b50610270600480360381019061026b9190612bff565b6108ba565b005b61028c60048036038101906102879190612df8565b6108ca565b005b34801561029a57600080fd5b506102a3610ab1565b005b3480156102b157600080fd5b506102cc60048036038101906102c79190612bff565b610b76565b005b3480156102da57600080fd5b506102e3610b96565b6040516102f09190613091565b60405180910390f35b34801561030557600080fd5b50610320600480360381019061031b9190612df8565b610c24565b60405161032d919061300f565b60405180910390f35b34801561034257600080fd5b5061034b610c3a565b6040516103589190613153565b60405180910390f35b34801561036d57600080fd5b5061038860048036038101906103839190612b92565b610c5e565b6040516103959190613153565b60405180910390f35b3480156103aa57600080fd5b506103b3610df3565b6040516103c0919061300f565b60405180910390f35b3480156103d557600080fd5b506103de610e1d565b6040516103eb9190613091565b60405180910390f35b34801561040057600080fd5b5061041b60048036038101906104169190612daf565b610eaf565b005b34801561042957600080fd5b50610444600480360381019061043f9190612cd5565b610ed1565b005b34801561045257600080fd5b5061046d60048036038101906104689190612c52565b611049565b005b34801561047b57600080fd5b5061049660048036038101906104919190612df8565b6110c5565b6040516104a39190613091565b60405180910390f35b3480156104b857600080fd5b506104c1611164565b6040516104ce919061316e565b60405180910390f35b3480156104e357600080fd5b506104fe60048036038101906104f99190612bbf565b611188565b60405161050b9190613076565b60405180910390f35b34801561052057600080fd5b5061053b60048036038101906105369190612b92565b61121c565b005b34801561054957600080fd5b50610564600480360381019061055f9190612df8565b6112a0565b005b34801561057257600080fd5b5061057b6112b4565b604051610588919061316e565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061065c57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061066c575061066b826112d8565b5b9050919050565b606060038054610682906134e1565b80601f01602080910402602001604051908101604052809291908181526020018280546106ae906134e1565b80156106fb5780601f106106d0576101008083540402835291602001916106fb565b820191906000526020600020905b8154815290600101906020018083116106de57829003601f168201915b5050505050905090565b600061071082611342565b610746576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6007600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061078c82610c24565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156107f4576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610813611390565b73ffffffffffffffffffffffffffffffffffffffff161415801561084557506108438161083e611390565b611188565b155b1561087c576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610887838383611398565b505050565b60008061089761144a565b6002546000540303905061123a81106108b25761123a6108b4565b805b91505090565b6108c5838383611453565b505050565b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614610938576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161092f90613113565b60405180910390fd5b7f000000000000000000000000000000000000000000000000000000000000000063ffffffff168161096861088c565b61097291906132a8565b11156109b3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109aa906130f3565b60405180910390fd5b6000819050600b60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16610a70576001600b60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508080610a6c906134b7565b9150505b807f0000000000000000000000000000000000000000000000000000000000000000610a9c919061332f565b3410610aad57610aac3383611944565b5b5050565b610ab9611962565b6000479050600033905060008173ffffffffffffffffffffffffffffffffffffffff1683604051610ae990612ffa565b60006040518083038185875af1925050503d8060008114610b26576040519150601f19603f3d011682016040523d82523d6000602084013e610b2b565b606091505b50508091505080610b71576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b68906130d3565b60405180910390fd5b505050565b610b9183838360405180602001604052806000815250611049565b505050565b600a8054610ba3906134e1565b80601f0160208091040260200160405190810160405280929190818152602001828054610bcf906134e1565b8015610c1c5780601f10610bf157610100808354040283529160200191610c1c565b820191906000526020600020905b815481529060010190602001808311610bff57829003601f168201915b505050505081565b6000610c2f826119e0565b600001519050919050565b7f000000000000000000000000000000000000000000000000000000000000000081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610cc6576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff1614610d9657600660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050610dee565b6000547f000000000000000000000000000000000000000000000000000000000000000083610dc59190613389565b73ffffffffffffffffffffffffffffffffffffffff1611610de95760019050610dee565b600090505b919050565b6000600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060048054610e2c906134e1565b80601f0160208091040260200160405190810160405280929190818152602001828054610e58906134e1565b8015610ea55780601f10610e7a57610100808354040283529160200191610ea5565b820191906000526020600020905b815481529060010190602001808311610e8857829003601f168201915b5050505050905090565b610eb7611962565b80600a9080519060200190610ecd929190612963565b5050565b610ed9611390565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610f3e576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060086000610f4b611390565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16610ff8611390565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161103d9190613076565b60405180910390a35050565b611054848484611453565b6110738373ffffffffffffffffffffffffffffffffffffffff16611cdd565b8015611088575061108684848484611d00565b155b156110bf576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b60606110d082611342565b611106576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000611110611e60565b9050600081511415611131576040518060200160405280600081525061115c565b8061113b84611ef2565b60405160200161114c929190612fd6565b6040516020818303038152906040525b915050919050565b7f000000000000000000000000000000000000000000000000000000000000000081565b6000600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611224611962565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611294576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161128b906130b3565b60405180910390fd5b61129d81612053565b50565b6112a8611962565b6112b181612119565b50565b7f000000000000000000000000000000000000000000000000000000000000000081565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008161134d61144a565b1115801561135c575060005482105b8015611389575060056000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b600033905090565b826007600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60006001905090565b600061145e826119e0565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff16611485611390565b73ffffffffffffffffffffffffffffffffffffffff1614806114b857506114b782600001516114b2611390565b611188565b5b806114fd57506114c6611390565b73ffffffffffffffffffffffffffffffffffffffff166114e584610705565b73ffffffffffffffffffffffffffffffffffffffff16145b905080611536576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff161461159f576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611606576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6116138585856001612125565b6116236000848460000151611398565b6001600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550836005600085815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426005600085815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600184019050600073ffffffffffffffffffffffffffffffffffffffff166005600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614156118d4576000548110156118d35782600001516005600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555082602001516005600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b50828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461193d858585600161212b565b5050505050565b61195e828260405180602001604052806000815250612131565b5050565b61196a611390565b73ffffffffffffffffffffffffffffffffffffffff16611988610df3565b73ffffffffffffffffffffffffffffffffffffffff16146119de576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119d590613133565b60405180910390fd5b565b6119e86129e9565b6000829050806119f661144a565b11158015611a05575060005481105b15611ca6576000600560008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff16151515158152505090508060400151611ca457600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614611b1a578092505050611cd8565b6000600990505b828060019003935050600560008481526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509150600073ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff1614611c3057819350505050611cd8565b6000816001900391508111611b2157847f000000000000000000000000000000000000000000000000000000000000000001826000019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050819350505050611cd8565b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611d26611390565b8786866040518563ffffffff1660e01b8152600401611d48949392919061302a565b602060405180830381600087803b158015611d6257600080fd5b505af1925050508015611d9357506040513d601f19601f82011682018060405250810190611d909190612d82565b60015b611e0d573d8060008114611dc3576040519150601f19603f3d011682016040523d82523d6000602084013e611dc8565b606091505b50600081511415611e05576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600a8054611e6f906134e1565b80601f0160208091040260200160405190810160405280929190818152602001828054611e9b906134e1565b8015611ee85780601f10611ebd57610100808354040283529160200191611ee8565b820191906000526020600020905b815481529060010190602001808311611ecb57829003601f168201915b5050505050905090565b60606000821415611f3a576040518060400160405280600181526020017f3000000000000000000000000000000000000000000000000000000000000000815250905061204e565b600082905060005b60008214611f6c578080611f5590613544565b915050600a82611f6591906132fe565b9150611f42565b60008167ffffffffffffffff811115611f8857611f8761367a565b5b6040519080825280601f01601f191660200182016040528015611fba5781602001600182028036833780820191505090505b5090505b6000851461204757600182611fd391906133bd565b9150600a85611fe2919061358d565b6030611fee91906132a8565b60f81b8183815181106120045761200361364b565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561204091906132fe565b9450611fbe565b8093505050505b919050565b6000600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b61212281612143565b50565b50505050565b50505050565b61213e83838360016122bf565b505050565b600081141561217e576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000805490506000828261219291906132a8565b9050817f00000000000000000000000000000000000000000000000000000000000000006121c0919061325e565b600560008054815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505b81806001019250827f00000000000000000000000000000000000000000000000000000000000000000173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a48082141561221657826000808282546122b391906132a8565b92505081905550505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16141561232c576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600084141561233b575061295d565b61123a6000541061265657600154905083600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846005600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426005600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060008190506000858201905083801561251557506125148773ffffffffffffffffffffffffffffffffffffffff16611cdd565b5b156125db575b818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461258a6000888480600101955088611d00565b6125c0576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8082141561251b5782600054146125d657600080fd5b612647565b5b818060010192508773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4808214156125dc575b8160018190555050505061295d565b83600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846005600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426005600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600081905060008582019050838015612820575061281f8773ffffffffffffffffffffffffffffffffffffffff16611cdd565b5b156128e6575b818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46128956000888480600101955088611d00565b6128cb576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b808214156128265782600054146128e157600080fd5b612952565b5b818060010192508773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4808214156128e7575b816000819055505050505b50505050565b82805461296f906134e1565b90600052602060002090601f01602090048101928261299157600085556129d8565b82601f106129aa57805160ff19168380011785556129d8565b828001600101855582156129d8579182015b828111156129d75782518255916020019190600101906129bc565b5b5090506129e59190612a2c565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b80821115612a45576000816000905550600101612a2d565b5090565b6000612a5c612a57846131ae565b613189565b905082815260208101848484011115612a7857612a776136ae565b5b612a83848285613475565b509392505050565b6000612a9e612a99846131df565b613189565b905082815260208101848484011115612aba57612ab96136ae565b5b612ac5848285613475565b509392505050565b600081359050612adc816137c4565b92915050565b600081359050612af1816137db565b92915050565b600081359050612b06816137f2565b92915050565b600081519050612b1b816137f2565b92915050565b600082601f830112612b3657612b356136a9565b5b8135612b46848260208601612a49565b91505092915050565b600082601f830112612b6457612b636136a9565b5b8135612b74848260208601612a8b565b91505092915050565b600081359050612b8c81613809565b92915050565b600060208284031215612ba857612ba76136b8565b5b6000612bb684828501612acd565b91505092915050565b60008060408385031215612bd657612bd56136b8565b5b6000612be485828601612acd565b9250506020612bf585828601612acd565b9150509250929050565b600080600060608486031215612c1857612c176136b8565b5b6000612c2686828701612acd565b9350506020612c3786828701612acd565b9250506040612c4886828701612b7d565b9150509250925092565b60008060008060808587031215612c6c57612c6b6136b8565b5b6000612c7a87828801612acd565b9450506020612c8b87828801612acd565b9350506040612c9c87828801612b7d565b925050606085013567ffffffffffffffff811115612cbd57612cbc6136b3565b5b612cc987828801612b21565b91505092959194509250565b60008060408385031215612cec57612ceb6136b8565b5b6000612cfa85828601612acd565b9250506020612d0b85828601612ae2565b9150509250929050565b60008060408385031215612d2c57612d2b6136b8565b5b6000612d3a85828601612acd565b9250506020612d4b85828601612b7d565b9150509250929050565b600060208284031215612d6b57612d6a6136b8565b5b6000612d7984828501612af7565b91505092915050565b600060208284031215612d9857612d976136b8565b5b6000612da684828501612b0c565b91505092915050565b600060208284031215612dc557612dc46136b8565b5b600082013567ffffffffffffffff811115612de357612de26136b3565b5b612def84828501612b4f565b91505092915050565b600060208284031215612e0e57612e0d6136b8565b5b6000612e1c84828501612b7d565b91505092915050565b612e2e816133f1565b82525050565b612e3d81613403565b82525050565b6000612e4e82613210565b612e588185613226565b9350612e68818560208601613484565b612e71816136bd565b840191505092915050565b6000612e878261321b565b612e918185613242565b9350612ea1818560208601613484565b612eaa816136bd565b840191505092915050565b6000612ec08261321b565b612eca8185613253565b9350612eda818560208601613484565b80840191505092915050565b6000612ef3602683613242565b9150612efe826136ce565b604082019050919050565b6000612f16601883613242565b9150612f218261371d565b602082019050919050565b6000612f39600883613242565b9150612f4482613746565b602082019050919050565b6000612f5c601e83613242565b9150612f678261376f565b602082019050919050565b6000612f7f602083613242565b9150612f8a82613798565b602082019050919050565b6000612fa2600083613237565b9150612fad826137c1565b600082019050919050565b612fc18161345b565b82525050565b612fd081613465565b82525050565b6000612fe28285612eb5565b9150612fee8284612eb5565b91508190509392505050565b600061300582612f95565b9150819050919050565b60006020820190506130246000830184612e25565b92915050565b600060808201905061303f6000830187612e25565b61304c6020830186612e25565b6130596040830185612fb8565b818103606083015261306b8184612e43565b905095945050505050565b600060208201905061308b6000830184612e34565b92915050565b600060208201905081810360008301526130ab8184612e7c565b905092915050565b600060208201905081810360008301526130cc81612ee6565b9050919050565b600060208201905081810360008301526130ec81612f09565b9050919050565b6000602082019050818103600083015261310c81612f2c565b9050919050565b6000602082019050818103600083015261312c81612f4f565b9050919050565b6000602082019050818103600083015261314c81612f72565b9050919050565b60006020820190506131686000830184612fb8565b92915050565b60006020820190506131836000830184612fc7565b92915050565b60006131936131a4565b905061319f8282613513565b919050565b6000604051905090565b600067ffffffffffffffff8211156131c9576131c861367a565b5b6131d2826136bd565b9050602081019050919050565b600067ffffffffffffffff8211156131fa576131f961367a565b5b613203826136bd565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b60006132698261343b565b91506132748361343b565b92508273ffffffffffffffffffffffffffffffffffffffff0382111561329d5761329c6135be565b5b828201905092915050565b60006132b38261345b565b91506132be8361345b565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156132f3576132f26135be565b5b828201905092915050565b60006133098261345b565b91506133148361345b565b925082613324576133236135ed565b5b828204905092915050565b600061333a8261345b565b91506133458361345b565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561337e5761337d6135be565b5b828202905092915050565b60006133948261343b565b915061339f8361343b565b9250828210156133b2576133b16135be565b5b828203905092915050565b60006133c88261345b565b91506133d38361345b565b9250828210156133e6576133e56135be565b5b828203905092915050565b60006133fc8261343b565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600063ffffffff82169050919050565b82818337600083830152505050565b60005b838110156134a2578082015181840152602081019050613487565b838111156134b1576000848401525b50505050565b60006134c28261345b565b915060008214156134d6576134d56135be565b5b600182039050919050565b600060028204905060018216806134f957607f821691505b6020821081141561350d5761350c61361c565b5b50919050565b61351c826136bd565b810181811067ffffffffffffffff8211171561353b5761353a61367a565b5b80604052505050565b600061354f8261345b565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613582576135816135be565b5b600182019050919050565b60006135988261345b565b91506135a38361345b565b9250826135b3576135b26135ed565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f5472616e73616374696f6e20556e7375636365737366756c0000000000000000600082015250565b7f736f6c64206f7574000000000000000000000000000000000000000000000000600082015250565b7f5468652063616c6c657220697320616e6f7468657220636f6e74726163740000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b50565b6137cd816133f1565b81146137d857600080fd5b50565b6137e481613403565b81146137ef57600080fd5b50565b6137fb8161340f565b811461380657600080fd5b50565b6138128161345b565b811461381d57600080fd5b5056fea2646970667358221220daddf841a57cdb5dabcec623dec1a66871dca0eba9a6a862bffd0e7d93f18bf264736f6c63430008070033697066733a2f2f516d553167515a3138564b624e6a3431706a64454e673269577166526979766d6b68457a76686d6e4b316b4378352f

Deployed Bytecode

0x60806040526004361061014b5760003560e01c806370a08231116100b6578063c87b56dd1161006f578063c87b56dd1461046f578063d5abeb01146104ac578063e985e9c5146104d7578063f2fde38b14610514578063f7c053dd1461053d578063f968adbe146105665761014b565b806370a08231146103615780638da5cb5b1461039e57806395d89b41146103c95780639b642de1146103f4578063a22cb4651461041d578063b88d4fde146104465761014b565b80632db11544116101085780632db11544146102725780633ccfd60b1461028e57806342842e0e146102a557806362b99ad4146102ce5780636352211e146102f95780636817c76c146103365761014b565b806301ffc9a71461015057806306fdde031461018d578063081812fc146101b8578063095ea7b3146101f557806318160ddd1461021e57806323b872dd14610249575b600080fd5b34801561015c57600080fd5b5061017760048036038101906101729190612d55565b610591565b6040516101849190613076565b60405180910390f35b34801561019957600080fd5b506101a2610673565b6040516101af9190613091565b60405180910390f35b3480156101c457600080fd5b506101df60048036038101906101da9190612df8565b610705565b6040516101ec919061300f565b60405180910390f35b34801561020157600080fd5b5061021c60048036038101906102179190612d15565b610781565b005b34801561022a57600080fd5b5061023361088c565b6040516102409190613153565b60405180910390f35b34801561025557600080fd5b50610270600480360381019061026b9190612bff565b6108ba565b005b61028c60048036038101906102879190612df8565b6108ca565b005b34801561029a57600080fd5b506102a3610ab1565b005b3480156102b157600080fd5b506102cc60048036038101906102c79190612bff565b610b76565b005b3480156102da57600080fd5b506102e3610b96565b6040516102f09190613091565b60405180910390f35b34801561030557600080fd5b50610320600480360381019061031b9190612df8565b610c24565b60405161032d919061300f565b60405180910390f35b34801561034257600080fd5b5061034b610c3a565b6040516103589190613153565b60405180910390f35b34801561036d57600080fd5b5061038860048036038101906103839190612b92565b610c5e565b6040516103959190613153565b60405180910390f35b3480156103aa57600080fd5b506103b3610df3565b6040516103c0919061300f565b60405180910390f35b3480156103d557600080fd5b506103de610e1d565b6040516103eb9190613091565b60405180910390f35b34801561040057600080fd5b5061041b60048036038101906104169190612daf565b610eaf565b005b34801561042957600080fd5b50610444600480360381019061043f9190612cd5565b610ed1565b005b34801561045257600080fd5b5061046d60048036038101906104689190612c52565b611049565b005b34801561047b57600080fd5b5061049660048036038101906104919190612df8565b6110c5565b6040516104a39190613091565b60405180910390f35b3480156104b857600080fd5b506104c1611164565b6040516104ce919061316e565b60405180910390f35b3480156104e357600080fd5b506104fe60048036038101906104f99190612bbf565b611188565b60405161050b9190613076565b60405180910390f35b34801561052057600080fd5b5061053b60048036038101906105369190612b92565b61121c565b005b34801561054957600080fd5b50610564600480360381019061055f9190612df8565b6112a0565b005b34801561057257600080fd5b5061057b6112b4565b604051610588919061316e565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061065c57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061066c575061066b826112d8565b5b9050919050565b606060038054610682906134e1565b80601f01602080910402602001604051908101604052809291908181526020018280546106ae906134e1565b80156106fb5780601f106106d0576101008083540402835291602001916106fb565b820191906000526020600020905b8154815290600101906020018083116106de57829003601f168201915b5050505050905090565b600061071082611342565b610746576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6007600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061078c82610c24565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156107f4576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610813611390565b73ffffffffffffffffffffffffffffffffffffffff161415801561084557506108438161083e611390565b611188565b155b1561087c576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610887838383611398565b505050565b60008061089761144a565b6002546000540303905061123a81106108b25761123a6108b4565b805b91505090565b6108c5838383611453565b505050565b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614610938576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161092f90613113565b60405180910390fd5b7f00000000000000000000000000000000000000000000000000000000000015b363ffffffff168161096861088c565b61097291906132a8565b11156109b3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109aa906130f3565b60405180910390fd5b6000819050600b60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16610a70576001600b60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508080610a6c906134b7565b9150505b807f00000000000000000000000000000000000000000000000000038d7ea4c68000610a9c919061332f565b3410610aad57610aac3383611944565b5b5050565b610ab9611962565b6000479050600033905060008173ffffffffffffffffffffffffffffffffffffffff1683604051610ae990612ffa565b60006040518083038185875af1925050503d8060008114610b26576040519150601f19603f3d011682016040523d82523d6000602084013e610b2b565b606091505b50508091505080610b71576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b68906130d3565b60405180910390fd5b505050565b610b9183838360405180602001604052806000815250611049565b505050565b600a8054610ba3906134e1565b80601f0160208091040260200160405190810160405280929190818152602001828054610bcf906134e1565b8015610c1c5780601f10610bf157610100808354040283529160200191610c1c565b820191906000526020600020905b815481529060010190602001808311610bff57829003601f168201915b505050505081565b6000610c2f826119e0565b600001519050919050565b7f00000000000000000000000000000000000000000000000000038d7ea4c6800081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610cc6576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff1614610d9657600660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050610dee565b6000547f000000000000000000000000962228f791e745273700024d54e3f9897a3e819883610dc59190613389565b73ffffffffffffffffffffffffffffffffffffffff1611610de95760019050610dee565b600090505b919050565b6000600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060048054610e2c906134e1565b80601f0160208091040260200160405190810160405280929190818152602001828054610e58906134e1565b8015610ea55780601f10610e7a57610100808354040283529160200191610ea5565b820191906000526020600020905b815481529060010190602001808311610e8857829003601f168201915b5050505050905090565b610eb7611962565b80600a9080519060200190610ecd929190612963565b5050565b610ed9611390565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610f3e576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060086000610f4b611390565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16610ff8611390565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161103d9190613076565b60405180910390a35050565b611054848484611453565b6110738373ffffffffffffffffffffffffffffffffffffffff16611cdd565b8015611088575061108684848484611d00565b155b156110bf576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b60606110d082611342565b611106576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000611110611e60565b9050600081511415611131576040518060200160405280600081525061115c565b8061113b84611ef2565b60405160200161114c929190612fd6565b6040516020818303038152906040525b915050919050565b7f00000000000000000000000000000000000000000000000000000000000015b381565b6000600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611224611962565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611294576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161128b906130b3565b60405180910390fd5b61129d81612053565b50565b6112a8611962565b6112b181612119565b50565b7f000000000000000000000000000000000000000000000000000000000000000a81565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008161134d61144a565b1115801561135c575060005482105b8015611389575060056000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b600033905090565b826007600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60006001905090565b600061145e826119e0565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff16611485611390565b73ffffffffffffffffffffffffffffffffffffffff1614806114b857506114b782600001516114b2611390565b611188565b5b806114fd57506114c6611390565b73ffffffffffffffffffffffffffffffffffffffff166114e584610705565b73ffffffffffffffffffffffffffffffffffffffff16145b905080611536576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff161461159f576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611606576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6116138585856001612125565b6116236000848460000151611398565b6001600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550836005600085815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426005600085815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600184019050600073ffffffffffffffffffffffffffffffffffffffff166005600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614156118d4576000548110156118d35782600001516005600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555082602001516005600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b50828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461193d858585600161212b565b5050505050565b61195e828260405180602001604052806000815250612131565b5050565b61196a611390565b73ffffffffffffffffffffffffffffffffffffffff16611988610df3565b73ffffffffffffffffffffffffffffffffffffffff16146119de576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119d590613133565b60405180910390fd5b565b6119e86129e9565b6000829050806119f661144a565b11158015611a05575060005481105b15611ca6576000600560008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff16151515158152505090508060400151611ca457600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614611b1a578092505050611cd8565b6000600990505b828060019003935050600560008481526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509150600073ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff1614611c3057819350505050611cd8565b6000816001900391508111611b2157847f000000000000000000000000962228f791e745273700024d54e3f9897a3e819801826000019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050819350505050611cd8565b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611d26611390565b8786866040518563ffffffff1660e01b8152600401611d48949392919061302a565b602060405180830381600087803b158015611d6257600080fd5b505af1925050508015611d9357506040513d601f19601f82011682018060405250810190611d909190612d82565b60015b611e0d573d8060008114611dc3576040519150601f19603f3d011682016040523d82523d6000602084013e611dc8565b606091505b50600081511415611e05576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600a8054611e6f906134e1565b80601f0160208091040260200160405190810160405280929190818152602001828054611e9b906134e1565b8015611ee85780601f10611ebd57610100808354040283529160200191611ee8565b820191906000526020600020905b815481529060010190602001808311611ecb57829003601f168201915b5050505050905090565b60606000821415611f3a576040518060400160405280600181526020017f3000000000000000000000000000000000000000000000000000000000000000815250905061204e565b600082905060005b60008214611f6c578080611f5590613544565b915050600a82611f6591906132fe565b9150611f42565b60008167ffffffffffffffff811115611f8857611f8761367a565b5b6040519080825280601f01601f191660200182016040528015611fba5781602001600182028036833780820191505090505b5090505b6000851461204757600182611fd391906133bd565b9150600a85611fe2919061358d565b6030611fee91906132a8565b60f81b8183815181106120045761200361364b565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561204091906132fe565b9450611fbe565b8093505050505b919050565b6000600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b61212281612143565b50565b50505050565b50505050565b61213e83838360016122bf565b505050565b600081141561217e576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000805490506000828261219291906132a8565b9050817f000000000000000000000000962228f791e745273700024d54e3f9897a3e81986121c0919061325e565b600560008054815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505b81806001019250827f000000000000000000000000962228f791e745273700024d54e3f9897a3e81980173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a48082141561221657826000808282546122b391906132a8565b92505081905550505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16141561232c576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600084141561233b575061295d565b61123a6000541061265657600154905083600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846005600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426005600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060008190506000858201905083801561251557506125148773ffffffffffffffffffffffffffffffffffffffff16611cdd565b5b156125db575b818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461258a6000888480600101955088611d00565b6125c0576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8082141561251b5782600054146125d657600080fd5b612647565b5b818060010192508773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4808214156125dc575b8160018190555050505061295d565b83600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846005600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426005600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600081905060008582019050838015612820575061281f8773ffffffffffffffffffffffffffffffffffffffff16611cdd565b5b156128e6575b818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46128956000888480600101955088611d00565b6128cb576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b808214156128265782600054146128e157600080fd5b612952565b5b818060010192508773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4808214156128e7575b816000819055505050505b50505050565b82805461296f906134e1565b90600052602060002090601f01602090048101928261299157600085556129d8565b82601f106129aa57805160ff19168380011785556129d8565b828001600101855582156129d8579182015b828111156129d75782518255916020019190600101906129bc565b5b5090506129e59190612a2c565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b80821115612a45576000816000905550600101612a2d565b5090565b6000612a5c612a57846131ae565b613189565b905082815260208101848484011115612a7857612a776136ae565b5b612a83848285613475565b509392505050565b6000612a9e612a99846131df565b613189565b905082815260208101848484011115612aba57612ab96136ae565b5b612ac5848285613475565b509392505050565b600081359050612adc816137c4565b92915050565b600081359050612af1816137db565b92915050565b600081359050612b06816137f2565b92915050565b600081519050612b1b816137f2565b92915050565b600082601f830112612b3657612b356136a9565b5b8135612b46848260208601612a49565b91505092915050565b600082601f830112612b6457612b636136a9565b5b8135612b74848260208601612a8b565b91505092915050565b600081359050612b8c81613809565b92915050565b600060208284031215612ba857612ba76136b8565b5b6000612bb684828501612acd565b91505092915050565b60008060408385031215612bd657612bd56136b8565b5b6000612be485828601612acd565b9250506020612bf585828601612acd565b9150509250929050565b600080600060608486031215612c1857612c176136b8565b5b6000612c2686828701612acd565b9350506020612c3786828701612acd565b9250506040612c4886828701612b7d565b9150509250925092565b60008060008060808587031215612c6c57612c6b6136b8565b5b6000612c7a87828801612acd565b9450506020612c8b87828801612acd565b9350506040612c9c87828801612b7d565b925050606085013567ffffffffffffffff811115612cbd57612cbc6136b3565b5b612cc987828801612b21565b91505092959194509250565b60008060408385031215612cec57612ceb6136b8565b5b6000612cfa85828601612acd565b9250506020612d0b85828601612ae2565b9150509250929050565b60008060408385031215612d2c57612d2b6136b8565b5b6000612d3a85828601612acd565b9250506020612d4b85828601612b7d565b9150509250929050565b600060208284031215612d6b57612d6a6136b8565b5b6000612d7984828501612af7565b91505092915050565b600060208284031215612d9857612d976136b8565b5b6000612da684828501612b0c565b91505092915050565b600060208284031215612dc557612dc46136b8565b5b600082013567ffffffffffffffff811115612de357612de26136b3565b5b612def84828501612b4f565b91505092915050565b600060208284031215612e0e57612e0d6136b8565b5b6000612e1c84828501612b7d565b91505092915050565b612e2e816133f1565b82525050565b612e3d81613403565b82525050565b6000612e4e82613210565b612e588185613226565b9350612e68818560208601613484565b612e71816136bd565b840191505092915050565b6000612e878261321b565b612e918185613242565b9350612ea1818560208601613484565b612eaa816136bd565b840191505092915050565b6000612ec08261321b565b612eca8185613253565b9350612eda818560208601613484565b80840191505092915050565b6000612ef3602683613242565b9150612efe826136ce565b604082019050919050565b6000612f16601883613242565b9150612f218261371d565b602082019050919050565b6000612f39600883613242565b9150612f4482613746565b602082019050919050565b6000612f5c601e83613242565b9150612f678261376f565b602082019050919050565b6000612f7f602083613242565b9150612f8a82613798565b602082019050919050565b6000612fa2600083613237565b9150612fad826137c1565b600082019050919050565b612fc18161345b565b82525050565b612fd081613465565b82525050565b6000612fe28285612eb5565b9150612fee8284612eb5565b91508190509392505050565b600061300582612f95565b9150819050919050565b60006020820190506130246000830184612e25565b92915050565b600060808201905061303f6000830187612e25565b61304c6020830186612e25565b6130596040830185612fb8565b818103606083015261306b8184612e43565b905095945050505050565b600060208201905061308b6000830184612e34565b92915050565b600060208201905081810360008301526130ab8184612e7c565b905092915050565b600060208201905081810360008301526130cc81612ee6565b9050919050565b600060208201905081810360008301526130ec81612f09565b9050919050565b6000602082019050818103600083015261310c81612f2c565b9050919050565b6000602082019050818103600083015261312c81612f4f565b9050919050565b6000602082019050818103600083015261314c81612f72565b9050919050565b60006020820190506131686000830184612fb8565b92915050565b60006020820190506131836000830184612fc7565b92915050565b60006131936131a4565b905061319f8282613513565b919050565b6000604051905090565b600067ffffffffffffffff8211156131c9576131c861367a565b5b6131d2826136bd565b9050602081019050919050565b600067ffffffffffffffff8211156131fa576131f961367a565b5b613203826136bd565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b60006132698261343b565b91506132748361343b565b92508273ffffffffffffffffffffffffffffffffffffffff0382111561329d5761329c6135be565b5b828201905092915050565b60006132b38261345b565b91506132be8361345b565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156132f3576132f26135be565b5b828201905092915050565b60006133098261345b565b91506133148361345b565b925082613324576133236135ed565b5b828204905092915050565b600061333a8261345b565b91506133458361345b565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561337e5761337d6135be565b5b828202905092915050565b60006133948261343b565b915061339f8361343b565b9250828210156133b2576133b16135be565b5b828203905092915050565b60006133c88261345b565b91506133d38361345b565b9250828210156133e6576133e56135be565b5b828203905092915050565b60006133fc8261343b565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600063ffffffff82169050919050565b82818337600083830152505050565b60005b838110156134a2578082015181840152602081019050613487565b838111156134b1576000848401525b50505050565b60006134c28261345b565b915060008214156134d6576134d56135be565b5b600182039050919050565b600060028204905060018216806134f957607f821691505b6020821081141561350d5761350c61361c565b5b50919050565b61351c826136bd565b810181811067ffffffffffffffff8211171561353b5761353a61367a565b5b80604052505050565b600061354f8261345b565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613582576135816135be565b5b600182019050919050565b60006135988261345b565b91506135a38361345b565b9250826135b3576135b26135ed565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f5472616e73616374696f6e20556e7375636365737366756c0000000000000000600082015250565b7f736f6c64206f7574000000000000000000000000000000000000000000000000600082015250565b7f5468652063616c6c657220697320616e6f7468657220636f6e74726163740000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b50565b6137cd816133f1565b81146137d857600080fd5b50565b6137e481613403565b81146137ef57600080fd5b50565b6137fb8161340f565b811461380657600080fd5b50565b6138128161345b565b811461381d57600080fd5b5056fea2646970667358221220daddf841a57cdb5dabcec623dec1a66871dca0eba9a6a862bffd0e7d93f18bf264736f6c63430008070033

Deployed Bytecode Sourcemap

48256:1681:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28630:305;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32471:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33974:204;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33537:371;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;27741:372;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34831:170;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;49124:427;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;49652:278;;;;;;;;;;;;;:::i;:::-;;35072:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;48307:83;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32280:124;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48399:48;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29001:395;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4556:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32640:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48912:86;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;34250:279;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;35328:369;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;32815:318;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48454:40;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34600:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5008:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;49559:85;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;48501:37;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28630:305;28732:4;28784:25;28769:40;;;:11;:40;;;;:105;;;;28841:33;28826:48;;;:11;:48;;;;28769:105;:158;;;;28891:36;28915:11;28891:23;:36::i;:::-;28769:158;28749:178;;28630:305;;;:::o;32471:100::-;32525:13;32558:5;32551:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32471:100;:::o;33974:204::-;34042:7;34067:16;34075:7;34067;:16::i;:::-;34062:64;;34092:34;;;;;;;;;;;;;;34062:64;34146:15;:24;34162:7;34146:24;;;;;;;;;;;;;;;;;;;;;34139:31;;33974:204;;;:::o;33537:371::-;33610:13;33626:24;33642:7;33626:15;:24::i;:::-;33610:40;;33671:5;33665:11;;:2;:11;;;33661:48;;;33685:24;;;;;;;;;;;;;;33661:48;33742:5;33726:21;;:12;:10;:12::i;:::-;:21;;;;:63;;;;;33752:37;33769:5;33776:12;:10;:12::i;:::-;33752:16;:37::i;:::-;33751:38;33726:63;33722:138;;;33813:35;;;;;;;;;;;;;;33722:138;33872:28;33881:2;33885:7;33894:5;33872:8;:28::i;:::-;33599:309;33537:371;;:::o;27741:372::-;27785:7;27972:14;28020:15;:13;:15::i;:::-;28005:12;;27989:13;;:28;:46;27972:63;;27730:4;28057:6;:17;:37;;27730:4;28057:37;;;28077:6;28057:37;28050:44;;;27741:372;:::o;34831:170::-;34965:28;34975:4;34981:2;34985:7;34965:9;:28::i;:::-;34831:170;;;:::o;49124:427::-;48652:10;48639:23;;:9;:23;;;48631:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;49232:9:::1;49206:35;;49222:6;49206:13;:11;:13::i;:::-;:22;;;;:::i;:::-;:35;;49198:56;;;;;;;;;;;;:::i;:::-;;;;;;;;;49265:18;49286:6;49265:27;;49318:15;:27;49334:10;49318:27;;;;;;;;;;;;;;;;;;;;;;;;;49313:122;;49392:4;49362:15;:27;49378:10;49362:27;;;;;;;;;;;;;;;;:34;;;;;;;;;;;;;;;;;;49411:12;;;;;:::i;:::-;;;;49313:122;49476:10;49464:9;:22;;;;:::i;:::-;49451:9;:35;49447:97;;49503:29;49513:10;49525:6;49503:9;:29::i;:::-;49447:97;49187:364;49124:427:::0;:::o;49652:278::-;4442:13;:11;:13::i;:::-;49700:18:::1;49721:21;49700:42;;49755:9;49775:10;49755:31;;49799:12;49838:1;:6;;49852:10;49838:29;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49824:43;;;;;49886:7;49878:44;;;;;;;;;;;;:::i;:::-;;;;;;;;;49689:241;;;49652:278::o:0;35072:185::-;35210:39;35227:4;35233:2;35237:7;35210:39;;;;;;;;;;;;:16;:39::i;:::-;35072:185;;;:::o;48307:83::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;32280:124::-;32344:7;32371:20;32383:7;32371:11;:20::i;:::-;:25;;;32364:32;;32280:124;;;:::o;48399:48::-;;;:::o;29001:395::-;29065:7;29106:1;29089:19;;:5;:19;;;29085:60;;;29117:28;;;;;;;;;;;;;;29085:60;29193:1;29162:12;:19;29175:5;29162:19;;;;;;;;;;;;;;;:27;;;;;;;;;;;;:32;;;29158:108;;29226:12;:19;29239:5;29226:19;;;;;;;;;;;;;;;:27;;;;;;;;;;;;29218:36;;29211:43;;;;29158:108;29318:13;;29307:6;29290:5;29282:32;;;;:::i;:::-;:49;;;29278:90;;29355:1;29348:8;;;;29278:90;29387:1;29380:8;;29001:395;;;;:::o;4556:87::-;4602:7;4629:6;;;;;;;;;;;4622:13;;4556:87;:::o;32640:104::-;32696:13;32729:7;32722:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32640:104;:::o;48912:86::-;4442:13;:11;:13::i;:::-;48987:3:::1;48975:9;:15;;;;;;;;;;;;:::i;:::-;;48912:86:::0;:::o;34250:279::-;34353:12;:10;:12::i;:::-;34341:24;;:8;:24;;;34337:54;;;34374:17;;;;;;;;;;;;;;34337:54;34449:8;34404:18;:32;34423:12;:10;:12::i;:::-;34404:32;;;;;;;;;;;;;;;:42;34437:8;34404:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;34502:8;34473:48;;34488:12;:10;:12::i;:::-;34473:48;;;34512:8;34473:48;;;;;;:::i;:::-;;;;;;;;34250:279;;:::o;35328:369::-;35495:28;35505:4;35511:2;35515:7;35495:9;:28::i;:::-;35538:15;:2;:13;;;:15::i;:::-;:76;;;;;35558:56;35589:4;35595:2;35599:7;35608:5;35558:30;:56::i;:::-;35557:57;35538:76;35534:156;;;35638:40;;;;;;;;;;;;;;35534:156;35328:369;;;;:::o;32815:318::-;32888:13;32919:16;32927:7;32919;:16::i;:::-;32914:59;;32944:29;;;;;;;;;;;;;;32914:59;32986:21;33010:10;:8;:10::i;:::-;32986:34;;33063:1;33044:7;33038:21;:26;;:87;;;;;;;;;;;;;;;;;33091:7;33100:18;:7;:16;:18::i;:::-;33074:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;33038:87;33031:94;;;32815:318;;;:::o;48454:40::-;;;:::o;34600:164::-;34697:4;34721:18;:25;34740:5;34721:25;;;;;;;;;;;;;;;:35;34747:8;34721:35;;;;;;;;;;;;;;;;;;;;;;;;;34714:42;;34600:164;;;;:::o;5008:201::-;4442:13;:11;:13::i;:::-;5117:1:::1;5097:22;;:8;:22;;;;5089:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;5173:28;5192:8;5173:18;:28::i;:::-;5008:201:::0;:::o;49559:85::-;4442:13;:11;:13::i;:::-;49622:14:::1;49629:6;49622;:14::i;:::-;49559:85:::0;:::o;48501:37::-;;;:::o;16956:157::-;17041:4;17080:25;17065:40;;;:11;:40;;;;17058:47;;16956:157;;;:::o;35952:187::-;36009:4;36052:7;36033:15;:13;:15::i;:::-;:26;;:53;;;;;36073:13;;36063:7;:23;36033:53;:98;;;;;36104:11;:20;36116:7;36104:20;;;;;;;;;;;:27;;;;;;;;;;;;36103:28;36033:98;36026:105;;35952:187;;;:::o;3107:98::-;3160:7;3187:10;3180:17;;3107:98;:::o;45240:196::-;45382:2;45355:15;:24;45371:7;45355:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;45420:7;45416:2;45400:28;;45409:5;45400:28;;;;;;;;;;;;45240:196;;;:::o;49006:110::-;49080:7;49107:1;49100:8;;49006:110;:::o;40742:2112::-;40857:35;40895:20;40907:7;40895:11;:20::i;:::-;40857:58;;40928:22;40970:13;:18;;;40954:34;;:12;:10;:12::i;:::-;:34;;;:101;;;;41005:50;41022:13;:18;;;41042:12;:10;:12::i;:::-;41005:16;:50::i;:::-;40954:101;:154;;;;41096:12;:10;:12::i;:::-;41072:36;;:20;41084:7;41072:11;:20::i;:::-;:36;;;40954:154;40928:181;;41127:17;41122:66;;41153:35;;;;;;;;;;;;;;41122:66;41225:4;41203:26;;:13;:18;;;:26;;;41199:67;;41238:28;;;;;;;;;;;;;;41199:67;41295:1;41281:16;;:2;:16;;;41277:52;;;41306:23;;;;;;;;;;;;;;41277:52;41342:43;41364:4;41370:2;41374:7;41383:1;41342:21;:43::i;:::-;41450:49;41467:1;41471:7;41480:13;:18;;;41450:8;:49::i;:::-;41825:1;41795:12;:18;41808:4;41795:18;;;;;;;;;;;;;;;:26;;;:31;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41869:1;41841:12;:16;41854:2;41841:16;;;;;;;;;;;;;;;:24;;;:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41915:2;41887:11;:20;41899:7;41887:20;;;;;;;;;;;:25;;;:30;;;;;;;;;;;;;;;;;;41977:15;41932:11;:20;41944:7;41932:20;;;;;;;;;;;:35;;;:61;;;;;;;;;;;;;;;;;;42245:19;42277:1;42267:7;:11;42245:33;;42338:1;42297:43;;:11;:24;42309:11;42297:24;;;;;;;;;;;:29;;;;;;;;;;;;:43;;;42293:445;;;42522:13;;42508:11;:27;42504:219;;;42592:13;:18;;;42560:11;:24;42572:11;42560:24;;;;;;;;;;;:29;;;:50;;;;;;;;;;;;;;;;;;42675:13;:28;;;42633:11;:24;42645:11;42633:24;;;;;;;;;;;:39;;;:70;;;;;;;;;;;;;;;;;;42504:219;42293:445;41770:979;42785:7;42781:2;42766:27;;42775:4;42766:27;;;;;;;;;;;;42804:42;42825:4;42831:2;42835:7;42844:1;42804:20;:42::i;:::-;40846:2008;;40742:2112;;;:::o;36147:104::-;36216:27;36226:2;36230:8;36216:27;;;;;;;;;;;;:9;:27::i;:::-;36147:104;;:::o;4721:132::-;4796:12;:10;:12::i;:::-;4785:23;;:7;:5;:7::i;:::-;:23;;;4777:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;4721:132::o;30931:1287::-;30992:21;;:::i;:::-;31026:12;31041:7;31026:22;;31109:4;31090:15;:13;:15::i;:::-;:23;;:47;;;;;31124:13;;31117:4;:20;31090:47;31086:1065;;;31158:31;31192:11;:17;31204:4;31192:17;;;;;;;;;;;31158:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31233:9;:16;;;31228:904;;31304:1;31278:28;;:9;:14;;;:28;;;31274:101;;31342:9;31335:16;;;;;;31274:101;31679:13;31695:1;31679:17;;31719:270;31748:6;;;;;;;;31793:11;:17;31805:4;31793:17;;;;;;;;;;;31781:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31867:1;31841:28;;:9;:14;;;:28;;;31837:109;;31909:9;31902:16;;;;;;;31837:109;31986:1;31976:7;;;;;;;:11;31719:270;;32064:7;32046:6;32038:34;32013:9;:14;;:60;;;;;;;;;;;32103:9;32096:16;;;;;;;31228:904;31139:1012;31086:1065;32179:31;;;;;;;;;;;;;;30931:1287;;;;:::o;6800:326::-;6860:4;7117:1;7095:7;:19;;;:23;7088:30;;6800:326;;;:::o;45928:667::-;46091:4;46128:2;46112:36;;;46149:12;:10;:12::i;:::-;46163:4;46169:7;46178:5;46112:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;46108:480;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46363:1;46346:6;:13;:18;46342:235;;;46392:40;;;;;;;;;;;;;;46342:235;46535:6;46529:13;46520:6;46516:2;46512:15;46505:38;46108:480;46241:45;;;46231:55;;;:6;:55;;;;46224:62;;;45928:667;;;;;;:::o;48793:111::-;48854:13;48887:9;48880:16;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48793:111;:::o;361:723::-;417:13;647:1;638:5;:10;634:53;;;665:10;;;;;;;;;;;;;;;;;;;;;634:53;697:12;712:5;697:20;;728:14;753:78;768:1;760:4;:9;753:78;;786:8;;;;;:::i;:::-;;;;817:2;809:10;;;;;:::i;:::-;;;753:78;;;841:19;873:6;863:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;841:39;;891:154;907:1;898:5;:10;891:154;;935:1;925:11;;;;;:::i;:::-;;;1002:2;994:5;:10;;;;:::i;:::-;981:2;:24;;;;:::i;:::-;968:39;;951:6;958;951:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;1031:2;1022:11;;;;;:::i;:::-;;;891:154;;;1069:6;1055:21;;;;;361:723;;;;:::o;5369:191::-;5443:16;5462:6;;;;;;;;;;;5443:25;;5488:8;5479:6;;:17;;;;;;;;;;;;;;;;;;5543:8;5512:40;;5533:8;5512:40;;;;;;;;;;;;5432:128;5369:191;:::o;36785:113::-;36867:19;36877:8;36867:9;:19::i;:::-;36785:113;:::o;47243:159::-;;;;;:::o;48061:158::-;;;;;:::o;36614:163::-;36737:32;36743:2;36747:8;36757:5;36764:4;36737:5;:32::i;:::-;36614:163;;;:::o;39869:619::-;39970:1;39958:8;:13;39954:44;;;39980:18;;;;;;;;;;;;;;39954:44;40015:20;40038:13;;40015:36;;40066:11;40095:8;40080:12;:23;;;;:::i;:::-;40066:37;;40186:12;40168:6;40160:39;;;;:::i;:::-;40118:11;:26;40130:13;;40118:26;;;;;;;;;;;:31;;;:82;;;;;;;;;;;;;;;;;;40258:166;40360:14;;;;;;40344:12;40326:6;40318:39;40289:86;;40306:1;40289:86;;;;;;;;;;;;40419:3;40403:12;:19;;40258:166;;40470:8;40453:13;;:25;;;;;;;:::i;:::-;;;;;;;;39939:549;;39869:619;:::o;37157:2704::-;37296:20;37319:13;;37296:36;;37361:1;37347:16;;:2;:16;;;37343:48;;;37372:19;;;;;;;;;;;;;;37343:48;37418:1;37406:8;:13;37402:26;;;37421:7;;;37402:26;27730:4;37444:13;;:25;37440:1298;;37501:14;;37486:29;;37597:8;37562:12;:16;37575:2;37562:16;;;;;;;;;;;;;;;:24;;;:44;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37665:8;37625:12;:16;37638:2;37625:16;;;;;;;;;;;;;;;:29;;;:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37728:2;37695:11;:25;37707:12;37695:25;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;37799:15;37749:11;:25;37761:12;37749:25;;;;;;;;;;;:40;;;:66;;;;;;;;;;;;;;;;;;37836:20;37859:12;37836:35;;37890:11;37919:8;37904:12;:23;37890:37;;37952:4;:23;;;;;37960:15;:2;:13;;;:15::i;:::-;37952:23;37948:693;;;38000:334;38060:12;38056:2;38035:38;;38052:1;38035:38;;;;;;;;;;;;38105:69;38144:1;38148:2;38152:14;;;;;;38168:5;38105:30;:69::i;:::-;38100:182;;38214:40;;;;;;;;;;;;;;38100:182;38329:3;38313:12;:19;;38000:334;;38423:12;38406:13;;:29;38402:43;;38437:8;;;38402:43;37948:693;;;38494:128;38554:14;;;;;;38550:2;38529:40;;38546:1;38529:40;;;;;;;;;;;;38617:3;38601:12;:19;;38494:128;;37948:693;38676:12;38659:14;:29;;;;37533:1171;;38720:7;;;37440:1298;38820:8;38785:12;:16;38798:2;38785:16;;;;;;;;;;;;;;;:24;;;:44;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38884:8;38844:12;:16;38857:2;38844:16;;;;;;;;;;;;;;;:29;;;:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38943:2;38910:11;:25;38922:12;38910:25;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;39010:15;38960:11;:25;38972:12;38960:25;;;;;;;;;;;:40;;;:66;;;;;;;;;;;;;;;;;;39043:20;39066:12;39043:35;;39093:11;39122:8;39107:12;:23;39093:37;;39151:4;:23;;;;;39159:15;:2;:13;;;:15::i;:::-;39151:23;39147:641;;;39195:314;39251:12;39247:2;39226:38;;39243:1;39226:38;;;;;;;;;;;;39292:69;39331:1;39335:2;39339:14;;;;;;39355:5;39292:30;:69::i;:::-;39287:174;;39397:40;;;;;;;;;;;;;;39287:174;39504:3;39488:12;:19;;39195:314;;39590:12;39573:13;;:29;39569:43;;39604:8;;;39569:43;39147:641;;;39653:120;39709:14;;;;;;39705:2;39684:40;;39701:1;39684:40;;;;;;;;;;;;39768:3;39752:12;:19;;39653:120;;39147:641;39818:12;39802:13;:28;;;;38760:1082;;37285:2576;37157:2704;;;;;:::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;1786:340::-;1842:5;1891:3;1884:4;1876:6;1872:17;1868:27;1858:122;;1899:79;;:::i;:::-;1858:122;2016:6;2003:20;2041:79;2116:3;2108:6;2101:4;2093:6;2089:17;2041:79;:::i;:::-;2032:88;;1848:278;1786:340;;;;:::o;2132:139::-;2178:5;2216:6;2203:20;2194:29;;2232:33;2259:5;2232:33;:::i;:::-;2132:139;;;;:::o;2277:329::-;2336:6;2385:2;2373:9;2364:7;2360:23;2356:32;2353:119;;;2391:79;;:::i;:::-;2353:119;2511:1;2536:53;2581:7;2572:6;2561:9;2557:22;2536:53;:::i;:::-;2526:63;;2482:117;2277:329;;;;:::o;2612:474::-;2680:6;2688;2737:2;2725:9;2716:7;2712:23;2708:32;2705:119;;;2743:79;;:::i;:::-;2705:119;2863:1;2888:53;2933:7;2924:6;2913:9;2909:22;2888:53;:::i;:::-;2878:63;;2834:117;2990:2;3016:53;3061:7;3052:6;3041:9;3037:22;3016:53;:::i;:::-;3006:63;;2961:118;2612:474;;;;;:::o;3092:619::-;3169:6;3177;3185;3234:2;3222:9;3213:7;3209:23;3205:32;3202:119;;;3240:79;;:::i;:::-;3202:119;3360:1;3385:53;3430:7;3421:6;3410:9;3406:22;3385:53;:::i;:::-;3375:63;;3331:117;3487:2;3513:53;3558:7;3549:6;3538:9;3534:22;3513:53;:::i;:::-;3503:63;;3458:118;3615:2;3641:53;3686:7;3677:6;3666:9;3662:22;3641:53;:::i;:::-;3631:63;;3586:118;3092:619;;;;;:::o;3717:943::-;3812:6;3820;3828;3836;3885:3;3873:9;3864:7;3860:23;3856:33;3853:120;;;3892:79;;:::i;:::-;3853:120;4012:1;4037:53;4082:7;4073:6;4062:9;4058:22;4037:53;:::i;:::-;4027:63;;3983:117;4139:2;4165:53;4210:7;4201:6;4190:9;4186:22;4165:53;:::i;:::-;4155:63;;4110:118;4267:2;4293:53;4338:7;4329:6;4318:9;4314:22;4293:53;:::i;:::-;4283:63;;4238:118;4423:2;4412:9;4408:18;4395:32;4454:18;4446:6;4443:30;4440:117;;;4476:79;;:::i;:::-;4440:117;4581:62;4635:7;4626:6;4615:9;4611:22;4581:62;:::i;:::-;4571:72;;4366:287;3717:943;;;;;;;:::o;4666:468::-;4731:6;4739;4788:2;4776:9;4767:7;4763:23;4759:32;4756:119;;;4794:79;;:::i;:::-;4756:119;4914:1;4939:53;4984:7;4975:6;4964:9;4960:22;4939:53;:::i;:::-;4929:63;;4885:117;5041:2;5067:50;5109:7;5100:6;5089:9;5085:22;5067:50;:::i;:::-;5057:60;;5012:115;4666:468;;;;;:::o;5140:474::-;5208:6;5216;5265:2;5253:9;5244:7;5240:23;5236:32;5233:119;;;5271:79;;:::i;:::-;5233:119;5391:1;5416:53;5461:7;5452:6;5441:9;5437:22;5416:53;:::i;:::-;5406:63;;5362:117;5518:2;5544:53;5589:7;5580:6;5569:9;5565:22;5544:53;:::i;:::-;5534:63;;5489:118;5140:474;;;;;:::o;5620:327::-;5678:6;5727:2;5715:9;5706:7;5702:23;5698:32;5695:119;;;5733:79;;:::i;:::-;5695:119;5853:1;5878:52;5922:7;5913:6;5902:9;5898:22;5878:52;:::i;:::-;5868:62;;5824:116;5620:327;;;;:::o;5953:349::-;6022:6;6071:2;6059:9;6050:7;6046:23;6042:32;6039:119;;;6077:79;;:::i;:::-;6039:119;6197:1;6222:63;6277:7;6268:6;6257:9;6253:22;6222:63;:::i;:::-;6212:73;;6168:127;5953:349;;;;:::o;6308:509::-;6377:6;6426:2;6414:9;6405:7;6401:23;6397:32;6394:119;;;6432:79;;:::i;:::-;6394:119;6580:1;6569:9;6565:17;6552:31;6610:18;6602:6;6599:30;6596:117;;;6632:79;;:::i;:::-;6596:117;6737:63;6792:7;6783:6;6772:9;6768:22;6737:63;:::i;:::-;6727:73;;6523:287;6308:509;;;;:::o;6823:329::-;6882:6;6931:2;6919:9;6910:7;6906:23;6902:32;6899:119;;;6937:79;;:::i;:::-;6899:119;7057:1;7082:53;7127:7;7118:6;7107:9;7103:22;7082:53;:::i;:::-;7072:63;;7028:117;6823:329;;;;:::o;7158:118::-;7245:24;7263:5;7245:24;:::i;:::-;7240:3;7233:37;7158:118;;:::o;7282:109::-;7363:21;7378:5;7363:21;:::i;:::-;7358:3;7351:34;7282:109;;:::o;7397:360::-;7483:3;7511:38;7543:5;7511:38;:::i;:::-;7565:70;7628:6;7623:3;7565:70;:::i;:::-;7558:77;;7644:52;7689:6;7684:3;7677:4;7670:5;7666:16;7644:52;:::i;:::-;7721:29;7743:6;7721:29;:::i;:::-;7716:3;7712:39;7705:46;;7487:270;7397:360;;;;:::o;7763:364::-;7851:3;7879:39;7912:5;7879:39;:::i;:::-;7934:71;7998:6;7993:3;7934:71;:::i;:::-;7927:78;;8014:52;8059:6;8054:3;8047:4;8040:5;8036:16;8014:52;:::i;:::-;8091:29;8113:6;8091:29;:::i;:::-;8086:3;8082:39;8075:46;;7855:272;7763:364;;;;:::o;8133:377::-;8239:3;8267:39;8300:5;8267:39;:::i;:::-;8322:89;8404:6;8399:3;8322:89;:::i;:::-;8315:96;;8420:52;8465:6;8460:3;8453:4;8446:5;8442:16;8420:52;:::i;:::-;8497:6;8492:3;8488:16;8481:23;;8243:267;8133:377;;;;:::o;8516:366::-;8658:3;8679:67;8743:2;8738:3;8679:67;:::i;:::-;8672:74;;8755:93;8844:3;8755:93;:::i;:::-;8873:2;8868:3;8864:12;8857:19;;8516:366;;;:::o;8888:::-;9030:3;9051:67;9115:2;9110:3;9051:67;:::i;:::-;9044:74;;9127:93;9216:3;9127:93;:::i;:::-;9245:2;9240:3;9236:12;9229:19;;8888:366;;;:::o;9260:365::-;9402:3;9423:66;9487:1;9482:3;9423:66;:::i;:::-;9416:73;;9498:93;9587:3;9498:93;:::i;:::-;9616:2;9611:3;9607:12;9600:19;;9260:365;;;:::o;9631:366::-;9773:3;9794:67;9858:2;9853:3;9794:67;:::i;:::-;9787:74;;9870:93;9959:3;9870:93;:::i;:::-;9988:2;9983:3;9979:12;9972:19;;9631:366;;;:::o;10003:::-;10145:3;10166:67;10230:2;10225:3;10166:67;:::i;:::-;10159:74;;10242:93;10331:3;10242:93;:::i;:::-;10360:2;10355:3;10351:12;10344:19;;10003:366;;;:::o;10375:398::-;10534:3;10555:83;10636:1;10631:3;10555:83;:::i;:::-;10548:90;;10647:93;10736:3;10647:93;:::i;:::-;10765:1;10760:3;10756:11;10749:18;;10375:398;;;:::o;10779:118::-;10866:24;10884:5;10866:24;:::i;:::-;10861:3;10854:37;10779:118;;:::o;10903:115::-;10988:23;11005:5;10988:23;:::i;:::-;10983:3;10976:36;10903:115;;:::o;11024:435::-;11204:3;11226:95;11317:3;11308:6;11226:95;:::i;:::-;11219:102;;11338:95;11429:3;11420:6;11338:95;:::i;:::-;11331:102;;11450:3;11443:10;;11024:435;;;;;:::o;11465:379::-;11649:3;11671:147;11814:3;11671:147;:::i;:::-;11664:154;;11835:3;11828:10;;11465:379;;;:::o;11850:222::-;11943:4;11981:2;11970:9;11966:18;11958:26;;11994:71;12062:1;12051:9;12047:17;12038:6;11994:71;:::i;:::-;11850:222;;;;:::o;12078:640::-;12273:4;12311:3;12300:9;12296:19;12288:27;;12325:71;12393:1;12382:9;12378:17;12369:6;12325:71;:::i;:::-;12406:72;12474:2;12463:9;12459:18;12450:6;12406:72;:::i;:::-;12488;12556:2;12545:9;12541:18;12532:6;12488:72;:::i;:::-;12607:9;12601:4;12597:20;12592:2;12581:9;12577:18;12570:48;12635:76;12706:4;12697:6;12635:76;:::i;:::-;12627:84;;12078:640;;;;;;;:::o;12724:210::-;12811:4;12849:2;12838:9;12834:18;12826:26;;12862:65;12924:1;12913:9;12909:17;12900:6;12862:65;:::i;:::-;12724:210;;;;:::o;12940:313::-;13053:4;13091:2;13080:9;13076:18;13068:26;;13140:9;13134:4;13130:20;13126:1;13115:9;13111:17;13104:47;13168:78;13241:4;13232:6;13168:78;:::i;:::-;13160:86;;12940:313;;;;:::o;13259:419::-;13425:4;13463:2;13452:9;13448:18;13440:26;;13512:9;13506:4;13502:20;13498:1;13487:9;13483:17;13476:47;13540:131;13666:4;13540:131;:::i;:::-;13532:139;;13259:419;;;:::o;13684:::-;13850:4;13888:2;13877:9;13873:18;13865:26;;13937:9;13931:4;13927:20;13923:1;13912:9;13908:17;13901:47;13965:131;14091:4;13965:131;:::i;:::-;13957:139;;13684:419;;;:::o;14109:::-;14275:4;14313:2;14302:9;14298:18;14290:26;;14362:9;14356:4;14352:20;14348:1;14337:9;14333:17;14326:47;14390:131;14516:4;14390:131;:::i;:::-;14382:139;;14109:419;;;:::o;14534:::-;14700:4;14738:2;14727:9;14723:18;14715:26;;14787:9;14781:4;14777:20;14773:1;14762:9;14758:17;14751:47;14815:131;14941:4;14815:131;:::i;:::-;14807:139;;14534:419;;;:::o;14959:::-;15125:4;15163:2;15152:9;15148:18;15140:26;;15212:9;15206:4;15202:20;15198:1;15187:9;15183:17;15176:47;15240:131;15366:4;15240:131;:::i;:::-;15232:139;;14959:419;;;:::o;15384:222::-;15477:4;15515:2;15504:9;15500:18;15492:26;;15528:71;15596:1;15585:9;15581:17;15572:6;15528:71;:::i;:::-;15384:222;;;;:::o;15612:218::-;15703:4;15741:2;15730:9;15726:18;15718:26;;15754:69;15820:1;15809:9;15805:17;15796:6;15754:69;:::i;:::-;15612:218;;;;:::o;15836:129::-;15870:6;15897:20;;:::i;:::-;15887:30;;15926:33;15954:4;15946:6;15926:33;:::i;:::-;15836:129;;;:::o;15971:75::-;16004:6;16037:2;16031:9;16021:19;;15971:75;:::o;16052:307::-;16113:4;16203:18;16195:6;16192:30;16189:56;;;16225:18;;:::i;:::-;16189:56;16263:29;16285:6;16263:29;:::i;:::-;16255:37;;16347:4;16341;16337:15;16329:23;;16052:307;;;:::o;16365:308::-;16427:4;16517:18;16509:6;16506:30;16503:56;;;16539:18;;:::i;:::-;16503:56;16577:29;16599:6;16577:29;:::i;:::-;16569:37;;16661:4;16655;16651:15;16643:23;;16365:308;;;:::o;16679:98::-;16730:6;16764:5;16758:12;16748:22;;16679:98;;;:::o;16783:99::-;16835:6;16869:5;16863:12;16853:22;;16783:99;;;:::o;16888:168::-;16971:11;17005:6;17000:3;16993:19;17045:4;17040:3;17036:14;17021:29;;16888:168;;;;:::o;17062:147::-;17163:11;17200:3;17185:18;;17062:147;;;;:::o;17215:169::-;17299:11;17333:6;17328:3;17321:19;17373:4;17368:3;17364:14;17349:29;;17215:169;;;;:::o;17390:148::-;17492:11;17529:3;17514:18;;17390:148;;;;:::o;17544:281::-;17584:3;17603:20;17621:1;17603:20;:::i;:::-;17598:25;;17637:20;17655:1;17637:20;:::i;:::-;17632:25;;17767:1;17723:42;17719:50;17716:1;17713:57;17710:83;;;17773:18;;:::i;:::-;17710:83;17817:1;17814;17810:9;17803:16;;17544:281;;;;:::o;17831:305::-;17871:3;17890:20;17908:1;17890:20;:::i;:::-;17885:25;;17924:20;17942:1;17924:20;:::i;:::-;17919:25;;18078:1;18010:66;18006:74;18003:1;18000:81;17997:107;;;18084:18;;:::i;:::-;17997:107;18128:1;18125;18121:9;18114:16;;17831:305;;;;:::o;18142:185::-;18182:1;18199:20;18217:1;18199:20;:::i;:::-;18194:25;;18233:20;18251:1;18233:20;:::i;:::-;18228:25;;18272:1;18262:35;;18277:18;;:::i;:::-;18262:35;18319:1;18316;18312:9;18307:14;;18142:185;;;;:::o;18333:348::-;18373:7;18396:20;18414:1;18396:20;:::i;:::-;18391:25;;18430:20;18448:1;18430:20;:::i;:::-;18425:25;;18618:1;18550:66;18546:74;18543:1;18540:81;18535:1;18528:9;18521:17;18517:105;18514:131;;;18625:18;;:::i;:::-;18514:131;18673:1;18670;18666:9;18655:20;;18333:348;;;;:::o;18687:191::-;18727:4;18747:20;18765:1;18747:20;:::i;:::-;18742:25;;18781:20;18799:1;18781:20;:::i;:::-;18776:25;;18820:1;18817;18814:8;18811:34;;;18825:18;;:::i;:::-;18811:34;18870:1;18867;18863:9;18855:17;;18687:191;;;;:::o;18884:::-;18924:4;18944:20;18962:1;18944:20;:::i;:::-;18939:25;;18978:20;18996:1;18978:20;:::i;:::-;18973:25;;19017:1;19014;19011:8;19008:34;;;19022:18;;:::i;:::-;19008:34;19067:1;19064;19060:9;19052:17;;18884:191;;;;:::o;19081:96::-;19118:7;19147:24;19165:5;19147:24;:::i;:::-;19136:35;;19081:96;;;:::o;19183:90::-;19217:7;19260:5;19253:13;19246:21;19235:32;;19183:90;;;:::o;19279:149::-;19315:7;19355:66;19348:5;19344:78;19333:89;;19279:149;;;:::o;19434:126::-;19471:7;19511:42;19504:5;19500:54;19489:65;;19434:126;;;:::o;19566:77::-;19603:7;19632:5;19621:16;;19566:77;;;:::o;19649:93::-;19685:7;19725:10;19718:5;19714:22;19703:33;;19649:93;;;:::o;19748:154::-;19832:6;19827:3;19822;19809:30;19894:1;19885:6;19880:3;19876:16;19869:27;19748:154;;;:::o;19908:307::-;19976:1;19986:113;20000:6;19997:1;19994:13;19986:113;;;20085:1;20080:3;20076:11;20070:18;20066:1;20061:3;20057:11;20050:39;20022:2;20019:1;20015:10;20010:15;;19986:113;;;20117:6;20114:1;20111:13;20108:101;;;20197:1;20188:6;20183:3;20179:16;20172:27;20108:101;19957:258;19908:307;;;:::o;20221:171::-;20260:3;20283:24;20301:5;20283:24;:::i;:::-;20274:33;;20329:4;20322:5;20319:15;20316:41;;;20337:18;;:::i;:::-;20316:41;20384:1;20377:5;20373:13;20366:20;;20221:171;;;:::o;20398:320::-;20442:6;20479:1;20473:4;20469:12;20459:22;;20526:1;20520:4;20516:12;20547:18;20537:81;;20603:4;20595:6;20591:17;20581:27;;20537:81;20665:2;20657:6;20654:14;20634:18;20631:38;20628:84;;;20684:18;;:::i;:::-;20628:84;20449:269;20398:320;;;:::o;20724:281::-;20807:27;20829:4;20807:27;:::i;:::-;20799:6;20795:40;20937:6;20925:10;20922:22;20901:18;20889:10;20886:34;20883:62;20880:88;;;20948:18;;:::i;:::-;20880:88;20988:10;20984:2;20977:22;20767:238;20724:281;;:::o;21011:233::-;21050:3;21073:24;21091:5;21073:24;:::i;:::-;21064:33;;21119:66;21112:5;21109:77;21106:103;;;21189:18;;:::i;:::-;21106:103;21236:1;21229:5;21225:13;21218:20;;21011:233;;;:::o;21250:176::-;21282:1;21299:20;21317:1;21299:20;:::i;:::-;21294:25;;21333:20;21351:1;21333:20;:::i;:::-;21328:25;;21372:1;21362:35;;21377:18;;:::i;:::-;21362:35;21418:1;21415;21411:9;21406:14;;21250:176;;;;:::o;21432:180::-;21480:77;21477:1;21470:88;21577:4;21574:1;21567:15;21601:4;21598:1;21591:15;21618:180;21666:77;21663:1;21656:88;21763:4;21760:1;21753:15;21787:4;21784:1;21777:15;21804:180;21852:77;21849:1;21842:88;21949:4;21946:1;21939:15;21973:4;21970:1;21963:15;21990:180;22038:77;22035:1;22028:88;22135:4;22132:1;22125:15;22159:4;22156:1;22149:15;22176:180;22224:77;22221:1;22214:88;22321:4;22318:1;22311:15;22345:4;22342:1;22335:15;22362:117;22471:1;22468;22461:12;22485:117;22594:1;22591;22584:12;22608:117;22717:1;22714;22707:12;22731:117;22840:1;22837;22830:12;22854:102;22895:6;22946:2;22942:7;22937:2;22930:5;22926:14;22922:28;22912:38;;22854:102;;;:::o;22962:225::-;23102:34;23098:1;23090:6;23086:14;23079:58;23171:8;23166:2;23158:6;23154:15;23147:33;22962:225;:::o;23193:174::-;23333:26;23329:1;23321:6;23317:14;23310:50;23193:174;:::o;23373:158::-;23513:10;23509:1;23501:6;23497:14;23490:34;23373:158;:::o;23537:180::-;23677:32;23673:1;23665:6;23661:14;23654:56;23537:180;:::o;23723:182::-;23863:34;23859:1;23851:6;23847:14;23840:58;23723:182;:::o;23911:114::-;;:::o;24031:122::-;24104:24;24122:5;24104:24;:::i;:::-;24097:5;24094:35;24084:63;;24143:1;24140;24133:12;24084:63;24031:122;:::o;24159:116::-;24229:21;24244:5;24229:21;:::i;:::-;24222:5;24219:32;24209:60;;24265:1;24262;24255:12;24209:60;24159:116;:::o;24281:120::-;24353:23;24370:5;24353:23;:::i;:::-;24346:5;24343:34;24333:62;;24391:1;24388;24381:12;24333:62;24281:120;:::o;24407:122::-;24480:24;24498:5;24480:24;:::i;:::-;24473:5;24470:35;24460:63;;24519:1;24516;24509:12;24460:63;24407:122;:::o

Swarm Source

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