ETH Price: $2,436.40 (-2.10%)
Gas: 7.48 Gwei

Token

GAMEBOYS (GBY)
 

Overview

Max Total Supply

264 GBY

Holders

85

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
2 GBY
0xe73079dba2f76c51c80ad423faa3c377f3ca0c32
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:
gameboys

Compiler Version
v0.8.22+commit.4fc1097e

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2024-01-20
*/

// SPDX-License-Identifier: MIT
//                    _               
//  ___ ___ _____ ___| |_ ___ _ _ ___ 
// | . | .'|     | -_| . | . | | |_ -|
// |_  |__,|_|_|_|___|___|___|_  |___|
// |___|                     |___|    

// File: @openzeppelin/contracts/security/ReentrancyGuard.sol


// OpenZeppelin Contracts v4.4.1 (security/ReentrancyGuard.sol)

pragma solidity ^0.8.0;

/**
 * @dev Contract module that helps prevent reentrant calls to a function.
 *
 * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier
 * available, which can be applied to functions to make sure there are no nested
 * (reentrant) calls to them.
 *
 * Note that because there is a single `nonReentrant` guard, functions marked as
 * `nonReentrant` may not call one another. This can be worked around by making
 * those functions `private`, and then adding `external` `nonReentrant` entry
 * points to them.
 *
 * TIP: If you would like to learn more about reentrancy and alternative ways
 * to protect against it, check out our blog post
 * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul].
 */
abstract contract ReentrancyGuard {
    // Booleans are more expensive than uint256 or any type that takes up a full
    // word because each write operation emits an extra SLOAD to first read the
    // slot's contents, replace the bits taken up by the boolean, and then write
    // back. This is the compiler's defense against contract upgrades and
    // pointer aliasing, and it cannot be disabled.

    // The values being non-zero value makes deployment a bit more expensive,
    // but in exchange the refund on every call to nonReentrant will be lower in
    // amount. Since refunds are capped to a percentage of the total
    // transaction's gas, it is best to keep them low in cases like this one, to
    // increase the likelihood of the full refund coming into effect.
    uint256 private constant _NOT_ENTERED = 1;
    uint256 private constant _ENTERED = 2;

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

    /**
     * @dev Prevents a contract from calling itself, directly or indirectly.
     * Calling a `nonReentrant` function from another `nonReentrant`
     * function is not supported. It is possible to prevent this from happening
     * by making the `nonReentrant` function external, and making it call a
     * `private` function that does the actual work.
     */
    modifier nonReentrant() {
        // On the first call to nonReentrant, _notEntered will be true
        require(_status != _ENTERED, "ReentrancyGuard: reentrant call");

        // Any calls to nonReentrant after this point will fail
        _status = _ENTERED;

        _;

        // By storing the original value once again, a refund is triggered (see
        // https://eips.ethereum.org/EIPS/eip-2200)
        _status = _NOT_ENTERED;
    }
}

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


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

pragma solidity ^0.8.0;

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.1;

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

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;


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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

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

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

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

// File: @openzeppelin/contracts/token/ERC721/extensions/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: erc721a/contracts/ERC721A.sol


// Creator: Chiru Labs

pragma solidity ^0.8.4;








error ApprovalCallerNotOwnerNorApproved();
error ApprovalQueryForNonexistentToken();
error ApproveToCaller();
error ApprovalToCurrentOwner();
error BalanceQueryForZeroAddress();
error MintToZeroAddress();
error MintZeroQuantity();
error OwnerQueryForNonexistentToken();
error TransferCallerNotOwnerNorApproved();
error TransferFromIncorrectOwner();
error TransferToNonERC721ReceiverImplementer();
error TransferToZeroAddress();
error URIQueryForNonexistentToken();

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

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

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

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

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

    /**
     * @dev See {IERC721-balanceOf}.
     */
    function balanceOf(address owner) public view override returns (uint256) {
        if (owner == address(0)) revert BalanceQueryForZeroAddress();
        return uint256(_addressData[owner].balance);
    }

    /**
     * Returns the number of tokens minted by `owner`.
     */
    function _numberMinted(address owner) internal view returns (uint256) {
        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) {
        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) {
        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 {
        _addressData[owner].aux = aux;
    }

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId, owner);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

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

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

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) public virtual override {
        _transfer(from, to, tokenId);
        if (to.isContract() && !_checkContractOnERC721Received(from, to, tokenId, _data)) {
            revert TransferToNonERC721ReceiverImplementer();
        }
    }

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

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

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

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

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

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

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

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

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

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

        if (prevOwnership.addr != from) revert TransferFromIncorrectOwner();

        bool isApprovedOrOwner = (_msgSender() == from ||
            isApprovedForAll(from, _msgSender()) ||
            getApproved(tokenId) == _msgSender());

        if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        if (to == address(0)) revert TransferToZeroAddress();

        _beforeTokenTransfers(from, to, tokenId, 1);

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

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

            TokenOwnership storage currSlot = _ownerships[tokenId];
            currSlot.addr = to;
            currSlot.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;
            TokenOwnership storage nextSlot = _ownerships[nextTokenId];
            if (nextSlot.addr == address(0)) {
                // This will suffice for checking _exists(nextTokenId),
                // as a burned slot cannot contain the zero address.
                if (nextTokenId != _currentIndex) {
                    nextSlot.addr = from;
                    nextSlot.startTimestamp = prevOwnership.startTimestamp;
                }
            }
        }

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

    /**
     * @dev This is equivalent to _burn(tokenId, false)
     */
    function _burn(uint256 tokenId) internal virtual {
        _burn(tokenId, false);
    }

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

        address from = prevOwnership.addr;

        if (approvalCheck) {
            bool isApprovedOrOwner = (_msgSender() == from ||
                isApprovedForAll(from, _msgSender()) ||
                getApproved(tokenId) == _msgSender());

            if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        }

        _beforeTokenTransfers(from, address(0), tokenId, 1);

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

        // 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 storage addressData = _addressData[from];
            addressData.balance -= 1;
            addressData.numberBurned += 1;

            // Keep track of who burned the token, and the timestamp of burning.
            TokenOwnership storage currSlot = _ownerships[tokenId];
            currSlot.addr = from;
            currSlot.startTimestamp = uint64(block.timestamp);
            currSlot.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;
            TokenOwnership storage nextSlot = _ownerships[nextTokenId];
            if (nextSlot.addr == address(0)) {
                // This will suffice for checking _exists(nextTokenId),
                // as a burned slot cannot contain the zero address.
                if (nextTokenId != _currentIndex) {
                    nextSlot.addr = from;
                    nextSlot.startTimestamp = prevOwnership.startTimestamp;
                }
            }
        }

        emit Transfer(from, address(0), tokenId);
        _afterTokenTransfers(from, 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/gameboys.sol


 
pragma solidity >=0.8.0 <0.9.0;




 
contract gameboys is ERC721A, Ownable, ReentrancyGuard {
  using Strings for uint256;
 
  string public _baseTokenURI;
  string public hiddenMetadataUri;
 
  uint256 public cost = 0.0016 ether;
  uint256 public maxSupply = 4600;
  uint256 public freeSupply = 4600;
  uint256 public maxMintAmountPerTx = 9;
  uint256 public maxFreeMint = 2;
 
  bool public paused = true;
  bool public revealed = true;
  mapping(address=>uint256) public mintCounter;
 
  constructor(
    string memory _hiddenMetadataUri
  ) ERC721A("GAMEBOYS", "GBY") {
    setHiddenMetadataUri(_hiddenMetadataUri);
  }
 
  function mint(uint256 _mintAmount) public payable nonReentrant {
    require(tx.origin == msg.sender, "Contracts are not allowed");
    require(_mintAmount > 0 && _mintAmount <= maxMintAmountPerTx, "Invalid mint amount");
    require(totalSupply() + _mintAmount <= maxSupply, "Max supply exceeded");
    require(!paused, "The contract is paused");

    if (totalSupply() >= freeSupply) {
          require(msg.value > 0, "Max free supply exceeded");
          require(msg.value >= cost * _mintAmount, "Insufficient funds");
      }

    uint256 amountForPay=_mintAmount;
    if (mintCounter[_msgSender()] < maxFreeMint){
        if (_mintAmount + mintCounter[_msgSender()]>maxFreeMint){
            amountForPay = amountForPay - (maxFreeMint - mintCounter[_msgSender()]);
        }else{
            amountForPay = 0;
        }
    }
    require(msg.value >= cost * amountForPay, "Insufficient funds");

    
    mintCounter[_msgSender()]+=_mintAmount;
    _safeMint(_msgSender(), _mintAmount);
  }
 
  function mintForAddress(uint256 _mintAmount, address _receiver) public onlyOwner {
    _safeMint(_receiver, _mintAmount);
  }
 
  function _startTokenId() internal view virtual override returns (uint256) {
    return 1;
  }
 
  function setRevealed(bool _state) public onlyOwner {
    revealed = _state;
  }
 
  function setCost(uint256 _cost) public onlyOwner {
    cost = _cost;
  }
 
  function setMaxMintAmountPerTx(uint256 _maxMintAmountPerTx) public onlyOwner {
    maxMintAmountPerTx = _maxMintAmountPerTx;
  }
 
  function setMaxSupply(uint256 _maxSupply) public onlyOwner {
    maxSupply = _maxSupply;
  }

  function setFreeSupply(uint256 _freeSupply) public onlyOwner {
    freeSupply = _freeSupply;
  }

  function setMaxFreeMint(uint256 _maxFreeMint) public onlyOwner {
    maxFreeMint = _maxFreeMint;
  }

  function setPaused(bool _state) public onlyOwner {
    paused = _state;
  }
 
  function withdraw() public onlyOwner nonReentrant {
    (bool os, ) = payable(owner()).call{value: address(this).balance}('');
    require(os);
  }
 
  function setHiddenMetadataUri(string memory _hiddenMetadataUri) public onlyOwner {
    hiddenMetadataUri = _hiddenMetadataUri;
  }
 
  function setBaseURI(string calldata baseURI) public onlyOwner {
    _baseTokenURI = baseURI;
  }
 
  function _baseURI() internal view virtual override returns (string memory) {
      return _baseTokenURI;
  }
 
  function tokenURI(uint256 _tokenId) public view virtual override returns (string memory) {
      require(_exists(_tokenId), "URI does not exist!");
 
      if (revealed) {
          return string(abi.encodePacked(_baseURI(), _tokenId.toString()));
      } else {
          return hiddenMetadataUri;
      }
  }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_hiddenMetadataUri","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"_baseTokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"cost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"freeSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"hiddenMetadataUri","outputs":[{"internalType":"string","name":"","type":"string"}],"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":"maxFreeMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintAmountPerTx","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"mintCounter","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"},{"internalType":"address","name":"_receiver","type":"address"}],"name":"mintForAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_cost","type":"uint256"}],"name":"setCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_freeSupply","type":"uint256"}],"name":"setFreeSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_hiddenMetadataUri","type":"string"}],"name":"setHiddenMetadataUri","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxFreeMint","type":"uint256"}],"name":"setMaxFreeMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxMintAmountPerTx","type":"uint256"}],"name":"setMaxMintAmountPerTx","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxSupply","type":"uint256"}],"name":"setMaxSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setPaused","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setRevealed","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040526605af3107a40000600c556111f8600d556111f8600e556009600f556002601055600160115f6101000a81548160ff0219169083151502179055506001601160016101000a81548160ff02191690831515021790555034801562000066575f80fd5b5060405162004b3538038062004b3583398181016040528101906200008c919062000496565b6040518060400160405280600881526020017f47414d45424f59530000000000000000000000000000000000000000000000008152506040518060400160405280600381526020017f474259000000000000000000000000000000000000000000000000000000000081525081600290816200010991906200071c565b5080600390816200011b91906200071c565b506200012c6200017360201b60201c565b5f81905550505062000153620001476200017b60201b60201c565b6200018260201b60201c565b60016009819055506200016c816200024560201b60201c565b506200087e565b5f6001905090565b5f33905090565b5f60085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160085f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b620002556200017b60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff166200027b620002e960201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1614620002d4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620002cb906200085e565b60405180910390fd5b80600b9081620002e591906200071c565b5050565b5f60085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b5f604051905090565b5f80fd5b5f80fd5b5f80fd5b5f80fd5b5f601f19601f8301169050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b62000372826200032a565b810181811067ffffffffffffffff821117156200039457620003936200033a565b5b80604052505050565b5f620003a862000311565b9050620003b6828262000367565b919050565b5f67ffffffffffffffff821115620003d857620003d76200033a565b5b620003e3826200032a565b9050602081019050919050565b5f5b838110156200040f578082015181840152602081019050620003f2565b5f8484015250505050565b5f620004306200042a84620003bb565b6200039d565b9050828152602081018484840111156200044f576200044e62000326565b5b6200045c848285620003f0565b509392505050565b5f82601f8301126200047b576200047a62000322565b5b81516200048d8482602086016200041a565b91505092915050565b5f60208284031215620004ae57620004ad6200031a565b5b5f82015167ffffffffffffffff811115620004ce57620004cd6200031e565b5b620004dc8482850162000464565b91505092915050565b5f81519050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f60028204905060018216806200053457607f821691505b6020821081036200054a5762000549620004ef565b5b50919050565b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f60088302620005ae7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000571565b620005ba868362000571565b95508019841693508086168417925050509392505050565b5f819050919050565b5f819050919050565b5f62000604620005fe620005f884620005d2565b620005db565b620005d2565b9050919050565b5f819050919050565b6200061f83620005e4565b620006376200062e826200060b565b8484546200057d565b825550505050565b5f90565b6200064d6200063f565b6200065a81848462000614565b505050565b5b818110156200068157620006755f8262000643565b60018101905062000660565b5050565b601f821115620006d0576200069a8162000550565b620006a58462000562565b81016020851015620006b5578190505b620006cd620006c48562000562565b8301826200065f565b50505b505050565b5f82821c905092915050565b5f620006f25f1984600802620006d5565b1980831691505092915050565b5f6200070c8383620006e1565b9150826002028217905092915050565b6200072782620004e5565b67ffffffffffffffff8111156200074357620007426200033a565b5b6200074f82546200051c565b6200075c82828562000685565b5f60209050601f83116001811462000792575f84156200077d578287015190505b620007898582620006ff565b865550620007f8565b601f198416620007a28662000550565b5f5b82811015620007cb57848901518255600182019150602085019450602081019050620007a4565b86831015620007eb5784890151620007e7601f891682620006e1565b8355505b6001600288020188555050505b505050505050565b5f82825260208201905092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725f82015250565b5f6200084660208362000800565b9150620008538262000810565b602082019050919050565b5f6020820190508181035f830152620008778162000838565b9050919050565b6142a9806200088c5f395ff3fe60806040526004361061022f575f3560e01c806370a082311161012d578063b071401b116100aa578063e0a808531161006e578063e0a80853146107e5578063e985e9c51461080d578063efbd73f414610849578063f2fde38b14610871578063f676308a146108995761022f565b8063b071401b14610705578063b88d4fde1461072d578063c87b56dd14610755578063cfc86f7b14610791578063d5abeb01146107bb5761022f565b806395d89b41116100f157806395d89b4114610643578063a0712d681461066d578063a22cb46514610689578063a45ba8e7146106b1578063a591252d146106db5761022f565b806370a0823114610575578063715018a6146105b1578063742a4c9b146105c75780638da5cb5b146105ef57806394354fd0146106195761022f565b806324a6ab0c116101bb578063518302271161017f578063518302271461049557806355f804b3146104bf5780635c975abb146104e75780636352211e146105115780636f8b44b01461054d5761022f565b806324a6ab0c146103dd5780633ccfd60b1461040757806342842e0e1461041d57806344a0d68a146104455780634fdd43cb1461046d5761022f565b806313faede61161020257806313faede6146102fd57806316c38b3c1461032757806318160ddd1461034f5780631cdce9fe1461037957806323b872dd146103b55761022f565b806301ffc9a71461023357806306fdde031461026f578063081812fc14610299578063095ea7b3146102d5575b5f80fd5b34801561023e575f80fd5b506102596004803603810190610254919061303e565b6108c1565b6040516102669190613083565b60405180910390f35b34801561027a575f80fd5b506102836109a2565b6040516102909190613126565b60405180910390f35b3480156102a4575f80fd5b506102bf60048036038101906102ba9190613179565b610a32565b6040516102cc91906131e3565b60405180910390f35b3480156102e0575f80fd5b506102fb60048036038101906102f69190613226565b610aaa565b005b348015610308575f80fd5b50610311610bb3565b60405161031e9190613273565b60405180910390f35b348015610332575f80fd5b5061034d600480360381019061034891906132b6565b610bb9565b005b34801561035a575f80fd5b50610363610c51565b6040516103709190613273565b60405180910390f35b348015610384575f80fd5b5061039f600480360381019061039a91906132e1565b610c66565b6040516103ac9190613273565b60405180910390f35b3480156103c0575f80fd5b506103db60048036038101906103d6919061330c565b610c7b565b005b3480156103e8575f80fd5b506103f1610c8b565b6040516103fe9190613273565b60405180910390f35b348015610412575f80fd5b5061041b610c91565b005b348015610428575f80fd5b50610443600480360381019061043e919061330c565b610ddd565b005b348015610450575f80fd5b5061046b60048036038101906104669190613179565b610dfc565b005b348015610478575f80fd5b50610493600480360381019061048e9190613488565b610e82565b005b3480156104a0575f80fd5b506104a9610f11565b6040516104b69190613083565b60405180910390f35b3480156104ca575f80fd5b506104e560048036038101906104e0919061352c565b610f24565b005b3480156104f2575f80fd5b506104fb610fb6565b6040516105089190613083565b60405180910390f35b34801561051c575f80fd5b5061053760048036038101906105329190613179565b610fc8565b60405161054491906131e3565b60405180910390f35b348015610558575f80fd5b50610573600480360381019061056e9190613179565b610fdc565b005b348015610580575f80fd5b5061059b600480360381019061059691906132e1565b611062565b6040516105a89190613273565b60405180910390f35b3480156105bc575f80fd5b506105c561112c565b005b3480156105d2575f80fd5b506105ed60048036038101906105e89190613179565b6111b3565b005b3480156105fa575f80fd5b50610603611239565b60405161061091906131e3565b60405180910390f35b348015610624575f80fd5b5061062d611261565b60405161063a9190613273565b60405180910390f35b34801561064e575f80fd5b50610657611267565b6040516106649190613126565b60405180910390f35b61068760048036038101906106829190613179565b6112f7565b005b348015610694575f80fd5b506106af60048036038101906106aa9190613577565b611726565b005b3480156106bc575f80fd5b506106c5611898565b6040516106d29190613126565b60405180910390f35b3480156106e6575f80fd5b506106ef611924565b6040516106fc9190613273565b60405180910390f35b348015610710575f80fd5b5061072b60048036038101906107269190613179565b61192a565b005b348015610738575f80fd5b50610753600480360381019061074e9190613653565b6119b0565b005b348015610760575f80fd5b5061077b60048036038101906107769190613179565b611a2c565b6040516107889190613126565b60405180910390f35b34801561079c575f80fd5b506107a5611b54565b6040516107b29190613126565b60405180910390f35b3480156107c6575f80fd5b506107cf611be0565b6040516107dc9190613273565b60405180910390f35b3480156107f0575f80fd5b5061080b600480360381019061080691906132b6565b611be6565b005b348015610818575f80fd5b50610833600480360381019061082e91906136d3565b611c7f565b6040516108409190613083565b60405180910390f35b348015610854575f80fd5b5061086f600480360381019061086a9190613711565b611d0d565b005b34801561087c575f80fd5b50610897600480360381019061089291906132e1565b611d97565b005b3480156108a4575f80fd5b506108bf60048036038101906108ba9190613179565b611e8d565b005b5f7f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061098b57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061099b575061099a82611f13565b5b9050919050565b6060600280546109b19061377c565b80601f01602080910402602001604051908101604052809291908181526020018280546109dd9061377c565b8015610a285780601f106109ff57610100808354040283529160200191610a28565b820191905f5260205f20905b815481529060010190602001808311610a0b57829003601f168201915b5050505050905090565b5f610a3c82611f7c565b610a72576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60065f8381526020019081526020015f205f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b5f610ab482610fc8565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610b1b576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610b3a611fc5565b73ffffffffffffffffffffffffffffffffffffffff1614158015610b6c5750610b6a81610b65611fc5565b611c7f565b155b15610ba3576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610bae838383611fcc565b505050565b600c5481565b610bc1611fc5565b73ffffffffffffffffffffffffffffffffffffffff16610bdf611239565b73ffffffffffffffffffffffffffffffffffffffff1614610c35576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c2c906137f6565b60405180910390fd5b8060115f6101000a81548160ff02191690831515021790555050565b5f610c5a61207b565b6001545f540303905090565b6012602052805f5260405f205f915090505481565b610c86838383612083565b505050565b600e5481565b610c99611fc5565b73ffffffffffffffffffffffffffffffffffffffff16610cb7611239565b73ffffffffffffffffffffffffffffffffffffffff1614610d0d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d04906137f6565b60405180910390fd5b600260095403610d52576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d499061385e565b60405180910390fd5b60026009819055505f610d63611239565b73ffffffffffffffffffffffffffffffffffffffff1647604051610d86906138a9565b5f6040518083038185875af1925050503d805f8114610dc0576040519150601f19603f3d011682016040523d82523d5f602084013e610dc5565b606091505b5050905080610dd2575f80fd5b506001600981905550565b610df783838360405180602001604052805f8152506119b0565b505050565b610e04611fc5565b73ffffffffffffffffffffffffffffffffffffffff16610e22611239565b73ffffffffffffffffffffffffffffffffffffffff1614610e78576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e6f906137f6565b60405180910390fd5b80600c8190555050565b610e8a611fc5565b73ffffffffffffffffffffffffffffffffffffffff16610ea8611239565b73ffffffffffffffffffffffffffffffffffffffff1614610efe576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ef5906137f6565b60405180910390fd5b80600b9081610f0d9190613a5a565b5050565b601160019054906101000a900460ff1681565b610f2c611fc5565b73ffffffffffffffffffffffffffffffffffffffff16610f4a611239565b73ffffffffffffffffffffffffffffffffffffffff1614610fa0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f97906137f6565b60405180910390fd5b8181600a9182610fb1929190613b33565b505050565b60115f9054906101000a900460ff1681565b5f610fd282612519565b5f01519050919050565b610fe4611fc5565b73ffffffffffffffffffffffffffffffffffffffff16611002611239565b73ffffffffffffffffffffffffffffffffffffffff1614611058576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161104f906137f6565b60405180910390fd5b80600d8190555050565b5f8073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036110c8576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60055f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f015f9054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b611134611fc5565b73ffffffffffffffffffffffffffffffffffffffff16611152611239565b73ffffffffffffffffffffffffffffffffffffffff16146111a8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161119f906137f6565b60405180910390fd5b6111b15f612795565b565b6111bb611fc5565b73ffffffffffffffffffffffffffffffffffffffff166111d9611239565b73ffffffffffffffffffffffffffffffffffffffff161461122f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611226906137f6565b60405180910390fd5b8060108190555050565b5f60085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600f5481565b6060600380546112769061377c565b80601f01602080910402602001604051908101604052809291908181526020018280546112a29061377c565b80156112ed5780601f106112c4576101008083540402835291602001916112ed565b820191905f5260205f20905b8154815290600101906020018083116112d057829003601f168201915b5050505050905090565b60026009540361133c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113339061385e565b60405180910390fd5b60026009819055503373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff16146113b2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113a990613c4a565b60405180910390fd5b5f811180156113c35750600f548111155b611402576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113f990613cb2565b60405180910390fd5b600d548161140e610c51565b6114189190613cfd565b1115611459576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161145090613d7a565b60405180910390fd5b60115f9054906101000a900460ff16156114a8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161149f90613de2565b60405180910390fd5b600e546114b3610c51565b1061154b575f34116114fa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114f190613e4a565b60405180910390fd5b80600c546115089190613e68565b34101561154a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161154190613ef3565b60405180910390fd5b5b5f81905060105460125f61155d611fc5565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054101561165f5760105460125f6115ab611fc5565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054836115f09190613cfd565b111561165a5760125f611601611fc5565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20546010546116489190613f11565b816116539190613f11565b905061165e565b5f90505b5b80600c5461166d9190613e68565b3410156116af576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116a690613ef3565b60405180910390fd5b8160125f6116bb611fc5565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8282546117029190613cfd565b9250508190555061171a611714611fc5565b83612858565b50600160098190555050565b61172e611fc5565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611792576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060075f61179e611fc5565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611847611fc5565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161188c9190613083565b60405180910390a35050565b600b80546118a59061377c565b80601f01602080910402602001604051908101604052809291908181526020018280546118d19061377c565b801561191c5780601f106118f35761010080835404028352916020019161191c565b820191905f5260205f20905b8154815290600101906020018083116118ff57829003601f168201915b505050505081565b60105481565b611932611fc5565b73ffffffffffffffffffffffffffffffffffffffff16611950611239565b73ffffffffffffffffffffffffffffffffffffffff16146119a6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161199d906137f6565b60405180910390fd5b80600f8190555050565b6119bb848484612083565b6119da8373ffffffffffffffffffffffffffffffffffffffff16612875565b80156119ef57506119ed84848484612897565b155b15611a26576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b6060611a3782611f7c565b611a76576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a6d90613f8e565b60405180910390fd5b601160019054906101000a900460ff1615611ac357611a936129e2565b611a9c83612a72565b604051602001611aad929190613fe6565b6040516020818303038152906040529050611b4f565b600b8054611ad09061377c565b80601f0160208091040260200160405190810160405280929190818152602001828054611afc9061377c565b8015611b475780601f10611b1e57610100808354040283529160200191611b47565b820191905f5260205f20905b815481529060010190602001808311611b2a57829003601f168201915b505050505090505b919050565b600a8054611b619061377c565b80601f0160208091040260200160405190810160405280929190818152602001828054611b8d9061377c565b8015611bd85780601f10611baf57610100808354040283529160200191611bd8565b820191905f5260205f20905b815481529060010190602001808311611bbb57829003601f168201915b505050505081565b600d5481565b611bee611fc5565b73ffffffffffffffffffffffffffffffffffffffff16611c0c611239565b73ffffffffffffffffffffffffffffffffffffffff1614611c62576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c59906137f6565b60405180910390fd5b80601160016101000a81548160ff02191690831515021790555050565b5f60075f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16905092915050565b611d15611fc5565b73ffffffffffffffffffffffffffffffffffffffff16611d33611239565b73ffffffffffffffffffffffffffffffffffffffff1614611d89576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d80906137f6565b60405180910390fd5b611d938183612858565b5050565b611d9f611fc5565b73ffffffffffffffffffffffffffffffffffffffff16611dbd611239565b73ffffffffffffffffffffffffffffffffffffffff1614611e13576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e0a906137f6565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611e81576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e7890614079565b60405180910390fd5b611e8a81612795565b50565b611e95611fc5565b73ffffffffffffffffffffffffffffffffffffffff16611eb3611239565b73ffffffffffffffffffffffffffffffffffffffff1614611f09576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f00906137f6565b60405180910390fd5b80600e8190555050565b5f7f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b5f81611f8661207b565b11158015611f9457505f5482105b8015611fbe575060045f8381526020019081526020015f205f01601c9054906101000a900460ff16155b9050919050565b5f33905090565b8260065f8481526020019081526020015f205f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b5f6001905090565b5f61208d82612519565b90508373ffffffffffffffffffffffffffffffffffffffff16815f015173ffffffffffffffffffffffffffffffffffffffff16146120f7576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5f8473ffffffffffffffffffffffffffffffffffffffff16612117611fc5565b73ffffffffffffffffffffffffffffffffffffffff161480612146575061214585612140611fc5565b611c7f565b5b8061218b5750612154611fc5565b73ffffffffffffffffffffffffffffffffffffffff1661217384610a32565b73ffffffffffffffffffffffffffffffffffffffff16145b9050806121c4576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603612229576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6122368585856001612bcb565b6122415f8487611fcc565b600160055f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f015f8282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600160055f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f015f8282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505f60045f8581526020019081526020015f20905084815f015f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555042815f0160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505f6001850190505f60045f8381526020019081526020015f2090505f73ffffffffffffffffffffffffffffffffffffffff16815f015f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16036124a7575f5482146124a65787815f015f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508460200151815f0160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b505050828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46125128585856001612bd1565b5050505050565b612521612f98565b5f8290508061252e61207b565b1115801561253c57505f5481105b1561275e575f60045f8381526020019081526020015f206040518060600160405290815f82015f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020015f820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff1681526020015f8201601c9054906101000a900460ff1615151515815250509050806040015161275c575f73ffffffffffffffffffffffffffffffffffffffff16815f015173ffffffffffffffffffffffffffffffffffffffff1614612648578092505050612790565b5b60011561275b5781806001900392505060045f8381526020019081526020015f206040518060600160405290815f82015f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020015f820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff1681526020015f8201601c9054906101000a900460ff16151515158152505090505f73ffffffffffffffffffffffffffffffffffffffff16815f015173ffffffffffffffffffffffffffffffffffffffff1614612756578092505050612790565b612649565b5b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b5f60085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160085f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b612871828260405180602001604052805f815250612bd7565b5050565b5f808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b5f8373ffffffffffffffffffffffffffffffffffffffff1663150b7a026128bc611fc5565b8786866040518563ffffffff1660e01b81526004016128de94939291906140e9565b6020604051808303815f875af192505050801561291957506040513d601f19601f820116820180604052508101906129169190614147565b60015b61298f573d805f8114612947576040519150601f19603f3d011682016040523d82523d5f602084013e61294c565b606091505b505f815103612987576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600a80546129f19061377c565b80601f0160208091040260200160405190810160405280929190818152602001828054612a1d9061377c565b8015612a685780601f10612a3f57610100808354040283529160200191612a68565b820191905f5260205f20905b815481529060010190602001808311612a4b57829003601f168201915b5050505050905090565b60605f8203612ab8576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612bc6565b5f8290505f5b5f8214612ae7578080612ad090614172565b915050600a82612ae091906141e6565b9150612abe565b5f8167ffffffffffffffff811115612b0257612b01613364565b5b6040519080825280601f01601f191660200182016040528015612b345781602001600182028036833780820191505090505b5090505b5f8514612bbf57600182612b4c9190613f11565b9150600a85612b5b9190614216565b6030612b679190613cfd565b60f81b818381518110612b7d57612b7c614246565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff191690815f1a905350600a85612bb891906141e6565b9450612b38565b8093505050505b919050565b50505050565b50505050565b612be48383836001612be9565b505050565b5f805490505f73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603612c53576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5f8403612c8c576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b612c985f868387612bcb565b8360055f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f015f8282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055508360055f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f0160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055508460045f8381526020019081526020015f205f015f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055504260045f8381526020019081526020015f205f0160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505f8190505f8582019050838015612e525750612e518773ffffffffffffffffffffffffffffffffffffffff16612875565b5b15612f13575b818773ffffffffffffffffffffffffffffffffffffffff165f73ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612ec55f888480600101955088612897565b612efb576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b808203612e5857825f5414612f0e575f80fd5b612f7d565b5b818060010192508773ffffffffffffffffffffffffffffffffffffffff165f73ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4808203612f14575b815f819055505050612f915f868387612bd1565b5050505050565b60405180606001604052805f73ffffffffffffffffffffffffffffffffffffffff1681526020015f67ffffffffffffffff1681526020015f151581525090565b5f604051905090565b5f80fd5b5f80fd5b5f7fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b61301d81612fe9565b8114613027575f80fd5b50565b5f8135905061303881613014565b92915050565b5f6020828403121561305357613052612fe1565b5b5f6130608482850161302a565b91505092915050565b5f8115159050919050565b61307d81613069565b82525050565b5f6020820190506130965f830184613074565b92915050565b5f81519050919050565b5f82825260208201905092915050565b5f5b838110156130d35780820151818401526020810190506130b8565b5f8484015250505050565b5f601f19601f8301169050919050565b5f6130f88261309c565b61310281856130a6565b93506131128185602086016130b6565b61311b816130de565b840191505092915050565b5f6020820190508181035f83015261313e81846130ee565b905092915050565b5f819050919050565b61315881613146565b8114613162575f80fd5b50565b5f813590506131738161314f565b92915050565b5f6020828403121561318e5761318d612fe1565b5b5f61319b84828501613165565b91505092915050565b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f6131cd826131a4565b9050919050565b6131dd816131c3565b82525050565b5f6020820190506131f65f8301846131d4565b92915050565b613205816131c3565b811461320f575f80fd5b50565b5f81359050613220816131fc565b92915050565b5f806040838503121561323c5761323b612fe1565b5b5f61324985828601613212565b925050602061325a85828601613165565b9150509250929050565b61326d81613146565b82525050565b5f6020820190506132865f830184613264565b92915050565b61329581613069565b811461329f575f80fd5b50565b5f813590506132b08161328c565b92915050565b5f602082840312156132cb576132ca612fe1565b5b5f6132d8848285016132a2565b91505092915050565b5f602082840312156132f6576132f5612fe1565b5b5f61330384828501613212565b91505092915050565b5f805f6060848603121561332357613322612fe1565b5b5f61333086828701613212565b935050602061334186828701613212565b925050604061335286828701613165565b9150509250925092565b5f80fd5b5f80fd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b61339a826130de565b810181811067ffffffffffffffff821117156133b9576133b8613364565b5b80604052505050565b5f6133cb612fd8565b90506133d78282613391565b919050565b5f67ffffffffffffffff8211156133f6576133f5613364565b5b6133ff826130de565b9050602081019050919050565b828183375f83830152505050565b5f61342c613427846133dc565b6133c2565b90508281526020810184848401111561344857613447613360565b5b61345384828561340c565b509392505050565b5f82601f83011261346f5761346e61335c565b5b813561347f84826020860161341a565b91505092915050565b5f6020828403121561349d5761349c612fe1565b5b5f82013567ffffffffffffffff8111156134ba576134b9612fe5565b5b6134c68482850161345b565b91505092915050565b5f80fd5b5f80fd5b5f8083601f8401126134ec576134eb61335c565b5b8235905067ffffffffffffffff811115613509576135086134cf565b5b602083019150836001820283011115613525576135246134d3565b5b9250929050565b5f806020838503121561354257613541612fe1565b5b5f83013567ffffffffffffffff81111561355f5761355e612fe5565b5b61356b858286016134d7565b92509250509250929050565b5f806040838503121561358d5761358c612fe1565b5b5f61359a85828601613212565b92505060206135ab858286016132a2565b9150509250929050565b5f67ffffffffffffffff8211156135cf576135ce613364565b5b6135d8826130de565b9050602081019050919050565b5f6135f76135f2846135b5565b6133c2565b90508281526020810184848401111561361357613612613360565b5b61361e84828561340c565b509392505050565b5f82601f83011261363a5761363961335c565b5b813561364a8482602086016135e5565b91505092915050565b5f805f806080858703121561366b5761366a612fe1565b5b5f61367887828801613212565b945050602061368987828801613212565b935050604061369a87828801613165565b925050606085013567ffffffffffffffff8111156136bb576136ba612fe5565b5b6136c787828801613626565b91505092959194509250565b5f80604083850312156136e9576136e8612fe1565b5b5f6136f685828601613212565b925050602061370785828601613212565b9150509250929050565b5f806040838503121561372757613726612fe1565b5b5f61373485828601613165565b925050602061374585828601613212565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f600282049050600182168061379357607f821691505b6020821081036137a6576137a561374f565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725f82015250565b5f6137e06020836130a6565b91506137eb826137ac565b602082019050919050565b5f6020820190508181035f83015261380d816137d4565b9050919050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c005f82015250565b5f613848601f836130a6565b915061385382613814565b602082019050919050565b5f6020820190508181035f8301526138758161383c565b9050919050565b5f81905092915050565b50565b5f6138945f8361387c565b915061389f82613886565b5f82019050919050565b5f6138b382613889565b9150819050919050565b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f600883026139197fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826138de565b61392386836138de565b95508019841693508086168417925050509392505050565b5f819050919050565b5f61395e61395961395484613146565b61393b565b613146565b9050919050565b5f819050919050565b61397783613944565b61398b61398382613965565b8484546138ea565b825550505050565b5f90565b61399f613993565b6139aa81848461396e565b505050565b5b818110156139cd576139c25f82613997565b6001810190506139b0565b5050565b601f821115613a12576139e3816138bd565b6139ec846138cf565b810160208510156139fb578190505b613a0f613a07856138cf565b8301826139af565b50505b505050565b5f82821c905092915050565b5f613a325f1984600802613a17565b1980831691505092915050565b5f613a4a8383613a23565b9150826002028217905092915050565b613a638261309c565b67ffffffffffffffff811115613a7c57613a7b613364565b5b613a86825461377c565b613a918282856139d1565b5f60209050601f831160018114613ac2575f8415613ab0578287015190505b613aba8582613a3f565b865550613b21565b601f198416613ad0866138bd565b5f5b82811015613af757848901518255600182019150602085019450602081019050613ad2565b86831015613b145784890151613b10601f891682613a23565b8355505b6001600288020188555050505b505050505050565b5f82905092915050565b613b3d8383613b29565b67ffffffffffffffff811115613b5657613b55613364565b5b613b60825461377c565b613b6b8282856139d1565b5f601f831160018114613b98575f8415613b86578287013590505b613b908582613a3f565b865550613bf7565b601f198416613ba6866138bd565b5f5b82811015613bcd57848901358255600182019150602085019450602081019050613ba8565b86831015613bea5784890135613be6601f891682613a23565b8355505b6001600288020188555050505b50505050505050565b7f436f6e74726163747320617265206e6f7420616c6c6f776564000000000000005f82015250565b5f613c346019836130a6565b9150613c3f82613c00565b602082019050919050565b5f6020820190508181035f830152613c6181613c28565b9050919050565b7f496e76616c6964206d696e7420616d6f756e74000000000000000000000000005f82015250565b5f613c9c6013836130a6565b9150613ca782613c68565b602082019050919050565b5f6020820190508181035f830152613cc981613c90565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f613d0782613146565b9150613d1283613146565b9250828201905080821115613d2a57613d29613cd0565b5b92915050565b7f4d617820737570706c79206578636565646564000000000000000000000000005f82015250565b5f613d646013836130a6565b9150613d6f82613d30565b602082019050919050565b5f6020820190508181035f830152613d9181613d58565b9050919050565b7f54686520636f6e747261637420697320706175736564000000000000000000005f82015250565b5f613dcc6016836130a6565b9150613dd782613d98565b602082019050919050565b5f6020820190508181035f830152613df981613dc0565b9050919050565b7f4d6178206672656520737570706c7920657863656564656400000000000000005f82015250565b5f613e346018836130a6565b9150613e3f82613e00565b602082019050919050565b5f6020820190508181035f830152613e6181613e28565b9050919050565b5f613e7282613146565b9150613e7d83613146565b9250828202613e8b81613146565b91508282048414831517613ea257613ea1613cd0565b5b5092915050565b7f496e73756666696369656e742066756e647300000000000000000000000000005f82015250565b5f613edd6012836130a6565b9150613ee882613ea9565b602082019050919050565b5f6020820190508181035f830152613f0a81613ed1565b9050919050565b5f613f1b82613146565b9150613f2683613146565b9250828203905081811115613f3e57613f3d613cd0565b5b92915050565b7f55524920646f6573206e6f7420657869737421000000000000000000000000005f82015250565b5f613f786013836130a6565b9150613f8382613f44565b602082019050919050565b5f6020820190508181035f830152613fa581613f6c565b9050919050565b5f81905092915050565b5f613fc08261309c565b613fca8185613fac565b9350613fda8185602086016130b6565b80840191505092915050565b5f613ff18285613fb6565b9150613ffd8284613fb6565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f20615f8201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b5f6140636026836130a6565b915061406e82614009565b604082019050919050565b5f6020820190508181035f83015261409081614057565b9050919050565b5f81519050919050565b5f82825260208201905092915050565b5f6140bb82614097565b6140c581856140a1565b93506140d58185602086016130b6565b6140de816130de565b840191505092915050565b5f6080820190506140fc5f8301876131d4565b61410960208301866131d4565b6141166040830185613264565b818103606083015261412881846140b1565b905095945050505050565b5f8151905061414181613014565b92915050565b5f6020828403121561415c5761415b612fe1565b5b5f61416984828501614133565b91505092915050565b5f61417c82613146565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82036141ae576141ad613cd0565b5b600182019050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f6141f082613146565b91506141fb83613146565b92508261420b5761420a6141b9565b5b828204905092915050565b5f61422082613146565b915061422b83613146565b92508261423b5761423a6141b9565b5b828206905092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603260045260245ffdfea2646970667358221220310f5849f8be94ed2bcb1964970dab4608a85b835c609001cf1559a367914cc164736f6c63430008160033000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000042447425900000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x60806040526004361061022f575f3560e01c806370a082311161012d578063b071401b116100aa578063e0a808531161006e578063e0a80853146107e5578063e985e9c51461080d578063efbd73f414610849578063f2fde38b14610871578063f676308a146108995761022f565b8063b071401b14610705578063b88d4fde1461072d578063c87b56dd14610755578063cfc86f7b14610791578063d5abeb01146107bb5761022f565b806395d89b41116100f157806395d89b4114610643578063a0712d681461066d578063a22cb46514610689578063a45ba8e7146106b1578063a591252d146106db5761022f565b806370a0823114610575578063715018a6146105b1578063742a4c9b146105c75780638da5cb5b146105ef57806394354fd0146106195761022f565b806324a6ab0c116101bb578063518302271161017f578063518302271461049557806355f804b3146104bf5780635c975abb146104e75780636352211e146105115780636f8b44b01461054d5761022f565b806324a6ab0c146103dd5780633ccfd60b1461040757806342842e0e1461041d57806344a0d68a146104455780634fdd43cb1461046d5761022f565b806313faede61161020257806313faede6146102fd57806316c38b3c1461032757806318160ddd1461034f5780631cdce9fe1461037957806323b872dd146103b55761022f565b806301ffc9a71461023357806306fdde031461026f578063081812fc14610299578063095ea7b3146102d5575b5f80fd5b34801561023e575f80fd5b506102596004803603810190610254919061303e565b6108c1565b6040516102669190613083565b60405180910390f35b34801561027a575f80fd5b506102836109a2565b6040516102909190613126565b60405180910390f35b3480156102a4575f80fd5b506102bf60048036038101906102ba9190613179565b610a32565b6040516102cc91906131e3565b60405180910390f35b3480156102e0575f80fd5b506102fb60048036038101906102f69190613226565b610aaa565b005b348015610308575f80fd5b50610311610bb3565b60405161031e9190613273565b60405180910390f35b348015610332575f80fd5b5061034d600480360381019061034891906132b6565b610bb9565b005b34801561035a575f80fd5b50610363610c51565b6040516103709190613273565b60405180910390f35b348015610384575f80fd5b5061039f600480360381019061039a91906132e1565b610c66565b6040516103ac9190613273565b60405180910390f35b3480156103c0575f80fd5b506103db60048036038101906103d6919061330c565b610c7b565b005b3480156103e8575f80fd5b506103f1610c8b565b6040516103fe9190613273565b60405180910390f35b348015610412575f80fd5b5061041b610c91565b005b348015610428575f80fd5b50610443600480360381019061043e919061330c565b610ddd565b005b348015610450575f80fd5b5061046b60048036038101906104669190613179565b610dfc565b005b348015610478575f80fd5b50610493600480360381019061048e9190613488565b610e82565b005b3480156104a0575f80fd5b506104a9610f11565b6040516104b69190613083565b60405180910390f35b3480156104ca575f80fd5b506104e560048036038101906104e0919061352c565b610f24565b005b3480156104f2575f80fd5b506104fb610fb6565b6040516105089190613083565b60405180910390f35b34801561051c575f80fd5b5061053760048036038101906105329190613179565b610fc8565b60405161054491906131e3565b60405180910390f35b348015610558575f80fd5b50610573600480360381019061056e9190613179565b610fdc565b005b348015610580575f80fd5b5061059b600480360381019061059691906132e1565b611062565b6040516105a89190613273565b60405180910390f35b3480156105bc575f80fd5b506105c561112c565b005b3480156105d2575f80fd5b506105ed60048036038101906105e89190613179565b6111b3565b005b3480156105fa575f80fd5b50610603611239565b60405161061091906131e3565b60405180910390f35b348015610624575f80fd5b5061062d611261565b60405161063a9190613273565b60405180910390f35b34801561064e575f80fd5b50610657611267565b6040516106649190613126565b60405180910390f35b61068760048036038101906106829190613179565b6112f7565b005b348015610694575f80fd5b506106af60048036038101906106aa9190613577565b611726565b005b3480156106bc575f80fd5b506106c5611898565b6040516106d29190613126565b60405180910390f35b3480156106e6575f80fd5b506106ef611924565b6040516106fc9190613273565b60405180910390f35b348015610710575f80fd5b5061072b60048036038101906107269190613179565b61192a565b005b348015610738575f80fd5b50610753600480360381019061074e9190613653565b6119b0565b005b348015610760575f80fd5b5061077b60048036038101906107769190613179565b611a2c565b6040516107889190613126565b60405180910390f35b34801561079c575f80fd5b506107a5611b54565b6040516107b29190613126565b60405180910390f35b3480156107c6575f80fd5b506107cf611be0565b6040516107dc9190613273565b60405180910390f35b3480156107f0575f80fd5b5061080b600480360381019061080691906132b6565b611be6565b005b348015610818575f80fd5b50610833600480360381019061082e91906136d3565b611c7f565b6040516108409190613083565b60405180910390f35b348015610854575f80fd5b5061086f600480360381019061086a9190613711565b611d0d565b005b34801561087c575f80fd5b50610897600480360381019061089291906132e1565b611d97565b005b3480156108a4575f80fd5b506108bf60048036038101906108ba9190613179565b611e8d565b005b5f7f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061098b57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061099b575061099a82611f13565b5b9050919050565b6060600280546109b19061377c565b80601f01602080910402602001604051908101604052809291908181526020018280546109dd9061377c565b8015610a285780601f106109ff57610100808354040283529160200191610a28565b820191905f5260205f20905b815481529060010190602001808311610a0b57829003601f168201915b5050505050905090565b5f610a3c82611f7c565b610a72576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60065f8381526020019081526020015f205f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b5f610ab482610fc8565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610b1b576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610b3a611fc5565b73ffffffffffffffffffffffffffffffffffffffff1614158015610b6c5750610b6a81610b65611fc5565b611c7f565b155b15610ba3576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610bae838383611fcc565b505050565b600c5481565b610bc1611fc5565b73ffffffffffffffffffffffffffffffffffffffff16610bdf611239565b73ffffffffffffffffffffffffffffffffffffffff1614610c35576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c2c906137f6565b60405180910390fd5b8060115f6101000a81548160ff02191690831515021790555050565b5f610c5a61207b565b6001545f540303905090565b6012602052805f5260405f205f915090505481565b610c86838383612083565b505050565b600e5481565b610c99611fc5565b73ffffffffffffffffffffffffffffffffffffffff16610cb7611239565b73ffffffffffffffffffffffffffffffffffffffff1614610d0d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d04906137f6565b60405180910390fd5b600260095403610d52576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d499061385e565b60405180910390fd5b60026009819055505f610d63611239565b73ffffffffffffffffffffffffffffffffffffffff1647604051610d86906138a9565b5f6040518083038185875af1925050503d805f8114610dc0576040519150601f19603f3d011682016040523d82523d5f602084013e610dc5565b606091505b5050905080610dd2575f80fd5b506001600981905550565b610df783838360405180602001604052805f8152506119b0565b505050565b610e04611fc5565b73ffffffffffffffffffffffffffffffffffffffff16610e22611239565b73ffffffffffffffffffffffffffffffffffffffff1614610e78576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e6f906137f6565b60405180910390fd5b80600c8190555050565b610e8a611fc5565b73ffffffffffffffffffffffffffffffffffffffff16610ea8611239565b73ffffffffffffffffffffffffffffffffffffffff1614610efe576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ef5906137f6565b60405180910390fd5b80600b9081610f0d9190613a5a565b5050565b601160019054906101000a900460ff1681565b610f2c611fc5565b73ffffffffffffffffffffffffffffffffffffffff16610f4a611239565b73ffffffffffffffffffffffffffffffffffffffff1614610fa0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f97906137f6565b60405180910390fd5b8181600a9182610fb1929190613b33565b505050565b60115f9054906101000a900460ff1681565b5f610fd282612519565b5f01519050919050565b610fe4611fc5565b73ffffffffffffffffffffffffffffffffffffffff16611002611239565b73ffffffffffffffffffffffffffffffffffffffff1614611058576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161104f906137f6565b60405180910390fd5b80600d8190555050565b5f8073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036110c8576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60055f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f015f9054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b611134611fc5565b73ffffffffffffffffffffffffffffffffffffffff16611152611239565b73ffffffffffffffffffffffffffffffffffffffff16146111a8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161119f906137f6565b60405180910390fd5b6111b15f612795565b565b6111bb611fc5565b73ffffffffffffffffffffffffffffffffffffffff166111d9611239565b73ffffffffffffffffffffffffffffffffffffffff161461122f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611226906137f6565b60405180910390fd5b8060108190555050565b5f60085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600f5481565b6060600380546112769061377c565b80601f01602080910402602001604051908101604052809291908181526020018280546112a29061377c565b80156112ed5780601f106112c4576101008083540402835291602001916112ed565b820191905f5260205f20905b8154815290600101906020018083116112d057829003601f168201915b5050505050905090565b60026009540361133c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113339061385e565b60405180910390fd5b60026009819055503373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff16146113b2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113a990613c4a565b60405180910390fd5b5f811180156113c35750600f548111155b611402576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113f990613cb2565b60405180910390fd5b600d548161140e610c51565b6114189190613cfd565b1115611459576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161145090613d7a565b60405180910390fd5b60115f9054906101000a900460ff16156114a8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161149f90613de2565b60405180910390fd5b600e546114b3610c51565b1061154b575f34116114fa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114f190613e4a565b60405180910390fd5b80600c546115089190613e68565b34101561154a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161154190613ef3565b60405180910390fd5b5b5f81905060105460125f61155d611fc5565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054101561165f5760105460125f6115ab611fc5565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054836115f09190613cfd565b111561165a5760125f611601611fc5565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20546010546116489190613f11565b816116539190613f11565b905061165e565b5f90505b5b80600c5461166d9190613e68565b3410156116af576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116a690613ef3565b60405180910390fd5b8160125f6116bb611fc5565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8282546117029190613cfd565b9250508190555061171a611714611fc5565b83612858565b50600160098190555050565b61172e611fc5565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611792576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060075f61179e611fc5565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611847611fc5565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161188c9190613083565b60405180910390a35050565b600b80546118a59061377c565b80601f01602080910402602001604051908101604052809291908181526020018280546118d19061377c565b801561191c5780601f106118f35761010080835404028352916020019161191c565b820191905f5260205f20905b8154815290600101906020018083116118ff57829003601f168201915b505050505081565b60105481565b611932611fc5565b73ffffffffffffffffffffffffffffffffffffffff16611950611239565b73ffffffffffffffffffffffffffffffffffffffff16146119a6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161199d906137f6565b60405180910390fd5b80600f8190555050565b6119bb848484612083565b6119da8373ffffffffffffffffffffffffffffffffffffffff16612875565b80156119ef57506119ed84848484612897565b155b15611a26576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b6060611a3782611f7c565b611a76576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a6d90613f8e565b60405180910390fd5b601160019054906101000a900460ff1615611ac357611a936129e2565b611a9c83612a72565b604051602001611aad929190613fe6565b6040516020818303038152906040529050611b4f565b600b8054611ad09061377c565b80601f0160208091040260200160405190810160405280929190818152602001828054611afc9061377c565b8015611b475780601f10611b1e57610100808354040283529160200191611b47565b820191905f5260205f20905b815481529060010190602001808311611b2a57829003601f168201915b505050505090505b919050565b600a8054611b619061377c565b80601f0160208091040260200160405190810160405280929190818152602001828054611b8d9061377c565b8015611bd85780601f10611baf57610100808354040283529160200191611bd8565b820191905f5260205f20905b815481529060010190602001808311611bbb57829003601f168201915b505050505081565b600d5481565b611bee611fc5565b73ffffffffffffffffffffffffffffffffffffffff16611c0c611239565b73ffffffffffffffffffffffffffffffffffffffff1614611c62576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c59906137f6565b60405180910390fd5b80601160016101000a81548160ff02191690831515021790555050565b5f60075f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16905092915050565b611d15611fc5565b73ffffffffffffffffffffffffffffffffffffffff16611d33611239565b73ffffffffffffffffffffffffffffffffffffffff1614611d89576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d80906137f6565b60405180910390fd5b611d938183612858565b5050565b611d9f611fc5565b73ffffffffffffffffffffffffffffffffffffffff16611dbd611239565b73ffffffffffffffffffffffffffffffffffffffff1614611e13576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e0a906137f6565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611e81576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e7890614079565b60405180910390fd5b611e8a81612795565b50565b611e95611fc5565b73ffffffffffffffffffffffffffffffffffffffff16611eb3611239565b73ffffffffffffffffffffffffffffffffffffffff1614611f09576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f00906137f6565b60405180910390fd5b80600e8190555050565b5f7f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b5f81611f8661207b565b11158015611f9457505f5482105b8015611fbe575060045f8381526020019081526020015f205f01601c9054906101000a900460ff16155b9050919050565b5f33905090565b8260065f8481526020019081526020015f205f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b5f6001905090565b5f61208d82612519565b90508373ffffffffffffffffffffffffffffffffffffffff16815f015173ffffffffffffffffffffffffffffffffffffffff16146120f7576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5f8473ffffffffffffffffffffffffffffffffffffffff16612117611fc5565b73ffffffffffffffffffffffffffffffffffffffff161480612146575061214585612140611fc5565b611c7f565b5b8061218b5750612154611fc5565b73ffffffffffffffffffffffffffffffffffffffff1661217384610a32565b73ffffffffffffffffffffffffffffffffffffffff16145b9050806121c4576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603612229576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6122368585856001612bcb565b6122415f8487611fcc565b600160055f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f015f8282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600160055f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f015f8282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505f60045f8581526020019081526020015f20905084815f015f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555042815f0160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505f6001850190505f60045f8381526020019081526020015f2090505f73ffffffffffffffffffffffffffffffffffffffff16815f015f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16036124a7575f5482146124a65787815f015f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508460200151815f0160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b505050828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46125128585856001612bd1565b5050505050565b612521612f98565b5f8290508061252e61207b565b1115801561253c57505f5481105b1561275e575f60045f8381526020019081526020015f206040518060600160405290815f82015f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020015f820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff1681526020015f8201601c9054906101000a900460ff1615151515815250509050806040015161275c575f73ffffffffffffffffffffffffffffffffffffffff16815f015173ffffffffffffffffffffffffffffffffffffffff1614612648578092505050612790565b5b60011561275b5781806001900392505060045f8381526020019081526020015f206040518060600160405290815f82015f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020015f820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff1681526020015f8201601c9054906101000a900460ff16151515158152505090505f73ffffffffffffffffffffffffffffffffffffffff16815f015173ffffffffffffffffffffffffffffffffffffffff1614612756578092505050612790565b612649565b5b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b5f60085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160085f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b612871828260405180602001604052805f815250612bd7565b5050565b5f808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b5f8373ffffffffffffffffffffffffffffffffffffffff1663150b7a026128bc611fc5565b8786866040518563ffffffff1660e01b81526004016128de94939291906140e9565b6020604051808303815f875af192505050801561291957506040513d601f19601f820116820180604052508101906129169190614147565b60015b61298f573d805f8114612947576040519150601f19603f3d011682016040523d82523d5f602084013e61294c565b606091505b505f815103612987576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600a80546129f19061377c565b80601f0160208091040260200160405190810160405280929190818152602001828054612a1d9061377c565b8015612a685780601f10612a3f57610100808354040283529160200191612a68565b820191905f5260205f20905b815481529060010190602001808311612a4b57829003601f168201915b5050505050905090565b60605f8203612ab8576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612bc6565b5f8290505f5b5f8214612ae7578080612ad090614172565b915050600a82612ae091906141e6565b9150612abe565b5f8167ffffffffffffffff811115612b0257612b01613364565b5b6040519080825280601f01601f191660200182016040528015612b345781602001600182028036833780820191505090505b5090505b5f8514612bbf57600182612b4c9190613f11565b9150600a85612b5b9190614216565b6030612b679190613cfd565b60f81b818381518110612b7d57612b7c614246565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff191690815f1a905350600a85612bb891906141e6565b9450612b38565b8093505050505b919050565b50505050565b50505050565b612be48383836001612be9565b505050565b5f805490505f73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603612c53576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5f8403612c8c576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b612c985f868387612bcb565b8360055f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f015f8282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055508360055f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f0160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055508460045f8381526020019081526020015f205f015f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055504260045f8381526020019081526020015f205f0160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505f8190505f8582019050838015612e525750612e518773ffffffffffffffffffffffffffffffffffffffff16612875565b5b15612f13575b818773ffffffffffffffffffffffffffffffffffffffff165f73ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612ec55f888480600101955088612897565b612efb576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b808203612e5857825f5414612f0e575f80fd5b612f7d565b5b818060010192508773ffffffffffffffffffffffffffffffffffffffff165f73ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4808203612f14575b815f819055505050612f915f868387612bd1565b5050505050565b60405180606001604052805f73ffffffffffffffffffffffffffffffffffffffff1681526020015f67ffffffffffffffff1681526020015f151581525090565b5f604051905090565b5f80fd5b5f80fd5b5f7fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b61301d81612fe9565b8114613027575f80fd5b50565b5f8135905061303881613014565b92915050565b5f6020828403121561305357613052612fe1565b5b5f6130608482850161302a565b91505092915050565b5f8115159050919050565b61307d81613069565b82525050565b5f6020820190506130965f830184613074565b92915050565b5f81519050919050565b5f82825260208201905092915050565b5f5b838110156130d35780820151818401526020810190506130b8565b5f8484015250505050565b5f601f19601f8301169050919050565b5f6130f88261309c565b61310281856130a6565b93506131128185602086016130b6565b61311b816130de565b840191505092915050565b5f6020820190508181035f83015261313e81846130ee565b905092915050565b5f819050919050565b61315881613146565b8114613162575f80fd5b50565b5f813590506131738161314f565b92915050565b5f6020828403121561318e5761318d612fe1565b5b5f61319b84828501613165565b91505092915050565b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f6131cd826131a4565b9050919050565b6131dd816131c3565b82525050565b5f6020820190506131f65f8301846131d4565b92915050565b613205816131c3565b811461320f575f80fd5b50565b5f81359050613220816131fc565b92915050565b5f806040838503121561323c5761323b612fe1565b5b5f61324985828601613212565b925050602061325a85828601613165565b9150509250929050565b61326d81613146565b82525050565b5f6020820190506132865f830184613264565b92915050565b61329581613069565b811461329f575f80fd5b50565b5f813590506132b08161328c565b92915050565b5f602082840312156132cb576132ca612fe1565b5b5f6132d8848285016132a2565b91505092915050565b5f602082840312156132f6576132f5612fe1565b5b5f61330384828501613212565b91505092915050565b5f805f6060848603121561332357613322612fe1565b5b5f61333086828701613212565b935050602061334186828701613212565b925050604061335286828701613165565b9150509250925092565b5f80fd5b5f80fd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b61339a826130de565b810181811067ffffffffffffffff821117156133b9576133b8613364565b5b80604052505050565b5f6133cb612fd8565b90506133d78282613391565b919050565b5f67ffffffffffffffff8211156133f6576133f5613364565b5b6133ff826130de565b9050602081019050919050565b828183375f83830152505050565b5f61342c613427846133dc565b6133c2565b90508281526020810184848401111561344857613447613360565b5b61345384828561340c565b509392505050565b5f82601f83011261346f5761346e61335c565b5b813561347f84826020860161341a565b91505092915050565b5f6020828403121561349d5761349c612fe1565b5b5f82013567ffffffffffffffff8111156134ba576134b9612fe5565b5b6134c68482850161345b565b91505092915050565b5f80fd5b5f80fd5b5f8083601f8401126134ec576134eb61335c565b5b8235905067ffffffffffffffff811115613509576135086134cf565b5b602083019150836001820283011115613525576135246134d3565b5b9250929050565b5f806020838503121561354257613541612fe1565b5b5f83013567ffffffffffffffff81111561355f5761355e612fe5565b5b61356b858286016134d7565b92509250509250929050565b5f806040838503121561358d5761358c612fe1565b5b5f61359a85828601613212565b92505060206135ab858286016132a2565b9150509250929050565b5f67ffffffffffffffff8211156135cf576135ce613364565b5b6135d8826130de565b9050602081019050919050565b5f6135f76135f2846135b5565b6133c2565b90508281526020810184848401111561361357613612613360565b5b61361e84828561340c565b509392505050565b5f82601f83011261363a5761363961335c565b5b813561364a8482602086016135e5565b91505092915050565b5f805f806080858703121561366b5761366a612fe1565b5b5f61367887828801613212565b945050602061368987828801613212565b935050604061369a87828801613165565b925050606085013567ffffffffffffffff8111156136bb576136ba612fe5565b5b6136c787828801613626565b91505092959194509250565b5f80604083850312156136e9576136e8612fe1565b5b5f6136f685828601613212565b925050602061370785828601613212565b9150509250929050565b5f806040838503121561372757613726612fe1565b5b5f61373485828601613165565b925050602061374585828601613212565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f600282049050600182168061379357607f821691505b6020821081036137a6576137a561374f565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725f82015250565b5f6137e06020836130a6565b91506137eb826137ac565b602082019050919050565b5f6020820190508181035f83015261380d816137d4565b9050919050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c005f82015250565b5f613848601f836130a6565b915061385382613814565b602082019050919050565b5f6020820190508181035f8301526138758161383c565b9050919050565b5f81905092915050565b50565b5f6138945f8361387c565b915061389f82613886565b5f82019050919050565b5f6138b382613889565b9150819050919050565b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f600883026139197fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826138de565b61392386836138de565b95508019841693508086168417925050509392505050565b5f819050919050565b5f61395e61395961395484613146565b61393b565b613146565b9050919050565b5f819050919050565b61397783613944565b61398b61398382613965565b8484546138ea565b825550505050565b5f90565b61399f613993565b6139aa81848461396e565b505050565b5b818110156139cd576139c25f82613997565b6001810190506139b0565b5050565b601f821115613a12576139e3816138bd565b6139ec846138cf565b810160208510156139fb578190505b613a0f613a07856138cf565b8301826139af565b50505b505050565b5f82821c905092915050565b5f613a325f1984600802613a17565b1980831691505092915050565b5f613a4a8383613a23565b9150826002028217905092915050565b613a638261309c565b67ffffffffffffffff811115613a7c57613a7b613364565b5b613a86825461377c565b613a918282856139d1565b5f60209050601f831160018114613ac2575f8415613ab0578287015190505b613aba8582613a3f565b865550613b21565b601f198416613ad0866138bd565b5f5b82811015613af757848901518255600182019150602085019450602081019050613ad2565b86831015613b145784890151613b10601f891682613a23565b8355505b6001600288020188555050505b505050505050565b5f82905092915050565b613b3d8383613b29565b67ffffffffffffffff811115613b5657613b55613364565b5b613b60825461377c565b613b6b8282856139d1565b5f601f831160018114613b98575f8415613b86578287013590505b613b908582613a3f565b865550613bf7565b601f198416613ba6866138bd565b5f5b82811015613bcd57848901358255600182019150602085019450602081019050613ba8565b86831015613bea5784890135613be6601f891682613a23565b8355505b6001600288020188555050505b50505050505050565b7f436f6e74726163747320617265206e6f7420616c6c6f776564000000000000005f82015250565b5f613c346019836130a6565b9150613c3f82613c00565b602082019050919050565b5f6020820190508181035f830152613c6181613c28565b9050919050565b7f496e76616c6964206d696e7420616d6f756e74000000000000000000000000005f82015250565b5f613c9c6013836130a6565b9150613ca782613c68565b602082019050919050565b5f6020820190508181035f830152613cc981613c90565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f613d0782613146565b9150613d1283613146565b9250828201905080821115613d2a57613d29613cd0565b5b92915050565b7f4d617820737570706c79206578636565646564000000000000000000000000005f82015250565b5f613d646013836130a6565b9150613d6f82613d30565b602082019050919050565b5f6020820190508181035f830152613d9181613d58565b9050919050565b7f54686520636f6e747261637420697320706175736564000000000000000000005f82015250565b5f613dcc6016836130a6565b9150613dd782613d98565b602082019050919050565b5f6020820190508181035f830152613df981613dc0565b9050919050565b7f4d6178206672656520737570706c7920657863656564656400000000000000005f82015250565b5f613e346018836130a6565b9150613e3f82613e00565b602082019050919050565b5f6020820190508181035f830152613e6181613e28565b9050919050565b5f613e7282613146565b9150613e7d83613146565b9250828202613e8b81613146565b91508282048414831517613ea257613ea1613cd0565b5b5092915050565b7f496e73756666696369656e742066756e647300000000000000000000000000005f82015250565b5f613edd6012836130a6565b9150613ee882613ea9565b602082019050919050565b5f6020820190508181035f830152613f0a81613ed1565b9050919050565b5f613f1b82613146565b9150613f2683613146565b9250828203905081811115613f3e57613f3d613cd0565b5b92915050565b7f55524920646f6573206e6f7420657869737421000000000000000000000000005f82015250565b5f613f786013836130a6565b9150613f8382613f44565b602082019050919050565b5f6020820190508181035f830152613fa581613f6c565b9050919050565b5f81905092915050565b5f613fc08261309c565b613fca8185613fac565b9350613fda8185602086016130b6565b80840191505092915050565b5f613ff18285613fb6565b9150613ffd8284613fb6565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f20615f8201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b5f6140636026836130a6565b915061406e82614009565b604082019050919050565b5f6020820190508181035f83015261409081614057565b9050919050565b5f81519050919050565b5f82825260208201905092915050565b5f6140bb82614097565b6140c581856140a1565b93506140d58185602086016130b6565b6140de816130de565b840191505092915050565b5f6080820190506140fc5f8301876131d4565b61410960208301866131d4565b6141166040830185613264565b818103606083015261412881846140b1565b905095945050505050565b5f8151905061414181613014565b92915050565b5f6020828403121561415c5761415b612fe1565b5b5f61416984828501614133565b91505092915050565b5f61417c82613146565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82036141ae576141ad613cd0565b5b600182019050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f6141f082613146565b91506141fb83613146565b92508261420b5761420a6141b9565b5b828204905092915050565b5f61422082613146565b915061422b83613146565b92508261423b5761423a6141b9565b5b828206905092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603260045260245ffdfea2646970667358221220310f5849f8be94ed2bcb1964970dab4608a85b835c609001cf1559a367914cc164736f6c63430008160033

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

000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000042447425900000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : _hiddenMetadataUri (string): $GBY

-----Encoded View---------------
3 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000020
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000004
Arg [2] : 2447425900000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

47795:3418:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29966:305;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33079:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34582:204;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34145:371;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;47959:34;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50290:77;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;29215:303;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48213:44;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35447:170;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;48034:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50374:150;;;;;;;;;;;;;:::i;:::-;;35688:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;49760:74;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;50531:132;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;48181:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50670:98;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;48151:25;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32887:125;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49978:94;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;30335:206;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7724:103;;;;;;;;;;;;;:::i;:::-;;50182:102;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;7073:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48071:37;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33248:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48408:1021;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;34858:287;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;47920:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48113:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49841:130;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;35944:369;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;50892:318;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47888:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47998:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49672:81;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;35216:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49436:127;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;7982:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;50078:98;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;29966:305;30068:4;30120:25;30105:40;;;:11;:40;;;;:105;;;;30177:33;30162:48;;;:11;:48;;;;30105:105;:158;;;;30227:36;30251:11;30227:23;:36::i;:::-;30105:158;30085:178;;29966:305;;;:::o;33079:100::-;33133:13;33166:5;33159:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33079:100;:::o;34582:204::-;34650:7;34675:16;34683:7;34675;:16::i;:::-;34670:64;;34700:34;;;;;;;;;;;;;;34670:64;34754:15;:24;34770:7;34754:24;;;;;;;;;;;;;;;;;;;;;34747:31;;34582:204;;;:::o;34145:371::-;34218:13;34234:24;34250:7;34234:15;:24::i;:::-;34218:40;;34279:5;34273:11;;:2;:11;;;34269:48;;34293:24;;;;;;;;;;;;;;34269:48;34350:5;34334:21;;:12;:10;:12::i;:::-;:21;;;;:63;;;;;34360:37;34377:5;34384:12;:10;:12::i;:::-;34360:16;:37::i;:::-;34359:38;34334:63;34330:138;;;34421:35;;;;;;;;;;;;;;34330:138;34480:28;34489:2;34493:7;34502:5;34480:8;:28::i;:::-;34207:309;34145:371;;:::o;47959:34::-;;;;:::o;50290:77::-;7304:12;:10;:12::i;:::-;7293:23;;:7;:5;:7::i;:::-;:23;;;7285:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;50355:6:::1;50346;;:15;;;;;;;;;;;;;;;;;;50290:77:::0;:::o;29215:303::-;29259:7;29484:15;:13;:15::i;:::-;29469:12;;29453:13;;:28;:46;29446:53;;29215:303;:::o;48213:44::-;;;;;;;;;;;;;;;;;:::o;35447:170::-;35581:28;35591:4;35597:2;35601:7;35581:9;:28::i;:::-;35447:170;;;:::o;48034:32::-;;;;:::o;50374:150::-;7304:12;:10;:12::i;:::-;7293:23;;:7;:5;:7::i;:::-;:23;;;7285:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2047:1:::1;2645:7;;:19:::0;2637:63:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;2047:1;2778:7;:18;;;;50432:7:::2;50453;:5;:7::i;:::-;50445:21;;50474;50445:55;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50431:69;;;50515:2;50507:11;;;::::0;::::2;;50424:100;2003:1:::1;2957:7;:22;;;;50374:150::o:0;35688:185::-;35826:39;35843:4;35849:2;35853:7;35826:39;;;;;;;;;;;;:16;:39::i;:::-;35688:185;;;:::o;49760:74::-;7304:12;:10;:12::i;:::-;7293:23;;:7;:5;:7::i;:::-;:23;;;7285:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;49823:5:::1;49816:4;:12;;;;49760:74:::0;:::o;50531:132::-;7304:12;:10;:12::i;:::-;7293:23;;:7;:5;:7::i;:::-;:23;;;7285:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;50639:18:::1;50619:17;:38;;;;;;:::i;:::-;;50531:132:::0;:::o;48181:27::-;;;;;;;;;;;;;:::o;50670:98::-;7304:12;:10;:12::i;:::-;7293:23;;:7;:5;:7::i;:::-;:23;;;7285:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;50755:7:::1;;50739:13;:23;;;;;;;:::i;:::-;;50670:98:::0;;:::o;48151:25::-;;;;;;;;;;;;;:::o;32887:125::-;32951:7;32978:21;32991:7;32978:12;:21::i;:::-;:26;;;32971:33;;32887:125;;;:::o;49978:94::-;7304:12;:10;:12::i;:::-;7293:23;;:7;:5;:7::i;:::-;:23;;;7285:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;50056:10:::1;50044:9;:22;;;;49978:94:::0;:::o;30335:206::-;30399:7;30440:1;30423:19;;:5;:19;;;30419:60;;30451:28;;;;;;;;;;;;;;30419:60;30505:12;:19;30518:5;30505:19;;;;;;;;;;;;;;;:27;;;;;;;;;;;;30497:36;;30490:43;;30335:206;;;:::o;7724:103::-;7304:12;:10;:12::i;:::-;7293:23;;:7;:5;:7::i;:::-;:23;;;7285:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;7789:30:::1;7816:1;7789:18;:30::i;:::-;7724:103::o:0;50182:102::-;7304:12;:10;:12::i;:::-;7293:23;;:7;:5;:7::i;:::-;:23;;;7285:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;50266:12:::1;50252:11;:26;;;;50182:102:::0;:::o;7073:87::-;7119:7;7146:6;;;;;;;;;;;7139:13;;7073:87;:::o;48071:37::-;;;;:::o;33248:104::-;33304:13;33337:7;33330:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33248:104;:::o;48408:1021::-;2047:1;2645:7;;:19;2637:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;2047:1;2778:7;:18;;;;48499:10:::1;48486:23;;:9;:23;;;48478:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;48568:1;48554:11;:15;:52;;;;;48588:18;;48573:11;:33;;48554:52;48546:84;;;;;;;;;;;;:::i;:::-;;;;;;;;;48676:9;;48661:11;48645:13;:11;:13::i;:::-;:27;;;;:::i;:::-;:40;;48637:72;;;;;;;;;;;;:::i;:::-;;;;;;;;;48725:6;;;;;;;;;;;48724:7;48716:42;;;;;;;;;;;;:::i;:::-;;;;;;;;;48788:10;;48771:13;:11;:13::i;:::-;:27;48767:181;;48833:1;48821:9;:13;48813:50;;;;;;;;;;;;:::i;:::-;;;;;;;;;48904:11;48897:4;;:18;;;;:::i;:::-;48884:9;:31;;48876:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;48767:181;48956:20;48977:11;48956:32;;49027:11;;48999;:25;49011:12;:10;:12::i;:::-;48999:25;;;;;;;;;;;;;;;;:39;48995:263;;;49094:11;;49068;:25;49080:12;:10;:12::i;:::-;49068:25;;;;;;;;;;;;;;;;49054:11;:39;;;;:::i;:::-;:51;49050:201;;;49166:11;:25;49178:12;:10;:12::i;:::-;49166:25;;;;;;;;;;;;;;;;49152:11;;:39;;;;:::i;:::-;49136:12;:56;;;;:::i;:::-;49121:71;;49050:201;;;49238:1;49223:16;;49050:201;48995:263;49292:12;49285:4;;:19;;;;:::i;:::-;49272:9;:32;;49264:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;49369:11;49342;:25;49354:12;:10;:12::i;:::-;49342:25;;;;;;;;;;;;;;;;:38;;;;;;;:::i;:::-;;;;;;;;49387:36;49397:12;:10;:12::i;:::-;49411:11;49387:9;:36::i;:::-;48471:958;2003:1:::0;2957:7;:22;;;;48408:1021;:::o;34858:287::-;34969:12;:10;:12::i;:::-;34957:24;;:8;:24;;;34953:54;;34990:17;;;;;;;;;;;;;;34953:54;35065:8;35020:18;:32;35039:12;:10;:12::i;:::-;35020:32;;;;;;;;;;;;;;;:42;35053:8;35020:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;35118:8;35089:48;;35104:12;:10;:12::i;:::-;35089:48;;;35128:8;35089:48;;;;;;:::i;:::-;;;;;;;;34858:287;;:::o;47920:31::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;48113:30::-;;;;:::o;49841:130::-;7304:12;:10;:12::i;:::-;7293:23;;:7;:5;:7::i;:::-;:23;;;7285:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;49946:19:::1;49925:18;:40;;;;49841:130:::0;:::o;35944:369::-;36111:28;36121:4;36127:2;36131:7;36111:9;:28::i;:::-;36154:15;:2;:13;;;:15::i;:::-;:76;;;;;36174:56;36205:4;36211:2;36215:7;36224:5;36174:30;:56::i;:::-;36173:57;36154:76;36150:156;;;36254:40;;;;;;;;;;;;;;36150:156;35944:369;;;;:::o;50892:318::-;50966:13;50998:17;51006:8;50998:7;:17::i;:::-;50990:49;;;;;;;;;;;;:::i;:::-;;;;;;;;;51055:8;;;;;;;;;;;51051:154;;;51109:10;:8;:10::i;:::-;51121:19;:8;:17;:19::i;:::-;51092:49;;;;;;;;;:::i;:::-;;;;;;;;;;;;;51078:64;;;;51051:154;51178:17;51171:24;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50892:318;;;;:::o;47888:27::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;47998:31::-;;;;:::o;49672:81::-;7304:12;:10;:12::i;:::-;7293:23;;:7;:5;:7::i;:::-;:23;;;7285:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;49741:6:::1;49730:8;;:17;;;;;;;;;;;;;;;;;;49672:81:::0;:::o;35216:164::-;35313:4;35337:18;:25;35356:5;35337:25;;;;;;;;;;;;;;;:35;35363:8;35337:35;;;;;;;;;;;;;;;;;;;;;;;;;35330:42;;35216:164;;;;:::o;49436:127::-;7304:12;:10;:12::i;:::-;7293:23;;:7;:5;:7::i;:::-;:23;;;7285:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;49524:33:::1;49534:9;49545:11;49524:9;:33::i;:::-;49436:127:::0;;:::o;7982:201::-;7304:12;:10;:12::i;:::-;7293:23;;:7;:5;:7::i;:::-;:23;;;7285:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;8091:1:::1;8071:22;;:8;:22;;::::0;8063:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;8147:28;8166:8;8147:18;:28::i;:::-;7982:201:::0;:::o;50078:98::-;7304:12;:10;:12::i;:::-;7293:23;;:7;:5;:7::i;:::-;:23;;;7285:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;50159:11:::1;50146:10;:24;;;;50078:98:::0;:::o;19857:157::-;19942:4;19981:25;19966:40;;;:11;:40;;;;19959:47;;19857:157;;;:::o;36568:174::-;36625:4;36668:7;36649:15;:13;:15::i;:::-;:26;;:53;;;;;36689:13;;36679:7;:23;36649:53;:85;;;;;36707:11;:20;36719:7;36707:20;;;;;;;;;;;:27;;;;;;;;;;;;36706:28;36649:85;36642:92;;36568:174;;;:::o;5797:98::-;5850:7;5877:10;5870:17;;5797:98;:::o;44725:196::-;44867:2;44840:15;:24;44856:7;44840:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;44905:7;44901:2;44885:28;;44894:5;44885:28;;;;;;;;;;;;44725:196;;;:::o;49570:95::-;49635:7;49658:1;49651:8;;49570:95;:::o;39668:2130::-;39783:35;39821:21;39834:7;39821:12;:21::i;:::-;39783:59;;39881:4;39859:26;;:13;:18;;;:26;;;39855:67;;39894:28;;;;;;;;;;;;;;39855:67;39935:22;39977:4;39961:20;;:12;:10;:12::i;:::-;:20;;;:73;;;;39998:36;40015:4;40021:12;:10;:12::i;:::-;39998:16;:36::i;:::-;39961:73;:126;;;;40075:12;:10;:12::i;:::-;40051:36;;:20;40063:7;40051:11;:20::i;:::-;:36;;;39961:126;39935:153;;40106:17;40101:66;;40132:35;;;;;;;;;;;;;;40101:66;40196:1;40182:16;;:2;:16;;;40178:52;;40207:23;;;;;;;;;;;;;;40178:52;40243:43;40265:4;40271:2;40275:7;40284:1;40243:21;:43::i;:::-;40351:35;40368:1;40372:7;40381:4;40351:8;:35::i;:::-;40712:1;40682:12;:18;40695:4;40682:18;;;;;;;;;;;;;;;:26;;;:31;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40756:1;40728:12;:16;40741:2;40728:16;;;;;;;;;;;;;;;:24;;;:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40774:31;40808:11;:20;40820:7;40808:20;;;;;;;;;;;40774:54;;40859:2;40843:8;:13;;;:18;;;;;;;;;;;;;;;;;;40909:15;40876:8;:23;;;:49;;;;;;;;;;;;;;;;;;41177:19;41209:1;41199:7;:11;41177:33;;41225:31;41259:11;:24;41271:11;41259:24;;;;;;;;;;;41225:58;;41327:1;41302:27;;:8;:13;;;;;;;;;;;;:27;;;41298:384;;41512:13;;41497:11;:28;41493:174;;41566:4;41550:8;:13;;;:20;;;;;;;;;;;;;;;;;;41619:13;:28;;;41593:8;:23;;;:54;;;;;;;;;;;;;;;;;;41493:174;41298:384;40657:1036;;;41729:7;41725:2;41710:27;;41719:4;41710:27;;;;;;;;;;;;41748:42;41769:4;41775:2;41779:7;41788:1;41748:20;:42::i;:::-;39772:2026;;39668:2130;;;:::o;31716:1109::-;31778:21;;:::i;:::-;31812:12;31827:7;31812:22;;31895:4;31876:15;:13;:15::i;:::-;:23;;:47;;;;;31910:13;;31903:4;:20;31876:47;31872:886;;;31944:31;31978:11;:17;31990:4;31978:17;;;;;;;;;;;31944:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32019:9;:16;;;32014:729;;32090:1;32064:28;;:9;:14;;;:28;;;32060:101;;32128:9;32121:16;;;;;;32060:101;32463:261;32470:4;32463:261;;;32503:6;;;;;;;;32548:11;:17;32560:4;32548:17;;;;;;;;;;;32536:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32622:1;32596:28;;:9;:14;;;:28;;;32592:109;;32664:9;32657:16;;;;;;32592:109;32463:261;;;32014:729;31925:833;31872:886;32786:31;;;;;;;;;;;;;;31716:1109;;;;:::o;8343:191::-;8417:16;8436:6;;;;;;;;;;;8417:25;;8462:8;8453:6;;:17;;;;;;;;;;;;;;;;;;8517:8;8486:40;;8507:8;8486:40;;;;;;;;;;;;8406:128;8343:191;:::o;36750:104::-;36819:27;36829:2;36833:8;36819:27;;;;;;;;;;;;:9;:27::i;:::-;36750:104;;:::o;9774:326::-;9834:4;10091:1;10069:7;:19;;;:23;10062:30;;9774:326;;;:::o;45413:667::-;45576:4;45613:2;45597:36;;;45634:12;:10;:12::i;:::-;45648:4;45654:7;45663:5;45597:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;45593:480;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45848:1;45831:6;:13;:18;45827:235;;45877:40;;;;;;;;;;;;;;45827:235;46020:6;46014:13;46005:6;46001:2;45997:15;45990:38;45593:480;45726:45;;;45716:55;;;:6;:55;;;;45709:62;;;45413:667;;;;;;:::o;50775:110::-;50835:13;50866;50859:20;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50775:110;:::o;3359:723::-;3415:13;3645:1;3636:5;:10;3632:53;;3663:10;;;;;;;;;;;;;;;;;;;;;3632:53;3695:12;3710:5;3695:20;;3726:14;3751:78;3766:1;3758:4;:9;3751:78;;3784:8;;;;;:::i;:::-;;;;3815:2;3807:10;;;;;:::i;:::-;;;3751:78;;;3839:19;3871:6;3861:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3839:39;;3889:154;3905:1;3896:5;:10;3889:154;;3933:1;3923:11;;;;;:::i;:::-;;;4000:2;3992:5;:10;;;;:::i;:::-;3979:2;:24;;;;:::i;:::-;3966:39;;3949:6;3956;3949:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;4029:2;4020:11;;;;;:::i;:::-;;;3889:154;;;4067:6;4053:21;;;;;3359:723;;;;:::o;46728:159::-;;;;;:::o;47546:158::-;;;;;:::o;37217:163::-;37340:32;37346:2;37350:8;37360:5;37367:4;37340:5;:32::i;:::-;37217:163;;;:::o;37639:1775::-;37778:20;37801:13;;37778:36;;37843:1;37829:16;;:2;:16;;;37825:48;;37854:19;;;;;;;;;;;;;;37825:48;37900:1;37888:8;:13;37884:44;;37910:18;;;;;;;;;;;;;;37884:44;37941:61;37971:1;37975:2;37979:12;37993:8;37941:21;:61::i;:::-;38314:8;38279:12;:16;38292:2;38279:16;;;;;;;;;;;;;;;:24;;;:44;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38378:8;38338:12;:16;38351:2;38338:16;;;;;;;;;;;;;;;:29;;;:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38437:2;38404:11;:25;38416:12;38404:25;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;38504:15;38454:11;:25;38466:12;38454:25;;;;;;;;;;;:40;;;:66;;;;;;;;;;;;;;;;;;38537:20;38560:12;38537:35;;38587:11;38616:8;38601:12;:23;38587:37;;38645:4;:23;;;;;38653:15;:2;:13;;;:15::i;:::-;38645:23;38641:641;;;38689:314;38745:12;38741:2;38720:38;;38737:1;38720:38;;;;;;;;;;;;38786:69;38825:1;38829:2;38833:14;;;;;;38849:5;38786:30;:69::i;:::-;38781:174;;38891:40;;;;;;;;;;;;;;38781:174;38998:3;38982:12;:19;38689:314;;39084:12;39067:13;;:29;39063:43;;39098:8;;;39063:43;38641:641;;;39147:120;39203:14;;;;;;39199:2;39178:40;;39195:1;39178:40;;;;;;;;;;;;39262:3;39246:12;:19;39147:120;;38641:641;39312:12;39296:13;:28;;;;38254:1082;;39346:60;39375:1;39379:2;39383:12;39397:8;39346:20;:60::i;:::-;37767:1647;37639:1775;;;;:::o;-1:-1:-1:-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;7:75:1:-;40:6;73:2;67:9;57:19;;7:75;:::o;88:117::-;197:1;194;187:12;211:117;320:1;317;310:12;334:149;370:7;410:66;403:5;399:78;388:89;;334:149;;;:::o;489:120::-;561:23;578:5;561:23;:::i;:::-;554:5;551:34;541:62;;599:1;596;589:12;541:62;489:120;:::o;615:137::-;660:5;698:6;685:20;676:29;;714:32;740:5;714:32;:::i;:::-;615:137;;;;:::o;758:327::-;816:6;865:2;853:9;844:7;840:23;836:32;833:119;;;871:79;;:::i;:::-;833:119;991:1;1016:52;1060:7;1051:6;1040:9;1036:22;1016:52;:::i;:::-;1006:62;;962:116;758:327;;;;:::o;1091:90::-;1125:7;1168:5;1161:13;1154:21;1143:32;;1091:90;;;:::o;1187:109::-;1268:21;1283:5;1268:21;:::i;:::-;1263:3;1256:34;1187:109;;:::o;1302:210::-;1389:4;1427:2;1416:9;1412:18;1404:26;;1440:65;1502:1;1491:9;1487:17;1478:6;1440:65;:::i;:::-;1302:210;;;;:::o;1518:99::-;1570:6;1604:5;1598:12;1588:22;;1518:99;;;:::o;1623:169::-;1707:11;1741:6;1736:3;1729:19;1781:4;1776:3;1772:14;1757:29;;1623:169;;;;:::o;1798:246::-;1879:1;1889:113;1903:6;1900:1;1897:13;1889:113;;;1988:1;1983:3;1979:11;1973:18;1969:1;1964:3;1960:11;1953:39;1925:2;1922:1;1918:10;1913:15;;1889:113;;;2036:1;2027:6;2022:3;2018:16;2011:27;1860:184;1798:246;;;:::o;2050:102::-;2091:6;2142:2;2138:7;2133:2;2126:5;2122:14;2118:28;2108:38;;2050:102;;;:::o;2158:377::-;2246:3;2274:39;2307:5;2274:39;:::i;:::-;2329:71;2393:6;2388:3;2329:71;:::i;:::-;2322:78;;2409:65;2467:6;2462:3;2455:4;2448:5;2444:16;2409:65;:::i;:::-;2499:29;2521:6;2499:29;:::i;:::-;2494:3;2490:39;2483:46;;2250:285;2158:377;;;;:::o;2541:313::-;2654:4;2692:2;2681:9;2677:18;2669:26;;2741:9;2735:4;2731:20;2727:1;2716:9;2712:17;2705:47;2769:78;2842:4;2833:6;2769:78;:::i;:::-;2761:86;;2541:313;;;;:::o;2860:77::-;2897:7;2926:5;2915:16;;2860:77;;;:::o;2943:122::-;3016:24;3034:5;3016:24;:::i;:::-;3009:5;3006:35;2996:63;;3055:1;3052;3045:12;2996:63;2943:122;:::o;3071:139::-;3117:5;3155:6;3142:20;3133:29;;3171:33;3198:5;3171:33;:::i;:::-;3071:139;;;;:::o;3216:329::-;3275:6;3324:2;3312:9;3303:7;3299:23;3295:32;3292:119;;;3330:79;;:::i;:::-;3292:119;3450:1;3475:53;3520:7;3511:6;3500:9;3496:22;3475:53;:::i;:::-;3465:63;;3421:117;3216:329;;;;:::o;3551:126::-;3588:7;3628:42;3621:5;3617:54;3606:65;;3551:126;;;:::o;3683:96::-;3720:7;3749:24;3767:5;3749:24;:::i;:::-;3738:35;;3683:96;;;:::o;3785:118::-;3872:24;3890:5;3872:24;:::i;:::-;3867:3;3860:37;3785:118;;:::o;3909:222::-;4002:4;4040:2;4029:9;4025:18;4017:26;;4053:71;4121:1;4110:9;4106:17;4097:6;4053:71;:::i;:::-;3909:222;;;;:::o;4137:122::-;4210:24;4228:5;4210:24;:::i;:::-;4203:5;4200:35;4190:63;;4249:1;4246;4239:12;4190:63;4137:122;:::o;4265:139::-;4311:5;4349:6;4336:20;4327:29;;4365:33;4392:5;4365:33;:::i;:::-;4265:139;;;;:::o;4410:474::-;4478:6;4486;4535:2;4523:9;4514:7;4510:23;4506:32;4503:119;;;4541:79;;:::i;:::-;4503:119;4661:1;4686:53;4731:7;4722:6;4711:9;4707:22;4686:53;:::i;:::-;4676:63;;4632:117;4788:2;4814:53;4859:7;4850:6;4839:9;4835:22;4814:53;:::i;:::-;4804:63;;4759:118;4410:474;;;;;:::o;4890:118::-;4977:24;4995:5;4977:24;:::i;:::-;4972:3;4965:37;4890:118;;:::o;5014:222::-;5107:4;5145:2;5134:9;5130:18;5122:26;;5158:71;5226:1;5215:9;5211:17;5202:6;5158:71;:::i;:::-;5014:222;;;;:::o;5242:116::-;5312:21;5327:5;5312:21;:::i;:::-;5305:5;5302:32;5292:60;;5348:1;5345;5338:12;5292:60;5242:116;:::o;5364:133::-;5407:5;5445:6;5432:20;5423:29;;5461:30;5485:5;5461:30;:::i;:::-;5364:133;;;;:::o;5503:323::-;5559:6;5608:2;5596:9;5587:7;5583:23;5579:32;5576:119;;;5614:79;;:::i;:::-;5576:119;5734:1;5759:50;5801:7;5792:6;5781:9;5777:22;5759:50;:::i;:::-;5749:60;;5705:114;5503:323;;;;:::o;5832:329::-;5891:6;5940:2;5928:9;5919:7;5915:23;5911:32;5908:119;;;5946:79;;:::i;:::-;5908:119;6066:1;6091:53;6136:7;6127:6;6116:9;6112:22;6091:53;:::i;:::-;6081:63;;6037:117;5832:329;;;;:::o;6167:619::-;6244:6;6252;6260;6309:2;6297:9;6288:7;6284:23;6280:32;6277:119;;;6315:79;;:::i;:::-;6277:119;6435:1;6460:53;6505:7;6496:6;6485:9;6481:22;6460:53;:::i;:::-;6450:63;;6406:117;6562:2;6588:53;6633:7;6624:6;6613:9;6609:22;6588:53;:::i;:::-;6578:63;;6533:118;6690:2;6716:53;6761:7;6752:6;6741:9;6737:22;6716:53;:::i;:::-;6706:63;;6661:118;6167:619;;;;;:::o;6792:117::-;6901:1;6898;6891:12;6915:117;7024:1;7021;7014:12;7038:180;7086:77;7083:1;7076:88;7183:4;7180:1;7173:15;7207:4;7204:1;7197:15;7224:281;7307:27;7329:4;7307:27;:::i;:::-;7299:6;7295:40;7437:6;7425:10;7422:22;7401:18;7389:10;7386:34;7383:62;7380:88;;;7448:18;;:::i;:::-;7380:88;7488:10;7484:2;7477:22;7267:238;7224:281;;:::o;7511:129::-;7545:6;7572:20;;:::i;:::-;7562:30;;7601:33;7629:4;7621:6;7601:33;:::i;:::-;7511:129;;;:::o;7646:308::-;7708:4;7798:18;7790:6;7787:30;7784:56;;;7820:18;;:::i;:::-;7784:56;7858:29;7880:6;7858:29;:::i;:::-;7850:37;;7942:4;7936;7932:15;7924:23;;7646:308;;;:::o;7960:146::-;8057:6;8052:3;8047;8034:30;8098:1;8089:6;8084:3;8080:16;8073:27;7960:146;;;:::o;8112:425::-;8190:5;8215:66;8231:49;8273:6;8231:49;:::i;:::-;8215:66;:::i;:::-;8206:75;;8304:6;8297:5;8290:21;8342:4;8335:5;8331:16;8380:3;8371:6;8366:3;8362:16;8359:25;8356:112;;;8387:79;;:::i;:::-;8356:112;8477:54;8524:6;8519:3;8514;8477:54;:::i;:::-;8196:341;8112:425;;;;;:::o;8557:340::-;8613:5;8662:3;8655:4;8647:6;8643:17;8639:27;8629:122;;8670:79;;:::i;:::-;8629:122;8787:6;8774:20;8812:79;8887:3;8879:6;8872:4;8864:6;8860:17;8812:79;:::i;:::-;8803:88;;8619:278;8557:340;;;;:::o;8903:509::-;8972:6;9021:2;9009:9;9000:7;8996:23;8992:32;8989:119;;;9027:79;;:::i;:::-;8989:119;9175:1;9164:9;9160:17;9147:31;9205:18;9197:6;9194:30;9191:117;;;9227:79;;:::i;:::-;9191:117;9332:63;9387:7;9378:6;9367:9;9363:22;9332:63;:::i;:::-;9322:73;;9118:287;8903:509;;;;:::o;9418:117::-;9527:1;9524;9517:12;9541:117;9650:1;9647;9640:12;9678:553;9736:8;9746:6;9796:3;9789:4;9781:6;9777:17;9773:27;9763:122;;9804:79;;:::i;:::-;9763:122;9917:6;9904:20;9894:30;;9947:18;9939:6;9936:30;9933:117;;;9969:79;;:::i;:::-;9933:117;10083:4;10075:6;10071:17;10059:29;;10137:3;10129:4;10121:6;10117:17;10107:8;10103:32;10100:41;10097:128;;;10144:79;;:::i;:::-;10097:128;9678:553;;;;;:::o;10237:529::-;10308:6;10316;10365:2;10353:9;10344:7;10340:23;10336:32;10333:119;;;10371:79;;:::i;:::-;10333:119;10519:1;10508:9;10504:17;10491:31;10549:18;10541:6;10538:30;10535:117;;;10571:79;;:::i;:::-;10535:117;10684:65;10741:7;10732:6;10721:9;10717:22;10684:65;:::i;:::-;10666:83;;;;10462:297;10237:529;;;;;:::o;10772:468::-;10837:6;10845;10894:2;10882:9;10873:7;10869:23;10865:32;10862:119;;;10900:79;;:::i;:::-;10862:119;11020:1;11045:53;11090:7;11081:6;11070:9;11066:22;11045:53;:::i;:::-;11035:63;;10991:117;11147:2;11173:50;11215:7;11206:6;11195:9;11191:22;11173:50;:::i;:::-;11163:60;;11118:115;10772:468;;;;;:::o;11246:307::-;11307:4;11397:18;11389:6;11386:30;11383:56;;;11419:18;;:::i;:::-;11383:56;11457:29;11479:6;11457:29;:::i;:::-;11449:37;;11541:4;11535;11531:15;11523:23;;11246:307;;;:::o;11559:423::-;11636:5;11661:65;11677:48;11718:6;11677:48;:::i;:::-;11661:65;:::i;:::-;11652:74;;11749:6;11742:5;11735:21;11787:4;11780:5;11776:16;11825:3;11816:6;11811:3;11807:16;11804:25;11801:112;;;11832:79;;:::i;:::-;11801:112;11922:54;11969:6;11964:3;11959;11922:54;:::i;:::-;11642:340;11559:423;;;;;:::o;12001:338::-;12056:5;12105:3;12098:4;12090:6;12086:17;12082:27;12072:122;;12113:79;;:::i;:::-;12072:122;12230:6;12217:20;12255:78;12329:3;12321:6;12314:4;12306:6;12302:17;12255:78;:::i;:::-;12246:87;;12062:277;12001:338;;;;:::o;12345:943::-;12440:6;12448;12456;12464;12513:3;12501:9;12492:7;12488:23;12484:33;12481:120;;;12520:79;;:::i;:::-;12481:120;12640:1;12665:53;12710:7;12701:6;12690:9;12686:22;12665:53;:::i;:::-;12655:63;;12611:117;12767:2;12793:53;12838:7;12829:6;12818:9;12814:22;12793:53;:::i;:::-;12783:63;;12738:118;12895:2;12921:53;12966:7;12957:6;12946:9;12942:22;12921:53;:::i;:::-;12911:63;;12866:118;13051:2;13040:9;13036:18;13023:32;13082:18;13074:6;13071:30;13068:117;;;13104:79;;:::i;:::-;13068:117;13209:62;13263:7;13254:6;13243:9;13239:22;13209:62;:::i;:::-;13199:72;;12994:287;12345:943;;;;;;;:::o;13294:474::-;13362:6;13370;13419:2;13407:9;13398:7;13394:23;13390:32;13387:119;;;13425:79;;:::i;:::-;13387:119;13545:1;13570:53;13615:7;13606:6;13595:9;13591:22;13570:53;:::i;:::-;13560:63;;13516:117;13672:2;13698:53;13743:7;13734:6;13723:9;13719:22;13698:53;:::i;:::-;13688:63;;13643:118;13294:474;;;;;:::o;13774:::-;13842:6;13850;13899:2;13887:9;13878:7;13874:23;13870:32;13867:119;;;13905:79;;:::i;:::-;13867:119;14025:1;14050:53;14095:7;14086:6;14075:9;14071:22;14050:53;:::i;:::-;14040:63;;13996:117;14152:2;14178:53;14223:7;14214:6;14203:9;14199:22;14178:53;:::i;:::-;14168:63;;14123:118;13774:474;;;;;:::o;14254:180::-;14302:77;14299:1;14292:88;14399:4;14396:1;14389:15;14423:4;14420:1;14413:15;14440:320;14484:6;14521:1;14515:4;14511:12;14501:22;;14568:1;14562:4;14558:12;14589:18;14579:81;;14645:4;14637:6;14633:17;14623:27;;14579:81;14707:2;14699:6;14696:14;14676:18;14673:38;14670:84;;14726:18;;:::i;:::-;14670:84;14491:269;14440:320;;;:::o;14766:182::-;14906:34;14902:1;14894:6;14890:14;14883:58;14766:182;:::o;14954:366::-;15096:3;15117:67;15181:2;15176:3;15117:67;:::i;:::-;15110:74;;15193:93;15282:3;15193:93;:::i;:::-;15311:2;15306:3;15302:12;15295:19;;14954:366;;;:::o;15326:419::-;15492:4;15530:2;15519:9;15515:18;15507:26;;15579:9;15573:4;15569:20;15565:1;15554:9;15550:17;15543:47;15607:131;15733:4;15607:131;:::i;:::-;15599:139;;15326:419;;;:::o;15751:181::-;15891:33;15887:1;15879:6;15875:14;15868:57;15751:181;:::o;15938:366::-;16080:3;16101:67;16165:2;16160:3;16101:67;:::i;:::-;16094:74;;16177:93;16266:3;16177:93;:::i;:::-;16295:2;16290:3;16286:12;16279:19;;15938:366;;;:::o;16310:419::-;16476:4;16514:2;16503:9;16499:18;16491:26;;16563:9;16557:4;16553:20;16549:1;16538:9;16534:17;16527:47;16591:131;16717:4;16591:131;:::i;:::-;16583:139;;16310:419;;;:::o;16735:147::-;16836:11;16873:3;16858:18;;16735:147;;;;:::o;16888:114::-;;:::o;17008:398::-;17167:3;17188:83;17269:1;17264:3;17188:83;:::i;:::-;17181:90;;17280:93;17369:3;17280:93;:::i;:::-;17398:1;17393:3;17389:11;17382:18;;17008:398;;;:::o;17412:379::-;17596:3;17618:147;17761:3;17618:147;:::i;:::-;17611:154;;17782:3;17775:10;;17412:379;;;:::o;17797:141::-;17846:4;17869:3;17861:11;;17892:3;17889:1;17882:14;17926:4;17923:1;17913:18;17905:26;;17797:141;;;:::o;17944:93::-;17981:6;18028:2;18023;18016:5;18012:14;18008:23;17998:33;;17944:93;;;:::o;18043:107::-;18087:8;18137:5;18131:4;18127:16;18106:37;;18043:107;;;;:::o;18156:393::-;18225:6;18275:1;18263:10;18259:18;18298:97;18328:66;18317:9;18298:97;:::i;:::-;18416:39;18446:8;18435:9;18416:39;:::i;:::-;18404:51;;18488:4;18484:9;18477:5;18473:21;18464:30;;18537:4;18527:8;18523:19;18516:5;18513:30;18503:40;;18232:317;;18156:393;;;;;:::o;18555:60::-;18583:3;18604:5;18597:12;;18555:60;;;:::o;18621:142::-;18671:9;18704:53;18722:34;18731:24;18749:5;18731:24;:::i;:::-;18722:34;:::i;:::-;18704:53;:::i;:::-;18691:66;;18621:142;;;:::o;18769:75::-;18812:3;18833:5;18826:12;;18769:75;;;:::o;18850:269::-;18960:39;18991:7;18960:39;:::i;:::-;19021:91;19070:41;19094:16;19070:41;:::i;:::-;19062:6;19055:4;19049:11;19021:91;:::i;:::-;19015:4;19008:105;18926:193;18850:269;;;:::o;19125:73::-;19170:3;19125:73;:::o;19204:189::-;19281:32;;:::i;:::-;19322:65;19380:6;19372;19366:4;19322:65;:::i;:::-;19257:136;19204:189;;:::o;19399:186::-;19459:120;19476:3;19469:5;19466:14;19459:120;;;19530:39;19567:1;19560:5;19530:39;:::i;:::-;19503:1;19496:5;19492:13;19483:22;;19459:120;;;19399:186;;:::o;19591:543::-;19692:2;19687:3;19684:11;19681:446;;;19726:38;19758:5;19726:38;:::i;:::-;19810:29;19828:10;19810:29;:::i;:::-;19800:8;19796:44;19993:2;19981:10;19978:18;19975:49;;;20014:8;19999:23;;19975:49;20037:80;20093:22;20111:3;20093:22;:::i;:::-;20083:8;20079:37;20066:11;20037:80;:::i;:::-;19696:431;;19681:446;19591:543;;;:::o;20140:117::-;20194:8;20244:5;20238:4;20234:16;20213:37;;20140:117;;;;:::o;20263:169::-;20307:6;20340:51;20388:1;20384:6;20376:5;20373:1;20369:13;20340:51;:::i;:::-;20336:56;20421:4;20415;20411:15;20401:25;;20314:118;20263:169;;;;:::o;20437:295::-;20513:4;20659:29;20684:3;20678:4;20659:29;:::i;:::-;20651:37;;20721:3;20718:1;20714:11;20708:4;20705:21;20697:29;;20437:295;;;;:::o;20737:1395::-;20854:37;20887:3;20854:37;:::i;:::-;20956:18;20948:6;20945:30;20942:56;;;20978:18;;:::i;:::-;20942:56;21022:38;21054:4;21048:11;21022:38;:::i;:::-;21107:67;21167:6;21159;21153:4;21107:67;:::i;:::-;21201:1;21225:4;21212:17;;21257:2;21249:6;21246:14;21274:1;21269:618;;;;21931:1;21948:6;21945:77;;;21997:9;21992:3;21988:19;21982:26;21973:35;;21945:77;22048:67;22108:6;22101:5;22048:67;:::i;:::-;22042:4;22035:81;21904:222;21239:887;;21269:618;21321:4;21317:9;21309:6;21305:22;21355:37;21387:4;21355:37;:::i;:::-;21414:1;21428:208;21442:7;21439:1;21436:14;21428:208;;;21521:9;21516:3;21512:19;21506:26;21498:6;21491:42;21572:1;21564:6;21560:14;21550:24;;21619:2;21608:9;21604:18;21591:31;;21465:4;21462:1;21458:12;21453:17;;21428:208;;;21664:6;21655:7;21652:19;21649:179;;;21722:9;21717:3;21713:19;21707:26;21765:48;21807:4;21799:6;21795:17;21784:9;21765:48;:::i;:::-;21757:6;21750:64;21672:156;21649:179;21874:1;21870;21862:6;21858:14;21854:22;21848:4;21841:36;21276:611;;;21239:887;;20829:1303;;;20737:1395;;:::o;22138:97::-;22197:6;22225:3;22215:13;;22138:97;;;;:::o;22241:1403::-;22365:44;22405:3;22400;22365:44;:::i;:::-;22474:18;22466:6;22463:30;22460:56;;;22496:18;;:::i;:::-;22460:56;22540:38;22572:4;22566:11;22540:38;:::i;:::-;22625:67;22685:6;22677;22671:4;22625:67;:::i;:::-;22719:1;22748:2;22740:6;22737:14;22765:1;22760:632;;;;23436:1;23453:6;23450:84;;;23509:9;23504:3;23500:19;23487:33;23478:42;;23450:84;23560:67;23620:6;23613:5;23560:67;:::i;:::-;23554:4;23547:81;23409:229;22730:908;;22760:632;22812:4;22808:9;22800:6;22796:22;22846:37;22878:4;22846:37;:::i;:::-;22905:1;22919:215;22933:7;22930:1;22927:14;22919:215;;;23019:9;23014:3;23010:19;22997:33;22989:6;22982:49;23070:1;23062:6;23058:14;23048:24;;23117:2;23106:9;23102:18;23089:31;;22956:4;22953:1;22949:12;22944:17;;22919:215;;;23162:6;23153:7;23150:19;23147:186;;;23227:9;23222:3;23218:19;23205:33;23270:48;23312:4;23304:6;23300:17;23289:9;23270:48;:::i;:::-;23262:6;23255:64;23170:163;23147:186;23379:1;23375;23367:6;23363:14;23359:22;23353:4;23346:36;22767:625;;;22730:908;;22340:1304;;;22241:1403;;;:::o;23650:175::-;23790:27;23786:1;23778:6;23774:14;23767:51;23650:175;:::o;23831:366::-;23973:3;23994:67;24058:2;24053:3;23994:67;:::i;:::-;23987:74;;24070:93;24159:3;24070:93;:::i;:::-;24188:2;24183:3;24179:12;24172:19;;23831:366;;;:::o;24203:419::-;24369:4;24407:2;24396:9;24392:18;24384:26;;24456:9;24450:4;24446:20;24442:1;24431:9;24427:17;24420:47;24484:131;24610:4;24484:131;:::i;:::-;24476:139;;24203:419;;;:::o;24628:169::-;24768:21;24764:1;24756:6;24752:14;24745:45;24628:169;:::o;24803:366::-;24945:3;24966:67;25030:2;25025:3;24966:67;:::i;:::-;24959:74;;25042:93;25131:3;25042:93;:::i;:::-;25160:2;25155:3;25151:12;25144:19;;24803:366;;;:::o;25175:419::-;25341:4;25379:2;25368:9;25364:18;25356:26;;25428:9;25422:4;25418:20;25414:1;25403:9;25399:17;25392:47;25456:131;25582:4;25456:131;:::i;:::-;25448:139;;25175:419;;;:::o;25600:180::-;25648:77;25645:1;25638:88;25745:4;25742:1;25735:15;25769:4;25766:1;25759:15;25786:191;25826:3;25845:20;25863:1;25845:20;:::i;:::-;25840:25;;25879:20;25897:1;25879:20;:::i;:::-;25874:25;;25922:1;25919;25915:9;25908:16;;25943:3;25940:1;25937:10;25934:36;;;25950:18;;:::i;:::-;25934:36;25786:191;;;;:::o;25983:169::-;26123:21;26119:1;26111:6;26107:14;26100:45;25983:169;:::o;26158:366::-;26300:3;26321:67;26385:2;26380:3;26321:67;:::i;:::-;26314:74;;26397:93;26486:3;26397:93;:::i;:::-;26515:2;26510:3;26506:12;26499:19;;26158:366;;;:::o;26530:419::-;26696:4;26734:2;26723:9;26719:18;26711:26;;26783:9;26777:4;26773:20;26769:1;26758:9;26754:17;26747:47;26811:131;26937:4;26811:131;:::i;:::-;26803:139;;26530:419;;;:::o;26955:172::-;27095:24;27091:1;27083:6;27079:14;27072:48;26955:172;:::o;27133:366::-;27275:3;27296:67;27360:2;27355:3;27296:67;:::i;:::-;27289:74;;27372:93;27461:3;27372:93;:::i;:::-;27490:2;27485:3;27481:12;27474:19;;27133:366;;;:::o;27505:419::-;27671:4;27709:2;27698:9;27694:18;27686:26;;27758:9;27752:4;27748:20;27744:1;27733:9;27729:17;27722:47;27786:131;27912:4;27786:131;:::i;:::-;27778:139;;27505:419;;;:::o;27930:174::-;28070:26;28066:1;28058:6;28054:14;28047:50;27930:174;:::o;28110:366::-;28252:3;28273:67;28337:2;28332:3;28273:67;:::i;:::-;28266:74;;28349:93;28438:3;28349:93;:::i;:::-;28467:2;28462:3;28458:12;28451:19;;28110:366;;;:::o;28482:419::-;28648:4;28686:2;28675:9;28671:18;28663:26;;28735:9;28729:4;28725:20;28721:1;28710:9;28706:17;28699:47;28763:131;28889:4;28763:131;:::i;:::-;28755:139;;28482:419;;;:::o;28907:410::-;28947:7;28970:20;28988:1;28970:20;:::i;:::-;28965:25;;29004:20;29022:1;29004:20;:::i;:::-;28999:25;;29059:1;29056;29052:9;29081:30;29099:11;29081:30;:::i;:::-;29070:41;;29260:1;29251:7;29247:15;29244:1;29241:22;29221:1;29214:9;29194:83;29171:139;;29290:18;;:::i;:::-;29171:139;28955:362;28907:410;;;;:::o;29323:168::-;29463:20;29459:1;29451:6;29447:14;29440:44;29323:168;:::o;29497:366::-;29639:3;29660:67;29724:2;29719:3;29660:67;:::i;:::-;29653:74;;29736:93;29825:3;29736:93;:::i;:::-;29854:2;29849:3;29845:12;29838:19;;29497:366;;;:::o;29869:419::-;30035:4;30073:2;30062:9;30058:18;30050:26;;30122:9;30116:4;30112:20;30108:1;30097:9;30093:17;30086:47;30150:131;30276:4;30150:131;:::i;:::-;30142:139;;29869:419;;;:::o;30294:194::-;30334:4;30354:20;30372:1;30354:20;:::i;:::-;30349:25;;30388:20;30406:1;30388:20;:::i;:::-;30383:25;;30432:1;30429;30425:9;30417:17;;30456:1;30450:4;30447:11;30444:37;;;30461:18;;:::i;:::-;30444:37;30294:194;;;;:::o;30494:169::-;30634:21;30630:1;30622:6;30618:14;30611:45;30494:169;:::o;30669:366::-;30811:3;30832:67;30896:2;30891:3;30832:67;:::i;:::-;30825:74;;30908:93;30997:3;30908:93;:::i;:::-;31026:2;31021:3;31017:12;31010:19;;30669:366;;;:::o;31041:419::-;31207:4;31245:2;31234:9;31230:18;31222:26;;31294:9;31288:4;31284:20;31280:1;31269:9;31265:17;31258:47;31322:131;31448:4;31322:131;:::i;:::-;31314:139;;31041:419;;;:::o;31466:148::-;31568:11;31605:3;31590:18;;31466:148;;;;:::o;31620:390::-;31726:3;31754:39;31787:5;31754:39;:::i;:::-;31809:89;31891:6;31886:3;31809:89;:::i;:::-;31802:96;;31907:65;31965:6;31960:3;31953:4;31946:5;31942:16;31907:65;:::i;:::-;31997:6;31992:3;31988:16;31981:23;;31730:280;31620:390;;;;:::o;32016:435::-;32196:3;32218:95;32309:3;32300:6;32218:95;:::i;:::-;32211:102;;32330:95;32421:3;32412:6;32330:95;:::i;:::-;32323:102;;32442:3;32435:10;;32016:435;;;;;:::o;32457:225::-;32597:34;32593:1;32585:6;32581:14;32574:58;32666:8;32661:2;32653:6;32649:15;32642:33;32457:225;:::o;32688:366::-;32830:3;32851:67;32915:2;32910:3;32851:67;:::i;:::-;32844:74;;32927:93;33016:3;32927:93;:::i;:::-;33045:2;33040:3;33036:12;33029:19;;32688:366;;;:::o;33060:419::-;33226:4;33264:2;33253:9;33249:18;33241:26;;33313:9;33307:4;33303:20;33299:1;33288:9;33284:17;33277:47;33341:131;33467:4;33341:131;:::i;:::-;33333:139;;33060:419;;;:::o;33485:98::-;33536:6;33570:5;33564:12;33554:22;;33485:98;;;:::o;33589:168::-;33672:11;33706:6;33701:3;33694:19;33746:4;33741:3;33737:14;33722:29;;33589:168;;;;:::o;33763:373::-;33849:3;33877:38;33909:5;33877:38;:::i;:::-;33931:70;33994:6;33989:3;33931:70;:::i;:::-;33924:77;;34010:65;34068:6;34063:3;34056:4;34049:5;34045:16;34010:65;:::i;:::-;34100:29;34122:6;34100:29;:::i;:::-;34095:3;34091:39;34084:46;;33853:283;33763:373;;;;:::o;34142:640::-;34337:4;34375:3;34364:9;34360:19;34352:27;;34389:71;34457:1;34446:9;34442:17;34433:6;34389:71;:::i;:::-;34470:72;34538:2;34527:9;34523:18;34514:6;34470:72;:::i;:::-;34552;34620:2;34609:9;34605:18;34596:6;34552:72;:::i;:::-;34671:9;34665:4;34661:20;34656:2;34645:9;34641:18;34634:48;34699:76;34770:4;34761:6;34699:76;:::i;:::-;34691:84;;34142:640;;;;;;;:::o;34788:141::-;34844:5;34875:6;34869:13;34860:22;;34891:32;34917:5;34891:32;:::i;:::-;34788:141;;;;:::o;34935:349::-;35004:6;35053:2;35041:9;35032:7;35028:23;35024:32;35021:119;;;35059:79;;:::i;:::-;35021:119;35179:1;35204:63;35259:7;35250:6;35239:9;35235:22;35204:63;:::i;:::-;35194:73;;35150:127;34935:349;;;;:::o;35290:233::-;35329:3;35352:24;35370:5;35352:24;:::i;:::-;35343:33;;35398:66;35391:5;35388:77;35385:103;;35468:18;;:::i;:::-;35385:103;35515:1;35508:5;35504:13;35497:20;;35290:233;;;:::o;35529:180::-;35577:77;35574:1;35567:88;35674:4;35671:1;35664:15;35698:4;35695:1;35688:15;35715:185;35755:1;35772:20;35790:1;35772:20;:::i;:::-;35767:25;;35806:20;35824:1;35806:20;:::i;:::-;35801:25;;35845:1;35835:35;;35850:18;;:::i;:::-;35835:35;35892:1;35889;35885:9;35880:14;;35715:185;;;;:::o;35906:176::-;35938:1;35955:20;35973:1;35955:20;:::i;:::-;35950:25;;35989:20;36007:1;35989:20;:::i;:::-;35984:25;;36028:1;36018:35;;36033:18;;:::i;:::-;36018:35;36074:1;36071;36067:9;36062:14;;35906:176;;;;:::o;36088:180::-;36136:77;36133:1;36126:88;36233:4;36230:1;36223:15;36257:4;36254:1;36247:15

Swarm Source

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