ETH Price: $3,354.09 (-0.83%)
Gas: 9 Gwei

Token

gtburgerswtf (gtburgerswtf)
 

Overview

Max Total Supply

9,999 gtburgerswtf

Holders

4,628

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 gtburgerswtf
0x71fea781d256626ebc1a5096de69ee4f2230ddac
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

ᵂᵉᵏᴹ ᵗᵒ ᴳᵀ ᴮᵘʳᴳᴱᴿ ᵏᴬⁿᴬᴬ ᵀᵃᵏ ᵁʳ ᴼᴿᴰʳᴿᴿ? ᴼᵖᴬⁿ ᵗʷᵃⁿᵗⁱ ᶠᵘʳ ˢⁱᵛᵉⁿ ᶠʳⁱ ˢⁱᴷᔆ ᶠⁱⱽᴱ‧ ¹⁰ᴷ ᔆᵐᵉᴸˡⁱ ᴮᵁʳᵍᴿᴿᴿʳʳ ⁰‧⁰⁰5Ξ

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
gtburgerswtf

Compiler Version
v0.8.14+commit.80d49f37

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-01
*/

// SPDX-License-Identifier: MIT
// File: @openzeppelin/contracts/security/ReentrancyGuard.sol


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

pragma solidity ^0.8.0;

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

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

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

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

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

        _;

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

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


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

pragma solidity ^0.8.0;

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.1;

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

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


// OpenZeppelin Contracts (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/gtburgers.sol



pragma solidity ^0.8.4;




contract gtburgerswtf 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("gtburgerswtf", "gtburgerswtf") {
        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;
    }

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

    /** PAYOUT **/

    address private constant payoutAddress1 =
        0x7edA885f3953105488Dc990767e1bc3d68938aCd;

    function withdraw() public onlyOwner nonReentrant {
        uint256 balance = address(this).balance;
        Address.sendValue(payable(payoutAddress1), balance / 1);
    }
}

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"}]

60806040523480156200001157600080fd5b50604051620044e7380380620044e7833981810160405281019062000037919062000510565b6040518060400160405280600c81526020017f67746275726765727377746600000000000000000000000000000000000000008152506040518060400160405280600c81526020017f67746275726765727377746600000000000000000000000000000000000000008152508160029080519060200190620000bb9291906200024b565b508060039080519060200190620000d49291906200024b565b50620000e56200017860201b60201c565b60008190555050506200010d620001016200017d60201b60201c565b6200018560201b60201c565b600160098190555086600a8190555085600b8190555084600c90805190602001906200013b9291906200024b565b5083600d8190555082600e8190555081600f60006101000a81548160ff021916908315150217905550806010819055505050505050505062000646565b600090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b828054620002599062000611565b90600052602060002090601f0160209004810192826200027d5760008555620002c9565b82601f106200029857805160ff1916838001178555620002c9565b82800160010185558215620002c9579182015b82811115620002c8578251825591602001919060010190620002ab565b5b509050620002d89190620002dc565b5090565b5b80821115620002f7576000816000905550600101620002dd565b5090565b6000604051905090565b600080fd5b600080fd5b6000819050919050565b62000324816200030f565b81146200033057600080fd5b50565b600081519050620003448162000319565b92915050565b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6200039f8262000354565b810181811067ffffffffffffffff82111715620003c157620003c062000365565b5b80604052505050565b6000620003d6620002fb565b9050620003e4828262000394565b919050565b600067ffffffffffffffff82111562000407576200040662000365565b5b620004128262000354565b9050602081019050919050565b60005b838110156200043f57808201518184015260208101905062000422565b838111156200044f576000848401525b50505050565b60006200046c6200046684620003e9565b620003ca565b9050828152602081018484840111156200048b576200048a6200034f565b5b620004988482856200041f565b509392505050565b600082601f830112620004b857620004b76200034a565b5b8151620004ca84826020860162000455565b91505092915050565b60008115159050919050565b620004ea81620004d3565b8114620004f657600080fd5b50565b6000815190506200050a81620004df565b92915050565b600080600080600080600060e0888a03121562000532576200053162000305565b5b6000620005428a828b0162000333565b9750506020620005558a828b0162000333565b965050604088015167ffffffffffffffff8111156200057957620005786200030a565b5b620005878a828b01620004a0565b95505060606200059a8a828b0162000333565b9450506080620005ad8a828b0162000333565b93505060a0620005c08a828b01620004f9565b92505060c0620005d38a828b0162000333565b91505092959891949750929550565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200062a57607f821691505b60208210810362000640576200063f620005e2565b5b50919050565b613e9180620006566000396000f3fe6080604052600436106102045760003560e01c8063715018a611610118578063a22cb465116100a0578063c87b56dd1161006f578063c87b56dd1461070a578063d111515d14610747578063e985e9c51461075e578063f2fde38b1461079b578063fdb4953a146107c457610204565b8063a22cb46514610666578063b0551ac41461068f578063b88d4fde146106b8578063c4e9374d146106e157610204565b80638d859f3e116100e75780638d859f3e146105a05780638da5cb5b146105cb57806391b7f5ed146105f657806395d89b411461061f578063a0712d681461064a57610204565b8063715018a61461050c57806376d02b7114610523578063841718a61461054e5780638b85e43d1461057757610204565b806332cb6b0c1161019b57806342842e0e1161016a57806342842e0e1461041757806355f804b314610440578063616cdb1e146104695780636352211e1461049257806370a08231146104cf57610204565b806332cb6b0c146103815780633ccfd60b146103ac5780634065b85f146103c3578063408cbf94146103ee57610204565b806309ef6527116101d757806309ef6527146102d757806310b0c0521461030257806318160ddd1461032d57806323b872dd1461035857610204565b806301ffc9a71461020957806306fdde0314610246578063081812fc14610271578063095ea7b3146102ae575b600080fd5b34801561021557600080fd5b50610230600480360381019061022b9190612ea2565b6107ef565b60405161023d9190612eea565b60405180910390f35b34801561025257600080fd5b5061025b6108d1565b6040516102689190612f9e565b60405180910390f35b34801561027d57600080fd5b5061029860048036038101906102939190612ff6565b610963565b6040516102a59190613064565b60405180910390f35b3480156102ba57600080fd5b506102d560048036038101906102d091906130ab565b6109df565b005b3480156102e357600080fd5b506102ec610ae3565b6040516102f991906130fa565b60405180910390f35b34801561030e57600080fd5b50610317610ae9565b60405161032491906130fa565b60405180910390f35b34801561033957600080fd5b50610342610aef565b60405161034f91906130fa565b60405180910390f35b34801561036457600080fd5b5061037f600480360381019061037a9190613115565b610b06565b005b34801561038d57600080fd5b50610396610b16565b6040516103a391906130fa565b60405180910390f35b3480156103b857600080fd5b506103c1610b1c565b005b3480156103cf57600080fd5b506103d8610c1f565b6040516103e591906130fa565b60405180910390f35b3480156103fa57600080fd5b50610415600480360381019061041091906130ab565b610c25565b005b34801561042357600080fd5b5061043e60048036038101906104399190613115565b610d54565b005b34801561044c57600080fd5b506104676004803603810190610462919061329d565b610d74565b005b34801561047557600080fd5b50610490600480360381019061048b9190612ff6565b610e5a565b005b34801561049e57600080fd5b506104b960048036038101906104b49190612ff6565b610ee0565b6040516104c69190613064565b60405180910390f35b3480156104db57600080fd5b506104f660048036038101906104f191906132e6565b610ef6565b60405161050391906130fa565b60405180910390f35b34801561051857600080fd5b50610521610fc5565b005b34801561052f57600080fd5b5061053861104d565b6040516105459190612eea565b60405180910390f35b34801561055a57600080fd5b506105756004803603810190610570919061333f565b611060565b005b34801561058357600080fd5b5061059e60048036038101906105999190612ff6565b6110f9565b005b3480156105ac57600080fd5b506105b561117f565b6040516105c291906130fa565b60405180910390f35b3480156105d757600080fd5b506105e0611185565b6040516105ed9190613064565b60405180910390f35b34801561060257600080fd5b5061061d60048036038101906106189190612ff6565b6111af565b005b34801561062b57600080fd5b50610634611235565b6040516106419190612f9e565b60405180910390f35b610664600480360381019061065f9190612ff6565b6112c7565b005b34801561067257600080fd5b5061068d6004803603810190610688919061336c565b6114de565b005b34801561069b57600080fd5b506106b660048036038101906106b19190612ff6565b611655565b005b3480156106c457600080fd5b506106df60048036038101906106da919061344d565b6116db565b005b3480156106ed57600080fd5b5061070860048036038101906107039190612ff6565b611753565b005b34801561071657600080fd5b50610731600480360381019061072c9190612ff6565b611862565b60405161073e9190612f9e565b60405180910390f35b34801561075357600080fd5b5061075c611900565b005b34801561076a57600080fd5b50610785600480360381019061078091906134d0565b611999565b6040516107929190612eea565b60405180910390f35b3480156107a757600080fd5b506107c260048036038101906107bd91906132e6565b611a2d565b005b3480156107d057600080fd5b506107d9611b24565b6040516107e69190612eea565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806108ba57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806108ca57506108c982611b37565b5b9050919050565b6060600280546108e09061353f565b80601f016020809104026020016040519081016040528092919081815260200182805461090c9061353f565b80156109595780601f1061092e57610100808354040283529160200191610959565b820191906000526020600020905b81548152906001019060200180831161093c57829003601f168201915b5050505050905090565b600061096e82611ba1565b6109a4576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006109ea82610ee0565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610a51576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610a70611bef565b73ffffffffffffffffffffffffffffffffffffffff1614610ad357610a9c81610a97611bef565b611999565b610ad2576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b610ade838383611bf7565b505050565b600e5481565b600d5481565b6000610af9611ca9565b6001546000540303905090565b610b11838383611cae565b505050565b600b5481565b610b24611bef565b73ffffffffffffffffffffffffffffffffffffffff16610b42611185565b73ffffffffffffffffffffffffffffffffffffffff1614610b98576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b8f906135bc565b60405180910390fd5b600260095403610bdd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bd490613628565b60405180910390fd5b60026009819055506000479050610c14737eda885f3953105488dc990767e1bc3d68938acd600183610c0f91906136a6565b612162565b506001600981905550565b60105481565b80600081118015610c385750600e548111155b610c77576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c6e90613723565b60405180910390fd5b600b5481600054610c889190613743565b1115610cc9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cc0906137e5565b60405180910390fd5b610cd1611bef565b73ffffffffffffffffffffffffffffffffffffffff16610cef611185565b73ffffffffffffffffffffffffffffffffffffffff1614610d45576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d3c906135bc565b60405180910390fd5b610d4f8383612256565b505050565b610d6f838383604051806020016040528060008152506116db565b505050565b610d7c611bef565b73ffffffffffffffffffffffffffffffffffffffff16610d9a611185565b73ffffffffffffffffffffffffffffffffffffffff1614610df0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610de7906135bc565b60405180910390fd5b601160009054906101000a900460ff1615610e40576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e3790613851565b60405180910390fd5b80600c9080519060200190610e56929190612d50565b5050565b610e62611bef565b73ffffffffffffffffffffffffffffffffffffffff16610e80611185565b73ffffffffffffffffffffffffffffffffffffffff1614610ed6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ecd906135bc565b60405180910390fd5b80600e8190555050565b6000610eeb82612274565b600001519050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610f5d576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b610fcd611bef565b73ffffffffffffffffffffffffffffffffffffffff16610feb611185565b73ffffffffffffffffffffffffffffffffffffffff1614611041576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611038906135bc565b60405180910390fd5b61104b60006124ff565b565b600f60009054906101000a900460ff1681565b611068611bef565b73ffffffffffffffffffffffffffffffffffffffff16611086611185565b73ffffffffffffffffffffffffffffffffffffffff16146110dc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110d3906135bc565b60405180910390fd5b80600f60006101000a81548160ff02191690831515021790555050565b611101611bef565b73ffffffffffffffffffffffffffffffffffffffff1661111f611185565b73ffffffffffffffffffffffffffffffffffffffff1614611175576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161116c906135bc565b60405180910390fd5b8060108190555050565b600a5481565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6111b7611bef565b73ffffffffffffffffffffffffffffffffffffffff166111d5611185565b73ffffffffffffffffffffffffffffffffffffffff161461122b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611222906135bc565b60405180910390fd5b80600a8190555050565b6060600380546112449061353f565b80601f01602080910402602001604051908101604052809291908181526020018280546112709061353f565b80156112bd5780601f10611292576101008083540402835291602001916112bd565b820191906000526020600020905b8154815290600101906020018083116112a057829003601f168201915b5050505050905090565b806000811180156112da5750600e548111155b611319576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161131090613723565b60405180910390fd5b600b548160005461132a9190613743565b111561136b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611362906137e5565b60405180910390fd5b600f60009054906101000a900460ff166113ba576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113b1906138bd565b60405180910390fd5b600082600a546113ca91906138dd565b9050601054600054101561148c576000601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054600d546114279190613937565b9050600081111561148a5780841061146357600a548161144791906138dd565b826114529190613937565b915061145e33826125c5565b611489565b600a548461147191906138dd565b8261147c9190613937565b915061148833856125c5565b5b5b505b803410156114cf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114c6906139b7565b60405180910390fd5b6114d93384612256565b505050565b6114e6611bef565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361154a576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060076000611557611bef565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611604611bef565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516116499190612eea565b60405180910390a35050565b61165d611bef565b73ffffffffffffffffffffffffffffffffffffffff1661167b611185565b73ffffffffffffffffffffffffffffffffffffffff16146116d1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116c8906135bc565b60405180910390fd5b80600d8190555050565b6116e6848484611cae565b6117058373ffffffffffffffffffffffffffffffffffffffff1661261f565b1561174d5761171684848484612642565b61174c576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b61175b611bef565b73ffffffffffffffffffffffffffffffffffffffff16611779611185565b73ffffffffffffffffffffffffffffffffffffffff16146117cf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117c6906135bc565b60405180910390fd5b600b548110611813576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161180a90613a23565b60405180910390fd5b600054811015611858576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161184f90613a23565b60405180910390fd5b80600b8190555050565b606061186d82611ba1565b6118a3576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60006118ad612792565b905060008151036118cd57604051806020016040528060008152506118f8565b806118d784612824565b6040516020016118e8929190613acb565b6040516020818303038152906040525b915050919050565b611908611bef565b73ffffffffffffffffffffffffffffffffffffffff16611926611185565b73ffffffffffffffffffffffffffffffffffffffff161461197c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611973906135bc565b60405180910390fd5b6001601160006101000a81548160ff021916908315150217905550565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611a35611bef565b73ffffffffffffffffffffffffffffffffffffffff16611a53611185565b73ffffffffffffffffffffffffffffffffffffffff1614611aa9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611aa0906135bc565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611b18576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b0f90613b6c565b60405180910390fd5b611b21816124ff565b50565b601160009054906101000a900460ff1681565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600081611bac611ca9565b11158015611bbb575060005482105b8015611be8575060046000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b600033905090565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600090565b6000611cb982612274565b90508373ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614611d24576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff16611d45611bef565b73ffffffffffffffffffffffffffffffffffffffff161480611d745750611d7385611d6e611bef565b611999565b5b80611db95750611d82611bef565b73ffffffffffffffffffffffffffffffffffffffff16611da184610963565b73ffffffffffffffffffffffffffffffffffffffff16145b905080611df2576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603611e58576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611e658585856001612984565b611e7160008487611bf7565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600460008581526020019081526020016000209050848160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550428160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060006001850190506000600460008381526020019081526020016000209050600073ffffffffffffffffffffffffffffffffffffffff168160000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16036120f05760005482146120ef57878160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555084602001518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b505050828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461215b858585600161298a565b5050505050565b804710156121a5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161219c90613bd8565b60405180910390fd5b60008273ffffffffffffffffffffffffffffffffffffffff16826040516121cb90613c29565b60006040518083038185875af1925050503d8060008114612208576040519150601f19603f3d011682016040523d82523d6000602084013e61220d565b606091505b5050905080612251576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161224890613cb0565b60405180910390fd5b505050565b612270828260405180602001604052806000815250612990565b5050565b61227c612dd6565b60008290508061228a611ca9565b116124c8576000548110156124c7576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff161515151581525050905080604001516124c557600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146123a95780925050506124fa565b5b6001156124c457818060019003925050600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146124bf5780925050506124fa565b6123aa565b5b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b80601260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546126149190613743565b925050819055505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612668611bef565b8786866040518563ffffffff1660e01b815260040161268a9493929190613d25565b6020604051808303816000875af19250505080156126c657506040513d601f19601f820116820180604052508101906126c39190613d86565b60015b61273f573d80600081146126f6576040519150601f19603f3d011682016040523d82523d6000602084013e6126fb565b606091505b506000815103612737576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600c80546127a19061353f565b80601f01602080910402602001604051908101604052809291908181526020018280546127cd9061353f565b801561281a5780601f106127ef5761010080835404028352916020019161281a565b820191906000526020600020905b8154815290600101906020018083116127fd57829003601f168201915b5050505050905090565b60606000820361286b576040518060400160405280600181526020017f3000000000000000000000000000000000000000000000000000000000000000815250905061297f565b600082905060005b6000821461289d57808061288690613db3565b915050600a8261289691906136a6565b9150612873565b60008167ffffffffffffffff8111156128b9576128b8613172565b5b6040519080825280601f01601f1916602001820160405280156128eb5781602001600182028036833780820191505090505b5090505b60008514612978576001826129049190613937565b9150600a856129139190613dfb565b603061291f9190613743565b60f81b81838151811061293557612934613e2c565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561297191906136a6565b94506128ef565b8093505050505b919050565b50505050565b50505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16036129fc576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008303612a36576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b612a436000858386612984565b82600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555082600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550836004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600081905060008482019050612c048673ffffffffffffffffffffffffffffffffffffffff1661261f565b15612cc9575b818673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612c796000878480600101955087612642565b612caf576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b808210612c0a578260005414612cc457600080fd5b612d34565b5b818060010192508673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4808210612cca575b816000819055505050612d4a600085838661298a565b50505050565b828054612d5c9061353f565b90600052602060002090601f016020900481019282612d7e5760008555612dc5565b82601f10612d9757805160ff1916838001178555612dc5565b82800160010185558215612dc5579182015b82811115612dc4578251825591602001919060010190612da9565b5b509050612dd29190612e19565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b80821115612e32576000816000905550600101612e1a565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b612e7f81612e4a565b8114612e8a57600080fd5b50565b600081359050612e9c81612e76565b92915050565b600060208284031215612eb857612eb7612e40565b5b6000612ec684828501612e8d565b91505092915050565b60008115159050919050565b612ee481612ecf565b82525050565b6000602082019050612eff6000830184612edb565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612f3f578082015181840152602081019050612f24565b83811115612f4e576000848401525b50505050565b6000601f19601f8301169050919050565b6000612f7082612f05565b612f7a8185612f10565b9350612f8a818560208601612f21565b612f9381612f54565b840191505092915050565b60006020820190508181036000830152612fb88184612f65565b905092915050565b6000819050919050565b612fd381612fc0565b8114612fde57600080fd5b50565b600081359050612ff081612fca565b92915050565b60006020828403121561300c5761300b612e40565b5b600061301a84828501612fe1565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061304e82613023565b9050919050565b61305e81613043565b82525050565b60006020820190506130796000830184613055565b92915050565b61308881613043565b811461309357600080fd5b50565b6000813590506130a58161307f565b92915050565b600080604083850312156130c2576130c1612e40565b5b60006130d085828601613096565b92505060206130e185828601612fe1565b9150509250929050565b6130f481612fc0565b82525050565b600060208201905061310f60008301846130eb565b92915050565b60008060006060848603121561312e5761312d612e40565b5b600061313c86828701613096565b935050602061314d86828701613096565b925050604061315e86828701612fe1565b9150509250925092565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6131aa82612f54565b810181811067ffffffffffffffff821117156131c9576131c8613172565b5b80604052505050565b60006131dc612e36565b90506131e882826131a1565b919050565b600067ffffffffffffffff82111561320857613207613172565b5b61321182612f54565b9050602081019050919050565b82818337600083830152505050565b600061324061323b846131ed565b6131d2565b90508281526020810184848401111561325c5761325b61316d565b5b61326784828561321e565b509392505050565b600082601f83011261328457613283613168565b5b813561329484826020860161322d565b91505092915050565b6000602082840312156132b3576132b2612e40565b5b600082013567ffffffffffffffff8111156132d1576132d0612e45565b5b6132dd8482850161326f565b91505092915050565b6000602082840312156132fc576132fb612e40565b5b600061330a84828501613096565b91505092915050565b61331c81612ecf565b811461332757600080fd5b50565b60008135905061333981613313565b92915050565b60006020828403121561335557613354612e40565b5b60006133638482850161332a565b91505092915050565b6000806040838503121561338357613382612e40565b5b600061339185828601613096565b92505060206133a28582860161332a565b9150509250929050565b600067ffffffffffffffff8211156133c7576133c6613172565b5b6133d082612f54565b9050602081019050919050565b60006133f06133eb846133ac565b6131d2565b90508281526020810184848401111561340c5761340b61316d565b5b61341784828561321e565b509392505050565b600082601f83011261343457613433613168565b5b81356134448482602086016133dd565b91505092915050565b6000806000806080858703121561346757613466612e40565b5b600061347587828801613096565b945050602061348687828801613096565b935050604061349787828801612fe1565b925050606085013567ffffffffffffffff8111156134b8576134b7612e45565b5b6134c48782880161341f565b91505092959194509250565b600080604083850312156134e7576134e6612e40565b5b60006134f585828601613096565b925050602061350685828601613096565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061355757607f821691505b60208210810361356a57613569613510565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006135a6602083612f10565b91506135b182613570565b602082019050919050565b600060208201905081810360008301526135d581613599565b9050919050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b6000613612601f83612f10565b915061361d826135dc565b602082019050919050565b6000602082019050818103600083015261364181613605565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006136b182612fc0565b91506136bc83612fc0565b9250826136cc576136cb613648565b5b828204905092915050565b7f496e76616c6964206d696e7420616d6f756e7421000000000000000000000000600082015250565b600061370d601483612f10565b9150613718826136d7565b602082019050919050565b6000602082019050818103600083015261373c81613700565b9050919050565b600061374e82612fc0565b915061375983612fc0565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561378e5761378d613677565b5b828201905092915050565b7f4d617820737570706c7920657863656564656421000000000000000000000000600082015250565b60006137cf601483612f10565b91506137da82613799565b602082019050919050565b600060208201905081810360008301526137fe816137c2565b9050919050565b7f4d657461646174612066726f7a656e2100000000000000000000000000000000600082015250565b600061383b601083612f10565b915061384682613805565b602082019050919050565b6000602082019050818103600083015261386a8161382e565b9050919050565b7f53616c65206973206e6f74206163746976652100000000000000000000000000600082015250565b60006138a7601383612f10565b91506138b282613871565b602082019050919050565b600060208201905081810360008301526138d68161389a565b9050919050565b60006138e882612fc0565b91506138f383612fc0565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561392c5761392b613677565b5b828202905092915050565b600061394282612fc0565b915061394d83612fc0565b9250828210156139605761395f613677565b5b828203905092915050565b7f496e73756666696369656e742066756e64732100000000000000000000000000600082015250565b60006139a1601383612f10565b91506139ac8261396b565b602082019050919050565b600060208201905081810360008301526139d081613994565b9050919050565b7f496e76616c6964206e6577206d617820737570706c7900000000000000000000600082015250565b6000613a0d601683612f10565b9150613a18826139d7565b602082019050919050565b60006020820190508181036000830152613a3c81613a00565b9050919050565b600081905092915050565b6000613a5982612f05565b613a638185613a43565b9350613a73818560208601612f21565b80840191505092915050565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b6000613ab5600583613a43565b9150613ac082613a7f565b600582019050919050565b6000613ad78285613a4e565b9150613ae38284613a4e565b9150613aee82613aa8565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000613b56602683612f10565b9150613b6182613afa565b604082019050919050565b60006020820190508181036000830152613b8581613b49565b9050919050565b7f416464726573733a20696e73756666696369656e742062616c616e6365000000600082015250565b6000613bc2601d83612f10565b9150613bcd82613b8c565b602082019050919050565b60006020820190508181036000830152613bf181613bb5565b9050919050565b600081905092915050565b50565b6000613c13600083613bf8565b9150613c1e82613c03565b600082019050919050565b6000613c3482613c06565b9150819050919050565b7f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260008201527f6563697069656e74206d61792068617665207265766572746564000000000000602082015250565b6000613c9a603a83612f10565b9150613ca582613c3e565b604082019050919050565b60006020820190508181036000830152613cc981613c8d565b9050919050565b600081519050919050565b600082825260208201905092915050565b6000613cf782613cd0565b613d018185613cdb565b9350613d11818560208601612f21565b613d1a81612f54565b840191505092915050565b6000608082019050613d3a6000830187613055565b613d476020830186613055565b613d5460408301856130eb565b8181036060830152613d668184613cec565b905095945050505050565b600081519050613d8081612e76565b92915050565b600060208284031215613d9c57613d9b612e40565b5b6000613daa84828501613d71565b91505092915050565b6000613dbe82612fc0565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203613df057613def613677565b5b600182019050919050565b6000613e0682612fc0565b9150613e1183612fc0565b925082613e2157613e20613648565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fdfea2646970667358221220fb57d4610b49ac68069dcea5fcab9c315b2081b9999143655fda0965b68bdf7964736f6c634300080e00330000000000000000000000000000000000000000000000000011c37937e08000000000000000000000000000000000000000000000000000000000000000270f00000000000000000000000000000000000000000000000000000000000000e000000000000000000000000000000000000000000000000000000000000000050000000000000000000000000000000000000000000000000000000000000032000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000009c4000000000000000000000000000000000000000000000000000000000000005368747470733a2f2f6f70656e7365612e6d7970696e6174612e636c6f75642f697066732f516d51676f707868443966637046744d6633514161763773697a744179726e5937386957453265414a37617033582f00000000000000000000000000

Deployed Bytecode

0x6080604052600436106102045760003560e01c8063715018a611610118578063a22cb465116100a0578063c87b56dd1161006f578063c87b56dd1461070a578063d111515d14610747578063e985e9c51461075e578063f2fde38b1461079b578063fdb4953a146107c457610204565b8063a22cb46514610666578063b0551ac41461068f578063b88d4fde146106b8578063c4e9374d146106e157610204565b80638d859f3e116100e75780638d859f3e146105a05780638da5cb5b146105cb57806391b7f5ed146105f657806395d89b411461061f578063a0712d681461064a57610204565b8063715018a61461050c57806376d02b7114610523578063841718a61461054e5780638b85e43d1461057757610204565b806332cb6b0c1161019b57806342842e0e1161016a57806342842e0e1461041757806355f804b314610440578063616cdb1e146104695780636352211e1461049257806370a08231146104cf57610204565b806332cb6b0c146103815780633ccfd60b146103ac5780634065b85f146103c3578063408cbf94146103ee57610204565b806309ef6527116101d757806309ef6527146102d757806310b0c0521461030257806318160ddd1461032d57806323b872dd1461035857610204565b806301ffc9a71461020957806306fdde0314610246578063081812fc14610271578063095ea7b3146102ae575b600080fd5b34801561021557600080fd5b50610230600480360381019061022b9190612ea2565b6107ef565b60405161023d9190612eea565b60405180910390f35b34801561025257600080fd5b5061025b6108d1565b6040516102689190612f9e565b60405180910390f35b34801561027d57600080fd5b5061029860048036038101906102939190612ff6565b610963565b6040516102a59190613064565b60405180910390f35b3480156102ba57600080fd5b506102d560048036038101906102d091906130ab565b6109df565b005b3480156102e357600080fd5b506102ec610ae3565b6040516102f991906130fa565b60405180910390f35b34801561030e57600080fd5b50610317610ae9565b60405161032491906130fa565b60405180910390f35b34801561033957600080fd5b50610342610aef565b60405161034f91906130fa565b60405180910390f35b34801561036457600080fd5b5061037f600480360381019061037a9190613115565b610b06565b005b34801561038d57600080fd5b50610396610b16565b6040516103a391906130fa565b60405180910390f35b3480156103b857600080fd5b506103c1610b1c565b005b3480156103cf57600080fd5b506103d8610c1f565b6040516103e591906130fa565b60405180910390f35b3480156103fa57600080fd5b50610415600480360381019061041091906130ab565b610c25565b005b34801561042357600080fd5b5061043e60048036038101906104399190613115565b610d54565b005b34801561044c57600080fd5b506104676004803603810190610462919061329d565b610d74565b005b34801561047557600080fd5b50610490600480360381019061048b9190612ff6565b610e5a565b005b34801561049e57600080fd5b506104b960048036038101906104b49190612ff6565b610ee0565b6040516104c69190613064565b60405180910390f35b3480156104db57600080fd5b506104f660048036038101906104f191906132e6565b610ef6565b60405161050391906130fa565b60405180910390f35b34801561051857600080fd5b50610521610fc5565b005b34801561052f57600080fd5b5061053861104d565b6040516105459190612eea565b60405180910390f35b34801561055a57600080fd5b506105756004803603810190610570919061333f565b611060565b005b34801561058357600080fd5b5061059e60048036038101906105999190612ff6565b6110f9565b005b3480156105ac57600080fd5b506105b561117f565b6040516105c291906130fa565b60405180910390f35b3480156105d757600080fd5b506105e0611185565b6040516105ed9190613064565b60405180910390f35b34801561060257600080fd5b5061061d60048036038101906106189190612ff6565b6111af565b005b34801561062b57600080fd5b50610634611235565b6040516106419190612f9e565b60405180910390f35b610664600480360381019061065f9190612ff6565b6112c7565b005b34801561067257600080fd5b5061068d6004803603810190610688919061336c565b6114de565b005b34801561069b57600080fd5b506106b660048036038101906106b19190612ff6565b611655565b005b3480156106c457600080fd5b506106df60048036038101906106da919061344d565b6116db565b005b3480156106ed57600080fd5b5061070860048036038101906107039190612ff6565b611753565b005b34801561071657600080fd5b50610731600480360381019061072c9190612ff6565b611862565b60405161073e9190612f9e565b60405180910390f35b34801561075357600080fd5b5061075c611900565b005b34801561076a57600080fd5b50610785600480360381019061078091906134d0565b611999565b6040516107929190612eea565b60405180910390f35b3480156107a757600080fd5b506107c260048036038101906107bd91906132e6565b611a2d565b005b3480156107d057600080fd5b506107d9611b24565b6040516107e69190612eea565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806108ba57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806108ca57506108c982611b37565b5b9050919050565b6060600280546108e09061353f565b80601f016020809104026020016040519081016040528092919081815260200182805461090c9061353f565b80156109595780601f1061092e57610100808354040283529160200191610959565b820191906000526020600020905b81548152906001019060200180831161093c57829003601f168201915b5050505050905090565b600061096e82611ba1565b6109a4576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006109ea82610ee0565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610a51576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610a70611bef565b73ffffffffffffffffffffffffffffffffffffffff1614610ad357610a9c81610a97611bef565b611999565b610ad2576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b610ade838383611bf7565b505050565b600e5481565b600d5481565b6000610af9611ca9565b6001546000540303905090565b610b11838383611cae565b505050565b600b5481565b610b24611bef565b73ffffffffffffffffffffffffffffffffffffffff16610b42611185565b73ffffffffffffffffffffffffffffffffffffffff1614610b98576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b8f906135bc565b60405180910390fd5b600260095403610bdd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bd490613628565b60405180910390fd5b60026009819055506000479050610c14737eda885f3953105488dc990767e1bc3d68938acd600183610c0f91906136a6565b612162565b506001600981905550565b60105481565b80600081118015610c385750600e548111155b610c77576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c6e90613723565b60405180910390fd5b600b5481600054610c889190613743565b1115610cc9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cc0906137e5565b60405180910390fd5b610cd1611bef565b73ffffffffffffffffffffffffffffffffffffffff16610cef611185565b73ffffffffffffffffffffffffffffffffffffffff1614610d45576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d3c906135bc565b60405180910390fd5b610d4f8383612256565b505050565b610d6f838383604051806020016040528060008152506116db565b505050565b610d7c611bef565b73ffffffffffffffffffffffffffffffffffffffff16610d9a611185565b73ffffffffffffffffffffffffffffffffffffffff1614610df0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610de7906135bc565b60405180910390fd5b601160009054906101000a900460ff1615610e40576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e3790613851565b60405180910390fd5b80600c9080519060200190610e56929190612d50565b5050565b610e62611bef565b73ffffffffffffffffffffffffffffffffffffffff16610e80611185565b73ffffffffffffffffffffffffffffffffffffffff1614610ed6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ecd906135bc565b60405180910390fd5b80600e8190555050565b6000610eeb82612274565b600001519050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610f5d576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b610fcd611bef565b73ffffffffffffffffffffffffffffffffffffffff16610feb611185565b73ffffffffffffffffffffffffffffffffffffffff1614611041576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611038906135bc565b60405180910390fd5b61104b60006124ff565b565b600f60009054906101000a900460ff1681565b611068611bef565b73ffffffffffffffffffffffffffffffffffffffff16611086611185565b73ffffffffffffffffffffffffffffffffffffffff16146110dc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110d3906135bc565b60405180910390fd5b80600f60006101000a81548160ff02191690831515021790555050565b611101611bef565b73ffffffffffffffffffffffffffffffffffffffff1661111f611185565b73ffffffffffffffffffffffffffffffffffffffff1614611175576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161116c906135bc565b60405180910390fd5b8060108190555050565b600a5481565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6111b7611bef565b73ffffffffffffffffffffffffffffffffffffffff166111d5611185565b73ffffffffffffffffffffffffffffffffffffffff161461122b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611222906135bc565b60405180910390fd5b80600a8190555050565b6060600380546112449061353f565b80601f01602080910402602001604051908101604052809291908181526020018280546112709061353f565b80156112bd5780601f10611292576101008083540402835291602001916112bd565b820191906000526020600020905b8154815290600101906020018083116112a057829003601f168201915b5050505050905090565b806000811180156112da5750600e548111155b611319576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161131090613723565b60405180910390fd5b600b548160005461132a9190613743565b111561136b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611362906137e5565b60405180910390fd5b600f60009054906101000a900460ff166113ba576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113b1906138bd565b60405180910390fd5b600082600a546113ca91906138dd565b9050601054600054101561148c576000601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054600d546114279190613937565b9050600081111561148a5780841061146357600a548161144791906138dd565b826114529190613937565b915061145e33826125c5565b611489565b600a548461147191906138dd565b8261147c9190613937565b915061148833856125c5565b5b5b505b803410156114cf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114c6906139b7565b60405180910390fd5b6114d93384612256565b505050565b6114e6611bef565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361154a576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060076000611557611bef565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611604611bef565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516116499190612eea565b60405180910390a35050565b61165d611bef565b73ffffffffffffffffffffffffffffffffffffffff1661167b611185565b73ffffffffffffffffffffffffffffffffffffffff16146116d1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116c8906135bc565b60405180910390fd5b80600d8190555050565b6116e6848484611cae565b6117058373ffffffffffffffffffffffffffffffffffffffff1661261f565b1561174d5761171684848484612642565b61174c576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b61175b611bef565b73ffffffffffffffffffffffffffffffffffffffff16611779611185565b73ffffffffffffffffffffffffffffffffffffffff16146117cf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117c6906135bc565b60405180910390fd5b600b548110611813576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161180a90613a23565b60405180910390fd5b600054811015611858576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161184f90613a23565b60405180910390fd5b80600b8190555050565b606061186d82611ba1565b6118a3576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60006118ad612792565b905060008151036118cd57604051806020016040528060008152506118f8565b806118d784612824565b6040516020016118e8929190613acb565b6040516020818303038152906040525b915050919050565b611908611bef565b73ffffffffffffffffffffffffffffffffffffffff16611926611185565b73ffffffffffffffffffffffffffffffffffffffff161461197c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611973906135bc565b60405180910390fd5b6001601160006101000a81548160ff021916908315150217905550565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611a35611bef565b73ffffffffffffffffffffffffffffffffffffffff16611a53611185565b73ffffffffffffffffffffffffffffffffffffffff1614611aa9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611aa0906135bc565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611b18576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b0f90613b6c565b60405180910390fd5b611b21816124ff565b50565b601160009054906101000a900460ff1681565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600081611bac611ca9565b11158015611bbb575060005482105b8015611be8575060046000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b600033905090565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600090565b6000611cb982612274565b90508373ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614611d24576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff16611d45611bef565b73ffffffffffffffffffffffffffffffffffffffff161480611d745750611d7385611d6e611bef565b611999565b5b80611db95750611d82611bef565b73ffffffffffffffffffffffffffffffffffffffff16611da184610963565b73ffffffffffffffffffffffffffffffffffffffff16145b905080611df2576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603611e58576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611e658585856001612984565b611e7160008487611bf7565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600460008581526020019081526020016000209050848160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550428160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060006001850190506000600460008381526020019081526020016000209050600073ffffffffffffffffffffffffffffffffffffffff168160000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16036120f05760005482146120ef57878160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555084602001518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b505050828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461215b858585600161298a565b5050505050565b804710156121a5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161219c90613bd8565b60405180910390fd5b60008273ffffffffffffffffffffffffffffffffffffffff16826040516121cb90613c29565b60006040518083038185875af1925050503d8060008114612208576040519150601f19603f3d011682016040523d82523d6000602084013e61220d565b606091505b5050905080612251576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161224890613cb0565b60405180910390fd5b505050565b612270828260405180602001604052806000815250612990565b5050565b61227c612dd6565b60008290508061228a611ca9565b116124c8576000548110156124c7576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff161515151581525050905080604001516124c557600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146123a95780925050506124fa565b5b6001156124c457818060019003925050600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146124bf5780925050506124fa565b6123aa565b5b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b80601260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546126149190613743565b925050819055505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612668611bef565b8786866040518563ffffffff1660e01b815260040161268a9493929190613d25565b6020604051808303816000875af19250505080156126c657506040513d601f19601f820116820180604052508101906126c39190613d86565b60015b61273f573d80600081146126f6576040519150601f19603f3d011682016040523d82523d6000602084013e6126fb565b606091505b506000815103612737576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600c80546127a19061353f565b80601f01602080910402602001604051908101604052809291908181526020018280546127cd9061353f565b801561281a5780601f106127ef5761010080835404028352916020019161281a565b820191906000526020600020905b8154815290600101906020018083116127fd57829003601f168201915b5050505050905090565b60606000820361286b576040518060400160405280600181526020017f3000000000000000000000000000000000000000000000000000000000000000815250905061297f565b600082905060005b6000821461289d57808061288690613db3565b915050600a8261289691906136a6565b9150612873565b60008167ffffffffffffffff8111156128b9576128b8613172565b5b6040519080825280601f01601f1916602001820160405280156128eb5781602001600182028036833780820191505090505b5090505b60008514612978576001826129049190613937565b9150600a856129139190613dfb565b603061291f9190613743565b60f81b81838151811061293557612934613e2c565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561297191906136a6565b94506128ef565b8093505050505b919050565b50505050565b50505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16036129fc576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008303612a36576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b612a436000858386612984565b82600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555082600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550836004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600081905060008482019050612c048673ffffffffffffffffffffffffffffffffffffffff1661261f565b15612cc9575b818673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612c796000878480600101955087612642565b612caf576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b808210612c0a578260005414612cc457600080fd5b612d34565b5b818060010192508673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4808210612cca575b816000819055505050612d4a600085838661298a565b50505050565b828054612d5c9061353f565b90600052602060002090601f016020900481019282612d7e5760008555612dc5565b82601f10612d9757805160ff1916838001178555612dc5565b82800160010185558215612dc5579182015b82811115612dc4578251825591602001919060010190612da9565b5b509050612dd29190612e19565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b80821115612e32576000816000905550600101612e1a565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b612e7f81612e4a565b8114612e8a57600080fd5b50565b600081359050612e9c81612e76565b92915050565b600060208284031215612eb857612eb7612e40565b5b6000612ec684828501612e8d565b91505092915050565b60008115159050919050565b612ee481612ecf565b82525050565b6000602082019050612eff6000830184612edb565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612f3f578082015181840152602081019050612f24565b83811115612f4e576000848401525b50505050565b6000601f19601f8301169050919050565b6000612f7082612f05565b612f7a8185612f10565b9350612f8a818560208601612f21565b612f9381612f54565b840191505092915050565b60006020820190508181036000830152612fb88184612f65565b905092915050565b6000819050919050565b612fd381612fc0565b8114612fde57600080fd5b50565b600081359050612ff081612fca565b92915050565b60006020828403121561300c5761300b612e40565b5b600061301a84828501612fe1565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061304e82613023565b9050919050565b61305e81613043565b82525050565b60006020820190506130796000830184613055565b92915050565b61308881613043565b811461309357600080fd5b50565b6000813590506130a58161307f565b92915050565b600080604083850312156130c2576130c1612e40565b5b60006130d085828601613096565b92505060206130e185828601612fe1565b9150509250929050565b6130f481612fc0565b82525050565b600060208201905061310f60008301846130eb565b92915050565b60008060006060848603121561312e5761312d612e40565b5b600061313c86828701613096565b935050602061314d86828701613096565b925050604061315e86828701612fe1565b9150509250925092565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6131aa82612f54565b810181811067ffffffffffffffff821117156131c9576131c8613172565b5b80604052505050565b60006131dc612e36565b90506131e882826131a1565b919050565b600067ffffffffffffffff82111561320857613207613172565b5b61321182612f54565b9050602081019050919050565b82818337600083830152505050565b600061324061323b846131ed565b6131d2565b90508281526020810184848401111561325c5761325b61316d565b5b61326784828561321e565b509392505050565b600082601f83011261328457613283613168565b5b813561329484826020860161322d565b91505092915050565b6000602082840312156132b3576132b2612e40565b5b600082013567ffffffffffffffff8111156132d1576132d0612e45565b5b6132dd8482850161326f565b91505092915050565b6000602082840312156132fc576132fb612e40565b5b600061330a84828501613096565b91505092915050565b61331c81612ecf565b811461332757600080fd5b50565b60008135905061333981613313565b92915050565b60006020828403121561335557613354612e40565b5b60006133638482850161332a565b91505092915050565b6000806040838503121561338357613382612e40565b5b600061339185828601613096565b92505060206133a28582860161332a565b9150509250929050565b600067ffffffffffffffff8211156133c7576133c6613172565b5b6133d082612f54565b9050602081019050919050565b60006133f06133eb846133ac565b6131d2565b90508281526020810184848401111561340c5761340b61316d565b5b61341784828561321e565b509392505050565b600082601f83011261343457613433613168565b5b81356134448482602086016133dd565b91505092915050565b6000806000806080858703121561346757613466612e40565b5b600061347587828801613096565b945050602061348687828801613096565b935050604061349787828801612fe1565b925050606085013567ffffffffffffffff8111156134b8576134b7612e45565b5b6134c48782880161341f565b91505092959194509250565b600080604083850312156134e7576134e6612e40565b5b60006134f585828601613096565b925050602061350685828601613096565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061355757607f821691505b60208210810361356a57613569613510565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006135a6602083612f10565b91506135b182613570565b602082019050919050565b600060208201905081810360008301526135d581613599565b9050919050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b6000613612601f83612f10565b915061361d826135dc565b602082019050919050565b6000602082019050818103600083015261364181613605565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006136b182612fc0565b91506136bc83612fc0565b9250826136cc576136cb613648565b5b828204905092915050565b7f496e76616c6964206d696e7420616d6f756e7421000000000000000000000000600082015250565b600061370d601483612f10565b9150613718826136d7565b602082019050919050565b6000602082019050818103600083015261373c81613700565b9050919050565b600061374e82612fc0565b915061375983612fc0565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561378e5761378d613677565b5b828201905092915050565b7f4d617820737570706c7920657863656564656421000000000000000000000000600082015250565b60006137cf601483612f10565b91506137da82613799565b602082019050919050565b600060208201905081810360008301526137fe816137c2565b9050919050565b7f4d657461646174612066726f7a656e2100000000000000000000000000000000600082015250565b600061383b601083612f10565b915061384682613805565b602082019050919050565b6000602082019050818103600083015261386a8161382e565b9050919050565b7f53616c65206973206e6f74206163746976652100000000000000000000000000600082015250565b60006138a7601383612f10565b91506138b282613871565b602082019050919050565b600060208201905081810360008301526138d68161389a565b9050919050565b60006138e882612fc0565b91506138f383612fc0565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561392c5761392b613677565b5b828202905092915050565b600061394282612fc0565b915061394d83612fc0565b9250828210156139605761395f613677565b5b828203905092915050565b7f496e73756666696369656e742066756e64732100000000000000000000000000600082015250565b60006139a1601383612f10565b91506139ac8261396b565b602082019050919050565b600060208201905081810360008301526139d081613994565b9050919050565b7f496e76616c6964206e6577206d617820737570706c7900000000000000000000600082015250565b6000613a0d601683612f10565b9150613a18826139d7565b602082019050919050565b60006020820190508181036000830152613a3c81613a00565b9050919050565b600081905092915050565b6000613a5982612f05565b613a638185613a43565b9350613a73818560208601612f21565b80840191505092915050565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b6000613ab5600583613a43565b9150613ac082613a7f565b600582019050919050565b6000613ad78285613a4e565b9150613ae38284613a4e565b9150613aee82613aa8565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000613b56602683612f10565b9150613b6182613afa565b604082019050919050565b60006020820190508181036000830152613b8581613b49565b9050919050565b7f416464726573733a20696e73756666696369656e742062616c616e6365000000600082015250565b6000613bc2601d83612f10565b9150613bcd82613b8c565b602082019050919050565b60006020820190508181036000830152613bf181613bb5565b9050919050565b600081905092915050565b50565b6000613c13600083613bf8565b9150613c1e82613c03565b600082019050919050565b6000613c3482613c06565b9150819050919050565b7f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260008201527f6563697069656e74206d61792068617665207265766572746564000000000000602082015250565b6000613c9a603a83612f10565b9150613ca582613c3e565b604082019050919050565b60006020820190508181036000830152613cc981613c8d565b9050919050565b600081519050919050565b600082825260208201905092915050565b6000613cf782613cd0565b613d018185613cdb565b9350613d11818560208601612f21565b613d1a81612f54565b840191505092915050565b6000608082019050613d3a6000830187613055565b613d476020830186613055565b613d5460408301856130eb565b8181036060830152613d668184613cec565b905095945050505050565b600081519050613d8081612e76565b92915050565b600060208284031215613d9c57613d9b612e40565b5b6000613daa84828501613d71565b91505092915050565b6000613dbe82612fc0565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203613df057613def613677565b5b600182019050919050565b6000613e0682612fc0565b9150613e1183612fc0565b925082613e2157613e20613648565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fdfea2646970667358221220fb57d4610b49ac68069dcea5fcab9c315b2081b9999143655fda0965b68bdf7964736f6c634300080e0033

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

0000000000000000000000000000000000000000000000000011c37937e08000000000000000000000000000000000000000000000000000000000000000270f00000000000000000000000000000000000000000000000000000000000000e000000000000000000000000000000000000000000000000000000000000000050000000000000000000000000000000000000000000000000000000000000032000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000009c4000000000000000000000000000000000000000000000000000000000000005368747470733a2f2f6f70656e7365612e6d7970696e6174612e636c6f75642f697066732f516d51676f707868443966637046744d6633514161763773697a744179726e5937386957453265414a37617033582f00000000000000000000000000

-----Decoded View---------------
Arg [0] : price (uint256): 5000000000000000
Arg [1] : maxSupply (uint256): 9999
Arg [2] : baseUri (string): https://opensea.mypinata.cloud/ipfs/QmQgopxhD9fcpFtMf3QAav7siztAyrnY78iWE2eAJ7ap3X/
Arg [3] : freeMintAllowance (uint256): 5
Arg [4] : maxMintPerTx (uint256): 50
Arg [5] : isSaleActive (bool): True
Arg [6] : freeMintIsAllowedUntil (uint256): 2500

-----Encoded View---------------
11 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000011c37937e08000
Arg [1] : 000000000000000000000000000000000000000000000000000000000000270f
Arg [2] : 00000000000000000000000000000000000000000000000000000000000000e0
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000005
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000032
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000001
Arg [6] : 00000000000000000000000000000000000000000000000000000000000009c4
Arg [7] : 0000000000000000000000000000000000000000000000000000000000000053
Arg [8] : 68747470733a2f2f6f70656e7365612e6d7970696e6174612e636c6f75642f69
Arg [9] : 7066732f516d51676f707868443966637046744d6633514161763773697a7441
Arg [10] : 79726e5937386957453265414a37617033582f00000000000000000000000000


Deployed Bytecode Sourcemap

50232:4379:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31337:305;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34452:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35964:204;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35526:372;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;50469:37;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50421:41;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30577:312;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36829:170;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;50359:25;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;54434:174;;;;;;;;;;;;;:::i;:::-;;50546:41;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;54126:176;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;37070:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;51962:169;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;52311:122;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;34260:125;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31706:206;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7522:103;;;;;;;;;;;;;:::i;:::-;;50513:26;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;52441:109;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;52558:177;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;50332:20;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6871:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51595:96;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;34621:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;53189:929;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;36240:287;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;52139:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;37326:370;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;51699:255;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;34796:326;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;52743:86;;;;;;;;;;;;;:::i;:::-;;36598:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7780:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;50594:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31337:305;31439:4;31491:25;31476:40;;;:11;:40;;;;:105;;;;31548:33;31533:48;;;:11;:48;;;;31476:105;:158;;;;31598:36;31622:11;31598:23;:36::i;:::-;31476:158;31456:178;;31337:305;;;:::o;34452:100::-;34506:13;34539:5;34532:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34452:100;:::o;35964:204::-;36032:7;36057:16;36065:7;36057;:16::i;:::-;36052:64;;36082:34;;;;;;;;;;;;;;36052:64;36136:15;:24;36152:7;36136:24;;;;;;;;;;;;;;;;;;;;;36129:31;;35964:204;;;:::o;35526:372::-;35599:13;35615:24;35631:7;35615:15;:24::i;:::-;35599:40;;35660:5;35654:11;;:2;:11;;;35650:48;;35674:24;;;;;;;;;;;;;;35650:48;35731:5;35715:21;;:12;:10;:12::i;:::-;:21;;;35711:139;;35742:37;35759:5;35766:12;:10;:12::i;:::-;35742:16;:37::i;:::-;35738:112;;35803:35;;;;;;;;;;;;;;35738:112;35711:139;35862:28;35871:2;35875:7;35884:5;35862:8;:28::i;:::-;35588:310;35526:372;;:::o;50469:37::-;;;;:::o;50421:41::-;;;;:::o;30577:312::-;30630:7;30855:15;:13;:15::i;:::-;30840:12;;30824:13;;:28;:46;30817:53;;30577:312;:::o;36829:170::-;36963:28;36973:4;36979:2;36983:7;36963:9;:28::i;:::-;36829:170;;;:::o;50359:25::-;;;;:::o;54434:174::-;7102:12;:10;:12::i;:::-;7091:23;;:7;:5;:7::i;:::-;:23;;;7083:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;1845:1:::1;2443:7;;:19:::0;2435:63:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;1845:1;2576:7;:18;;;;54495:15:::2;54513:21;54495:39;;54545:55;54383:42;54598:1;54588:7;:11;;;;:::i;:::-;54545:17;:55::i;:::-;54484:124;1801:1:::1;2755:7;:22;;;;54434:174::o:0;50546:41::-;;;;:::o;54126:176::-;54219:11;52949:1;52935:11;:15;:56;;;;;52969:22;;52954:11;:37;;52935:56;52913:126;;;;;;;;;;;;:::i;:::-;;;;;;;;;53103:10;;53088:11;53072:13;;:27;;;;:::i;:::-;:41;;53050:111;;;;;;;;;;;;:::i;:::-;;;;;;;;;7102:12:::1;:10;:12::i;:::-;7091:23;;:7;:5;:7::i;:::-;:23;;;7083:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;54267:27:::2;54277:3;54282:11;54267:9;:27::i;:::-;54126:176:::0;;;:::o;37070:185::-;37208:39;37225:4;37231:2;37235:7;37208:39;;;;;;;;;;;;:16;:39::i;:::-;37070:185;;;:::o;51962:169::-;7102:12;:10;:12::i;:::-;7091:23;;:7;:5;:7::i;:::-;:23;;;7083:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;52051:15:::1;;;;;;;;;;;52050:16;52042:45;;;;;;;;;;;;:::i;:::-;;;;;;;;;52109:14;52098:8;:25;;;;;;;;;;;;:::i;:::-;;51962:169:::0;:::o;52311:122::-;7102:12;:10;:12::i;:::-;7091:23;;:7;:5;:7::i;:::-;:23;;;7083:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;52413:12:::1;52388:22;:37;;;;52311:122:::0;:::o;34260:125::-;34324:7;34351:21;34364:7;34351:12;:21::i;:::-;:26;;;34344:33;;34260:125;;;:::o;31706:206::-;31770:7;31811:1;31794:19;;:5;:19;;;31790:60;;31822:28;;;;;;;;;;;;;;31790:60;31876:12;:19;31889:5;31876:19;;;;;;;;;;;;;;;:27;;;;;;;;;;;;31868:36;;31861:43;;31706:206;;;:::o;7522:103::-;7102:12;:10;:12::i;:::-;7091:23;;:7;:5;:7::i;:::-;:23;;;7083:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;7587:30:::1;7614:1;7587:18;:30::i;:::-;7522:103::o:0;50513:26::-;;;;;;;;;;;;;:::o;52441:109::-;7102:12;:10;:12::i;:::-;7091:23;;:7;:5;:7::i;:::-;:23;;;7083:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;52530:12:::1;52513:14;;:29;;;;;;;;;;;;;;;;;;52441:109:::0;:::o;52558:177::-;7102:12;:10;:12::i;:::-;7091:23;;:7;:5;:7::i;:::-;:23;;;7083:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;52705:22:::1;52676:26;:51;;;;52558:177:::0;:::o;50332:20::-;;;;:::o;6871:87::-;6917:7;6944:6;;;;;;;;;;;6937:13;;6871:87;:::o;51595:96::-;7102:12;:10;:12::i;:::-;7091:23;;:7;:5;:7::i;:::-;:23;;;7083:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;51672:11:::1;51664:5;:19;;;;51595:96:::0;:::o;34621:104::-;34677:13;34710:7;34703:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34621:104;:::o;53189:929::-;53281:11;52949:1;52935:11;:15;:56;;;;;52969:22;;52954:11;:37;;52935:56;52913:126;;;;;;;;;;;;:::i;:::-;;;;;;;;;53103:10;;53088:11;53072:13;;:27;;;;:::i;:::-;:41;;53050:111;;;;;;;;;;;;:::i;:::-;;;;;;;;;53318:14:::1;;;;;;;;;;;53310:46;;;;;;;;;;;;:::i;:::-;;;;;;;;;53369:13;53393:11;53385:5;;:19;;;;:::i;:::-;53369:35;;53437:26;;53421:13;;:42;53417:584;;;53480:25;53554:16;:28;53571:10;53554:28;;;;;;;;;;;;;;;;53508:26;;:74;;;;:::i;:::-;53480:102;;53621:1;53601:17;:21;53597:393;;;53662:17;53647:11;:32;53643:332;;53733:5;;53713:17;:25;;;;:::i;:::-;53704:34;;;;;:::i;:::-;;;53761:50;53781:10;53793:17;53761:19;:50::i;:::-;53643:332;;;53883:5;;53869:11;:19;;;;:::i;:::-;53860:28;;;;;:::i;:::-;;;53911:44;53931:10;53943:11;53911:19;:44::i;:::-;53643:332;53597:393;53465:536;53417:584;54034:5;54021:9;:18;;54013:50;;;;;;;;;;;;:::i;:::-;;;;;;;;;54076:34;54086:10;54098:11;54076:9;:34::i;:::-;53299:819;53189:929:::0;;:::o;36240:287::-;36351:12;:10;:12::i;:::-;36339:24;;:8;:24;;;36335:54;;36372:17;;;;;;;;;;;;;;36335:54;36447:8;36402:18;:32;36421:12;:10;:12::i;:::-;36402:32;;;;;;;;;;;;;;;:42;36435:8;36402:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;36500:8;36471:48;;36486:12;:10;:12::i;:::-;36471:48;;;36510:8;36471:48;;;;;;:::i;:::-;;;;;;;;36240:287;;:::o;52139:164::-;7102:12;:10;:12::i;:::-;7091:23;;:7;:5;:7::i;:::-;:23;;;7083:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;52278:17:::1;52249:26;:46;;;;52139:164:::0;:::o;37326:370::-;37493:28;37503:4;37509:2;37513:7;37493:9;:28::i;:::-;37536:15;:2;:13;;;:15::i;:::-;37532:157;;;37557:56;37588:4;37594:2;37598:7;37607:5;37557:30;:56::i;:::-;37553:136;;37637:40;;;;;;;;;;;;;;37553:136;37532:157;37326:370;;;;:::o;51699:255::-;7102:12;:10;:12::i;:::-;7091:23;;:7;:5;:7::i;:::-;:23;;;7083:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;51798:10:::1;;51783:12;:25;51775:60;;;;;;;;;;;;:::i;:::-;;;;;;;;;51870:13;;51854:12;:29;;51846:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;51934:12;51921:10;:25;;;;51699:255:::0;:::o;34796:326::-;34869:13;34900:16;34908:7;34900;:16::i;:::-;34895:59;;34925:29;;;;;;;;;;;;;;34895:59;34967:21;34991:10;:8;:10::i;:::-;34967:34;;35044:1;35025:7;35019:21;:26;:95;;;;;;;;;;;;;;;;;35072:7;35081:18;:7;:16;:18::i;:::-;35055:54;;;;;;;;;:::i;:::-;;;;;;;;;;;;;35019:95;35012:102;;;34796:326;;;:::o;52743:86::-;7102:12;:10;:12::i;:::-;7091:23;;:7;:5;:7::i;:::-;:23;;;7083:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;52817:4:::1;52799:15;;:22;;;;;;;;;;;;;;;;;;52743:86::o:0;36598:164::-;36695:4;36719:18;:25;36738:5;36719:25;;;;;;;;;;;;;;;:35;36745:8;36719:35;;;;;;;;;;;;;;;;;;;;;;;;;36712:42;;36598:164;;;;:::o;7780:201::-;7102:12;:10;:12::i;:::-;7091:23;;:7;:5;:7::i;:::-;:23;;;7083:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;7889:1:::1;7869:22;;:8;:22;;::::0;7861:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;7945:28;7964:8;7945:18;:28::i;:::-;7780:201:::0;:::o;50594:27::-;;;;;;;;;;;;;:::o;19678:157::-;19763:4;19802:25;19787:40;;;:11;:40;;;;19780:47;;19678:157;;;:::o;37951:174::-;38008:4;38051:7;38032:15;:13;:15::i;:::-;:26;;:53;;;;;38072:13;;38062:7;:23;38032:53;:85;;;;;38090:11;:20;38102:7;38090:20;;;;;;;;;;;:27;;;;;;;;;;;;38089:28;38032:85;38025:92;;37951:174;;;:::o;5595:98::-;5648:7;5675:10;5668:17;;5595:98;:::o;47173:196::-;47315:2;47288:15;:24;47304:7;47288:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;47353:7;47349:2;47333:28;;47342:5;47333:28;;;;;;;;;;;;47173:196;;;:::o;30351:92::-;30407:7;30351:92;:::o;42121:2130::-;42236:35;42274:21;42287:7;42274:12;:21::i;:::-;42236:59;;42334:4;42312:26;;:13;:18;;;:26;;;42308:67;;42347:28;;;;;;;;;;;;;;42308:67;42388:22;42430:4;42414:20;;:12;:10;:12::i;:::-;:20;;;:73;;;;42451:36;42468:4;42474:12;:10;:12::i;:::-;42451:16;:36::i;:::-;42414:73;:126;;;;42528:12;:10;:12::i;:::-;42504:36;;:20;42516:7;42504:11;:20::i;:::-;:36;;;42414:126;42388:153;;42559:17;42554:66;;42585:35;;;;;;;;;;;;;;42554:66;42649:1;42635:16;;:2;:16;;;42631:52;;42660:23;;;;;;;;;;;;;;42631:52;42696:43;42718:4;42724:2;42728:7;42737:1;42696:21;:43::i;:::-;42804:35;42821:1;42825:7;42834:4;42804:8;:35::i;:::-;43165:1;43135:12;:18;43148:4;43135:18;;;;;;;;;;;;;;;:26;;;:31;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43209:1;43181:12;:16;43194:2;43181:16;;;;;;;;;;;;;;;:24;;;:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43227:31;43261:11;:20;43273:7;43261:20;;;;;;;;;;;43227:54;;43312:2;43296:8;:13;;;:18;;;;;;;;;;;;;;;;;;43362:15;43329:8;:23;;;:49;;;;;;;;;;;;;;;;;;43630:19;43662:1;43652:7;:11;43630:33;;43678:31;43712:11;:24;43724:11;43712:24;;;;;;;;;;;43678:58;;43780:1;43755:27;;:8;:13;;;;;;;;;;;;:27;;;43751:384;;43965:13;;43950:11;:28;43946:174;;44019:4;44003:8;:13;;;:20;;;;;;;;;;;;;;;;;;44072:13;:28;;;44046:8;:23;;;:54;;;;;;;;;;;;;;;;;;43946:174;43751:384;43110:1036;;;44182:7;44178:2;44163:27;;44172:4;44163:27;;;;;;;;;;;;44201:42;44222:4;44228:2;44232:7;44241:1;44201:20;:42::i;:::-;42225:2026;;42121:2130;;;:::o;10833:317::-;10948:6;10923:21;:31;;10915:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;11002:12;11020:9;:14;;11042:6;11020:33;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11001:52;;;11072:7;11064:78;;;;;;;;;;;;:::i;:::-;;;;;;;;;10904:246;10833:317;;:::o;38209:104::-;38278:27;38288:2;38292:8;38278:27;;;;;;;;;;;;:9;:27::i;:::-;38209:104;;:::o;33087:1111::-;33149:21;;:::i;:::-;33183:12;33198:7;33183:22;;33266:4;33247:15;:13;:15::i;:::-;:23;33243:888;;33283:13;;33276:4;:20;33272:859;;;33317:31;33351:11;:17;33363:4;33351:17;;;;;;;;;;;33317:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33392:9;:16;;;33387:729;;33463:1;33437:28;;:9;:14;;;:28;;;33433:101;;33501:9;33494:16;;;;;;33433:101;33836:261;33843:4;33836:261;;;33876:6;;;;;;;;33921:11;:17;33933:4;33921:17;;;;;;;;;;;33909:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33995:1;33969:28;;:9;:14;;;:28;;;33965:109;;34037:9;34030:16;;;;;;33965:109;33836:261;;;33387:729;33298:833;33272:859;33243:888;34159:31;;;;;;;;;;;;;;33087:1111;;;;:::o;8141:191::-;8215:16;8234:6;;;;;;;;;;;8215:25;;8260:8;8251:6;;:17;;;;;;;;;;;;;;;;;;8315:8;8284:40;;8305:8;8284:40;;;;;;;;;;;;8204:128;8141:191;:::o;51304:120::-;51411:5;51383:16;:24;51400:6;51383:24;;;;;;;;;;;;;;;;:33;;;;;;;:::i;:::-;;;;;;;;51304:120;;:::o;9572:326::-;9632:4;9889:1;9867:7;:19;;;:23;9860:30;;9572:326;;;:::o;47861:667::-;48024:4;48061:2;48045:36;;;48082:12;:10;:12::i;:::-;48096:4;48102:7;48111:5;48045:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;48041:480;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48296:1;48279:6;:13;:18;48275:235;;48325:40;;;;;;;;;;;;;;48275:235;48468:6;48462:13;48453:6;48449:2;48445:15;48438:38;48041:480;48174:45;;;48164:55;;;:6;:55;;;;48157:62;;;47861:667;;;;;;:::o;51455:109::-;51515:13;51548:8;51541:15;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51455:109;:::o;3157:723::-;3213:13;3443:1;3434:5;:10;3430:53;;3461:10;;;;;;;;;;;;;;;;;;;;;3430:53;3493:12;3508:5;3493:20;;3524:14;3549:78;3564:1;3556:4;:9;3549:78;;3582:8;;;;;:::i;:::-;;;;3613:2;3605:10;;;;;:::i;:::-;;;3549:78;;;3637:19;3669:6;3659:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3637:39;;3687:154;3703:1;3694:5;:10;3687:154;;3731:1;3721:11;;;;;:::i;:::-;;;3798:2;3790:5;:10;;;;:::i;:::-;3777:2;:24;;;;:::i;:::-;3764:39;;3747:6;3754;3747:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;3827:2;3818:11;;;;;:::i;:::-;;;3687:154;;;3865:6;3851:21;;;;;3157:723;;;;:::o;49176:159::-;;;;;:::o;49994:158::-;;;;;:::o;38686:1749::-;38809:20;38832:13;;38809:36;;38874:1;38860:16;;:2;:16;;;38856:48;;38885:19;;;;;;;;;;;;;;38856:48;38931:1;38919:8;:13;38915:44;;38941:18;;;;;;;;;;;;;;38915:44;38972:61;39002:1;39006:2;39010:12;39024:8;38972:21;:61::i;:::-;39345:8;39310:12;:16;39323:2;39310:16;;;;;;;;;;;;;;;:24;;;:44;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39409:8;39369:12;:16;39382:2;39369:16;;;;;;;;;;;;;;;:29;;;:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39468:2;39435:11;:25;39447:12;39435:25;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;39535:15;39485:11;:25;39497:12;39485:25;;;;;;;;;;;:40;;;:66;;;;;;;;;;;;;;;;;;39568:20;39591:12;39568:35;;39618:11;39647:8;39632:12;:23;39618:37;;39676:15;:2;:13;;;:15::i;:::-;39672:631;;;39712:313;39768:12;39764:2;39743:38;;39760:1;39743:38;;;;;;;;;;;;39809:69;39848:1;39852:2;39856:14;;;;;;39872:5;39809:30;:69::i;:::-;39804:174;;39914:40;;;;;;;;;;;;;;39804:174;40020:3;40005:12;:18;39712:313;;40106:12;40089:13;;:29;40085:43;;40120:8;;;40085:43;39672:631;;;40169:119;40225:14;;;;;;40221:2;40200:40;;40217:1;40200:40;;;;;;;;;;;;40283:3;40268:12;:18;40169:119;;39672:631;40333:12;40317:13;:28;;;;39285:1072;;40367:60;40396:1;40400:2;40404:12;40418:8;40367:20;:60::i;:::-;38798:1637;38686:1749;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:75:1:-;40:6;73:2;67:9;57:19;;7:75;:::o;88:117::-;197:1;194;187:12;211:117;320:1;317;310:12;334:149;370:7;410:66;403:5;399:78;388:89;;334:149;;;:::o;489:120::-;561:23;578:5;561:23;:::i;:::-;554:5;551:34;541:62;;599:1;596;589:12;541:62;489:120;:::o;615:137::-;660:5;698:6;685:20;676:29;;714:32;740:5;714:32;:::i;:::-;615:137;;;;:::o;758:327::-;816:6;865:2;853:9;844:7;840:23;836:32;833:119;;;871:79;;:::i;:::-;833:119;991:1;1016:52;1060:7;1051:6;1040:9;1036:22;1016:52;:::i;:::-;1006:62;;962:116;758:327;;;;:::o;1091:90::-;1125:7;1168:5;1161:13;1154:21;1143:32;;1091:90;;;:::o;1187:109::-;1268:21;1283:5;1268:21;:::i;:::-;1263:3;1256:34;1187:109;;:::o;1302:210::-;1389:4;1427:2;1416:9;1412:18;1404:26;;1440:65;1502:1;1491:9;1487:17;1478:6;1440:65;:::i;:::-;1302:210;;;;:::o;1518:99::-;1570:6;1604:5;1598:12;1588:22;;1518:99;;;:::o;1623:169::-;1707:11;1741:6;1736:3;1729:19;1781:4;1776:3;1772:14;1757:29;;1623:169;;;;:::o;1798:307::-;1866:1;1876:113;1890:6;1887:1;1884:13;1876:113;;;1975:1;1970:3;1966:11;1960:18;1956:1;1951:3;1947:11;1940:39;1912:2;1909:1;1905:10;1900:15;;1876:113;;;2007:6;2004:1;2001:13;1998:101;;;2087:1;2078:6;2073:3;2069:16;2062:27;1998:101;1847:258;1798:307;;;:::o;2111:102::-;2152:6;2203:2;2199:7;2194:2;2187:5;2183:14;2179:28;2169:38;;2111:102;;;:::o;2219:364::-;2307:3;2335:39;2368:5;2335:39;:::i;:::-;2390:71;2454:6;2449:3;2390:71;:::i;:::-;2383:78;;2470:52;2515:6;2510:3;2503:4;2496:5;2492:16;2470:52;:::i;:::-;2547:29;2569:6;2547:29;:::i;:::-;2542:3;2538:39;2531:46;;2311:272;2219:364;;;;:::o;2589:313::-;2702:4;2740:2;2729:9;2725:18;2717:26;;2789:9;2783:4;2779:20;2775:1;2764:9;2760:17;2753:47;2817:78;2890:4;2881:6;2817:78;:::i;:::-;2809:86;;2589:313;;;;:::o;2908:77::-;2945:7;2974:5;2963:16;;2908:77;;;:::o;2991:122::-;3064:24;3082:5;3064:24;:::i;:::-;3057:5;3054:35;3044:63;;3103:1;3100;3093:12;3044:63;2991:122;:::o;3119:139::-;3165:5;3203:6;3190:20;3181:29;;3219:33;3246:5;3219:33;:::i;:::-;3119:139;;;;:::o;3264:329::-;3323:6;3372:2;3360:9;3351:7;3347:23;3343:32;3340:119;;;3378:79;;:::i;:::-;3340:119;3498:1;3523:53;3568:7;3559:6;3548:9;3544:22;3523:53;:::i;:::-;3513:63;;3469:117;3264:329;;;;:::o;3599:126::-;3636:7;3676:42;3669:5;3665:54;3654:65;;3599:126;;;:::o;3731:96::-;3768:7;3797:24;3815:5;3797:24;:::i;:::-;3786:35;;3731:96;;;:::o;3833:118::-;3920:24;3938:5;3920:24;:::i;:::-;3915:3;3908:37;3833:118;;:::o;3957:222::-;4050:4;4088:2;4077:9;4073:18;4065:26;;4101:71;4169:1;4158:9;4154:17;4145:6;4101:71;:::i;:::-;3957:222;;;;:::o;4185:122::-;4258:24;4276:5;4258:24;:::i;:::-;4251:5;4248:35;4238:63;;4297:1;4294;4287:12;4238:63;4185:122;:::o;4313:139::-;4359:5;4397:6;4384:20;4375:29;;4413:33;4440:5;4413:33;:::i;:::-;4313:139;;;;:::o;4458:474::-;4526:6;4534;4583:2;4571:9;4562:7;4558:23;4554:32;4551:119;;;4589:79;;:::i;:::-;4551:119;4709:1;4734:53;4779:7;4770:6;4759:9;4755:22;4734:53;:::i;:::-;4724:63;;4680:117;4836:2;4862:53;4907:7;4898:6;4887:9;4883:22;4862:53;:::i;:::-;4852:63;;4807:118;4458:474;;;;;:::o;4938:118::-;5025:24;5043:5;5025:24;:::i;:::-;5020:3;5013:37;4938:118;;:::o;5062:222::-;5155:4;5193:2;5182:9;5178:18;5170:26;;5206:71;5274:1;5263:9;5259:17;5250:6;5206:71;:::i;:::-;5062:222;;;;:::o;5290:619::-;5367:6;5375;5383;5432:2;5420:9;5411:7;5407:23;5403:32;5400:119;;;5438:79;;:::i;:::-;5400:119;5558:1;5583:53;5628:7;5619:6;5608:9;5604:22;5583:53;:::i;:::-;5573:63;;5529:117;5685:2;5711:53;5756:7;5747:6;5736:9;5732:22;5711:53;:::i;:::-;5701:63;;5656:118;5813:2;5839:53;5884:7;5875:6;5864:9;5860:22;5839:53;:::i;:::-;5829:63;;5784:118;5290:619;;;;;:::o;5915:117::-;6024:1;6021;6014:12;6038:117;6147:1;6144;6137:12;6161:180;6209:77;6206:1;6199:88;6306:4;6303:1;6296:15;6330:4;6327:1;6320:15;6347:281;6430:27;6452:4;6430:27;:::i;:::-;6422:6;6418:40;6560:6;6548:10;6545:22;6524:18;6512:10;6509:34;6506:62;6503:88;;;6571:18;;:::i;:::-;6503:88;6611:10;6607:2;6600:22;6390:238;6347:281;;:::o;6634:129::-;6668:6;6695:20;;:::i;:::-;6685:30;;6724:33;6752:4;6744:6;6724:33;:::i;:::-;6634:129;;;:::o;6769:308::-;6831:4;6921:18;6913:6;6910:30;6907:56;;;6943:18;;:::i;:::-;6907:56;6981:29;7003:6;6981:29;:::i;:::-;6973:37;;7065:4;7059;7055:15;7047:23;;6769:308;;;:::o;7083:154::-;7167:6;7162:3;7157;7144:30;7229:1;7220:6;7215:3;7211:16;7204:27;7083:154;;;:::o;7243:412::-;7321:5;7346:66;7362:49;7404:6;7362:49;:::i;:::-;7346:66;:::i;:::-;7337:75;;7435:6;7428:5;7421:21;7473:4;7466:5;7462:16;7511:3;7502:6;7497:3;7493:16;7490:25;7487:112;;;7518:79;;:::i;:::-;7487:112;7608:41;7642:6;7637:3;7632;7608:41;:::i;:::-;7327:328;7243:412;;;;;:::o;7675:340::-;7731:5;7780:3;7773:4;7765:6;7761:17;7757:27;7747:122;;7788:79;;:::i;:::-;7747:122;7905:6;7892:20;7930:79;8005:3;7997:6;7990:4;7982:6;7978:17;7930:79;:::i;:::-;7921:88;;7737:278;7675:340;;;;:::o;8021:509::-;8090:6;8139:2;8127:9;8118:7;8114:23;8110:32;8107:119;;;8145:79;;:::i;:::-;8107:119;8293:1;8282:9;8278:17;8265:31;8323:18;8315:6;8312:30;8309:117;;;8345:79;;:::i;:::-;8309:117;8450:63;8505:7;8496:6;8485:9;8481:22;8450:63;:::i;:::-;8440:73;;8236:287;8021:509;;;;:::o;8536:329::-;8595:6;8644:2;8632:9;8623:7;8619:23;8615:32;8612:119;;;8650:79;;:::i;:::-;8612:119;8770:1;8795:53;8840:7;8831:6;8820:9;8816:22;8795:53;:::i;:::-;8785:63;;8741:117;8536:329;;;;:::o;8871:116::-;8941:21;8956:5;8941:21;:::i;:::-;8934:5;8931:32;8921:60;;8977:1;8974;8967:12;8921:60;8871:116;:::o;8993:133::-;9036:5;9074:6;9061:20;9052:29;;9090:30;9114:5;9090:30;:::i;:::-;8993:133;;;;:::o;9132:323::-;9188:6;9237:2;9225:9;9216:7;9212:23;9208:32;9205:119;;;9243:79;;:::i;:::-;9205:119;9363:1;9388:50;9430:7;9421:6;9410:9;9406:22;9388:50;:::i;:::-;9378:60;;9334:114;9132:323;;;;:::o;9461:468::-;9526:6;9534;9583:2;9571:9;9562:7;9558:23;9554:32;9551:119;;;9589:79;;:::i;:::-;9551:119;9709:1;9734:53;9779:7;9770:6;9759:9;9755:22;9734:53;:::i;:::-;9724:63;;9680:117;9836:2;9862:50;9904:7;9895:6;9884:9;9880:22;9862:50;:::i;:::-;9852:60;;9807:115;9461:468;;;;;:::o;9935:307::-;9996:4;10086:18;10078:6;10075:30;10072:56;;;10108:18;;:::i;:::-;10072:56;10146:29;10168:6;10146:29;:::i;:::-;10138:37;;10230:4;10224;10220:15;10212:23;;9935:307;;;:::o;10248:410::-;10325:5;10350:65;10366:48;10407:6;10366:48;:::i;:::-;10350:65;:::i;:::-;10341:74;;10438:6;10431:5;10424:21;10476:4;10469:5;10465:16;10514:3;10505:6;10500:3;10496:16;10493:25;10490:112;;;10521:79;;:::i;:::-;10490:112;10611:41;10645:6;10640:3;10635;10611:41;:::i;:::-;10331:327;10248:410;;;;;:::o;10677:338::-;10732:5;10781:3;10774:4;10766:6;10762:17;10758:27;10748:122;;10789:79;;:::i;:::-;10748:122;10906:6;10893:20;10931:78;11005:3;10997:6;10990:4;10982:6;10978:17;10931:78;:::i;:::-;10922:87;;10738:277;10677:338;;;;:::o;11021:943::-;11116:6;11124;11132;11140;11189:3;11177:9;11168:7;11164:23;11160:33;11157:120;;;11196:79;;:::i;:::-;11157:120;11316:1;11341:53;11386:7;11377:6;11366:9;11362:22;11341:53;:::i;:::-;11331:63;;11287:117;11443:2;11469:53;11514:7;11505:6;11494:9;11490:22;11469:53;:::i;:::-;11459:63;;11414:118;11571:2;11597:53;11642:7;11633:6;11622:9;11618:22;11597:53;:::i;:::-;11587:63;;11542:118;11727:2;11716:9;11712:18;11699:32;11758:18;11750:6;11747:30;11744:117;;;11780:79;;:::i;:::-;11744:117;11885:62;11939:7;11930:6;11919:9;11915:22;11885:62;:::i;:::-;11875:72;;11670:287;11021:943;;;;;;;:::o;11970:474::-;12038:6;12046;12095:2;12083:9;12074:7;12070:23;12066:32;12063:119;;;12101:79;;:::i;:::-;12063:119;12221:1;12246:53;12291:7;12282:6;12271:9;12267:22;12246:53;:::i;:::-;12236:63;;12192:117;12348:2;12374:53;12419:7;12410:6;12399:9;12395:22;12374:53;:::i;:::-;12364:63;;12319:118;11970:474;;;;;:::o;12450:180::-;12498:77;12495:1;12488:88;12595:4;12592:1;12585:15;12619:4;12616:1;12609:15;12636:320;12680:6;12717:1;12711:4;12707:12;12697:22;;12764:1;12758:4;12754:12;12785:18;12775:81;;12841:4;12833:6;12829:17;12819:27;;12775:81;12903:2;12895:6;12892:14;12872:18;12869:38;12866:84;;12922:18;;:::i;:::-;12866:84;12687:269;12636:320;;;:::o;12962:182::-;13102:34;13098:1;13090:6;13086:14;13079:58;12962:182;:::o;13150:366::-;13292:3;13313:67;13377:2;13372:3;13313:67;:::i;:::-;13306:74;;13389:93;13478:3;13389:93;:::i;:::-;13507:2;13502:3;13498:12;13491:19;;13150:366;;;:::o;13522:419::-;13688:4;13726:2;13715:9;13711:18;13703:26;;13775:9;13769:4;13765:20;13761:1;13750:9;13746:17;13739:47;13803:131;13929:4;13803:131;:::i;:::-;13795:139;;13522:419;;;:::o;13947:181::-;14087:33;14083:1;14075:6;14071:14;14064:57;13947:181;:::o;14134:366::-;14276:3;14297:67;14361:2;14356:3;14297:67;:::i;:::-;14290:74;;14373:93;14462:3;14373:93;:::i;:::-;14491:2;14486:3;14482:12;14475:19;;14134:366;;;:::o;14506:419::-;14672:4;14710:2;14699:9;14695:18;14687:26;;14759:9;14753:4;14749:20;14745:1;14734:9;14730:17;14723:47;14787:131;14913:4;14787:131;:::i;:::-;14779:139;;14506:419;;;:::o;14931:180::-;14979:77;14976:1;14969:88;15076:4;15073:1;15066:15;15100:4;15097:1;15090:15;15117:180;15165:77;15162:1;15155:88;15262:4;15259:1;15252:15;15286:4;15283:1;15276:15;15303:185;15343:1;15360:20;15378:1;15360:20;:::i;:::-;15355:25;;15394:20;15412:1;15394:20;:::i;:::-;15389:25;;15433:1;15423:35;;15438:18;;:::i;:::-;15423:35;15480:1;15477;15473:9;15468:14;;15303:185;;;;:::o;15494:170::-;15634:22;15630:1;15622:6;15618:14;15611:46;15494:170;:::o;15670:366::-;15812:3;15833:67;15897:2;15892:3;15833:67;:::i;:::-;15826:74;;15909:93;15998:3;15909:93;:::i;:::-;16027:2;16022:3;16018:12;16011:19;;15670:366;;;:::o;16042:419::-;16208:4;16246:2;16235:9;16231:18;16223:26;;16295:9;16289:4;16285:20;16281:1;16270:9;16266:17;16259:47;16323:131;16449:4;16323:131;:::i;:::-;16315:139;;16042:419;;;:::o;16467:305::-;16507:3;16526:20;16544:1;16526:20;:::i;:::-;16521:25;;16560:20;16578:1;16560:20;:::i;:::-;16555:25;;16714:1;16646:66;16642:74;16639:1;16636:81;16633:107;;;16720:18;;:::i;:::-;16633:107;16764:1;16761;16757:9;16750:16;;16467:305;;;;:::o;16778:170::-;16918:22;16914:1;16906:6;16902:14;16895:46;16778:170;:::o;16954:366::-;17096:3;17117:67;17181:2;17176:3;17117:67;:::i;:::-;17110:74;;17193:93;17282:3;17193:93;:::i;:::-;17311:2;17306:3;17302:12;17295:19;;16954:366;;;:::o;17326:419::-;17492:4;17530:2;17519:9;17515:18;17507:26;;17579:9;17573:4;17569:20;17565:1;17554:9;17550:17;17543:47;17607:131;17733:4;17607:131;:::i;:::-;17599:139;;17326:419;;;:::o;17751:166::-;17891:18;17887:1;17879:6;17875:14;17868:42;17751:166;:::o;17923:366::-;18065:3;18086:67;18150:2;18145:3;18086:67;:::i;:::-;18079:74;;18162:93;18251:3;18162:93;:::i;:::-;18280:2;18275:3;18271:12;18264:19;;17923:366;;;:::o;18295:419::-;18461:4;18499:2;18488:9;18484:18;18476:26;;18548:9;18542:4;18538:20;18534:1;18523:9;18519:17;18512:47;18576:131;18702:4;18576:131;:::i;:::-;18568:139;;18295:419;;;:::o;18720:169::-;18860:21;18856:1;18848:6;18844:14;18837:45;18720:169;:::o;18895:366::-;19037:3;19058:67;19122:2;19117:3;19058:67;:::i;:::-;19051:74;;19134:93;19223:3;19134:93;:::i;:::-;19252:2;19247:3;19243:12;19236:19;;18895:366;;;:::o;19267:419::-;19433:4;19471:2;19460:9;19456:18;19448:26;;19520:9;19514:4;19510:20;19506:1;19495:9;19491:17;19484:47;19548:131;19674:4;19548:131;:::i;:::-;19540:139;;19267:419;;;:::o;19692:348::-;19732:7;19755:20;19773:1;19755:20;:::i;:::-;19750:25;;19789:20;19807:1;19789:20;:::i;:::-;19784:25;;19977:1;19909:66;19905:74;19902:1;19899:81;19894:1;19887:9;19880:17;19876:105;19873:131;;;19984:18;;:::i;:::-;19873:131;20032:1;20029;20025:9;20014:20;;19692:348;;;;:::o;20046:191::-;20086:4;20106:20;20124:1;20106:20;:::i;:::-;20101:25;;20140:20;20158:1;20140:20;:::i;:::-;20135:25;;20179:1;20176;20173:8;20170:34;;;20184:18;;:::i;:::-;20170:34;20229:1;20226;20222:9;20214:17;;20046:191;;;;:::o;20243:169::-;20383:21;20379:1;20371:6;20367:14;20360:45;20243:169;:::o;20418:366::-;20560:3;20581:67;20645:2;20640:3;20581:67;:::i;:::-;20574:74;;20657:93;20746:3;20657:93;:::i;:::-;20775:2;20770:3;20766:12;20759:19;;20418:366;;;:::o;20790:419::-;20956:4;20994:2;20983:9;20979:18;20971:26;;21043:9;21037:4;21033:20;21029:1;21018:9;21014:17;21007:47;21071:131;21197:4;21071:131;:::i;:::-;21063:139;;20790:419;;;:::o;21215:172::-;21355:24;21351:1;21343:6;21339:14;21332:48;21215:172;:::o;21393:366::-;21535:3;21556:67;21620:2;21615:3;21556:67;:::i;:::-;21549:74;;21632:93;21721:3;21632:93;:::i;:::-;21750:2;21745:3;21741:12;21734:19;;21393:366;;;:::o;21765:419::-;21931:4;21969:2;21958:9;21954:18;21946:26;;22018:9;22012:4;22008:20;22004:1;21993:9;21989:17;21982:47;22046:131;22172:4;22046:131;:::i;:::-;22038:139;;21765:419;;;:::o;22190:148::-;22292:11;22329:3;22314:18;;22190:148;;;;:::o;22344:377::-;22450:3;22478:39;22511:5;22478:39;:::i;:::-;22533:89;22615:6;22610:3;22533:89;:::i;:::-;22526:96;;22631:52;22676:6;22671:3;22664:4;22657:5;22653:16;22631:52;:::i;:::-;22708:6;22703:3;22699:16;22692:23;;22454:267;22344:377;;;;:::o;22727:155::-;22867:7;22863:1;22855:6;22851:14;22844:31;22727:155;:::o;22888:400::-;23048:3;23069:84;23151:1;23146:3;23069:84;:::i;:::-;23062:91;;23162:93;23251:3;23162:93;:::i;:::-;23280:1;23275:3;23271:11;23264:18;;22888:400;;;:::o;23294:701::-;23575:3;23597:95;23688:3;23679:6;23597:95;:::i;:::-;23590:102;;23709:95;23800:3;23791:6;23709:95;:::i;:::-;23702:102;;23821:148;23965:3;23821:148;:::i;:::-;23814:155;;23986:3;23979:10;;23294:701;;;;;:::o;24001:225::-;24141:34;24137:1;24129:6;24125:14;24118:58;24210:8;24205:2;24197:6;24193:15;24186:33;24001:225;:::o;24232:366::-;24374:3;24395:67;24459:2;24454:3;24395:67;:::i;:::-;24388:74;;24471:93;24560:3;24471:93;:::i;:::-;24589:2;24584:3;24580:12;24573:19;;24232:366;;;:::o;24604:419::-;24770:4;24808:2;24797:9;24793:18;24785:26;;24857:9;24851:4;24847:20;24843:1;24832:9;24828:17;24821:47;24885:131;25011:4;24885:131;:::i;:::-;24877:139;;24604:419;;;:::o;25029:179::-;25169:31;25165:1;25157:6;25153:14;25146:55;25029:179;:::o;25214:366::-;25356:3;25377:67;25441:2;25436:3;25377:67;:::i;:::-;25370:74;;25453:93;25542:3;25453:93;:::i;:::-;25571:2;25566:3;25562:12;25555:19;;25214:366;;;:::o;25586:419::-;25752:4;25790:2;25779:9;25775:18;25767:26;;25839:9;25833:4;25829:20;25825:1;25814:9;25810:17;25803:47;25867:131;25993:4;25867:131;:::i;:::-;25859:139;;25586:419;;;:::o;26011:147::-;26112:11;26149:3;26134:18;;26011:147;;;;:::o;26164:114::-;;:::o;26284:398::-;26443:3;26464:83;26545:1;26540:3;26464:83;:::i;:::-;26457:90;;26556:93;26645:3;26556:93;:::i;:::-;26674:1;26669:3;26665:11;26658:18;;26284:398;;;:::o;26688:379::-;26872:3;26894:147;27037:3;26894:147;:::i;:::-;26887:154;;27058:3;27051:10;;26688:379;;;:::o;27073:245::-;27213:34;27209:1;27201:6;27197:14;27190:58;27282:28;27277:2;27269:6;27265:15;27258:53;27073:245;:::o;27324:366::-;27466:3;27487:67;27551:2;27546:3;27487:67;:::i;:::-;27480:74;;27563:93;27652:3;27563:93;:::i;:::-;27681:2;27676:3;27672:12;27665:19;;27324:366;;;:::o;27696:419::-;27862:4;27900:2;27889:9;27885:18;27877:26;;27949:9;27943:4;27939:20;27935:1;27924:9;27920:17;27913:47;27977:131;28103:4;27977:131;:::i;:::-;27969:139;;27696:419;;;:::o;28121:98::-;28172:6;28206:5;28200:12;28190:22;;28121:98;;;:::o;28225:168::-;28308:11;28342:6;28337:3;28330:19;28382:4;28377:3;28373:14;28358:29;;28225:168;;;;:::o;28399:360::-;28485:3;28513:38;28545:5;28513:38;:::i;:::-;28567:70;28630:6;28625:3;28567:70;:::i;:::-;28560:77;;28646:52;28691:6;28686:3;28679:4;28672:5;28668:16;28646:52;:::i;:::-;28723:29;28745:6;28723:29;:::i;:::-;28718:3;28714:39;28707:46;;28489:270;28399:360;;;;:::o;28765:640::-;28960:4;28998:3;28987:9;28983:19;28975:27;;29012:71;29080:1;29069:9;29065:17;29056:6;29012:71;:::i;:::-;29093:72;29161:2;29150:9;29146:18;29137:6;29093:72;:::i;:::-;29175;29243:2;29232:9;29228:18;29219:6;29175:72;:::i;:::-;29294:9;29288:4;29284:20;29279:2;29268:9;29264:18;29257:48;29322:76;29393:4;29384:6;29322:76;:::i;:::-;29314:84;;28765:640;;;;;;;:::o;29411:141::-;29467:5;29498:6;29492:13;29483:22;;29514:32;29540:5;29514:32;:::i;:::-;29411:141;;;;:::o;29558:349::-;29627:6;29676:2;29664:9;29655:7;29651:23;29647:32;29644:119;;;29682:79;;:::i;:::-;29644:119;29802:1;29827:63;29882:7;29873:6;29862:9;29858:22;29827:63;:::i;:::-;29817:73;;29773:127;29558:349;;;;:::o;29913:233::-;29952:3;29975:24;29993:5;29975:24;:::i;:::-;29966:33;;30021:66;30014:5;30011:77;30008:103;;30091:18;;:::i;:::-;30008:103;30138:1;30131:5;30127:13;30120:20;;29913:233;;;:::o;30152:176::-;30184:1;30201:20;30219:1;30201:20;:::i;:::-;30196:25;;30235:20;30253:1;30235:20;:::i;:::-;30230:25;;30274:1;30264:35;;30279:18;;:::i;:::-;30264:35;30320:1;30317;30313:9;30308:14;;30152:176;;;;:::o;30334:180::-;30382:77;30379:1;30372:88;30479:4;30476:1;30469:15;30503:4;30500:1;30493:15

Swarm Source

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