ETH Price: $3,298.16 (-3.72%)
Gas: 8 Gwei

Token

Ghosties (GHOSTIES)
 

Overview

Max Total Supply

10,000 GHOSTIES

Holders

1,233

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
iamgilroy.eth
Balance
3 GHOSTIES
0x832d0917b83cc41d5c049493ab6fc34ff6074af0
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:
Ghosties

Compiler Version
v0.8.17+commit.8df45f5f

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-04-10
*/

// 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/Ghosties.sol


 
pragma solidity >=0.8.0 <0.9.0;




 
contract Ghosties is ERC721A, Ownable, ReentrancyGuard {
  using Strings for uint256;
 
  string public _baseTokenURI;
  string public hiddenMetadataUri;
 
  uint256 public cost = 0 ether;
  uint256 public maxSupply = 10000;
  uint256 public freeSupply = 10000;
  uint256 public maxMintAmountPerTx = 3;
 
  bool public paused;
  bool public revealed = false;
 
  constructor(
    string memory _hiddenMetadataUri
  ) ERC721A("Ghosties", "GHOSTIES") {
 
    setHiddenMetadataUri(_hiddenMetadataUri);
  }
 
  function mint(uint256 _mintAmount) public payable nonReentrant {
    require(_mintAmount > 0 && _mintAmount <= maxMintAmountPerTx, "Invalid mint amount!");
    require(totalSupply() + _mintAmount <= maxSupply, "Max supply exceeded!");
    require(!paused, "The contract is paused!");
    require(msg.value >= cost * _mintAmount, "Insufficient funds!");

    if (totalSupply() >= freeSupply) {
          require(msg.value > 0, "Max free supply exceeded!");
      }
 
    _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 setPaused(bool _state) public onlyOwner {
    paused = _state;
  }
 
  function withdraw() public onlyOwner nonReentrant {
    (bool os, ) = payable(owner()).call{value: address(this).balance}('');
    require(os);
  }
 
  // METADATA HANDLING
 
  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":"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":"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":"_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"}]

60806040526000600c55612710600d55612710600e556003600f556000601060016101000a81548160ff0219169083151502179055503480156200004257600080fd5b50604051620048c7380380620048c7833981810160405281019062000068919062000488565b6040518060400160405280600881526020017f47686f73746965730000000000000000000000000000000000000000000000008152506040518060400160405280600881526020017f47484f53544945530000000000000000000000000000000000000000000000008152508160029081620000e5919062000724565b508060039081620000f7919062000724565b50620001086200015060201b60201c565b600081905550505062000130620001246200015960201b60201c565b6200016160201b60201c565b600160098190555062000149816200022760201b60201c565b506200088e565b60006001905090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b620002376200015960201b60201c565b73ffffffffffffffffffffffffffffffffffffffff166200025d620002cb60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1614620002b6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620002ad906200086c565b60405180910390fd5b80600b9081620002c7919062000724565b5050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6000604051905090565b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6200035e8262000313565b810181811067ffffffffffffffff8211171562000380576200037f62000324565b5b80604052505050565b600062000395620002f5565b9050620003a3828262000353565b919050565b600067ffffffffffffffff821115620003c657620003c562000324565b5b620003d18262000313565b9050602081019050919050565b60005b83811015620003fe578082015181840152602081019050620003e1565b60008484015250505050565b6000620004216200041b84620003a8565b62000389565b90508281526020810184848401111562000440576200043f6200030e565b5b6200044d848285620003de565b509392505050565b600082601f8301126200046d576200046c62000309565b5b81516200047f8482602086016200040a565b91505092915050565b600060208284031215620004a157620004a0620002ff565b5b600082015167ffffffffffffffff811115620004c257620004c162000304565b5b620004d08482850162000455565b91505092915050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200052c57607f821691505b602082108103620005425762000541620004e4565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302620005ac7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826200056d565b620005b886836200056d565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b600062000605620005ff620005f984620005d0565b620005da565b620005d0565b9050919050565b6000819050919050565b6200062183620005e4565b6200063962000630826200060c565b8484546200057a565b825550505050565b600090565b6200065062000641565b6200065d81848462000616565b505050565b5b8181101562000685576200067960008262000646565b60018101905062000663565b5050565b601f821115620006d4576200069e8162000548565b620006a9846200055d565b81016020851015620006b9578190505b620006d1620006c8856200055d565b83018262000662565b50505b505050565b600082821c905092915050565b6000620006f960001984600802620006d9565b1980831691505092915050565b6000620007148383620006e6565b9150826002028217905092915050565b6200072f82620004d9565b67ffffffffffffffff8111156200074b576200074a62000324565b5b62000757825462000513565b6200076482828562000689565b600060209050601f8311600181146200079c576000841562000787578287015190505b62000793858262000706565b86555062000803565b601f198416620007ac8662000548565b60005b82811015620007d657848901518255600182019150602085019450602081019050620007af565b86831015620007f65784890151620007f2601f891682620006e6565b8355505b6001600288020188555050505b505050505050565b600082825260208201905092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000620008546020836200080b565b915062000861826200081c565b602082019050919050565b60006020820190508181036000830152620008878162000845565b9050919050565b614029806200089e6000396000f3fe60806040526004361061020f5760003560e01c806370a0823111610118578063b88d4fde116100a0578063e0a808531161006f578063e0a8085314610756578063e985e9c51461077f578063efbd73f4146107bc578063f2fde38b146107e5578063f676308a1461080e5761020f565b8063b88d4fde1461069a578063c87b56dd146106c3578063cfc86f7b14610700578063d5abeb011461072b5761020f565b806395d89b41116100e757806395d89b41146105d6578063a0712d6814610601578063a22cb4651461061d578063a45ba8e714610646578063b071401b146106715761020f565b806370a082311461052c578063715018a6146105695780638da5cb5b1461058057806394354fd0146105ab5761020f565b80633ccfd60b1161019b578063518302271161016a578063518302271461044757806355f804b3146104725780635c975abb1461049b5780636352211e146104c65780636f8b44b0146105035761020f565b80633ccfd60b146103b557806342842e0e146103cc57806344a0d68a146103f55780634fdd43cb1461041e5761020f565b806313faede6116101e257806313faede6146102e257806316c38b3c1461030d57806318160ddd1461033657806323b872dd1461036157806324a6ab0c1461038a5761020f565b806301ffc9a71461021457806306fdde0314610251578063081812fc1461027c578063095ea7b3146102b9575b600080fd5b34801561022057600080fd5b5061023b60048036038101906102369190612d8c565b610837565b6040516102489190612dd4565b60405180910390f35b34801561025d57600080fd5b50610266610919565b6040516102739190612e7f565b60405180910390f35b34801561028857600080fd5b506102a3600480360381019061029e9190612ed7565b6109ab565b6040516102b09190612f45565b60405180910390f35b3480156102c557600080fd5b506102e060048036038101906102db9190612f8c565b610a27565b005b3480156102ee57600080fd5b506102f7610b31565b6040516103049190612fdb565b60405180910390f35b34801561031957600080fd5b50610334600480360381019061032f9190613022565b610b37565b005b34801561034257600080fd5b5061034b610bd0565b6040516103589190612fdb565b60405180910390f35b34801561036d57600080fd5b506103886004803603810190610383919061304f565b610be7565b005b34801561039657600080fd5b5061039f610bf7565b6040516103ac9190612fdb565b60405180910390f35b3480156103c157600080fd5b506103ca610bfd565b005b3480156103d857600080fd5b506103f360048036038101906103ee919061304f565b610d4e565b005b34801561040157600080fd5b5061041c60048036038101906104179190612ed7565b610d6e565b005b34801561042a57600080fd5b50610445600480360381019061044091906131d7565b610df4565b005b34801561045357600080fd5b5061045c610e83565b6040516104699190612dd4565b60405180910390f35b34801561047e57600080fd5b5061049960048036038101906104949190613280565b610e96565b005b3480156104a757600080fd5b506104b0610f28565b6040516104bd9190612dd4565b60405180910390f35b3480156104d257600080fd5b506104ed60048036038101906104e89190612ed7565b610f3b565b6040516104fa9190612f45565b60405180910390f35b34801561050f57600080fd5b5061052a60048036038101906105259190612ed7565b610f51565b005b34801561053857600080fd5b50610553600480360381019061054e91906132cd565b610fd7565b6040516105609190612fdb565b60405180910390f35b34801561057557600080fd5b5061057e6110a6565b005b34801561058c57600080fd5b5061059561112e565b6040516105a29190612f45565b60405180910390f35b3480156105b757600080fd5b506105c0611158565b6040516105cd9190612fdb565b60405180910390f35b3480156105e257600080fd5b506105eb61115e565b6040516105f89190612e7f565b60405180910390f35b61061b60048036038101906106169190612ed7565b6111f0565b005b34801561062957600080fd5b50610644600480360381019061063f91906132fa565b6113f5565b005b34801561065257600080fd5b5061065b61156c565b6040516106689190612e7f565b60405180910390f35b34801561067d57600080fd5b5061069860048036038101906106939190612ed7565b6115fa565b005b3480156106a657600080fd5b506106c160048036038101906106bc91906133db565b611680565b005b3480156106cf57600080fd5b506106ea60048036038101906106e59190612ed7565b6116fc565b6040516106f79190612e7f565b60405180910390f35b34801561070c57600080fd5b50610715611826565b6040516107229190612e7f565b60405180910390f35b34801561073757600080fd5b506107406118b4565b60405161074d9190612fdb565b60405180910390f35b34801561076257600080fd5b5061077d60048036038101906107789190613022565b6118ba565b005b34801561078b57600080fd5b506107a660048036038101906107a1919061345e565b611953565b6040516107b39190612dd4565b60405180910390f35b3480156107c857600080fd5b506107e360048036038101906107de919061349e565b6119e7565b005b3480156107f157600080fd5b5061080c600480360381019061080791906132cd565b611a71565b005b34801561081a57600080fd5b5061083560048036038101906108309190612ed7565b611b68565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061090257507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610912575061091182611bee565b5b9050919050565b6060600280546109289061350d565b80601f01602080910402602001604051908101604052809291908181526020018280546109549061350d565b80156109a15780601f10610976576101008083540402835291602001916109a1565b820191906000526020600020905b81548152906001019060200180831161098457829003601f168201915b5050505050905090565b60006109b682611c58565b6109ec576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610a3282610f3b565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610a99576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610ab8611ca6565b73ffffffffffffffffffffffffffffffffffffffff1614158015610aea5750610ae881610ae3611ca6565b611953565b155b15610b21576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610b2c838383611cae565b505050565b600c5481565b610b3f611ca6565b73ffffffffffffffffffffffffffffffffffffffff16610b5d61112e565b73ffffffffffffffffffffffffffffffffffffffff1614610bb3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610baa9061358a565b60405180910390fd5b80601060006101000a81548160ff02191690831515021790555050565b6000610bda611d60565b6001546000540303905090565b610bf2838383611d69565b505050565b600e5481565b610c05611ca6565b73ffffffffffffffffffffffffffffffffffffffff16610c2361112e565b73ffffffffffffffffffffffffffffffffffffffff1614610c79576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c709061358a565b60405180910390fd5b600260095403610cbe576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cb5906135f6565b60405180910390fd5b60026009819055506000610cd061112e565b73ffffffffffffffffffffffffffffffffffffffff1647604051610cf390613647565b60006040518083038185875af1925050503d8060008114610d30576040519150601f19603f3d011682016040523d82523d6000602084013e610d35565b606091505b5050905080610d4357600080fd5b506001600981905550565b610d6983838360405180602001604052806000815250611680565b505050565b610d76611ca6565b73ffffffffffffffffffffffffffffffffffffffff16610d9461112e565b73ffffffffffffffffffffffffffffffffffffffff1614610dea576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610de19061358a565b60405180910390fd5b80600c8190555050565b610dfc611ca6565b73ffffffffffffffffffffffffffffffffffffffff16610e1a61112e565b73ffffffffffffffffffffffffffffffffffffffff1614610e70576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e679061358a565b60405180910390fd5b80600b9081610e7f9190613808565b5050565b601060019054906101000a900460ff1681565b610e9e611ca6565b73ffffffffffffffffffffffffffffffffffffffff16610ebc61112e565b73ffffffffffffffffffffffffffffffffffffffff1614610f12576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f099061358a565b60405180910390fd5b8181600a9182610f239291906138e5565b505050565b601060009054906101000a900460ff1681565b6000610f468261221d565b600001519050919050565b610f59611ca6565b73ffffffffffffffffffffffffffffffffffffffff16610f7761112e565b73ffffffffffffffffffffffffffffffffffffffff1614610fcd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fc49061358a565b60405180910390fd5b80600d8190555050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361103e576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b6110ae611ca6565b73ffffffffffffffffffffffffffffffffffffffff166110cc61112e565b73ffffffffffffffffffffffffffffffffffffffff1614611122576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111199061358a565b60405180910390fd5b61112c60006124ac565b565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600f5481565b60606003805461116d9061350d565b80601f01602080910402602001604051908101604052809291908181526020018280546111999061350d565b80156111e65780601f106111bb576101008083540402835291602001916111e6565b820191906000526020600020905b8154815290600101906020018083116111c957829003601f168201915b5050505050905090565b600260095403611235576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161122c906135f6565b60405180910390fd5b600260098190555060008111801561124f5750600f548111155b61128e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161128590613a01565b60405180910390fd5b600d548161129a610bd0565b6112a49190613a50565b11156112e5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112dc90613ad0565b60405180910390fd5b601060009054906101000a900460ff1615611335576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161132c90613b3c565b60405180910390fd5b80600c546113439190613b5c565b341015611385576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161137c90613bea565b60405180910390fd5b600e54611390610bd0565b106113d957600034116113d8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113cf90613c56565b60405180910390fd5b5b6113ea6113e4611ca6565b82612572565b600160098190555050565b6113fd611ca6565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611461576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806007600061146e611ca6565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661151b611ca6565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516115609190612dd4565b60405180910390a35050565b600b80546115799061350d565b80601f01602080910402602001604051908101604052809291908181526020018280546115a59061350d565b80156115f25780601f106115c7576101008083540402835291602001916115f2565b820191906000526020600020905b8154815290600101906020018083116115d557829003601f168201915b505050505081565b611602611ca6565b73ffffffffffffffffffffffffffffffffffffffff1661162061112e565b73ffffffffffffffffffffffffffffffffffffffff1614611676576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161166d9061358a565b60405180910390fd5b80600f8190555050565b61168b848484611d69565b6116aa8373ffffffffffffffffffffffffffffffffffffffff16612590565b80156116bf57506116bd848484846125b3565b155b156116f6576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b606061170782611c58565b611746576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161173d90613cc2565b60405180910390fd5b601060019054906101000a900460ff161561179357611763612703565b61176c83612795565b60405160200161177d929190613d1e565b6040516020818303038152906040529050611821565b600b80546117a09061350d565b80601f01602080910402602001604051908101604052809291908181526020018280546117cc9061350d565b80156118195780601f106117ee57610100808354040283529160200191611819565b820191906000526020600020905b8154815290600101906020018083116117fc57829003601f168201915b505050505090505b919050565b600a80546118339061350d565b80601f016020809104026020016040519081016040528092919081815260200182805461185f9061350d565b80156118ac5780601f10611881576101008083540402835291602001916118ac565b820191906000526020600020905b81548152906001019060200180831161188f57829003601f168201915b505050505081565b600d5481565b6118c2611ca6565b73ffffffffffffffffffffffffffffffffffffffff166118e061112e565b73ffffffffffffffffffffffffffffffffffffffff1614611936576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161192d9061358a565b60405180910390fd5b80601060016101000a81548160ff02191690831515021790555050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6119ef611ca6565b73ffffffffffffffffffffffffffffffffffffffff16611a0d61112e565b73ffffffffffffffffffffffffffffffffffffffff1614611a63576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a5a9061358a565b60405180910390fd5b611a6d8183612572565b5050565b611a79611ca6565b73ffffffffffffffffffffffffffffffffffffffff16611a9761112e565b73ffffffffffffffffffffffffffffffffffffffff1614611aed576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ae49061358a565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611b5c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b5390613db4565b60405180910390fd5b611b65816124ac565b50565b611b70611ca6565b73ffffffffffffffffffffffffffffffffffffffff16611b8e61112e565b73ffffffffffffffffffffffffffffffffffffffff1614611be4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bdb9061358a565b60405180910390fd5b80600e8190555050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600081611c63611d60565b11158015611c72575060005482105b8015611c9f575060046000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b600033905090565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60006001905090565b6000611d748261221d565b90508373ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614611ddf576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff16611e00611ca6565b73ffffffffffffffffffffffffffffffffffffffff161480611e2f5750611e2e85611e29611ca6565b611953565b5b80611e745750611e3d611ca6565b73ffffffffffffffffffffffffffffffffffffffff16611e5c846109ab565b73ffffffffffffffffffffffffffffffffffffffff16145b905080611ead576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603611f13576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611f2085858560016128f5565b611f2c60008487611cae565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600460008581526020019081526020016000209050848160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550428160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060006001850190506000600460008381526020019081526020016000209050600073ffffffffffffffffffffffffffffffffffffffff168160000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16036121ab5760005482146121aa57878160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555084602001518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b505050828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461221685858560016128fb565b5050505050565b612225612cdd565b600082905080612233611d60565b11158015612242575060005481105b15612475576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050806040015161247357600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146123575780925050506124a7565b5b60011561247257818060019003925050600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461246d5780925050506124a7565b612358565b5b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b61258c828260405180602001604052806000815250612901565b5050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a026125d9611ca6565b8786866040518563ffffffff1660e01b81526004016125fb9493929190613e29565b6020604051808303816000875af192505050801561263757506040513d601f19601f820116820180604052508101906126349190613e8a565b60015b6126b0573d8060008114612667576040519150601f19603f3d011682016040523d82523d6000602084013e61266c565b606091505b5060008151036126a8576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600a80546127129061350d565b80601f016020809104026020016040519081016040528092919081815260200182805461273e9061350d565b801561278b5780601f106127605761010080835404028352916020019161278b565b820191906000526020600020905b81548152906001019060200180831161276e57829003601f168201915b5050505050905090565b6060600082036127dc576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506128f0565b600082905060005b6000821461280e5780806127f790613eb7565b915050600a826128079190613f2e565b91506127e4565b60008167ffffffffffffffff81111561282a576128296130ac565b5b6040519080825280601f01601f19166020018201604052801561285c5781602001600182028036833780820191505090505b5090505b600085146128e9576001826128759190613f5f565b9150600a856128849190613f93565b60306128909190613a50565b60f81b8183815181106128a6576128a5613fc4565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856128e29190613f2e565b9450612860565b8093505050505b919050565b50505050565b50505050565b61290e8383836001612913565b505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff160361297f576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600084036129b9576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6129c660008683876128f5565b83600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600081905060008582019050838015612b905750612b8f8773ffffffffffffffffffffffffffffffffffffffff16612590565b5b15612c55575b818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612c0560008884806001019550886125b3565b612c3b576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b808203612b96578260005414612c5057600080fd5b612cc0565b5b818060010192508773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4808203612c56575b816000819055505050612cd660008683876128fb565b5050505050565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b612d6981612d34565b8114612d7457600080fd5b50565b600081359050612d8681612d60565b92915050565b600060208284031215612da257612da1612d2a565b5b6000612db084828501612d77565b91505092915050565b60008115159050919050565b612dce81612db9565b82525050565b6000602082019050612de96000830184612dc5565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612e29578082015181840152602081019050612e0e565b60008484015250505050565b6000601f19601f8301169050919050565b6000612e5182612def565b612e5b8185612dfa565b9350612e6b818560208601612e0b565b612e7481612e35565b840191505092915050565b60006020820190508181036000830152612e998184612e46565b905092915050565b6000819050919050565b612eb481612ea1565b8114612ebf57600080fd5b50565b600081359050612ed181612eab565b92915050565b600060208284031215612eed57612eec612d2a565b5b6000612efb84828501612ec2565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612f2f82612f04565b9050919050565b612f3f81612f24565b82525050565b6000602082019050612f5a6000830184612f36565b92915050565b612f6981612f24565b8114612f7457600080fd5b50565b600081359050612f8681612f60565b92915050565b60008060408385031215612fa357612fa2612d2a565b5b6000612fb185828601612f77565b9250506020612fc285828601612ec2565b9150509250929050565b612fd581612ea1565b82525050565b6000602082019050612ff06000830184612fcc565b92915050565b612fff81612db9565b811461300a57600080fd5b50565b60008135905061301c81612ff6565b92915050565b60006020828403121561303857613037612d2a565b5b60006130468482850161300d565b91505092915050565b60008060006060848603121561306857613067612d2a565b5b600061307686828701612f77565b935050602061308786828701612f77565b925050604061309886828701612ec2565b9150509250925092565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6130e482612e35565b810181811067ffffffffffffffff82111715613103576131026130ac565b5b80604052505050565b6000613116612d20565b905061312282826130db565b919050565b600067ffffffffffffffff821115613142576131416130ac565b5b61314b82612e35565b9050602081019050919050565b82818337600083830152505050565b600061317a61317584613127565b61310c565b905082815260208101848484011115613196576131956130a7565b5b6131a1848285613158565b509392505050565b600082601f8301126131be576131bd6130a2565b5b81356131ce848260208601613167565b91505092915050565b6000602082840312156131ed576131ec612d2a565b5b600082013567ffffffffffffffff81111561320b5761320a612d2f565b5b613217848285016131a9565b91505092915050565b600080fd5b600080fd5b60008083601f8401126132405761323f6130a2565b5b8235905067ffffffffffffffff81111561325d5761325c613220565b5b60208301915083600182028301111561327957613278613225565b5b9250929050565b6000806020838503121561329757613296612d2a565b5b600083013567ffffffffffffffff8111156132b5576132b4612d2f565b5b6132c18582860161322a565b92509250509250929050565b6000602082840312156132e3576132e2612d2a565b5b60006132f184828501612f77565b91505092915050565b6000806040838503121561331157613310612d2a565b5b600061331f85828601612f77565b92505060206133308582860161300d565b9150509250929050565b600067ffffffffffffffff821115613355576133546130ac565b5b61335e82612e35565b9050602081019050919050565b600061337e6133798461333a565b61310c565b90508281526020810184848401111561339a576133996130a7565b5b6133a5848285613158565b509392505050565b600082601f8301126133c2576133c16130a2565b5b81356133d284826020860161336b565b91505092915050565b600080600080608085870312156133f5576133f4612d2a565b5b600061340387828801612f77565b945050602061341487828801612f77565b935050604061342587828801612ec2565b925050606085013567ffffffffffffffff81111561344657613445612d2f565b5b613452878288016133ad565b91505092959194509250565b6000806040838503121561347557613474612d2a565b5b600061348385828601612f77565b925050602061349485828601612f77565b9150509250929050565b600080604083850312156134b5576134b4612d2a565b5b60006134c385828601612ec2565b92505060206134d485828601612f77565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061352557607f821691505b602082108103613538576135376134de565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000613574602083612dfa565b915061357f8261353e565b602082019050919050565b600060208201905081810360008301526135a381613567565b9050919050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b60006135e0601f83612dfa565b91506135eb826135aa565b602082019050919050565b6000602082019050818103600083015261360f816135d3565b9050919050565b600081905092915050565b50565b6000613631600083613616565b915061363c82613621565b600082019050919050565b600061365282613624565b9150819050919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b6000600883026136be7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82613681565b6136c88683613681565b95508019841693508086168417925050509392505050565b6000819050919050565b60006137056137006136fb84612ea1565b6136e0565b612ea1565b9050919050565b6000819050919050565b61371f836136ea565b61373361372b8261370c565b84845461368e565b825550505050565b600090565b61374861373b565b613753818484613716565b505050565b5b818110156137775761376c600082613740565b600181019050613759565b5050565b601f8211156137bc5761378d8161365c565b61379684613671565b810160208510156137a5578190505b6137b96137b185613671565b830182613758565b50505b505050565b600082821c905092915050565b60006137df600019846008026137c1565b1980831691505092915050565b60006137f883836137ce565b9150826002028217905092915050565b61381182612def565b67ffffffffffffffff81111561382a576138296130ac565b5b613834825461350d565b61383f82828561377b565b600060209050601f8311600181146138725760008415613860578287015190505b61386a85826137ec565b8655506138d2565b601f1984166138808661365c565b60005b828110156138a857848901518255600182019150602085019450602081019050613883565b868310156138c557848901516138c1601f8916826137ce565b8355505b6001600288020188555050505b505050505050565b600082905092915050565b6138ef83836138da565b67ffffffffffffffff811115613908576139076130ac565b5b613912825461350d565b61391d82828561377b565b6000601f83116001811461394c576000841561393a578287013590505b61394485826137ec565b8655506139ac565b601f19841661395a8661365c565b60005b828110156139825784890135825560018201915060208501945060208101905061395d565b8683101561399f578489013561399b601f8916826137ce565b8355505b6001600288020188555050505b50505050505050565b7f496e76616c6964206d696e7420616d6f756e7421000000000000000000000000600082015250565b60006139eb601483612dfa565b91506139f6826139b5565b602082019050919050565b60006020820190508181036000830152613a1a816139de565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000613a5b82612ea1565b9150613a6683612ea1565b9250828201905080821115613a7e57613a7d613a21565b5b92915050565b7f4d617820737570706c7920657863656564656421000000000000000000000000600082015250565b6000613aba601483612dfa565b9150613ac582613a84565b602082019050919050565b60006020820190508181036000830152613ae981613aad565b9050919050565b7f54686520636f6e74726163742069732070617573656421000000000000000000600082015250565b6000613b26601783612dfa565b9150613b3182613af0565b602082019050919050565b60006020820190508181036000830152613b5581613b19565b9050919050565b6000613b6782612ea1565b9150613b7283612ea1565b9250828202613b8081612ea1565b91508282048414831517613b9757613b96613a21565b5b5092915050565b7f496e73756666696369656e742066756e64732100000000000000000000000000600082015250565b6000613bd4601383612dfa565b9150613bdf82613b9e565b602082019050919050565b60006020820190508181036000830152613c0381613bc7565b9050919050565b7f4d6178206672656520737570706c792065786365656465642100000000000000600082015250565b6000613c40601983612dfa565b9150613c4b82613c0a565b602082019050919050565b60006020820190508181036000830152613c6f81613c33565b9050919050565b7f55524920646f6573206e6f742065786973742100000000000000000000000000600082015250565b6000613cac601383612dfa565b9150613cb782613c76565b602082019050919050565b60006020820190508181036000830152613cdb81613c9f565b9050919050565b600081905092915050565b6000613cf882612def565b613d028185613ce2565b9350613d12818560208601612e0b565b80840191505092915050565b6000613d2a8285613ced565b9150613d368284613ced565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000613d9e602683612dfa565b9150613da982613d42565b604082019050919050565b60006020820190508181036000830152613dcd81613d91565b9050919050565b600081519050919050565b600082825260208201905092915050565b6000613dfb82613dd4565b613e058185613ddf565b9350613e15818560208601612e0b565b613e1e81612e35565b840191505092915050565b6000608082019050613e3e6000830187612f36565b613e4b6020830186612f36565b613e586040830185612fcc565b8181036060830152613e6a8184613df0565b905095945050505050565b600081519050613e8481612d60565b92915050565b600060208284031215613ea057613e9f612d2a565b5b6000613eae84828501613e75565b91505092915050565b6000613ec282612ea1565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203613ef457613ef3613a21565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000613f3982612ea1565b9150613f4483612ea1565b925082613f5457613f53613eff565b5b828204905092915050565b6000613f6a82612ea1565b9150613f7583612ea1565b9250828203905081811115613f8d57613f8c613a21565b5b92915050565b6000613f9e82612ea1565b9150613fa983612ea1565b925082613fb957613fb8613eff565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fdfea2646970667358221220996a0385f1780310cb126d5534b1f6bdc5075c6d1368a0b80a08891674d9199664736f6c634300081100330000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000005068747470733a2f2f676174657761792e70696e6174612e636c6f75642f697066732f516d5665736e6f585456346f58503877576937524e6b425954696e48724c567038625470364742504b695638313100000000000000000000000000000000

Deployed Bytecode

0x60806040526004361061020f5760003560e01c806370a0823111610118578063b88d4fde116100a0578063e0a808531161006f578063e0a8085314610756578063e985e9c51461077f578063efbd73f4146107bc578063f2fde38b146107e5578063f676308a1461080e5761020f565b8063b88d4fde1461069a578063c87b56dd146106c3578063cfc86f7b14610700578063d5abeb011461072b5761020f565b806395d89b41116100e757806395d89b41146105d6578063a0712d6814610601578063a22cb4651461061d578063a45ba8e714610646578063b071401b146106715761020f565b806370a082311461052c578063715018a6146105695780638da5cb5b1461058057806394354fd0146105ab5761020f565b80633ccfd60b1161019b578063518302271161016a578063518302271461044757806355f804b3146104725780635c975abb1461049b5780636352211e146104c65780636f8b44b0146105035761020f565b80633ccfd60b146103b557806342842e0e146103cc57806344a0d68a146103f55780634fdd43cb1461041e5761020f565b806313faede6116101e257806313faede6146102e257806316c38b3c1461030d57806318160ddd1461033657806323b872dd1461036157806324a6ab0c1461038a5761020f565b806301ffc9a71461021457806306fdde0314610251578063081812fc1461027c578063095ea7b3146102b9575b600080fd5b34801561022057600080fd5b5061023b60048036038101906102369190612d8c565b610837565b6040516102489190612dd4565b60405180910390f35b34801561025d57600080fd5b50610266610919565b6040516102739190612e7f565b60405180910390f35b34801561028857600080fd5b506102a3600480360381019061029e9190612ed7565b6109ab565b6040516102b09190612f45565b60405180910390f35b3480156102c557600080fd5b506102e060048036038101906102db9190612f8c565b610a27565b005b3480156102ee57600080fd5b506102f7610b31565b6040516103049190612fdb565b60405180910390f35b34801561031957600080fd5b50610334600480360381019061032f9190613022565b610b37565b005b34801561034257600080fd5b5061034b610bd0565b6040516103589190612fdb565b60405180910390f35b34801561036d57600080fd5b506103886004803603810190610383919061304f565b610be7565b005b34801561039657600080fd5b5061039f610bf7565b6040516103ac9190612fdb565b60405180910390f35b3480156103c157600080fd5b506103ca610bfd565b005b3480156103d857600080fd5b506103f360048036038101906103ee919061304f565b610d4e565b005b34801561040157600080fd5b5061041c60048036038101906104179190612ed7565b610d6e565b005b34801561042a57600080fd5b50610445600480360381019061044091906131d7565b610df4565b005b34801561045357600080fd5b5061045c610e83565b6040516104699190612dd4565b60405180910390f35b34801561047e57600080fd5b5061049960048036038101906104949190613280565b610e96565b005b3480156104a757600080fd5b506104b0610f28565b6040516104bd9190612dd4565b60405180910390f35b3480156104d257600080fd5b506104ed60048036038101906104e89190612ed7565b610f3b565b6040516104fa9190612f45565b60405180910390f35b34801561050f57600080fd5b5061052a60048036038101906105259190612ed7565b610f51565b005b34801561053857600080fd5b50610553600480360381019061054e91906132cd565b610fd7565b6040516105609190612fdb565b60405180910390f35b34801561057557600080fd5b5061057e6110a6565b005b34801561058c57600080fd5b5061059561112e565b6040516105a29190612f45565b60405180910390f35b3480156105b757600080fd5b506105c0611158565b6040516105cd9190612fdb565b60405180910390f35b3480156105e257600080fd5b506105eb61115e565b6040516105f89190612e7f565b60405180910390f35b61061b60048036038101906106169190612ed7565b6111f0565b005b34801561062957600080fd5b50610644600480360381019061063f91906132fa565b6113f5565b005b34801561065257600080fd5b5061065b61156c565b6040516106689190612e7f565b60405180910390f35b34801561067d57600080fd5b5061069860048036038101906106939190612ed7565b6115fa565b005b3480156106a657600080fd5b506106c160048036038101906106bc91906133db565b611680565b005b3480156106cf57600080fd5b506106ea60048036038101906106e59190612ed7565b6116fc565b6040516106f79190612e7f565b60405180910390f35b34801561070c57600080fd5b50610715611826565b6040516107229190612e7f565b60405180910390f35b34801561073757600080fd5b506107406118b4565b60405161074d9190612fdb565b60405180910390f35b34801561076257600080fd5b5061077d60048036038101906107789190613022565b6118ba565b005b34801561078b57600080fd5b506107a660048036038101906107a1919061345e565b611953565b6040516107b39190612dd4565b60405180910390f35b3480156107c857600080fd5b506107e360048036038101906107de919061349e565b6119e7565b005b3480156107f157600080fd5b5061080c600480360381019061080791906132cd565b611a71565b005b34801561081a57600080fd5b5061083560048036038101906108309190612ed7565b611b68565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061090257507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610912575061091182611bee565b5b9050919050565b6060600280546109289061350d565b80601f01602080910402602001604051908101604052809291908181526020018280546109549061350d565b80156109a15780601f10610976576101008083540402835291602001916109a1565b820191906000526020600020905b81548152906001019060200180831161098457829003601f168201915b5050505050905090565b60006109b682611c58565b6109ec576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610a3282610f3b565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610a99576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610ab8611ca6565b73ffffffffffffffffffffffffffffffffffffffff1614158015610aea5750610ae881610ae3611ca6565b611953565b155b15610b21576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610b2c838383611cae565b505050565b600c5481565b610b3f611ca6565b73ffffffffffffffffffffffffffffffffffffffff16610b5d61112e565b73ffffffffffffffffffffffffffffffffffffffff1614610bb3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610baa9061358a565b60405180910390fd5b80601060006101000a81548160ff02191690831515021790555050565b6000610bda611d60565b6001546000540303905090565b610bf2838383611d69565b505050565b600e5481565b610c05611ca6565b73ffffffffffffffffffffffffffffffffffffffff16610c2361112e565b73ffffffffffffffffffffffffffffffffffffffff1614610c79576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c709061358a565b60405180910390fd5b600260095403610cbe576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cb5906135f6565b60405180910390fd5b60026009819055506000610cd061112e565b73ffffffffffffffffffffffffffffffffffffffff1647604051610cf390613647565b60006040518083038185875af1925050503d8060008114610d30576040519150601f19603f3d011682016040523d82523d6000602084013e610d35565b606091505b5050905080610d4357600080fd5b506001600981905550565b610d6983838360405180602001604052806000815250611680565b505050565b610d76611ca6565b73ffffffffffffffffffffffffffffffffffffffff16610d9461112e565b73ffffffffffffffffffffffffffffffffffffffff1614610dea576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610de19061358a565b60405180910390fd5b80600c8190555050565b610dfc611ca6565b73ffffffffffffffffffffffffffffffffffffffff16610e1a61112e565b73ffffffffffffffffffffffffffffffffffffffff1614610e70576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e679061358a565b60405180910390fd5b80600b9081610e7f9190613808565b5050565b601060019054906101000a900460ff1681565b610e9e611ca6565b73ffffffffffffffffffffffffffffffffffffffff16610ebc61112e565b73ffffffffffffffffffffffffffffffffffffffff1614610f12576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f099061358a565b60405180910390fd5b8181600a9182610f239291906138e5565b505050565b601060009054906101000a900460ff1681565b6000610f468261221d565b600001519050919050565b610f59611ca6565b73ffffffffffffffffffffffffffffffffffffffff16610f7761112e565b73ffffffffffffffffffffffffffffffffffffffff1614610fcd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fc49061358a565b60405180910390fd5b80600d8190555050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361103e576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b6110ae611ca6565b73ffffffffffffffffffffffffffffffffffffffff166110cc61112e565b73ffffffffffffffffffffffffffffffffffffffff1614611122576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111199061358a565b60405180910390fd5b61112c60006124ac565b565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600f5481565b60606003805461116d9061350d565b80601f01602080910402602001604051908101604052809291908181526020018280546111999061350d565b80156111e65780601f106111bb576101008083540402835291602001916111e6565b820191906000526020600020905b8154815290600101906020018083116111c957829003601f168201915b5050505050905090565b600260095403611235576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161122c906135f6565b60405180910390fd5b600260098190555060008111801561124f5750600f548111155b61128e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161128590613a01565b60405180910390fd5b600d548161129a610bd0565b6112a49190613a50565b11156112e5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112dc90613ad0565b60405180910390fd5b601060009054906101000a900460ff1615611335576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161132c90613b3c565b60405180910390fd5b80600c546113439190613b5c565b341015611385576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161137c90613bea565b60405180910390fd5b600e54611390610bd0565b106113d957600034116113d8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113cf90613c56565b60405180910390fd5b5b6113ea6113e4611ca6565b82612572565b600160098190555050565b6113fd611ca6565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611461576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806007600061146e611ca6565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661151b611ca6565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516115609190612dd4565b60405180910390a35050565b600b80546115799061350d565b80601f01602080910402602001604051908101604052809291908181526020018280546115a59061350d565b80156115f25780601f106115c7576101008083540402835291602001916115f2565b820191906000526020600020905b8154815290600101906020018083116115d557829003601f168201915b505050505081565b611602611ca6565b73ffffffffffffffffffffffffffffffffffffffff1661162061112e565b73ffffffffffffffffffffffffffffffffffffffff1614611676576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161166d9061358a565b60405180910390fd5b80600f8190555050565b61168b848484611d69565b6116aa8373ffffffffffffffffffffffffffffffffffffffff16612590565b80156116bf57506116bd848484846125b3565b155b156116f6576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b606061170782611c58565b611746576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161173d90613cc2565b60405180910390fd5b601060019054906101000a900460ff161561179357611763612703565b61176c83612795565b60405160200161177d929190613d1e565b6040516020818303038152906040529050611821565b600b80546117a09061350d565b80601f01602080910402602001604051908101604052809291908181526020018280546117cc9061350d565b80156118195780601f106117ee57610100808354040283529160200191611819565b820191906000526020600020905b8154815290600101906020018083116117fc57829003601f168201915b505050505090505b919050565b600a80546118339061350d565b80601f016020809104026020016040519081016040528092919081815260200182805461185f9061350d565b80156118ac5780601f10611881576101008083540402835291602001916118ac565b820191906000526020600020905b81548152906001019060200180831161188f57829003601f168201915b505050505081565b600d5481565b6118c2611ca6565b73ffffffffffffffffffffffffffffffffffffffff166118e061112e565b73ffffffffffffffffffffffffffffffffffffffff1614611936576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161192d9061358a565b60405180910390fd5b80601060016101000a81548160ff02191690831515021790555050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6119ef611ca6565b73ffffffffffffffffffffffffffffffffffffffff16611a0d61112e565b73ffffffffffffffffffffffffffffffffffffffff1614611a63576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a5a9061358a565b60405180910390fd5b611a6d8183612572565b5050565b611a79611ca6565b73ffffffffffffffffffffffffffffffffffffffff16611a9761112e565b73ffffffffffffffffffffffffffffffffffffffff1614611aed576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ae49061358a565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611b5c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b5390613db4565b60405180910390fd5b611b65816124ac565b50565b611b70611ca6565b73ffffffffffffffffffffffffffffffffffffffff16611b8e61112e565b73ffffffffffffffffffffffffffffffffffffffff1614611be4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bdb9061358a565b60405180910390fd5b80600e8190555050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600081611c63611d60565b11158015611c72575060005482105b8015611c9f575060046000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b600033905090565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60006001905090565b6000611d748261221d565b90508373ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614611ddf576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff16611e00611ca6565b73ffffffffffffffffffffffffffffffffffffffff161480611e2f5750611e2e85611e29611ca6565b611953565b5b80611e745750611e3d611ca6565b73ffffffffffffffffffffffffffffffffffffffff16611e5c846109ab565b73ffffffffffffffffffffffffffffffffffffffff16145b905080611ead576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603611f13576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611f2085858560016128f5565b611f2c60008487611cae565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600460008581526020019081526020016000209050848160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550428160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060006001850190506000600460008381526020019081526020016000209050600073ffffffffffffffffffffffffffffffffffffffff168160000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16036121ab5760005482146121aa57878160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555084602001518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b505050828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461221685858560016128fb565b5050505050565b612225612cdd565b600082905080612233611d60565b11158015612242575060005481105b15612475576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050806040015161247357600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146123575780925050506124a7565b5b60011561247257818060019003925050600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461246d5780925050506124a7565b612358565b5b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b61258c828260405180602001604052806000815250612901565b5050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a026125d9611ca6565b8786866040518563ffffffff1660e01b81526004016125fb9493929190613e29565b6020604051808303816000875af192505050801561263757506040513d601f19601f820116820180604052508101906126349190613e8a565b60015b6126b0573d8060008114612667576040519150601f19603f3d011682016040523d82523d6000602084013e61266c565b606091505b5060008151036126a8576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600a80546127129061350d565b80601f016020809104026020016040519081016040528092919081815260200182805461273e9061350d565b801561278b5780601f106127605761010080835404028352916020019161278b565b820191906000526020600020905b81548152906001019060200180831161276e57829003601f168201915b5050505050905090565b6060600082036127dc576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506128f0565b600082905060005b6000821461280e5780806127f790613eb7565b915050600a826128079190613f2e565b91506127e4565b60008167ffffffffffffffff81111561282a576128296130ac565b5b6040519080825280601f01601f19166020018201604052801561285c5781602001600182028036833780820191505090505b5090505b600085146128e9576001826128759190613f5f565b9150600a856128849190613f93565b60306128909190613a50565b60f81b8183815181106128a6576128a5613fc4565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856128e29190613f2e565b9450612860565b8093505050505b919050565b50505050565b50505050565b61290e8383836001612913565b505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff160361297f576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600084036129b9576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6129c660008683876128f5565b83600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600081905060008582019050838015612b905750612b8f8773ffffffffffffffffffffffffffffffffffffffff16612590565b5b15612c55575b818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612c0560008884806001019550886125b3565b612c3b576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b808203612b96578260005414612c5057600080fd5b612cc0565b5b818060010192508773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4808203612c56575b816000819055505050612cd660008683876128fb565b5050505050565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b612d6981612d34565b8114612d7457600080fd5b50565b600081359050612d8681612d60565b92915050565b600060208284031215612da257612da1612d2a565b5b6000612db084828501612d77565b91505092915050565b60008115159050919050565b612dce81612db9565b82525050565b6000602082019050612de96000830184612dc5565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612e29578082015181840152602081019050612e0e565b60008484015250505050565b6000601f19601f8301169050919050565b6000612e5182612def565b612e5b8185612dfa565b9350612e6b818560208601612e0b565b612e7481612e35565b840191505092915050565b60006020820190508181036000830152612e998184612e46565b905092915050565b6000819050919050565b612eb481612ea1565b8114612ebf57600080fd5b50565b600081359050612ed181612eab565b92915050565b600060208284031215612eed57612eec612d2a565b5b6000612efb84828501612ec2565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612f2f82612f04565b9050919050565b612f3f81612f24565b82525050565b6000602082019050612f5a6000830184612f36565b92915050565b612f6981612f24565b8114612f7457600080fd5b50565b600081359050612f8681612f60565b92915050565b60008060408385031215612fa357612fa2612d2a565b5b6000612fb185828601612f77565b9250506020612fc285828601612ec2565b9150509250929050565b612fd581612ea1565b82525050565b6000602082019050612ff06000830184612fcc565b92915050565b612fff81612db9565b811461300a57600080fd5b50565b60008135905061301c81612ff6565b92915050565b60006020828403121561303857613037612d2a565b5b60006130468482850161300d565b91505092915050565b60008060006060848603121561306857613067612d2a565b5b600061307686828701612f77565b935050602061308786828701612f77565b925050604061309886828701612ec2565b9150509250925092565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6130e482612e35565b810181811067ffffffffffffffff82111715613103576131026130ac565b5b80604052505050565b6000613116612d20565b905061312282826130db565b919050565b600067ffffffffffffffff821115613142576131416130ac565b5b61314b82612e35565b9050602081019050919050565b82818337600083830152505050565b600061317a61317584613127565b61310c565b905082815260208101848484011115613196576131956130a7565b5b6131a1848285613158565b509392505050565b600082601f8301126131be576131bd6130a2565b5b81356131ce848260208601613167565b91505092915050565b6000602082840312156131ed576131ec612d2a565b5b600082013567ffffffffffffffff81111561320b5761320a612d2f565b5b613217848285016131a9565b91505092915050565b600080fd5b600080fd5b60008083601f8401126132405761323f6130a2565b5b8235905067ffffffffffffffff81111561325d5761325c613220565b5b60208301915083600182028301111561327957613278613225565b5b9250929050565b6000806020838503121561329757613296612d2a565b5b600083013567ffffffffffffffff8111156132b5576132b4612d2f565b5b6132c18582860161322a565b92509250509250929050565b6000602082840312156132e3576132e2612d2a565b5b60006132f184828501612f77565b91505092915050565b6000806040838503121561331157613310612d2a565b5b600061331f85828601612f77565b92505060206133308582860161300d565b9150509250929050565b600067ffffffffffffffff821115613355576133546130ac565b5b61335e82612e35565b9050602081019050919050565b600061337e6133798461333a565b61310c565b90508281526020810184848401111561339a576133996130a7565b5b6133a5848285613158565b509392505050565b600082601f8301126133c2576133c16130a2565b5b81356133d284826020860161336b565b91505092915050565b600080600080608085870312156133f5576133f4612d2a565b5b600061340387828801612f77565b945050602061341487828801612f77565b935050604061342587828801612ec2565b925050606085013567ffffffffffffffff81111561344657613445612d2f565b5b613452878288016133ad565b91505092959194509250565b6000806040838503121561347557613474612d2a565b5b600061348385828601612f77565b925050602061349485828601612f77565b9150509250929050565b600080604083850312156134b5576134b4612d2a565b5b60006134c385828601612ec2565b92505060206134d485828601612f77565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061352557607f821691505b602082108103613538576135376134de565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000613574602083612dfa565b915061357f8261353e565b602082019050919050565b600060208201905081810360008301526135a381613567565b9050919050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b60006135e0601f83612dfa565b91506135eb826135aa565b602082019050919050565b6000602082019050818103600083015261360f816135d3565b9050919050565b600081905092915050565b50565b6000613631600083613616565b915061363c82613621565b600082019050919050565b600061365282613624565b9150819050919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b6000600883026136be7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82613681565b6136c88683613681565b95508019841693508086168417925050509392505050565b6000819050919050565b60006137056137006136fb84612ea1565b6136e0565b612ea1565b9050919050565b6000819050919050565b61371f836136ea565b61373361372b8261370c565b84845461368e565b825550505050565b600090565b61374861373b565b613753818484613716565b505050565b5b818110156137775761376c600082613740565b600181019050613759565b5050565b601f8211156137bc5761378d8161365c565b61379684613671565b810160208510156137a5578190505b6137b96137b185613671565b830182613758565b50505b505050565b600082821c905092915050565b60006137df600019846008026137c1565b1980831691505092915050565b60006137f883836137ce565b9150826002028217905092915050565b61381182612def565b67ffffffffffffffff81111561382a576138296130ac565b5b613834825461350d565b61383f82828561377b565b600060209050601f8311600181146138725760008415613860578287015190505b61386a85826137ec565b8655506138d2565b601f1984166138808661365c565b60005b828110156138a857848901518255600182019150602085019450602081019050613883565b868310156138c557848901516138c1601f8916826137ce565b8355505b6001600288020188555050505b505050505050565b600082905092915050565b6138ef83836138da565b67ffffffffffffffff811115613908576139076130ac565b5b613912825461350d565b61391d82828561377b565b6000601f83116001811461394c576000841561393a578287013590505b61394485826137ec565b8655506139ac565b601f19841661395a8661365c565b60005b828110156139825784890135825560018201915060208501945060208101905061395d565b8683101561399f578489013561399b601f8916826137ce565b8355505b6001600288020188555050505b50505050505050565b7f496e76616c6964206d696e7420616d6f756e7421000000000000000000000000600082015250565b60006139eb601483612dfa565b91506139f6826139b5565b602082019050919050565b60006020820190508181036000830152613a1a816139de565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000613a5b82612ea1565b9150613a6683612ea1565b9250828201905080821115613a7e57613a7d613a21565b5b92915050565b7f4d617820737570706c7920657863656564656421000000000000000000000000600082015250565b6000613aba601483612dfa565b9150613ac582613a84565b602082019050919050565b60006020820190508181036000830152613ae981613aad565b9050919050565b7f54686520636f6e74726163742069732070617573656421000000000000000000600082015250565b6000613b26601783612dfa565b9150613b3182613af0565b602082019050919050565b60006020820190508181036000830152613b5581613b19565b9050919050565b6000613b6782612ea1565b9150613b7283612ea1565b9250828202613b8081612ea1565b91508282048414831517613b9757613b96613a21565b5b5092915050565b7f496e73756666696369656e742066756e64732100000000000000000000000000600082015250565b6000613bd4601383612dfa565b9150613bdf82613b9e565b602082019050919050565b60006020820190508181036000830152613c0381613bc7565b9050919050565b7f4d6178206672656520737570706c792065786365656465642100000000000000600082015250565b6000613c40601983612dfa565b9150613c4b82613c0a565b602082019050919050565b60006020820190508181036000830152613c6f81613c33565b9050919050565b7f55524920646f6573206e6f742065786973742100000000000000000000000000600082015250565b6000613cac601383612dfa565b9150613cb782613c76565b602082019050919050565b60006020820190508181036000830152613cdb81613c9f565b9050919050565b600081905092915050565b6000613cf882612def565b613d028185613ce2565b9350613d12818560208601612e0b565b80840191505092915050565b6000613d2a8285613ced565b9150613d368284613ced565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000613d9e602683612dfa565b9150613da982613d42565b604082019050919050565b60006020820190508181036000830152613dcd81613d91565b9050919050565b600081519050919050565b600082825260208201905092915050565b6000613dfb82613dd4565b613e058185613ddf565b9350613e15818560208601612e0b565b613e1e81612e35565b840191505092915050565b6000608082019050613e3e6000830187612f36565b613e4b6020830186612f36565b613e586040830185612fcc565b8181036060830152613e6a8184613df0565b905095945050505050565b600081519050613e8481612d60565b92915050565b600060208284031215613ea057613e9f612d2a565b5b6000613eae84828501613e75565b91505092915050565b6000613ec282612ea1565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203613ef457613ef3613a21565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000613f3982612ea1565b9150613f4483612ea1565b925082613f5457613f53613eff565b5b828204905092915050565b6000613f6a82612ea1565b9150613f7583612ea1565b9250828203905081811115613f8d57613f8c613a21565b5b92915050565b6000613f9e82612ea1565b9150613fa983612ea1565b925082613fb957613fb8613eff565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fdfea2646970667358221220996a0385f1780310cb126d5534b1f6bdc5075c6d1368a0b80a08891674d9199664736f6c63430008110033

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

0000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000005068747470733a2f2f676174657761792e70696e6174612e636c6f75642f697066732f516d5665736e6f585456346f58503877576937524e6b425954696e48724c567038625470364742504b695638313100000000000000000000000000000000

-----Decoded View---------------
Arg [0] : _hiddenMetadataUri (string): https://gateway.pinata.cloud/ipfs/QmVesnoXTV4oXP8wWi7RNkBYTinHrLVp8bTp6GBPKiV811

-----Encoded View---------------
5 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000020
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000050
Arg [2] : 68747470733a2f2f676174657761792e70696e6174612e636c6f75642f697066
Arg [3] : 732f516d5665736e6f585456346f58503877576937524e6b425954696e48724c
Arg [4] : 567038625470364742504b695638313100000000000000000000000000000000


Deployed Bytecode Sourcemap

47595:2753:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29766:305;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32879:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34382:204;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33945:371;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;47759:29;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49398:77;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;29015:303;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35247:170;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;47830:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49482:150;;;;;;;;;;;;;:::i;:::-;;35488:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;48976:74;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;49666:132;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;47936:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49805:98;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;47913:18;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32687:125;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49194:94;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;30135:206;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7524:103;;;;;;;;;;;;;:::i;:::-;;6873:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47868:37;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33048:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48123:522;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;34658:287;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;47720:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49057:130;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;35744:369;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;50027:318;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47688:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47793:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48888:81;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;35016:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48652:127;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;7782:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;49294:98;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;29766:305;29868:4;29920:25;29905:40;;;:11;:40;;;;:105;;;;29977:33;29962:48;;;:11;:48;;;;29905:105;:158;;;;30027:36;30051:11;30027:23;:36::i;:::-;29905:158;29885:178;;29766:305;;;:::o;32879:100::-;32933:13;32966:5;32959:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32879:100;:::o;34382:204::-;34450:7;34475:16;34483:7;34475;:16::i;:::-;34470:64;;34500:34;;;;;;;;;;;;;;34470:64;34554:15;:24;34570:7;34554:24;;;;;;;;;;;;;;;;;;;;;34547:31;;34382:204;;;:::o;33945:371::-;34018:13;34034:24;34050:7;34034:15;:24::i;:::-;34018:40;;34079:5;34073:11;;:2;:11;;;34069:48;;34093:24;;;;;;;;;;;;;;34069:48;34150:5;34134:21;;:12;:10;:12::i;:::-;:21;;;;:63;;;;;34160:37;34177:5;34184:12;:10;:12::i;:::-;34160:16;:37::i;:::-;34159:38;34134:63;34130:138;;;34221:35;;;;;;;;;;;;;;34130:138;34280:28;34289:2;34293:7;34302:5;34280:8;:28::i;:::-;34007:309;33945:371;;:::o;47759:29::-;;;;:::o;49398:77::-;7104:12;:10;:12::i;:::-;7093:23;;:7;:5;:7::i;:::-;:23;;;7085:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;49463:6:::1;49454;;:15;;;;;;;;;;;;;;;;;;49398:77:::0;:::o;29015:303::-;29059:7;29284:15;:13;:15::i;:::-;29269:12;;29253:13;;:28;:46;29246:53;;29015:303;:::o;35247:170::-;35381:28;35391:4;35397:2;35401:7;35381:9;:28::i;:::-;35247:170;;;:::o;47830:33::-;;;;:::o;49482:150::-;7104:12;:10;:12::i;:::-;7093:23;;:7;:5;:7::i;:::-;:23;;;7085:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;1847:1:::1;2445:7;;:19:::0;2437:63:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;1847:1;2578:7;:18;;;;49540:7:::2;49561;:5;:7::i;:::-;49553:21;;49582;49553:55;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49539:69;;;49623:2;49615:11;;;::::0;::::2;;49532:100;1803:1:::1;2757:7;:22;;;;49482:150::o:0;35488:185::-;35626:39;35643:4;35649:2;35653:7;35626:39;;;;;;;;;;;;:16;:39::i;:::-;35488:185;;;:::o;48976:74::-;7104:12;:10;:12::i;:::-;7093:23;;:7;:5;:7::i;:::-;:23;;;7085:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;49039:5:::1;49032:4;:12;;;;48976:74:::0;:::o;49666:132::-;7104:12;:10;:12::i;:::-;7093:23;;:7;:5;:7::i;:::-;:23;;;7085:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;49774:18:::1;49754:17;:38;;;;;;:::i;:::-;;49666:132:::0;:::o;47936:28::-;;;;;;;;;;;;;:::o;49805:98::-;7104:12;:10;:12::i;:::-;7093:23;;:7;:5;:7::i;:::-;:23;;;7085:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;49890:7:::1;;49874:13;:23;;;;;;;:::i;:::-;;49805:98:::0;;:::o;47913:18::-;;;;;;;;;;;;;:::o;32687:125::-;32751:7;32778:21;32791:7;32778:12;:21::i;:::-;:26;;;32771:33;;32687:125;;;:::o;49194:94::-;7104:12;:10;:12::i;:::-;7093:23;;:7;:5;:7::i;:::-;:23;;;7085:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;49272:10:::1;49260:9;:22;;;;49194:94:::0;:::o;30135:206::-;30199:7;30240:1;30223:19;;:5;:19;;;30219:60;;30251:28;;;;;;;;;;;;;;30219:60;30305:12;:19;30318:5;30305:19;;;;;;;;;;;;;;;:27;;;;;;;;;;;;30297:36;;30290:43;;30135:206;;;:::o;7524:103::-;7104:12;:10;:12::i;:::-;7093:23;;:7;:5;:7::i;:::-;:23;;;7085:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;7589:30:::1;7616:1;7589:18;:30::i;:::-;7524:103::o:0;6873:87::-;6919:7;6946:6;;;;;;;;;;;6939:13;;6873:87;:::o;47868:37::-;;;;:::o;33048:104::-;33104:13;33137:7;33130:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33048:104;:::o;48123:522::-;1847:1;2445:7;;:19;2437:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;1847:1;2578:7;:18;;;;48215:1:::1;48201:11;:15;:52;;;;;48235:18;;48220:11;:33;;48201:52;48193:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;48324:9;;48309:11;48293:13;:11;:13::i;:::-;:27;;;;:::i;:::-;:40;;48285:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;48374:6;;;;;;;;;;;48373:7;48365:43;;;;;;;;;;;;:::i;:::-;;;;;;;;;48443:11;48436:4;;:18;;;;:::i;:::-;48423:9;:31;;48415:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;48508:10;;48491:13;:11;:13::i;:::-;:27;48487:107;;48553:1;48541:9;:13;48533:51;;;;;;;;;;;;:::i;:::-;;;;;;;;;48487:107;48603:36;48613:12;:10;:12::i;:::-;48627:11;48603:9;:36::i;:::-;1803:1:::0;2757:7;:22;;;;48123:522;:::o;34658:287::-;34769:12;:10;:12::i;:::-;34757:24;;:8;:24;;;34753:54;;34790:17;;;;;;;;;;;;;;34753:54;34865:8;34820:18;:32;34839:12;:10;:12::i;:::-;34820:32;;;;;;;;;;;;;;;:42;34853:8;34820:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;34918:8;34889:48;;34904:12;:10;:12::i;:::-;34889:48;;;34928:8;34889:48;;;;;;:::i;:::-;;;;;;;;34658:287;;:::o;47720:31::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;49057:130::-;7104:12;:10;:12::i;:::-;7093:23;;:7;:5;:7::i;:::-;:23;;;7085:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;49162:19:::1;49141:18;:40;;;;49057:130:::0;:::o;35744:369::-;35911:28;35921:4;35927:2;35931:7;35911:9;:28::i;:::-;35954:15;:2;:13;;;:15::i;:::-;:76;;;;;35974:56;36005:4;36011:2;36015:7;36024:5;35974:30;:56::i;:::-;35973:57;35954:76;35950:156;;;36054:40;;;;;;;;;;;;;;35950:156;35744:369;;;;:::o;50027:318::-;50101:13;50133:17;50141:8;50133:7;:17::i;:::-;50125:49;;;;;;;;;;;;:::i;:::-;;;;;;;;;50190:8;;;;;;;;;;;50186:154;;;50244:10;:8;:10::i;:::-;50256:19;:8;:17;:19::i;:::-;50227:49;;;;;;;;;:::i;:::-;;;;;;;;;;;;;50213:64;;;;50186:154;50313:17;50306:24;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50027:318;;;;:::o;47688:27::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;47793:32::-;;;;:::o;48888:81::-;7104:12;:10;:12::i;:::-;7093:23;;:7;:5;:7::i;:::-;:23;;;7085:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;48957:6:::1;48946:8;;:17;;;;;;;;;;;;;;;;;;48888:81:::0;:::o;35016:164::-;35113:4;35137:18;:25;35156:5;35137:25;;;;;;;;;;;;;;;:35;35163:8;35137:35;;;;;;;;;;;;;;;;;;;;;;;;;35130:42;;35016:164;;;;:::o;48652:127::-;7104:12;:10;:12::i;:::-;7093:23;;:7;:5;:7::i;:::-;:23;;;7085:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;48740:33:::1;48750:9;48761:11;48740:9;:33::i;:::-;48652:127:::0;;:::o;7782:201::-;7104:12;:10;:12::i;:::-;7093:23;;:7;:5;:7::i;:::-;:23;;;7085:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;7891:1:::1;7871:22;;:8;:22;;::::0;7863:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;7947:28;7966:8;7947:18;:28::i;:::-;7782:201:::0;:::o;49294:98::-;7104:12;:10;:12::i;:::-;7093:23;;:7;:5;:7::i;:::-;:23;;;7085:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;49375:11:::1;49362:10;:24;;;;49294:98:::0;:::o;19657:157::-;19742:4;19781:25;19766:40;;;:11;:40;;;;19759:47;;19657:157;;;:::o;36368:174::-;36425:4;36468:7;36449:15;:13;:15::i;:::-;:26;;:53;;;;;36489:13;;36479:7;:23;36449:53;:85;;;;;36507:11;:20;36519:7;36507:20;;;;;;;;;;;:27;;;;;;;;;;;;36506:28;36449:85;36442:92;;36368:174;;;:::o;5597:98::-;5650:7;5677:10;5670:17;;5597:98;:::o;44525:196::-;44667:2;44640:15;:24;44656:7;44640:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;44705:7;44701:2;44685:28;;44694:5;44685:28;;;;;;;;;;;;44525:196;;;:::o;48786:95::-;48851:7;48874:1;48867:8;;48786:95;:::o;39468:2130::-;39583:35;39621:21;39634:7;39621:12;:21::i;:::-;39583:59;;39681:4;39659:26;;:13;:18;;;:26;;;39655:67;;39694:28;;;;;;;;;;;;;;39655:67;39735:22;39777:4;39761:20;;:12;:10;:12::i;:::-;:20;;;:73;;;;39798:36;39815:4;39821:12;:10;:12::i;:::-;39798:16;:36::i;:::-;39761:73;:126;;;;39875:12;:10;:12::i;:::-;39851:36;;:20;39863:7;39851:11;:20::i;:::-;:36;;;39761:126;39735:153;;39906:17;39901:66;;39932:35;;;;;;;;;;;;;;39901:66;39996:1;39982:16;;:2;:16;;;39978:52;;40007:23;;;;;;;;;;;;;;39978:52;40043:43;40065:4;40071:2;40075:7;40084:1;40043:21;:43::i;:::-;40151:35;40168:1;40172:7;40181:4;40151:8;:35::i;:::-;40512:1;40482:12;:18;40495:4;40482:18;;;;;;;;;;;;;;;:26;;;:31;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40556:1;40528:12;:16;40541:2;40528:16;;;;;;;;;;;;;;;:24;;;:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40574:31;40608:11;:20;40620:7;40608:20;;;;;;;;;;;40574:54;;40659:2;40643:8;:13;;;:18;;;;;;;;;;;;;;;;;;40709:15;40676:8;:23;;;:49;;;;;;;;;;;;;;;;;;40977:19;41009:1;40999:7;:11;40977:33;;41025:31;41059:11;:24;41071:11;41059:24;;;;;;;;;;;41025:58;;41127:1;41102:27;;:8;:13;;;;;;;;;;;;:27;;;41098:384;;41312:13;;41297:11;:28;41293:174;;41366:4;41350:8;:13;;;:20;;;;;;;;;;;;;;;;;;41419:13;:28;;;41393:8;:23;;;:54;;;;;;;;;;;;;;;;;;41293:174;41098:384;40457:1036;;;41529:7;41525:2;41510:27;;41519:4;41510:27;;;;;;;;;;;;41548:42;41569:4;41575:2;41579:7;41588:1;41548:20;:42::i;:::-;39572:2026;;39468:2130;;;:::o;31516:1109::-;31578:21;;:::i;:::-;31612:12;31627:7;31612:22;;31695:4;31676:15;:13;:15::i;:::-;:23;;:47;;;;;31710:13;;31703:4;:20;31676:47;31672:886;;;31744:31;31778:11;:17;31790:4;31778:17;;;;;;;;;;;31744:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31819:9;:16;;;31814:729;;31890:1;31864:28;;:9;:14;;;:28;;;31860:101;;31928:9;31921:16;;;;;;31860:101;32263:261;32270:4;32263:261;;;32303:6;;;;;;;;32348:11;:17;32360:4;32348:17;;;;;;;;;;;32336:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32422:1;32396:28;;:9;:14;;;:28;;;32392:109;;32464:9;32457:16;;;;;;32392:109;32263:261;;;31814:729;31725:833;31672:886;32586:31;;;;;;;;;;;;;;31516:1109;;;;:::o;8143:191::-;8217:16;8236:6;;;;;;;;;;;8217:25;;8262:8;8253:6;;:17;;;;;;;;;;;;;;;;;;8317:8;8286:40;;8307:8;8286:40;;;;;;;;;;;;8206:128;8143:191;:::o;36550:104::-;36619:27;36629:2;36633:8;36619:27;;;;;;;;;;;;:9;:27::i;:::-;36550:104;;:::o;9574:326::-;9634:4;9891:1;9869:7;:19;;;:23;9862:30;;9574:326;;;:::o;45213:667::-;45376:4;45413:2;45397:36;;;45434:12;:10;:12::i;:::-;45448:4;45454:7;45463:5;45397:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;45393:480;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45648:1;45631:6;:13;:18;45627:235;;45677:40;;;;;;;;;;;;;;45627:235;45820:6;45814:13;45805:6;45801:2;45797:15;45790:38;45393:480;45526:45;;;45516:55;;;:6;:55;;;;45509:62;;;45213:667;;;;;;:::o;49910:110::-;49970:13;50001;49994:20;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49910:110;:::o;3159:723::-;3215:13;3445:1;3436:5;:10;3432:53;;3463:10;;;;;;;;;;;;;;;;;;;;;3432:53;3495:12;3510:5;3495:20;;3526:14;3551:78;3566:1;3558:4;:9;3551:78;;3584:8;;;;;:::i;:::-;;;;3615:2;3607:10;;;;;:::i;:::-;;;3551:78;;;3639:19;3671:6;3661:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3639:39;;3689:154;3705:1;3696:5;:10;3689:154;;3733:1;3723:11;;;;;:::i;:::-;;;3800:2;3792:5;:10;;;;:::i;:::-;3779:2;:24;;;;:::i;:::-;3766:39;;3749:6;3756;3749:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;3829:2;3820:11;;;;;:::i;:::-;;;3689:154;;;3867:6;3853:21;;;;;3159:723;;;;:::o;46528:159::-;;;;;:::o;47346:158::-;;;;;:::o;37017:163::-;37140:32;37146:2;37150:8;37160:5;37167:4;37140:5;:32::i;:::-;37017:163;;;:::o;37439:1775::-;37578:20;37601:13;;37578:36;;37643:1;37629:16;;:2;:16;;;37625:48;;37654:19;;;;;;;;;;;;;;37625:48;37700:1;37688:8;:13;37684:44;;37710:18;;;;;;;;;;;;;;37684:44;37741:61;37771:1;37775:2;37779:12;37793:8;37741:21;:61::i;:::-;38114:8;38079:12;:16;38092:2;38079:16;;;;;;;;;;;;;;;:24;;;:44;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38178:8;38138:12;:16;38151:2;38138:16;;;;;;;;;;;;;;;:29;;;:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38237:2;38204:11;:25;38216:12;38204:25;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;38304:15;38254:11;:25;38266:12;38254:25;;;;;;;;;;;:40;;;:66;;;;;;;;;;;;;;;;;;38337:20;38360:12;38337:35;;38387:11;38416:8;38401:12;:23;38387:37;;38445:4;:23;;;;;38453:15;:2;:13;;;:15::i;:::-;38445:23;38441:641;;;38489:314;38545:12;38541:2;38520:38;;38537:1;38520:38;;;;;;;;;;;;38586:69;38625:1;38629:2;38633:14;;;;;;38649:5;38586:30;:69::i;:::-;38581:174;;38691:40;;;;;;;;;;;;;;38581:174;38798:3;38782:12;:19;38489:314;;38884:12;38867:13;;:29;38863:43;;38898:8;;;38863:43;38441:641;;;38947:120;39003:14;;;;;;38999:2;38978:40;;38995:1;38978:40;;;;;;;;;;;;39062:3;39046:12;:19;38947:120;;38441:641;39112:12;39096:13;:28;;;;38054:1082;;39146:60;39175:1;39179:2;39183:12;39197:8;39146:20;:60::i;:::-;37567:1647;37439: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:619::-;5909:6;5917;5925;5974:2;5962:9;5953:7;5949:23;5945:32;5942:119;;;5980:79;;:::i;:::-;5942:119;6100:1;6125:53;6170:7;6161:6;6150:9;6146:22;6125:53;:::i;:::-;6115:63;;6071:117;6227:2;6253:53;6298:7;6289:6;6278:9;6274:22;6253:53;:::i;:::-;6243:63;;6198:118;6355:2;6381:53;6426:7;6417:6;6406:9;6402:22;6381:53;:::i;:::-;6371:63;;6326:118;5832:619;;;;;:::o;6457:117::-;6566:1;6563;6556:12;6580:117;6689:1;6686;6679:12;6703:180;6751:77;6748:1;6741:88;6848:4;6845:1;6838:15;6872:4;6869:1;6862:15;6889:281;6972:27;6994:4;6972:27;:::i;:::-;6964:6;6960:40;7102:6;7090:10;7087:22;7066:18;7054:10;7051:34;7048:62;7045:88;;;7113:18;;:::i;:::-;7045:88;7153:10;7149:2;7142:22;6932:238;6889:281;;:::o;7176:129::-;7210:6;7237:20;;:::i;:::-;7227:30;;7266:33;7294:4;7286:6;7266:33;:::i;:::-;7176:129;;;:::o;7311:308::-;7373:4;7463:18;7455:6;7452:30;7449:56;;;7485:18;;:::i;:::-;7449:56;7523:29;7545:6;7523:29;:::i;:::-;7515:37;;7607:4;7601;7597:15;7589:23;;7311:308;;;:::o;7625:146::-;7722:6;7717:3;7712;7699:30;7763:1;7754:6;7749:3;7745:16;7738:27;7625:146;;;:::o;7777:425::-;7855:5;7880:66;7896:49;7938:6;7896:49;:::i;:::-;7880:66;:::i;:::-;7871:75;;7969:6;7962:5;7955:21;8007:4;8000:5;7996:16;8045:3;8036:6;8031:3;8027:16;8024:25;8021:112;;;8052:79;;:::i;:::-;8021:112;8142:54;8189:6;8184:3;8179;8142:54;:::i;:::-;7861:341;7777:425;;;;;:::o;8222:340::-;8278:5;8327:3;8320:4;8312:6;8308:17;8304:27;8294:122;;8335:79;;:::i;:::-;8294:122;8452:6;8439:20;8477:79;8552:3;8544:6;8537:4;8529:6;8525:17;8477:79;:::i;:::-;8468:88;;8284:278;8222:340;;;;:::o;8568:509::-;8637:6;8686:2;8674:9;8665:7;8661:23;8657:32;8654:119;;;8692:79;;:::i;:::-;8654:119;8840:1;8829:9;8825:17;8812:31;8870:18;8862:6;8859:30;8856:117;;;8892:79;;:::i;:::-;8856:117;8997:63;9052:7;9043:6;9032:9;9028:22;8997:63;:::i;:::-;8987:73;;8783:287;8568:509;;;;:::o;9083:117::-;9192:1;9189;9182:12;9206:117;9315:1;9312;9305:12;9343:553;9401:8;9411:6;9461:3;9454:4;9446:6;9442:17;9438:27;9428:122;;9469:79;;:::i;:::-;9428:122;9582:6;9569:20;9559:30;;9612:18;9604:6;9601:30;9598:117;;;9634:79;;:::i;:::-;9598:117;9748:4;9740:6;9736:17;9724:29;;9802:3;9794:4;9786:6;9782:17;9772:8;9768:32;9765:41;9762:128;;;9809:79;;:::i;:::-;9762:128;9343:553;;;;;:::o;9902:529::-;9973:6;9981;10030:2;10018:9;10009:7;10005:23;10001:32;9998:119;;;10036:79;;:::i;:::-;9998:119;10184:1;10173:9;10169:17;10156:31;10214:18;10206:6;10203:30;10200:117;;;10236:79;;:::i;:::-;10200:117;10349:65;10406:7;10397:6;10386:9;10382:22;10349:65;:::i;:::-;10331:83;;;;10127:297;9902:529;;;;;:::o;10437:329::-;10496:6;10545:2;10533:9;10524:7;10520:23;10516:32;10513:119;;;10551:79;;:::i;:::-;10513:119;10671:1;10696:53;10741:7;10732:6;10721:9;10717:22;10696:53;:::i;:::-;10686:63;;10642:117;10437:329;;;;:::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:170::-;23790:22;23786:1;23778:6;23774:14;23767:46;23650:170;:::o;23826:366::-;23968:3;23989:67;24053:2;24048:3;23989:67;:::i;:::-;23982:74;;24065:93;24154:3;24065:93;:::i;:::-;24183:2;24178:3;24174:12;24167:19;;23826:366;;;:::o;24198:419::-;24364:4;24402:2;24391:9;24387:18;24379:26;;24451:9;24445:4;24441:20;24437:1;24426:9;24422:17;24415:47;24479:131;24605:4;24479:131;:::i;:::-;24471:139;;24198:419;;;:::o;24623:180::-;24671:77;24668:1;24661:88;24768:4;24765:1;24758:15;24792:4;24789:1;24782:15;24809:191;24849:3;24868:20;24886:1;24868:20;:::i;:::-;24863:25;;24902:20;24920:1;24902:20;:::i;:::-;24897:25;;24945:1;24942;24938:9;24931:16;;24966:3;24963:1;24960:10;24957:36;;;24973:18;;:::i;:::-;24957:36;24809:191;;;;:::o;25006:170::-;25146:22;25142:1;25134:6;25130:14;25123:46;25006:170;:::o;25182:366::-;25324:3;25345:67;25409:2;25404:3;25345:67;:::i;:::-;25338:74;;25421:93;25510:3;25421:93;:::i;:::-;25539:2;25534:3;25530:12;25523:19;;25182:366;;;:::o;25554:419::-;25720:4;25758:2;25747:9;25743:18;25735:26;;25807:9;25801:4;25797:20;25793:1;25782:9;25778:17;25771:47;25835:131;25961:4;25835:131;:::i;:::-;25827:139;;25554:419;;;:::o;25979:173::-;26119:25;26115:1;26107:6;26103:14;26096:49;25979:173;:::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:410::-;26995:7;27018:20;27036:1;27018:20;:::i;:::-;27013:25;;27052:20;27070:1;27052:20;:::i;:::-;27047:25;;27107:1;27104;27100:9;27129:30;27147:11;27129:30;:::i;:::-;27118:41;;27308:1;27299:7;27295:15;27292:1;27289:22;27269:1;27262:9;27242:83;27219:139;;27338:18;;:::i;:::-;27219:139;27003:362;26955:410;;;;:::o;27371:169::-;27511:21;27507:1;27499:6;27495:14;27488:45;27371:169;:::o;27546:366::-;27688:3;27709:67;27773:2;27768:3;27709:67;:::i;:::-;27702:74;;27785:93;27874:3;27785:93;:::i;:::-;27903:2;27898:3;27894:12;27887:19;;27546:366;;;:::o;27918:419::-;28084:4;28122:2;28111:9;28107:18;28099:26;;28171:9;28165:4;28161:20;28157:1;28146:9;28142:17;28135:47;28199:131;28325:4;28199:131;:::i;:::-;28191:139;;27918:419;;;:::o;28343:175::-;28483:27;28479:1;28471:6;28467:14;28460:51;28343:175;:::o;28524:366::-;28666:3;28687:67;28751:2;28746:3;28687:67;:::i;:::-;28680:74;;28763:93;28852:3;28763:93;:::i;:::-;28881:2;28876:3;28872:12;28865:19;;28524:366;;;:::o;28896:419::-;29062:4;29100:2;29089:9;29085:18;29077:26;;29149:9;29143:4;29139:20;29135:1;29124:9;29120:17;29113:47;29177:131;29303:4;29177:131;:::i;:::-;29169:139;;28896:419;;;:::o;29321:169::-;29461:21;29457:1;29449:6;29445:14;29438:45;29321:169;:::o;29496:366::-;29638:3;29659:67;29723:2;29718:3;29659:67;:::i;:::-;29652:74;;29735:93;29824:3;29735:93;:::i;:::-;29853:2;29848:3;29844:12;29837:19;;29496:366;;;:::o;29868:419::-;30034:4;30072:2;30061:9;30057:18;30049:26;;30121:9;30115:4;30111:20;30107:1;30096:9;30092:17;30085:47;30149:131;30275:4;30149:131;:::i;:::-;30141:139;;29868:419;;;:::o;30293:148::-;30395:11;30432:3;30417:18;;30293:148;;;;:::o;30447:390::-;30553:3;30581:39;30614:5;30581:39;:::i;:::-;30636:89;30718:6;30713:3;30636:89;:::i;:::-;30629:96;;30734:65;30792:6;30787:3;30780:4;30773:5;30769:16;30734:65;:::i;:::-;30824:6;30819:3;30815:16;30808:23;;30557:280;30447:390;;;;:::o;30843:435::-;31023:3;31045:95;31136:3;31127:6;31045:95;:::i;:::-;31038:102;;31157:95;31248:3;31239:6;31157:95;:::i;:::-;31150:102;;31269:3;31262:10;;30843:435;;;;;:::o;31284:225::-;31424:34;31420:1;31412:6;31408:14;31401:58;31493:8;31488:2;31480:6;31476:15;31469:33;31284:225;:::o;31515:366::-;31657:3;31678:67;31742:2;31737:3;31678:67;:::i;:::-;31671:74;;31754:93;31843:3;31754:93;:::i;:::-;31872:2;31867:3;31863:12;31856:19;;31515:366;;;:::o;31887:419::-;32053:4;32091:2;32080:9;32076:18;32068:26;;32140:9;32134:4;32130:20;32126:1;32115:9;32111:17;32104:47;32168:131;32294:4;32168:131;:::i;:::-;32160:139;;31887:419;;;:::o;32312:98::-;32363:6;32397:5;32391:12;32381:22;;32312:98;;;:::o;32416:168::-;32499:11;32533:6;32528:3;32521:19;32573:4;32568:3;32564:14;32549:29;;32416:168;;;;:::o;32590:373::-;32676:3;32704:38;32736:5;32704:38;:::i;:::-;32758:70;32821:6;32816:3;32758:70;:::i;:::-;32751:77;;32837:65;32895:6;32890:3;32883:4;32876:5;32872:16;32837:65;:::i;:::-;32927:29;32949:6;32927:29;:::i;:::-;32922:3;32918:39;32911:46;;32680:283;32590:373;;;;:::o;32969:640::-;33164:4;33202:3;33191:9;33187:19;33179:27;;33216:71;33284:1;33273:9;33269:17;33260:6;33216:71;:::i;:::-;33297:72;33365:2;33354:9;33350:18;33341:6;33297:72;:::i;:::-;33379;33447:2;33436:9;33432:18;33423:6;33379:72;:::i;:::-;33498:9;33492:4;33488:20;33483:2;33472:9;33468:18;33461:48;33526:76;33597:4;33588:6;33526:76;:::i;:::-;33518:84;;32969:640;;;;;;;:::o;33615:141::-;33671:5;33702:6;33696:13;33687:22;;33718:32;33744:5;33718:32;:::i;:::-;33615:141;;;;:::o;33762:349::-;33831:6;33880:2;33868:9;33859:7;33855:23;33851:32;33848:119;;;33886:79;;:::i;:::-;33848:119;34006:1;34031:63;34086:7;34077:6;34066:9;34062:22;34031:63;:::i;:::-;34021:73;;33977:127;33762:349;;;;:::o;34117:233::-;34156:3;34179:24;34197:5;34179:24;:::i;:::-;34170:33;;34225:66;34218:5;34215:77;34212:103;;34295:18;;:::i;:::-;34212:103;34342:1;34335:5;34331:13;34324:20;;34117:233;;;:::o;34356:180::-;34404:77;34401:1;34394:88;34501:4;34498:1;34491:15;34525:4;34522:1;34515:15;34542:185;34582:1;34599:20;34617:1;34599:20;:::i;:::-;34594:25;;34633:20;34651:1;34633:20;:::i;:::-;34628:25;;34672:1;34662:35;;34677:18;;:::i;:::-;34662:35;34719:1;34716;34712:9;34707:14;;34542:185;;;;:::o;34733:194::-;34773:4;34793:20;34811:1;34793:20;:::i;:::-;34788:25;;34827:20;34845:1;34827:20;:::i;:::-;34822:25;;34871:1;34868;34864:9;34856:17;;34895:1;34889:4;34886:11;34883:37;;;34900:18;;:::i;:::-;34883:37;34733:194;;;;:::o;34933:176::-;34965:1;34982:20;35000:1;34982:20;:::i;:::-;34977:25;;35016:20;35034:1;35016:20;:::i;:::-;35011:25;;35055:1;35045:35;;35060:18;;:::i;:::-;35045:35;35101:1;35098;35094:9;35089:14;;34933:176;;;;:::o;35115:180::-;35163:77;35160:1;35153:88;35260:4;35257:1;35250:15;35284:4;35281:1;35274:15

Swarm Source

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