ETH Price: $2,878.21 (-5.02%)
Gas: 2 Gwei

Token

Strangertownwtf (STOWN)
 

Overview

Max Total Supply

1,999 STOWN

Holders

567

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
3 STOWN
0xedadfda063374ca9f7f7ddc0873e75c437dd6e4a
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:
Strangertownwtf

Compiler Version
v0.8.4+commit.c7e474f2

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-06-02
*/

// File: Strangertownwtf.sol


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

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

pragma solidity ^0.8.0;

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

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

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

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

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

        _;

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

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


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

pragma solidity ^0.8.0;

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.1;

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

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;


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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients
     * are aware of the ERC721 protocol to prevent tokens from being forever locked.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If the caller is not `from`, it must 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 Approve or remove `operator` as an operator for the caller.
     * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller.
     *
     * Requirements:
     *
     * - The `operator` cannot be the caller.
     *
     * Emits an {ApprovalForAll} event.
     */
    function setApprovalForAll(address operator, bool _approved) external;

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

// File: erc721a/contracts/IERC721A.sol


// ERC721A Contracts v3.3.0
// Creator: Chiru Labs

pragma solidity ^0.8.4;



/**
 * @dev Interface of an ERC721A compliant contract.
 */
interface IERC721A is IERC721, IERC721Metadata {
    /**
     * The caller must own the token or be an approved operator.
     */
    error ApprovalCallerNotOwnerNorApproved();

    /**
     * The token does not exist.
     */
    error ApprovalQueryForNonexistentToken();

    /**
     * The caller cannot approve to their own address.
     */
    error ApproveToCaller();

    /**
     * The caller cannot approve to the current owner.
     */
    error ApprovalToCurrentOwner();

    /**
     * Cannot query the balance for the zero address.
     */
    error BalanceQueryForZeroAddress();

    /**
     * Cannot mint to the zero address.
     */
    error MintToZeroAddress();

    /**
     * The quantity of tokens minted must be more than zero.
     */
    error MintZeroQuantity();

    /**
     * The token does not exist.
     */
    error OwnerQueryForNonexistentToken();

    /**
     * The caller must own the token or be an approved operator.
     */
    error TransferCallerNotOwnerNorApproved();

    /**
     * The token must be owned by `from`.
     */
    error TransferFromIncorrectOwner();

    /**
     * Cannot safely transfer to a contract that does not implement the ERC721Receiver interface.
     */
    error TransferToNonERC721ReceiverImplementer();

    /**
     * Cannot transfer to the zero address.
     */
    error TransferToZeroAddress();

    /**
     * The token does not exist.
     */
    error URIQueryForNonexistentToken();

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

    /**
     * @dev Returns the total amount of tokens stored by the contract.
     * 
     * Burned tokens are calculated here, use `_totalMinted()` if you want to count just minted tokens.
     */
    function totalSupply() external view returns (uint256);
}

// File: erc721a/contracts/ERC721A.sol


// ERC721A Contracts v3.3.0
// Creator: Chiru Labs

pragma solidity ^0.8.4;







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

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

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        unchecked {
            if (_startTokenId() <= curr) if (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(), ".json")): "";
    }

    /**
     * @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) if(!isApprovedForAll(owner, _msgSender())) {
            revert ApprovalCallerNotOwnerNorApproved();
        }

        _approve(to, tokenId, owner);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

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

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

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) public virtual override {
        _transfer(from, to, tokenId);
        if (to.isContract()) if(!_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;
    }

    /**
     * @dev Equivalent to `_safeMint(to, quantity, '')`.
     */
    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 {
        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 (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 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) 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;

            do {
                emit Transfer(address(0), to, updatedIndex++);
            } while (updatedIndex < end);

            _currentIndex = updatedIndex;
        }
        _afterTokenTransfers(address(0), to, startTokenId, quantity);
    }

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

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

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

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

        _beforeTokenTransfers(from, to, tokenId, 1);

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

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

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

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

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

    /**
     * @dev Equivalent to `_burn(tokenId, false)`.
     */
    function _burn(uint256 tokenId) internal virtual {
        _burn(tokenId, false);
    }

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

        address from = prevOwnership.addr;

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

            if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        }

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

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

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

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

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

        emit Transfer(from, address(0), tokenId);
        _afterTokenTransfers(from, address(0), tokenId, 1);

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

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

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

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

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

// File: contracts/Strangertown.sol

pragma solidity ^0.8.4;

contract Strangertownwtf is ERC721A, Ownable, ReentrancyGuard {
    using Strings for uint256;

    uint256 public PRICE;
    uint256 public MAX_SUPPLY;
    string private BASE_URI;
    uint256 public FREE_MINT_LIMIT_PER_WALLET;
    uint256 public MAX_MINT_AMOUNT_PER_TX;
    bool public IS_SALE_ACTIVE;
    uint256 public FREE_MINT_IS_ALLOWED_UNTIL;
    bool public METADATA_FROZEN;

    mapping(address => uint256) private freeMintCountMap;

    constructor(
        uint256 price,
        uint256 maxSupply,
        string memory baseUri,
        uint256 freeMintAllowance,
        uint256 maxMintPerTx,
        bool isSaleActive,
        uint256 freeMintIsAllowedUntil
    ) ERC721A("Strangertownwtf", "STOWN") {
        PRICE = price;
        MAX_SUPPLY = maxSupply;
        BASE_URI = baseUri;
        FREE_MINT_LIMIT_PER_WALLET = freeMintAllowance;
        MAX_MINT_AMOUNT_PER_TX = maxMintPerTx;
        IS_SALE_ACTIVE = isSaleActive;
        FREE_MINT_IS_ALLOWED_UNTIL = freeMintIsAllowedUntil;
        _safeMint(msg.sender, 1);
    }

    /** FREE MINT **/

    function updateFreeMintCount(address minter, uint256 count) private {
        freeMintCountMap[minter] += count;
    }

    /** GETTERS **/

    function _baseURI() internal view virtual override returns (string memory) {
        return BASE_URI;
    }

    /** SETTERS **/

    function setPrice(uint256 customPrice) external onlyOwner {
        PRICE = customPrice;
    }

    function lowerMaxSupply(uint256 newMaxSupply) external onlyOwner {
        require(newMaxSupply < MAX_SUPPLY, "Invalid new max supply");
        require(newMaxSupply >= _currentIndex, "Invalid new max supply");
        MAX_SUPPLY = newMaxSupply;
    }

    function setBaseURI(string memory customBaseURI_) external onlyOwner {
        require(!METADATA_FROZEN, "Metadata frozen!");
        BASE_URI = customBaseURI_;
    }

    function setFreeMintAllowance(uint256 freeMintAllowance)
        external
        onlyOwner
    {
        FREE_MINT_LIMIT_PER_WALLET = freeMintAllowance;
    }

    function setMaxMintPerTx(uint256 maxMintPerTx) external onlyOwner {
        MAX_MINT_AMOUNT_PER_TX = maxMintPerTx;
    }

    function setSaleActive(bool saleIsActive) external onlyOwner {
        IS_SALE_ACTIVE = saleIsActive;
    }

    function setFreeMintAllowedUntil(uint256 freeMintIsAllowedUntil)
        external
        onlyOwner
    {
        FREE_MINT_IS_ALLOWED_UNTIL = freeMintIsAllowedUntil;
    }

    function freezeMetadata() external onlyOwner {
        METADATA_FROZEN = true;
    }

    /** MINT **/

    modifier mintCompliance(uint256 _mintAmount) {
        require(
            _mintAmount > 0 && _mintAmount <= MAX_MINT_AMOUNT_PER_TX,
            "Invalid mint amount!"
        );
        require(
            _currentIndex + _mintAmount <= MAX_SUPPLY,
            "Max supply exceeded!"
        );
        _;
    }

    function mint(uint256 _mintAmount)
        public
        payable
        mintCompliance(_mintAmount)
    {
        require(IS_SALE_ACTIVE, "Sale is not active!");

        uint256 price = PRICE * _mintAmount;

        if (_currentIndex < FREE_MINT_IS_ALLOWED_UNTIL) {
            uint256 remainingFreeMint = FREE_MINT_LIMIT_PER_WALLET -
                freeMintCountMap[msg.sender];
            if (remainingFreeMint > 0) {
                if (_mintAmount >= remainingFreeMint) {
                    price -= remainingFreeMint * PRICE;
                    updateFreeMintCount(msg.sender, remainingFreeMint);
                } else {
                    price -= _mintAmount * PRICE;
                    updateFreeMintCount(msg.sender, _mintAmount);
                }
            }
        }

        require(msg.value >= price, "Insufficient funds!");

        _safeMint(msg.sender, _mintAmount);
    }

    function mintOwner(address _to, uint256 _mintAmount)
        public
        mintCompliance(_mintAmount)
        onlyOwner
    {
        _safeMint(_to, _mintAmount);
    }

    function _startTokenId() internal view virtual override returns (uint256) {
        return 1;
    }
    
    /** PAYOUT **/

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

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"uint256","name":"price","type":"uint256"},{"internalType":"uint256","name":"maxSupply","type":"uint256"},{"internalType":"string","name":"baseUri","type":"string"},{"internalType":"uint256","name":"freeMintAllowance","type":"uint256"},{"internalType":"uint256","name":"maxMintPerTx","type":"uint256"},{"internalType":"bool","name":"isSaleActive","type":"bool"},{"internalType":"uint256","name":"freeMintIsAllowedUntil","type":"uint256"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"FREE_MINT_IS_ALLOWED_UNTIL","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"FREE_MINT_LIMIT_PER_WALLET","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"IS_SALE_ACTIVE","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_MINT_AMOUNT_PER_TX","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"METADATA_FROZEN","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"freezeMetadata","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"newMaxSupply","type":"uint256"}],"name":"lowerMaxSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mintOwner","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"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":"customBaseURI_","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"freeMintAllowance","type":"uint256"}],"name":"setFreeMintAllowance","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"freeMintIsAllowedUntil","type":"uint256"}],"name":"setFreeMintAllowedUntil","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"maxMintPerTx","type":"uint256"}],"name":"setMaxMintPerTx","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"customPrice","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"saleIsActive","type":"bool"}],"name":"setSaleActive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040523480156200001157600080fd5b5060405162004a4138038062004a418339818101604052810190620000379190620009ab565b6040518060400160405280600f81526020017f537472616e676572746f776e77746600000000000000000000000000000000008152506040518060400160405280600581526020017f53544f574e0000000000000000000000000000000000000000000000000000008152508160029080519060200190620000bb92919062000818565b508060039080519060200190620000d492919062000818565b50620000e56200018b60201b60201c565b60008190555050506200010d620001016200019460201b60201c565b6200019c60201b60201c565b600160098190555086600a8190555085600b8190555084600c90805190602001906200013b92919062000818565b5083600d8190555082600e8190555081600f60006101000a81548160ff021916908315150217905550806010819055506200017e3360016200026260201b60201c565b5050505050505062000d78565b60006001905090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b620002848282604051806020016040528060008152506200028860201b60201c565b5050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415620002f6576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600083141562000332576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6200034760008583866200067760201b60201c565b82600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555082600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550836004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600081905060008482019050620005158673ffffffffffffffffffffffffffffffffffffffff166200067d60201b62001b711760201c565b15620005e7575b818673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4620005936000878480600101955087620006a060201b60201c565b620005ca576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8082106200051c578260005414620005e157600080fd5b62000653565b5b818060010192508673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4808210620005e8575b8160008190555050506200067160008583866200081260201b60201c565b50505050565b50505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02620006ce6200019460201b60201c565b8786866040518563ffffffff1660e01b8152600401620006f2949392919062000ad4565b602060405180830381600087803b1580156200070d57600080fd5b505af19250505080156200074157506040513d601f19601f820116820180604052508101906200073e91906200097f565b60015b620007bf573d806000811462000774576040519150601f19603f3d011682016040523d82523d6000602084013e62000779565b606091505b50600081511415620007b7576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b50505050565b828054620008269062000c4f565b90600052602060002090601f0160209004810192826200084a576000855562000896565b82601f106200086557805160ff191683800117855562000896565b8280016001018555821562000896579182015b828111156200089557825182559160200191906001019062000878565b5b509050620008a59190620008a9565b5090565b5b80821115620008c4576000816000905550600101620008aa565b5090565b6000620008df620008d98462000b51565b62000b28565b905082815260208101848484011115620008f857600080fd5b6200090584828562000c19565b509392505050565b6000815190506200091e8162000d2a565b92915050565b600081519050620009358162000d44565b92915050565b600082601f8301126200094d57600080fd5b81516200095f848260208601620008c8565b91505092915050565b600081519050620009798162000d5e565b92915050565b6000602082840312156200099257600080fd5b6000620009a28482850162000924565b91505092915050565b600080600080600080600060e0888a031215620009c757600080fd5b6000620009d78a828b0162000968565b9750506020620009ea8a828b0162000968565b965050604088015167ffffffffffffffff81111562000a0857600080fd5b62000a168a828b016200093b565b955050606062000a298a828b0162000968565b945050608062000a3c8a828b0162000968565b93505060a062000a4f8a828b016200090d565b92505060c062000a628a828b0162000968565b91505092959891949750929550565b62000a7c8162000ba3565b82525050565b600062000a8f8262000b87565b62000a9b818562000b92565b935062000aad81856020860162000c19565b62000ab88162000d19565b840191505092915050565b62000ace8162000c0f565b82525050565b600060808201905062000aeb600083018762000a71565b62000afa602083018662000a71565b62000b09604083018562000ac3565b818103606083015262000b1d818462000a82565b905095945050505050565b600062000b3462000b47565b905062000b42828262000c85565b919050565b6000604051905090565b600067ffffffffffffffff82111562000b6f5762000b6e62000cea565b5b62000b7a8262000d19565b9050602081019050919050565b600081519050919050565b600082825260208201905092915050565b600062000bb08262000bef565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b60005b8381101562000c3957808201518184015260208101905062000c1c565b8381111562000c49576000848401525b50505050565b6000600282049050600182168062000c6857607f821691505b6020821081141562000c7f5762000c7e62000cbb565b5b50919050565b62000c908262000d19565b810181811067ffffffffffffffff8211171562000cb25762000cb162000cea565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b62000d358162000bb7565b811462000d4157600080fd5b50565b62000d4f8162000bc3565b811462000d5b57600080fd5b50565b62000d698162000c0f565b811462000d7557600080fd5b50565b613cb98062000d886000396000f3fe6080604052600436106102045760003560e01c8063715018a611610118578063a22cb465116100a0578063c87b56dd1161006f578063c87b56dd1461070a578063d111515d14610747578063e985e9c51461075e578063f2fde38b1461079b578063fdb4953a146107c457610204565b8063a22cb46514610666578063b0551ac41461068f578063b88d4fde146106b8578063c4e9374d146106e157610204565b80638d859f3e116100e75780638d859f3e146105a05780638da5cb5b146105cb57806391b7f5ed146105f657806395d89b411461061f578063a0712d681461064a57610204565b8063715018a61461050c57806376d02b7114610523578063841718a61461054e5780638b85e43d1461057757610204565b806332cb6b0c1161019b57806342842e0e1161016a57806342842e0e1461041757806355f804b314610440578063616cdb1e146104695780636352211e1461049257806370a08231146104cf57610204565b806332cb6b0c146103815780633ccfd60b146103ac5780634065b85f146103c3578063408cbf94146103ee57610204565b806309ef6527116101d757806309ef6527146102d757806310b0c0521461030257806318160ddd1461032d57806323b872dd1461035857610204565b806301ffc9a71461020957806306fdde0314610246578063081812fc14610271578063095ea7b3146102ae575b600080fd5b34801561021557600080fd5b50610230600480360381019061022b91906130ea565b6107ef565b60405161023d91906134a2565b60405180910390f35b34801561025257600080fd5b5061025b6108d1565b60405161026891906134bd565b60405180910390f35b34801561027d57600080fd5b506102986004803603810190610293919061317d565b610963565b6040516102a5919061343b565b60405180910390f35b3480156102ba57600080fd5b506102d560048036038101906102d09190613085565b6109df565b005b3480156102e357600080fd5b506102ec610ae4565b6040516102f991906135ff565b60405180910390f35b34801561030e57600080fd5b50610317610aea565b60405161032491906135ff565b60405180910390f35b34801561033957600080fd5b50610342610af0565b60405161034f91906135ff565b60405180910390f35b34801561036457600080fd5b5061037f600480360381019061037a9190612f7f565b610b07565b005b34801561038d57600080fd5b50610396610b17565b6040516103a391906135ff565b60405180910390f35b3480156103b857600080fd5b506103c1610b1d565b005b3480156103cf57600080fd5b506103d8610c55565b6040516103e591906135ff565b60405180910390f35b3480156103fa57600080fd5b5061041560048036038101906104109190613085565b610c5b565b005b34801561042357600080fd5b5061043e60048036038101906104399190612f7f565b610d8a565b005b34801561044c57600080fd5b506104676004803603810190610462919061313c565b610daa565b005b34801561047557600080fd5b50610490600480360381019061048b919061317d565b610e90565b005b34801561049e57600080fd5b506104b960048036038101906104b4919061317d565b610f16565b6040516104c6919061343b565b60405180910390f35b3480156104db57600080fd5b506104f660048036038101906104f19190612f1a565b610f2c565b60405161050391906135ff565b60405180910390f35b34801561051857600080fd5b50610521610ffc565b005b34801561052f57600080fd5b50610538611084565b60405161054591906134a2565b60405180910390f35b34801561055a57600080fd5b50610575600480360381019061057091906130c1565b611097565b005b34801561058357600080fd5b5061059e6004803603810190610599919061317d565b611130565b005b3480156105ac57600080fd5b506105b56111b6565b6040516105c291906135ff565b60405180910390f35b3480156105d757600080fd5b506105e06111bc565b6040516105ed919061343b565b60405180910390f35b34801561060257600080fd5b5061061d6004803603810190610618919061317d565b6111e6565b005b34801561062b57600080fd5b5061063461126c565b60405161064191906134bd565b60405180910390f35b610664600480360381019061065f919061317d565b6112fe565b005b34801561067257600080fd5b5061068d60048036038101906106889190613049565b611515565b005b34801561069b57600080fd5b506106b660048036038101906106b1919061317d565b61168d565b005b3480156106c457600080fd5b506106df60048036038101906106da9190612fce565b611713565b005b3480156106ed57600080fd5b506107086004803603810190610703919061317d565b61178b565b005b34801561071657600080fd5b50610731600480360381019061072c919061317d565b61189a565b60405161073e91906134bd565b60405180910390f35b34801561075357600080fd5b5061075c611939565b005b34801561076a57600080fd5b5061078560048036038101906107809190612f43565b6119d2565b60405161079291906134a2565b60405180910390f35b3480156107a757600080fd5b506107c260048036038101906107bd9190612f1a565b611a66565b005b3480156107d057600080fd5b506107d9611b5e565b6040516107e691906134a2565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806108ba57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806108ca57506108c982611b94565b5b9050919050565b6060600280546108e0906138ba565b80601f016020809104026020016040519081016040528092919081815260200182805461090c906138ba565b80156109595780601f1061092e57610100808354040283529160200191610959565b820191906000526020600020905b81548152906001019060200180831161093c57829003601f168201915b5050505050905090565b600061096e82611bfe565b6109a4576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006109ea82610f16565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610a52576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610a71611c4c565b73ffffffffffffffffffffffffffffffffffffffff1614610ad457610a9d81610a98611c4c565b6119d2565b610ad3576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b610adf838383611c54565b505050565b600e5481565b600d5481565b6000610afa611d06565b6001546000540303905090565b610b12838383611d0f565b505050565b600b5481565b610b25611c4c565b73ffffffffffffffffffffffffffffffffffffffff16610b436111bc565b73ffffffffffffffffffffffffffffffffffffffff1614610b99576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b909061351f565b60405180910390fd5b60004790506000610ba8611c4c565b73ffffffffffffffffffffffffffffffffffffffff1682604051610bcb90613426565b60006040518083038185875af1925050503d8060008114610c08576040519150601f19603f3d011682016040523d82523d6000602084013e610c0d565b606091505b5050905080610c51576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c48906135bf565b60405180910390fd5b5050565b60105481565b80600081118015610c6e5750600e548111155b610cad576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ca4906134ff565b60405180910390fd5b600b5481600054610cbe91906136ef565b1115610cff576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cf69061359f565b60405180910390fd5b610d07611c4c565b73ffffffffffffffffffffffffffffffffffffffff16610d256111bc565b73ffffffffffffffffffffffffffffffffffffffff1614610d7b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d729061351f565b60405180910390fd5b610d8583836121c5565b505050565b610da583838360405180602001604052806000815250611713565b505050565b610db2611c4c565b73ffffffffffffffffffffffffffffffffffffffff16610dd06111bc565b73ffffffffffffffffffffffffffffffffffffffff1614610e26576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e1d9061351f565b60405180910390fd5b601160009054906101000a900460ff1615610e76576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e6d9061357f565b60405180910390fd5b80600c9080519060200190610e8c929190612cfb565b5050565b610e98611c4c565b73ffffffffffffffffffffffffffffffffffffffff16610eb66111bc565b73ffffffffffffffffffffffffffffffffffffffff1614610f0c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f039061351f565b60405180910390fd5b80600e8190555050565b6000610f21826121e3565b600001519050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610f94576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b611004611c4c565b73ffffffffffffffffffffffffffffffffffffffff166110226111bc565b73ffffffffffffffffffffffffffffffffffffffff1614611078576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161106f9061351f565b60405180910390fd5b611082600061246e565b565b600f60009054906101000a900460ff1681565b61109f611c4c565b73ffffffffffffffffffffffffffffffffffffffff166110bd6111bc565b73ffffffffffffffffffffffffffffffffffffffff1614611113576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161110a9061351f565b60405180910390fd5b80600f60006101000a81548160ff02191690831515021790555050565b611138611c4c565b73ffffffffffffffffffffffffffffffffffffffff166111566111bc565b73ffffffffffffffffffffffffffffffffffffffff16146111ac576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111a39061351f565b60405180910390fd5b8060108190555050565b600a5481565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6111ee611c4c565b73ffffffffffffffffffffffffffffffffffffffff1661120c6111bc565b73ffffffffffffffffffffffffffffffffffffffff1614611262576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112599061351f565b60405180910390fd5b80600a8190555050565b60606003805461127b906138ba565b80601f01602080910402602001604051908101604052809291908181526020018280546112a7906138ba565b80156112f45780601f106112c9576101008083540402835291602001916112f4565b820191906000526020600020905b8154815290600101906020018083116112d757829003601f168201915b5050505050905090565b806000811180156113115750600e548111155b611350576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611347906134ff565b60405180910390fd5b600b548160005461136191906136ef565b11156113a2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113999061359f565b60405180910390fd5b600f60009054906101000a900460ff166113f1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113e89061353f565b60405180910390fd5b600082600a546114019190613776565b905060105460005410156114c3576000601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054600d5461145e91906137d0565b905060008111156114c15780841061149a57600a548161147e9190613776565b8261148991906137d0565b91506114953382612534565b6114c0565b600a54846114a89190613776565b826114b391906137d0565b91506114bf3385612534565b5b5b505b80341015611506576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114fd906135df565b60405180910390fd5b61151033846121c5565b505050565b61151d611c4c565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611582576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806007600061158f611c4c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661163c611c4c565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161168191906134a2565b60405180910390a35050565b611695611c4c565b73ffffffffffffffffffffffffffffffffffffffff166116b36111bc565b73ffffffffffffffffffffffffffffffffffffffff1614611709576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117009061351f565b60405180910390fd5b80600d8190555050565b61171e848484611d0f565b61173d8373ffffffffffffffffffffffffffffffffffffffff16611b71565b156117855761174e8484848461258e565b611784576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b611793611c4c565b73ffffffffffffffffffffffffffffffffffffffff166117b16111bc565b73ffffffffffffffffffffffffffffffffffffffff1614611807576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117fe9061351f565b60405180910390fd5b600b54811061184b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118429061355f565b60405180910390fd5b600054811015611890576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118879061355f565b60405180910390fd5b80600b8190555050565b60606118a582611bfe565b6118db576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60006118e56126ee565b90506000815114156119065760405180602001604052806000815250611931565b8061191084612780565b6040516020016119219291906133f7565b6040516020818303038152906040525b915050919050565b611941611c4c565b73ffffffffffffffffffffffffffffffffffffffff1661195f6111bc565b73ffffffffffffffffffffffffffffffffffffffff16146119b5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119ac9061351f565b60405180910390fd5b6001601160006101000a81548160ff021916908315150217905550565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611a6e611c4c565b73ffffffffffffffffffffffffffffffffffffffff16611a8c6111bc565b73ffffffffffffffffffffffffffffffffffffffff1614611ae2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ad99061351f565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611b52576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b49906134df565b60405180910390fd5b611b5b8161246e565b50565b601160009054906101000a900460ff1681565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600081611c09611d06565b11158015611c18575060005482105b8015611c45575060046000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b600033905090565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60006001905090565b6000611d1a826121e3565b90508373ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614611d85576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff16611da6611c4c565b73ffffffffffffffffffffffffffffffffffffffff161480611dd55750611dd485611dcf611c4c565b6119d2565b5b80611e1a5750611de3611c4c565b73ffffffffffffffffffffffffffffffffffffffff16611e0284610963565b73ffffffffffffffffffffffffffffffffffffffff16145b905080611e53576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611eba576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611ec7858585600161292d565b611ed360008487611c54565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600460008581526020019081526020016000209050848160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550428160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060006001850190506000600460008381526020019081526020016000209050600073ffffffffffffffffffffffffffffffffffffffff168160000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16141561215357600054821461215257878160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555084602001518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b505050828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46121be8585856001612933565b5050505050565b6121df828260405180602001604052806000815250612939565b5050565b6121eb612d81565b6000829050806121f9611d06565b1161243757600054811015612436576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050806040015161243457600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612318578092505050612469565b5b60011561243357818060019003925050600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461242e578092505050612469565b612319565b5b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b80601260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461258391906136ef565b925050819055505050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a026125b4611c4c565b8786866040518563ffffffff1660e01b81526004016125d69493929190613456565b602060405180830381600087803b1580156125f057600080fd5b505af192505050801561262157506040513d601f19601f8201168201806040525081019061261e9190613113565b60015b61269b573d8060008114612651576040519150601f19603f3d011682016040523d82523d6000602084013e612656565b606091505b50600081511415612693576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600c80546126fd906138ba565b80601f0160208091040260200160405190810160405280929190818152602001828054612729906138ba565b80156127765780601f1061274b57610100808354040283529160200191612776565b820191906000526020600020905b81548152906001019060200180831161275957829003601f168201915b5050505050905090565b606060008214156127c8576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612928565b600082905060005b600082146127fa5780806127e39061391d565b915050600a826127f39190613745565b91506127d0565b60008167ffffffffffffffff81111561283c577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f19166020018201604052801561286e5781602001600182028036833780820191505090505b5090505b600085146129215760018261288791906137d0565b9150600a856128969190613966565b60306128a291906136ef565b60f81b8183815181106128de577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561291a9190613745565b9450612872565b8093505050505b919050565b50505050565b50505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156129a6576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008314156129e1576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6129ee600085838661292d565b82600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555082600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550836004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600081905060008482019050612baf8673ffffffffffffffffffffffffffffffffffffffff16611b71565b15612c74575b818673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612c24600087848060010195508761258e565b612c5a576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b808210612bb5578260005414612c6f57600080fd5b612cdf565b5b818060010192508673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4808210612c75575b816000819055505050612cf56000858386612933565b50505050565b828054612d07906138ba565b90600052602060002090601f016020900481019282612d295760008555612d70565b82601f10612d4257805160ff1916838001178555612d70565b82800160010185558215612d70579182015b82811115612d6f578251825591602001919060010190612d54565b5b509050612d7d9190612dc4565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b80821115612ddd576000816000905550600101612dc5565b5090565b6000612df4612def8461363f565b61361a565b905082815260208101848484011115612e0c57600080fd5b612e17848285613878565b509392505050565b6000612e32612e2d84613670565b61361a565b905082815260208101848484011115612e4a57600080fd5b612e55848285613878565b509392505050565b600081359050612e6c81613c27565b92915050565b600081359050612e8181613c3e565b92915050565b600081359050612e9681613c55565b92915050565b600081519050612eab81613c55565b92915050565b600082601f830112612ec257600080fd5b8135612ed2848260208601612de1565b91505092915050565b600082601f830112612eec57600080fd5b8135612efc848260208601612e1f565b91505092915050565b600081359050612f1481613c6c565b92915050565b600060208284031215612f2c57600080fd5b6000612f3a84828501612e5d565b91505092915050565b60008060408385031215612f5657600080fd5b6000612f6485828601612e5d565b9250506020612f7585828601612e5d565b9150509250929050565b600080600060608486031215612f9457600080fd5b6000612fa286828701612e5d565b9350506020612fb386828701612e5d565b9250506040612fc486828701612f05565b9150509250925092565b60008060008060808587031215612fe457600080fd5b6000612ff287828801612e5d565b945050602061300387828801612e5d565b935050604061301487828801612f05565b925050606085013567ffffffffffffffff81111561303157600080fd5b61303d87828801612eb1565b91505092959194509250565b6000806040838503121561305c57600080fd5b600061306a85828601612e5d565b925050602061307b85828601612e72565b9150509250929050565b6000806040838503121561309857600080fd5b60006130a685828601612e5d565b92505060206130b785828601612f05565b9150509250929050565b6000602082840312156130d357600080fd5b60006130e184828501612e72565b91505092915050565b6000602082840312156130fc57600080fd5b600061310a84828501612e87565b91505092915050565b60006020828403121561312557600080fd5b600061313384828501612e9c565b91505092915050565b60006020828403121561314e57600080fd5b600082013567ffffffffffffffff81111561316857600080fd5b61317484828501612edb565b91505092915050565b60006020828403121561318f57600080fd5b600061319d84828501612f05565b91505092915050565b6131af81613804565b82525050565b6131be81613816565b82525050565b60006131cf826136a1565b6131d981856136b7565b93506131e9818560208601613887565b6131f281613a53565b840191505092915050565b6000613208826136ac565b61321281856136d3565b9350613222818560208601613887565b61322b81613a53565b840191505092915050565b6000613241826136ac565b61324b81856136e4565b935061325b818560208601613887565b80840191505092915050565b60006132746026836136d3565b915061327f82613a64565b604082019050919050565b60006132976014836136d3565b91506132a282613ab3565b602082019050919050565b60006132ba6005836136e4565b91506132c582613adc565b600582019050919050565b60006132dd6020836136d3565b91506132e882613b05565b602082019050919050565b60006133006013836136d3565b915061330b82613b2e565b602082019050919050565b60006133236016836136d3565b915061332e82613b57565b602082019050919050565b60006133466010836136d3565b915061335182613b80565b602082019050919050565b60006133696000836136c8565b915061337482613ba9565b600082019050919050565b600061338c6014836136d3565b915061339782613bac565b602082019050919050565b60006133af600e836136d3565b91506133ba82613bd5565b602082019050919050565b60006133d26013836136d3565b91506133dd82613bfe565b602082019050919050565b6133f18161386e565b82525050565b60006134038285613236565b915061340f8284613236565b915061341a826132ad565b91508190509392505050565b60006134318261335c565b9150819050919050565b600060208201905061345060008301846131a6565b92915050565b600060808201905061346b60008301876131a6565b61347860208301866131a6565b61348560408301856133e8565b818103606083015261349781846131c4565b905095945050505050565b60006020820190506134b760008301846131b5565b92915050565b600060208201905081810360008301526134d781846131fd565b905092915050565b600060208201905081810360008301526134f881613267565b9050919050565b600060208201905081810360008301526135188161328a565b9050919050565b60006020820190508181036000830152613538816132d0565b9050919050565b60006020820190508181036000830152613558816132f3565b9050919050565b6000602082019050818103600083015261357881613316565b9050919050565b6000602082019050818103600083015261359881613339565b9050919050565b600060208201905081810360008301526135b88161337f565b9050919050565b600060208201905081810360008301526135d8816133a2565b9050919050565b600060208201905081810360008301526135f8816133c5565b9050919050565b600060208201905061361460008301846133e8565b92915050565b6000613624613635565b905061363082826138ec565b919050565b6000604051905090565b600067ffffffffffffffff82111561365a57613659613a24565b5b61366382613a53565b9050602081019050919050565b600067ffffffffffffffff82111561368b5761368a613a24565b5b61369482613a53565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b60006136fa8261386e565b91506137058361386e565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561373a57613739613997565b5b828201905092915050565b60006137508261386e565b915061375b8361386e565b92508261376b5761376a6139c6565b5b828204905092915050565b60006137818261386e565b915061378c8361386e565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156137c5576137c4613997565b5b828202905092915050565b60006137db8261386e565b91506137e68361386e565b9250828210156137f9576137f8613997565b5b828203905092915050565b600061380f8261384e565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b838110156138a557808201518184015260208101905061388a565b838111156138b4576000848401525b50505050565b600060028204905060018216806138d257607f821691505b602082108114156138e6576138e56139f5565b5b50919050565b6138f582613a53565b810181811067ffffffffffffffff8211171561391457613913613a24565b5b80604052505050565b60006139288261386e565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561395b5761395a613997565b5b600182019050919050565b60006139718261386e565b915061397c8361386e565b92508261398c5761398b6139c6565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f496e76616c6964206d696e7420616d6f756e7421000000000000000000000000600082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f53616c65206973206e6f74206163746976652100000000000000000000000000600082015250565b7f496e76616c6964206e6577206d617820737570706c7900000000000000000000600082015250565b7f4d657461646174612066726f7a656e2100000000000000000000000000000000600082015250565b50565b7f4d617820737570706c7920657863656564656421000000000000000000000000600082015250565b7f4661696c656420746f2073656e64000000000000000000000000000000000000600082015250565b7f496e73756666696369656e742066756e64732100000000000000000000000000600082015250565b613c3081613804565b8114613c3b57600080fd5b50565b613c4781613816565b8114613c5257600080fd5b50565b613c5e81613822565b8114613c6957600080fd5b50565b613c758161386e565b8114613c8057600080fd5b5056fea2646970667358221220a68d9ee891ddb5484385d909c13f03fc6b7bddf37295b6b29d33e4e298d4b6f464736f6c63430008040033000000000000000000000000000000000000000000000000000e35fa931a000000000000000000000000000000000000000000000000000000000000000007d000000000000000000000000000000000000000000000000000000000000000e00000000000000000000000000000000000000000000000000000000000000003000000000000000000000000000000000000000000000000000000000000001e000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005780000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d556a5037575a31457454744252697a4c7165374d486a6a4b4a39363269746952707844343575694761314b472f00000000000000000000

Deployed Bytecode

0x6080604052600436106102045760003560e01c8063715018a611610118578063a22cb465116100a0578063c87b56dd1161006f578063c87b56dd1461070a578063d111515d14610747578063e985e9c51461075e578063f2fde38b1461079b578063fdb4953a146107c457610204565b8063a22cb46514610666578063b0551ac41461068f578063b88d4fde146106b8578063c4e9374d146106e157610204565b80638d859f3e116100e75780638d859f3e146105a05780638da5cb5b146105cb57806391b7f5ed146105f657806395d89b411461061f578063a0712d681461064a57610204565b8063715018a61461050c57806376d02b7114610523578063841718a61461054e5780638b85e43d1461057757610204565b806332cb6b0c1161019b57806342842e0e1161016a57806342842e0e1461041757806355f804b314610440578063616cdb1e146104695780636352211e1461049257806370a08231146104cf57610204565b806332cb6b0c146103815780633ccfd60b146103ac5780634065b85f146103c3578063408cbf94146103ee57610204565b806309ef6527116101d757806309ef6527146102d757806310b0c0521461030257806318160ddd1461032d57806323b872dd1461035857610204565b806301ffc9a71461020957806306fdde0314610246578063081812fc14610271578063095ea7b3146102ae575b600080fd5b34801561021557600080fd5b50610230600480360381019061022b91906130ea565b6107ef565b60405161023d91906134a2565b60405180910390f35b34801561025257600080fd5b5061025b6108d1565b60405161026891906134bd565b60405180910390f35b34801561027d57600080fd5b506102986004803603810190610293919061317d565b610963565b6040516102a5919061343b565b60405180910390f35b3480156102ba57600080fd5b506102d560048036038101906102d09190613085565b6109df565b005b3480156102e357600080fd5b506102ec610ae4565b6040516102f991906135ff565b60405180910390f35b34801561030e57600080fd5b50610317610aea565b60405161032491906135ff565b60405180910390f35b34801561033957600080fd5b50610342610af0565b60405161034f91906135ff565b60405180910390f35b34801561036457600080fd5b5061037f600480360381019061037a9190612f7f565b610b07565b005b34801561038d57600080fd5b50610396610b17565b6040516103a391906135ff565b60405180910390f35b3480156103b857600080fd5b506103c1610b1d565b005b3480156103cf57600080fd5b506103d8610c55565b6040516103e591906135ff565b60405180910390f35b3480156103fa57600080fd5b5061041560048036038101906104109190613085565b610c5b565b005b34801561042357600080fd5b5061043e60048036038101906104399190612f7f565b610d8a565b005b34801561044c57600080fd5b506104676004803603810190610462919061313c565b610daa565b005b34801561047557600080fd5b50610490600480360381019061048b919061317d565b610e90565b005b34801561049e57600080fd5b506104b960048036038101906104b4919061317d565b610f16565b6040516104c6919061343b565b60405180910390f35b3480156104db57600080fd5b506104f660048036038101906104f19190612f1a565b610f2c565b60405161050391906135ff565b60405180910390f35b34801561051857600080fd5b50610521610ffc565b005b34801561052f57600080fd5b50610538611084565b60405161054591906134a2565b60405180910390f35b34801561055a57600080fd5b50610575600480360381019061057091906130c1565b611097565b005b34801561058357600080fd5b5061059e6004803603810190610599919061317d565b611130565b005b3480156105ac57600080fd5b506105b56111b6565b6040516105c291906135ff565b60405180910390f35b3480156105d757600080fd5b506105e06111bc565b6040516105ed919061343b565b60405180910390f35b34801561060257600080fd5b5061061d6004803603810190610618919061317d565b6111e6565b005b34801561062b57600080fd5b5061063461126c565b60405161064191906134bd565b60405180910390f35b610664600480360381019061065f919061317d565b6112fe565b005b34801561067257600080fd5b5061068d60048036038101906106889190613049565b611515565b005b34801561069b57600080fd5b506106b660048036038101906106b1919061317d565b61168d565b005b3480156106c457600080fd5b506106df60048036038101906106da9190612fce565b611713565b005b3480156106ed57600080fd5b506107086004803603810190610703919061317d565b61178b565b005b34801561071657600080fd5b50610731600480360381019061072c919061317d565b61189a565b60405161073e91906134bd565b60405180910390f35b34801561075357600080fd5b5061075c611939565b005b34801561076a57600080fd5b5061078560048036038101906107809190612f43565b6119d2565b60405161079291906134a2565b60405180910390f35b3480156107a757600080fd5b506107c260048036038101906107bd9190612f1a565b611a66565b005b3480156107d057600080fd5b506107d9611b5e565b6040516107e691906134a2565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806108ba57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806108ca57506108c982611b94565b5b9050919050565b6060600280546108e0906138ba565b80601f016020809104026020016040519081016040528092919081815260200182805461090c906138ba565b80156109595780601f1061092e57610100808354040283529160200191610959565b820191906000526020600020905b81548152906001019060200180831161093c57829003601f168201915b5050505050905090565b600061096e82611bfe565b6109a4576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006109ea82610f16565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610a52576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610a71611c4c565b73ffffffffffffffffffffffffffffffffffffffff1614610ad457610a9d81610a98611c4c565b6119d2565b610ad3576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b610adf838383611c54565b505050565b600e5481565b600d5481565b6000610afa611d06565b6001546000540303905090565b610b12838383611d0f565b505050565b600b5481565b610b25611c4c565b73ffffffffffffffffffffffffffffffffffffffff16610b436111bc565b73ffffffffffffffffffffffffffffffffffffffff1614610b99576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b909061351f565b60405180910390fd5b60004790506000610ba8611c4c565b73ffffffffffffffffffffffffffffffffffffffff1682604051610bcb90613426565b60006040518083038185875af1925050503d8060008114610c08576040519150601f19603f3d011682016040523d82523d6000602084013e610c0d565b606091505b5050905080610c51576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c48906135bf565b60405180910390fd5b5050565b60105481565b80600081118015610c6e5750600e548111155b610cad576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ca4906134ff565b60405180910390fd5b600b5481600054610cbe91906136ef565b1115610cff576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cf69061359f565b60405180910390fd5b610d07611c4c565b73ffffffffffffffffffffffffffffffffffffffff16610d256111bc565b73ffffffffffffffffffffffffffffffffffffffff1614610d7b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d729061351f565b60405180910390fd5b610d8583836121c5565b505050565b610da583838360405180602001604052806000815250611713565b505050565b610db2611c4c565b73ffffffffffffffffffffffffffffffffffffffff16610dd06111bc565b73ffffffffffffffffffffffffffffffffffffffff1614610e26576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e1d9061351f565b60405180910390fd5b601160009054906101000a900460ff1615610e76576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e6d9061357f565b60405180910390fd5b80600c9080519060200190610e8c929190612cfb565b5050565b610e98611c4c565b73ffffffffffffffffffffffffffffffffffffffff16610eb66111bc565b73ffffffffffffffffffffffffffffffffffffffff1614610f0c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f039061351f565b60405180910390fd5b80600e8190555050565b6000610f21826121e3565b600001519050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610f94576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b611004611c4c565b73ffffffffffffffffffffffffffffffffffffffff166110226111bc565b73ffffffffffffffffffffffffffffffffffffffff1614611078576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161106f9061351f565b60405180910390fd5b611082600061246e565b565b600f60009054906101000a900460ff1681565b61109f611c4c565b73ffffffffffffffffffffffffffffffffffffffff166110bd6111bc565b73ffffffffffffffffffffffffffffffffffffffff1614611113576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161110a9061351f565b60405180910390fd5b80600f60006101000a81548160ff02191690831515021790555050565b611138611c4c565b73ffffffffffffffffffffffffffffffffffffffff166111566111bc565b73ffffffffffffffffffffffffffffffffffffffff16146111ac576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111a39061351f565b60405180910390fd5b8060108190555050565b600a5481565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6111ee611c4c565b73ffffffffffffffffffffffffffffffffffffffff1661120c6111bc565b73ffffffffffffffffffffffffffffffffffffffff1614611262576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112599061351f565b60405180910390fd5b80600a8190555050565b60606003805461127b906138ba565b80601f01602080910402602001604051908101604052809291908181526020018280546112a7906138ba565b80156112f45780601f106112c9576101008083540402835291602001916112f4565b820191906000526020600020905b8154815290600101906020018083116112d757829003601f168201915b5050505050905090565b806000811180156113115750600e548111155b611350576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611347906134ff565b60405180910390fd5b600b548160005461136191906136ef565b11156113a2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113999061359f565b60405180910390fd5b600f60009054906101000a900460ff166113f1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113e89061353f565b60405180910390fd5b600082600a546114019190613776565b905060105460005410156114c3576000601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054600d5461145e91906137d0565b905060008111156114c15780841061149a57600a548161147e9190613776565b8261148991906137d0565b91506114953382612534565b6114c0565b600a54846114a89190613776565b826114b391906137d0565b91506114bf3385612534565b5b5b505b80341015611506576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114fd906135df565b60405180910390fd5b61151033846121c5565b505050565b61151d611c4c565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611582576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806007600061158f611c4c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661163c611c4c565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161168191906134a2565b60405180910390a35050565b611695611c4c565b73ffffffffffffffffffffffffffffffffffffffff166116b36111bc565b73ffffffffffffffffffffffffffffffffffffffff1614611709576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117009061351f565b60405180910390fd5b80600d8190555050565b61171e848484611d0f565b61173d8373ffffffffffffffffffffffffffffffffffffffff16611b71565b156117855761174e8484848461258e565b611784576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b611793611c4c565b73ffffffffffffffffffffffffffffffffffffffff166117b16111bc565b73ffffffffffffffffffffffffffffffffffffffff1614611807576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117fe9061351f565b60405180910390fd5b600b54811061184b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118429061355f565b60405180910390fd5b600054811015611890576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118879061355f565b60405180910390fd5b80600b8190555050565b60606118a582611bfe565b6118db576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60006118e56126ee565b90506000815114156119065760405180602001604052806000815250611931565b8061191084612780565b6040516020016119219291906133f7565b6040516020818303038152906040525b915050919050565b611941611c4c565b73ffffffffffffffffffffffffffffffffffffffff1661195f6111bc565b73ffffffffffffffffffffffffffffffffffffffff16146119b5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119ac9061351f565b60405180910390fd5b6001601160006101000a81548160ff021916908315150217905550565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611a6e611c4c565b73ffffffffffffffffffffffffffffffffffffffff16611a8c6111bc565b73ffffffffffffffffffffffffffffffffffffffff1614611ae2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ad99061351f565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611b52576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b49906134df565b60405180910390fd5b611b5b8161246e565b50565b601160009054906101000a900460ff1681565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600081611c09611d06565b11158015611c18575060005482105b8015611c45575060046000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b600033905090565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60006001905090565b6000611d1a826121e3565b90508373ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614611d85576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff16611da6611c4c565b73ffffffffffffffffffffffffffffffffffffffff161480611dd55750611dd485611dcf611c4c565b6119d2565b5b80611e1a5750611de3611c4c565b73ffffffffffffffffffffffffffffffffffffffff16611e0284610963565b73ffffffffffffffffffffffffffffffffffffffff16145b905080611e53576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611eba576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611ec7858585600161292d565b611ed360008487611c54565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600460008581526020019081526020016000209050848160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550428160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060006001850190506000600460008381526020019081526020016000209050600073ffffffffffffffffffffffffffffffffffffffff168160000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16141561215357600054821461215257878160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555084602001518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b505050828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46121be8585856001612933565b5050505050565b6121df828260405180602001604052806000815250612939565b5050565b6121eb612d81565b6000829050806121f9611d06565b1161243757600054811015612436576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050806040015161243457600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612318578092505050612469565b5b60011561243357818060019003925050600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461242e578092505050612469565b612319565b5b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b80601260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461258391906136ef565b925050819055505050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a026125b4611c4c565b8786866040518563ffffffff1660e01b81526004016125d69493929190613456565b602060405180830381600087803b1580156125f057600080fd5b505af192505050801561262157506040513d601f19601f8201168201806040525081019061261e9190613113565b60015b61269b573d8060008114612651576040519150601f19603f3d011682016040523d82523d6000602084013e612656565b606091505b50600081511415612693576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600c80546126fd906138ba565b80601f0160208091040260200160405190810160405280929190818152602001828054612729906138ba565b80156127765780601f1061274b57610100808354040283529160200191612776565b820191906000526020600020905b81548152906001019060200180831161275957829003601f168201915b5050505050905090565b606060008214156127c8576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612928565b600082905060005b600082146127fa5780806127e39061391d565b915050600a826127f39190613745565b91506127d0565b60008167ffffffffffffffff81111561283c577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f19166020018201604052801561286e5781602001600182028036833780820191505090505b5090505b600085146129215760018261288791906137d0565b9150600a856128969190613966565b60306128a291906136ef565b60f81b8183815181106128de577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561291a9190613745565b9450612872565b8093505050505b919050565b50505050565b50505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156129a6576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008314156129e1576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6129ee600085838661292d565b82600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555082600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550836004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600081905060008482019050612baf8673ffffffffffffffffffffffffffffffffffffffff16611b71565b15612c74575b818673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612c24600087848060010195508761258e565b612c5a576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b808210612bb5578260005414612c6f57600080fd5b612cdf565b5b818060010192508673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4808210612c75575b816000819055505050612cf56000858386612933565b50505050565b828054612d07906138ba565b90600052602060002090601f016020900481019282612d295760008555612d70565b82601f10612d4257805160ff1916838001178555612d70565b82800160010185558215612d70579182015b82811115612d6f578251825591602001919060010190612d54565b5b509050612d7d9190612dc4565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b80821115612ddd576000816000905550600101612dc5565b5090565b6000612df4612def8461363f565b61361a565b905082815260208101848484011115612e0c57600080fd5b612e17848285613878565b509392505050565b6000612e32612e2d84613670565b61361a565b905082815260208101848484011115612e4a57600080fd5b612e55848285613878565b509392505050565b600081359050612e6c81613c27565b92915050565b600081359050612e8181613c3e565b92915050565b600081359050612e9681613c55565b92915050565b600081519050612eab81613c55565b92915050565b600082601f830112612ec257600080fd5b8135612ed2848260208601612de1565b91505092915050565b600082601f830112612eec57600080fd5b8135612efc848260208601612e1f565b91505092915050565b600081359050612f1481613c6c565b92915050565b600060208284031215612f2c57600080fd5b6000612f3a84828501612e5d565b91505092915050565b60008060408385031215612f5657600080fd5b6000612f6485828601612e5d565b9250506020612f7585828601612e5d565b9150509250929050565b600080600060608486031215612f9457600080fd5b6000612fa286828701612e5d565b9350506020612fb386828701612e5d565b9250506040612fc486828701612f05565b9150509250925092565b60008060008060808587031215612fe457600080fd5b6000612ff287828801612e5d565b945050602061300387828801612e5d565b935050604061301487828801612f05565b925050606085013567ffffffffffffffff81111561303157600080fd5b61303d87828801612eb1565b91505092959194509250565b6000806040838503121561305c57600080fd5b600061306a85828601612e5d565b925050602061307b85828601612e72565b9150509250929050565b6000806040838503121561309857600080fd5b60006130a685828601612e5d565b92505060206130b785828601612f05565b9150509250929050565b6000602082840312156130d357600080fd5b60006130e184828501612e72565b91505092915050565b6000602082840312156130fc57600080fd5b600061310a84828501612e87565b91505092915050565b60006020828403121561312557600080fd5b600061313384828501612e9c565b91505092915050565b60006020828403121561314e57600080fd5b600082013567ffffffffffffffff81111561316857600080fd5b61317484828501612edb565b91505092915050565b60006020828403121561318f57600080fd5b600061319d84828501612f05565b91505092915050565b6131af81613804565b82525050565b6131be81613816565b82525050565b60006131cf826136a1565b6131d981856136b7565b93506131e9818560208601613887565b6131f281613a53565b840191505092915050565b6000613208826136ac565b61321281856136d3565b9350613222818560208601613887565b61322b81613a53565b840191505092915050565b6000613241826136ac565b61324b81856136e4565b935061325b818560208601613887565b80840191505092915050565b60006132746026836136d3565b915061327f82613a64565b604082019050919050565b60006132976014836136d3565b91506132a282613ab3565b602082019050919050565b60006132ba6005836136e4565b91506132c582613adc565b600582019050919050565b60006132dd6020836136d3565b91506132e882613b05565b602082019050919050565b60006133006013836136d3565b915061330b82613b2e565b602082019050919050565b60006133236016836136d3565b915061332e82613b57565b602082019050919050565b60006133466010836136d3565b915061335182613b80565b602082019050919050565b60006133696000836136c8565b915061337482613ba9565b600082019050919050565b600061338c6014836136d3565b915061339782613bac565b602082019050919050565b60006133af600e836136d3565b91506133ba82613bd5565b602082019050919050565b60006133d26013836136d3565b91506133dd82613bfe565b602082019050919050565b6133f18161386e565b82525050565b60006134038285613236565b915061340f8284613236565b915061341a826132ad565b91508190509392505050565b60006134318261335c565b9150819050919050565b600060208201905061345060008301846131a6565b92915050565b600060808201905061346b60008301876131a6565b61347860208301866131a6565b61348560408301856133e8565b818103606083015261349781846131c4565b905095945050505050565b60006020820190506134b760008301846131b5565b92915050565b600060208201905081810360008301526134d781846131fd565b905092915050565b600060208201905081810360008301526134f881613267565b9050919050565b600060208201905081810360008301526135188161328a565b9050919050565b60006020820190508181036000830152613538816132d0565b9050919050565b60006020820190508181036000830152613558816132f3565b9050919050565b6000602082019050818103600083015261357881613316565b9050919050565b6000602082019050818103600083015261359881613339565b9050919050565b600060208201905081810360008301526135b88161337f565b9050919050565b600060208201905081810360008301526135d8816133a2565b9050919050565b600060208201905081810360008301526135f8816133c5565b9050919050565b600060208201905061361460008301846133e8565b92915050565b6000613624613635565b905061363082826138ec565b919050565b6000604051905090565b600067ffffffffffffffff82111561365a57613659613a24565b5b61366382613a53565b9050602081019050919050565b600067ffffffffffffffff82111561368b5761368a613a24565b5b61369482613a53565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b60006136fa8261386e565b91506137058361386e565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561373a57613739613997565b5b828201905092915050565b60006137508261386e565b915061375b8361386e565b92508261376b5761376a6139c6565b5b828204905092915050565b60006137818261386e565b915061378c8361386e565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156137c5576137c4613997565b5b828202905092915050565b60006137db8261386e565b91506137e68361386e565b9250828210156137f9576137f8613997565b5b828203905092915050565b600061380f8261384e565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b838110156138a557808201518184015260208101905061388a565b838111156138b4576000848401525b50505050565b600060028204905060018216806138d257607f821691505b602082108114156138e6576138e56139f5565b5b50919050565b6138f582613a53565b810181811067ffffffffffffffff8211171561391457613913613a24565b5b80604052505050565b60006139288261386e565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561395b5761395a613997565b5b600182019050919050565b60006139718261386e565b915061397c8361386e565b92508261398c5761398b6139c6565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f496e76616c6964206d696e7420616d6f756e7421000000000000000000000000600082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f53616c65206973206e6f74206163746976652100000000000000000000000000600082015250565b7f496e76616c6964206e6577206d617820737570706c7900000000000000000000600082015250565b7f4d657461646174612066726f7a656e2100000000000000000000000000000000600082015250565b50565b7f4d617820737570706c7920657863656564656421000000000000000000000000600082015250565b7f4661696c656420746f2073656e64000000000000000000000000000000000000600082015250565b7f496e73756666696369656e742066756e64732100000000000000000000000000600082015250565b613c3081613804565b8114613c3b57600080fd5b50565b613c4781613816565b8114613c5257600080fd5b50565b613c5e81613822565b8114613c6957600080fd5b50565b613c758161386e565b8114613c8057600080fd5b5056fea2646970667358221220a68d9ee891ddb5484385d909c13f03fc6b7bddf37295b6b29d33e4e298d4b6f464736f6c63430008040033

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

000000000000000000000000000000000000000000000000000e35fa931a000000000000000000000000000000000000000000000000000000000000000007d000000000000000000000000000000000000000000000000000000000000000e00000000000000000000000000000000000000000000000000000000000000003000000000000000000000000000000000000000000000000000000000000001e000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005780000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d556a5037575a31457454744252697a4c7165374d486a6a4b4a39363269746952707844343575694761314b472f00000000000000000000

-----Decoded View---------------
Arg [0] : price (uint256): 4000000000000000
Arg [1] : maxSupply (uint256): 2000
Arg [2] : baseUri (string): ipfs://QmUjP7WZ1EtTtBRizLqe7MHjjKJ962itiRpxD45uiGa1KG/
Arg [3] : freeMintAllowance (uint256): 3
Arg [4] : maxMintPerTx (uint256): 30
Arg [5] : isSaleActive (bool): False
Arg [6] : freeMintIsAllowedUntil (uint256): 1400

-----Encoded View---------------
10 Constructor Arguments found :
Arg [0] : 000000000000000000000000000000000000000000000000000e35fa931a0000
Arg [1] : 00000000000000000000000000000000000000000000000000000000000007d0
Arg [2] : 00000000000000000000000000000000000000000000000000000000000000e0
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000003
Arg [4] : 000000000000000000000000000000000000000000000000000000000000001e
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000000
Arg [6] : 0000000000000000000000000000000000000000000000000000000000000578
Arg [7] : 0000000000000000000000000000000000000000000000000000000000000036
Arg [8] : 697066733a2f2f516d556a5037575a31457454744252697a4c7165374d486a6a
Arg [9] : 4b4a39363269746952707844343575694761314b472f00000000000000000000


Deployed Bytecode Sourcemap

50224:4464:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31336:305;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34451:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35963:204;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35525:372;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;50464:37;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50416:41;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30576:312;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36828:170;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;50354:25;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;54471:209;;;;;;;;;;;;;:::i;:::-;;50541:41;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;54152:176;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;37069:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;51988:169;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;52337:122;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;34259:125;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31705:206;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7521:103;;;;;;;;;;;;;:::i;:::-;;50508:26;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;52467:109;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;52584:177;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;50327:20;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6870:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51621:96;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;34620:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;53215:929;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;36239:287;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;52165:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;37325:370;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;51725:255;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;34795:326;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;52769:86;;;;;;;;;;;;;:::i;:::-;;36597:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7779:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;50589:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31336:305;31438:4;31490:25;31475:40;;;:11;:40;;;;:105;;;;31547:33;31532:48;;;:11;:48;;;;31475:105;:158;;;;31597:36;31621:11;31597:23;:36::i;:::-;31475:158;31455:178;;31336:305;;;:::o;34451:100::-;34505:13;34538:5;34531:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34451:100;:::o;35963:204::-;36031:7;36056:16;36064:7;36056;:16::i;:::-;36051:64;;36081:34;;;;;;;;;;;;;;36051:64;36135:15;:24;36151:7;36135:24;;;;;;;;;;;;;;;;;;;;;36128:31;;35963:204;;;:::o;35525:372::-;35598:13;35614:24;35630:7;35614:15;:24::i;:::-;35598:40;;35659:5;35653:11;;:2;:11;;;35649:48;;;35673:24;;;;;;;;;;;;;;35649:48;35730:5;35714:21;;:12;:10;:12::i;:::-;:21;;;35710:139;;35741:37;35758:5;35765:12;:10;:12::i;:::-;35741:16;:37::i;:::-;35737:112;;35802:35;;;;;;;;;;;;;;35737:112;35710:139;35861:28;35870:2;35874:7;35883:5;35861:8;:28::i;:::-;35525:372;;;:::o;50464:37::-;;;;:::o;50416:41::-;;;;:::o;30576:312::-;30629:7;30854:15;:13;:15::i;:::-;30839:12;;30823:13;;:28;:46;30816:53;;30576:312;:::o;36828:170::-;36962:28;36972:4;36978:2;36982:7;36962:9;:28::i;:::-;36828:170;;;:::o;50354:25::-;;;;:::o;54471:209::-;7101:12;:10;:12::i;:::-;7090:23;;:7;:5;:7::i;:::-;:23;;;7082:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;54521:15:::1;54539:21;54521:39;;54572:12;54590;:10;:12::i;:::-;:17;;54615:7;54590:37;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;54571:56;;;54646:7;54638:34;;;;;;;;;;;;:::i;:::-;;;;;;;;;7161:1;;54471:209::o:0;50541:41::-;;;;:::o;54152:176::-;54245:11;52975:1;52961:11;:15;:56;;;;;52995:22;;52980:11;:37;;52961:56;52939:126;;;;;;;;;;;;:::i;:::-;;;;;;;;;53129:10;;53114:11;53098:13;;:27;;;;:::i;:::-;:41;;53076:111;;;;;;;;;;;;:::i;:::-;;;;;;;;;7101:12:::1;:10;:12::i;:::-;7090:23;;:7;:5;:7::i;:::-;:23;;;7082:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;54293:27:::2;54303:3;54308:11;54293:9;:27::i;:::-;54152:176:::0;;;:::o;37069:185::-;37207:39;37224:4;37230:2;37234:7;37207:39;;;;;;;;;;;;:16;:39::i;:::-;37069:185;;;:::o;51988:169::-;7101:12;:10;:12::i;:::-;7090:23;;:7;:5;:7::i;:::-;:23;;;7082:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;52077:15:::1;;;;;;;;;;;52076:16;52068:45;;;;;;;;;;;;:::i;:::-;;;;;;;;;52135:14;52124:8;:25;;;;;;;;;;;;:::i;:::-;;51988:169:::0;:::o;52337:122::-;7101:12;:10;:12::i;:::-;7090:23;;:7;:5;:7::i;:::-;:23;;;7082:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;52439:12:::1;52414:22;:37;;;;52337:122:::0;:::o;34259:125::-;34323:7;34350:21;34363:7;34350:12;:21::i;:::-;:26;;;34343:33;;34259:125;;;:::o;31705:206::-;31769:7;31810:1;31793:19;;:5;:19;;;31789:60;;;31821:28;;;;;;;;;;;;;;31789:60;31875:12;:19;31888:5;31875:19;;;;;;;;;;;;;;;:27;;;;;;;;;;;;31867:36;;31860:43;;31705:206;;;:::o;7521:103::-;7101:12;:10;:12::i;:::-;7090:23;;:7;:5;:7::i;:::-;:23;;;7082:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;7586:30:::1;7613:1;7586:18;:30::i;:::-;7521:103::o:0;50508:26::-;;;;;;;;;;;;;:::o;52467:109::-;7101:12;:10;:12::i;:::-;7090:23;;:7;:5;:7::i;:::-;:23;;;7082:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;52556:12:::1;52539:14;;:29;;;;;;;;;;;;;;;;;;52467:109:::0;:::o;52584:177::-;7101:12;:10;:12::i;:::-;7090:23;;:7;:5;:7::i;:::-;:23;;;7082:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;52731:22:::1;52702:26;:51;;;;52584:177:::0;:::o;50327:20::-;;;;:::o;6870:87::-;6916:7;6943:6;;;;;;;;;;;6936:13;;6870:87;:::o;51621:96::-;7101:12;:10;:12::i;:::-;7090:23;;:7;:5;:7::i;:::-;:23;;;7082:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;51698:11:::1;51690:5;:19;;;;51621:96:::0;:::o;34620:104::-;34676:13;34709:7;34702:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34620:104;:::o;53215:929::-;53307:11;52975:1;52961:11;:15;:56;;;;;52995:22;;52980:11;:37;;52961:56;52939:126;;;;;;;;;;;;:::i;:::-;;;;;;;;;53129:10;;53114:11;53098:13;;:27;;;;:::i;:::-;:41;;53076:111;;;;;;;;;;;;:::i;:::-;;;;;;;;;53344:14:::1;;;;;;;;;;;53336:46;;;;;;;;;;;;:::i;:::-;;;;;;;;;53395:13;53419:11;53411:5;;:19;;;;:::i;:::-;53395:35;;53463:26;;53447:13;;:42;53443:584;;;53506:25;53580:16;:28;53597:10;53580:28;;;;;;;;;;;;;;;;53534:26;;:74;;;;:::i;:::-;53506:102;;53647:1;53627:17;:21;53623:393;;;53688:17;53673:11;:32;53669:332;;53759:5;;53739:17;:25;;;;:::i;:::-;53730:34;;;;;:::i;:::-;;;53787:50;53807:10;53819:17;53787:19;:50::i;:::-;53669:332;;;53909:5;;53895:11;:19;;;;:::i;:::-;53886:28;;;;;:::i;:::-;;;53937:44;53957:10;53969:11;53937:19;:44::i;:::-;53669:332;53623:393;53443:584;;54060:5;54047:9;:18;;54039:50;;;;;;;;;;;;:::i;:::-;;;;;;;;;54102:34;54112:10;54124:11;54102:9;:34::i;:::-;53198:1;53215:929:::0;;:::o;36239:287::-;36350:12;:10;:12::i;:::-;36338:24;;:8;:24;;;36334:54;;;36371:17;;;;;;;;;;;;;;36334:54;36446:8;36401:18;:32;36420:12;:10;:12::i;:::-;36401:32;;;;;;;;;;;;;;;:42;36434:8;36401:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;36499:8;36470:48;;36485:12;:10;:12::i;:::-;36470:48;;;36509:8;36470:48;;;;;;:::i;:::-;;;;;;;;36239:287;;:::o;52165:164::-;7101:12;:10;:12::i;:::-;7090:23;;:7;:5;:7::i;:::-;:23;;;7082:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;52304:17:::1;52275:26;:46;;;;52165:164:::0;:::o;37325:370::-;37492:28;37502:4;37508:2;37512:7;37492:9;:28::i;:::-;37535:15;:2;:13;;;:15::i;:::-;37531:157;;;37556:56;37587:4;37593:2;37597:7;37606:5;37556:30;:56::i;:::-;37552:136;;37636:40;;;;;;;;;;;;;;37552:136;37531:157;37325:370;;;;:::o;51725:255::-;7101:12;:10;:12::i;:::-;7090:23;;:7;:5;:7::i;:::-;:23;;;7082:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;51824:10:::1;;51809:12;:25;51801:60;;;;;;;;;;;;:::i;:::-;;;;;;;;;51896:13;;51880:12;:29;;51872:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;51960:12;51947:10;:25;;;;51725:255:::0;:::o;34795:326::-;34868:13;34899:16;34907:7;34899;:16::i;:::-;34894:59;;34924:29;;;;;;;;;;;;;;34894:59;34966:21;34990:10;:8;:10::i;:::-;34966:34;;35043:1;35024:7;35018:21;:26;;:95;;;;;;;;;;;;;;;;;35071:7;35080:18;:7;:16;:18::i;:::-;35054:54;;;;;;;;;:::i;:::-;;;;;;;;;;;;;35018:95;35011:102;;;34795:326;;;:::o;52769:86::-;7101:12;:10;:12::i;:::-;7090:23;;:7;:5;:7::i;:::-;:23;;;7082:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;52843:4:::1;52825:15;;:22;;;;;;;;;;;;;;;;;;52769:86::o:0;36597:164::-;36694:4;36718:18;:25;36737:5;36718:25;;;;;;;;;;;;;;;:35;36744:8;36718:35;;;;;;;;;;;;;;;;;;;;;;;;;36711:42;;36597:164;;;;:::o;7779:201::-;7101:12;:10;:12::i;:::-;7090:23;;:7;:5;:7::i;:::-;:23;;;7082:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;7888:1:::1;7868:22;;:8;:22;;;;7860:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;7944:28;7963:8;7944:18;:28::i;:::-;7779:201:::0;:::o;50589:27::-;;;;;;;;;;;;;:::o;9571:326::-;9631:4;9888:1;9866:7;:19;;;:23;9859:30;;9571:326;;;:::o;19677:157::-;19762:4;19801:25;19786:40;;;:11;:40;;;;19779:47;;19677:157;;;:::o;37950:174::-;38007:4;38050:7;38031:15;:13;:15::i;:::-;:26;;:53;;;;;38071:13;;38061:7;:23;38031:53;:85;;;;;38089:11;:20;38101:7;38089:20;;;;;;;;;;;:27;;;;;;;;;;;;38088:28;38031:85;38024:92;;37950:174;;;:::o;5594:98::-;5647:7;5674:10;5667:17;;5594:98;:::o;47172:196::-;47314:2;47287:15;:24;47303:7;47287:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;47352:7;47348:2;47332:28;;47341:5;47332:28;;;;;;;;;;;;47172:196;;;:::o;54336:101::-;54401:7;54428:1;54421:8;;54336:101;:::o;42120:2130::-;42235:35;42273:21;42286:7;42273:12;:21::i;:::-;42235:59;;42333:4;42311:26;;:13;:18;;;:26;;;42307:67;;42346:28;;;;;;;;;;;;;;42307:67;42387:22;42429:4;42413:20;;:12;:10;:12::i;:::-;:20;;;:73;;;;42450:36;42467:4;42473:12;:10;:12::i;:::-;42450:16;:36::i;:::-;42413:73;:126;;;;42527:12;:10;:12::i;:::-;42503:36;;:20;42515:7;42503:11;:20::i;:::-;:36;;;42413:126;42387:153;;42558:17;42553:66;;42584:35;;;;;;;;;;;;;;42553:66;42648:1;42634:16;;:2;:16;;;42630:52;;;42659:23;;;;;;;;;;;;;;42630:52;42695:43;42717:4;42723:2;42727:7;42736:1;42695:21;:43::i;:::-;42803:35;42820:1;42824:7;42833:4;42803:8;:35::i;:::-;43164:1;43134:12;:18;43147:4;43134:18;;;;;;;;;;;;;;;:26;;;:31;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43208:1;43180:12;:16;43193:2;43180:16;;;;;;;;;;;;;;;:24;;;:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43226:31;43260:11;:20;43272:7;43260:20;;;;;;;;;;;43226:54;;43311:2;43295:8;:13;;;:18;;;;;;;;;;;;;;;;;;43361:15;43328:8;:23;;;:49;;;;;;;;;;;;;;;;;;43629:19;43661:1;43651:7;:11;43629:33;;43677:31;43711:11;:24;43723:11;43711:24;;;;;;;;;;;43677:58;;43779:1;43754:27;;:8;:13;;;;;;;;;;;;:27;;;43750:384;;;43964:13;;43949:11;:28;43945:174;;44018:4;44002:8;:13;;;:20;;;;;;;;;;;;;;;;;;44071:13;:28;;;44045:8;:23;;;:54;;;;;;;;;;;;;;;;;;43945:174;43750:384;42120:2130;;;44181:7;44177:2;44162:27;;44171:4;44162:27;;;;;;;;;;;;44200:42;44221:4;44227:2;44231:7;44240:1;44200:20;:42::i;:::-;42120:2130;;;;;:::o;38208:104::-;38277:27;38287:2;38291:8;38277:27;;;;;;;;;;;;:9;:27::i;:::-;38208:104;;:::o;33086:1111::-;33148:21;;:::i;:::-;33182:12;33197:7;33182:22;;33265:4;33246:15;:13;:15::i;:::-;:23;33242:888;;33282:13;;33275:4;:20;33271:859;;;33316:31;33350:11;:17;33362:4;33350:17;;;;;;;;;;;33316:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33391:9;:16;;;33386:729;;33462:1;33436:28;;:9;:14;;;:28;;;33432:101;;33500:9;33493:16;;;;;;33432:101;33835:261;33842:4;33835:261;;;33875:6;;;;;;;;33920:11;:17;33932:4;33920:17;;;;;;;;;;;33908:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33994:1;33968:28;;:9;:14;;;:28;;;33964:109;;34036:9;34029:16;;;;;;33964:109;33835:261;;;33386:729;33271:859;;33242:888;34158:31;;;;;;;;;;;;;;33086:1111;;;;:::o;8140:191::-;8214:16;8233:6;;;;;;;;;;;8214:25;;8259:8;8250:6;;:17;;;;;;;;;;;;;;;;;;8314:8;8283:40;;8304:8;8283:40;;;;;;;;;;;;8140:191;;:::o;51330:120::-;51437:5;51409:16;:24;51426:6;51409:24;;;;;;;;;;;;;;;;:33;;;;;;;:::i;:::-;;;;;;;;51330:120;;:::o;47860:667::-;48023:4;48060:2;48044:36;;;48081:12;:10;:12::i;:::-;48095:4;48101:7;48110:5;48044:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;48040:480;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48295:1;48278:6;:13;:18;48274:235;;;48324:40;;;;;;;;;;;;;;48274:235;48467:6;48461:13;48452:6;48448:2;48444:15;48437:38;48040:480;48173:45;;;48163:55;;;:6;:55;;;;48156:62;;;47860:667;;;;;;:::o;51481:109::-;51541:13;51574:8;51567:15;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51481:109;:::o;3156:723::-;3212:13;3442:1;3433:5;:10;3429:53;;;3460:10;;;;;;;;;;;;;;;;;;;;;3429:53;3492:12;3507:5;3492:20;;3523:14;3548:78;3563:1;3555:4;:9;3548:78;;3581:8;;;;;:::i;:::-;;;;3612:2;3604:10;;;;;:::i;:::-;;;3548:78;;;3636:19;3668:6;3658:17;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3636:39;;3686:154;3702:1;3693:5;:10;3686:154;;3730:1;3720:11;;;;;:::i;:::-;;;3797:2;3789:5;:10;;;;:::i;:::-;3776:2;:24;;;;:::i;:::-;3763:39;;3746:6;3753;3746:14;;;;;;;;;;;;;;;;;;;:56;;;;;;;;;;;3826:2;3817:11;;;;;:::i;:::-;;;3686:154;;;3864:6;3850:21;;;;;3156:723;;;;:::o;49175:159::-;;;;;:::o;49993:158::-;;;;;:::o;38685:1749::-;38808:20;38831:13;;38808:36;;38873:1;38859:16;;:2;:16;;;38855:48;;;38884:19;;;;;;;;;;;;;;38855:48;38930:1;38918:8;:13;38914:44;;;38940:18;;;;;;;;;;;;;;38914:44;38971:61;39001:1;39005:2;39009:12;39023:8;38971:21;:61::i;:::-;39344:8;39309:12;:16;39322:2;39309:16;;;;;;;;;;;;;;;:24;;;:44;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39408:8;39368:12;:16;39381:2;39368:16;;;;;;;;;;;;;;;:29;;;:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39467:2;39434:11;:25;39446:12;39434:25;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;39534:15;39484:11;:25;39496:12;39484:25;;;;;;;;;;;:40;;;:66;;;;;;;;;;;;;;;;;;39567:20;39590:12;39567:35;;39617:11;39646:8;39631:12;:23;39617:37;;39675:15;:2;:13;;;:15::i;:::-;39671:631;;;39711:313;39767:12;39763:2;39742:38;;39759:1;39742:38;;;;;;;;;;;;39808:69;39847:1;39851:2;39855:14;;;;;;39871:5;39808:30;:69::i;:::-;39803:174;;39913:40;;;;;;;;;;;;;;39803:174;40019:3;40004:12;:18;39711:313;;40105:12;40088:13;;:29;40084:43;;40119:8;;;40084:43;39671:631;;;40168:119;40224:14;;;;;;40220:2;40199:40;;40216:1;40199:40;;;;;;;;;;;;40282:3;40267:12;:18;40168:119;;39671:631;40332:12;40316:13;:28;;;;38685:1749;;40366:60;40395:1;40399:2;40403:12;40417:8;40366:20;:60::i;:::-;38685:1749;;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:343:1:-;84:5;109:65;125:48;166:6;125:48;:::i;:::-;109:65;:::i;:::-;100:74;;197:6;190:5;183:21;235:4;228:5;224:16;273:3;264:6;259:3;255:16;252:25;249:2;;;290:1;287;280:12;249:2;303:41;337:6;332:3;327;303:41;:::i;:::-;90:260;;;;;;:::o;356:345::-;434:5;459:66;475:49;517:6;475:49;:::i;:::-;459:66;:::i;:::-;450:75;;548:6;541:5;534:21;586:4;579:5;575:16;624:3;615:6;610:3;606:16;603:25;600:2;;;641:1;638;631:12;600:2;654:41;688:6;683:3;678;654:41;:::i;:::-;440:261;;;;;;:::o;707:139::-;753:5;791:6;778:20;769:29;;807:33;834:5;807:33;:::i;:::-;759:87;;;;:::o;852:133::-;895:5;933:6;920:20;911:29;;949:30;973:5;949:30;:::i;:::-;901:84;;;;:::o;991:137::-;1036:5;1074:6;1061:20;1052:29;;1090:32;1116:5;1090:32;:::i;:::-;1042:86;;;;:::o;1134:141::-;1190:5;1221:6;1215:13;1206:22;;1237:32;1263:5;1237:32;:::i;:::-;1196:79;;;;:::o;1294:271::-;1349:5;1398:3;1391:4;1383:6;1379:17;1375:27;1365:2;;1416:1;1413;1406:12;1365:2;1456:6;1443:20;1481:78;1555:3;1547:6;1540:4;1532:6;1528:17;1481:78;:::i;:::-;1472:87;;1355:210;;;;;:::o;1585:273::-;1641:5;1690:3;1683:4;1675:6;1671:17;1667:27;1657:2;;1708:1;1705;1698:12;1657:2;1748:6;1735:20;1773:79;1848:3;1840:6;1833:4;1825:6;1821:17;1773:79;:::i;:::-;1764:88;;1647:211;;;;;:::o;1864:139::-;1910:5;1948:6;1935:20;1926:29;;1964:33;1991:5;1964:33;:::i;:::-;1916:87;;;;:::o;2009:262::-;2068:6;2117:2;2105:9;2096:7;2092:23;2088:32;2085:2;;;2133:1;2130;2123:12;2085:2;2176:1;2201:53;2246:7;2237:6;2226:9;2222:22;2201:53;:::i;:::-;2191:63;;2147:117;2075:196;;;;:::o;2277:407::-;2345:6;2353;2402:2;2390:9;2381:7;2377:23;2373:32;2370:2;;;2418:1;2415;2408:12;2370:2;2461:1;2486:53;2531:7;2522:6;2511:9;2507:22;2486:53;:::i;:::-;2476:63;;2432:117;2588:2;2614:53;2659:7;2650:6;2639:9;2635:22;2614:53;:::i;:::-;2604:63;;2559:118;2360:324;;;;;:::o;2690:552::-;2767:6;2775;2783;2832:2;2820:9;2811:7;2807:23;2803:32;2800:2;;;2848:1;2845;2838:12;2800:2;2891:1;2916:53;2961:7;2952:6;2941:9;2937:22;2916:53;:::i;:::-;2906:63;;2862:117;3018:2;3044:53;3089:7;3080:6;3069:9;3065:22;3044:53;:::i;:::-;3034:63;;2989:118;3146:2;3172:53;3217:7;3208:6;3197:9;3193:22;3172:53;:::i;:::-;3162:63;;3117:118;2790:452;;;;;:::o;3248:809::-;3343:6;3351;3359;3367;3416:3;3404:9;3395:7;3391:23;3387:33;3384:2;;;3433:1;3430;3423:12;3384:2;3476:1;3501:53;3546:7;3537:6;3526:9;3522:22;3501:53;:::i;:::-;3491:63;;3447:117;3603:2;3629:53;3674:7;3665:6;3654:9;3650:22;3629:53;:::i;:::-;3619:63;;3574:118;3731:2;3757:53;3802:7;3793:6;3782:9;3778:22;3757:53;:::i;:::-;3747:63;;3702:118;3887:2;3876:9;3872:18;3859:32;3918:18;3910:6;3907:30;3904:2;;;3950:1;3947;3940:12;3904:2;3978:62;4032:7;4023:6;4012:9;4008:22;3978:62;:::i;:::-;3968:72;;3830:220;3374:683;;;;;;;:::o;4063:401::-;4128:6;4136;4185:2;4173:9;4164:7;4160:23;4156:32;4153:2;;;4201:1;4198;4191:12;4153:2;4244:1;4269:53;4314:7;4305:6;4294:9;4290:22;4269:53;:::i;:::-;4259:63;;4215:117;4371:2;4397:50;4439:7;4430:6;4419:9;4415:22;4397:50;:::i;:::-;4387:60;;4342:115;4143:321;;;;;:::o;4470:407::-;4538:6;4546;4595:2;4583:9;4574:7;4570:23;4566:32;4563:2;;;4611:1;4608;4601:12;4563:2;4654:1;4679:53;4724:7;4715:6;4704:9;4700:22;4679:53;:::i;:::-;4669:63;;4625:117;4781:2;4807:53;4852:7;4843:6;4832:9;4828:22;4807:53;:::i;:::-;4797:63;;4752:118;4553:324;;;;;:::o;4883:256::-;4939:6;4988:2;4976:9;4967:7;4963:23;4959:32;4956:2;;;5004:1;5001;4994:12;4956:2;5047:1;5072:50;5114:7;5105:6;5094:9;5090:22;5072:50;:::i;:::-;5062:60;;5018:114;4946:193;;;;:::o;5145:260::-;5203:6;5252:2;5240:9;5231:7;5227:23;5223:32;5220:2;;;5268:1;5265;5258:12;5220:2;5311:1;5336:52;5380:7;5371:6;5360:9;5356:22;5336:52;:::i;:::-;5326:62;;5282:116;5210:195;;;;:::o;5411:282::-;5480:6;5529:2;5517:9;5508:7;5504:23;5500:32;5497:2;;;5545:1;5542;5535:12;5497:2;5588:1;5613:63;5668:7;5659:6;5648:9;5644:22;5613:63;:::i;:::-;5603:73;;5559:127;5487:206;;;;:::o;5699:375::-;5768:6;5817:2;5805:9;5796:7;5792:23;5788:32;5785:2;;;5833:1;5830;5823:12;5785:2;5904:1;5893:9;5889:17;5876:31;5934:18;5926:6;5923:30;5920:2;;;5966:1;5963;5956:12;5920:2;5994:63;6049:7;6040:6;6029:9;6025:22;5994:63;:::i;:::-;5984:73;;5847:220;5775:299;;;;:::o;6080:262::-;6139:6;6188:2;6176:9;6167:7;6163:23;6159:32;6156:2;;;6204:1;6201;6194:12;6156:2;6247:1;6272:53;6317:7;6308:6;6297:9;6293:22;6272:53;:::i;:::-;6262:63;;6218:117;6146:196;;;;:::o;6348:118::-;6435:24;6453:5;6435:24;:::i;:::-;6430:3;6423:37;6413:53;;:::o;6472:109::-;6553:21;6568:5;6553:21;:::i;:::-;6548:3;6541:34;6531:50;;:::o;6587:360::-;6673:3;6701:38;6733:5;6701:38;:::i;:::-;6755:70;6818:6;6813:3;6755:70;:::i;:::-;6748:77;;6834:52;6879:6;6874:3;6867:4;6860:5;6856:16;6834:52;:::i;:::-;6911:29;6933:6;6911:29;:::i;:::-;6906:3;6902:39;6895:46;;6677:270;;;;;:::o;6953:364::-;7041:3;7069:39;7102:5;7069:39;:::i;:::-;7124:71;7188:6;7183:3;7124:71;:::i;:::-;7117:78;;7204:52;7249:6;7244:3;7237:4;7230:5;7226:16;7204:52;:::i;:::-;7281:29;7303:6;7281:29;:::i;:::-;7276:3;7272:39;7265:46;;7045:272;;;;;:::o;7323:377::-;7429:3;7457:39;7490:5;7457:39;:::i;:::-;7512:89;7594:6;7589:3;7512:89;:::i;:::-;7505:96;;7610:52;7655:6;7650:3;7643:4;7636:5;7632:16;7610:52;:::i;:::-;7687:6;7682:3;7678:16;7671:23;;7433:267;;;;;:::o;7706:366::-;7848:3;7869:67;7933:2;7928:3;7869:67;:::i;:::-;7862:74;;7945:93;8034:3;7945:93;:::i;:::-;8063:2;8058:3;8054:12;8047:19;;7852:220;;;:::o;8078:366::-;8220:3;8241:67;8305:2;8300:3;8241:67;:::i;:::-;8234:74;;8317:93;8406:3;8317:93;:::i;:::-;8435:2;8430:3;8426:12;8419:19;;8224:220;;;:::o;8450:400::-;8610:3;8631:84;8713:1;8708:3;8631:84;:::i;:::-;8624:91;;8724:93;8813:3;8724:93;:::i;:::-;8842:1;8837:3;8833:11;8826:18;;8614:236;;;:::o;8856:366::-;8998:3;9019:67;9083:2;9078:3;9019:67;:::i;:::-;9012:74;;9095:93;9184:3;9095:93;:::i;:::-;9213:2;9208:3;9204:12;9197:19;;9002:220;;;:::o;9228:366::-;9370:3;9391:67;9455:2;9450:3;9391:67;:::i;:::-;9384:74;;9467:93;9556:3;9467:93;:::i;:::-;9585:2;9580:3;9576:12;9569:19;;9374:220;;;:::o;9600:366::-;9742:3;9763:67;9827:2;9822:3;9763:67;:::i;:::-;9756:74;;9839:93;9928:3;9839:93;:::i;:::-;9957:2;9952:3;9948:12;9941:19;;9746:220;;;:::o;9972:366::-;10114:3;10135:67;10199:2;10194:3;10135:67;:::i;:::-;10128:74;;10211:93;10300:3;10211:93;:::i;:::-;10329:2;10324:3;10320:12;10313:19;;10118:220;;;:::o;10344:398::-;10503:3;10524:83;10605:1;10600:3;10524:83;:::i;:::-;10517:90;;10616:93;10705:3;10616:93;:::i;:::-;10734:1;10729:3;10725:11;10718:18;;10507:235;;;:::o;10748:366::-;10890:3;10911:67;10975:2;10970:3;10911:67;:::i;:::-;10904:74;;10987:93;11076:3;10987:93;:::i;:::-;11105:2;11100:3;11096:12;11089:19;;10894:220;;;:::o;11120:366::-;11262:3;11283:67;11347:2;11342:3;11283:67;:::i;:::-;11276:74;;11359:93;11448:3;11359:93;:::i;:::-;11477:2;11472:3;11468:12;11461:19;;11266:220;;;:::o;11492:366::-;11634:3;11655:67;11719:2;11714:3;11655:67;:::i;:::-;11648:74;;11731:93;11820:3;11731:93;:::i;:::-;11849:2;11844:3;11840:12;11833:19;;11638:220;;;:::o;11864:118::-;11951:24;11969:5;11951:24;:::i;:::-;11946:3;11939:37;11929:53;;:::o;11988:701::-;12269:3;12291:95;12382:3;12373:6;12291:95;:::i;:::-;12284:102;;12403:95;12494:3;12485:6;12403:95;:::i;:::-;12396:102;;12515:148;12659:3;12515:148;:::i;:::-;12508:155;;12680:3;12673:10;;12273:416;;;;;:::o;12695:379::-;12879:3;12901:147;13044:3;12901:147;:::i;:::-;12894:154;;13065:3;13058:10;;12883:191;;;:::o;13080:222::-;13173:4;13211:2;13200:9;13196:18;13188:26;;13224:71;13292:1;13281:9;13277:17;13268:6;13224:71;:::i;:::-;13178:124;;;;:::o;13308:640::-;13503:4;13541:3;13530:9;13526:19;13518:27;;13555:71;13623:1;13612:9;13608:17;13599:6;13555:71;:::i;:::-;13636:72;13704:2;13693:9;13689:18;13680:6;13636:72;:::i;:::-;13718;13786:2;13775:9;13771:18;13762:6;13718:72;:::i;:::-;13837:9;13831:4;13827:20;13822:2;13811:9;13807:18;13800:48;13865:76;13936:4;13927:6;13865:76;:::i;:::-;13857:84;;13508:440;;;;;;;:::o;13954:210::-;14041:4;14079:2;14068:9;14064:18;14056:26;;14092:65;14154:1;14143:9;14139:17;14130:6;14092:65;:::i;:::-;14046:118;;;;:::o;14170:313::-;14283:4;14321:2;14310:9;14306:18;14298:26;;14370:9;14364:4;14360:20;14356:1;14345:9;14341:17;14334:47;14398:78;14471:4;14462:6;14398:78;:::i;:::-;14390:86;;14288:195;;;;:::o;14489:419::-;14655:4;14693:2;14682:9;14678:18;14670:26;;14742:9;14736:4;14732:20;14728:1;14717:9;14713:17;14706:47;14770:131;14896:4;14770:131;:::i;:::-;14762:139;;14660:248;;;:::o;14914:419::-;15080:4;15118:2;15107:9;15103:18;15095:26;;15167:9;15161:4;15157:20;15153:1;15142:9;15138:17;15131:47;15195:131;15321:4;15195:131;:::i;:::-;15187:139;;15085:248;;;:::o;15339:419::-;15505:4;15543:2;15532:9;15528:18;15520:26;;15592:9;15586:4;15582:20;15578:1;15567:9;15563:17;15556:47;15620:131;15746:4;15620:131;:::i;:::-;15612:139;;15510:248;;;:::o;15764:419::-;15930:4;15968:2;15957:9;15953:18;15945:26;;16017:9;16011:4;16007:20;16003:1;15992:9;15988:17;15981:47;16045:131;16171:4;16045:131;:::i;:::-;16037:139;;15935:248;;;:::o;16189:419::-;16355:4;16393:2;16382:9;16378:18;16370:26;;16442:9;16436:4;16432:20;16428:1;16417:9;16413:17;16406:47;16470:131;16596:4;16470:131;:::i;:::-;16462:139;;16360:248;;;:::o;16614:419::-;16780:4;16818:2;16807:9;16803:18;16795:26;;16867:9;16861:4;16857:20;16853:1;16842:9;16838:17;16831:47;16895:131;17021:4;16895:131;:::i;:::-;16887:139;;16785:248;;;:::o;17039:419::-;17205:4;17243:2;17232:9;17228:18;17220:26;;17292:9;17286:4;17282:20;17278:1;17267:9;17263:17;17256:47;17320:131;17446:4;17320:131;:::i;:::-;17312:139;;17210:248;;;:::o;17464:419::-;17630:4;17668:2;17657:9;17653:18;17645:26;;17717:9;17711:4;17707:20;17703:1;17692:9;17688:17;17681:47;17745:131;17871:4;17745:131;:::i;:::-;17737:139;;17635:248;;;:::o;17889:419::-;18055:4;18093:2;18082:9;18078:18;18070:26;;18142:9;18136:4;18132:20;18128:1;18117:9;18113:17;18106:47;18170:131;18296:4;18170:131;:::i;:::-;18162:139;;18060:248;;;:::o;18314:222::-;18407:4;18445:2;18434:9;18430:18;18422:26;;18458:71;18526:1;18515:9;18511:17;18502:6;18458:71;:::i;:::-;18412:124;;;;:::o;18542:129::-;18576:6;18603:20;;:::i;:::-;18593:30;;18632:33;18660:4;18652:6;18632:33;:::i;:::-;18583:88;;;:::o;18677:75::-;18710:6;18743:2;18737:9;18727:19;;18717:35;:::o;18758:307::-;18819:4;18909:18;18901:6;18898:30;18895:2;;;18931:18;;:::i;:::-;18895:2;18969:29;18991:6;18969:29;:::i;:::-;18961:37;;19053:4;19047;19043:15;19035:23;;18824:241;;;:::o;19071:308::-;19133:4;19223:18;19215:6;19212:30;19209:2;;;19245:18;;:::i;:::-;19209:2;19283:29;19305:6;19283:29;:::i;:::-;19275:37;;19367:4;19361;19357:15;19349:23;;19138:241;;;:::o;19385:98::-;19436:6;19470:5;19464:12;19454:22;;19443:40;;;:::o;19489:99::-;19541:6;19575:5;19569:12;19559:22;;19548:40;;;:::o;19594:168::-;19677:11;19711:6;19706:3;19699:19;19751:4;19746:3;19742:14;19727:29;;19689:73;;;;:::o;19768:147::-;19869:11;19906:3;19891:18;;19881:34;;;;:::o;19921:169::-;20005:11;20039:6;20034:3;20027:19;20079:4;20074:3;20070:14;20055:29;;20017:73;;;;:::o;20096:148::-;20198:11;20235:3;20220:18;;20210:34;;;;:::o;20250:305::-;20290:3;20309:20;20327:1;20309:20;:::i;:::-;20304:25;;20343:20;20361:1;20343:20;:::i;:::-;20338:25;;20497:1;20429:66;20425:74;20422:1;20419:81;20416:2;;;20503:18;;:::i;:::-;20416:2;20547:1;20544;20540:9;20533:16;;20294:261;;;;:::o;20561:185::-;20601:1;20618:20;20636:1;20618:20;:::i;:::-;20613:25;;20652:20;20670:1;20652:20;:::i;:::-;20647:25;;20691:1;20681:2;;20696:18;;:::i;:::-;20681:2;20738:1;20735;20731:9;20726:14;;20603:143;;;;:::o;20752:348::-;20792:7;20815:20;20833:1;20815:20;:::i;:::-;20810:25;;20849:20;20867:1;20849:20;:::i;:::-;20844:25;;21037:1;20969:66;20965:74;20962:1;20959:81;20954:1;20947:9;20940:17;20936:105;20933:2;;;21044:18;;:::i;:::-;20933:2;21092:1;21089;21085:9;21074:20;;20800:300;;;;:::o;21106:191::-;21146:4;21166:20;21184:1;21166:20;:::i;:::-;21161:25;;21200:20;21218:1;21200:20;:::i;:::-;21195:25;;21239:1;21236;21233:8;21230:2;;;21244:18;;:::i;:::-;21230:2;21289:1;21286;21282:9;21274:17;;21151:146;;;;:::o;21303:96::-;21340:7;21369:24;21387:5;21369:24;:::i;:::-;21358:35;;21348:51;;;:::o;21405:90::-;21439:7;21482:5;21475:13;21468:21;21457:32;;21447:48;;;:::o;21501:149::-;21537:7;21577:66;21570:5;21566:78;21555:89;;21545:105;;;:::o;21656:126::-;21693:7;21733:42;21726:5;21722:54;21711:65;;21701:81;;;:::o;21788:77::-;21825:7;21854:5;21843:16;;21833:32;;;:::o;21871:154::-;21955:6;21950:3;21945;21932:30;22017:1;22008:6;22003:3;21999:16;21992:27;21922:103;;;:::o;22031:307::-;22099:1;22109:113;22123:6;22120:1;22117:13;22109:113;;;22208:1;22203:3;22199:11;22193:18;22189:1;22184:3;22180:11;22173:39;22145:2;22142:1;22138:10;22133:15;;22109:113;;;22240:6;22237:1;22234:13;22231:2;;;22320:1;22311:6;22306:3;22302:16;22295:27;22231:2;22080:258;;;;:::o;22344:320::-;22388:6;22425:1;22419:4;22415:12;22405:22;;22472:1;22466:4;22462:12;22493:18;22483:2;;22549:4;22541:6;22537:17;22527:27;;22483:2;22611;22603:6;22600:14;22580:18;22577:38;22574:2;;;22630:18;;:::i;:::-;22574:2;22395:269;;;;:::o;22670:281::-;22753:27;22775:4;22753:27;:::i;:::-;22745:6;22741:40;22883:6;22871:10;22868:22;22847:18;22835:10;22832:34;22829:62;22826:2;;;22894:18;;:::i;:::-;22826:2;22934:10;22930:2;22923:22;22713:238;;;:::o;22957:233::-;22996:3;23019:24;23037:5;23019:24;:::i;:::-;23010:33;;23065:66;23058:5;23055:77;23052:2;;;23135:18;;:::i;:::-;23052:2;23182:1;23175:5;23171:13;23164:20;;23000:190;;;:::o;23196:176::-;23228:1;23245:20;23263:1;23245:20;:::i;:::-;23240:25;;23279:20;23297:1;23279:20;:::i;:::-;23274:25;;23318:1;23308:2;;23323:18;;:::i;:::-;23308:2;23364:1;23361;23357:9;23352:14;;23230:142;;;;:::o;23378:180::-;23426:77;23423:1;23416:88;23523:4;23520:1;23513:15;23547:4;23544:1;23537:15;23564:180;23612:77;23609:1;23602:88;23709:4;23706:1;23699:15;23733:4;23730:1;23723:15;23750:180;23798:77;23795:1;23788:88;23895:4;23892:1;23885:15;23919:4;23916:1;23909:15;23936:180;23984:77;23981:1;23974:88;24081:4;24078:1;24071:15;24105:4;24102:1;24095:15;24122:102;24163:6;24214:2;24210:7;24205:2;24198:5;24194:14;24190:28;24180:38;;24170:54;;;:::o;24230:225::-;24370:34;24366:1;24358:6;24354:14;24347:58;24439:8;24434:2;24426:6;24422:15;24415:33;24336:119;:::o;24461:170::-;24601:22;24597:1;24589:6;24585:14;24578:46;24567:64;:::o;24637:155::-;24777:7;24773:1;24765:6;24761:14;24754:31;24743:49;:::o;24798:182::-;24938:34;24934:1;24926:6;24922:14;24915:58;24904:76;:::o;24986:169::-;25126:21;25122:1;25114:6;25110:14;25103:45;25092:63;:::o;25161:172::-;25301:24;25297:1;25289:6;25285:14;25278:48;25267:66;:::o;25339:166::-;25479:18;25475:1;25467:6;25463:14;25456:42;25445:60;:::o;25511:114::-;25617:8;:::o;25631:170::-;25771:22;25767:1;25759:6;25755:14;25748:46;25737:64;:::o;25807:164::-;25947:16;25943:1;25935:6;25931:14;25924:40;25913:58;:::o;25977:169::-;26117:21;26113:1;26105:6;26101:14;26094:45;26083:63;:::o;26152:122::-;26225:24;26243:5;26225:24;:::i;:::-;26218:5;26215:35;26205:2;;26264:1;26261;26254:12;26205:2;26195:79;:::o;26280:116::-;26350:21;26365:5;26350:21;:::i;:::-;26343:5;26340:32;26330:2;;26386:1;26383;26376:12;26330:2;26320:76;:::o;26402:120::-;26474:23;26491:5;26474:23;:::i;:::-;26467:5;26464:34;26454:2;;26512:1;26509;26502:12;26454:2;26444:78;:::o;26528:122::-;26601:24;26619:5;26601:24;:::i;:::-;26594:5;26591:35;26581:2;;26640:1;26637;26630:12;26581:2;26571:79;:::o

Swarm Source

ipfs://a68d9ee891ddb5484385d909c13f03fc6b7bddf37295b6b29d33e4e298d4b6f4
Loading...
Loading
Loading...
Loading
[ Download: CSV Export  ]
[ Download: CSV Export  ]

A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.