ETH Price: $3,065.09 (+0.91%)
Gas: 4 Gwei

Token

FatPudgys (FP)
 

Overview

Max Total Supply

1,001 FP

Holders

204

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Balance
5 FP
0x5C7559086660fBC23E126De6C7B286e289e471DA
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information
# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
FatPudgys

Compiler Version
v0.8.22+commit.4fc1097e

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-12-20
*/

// SPDX-License-Identifier: MIT

pragma solidity ^0.8.19;

/**
 * @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.19;

/**
 * @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.19;

/**
 * @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.19;

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

pragma solidity ^0.8.19;

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

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.19;

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

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

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

pragma solidity ^0.8.19;

/**
 * @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.19;

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

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

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

pragma solidity ^0.8.19;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.19;

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

pragma solidity ^0.8.19;

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

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

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

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

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

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId, owner);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfers(from, to, tokenId, 1);

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

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

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

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

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

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

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

        address from = prevOwnership.addr;

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

            if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        }

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

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.19;

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

    bool public paused;
    uint256 public free = 0;
    string public _baseTokenURI = "https://fatpudgys.xyz/api/pudgy/";
    uint256 public maxSupply = 3000;
    uint256 public freeSupply = 500;
    uint256 public cost = 0.005 ether;
    uint256 public maxMint = 25;
    uint256 public maxFreeMint = 2;
    mapping(address => uint256) public hasClaimed;

    constructor() ERC721A("FatPudgys", "FP") {}

    function mint(uint256 _mintAmount) public payable nonReentrant {
        require(
            _mintAmount > 0 && _mintAmount <= maxMint,
            "Invalid amount!"
        );
        require(
            totalSupply() + _mintAmount <= maxSupply,
            "Max supply!"
        );
        require(!paused, "Paused!");
        require(msg.value >= cost * _mintAmount, "Insufficient funds!");
        _safeMint(_msgSender(), _mintAmount);
    }

    function freeMint() public nonReentrant {
        require(hasClaimed[msg.sender] <= maxFreeMint, "Address has already claimed");
        require(free + maxFreeMint <= freeSupply, "Free supply exceeded!");
        require(
            totalSupply() + maxFreeMint <= maxSupply,
            "Max supply!"
        );
        require(!paused, "Paused!");
        _safeMint(_msgSender(), maxFreeMint - hasClaimed[msg.sender]);
        hasClaimed[msg.sender] = maxFreeMint;
        free += maxFreeMint;
    }

    function adminMint(uint256 _mintAmount, address _receiver)
        public
        onlyOwner
    {
        _safeMint(_receiver, _mintAmount);
    }

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

    function setCost(uint256 _cost) public onlyOwner {
        cost = _cost;
    }

    function setMaxMintPerTx(uint256 _amount) public onlyOwner {
        maxMint = _amount;
    }

    function setFreePerTx(uint256 _amount) public onlyOwner {
        maxFreeMint = _amount;
    }

    function setMaxSupply(uint256 _maxSupply) public onlyOwner {
        maxSupply = _maxSupply;
    }

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

    function setPaused(bool _state) public onlyOwner {
        paused = _state;
    }

    function withdraw() public onlyOwner {
        (bool success, ) = payable(msg.sender).call{
            value: address(this).balance
        }("");
        require(success);
    }

    function setBaseURI(string calldata baseURI) public onlyOwner {
        _baseTokenURI = baseURI;
    }

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

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

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"_baseTokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"},{"internalType":"address","name":"_receiver","type":"address"}],"name":"adminMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"cost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"free","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"freeMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"freeSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"hasClaimed","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxFreeMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_cost","type":"uint256"}],"name":"setCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"setFreePerTx","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_freeSupply","type":"uint256"}],"name":"setFreeSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"setMaxMintPerTx","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxSupply","type":"uint256"}],"name":"setMaxSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setPaused","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"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"}]

5f600b5560c0604052602060809081527f68747470733a2f2f6661747075646779732e78797a2f6170692f70756467792f60a052600c90620000429082620001da565b50610bb8600d556101f4600e556611c37937e08000600f556019601055600260115534801562000070575f80fd5b506040518060400160405280600981526020016846617450756467797360b81b81525060405180604001604052806002815260200161046560f41b8152508160029081620000bf9190620001da565b506003620000ce8282620001da565b505060015f5550620000e033620000eb565b6001600955620002a6565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b634e487b7160e01b5f52604160045260245ffd5b600181811c908216806200016557607f821691505b6020821081036200018457634e487b7160e01b5f52602260045260245ffd5b50919050565b601f821115620001d557805f5260205f20601f840160051c81016020851015620001b15750805b601f840160051c820191505b81811015620001d2575f8155600101620001bd565b50505b505050565b81516001600160401b03811115620001f657620001f66200013c565b6200020e8162000207845462000150565b846200018a565b602080601f83116001811462000244575f84156200022c5750858301515b5f19600386901b1c1916600185901b1785556200029e565b5f85815260208120601f198616915b82811015620002745788860151825594840194600190910190840162000253565b50858210156200029257878501515f19600388901b60f8161c191681555b505060018460011b0185555b505050505050565b611f8080620002b45f395ff3fe608060405260043610610212575f3560e01c8063616cdb1e1161011e578063a0712d68116100a8578063cfc86f7b1161006d578063cfc86f7b146105ca578063d5abeb01146105de578063e985e9c5146105f3578063f2fde38b14610612578063f676308a14610631575f80fd5b8063a0712d6814610545578063a22cb46514610558578063a591252d14610577578063b88d4fde1461058c578063c87b56dd146105ab575f80fd5b8063715018a6116100ee578063715018a6146104c057806373b2e80e146104d45780637501f741146104ff5780638da5cb5b1461051457806395d89b4114610531575f80fd5b8063616cdb1e146104445780636352211e146104635780636f8b44b01461048257806370a08231146104a1575f80fd5b806318160ddd1161019f57806342842e0e1161016f57806342842e0e146103ba57806344a0d68a146103d957806355f804b3146103f85780635b70ea9f146104175780635c975abb1461042b575f80fd5b806318160ddd1461035857806323b872dd1461037257806324a6ab0c146103915780633ccfd60b146103a6575f80fd5b8063095ea7b3116101e5578063095ea7b3146102c35780630dc28efe146102e25780631370128e1461030157806313faede61461032457806316c38b3c14610339575f80fd5b806301ffc9a714610216578063027f28611461024a57806306fdde031461026b578063081812fc1461028c575b5f80fd5b348015610221575f80fd5b5061023561023036600461192a565b610650565b60405190151581526020015b60405180910390f35b348015610255575f80fd5b5061026961026436600461194c565b6106a1565b005b348015610276575f80fd5b5061027f6106d9565b60405161024191906119b0565b348015610297575f80fd5b506102ab6102a636600461194c565b610769565b6040516001600160a01b039091168152602001610241565b3480156102ce575f80fd5b506102696102dd3660046119dd565b6107ab565b3480156102ed575f80fd5b506102696102fc366004611a05565b610837565b34801561030c575f80fd5b50610316600b5481565b604051908152602001610241565b34801561032f575f80fd5b50610316600f5481565b348015610344575f80fd5b50610269610353366004611a3e565b61086f565b348015610363575f80fd5b506001545f54035f1901610316565b34801561037d575f80fd5b5061026961038c366004611a57565b6108ac565b34801561039c575f80fd5b50610316600e5481565b3480156103b1575f80fd5b506102696108b7565b3480156103c5575f80fd5b506102696103d4366004611a57565b610935565b3480156103e4575f80fd5b506102696103f336600461194c565b61094f565b348015610403575f80fd5b50610269610412366004611a90565b61097e565b348015610422575f80fd5b506102696109b5565b348015610436575f80fd5b50600a546102359060ff1681565b34801561044f575f80fd5b5061026961045e36600461194c565b610bae565b34801561046e575f80fd5b506102ab61047d36600461194c565b610bdd565b34801561048d575f80fd5b5061026961049c36600461194c565b610bee565b3480156104ac575f80fd5b506103166104bb366004611afc565b610c1d565b3480156104cb575f80fd5b50610269610c6a565b3480156104df575f80fd5b506103166104ee366004611afc565b60126020525f908152604090205481565b34801561050a575f80fd5b5061031660105481565b34801561051f575f80fd5b506008546001600160a01b03166102ab565b34801561053c575f80fd5b5061027f610c9f565b61026961055336600461194c565b610cae565b348015610563575f80fd5b50610269610572366004611b15565b610e4b565b348015610582575f80fd5b5061031660115481565b348015610597575f80fd5b506102696105a6366004611b51565b610edf565b3480156105b6575f80fd5b5061027f6105c536600461194c565b610f30565b3480156105d5575f80fd5b5061027f610fd7565b3480156105e9575f80fd5b50610316600d5481565b3480156105fe575f80fd5b5061023561060d366004611c26565b611063565b34801561061d575f80fd5b5061026961062c366004611afc565b611090565b34801561063c575f80fd5b5061026961064b36600461194c565b611128565b5f6001600160e01b031982166380ac58cd60e01b148061068057506001600160e01b03198216635b5e139f60e01b145b8061069b57506301ffc9a760e01b6001600160e01b03198316145b92915050565b6008546001600160a01b031633146106d45760405162461bcd60e51b81526004016106cb90611c4e565b60405180910390fd5b601155565b6060600280546106e890611c83565b80601f016020809104026020016040519081016040528092919081815260200182805461071490611c83565b801561075f5780601f106107365761010080835404028352916020019161075f565b820191905f5260205f20905b81548152906001019060200180831161074257829003601f168201915b5050505050905090565b5f61077382611157565b610790576040516333d1c03960e21b815260040160405180910390fd5b505f908152600660205260409020546001600160a01b031690565b5f6107b582610bdd565b9050806001600160a01b0316836001600160a01b0316036107e95760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b0382161480159061080957506108078133611063565b155b15610827576040516367d9dca160e11b815260040160405180910390fd5b61083283838361118d565b505050565b6008546001600160a01b031633146108615760405162461bcd60e51b81526004016106cb90611c4e565b61086b81836111e8565b5050565b6008546001600160a01b031633146108995760405162461bcd60e51b81526004016106cb90611c4e565b600a805460ff1916911515919091179055565b610832838383611201565b6008546001600160a01b031633146108e15760405162461bcd60e51b81526004016106cb90611c4e565b6040515f90339047908381818185875af1925050503d805f8114610920576040519150601f19603f3d011682016040523d82523d5f602084013e610925565b606091505b5050905080610932575f80fd5b50565b61083283838360405180602001604052805f815250610edf565b6008546001600160a01b031633146109795760405162461bcd60e51b81526004016106cb90611c4e565b600f55565b6008546001600160a01b031633146109a85760405162461bcd60e51b81526004016106cb90611c4e565b600c610832828483611cff565b600260095403610a075760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0060448201526064016106cb565b6002600955601154335f908152601260205260409020541115610a6c5760405162461bcd60e51b815260206004820152601b60248201527f416464726573732068617320616c726561647920636c61696d6564000000000060448201526064016106cb565b600e54601154600b54610a7f9190611dcd565b1115610ac55760405162461bcd60e51b81526020600482015260156024820152744672656520737570706c792065786365656465642160581b60448201526064016106cb565b600d546011546001545f54035f1901610ade9190611dcd565b1115610b1a5760405162461bcd60e51b815260206004820152600b60248201526a4d617820737570706c792160a81b60448201526064016106cb565b600a5460ff1615610b575760405162461bcd60e51b81526020600482015260076024820152665061757365642160c81b60448201526064016106cb565b610b7c33335f90815260126020526040902054601154610b779190611de0565b6111e8565b601154335f908152601260205260408120829055600b8054909190610ba2908490611dcd565b90915550506001600955565b6008546001600160a01b03163314610bd85760405162461bcd60e51b81526004016106cb90611c4e565b601055565b5f610be7826113ea565b5192915050565b6008546001600160a01b03163314610c185760405162461bcd60e51b81526004016106cb90611c4e565b600d55565b5f6001600160a01b038216610c45576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b03165f9081526005602052604090205467ffffffffffffffff1690565b6008546001600160a01b03163314610c945760405162461bcd60e51b81526004016106cb90611c4e565b610c9d5f61150e565b565b6060600380546106e890611c83565b600260095403610d005760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0060448201526064016106cb565b60026009558015801590610d1657506010548111155b610d545760405162461bcd60e51b815260206004820152600f60248201526e496e76616c696420616d6f756e742160881b60448201526064016106cb565b600d546001545f54839190035f1901610d6d9190611dcd565b1115610da95760405162461bcd60e51b815260206004820152600b60248201526a4d617820737570706c792160a81b60448201526064016106cb565b600a5460ff1615610de65760405162461bcd60e51b81526020600482015260076024820152665061757365642160c81b60448201526064016106cb565b80600f54610df49190611df3565b341015610e395760405162461bcd60e51b8152602060048201526013602482015272496e73756666696369656e742066756e64732160681b60448201526064016106cb565b610e4333826111e8565b506001600955565b336001600160a01b03831603610e745760405163b06307db60e01b815260040160405180910390fd5b335f8181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b610eea848484611201565b6001600160a01b0383163b15158015610f0c5750610f0a8484848461155f565b155b15610f2a576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b6060610f3b82611157565b610f7d5760405162461bcd60e51b815260206004820152601360248201527255524920646f6573206e6f742065786973742160681b60448201526064016106cb565b5f600c8054610f8b90611c83565b905011610fa65760405180602001604052805f81525061069b565b600c610fb183611647565b604051602001610fc2929190611e0a565b60405160208183030381529060405292915050565b600c8054610fe490611c83565b80601f016020809104026020016040519081016040528092919081815260200182805461101090611c83565b801561105b5780601f106110325761010080835404028352916020019161105b565b820191905f5260205f20905b81548152906001019060200180831161103e57829003601f168201915b505050505081565b6001600160a01b039182165f90815260076020908152604080832093909416825291909152205460ff1690565b6008546001600160a01b031633146110ba5760405162461bcd60e51b81526004016106cb90611c4e565b6001600160a01b03811661111f5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016106cb565b6109328161150e565b6008546001600160a01b031633146111525760405162461bcd60e51b81526004016106cb90611c4e565b600e55565b5f8160011115801561116957505f5482105b801561069b5750505f90815260046020526040902054600160e01b900460ff161590565b5f8281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b61086b828260405180602001604052805f815250611744565b5f61120b826113ea565b9050836001600160a01b0316815f01516001600160a01b0316146112415760405162a1148160e81b815260040160405180910390fd5b5f336001600160a01b038616148061125e575061125e8533611063565b8061127957503361126e84610769565b6001600160a01b0316145b90508061129957604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b0384166112c057604051633a954ecd60e21b815260040160405180910390fd5b6112cb5f848761118d565b6001600160a01b038581165f908152600560209081526040808320805467ffffffffffffffff1980821667ffffffffffffffff9283165f1901831617909255898616808652838620805493841693831660019081018416949094179055898652600490945282852080546001600160e01b031916909417600160a01b4290921691909102178355870180845292208054919390911661139e575f54821461139e578054602086015167ffffffffffffffff16600160a01b026001600160e01b03199091166001600160a01b038a16171781555b50505082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b604080516060810182525f8082526020820181905291810191909152818060011115801561141857505f5481105b156114f5575f81815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b810467ffffffffffffffff1692820192909252600160e01b90910460ff161515918101829052906114f35780516001600160a01b03161561148b579392505050565b505f19015f81815260046020908152604091829020825160608101845290546001600160a01b038116808352600160a01b820467ffffffffffffffff1693830193909352600160e01b900460ff16151592810192909252156114ee579392505050565b61148b565b505b604051636f96cda160e11b815260040160405180910390fd5b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b604051630a85bd0160e11b81525f906001600160a01b0385169063150b7a0290611593903390899088908890600401611e8d565b6020604051808303815f875af19250505080156115cd575060408051601f3d908101601f191682019092526115ca91810190611ec9565b60015b611629573d8080156115fa576040519150601f19603f3d011682016040523d82523d5f602084013e6115ff565b606091505b5080515f03611621576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b6060815f0361166d5750506040805180820190915260018152600360fc1b602082015290565b815f5b8115611696578061168081611ee4565b915061168f9050600a83611f10565b9150611670565b5f8167ffffffffffffffff8111156116b0576116b0611b3d565b6040519080825280601f01601f1916602001820160405280156116da576020820181803683370190505b5090505b841561163f576116ef600183611de0565b91506116fc600a86611f23565b611707906030611dcd565b60f81b81838151811061171c5761171c611f36565b60200101906001600160f81b03191690815f1a90535061173d600a86611f10565b94506116de565b61083283838360015f546001600160a01b03851661177457604051622e076360e81b815260040160405180910390fd5b835f036117945760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b0385165f81815260056020908152604080832080546fffffffffffffffffffffffffffffffff19811667ffffffffffffffff8083168c0181169182176801000000000000000067ffffffffffffffff1990941690921783900481168c01811690920217909155858452600490925290912080546001600160e01b031916909217600160a01b42909216919091021790558080850183801561184557506001600160a01b0387163b15155b156118c9575b60405182906001600160a01b038916905f907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a46118945f88848060010195508861155f565b6118b1576040516368d2bf6b60e11b815260040160405180910390fd5b80820361184b57825f54146118c4575f80fd5b61190d565b5b6040516001830192906001600160a01b038916905f907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a48082036118ca575b505f556113e3565b6001600160e01b031981168114610932575f80fd5b5f6020828403121561193a575f80fd5b813561194581611915565b9392505050565b5f6020828403121561195c575f80fd5b5035919050565b5f5b8381101561197d578181015183820152602001611965565b50505f910152565b5f815180845261199c816020860160208601611963565b601f01601f19169290920160200192915050565b602081525f6119456020830184611985565b80356001600160a01b03811681146119d8575f80fd5b919050565b5f80604083850312156119ee575f80fd5b6119f7836119c2565b946020939093013593505050565b5f8060408385031215611a16575f80fd5b82359150611a26602084016119c2565b90509250929050565b803580151581146119d8575f80fd5b5f60208284031215611a4e575f80fd5b61194582611a2f565b5f805f60608486031215611a69575f80fd5b611a72846119c2565b9250611a80602085016119c2565b9150604084013590509250925092565b5f8060208385031215611aa1575f80fd5b823567ffffffffffffffff80821115611ab8575f80fd5b818501915085601f830112611acb575f80fd5b813581811115611ad9575f80fd5b866020828501011115611aea575f80fd5b60209290920196919550909350505050565b5f60208284031215611b0c575f80fd5b611945826119c2565b5f8060408385031215611b26575f80fd5b611b2f836119c2565b9150611a2660208401611a2f565b634e487b7160e01b5f52604160045260245ffd5b5f805f8060808587031215611b64575f80fd5b611b6d856119c2565b9350611b7b602086016119c2565b925060408501359150606085013567ffffffffffffffff80821115611b9e575f80fd5b818701915087601f830112611bb1575f80fd5b813581811115611bc357611bc3611b3d565b604051601f8201601f19908116603f01168101908382118183101715611beb57611beb611b3d565b816040528281528a6020848701011115611c03575f80fd5b826020860160208301375f60208483010152809550505050505092959194509250565b5f8060408385031215611c37575f80fd5b611c40836119c2565b9150611a26602084016119c2565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600181811c90821680611c9757607f821691505b602082108103611cb557634e487b7160e01b5f52602260045260245ffd5b50919050565b601f82111561083257805f5260205f20601f840160051c81016020851015611ce05750805b601f840160051c820191505b818110156113e3575f8155600101611cec565b67ffffffffffffffff831115611d1757611d17611b3d565b611d2b83611d258354611c83565b83611cbb565b5f601f841160018114611d5c575f8515611d455750838201355b5f19600387901b1c1916600186901b1783556113e3565b5f83815260208120601f198716915b82811015611d8b5786850135825560209485019460019092019101611d6b565b5086821015611da7575f1960f88860031b161c19848701351681555b505060018560011b0183555050505050565b634e487b7160e01b5f52601160045260245ffd5b8082018082111561069b5761069b611db9565b8181038181111561069b5761069b611db9565b808202811582820484141761069b5761069b611db9565b5f808454611e1781611c83565b60018281168015611e2f5760018114611e4457611e70565b60ff1984168752821515830287019450611e70565b885f526020805f205f5b85811015611e675781548a820152908401908201611e4e565b50505082870194505b505050508351611e84818360208801611963565b01949350505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190525f90611ebf90830184611985565b9695505050505050565b5f60208284031215611ed9575f80fd5b815161194581611915565b5f60018201611ef557611ef5611db9565b5060010190565b634e487b7160e01b5f52601260045260245ffd5b5f82611f1e57611f1e611efc565b500490565b5f82611f3157611f31611efc565b500690565b634e487b7160e01b5f52603260045260245ffdfea2646970667358221220e408fb350a10f5f88bf3e19c5e31e590d1435280711a22c1ff11b52fce78bdc464736f6c63430008160033

Deployed Bytecode

0x608060405260043610610212575f3560e01c8063616cdb1e1161011e578063a0712d68116100a8578063cfc86f7b1161006d578063cfc86f7b146105ca578063d5abeb01146105de578063e985e9c5146105f3578063f2fde38b14610612578063f676308a14610631575f80fd5b8063a0712d6814610545578063a22cb46514610558578063a591252d14610577578063b88d4fde1461058c578063c87b56dd146105ab575f80fd5b8063715018a6116100ee578063715018a6146104c057806373b2e80e146104d45780637501f741146104ff5780638da5cb5b1461051457806395d89b4114610531575f80fd5b8063616cdb1e146104445780636352211e146104635780636f8b44b01461048257806370a08231146104a1575f80fd5b806318160ddd1161019f57806342842e0e1161016f57806342842e0e146103ba57806344a0d68a146103d957806355f804b3146103f85780635b70ea9f146104175780635c975abb1461042b575f80fd5b806318160ddd1461035857806323b872dd1461037257806324a6ab0c146103915780633ccfd60b146103a6575f80fd5b8063095ea7b3116101e5578063095ea7b3146102c35780630dc28efe146102e25780631370128e1461030157806313faede61461032457806316c38b3c14610339575f80fd5b806301ffc9a714610216578063027f28611461024a57806306fdde031461026b578063081812fc1461028c575b5f80fd5b348015610221575f80fd5b5061023561023036600461192a565b610650565b60405190151581526020015b60405180910390f35b348015610255575f80fd5b5061026961026436600461194c565b6106a1565b005b348015610276575f80fd5b5061027f6106d9565b60405161024191906119b0565b348015610297575f80fd5b506102ab6102a636600461194c565b610769565b6040516001600160a01b039091168152602001610241565b3480156102ce575f80fd5b506102696102dd3660046119dd565b6107ab565b3480156102ed575f80fd5b506102696102fc366004611a05565b610837565b34801561030c575f80fd5b50610316600b5481565b604051908152602001610241565b34801561032f575f80fd5b50610316600f5481565b348015610344575f80fd5b50610269610353366004611a3e565b61086f565b348015610363575f80fd5b506001545f54035f1901610316565b34801561037d575f80fd5b5061026961038c366004611a57565b6108ac565b34801561039c575f80fd5b50610316600e5481565b3480156103b1575f80fd5b506102696108b7565b3480156103c5575f80fd5b506102696103d4366004611a57565b610935565b3480156103e4575f80fd5b506102696103f336600461194c565b61094f565b348015610403575f80fd5b50610269610412366004611a90565b61097e565b348015610422575f80fd5b506102696109b5565b348015610436575f80fd5b50600a546102359060ff1681565b34801561044f575f80fd5b5061026961045e36600461194c565b610bae565b34801561046e575f80fd5b506102ab61047d36600461194c565b610bdd565b34801561048d575f80fd5b5061026961049c36600461194c565b610bee565b3480156104ac575f80fd5b506103166104bb366004611afc565b610c1d565b3480156104cb575f80fd5b50610269610c6a565b3480156104df575f80fd5b506103166104ee366004611afc565b60126020525f908152604090205481565b34801561050a575f80fd5b5061031660105481565b34801561051f575f80fd5b506008546001600160a01b03166102ab565b34801561053c575f80fd5b5061027f610c9f565b61026961055336600461194c565b610cae565b348015610563575f80fd5b50610269610572366004611b15565b610e4b565b348015610582575f80fd5b5061031660115481565b348015610597575f80fd5b506102696105a6366004611b51565b610edf565b3480156105b6575f80fd5b5061027f6105c536600461194c565b610f30565b3480156105d5575f80fd5b5061027f610fd7565b3480156105e9575f80fd5b50610316600d5481565b3480156105fe575f80fd5b5061023561060d366004611c26565b611063565b34801561061d575f80fd5b5061026961062c366004611afc565b611090565b34801561063c575f80fd5b5061026961064b36600461194c565b611128565b5f6001600160e01b031982166380ac58cd60e01b148061068057506001600160e01b03198216635b5e139f60e01b145b8061069b57506301ffc9a760e01b6001600160e01b03198316145b92915050565b6008546001600160a01b031633146106d45760405162461bcd60e51b81526004016106cb90611c4e565b60405180910390fd5b601155565b6060600280546106e890611c83565b80601f016020809104026020016040519081016040528092919081815260200182805461071490611c83565b801561075f5780601f106107365761010080835404028352916020019161075f565b820191905f5260205f20905b81548152906001019060200180831161074257829003601f168201915b5050505050905090565b5f61077382611157565b610790576040516333d1c03960e21b815260040160405180910390fd5b505f908152600660205260409020546001600160a01b031690565b5f6107b582610bdd565b9050806001600160a01b0316836001600160a01b0316036107e95760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b0382161480159061080957506108078133611063565b155b15610827576040516367d9dca160e11b815260040160405180910390fd5b61083283838361118d565b505050565b6008546001600160a01b031633146108615760405162461bcd60e51b81526004016106cb90611c4e565b61086b81836111e8565b5050565b6008546001600160a01b031633146108995760405162461bcd60e51b81526004016106cb90611c4e565b600a805460ff1916911515919091179055565b610832838383611201565b6008546001600160a01b031633146108e15760405162461bcd60e51b81526004016106cb90611c4e565b6040515f90339047908381818185875af1925050503d805f8114610920576040519150601f19603f3d011682016040523d82523d5f602084013e610925565b606091505b5050905080610932575f80fd5b50565b61083283838360405180602001604052805f815250610edf565b6008546001600160a01b031633146109795760405162461bcd60e51b81526004016106cb90611c4e565b600f55565b6008546001600160a01b031633146109a85760405162461bcd60e51b81526004016106cb90611c4e565b600c610832828483611cff565b600260095403610a075760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0060448201526064016106cb565b6002600955601154335f908152601260205260409020541115610a6c5760405162461bcd60e51b815260206004820152601b60248201527f416464726573732068617320616c726561647920636c61696d6564000000000060448201526064016106cb565b600e54601154600b54610a7f9190611dcd565b1115610ac55760405162461bcd60e51b81526020600482015260156024820152744672656520737570706c792065786365656465642160581b60448201526064016106cb565b600d546011546001545f54035f1901610ade9190611dcd565b1115610b1a5760405162461bcd60e51b815260206004820152600b60248201526a4d617820737570706c792160a81b60448201526064016106cb565b600a5460ff1615610b575760405162461bcd60e51b81526020600482015260076024820152665061757365642160c81b60448201526064016106cb565b610b7c33335f90815260126020526040902054601154610b779190611de0565b6111e8565b601154335f908152601260205260408120829055600b8054909190610ba2908490611dcd565b90915550506001600955565b6008546001600160a01b03163314610bd85760405162461bcd60e51b81526004016106cb90611c4e565b601055565b5f610be7826113ea565b5192915050565b6008546001600160a01b03163314610c185760405162461bcd60e51b81526004016106cb90611c4e565b600d55565b5f6001600160a01b038216610c45576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b03165f9081526005602052604090205467ffffffffffffffff1690565b6008546001600160a01b03163314610c945760405162461bcd60e51b81526004016106cb90611c4e565b610c9d5f61150e565b565b6060600380546106e890611c83565b600260095403610d005760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0060448201526064016106cb565b60026009558015801590610d1657506010548111155b610d545760405162461bcd60e51b815260206004820152600f60248201526e496e76616c696420616d6f756e742160881b60448201526064016106cb565b600d546001545f54839190035f1901610d6d9190611dcd565b1115610da95760405162461bcd60e51b815260206004820152600b60248201526a4d617820737570706c792160a81b60448201526064016106cb565b600a5460ff1615610de65760405162461bcd60e51b81526020600482015260076024820152665061757365642160c81b60448201526064016106cb565b80600f54610df49190611df3565b341015610e395760405162461bcd60e51b8152602060048201526013602482015272496e73756666696369656e742066756e64732160681b60448201526064016106cb565b610e4333826111e8565b506001600955565b336001600160a01b03831603610e745760405163b06307db60e01b815260040160405180910390fd5b335f8181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b610eea848484611201565b6001600160a01b0383163b15158015610f0c5750610f0a8484848461155f565b155b15610f2a576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b6060610f3b82611157565b610f7d5760405162461bcd60e51b815260206004820152601360248201527255524920646f6573206e6f742065786973742160681b60448201526064016106cb565b5f600c8054610f8b90611c83565b905011610fa65760405180602001604052805f81525061069b565b600c610fb183611647565b604051602001610fc2929190611e0a565b60405160208183030381529060405292915050565b600c8054610fe490611c83565b80601f016020809104026020016040519081016040528092919081815260200182805461101090611c83565b801561105b5780601f106110325761010080835404028352916020019161105b565b820191905f5260205f20905b81548152906001019060200180831161103e57829003601f168201915b505050505081565b6001600160a01b039182165f90815260076020908152604080832093909416825291909152205460ff1690565b6008546001600160a01b031633146110ba5760405162461bcd60e51b81526004016106cb90611c4e565b6001600160a01b03811661111f5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016106cb565b6109328161150e565b6008546001600160a01b031633146111525760405162461bcd60e51b81526004016106cb90611c4e565b600e55565b5f8160011115801561116957505f5482105b801561069b5750505f90815260046020526040902054600160e01b900460ff161590565b5f8281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b61086b828260405180602001604052805f815250611744565b5f61120b826113ea565b9050836001600160a01b0316815f01516001600160a01b0316146112415760405162a1148160e81b815260040160405180910390fd5b5f336001600160a01b038616148061125e575061125e8533611063565b8061127957503361126e84610769565b6001600160a01b0316145b90508061129957604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b0384166112c057604051633a954ecd60e21b815260040160405180910390fd5b6112cb5f848761118d565b6001600160a01b038581165f908152600560209081526040808320805467ffffffffffffffff1980821667ffffffffffffffff9283165f1901831617909255898616808652838620805493841693831660019081018416949094179055898652600490945282852080546001600160e01b031916909417600160a01b4290921691909102178355870180845292208054919390911661139e575f54821461139e578054602086015167ffffffffffffffff16600160a01b026001600160e01b03199091166001600160a01b038a16171781555b50505082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b604080516060810182525f8082526020820181905291810191909152818060011115801561141857505f5481105b156114f5575f81815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b810467ffffffffffffffff1692820192909252600160e01b90910460ff161515918101829052906114f35780516001600160a01b03161561148b579392505050565b505f19015f81815260046020908152604091829020825160608101845290546001600160a01b038116808352600160a01b820467ffffffffffffffff1693830193909352600160e01b900460ff16151592810192909252156114ee579392505050565b61148b565b505b604051636f96cda160e11b815260040160405180910390fd5b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b604051630a85bd0160e11b81525f906001600160a01b0385169063150b7a0290611593903390899088908890600401611e8d565b6020604051808303815f875af19250505080156115cd575060408051601f3d908101601f191682019092526115ca91810190611ec9565b60015b611629573d8080156115fa576040519150601f19603f3d011682016040523d82523d5f602084013e6115ff565b606091505b5080515f03611621576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b6060815f0361166d5750506040805180820190915260018152600360fc1b602082015290565b815f5b8115611696578061168081611ee4565b915061168f9050600a83611f10565b9150611670565b5f8167ffffffffffffffff8111156116b0576116b0611b3d565b6040519080825280601f01601f1916602001820160405280156116da576020820181803683370190505b5090505b841561163f576116ef600183611de0565b91506116fc600a86611f23565b611707906030611dcd565b60f81b81838151811061171c5761171c611f36565b60200101906001600160f81b03191690815f1a90535061173d600a86611f10565b94506116de565b61083283838360015f546001600160a01b03851661177457604051622e076360e81b815260040160405180910390fd5b835f036117945760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b0385165f81815260056020908152604080832080546fffffffffffffffffffffffffffffffff19811667ffffffffffffffff8083168c0181169182176801000000000000000067ffffffffffffffff1990941690921783900481168c01811690920217909155858452600490925290912080546001600160e01b031916909217600160a01b42909216919091021790558080850183801561184557506001600160a01b0387163b15155b156118c9575b60405182906001600160a01b038916905f907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a46118945f88848060010195508861155f565b6118b1576040516368d2bf6b60e11b815260040160405180910390fd5b80820361184b57825f54146118c4575f80fd5b61190d565b5b6040516001830192906001600160a01b038916905f907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a48082036118ca575b505f556113e3565b6001600160e01b031981168114610932575f80fd5b5f6020828403121561193a575f80fd5b813561194581611915565b9392505050565b5f6020828403121561195c575f80fd5b5035919050565b5f5b8381101561197d578181015183820152602001611965565b50505f910152565b5f815180845261199c816020860160208601611963565b601f01601f19169290920160200192915050565b602081525f6119456020830184611985565b80356001600160a01b03811681146119d8575f80fd5b919050565b5f80604083850312156119ee575f80fd5b6119f7836119c2565b946020939093013593505050565b5f8060408385031215611a16575f80fd5b82359150611a26602084016119c2565b90509250929050565b803580151581146119d8575f80fd5b5f60208284031215611a4e575f80fd5b61194582611a2f565b5f805f60608486031215611a69575f80fd5b611a72846119c2565b9250611a80602085016119c2565b9150604084013590509250925092565b5f8060208385031215611aa1575f80fd5b823567ffffffffffffffff80821115611ab8575f80fd5b818501915085601f830112611acb575f80fd5b813581811115611ad9575f80fd5b866020828501011115611aea575f80fd5b60209290920196919550909350505050565b5f60208284031215611b0c575f80fd5b611945826119c2565b5f8060408385031215611b26575f80fd5b611b2f836119c2565b9150611a2660208401611a2f565b634e487b7160e01b5f52604160045260245ffd5b5f805f8060808587031215611b64575f80fd5b611b6d856119c2565b9350611b7b602086016119c2565b925060408501359150606085013567ffffffffffffffff80821115611b9e575f80fd5b818701915087601f830112611bb1575f80fd5b813581811115611bc357611bc3611b3d565b604051601f8201601f19908116603f01168101908382118183101715611beb57611beb611b3d565b816040528281528a6020848701011115611c03575f80fd5b826020860160208301375f60208483010152809550505050505092959194509250565b5f8060408385031215611c37575f80fd5b611c40836119c2565b9150611a26602084016119c2565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600181811c90821680611c9757607f821691505b602082108103611cb557634e487b7160e01b5f52602260045260245ffd5b50919050565b601f82111561083257805f5260205f20601f840160051c81016020851015611ce05750805b601f840160051c820191505b818110156113e3575f8155600101611cec565b67ffffffffffffffff831115611d1757611d17611b3d565b611d2b83611d258354611c83565b83611cbb565b5f601f841160018114611d5c575f8515611d455750838201355b5f19600387901b1c1916600186901b1783556113e3565b5f83815260208120601f198716915b82811015611d8b5786850135825560209485019460019092019101611d6b565b5086821015611da7575f1960f88860031b161c19848701351681555b505060018560011b0183555050505050565b634e487b7160e01b5f52601160045260245ffd5b8082018082111561069b5761069b611db9565b8181038181111561069b5761069b611db9565b808202811582820484141761069b5761069b611db9565b5f808454611e1781611c83565b60018281168015611e2f5760018114611e4457611e70565b60ff1984168752821515830287019450611e70565b885f526020805f205f5b85811015611e675781548a820152908401908201611e4e565b50505082870194505b505050508351611e84818360208801611963565b01949350505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190525f90611ebf90830184611985565b9695505050505050565b5f60208284031215611ed9575f80fd5b815161194581611915565b5f60018201611ef557611ef5611db9565b5060010190565b634e487b7160e01b5f52601260045260245ffd5b5f82611f1e57611f1e611efc565b500490565b5f82611f3157611f31611efc565b500690565b634e487b7160e01b5f52603260045260245ffdfea2646970667358221220e408fb350a10f5f88bf3e19c5e31e590d1435280711a22c1ff11b52fce78bdc464736f6c63430008160033

Deployed Bytecode Sourcemap

48622:3289:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30175:355;;;;;;;;;;-1:-1:-1;30175:355:0;;;;;:::i;:::-;;:::i;:::-;;;565:14:1;;558:22;540:41;;528:2;513:18;30175:355:0;;;;;;;;50583:96;;;;;;;;;;-1:-1:-1;50583:96:0;;;;;:::i;:::-;;:::i;:::-;;33370:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;34970:245::-;;;;;;;;;;-1:-1:-1;34970:245:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;1697:32:1;;;1679:51;;1667:2;1652:18;34970:245:0;1533:203:1;34533:371:0;;;;;;;;;;-1:-1:-1;34533:371:0;;;;;:::i;:::-;;:::i;50124:151::-;;;;;;;;;;-1:-1:-1;50124:151:0;;;;;:::i;:::-;;:::i;48744:23::-;;;;;;;;;;;;;;;;;;;2583:25:1;;;2571:2;2556:18;48744:23:0;2437:177:1;48921:33:0;;;;;;;;;;;;;;;;50907:83;;;;;;;;;;-1:-1:-1;50907:83:0;;;;;:::i;:::-;;:::i;29424:303::-;;;;;;;;;;-1:-1:-1;50375:1:0;29678:12;29468:7;29662:13;:28;-1:-1:-1;;29662:46:0;29424:303;;35958:170;;;;;;;;;;-1:-1:-1;35958:170:0;;;;;:::i;:::-;;:::i;48883:31::-;;;;;;;;;;;;;;;;50998:184;;;;;;;;;;;;;:::i;36199:185::-;;;;;;;;;;-1:-1:-1;36199:185:0;;;;;:::i;:::-;;:::i;50392:80::-;;;;;;;;;;-1:-1:-1;50392:80:0;;;;;:::i;:::-;;:::i;51190:104::-;;;;;;;;;;-1:-1:-1;51190:104:0;;;;;:::i;:::-;;:::i;49604:512::-;;;;;;;;;;;;;:::i;48719:18::-;;;;;;;;;;-1:-1:-1;48719:18:0;;;;;;;;50480:95;;;;;;;;;;-1:-1:-1;50480:95:0;;;;;:::i;:::-;;:::i;33178:125::-;;;;;;;;;;-1:-1:-1;33178:125:0;;;;;:::i;:::-;;:::i;50687:100::-;;;;;;;;;;-1:-1:-1;50687:100:0;;;;;:::i;:::-;;:::i;30594:206::-;;;;;;;;;;-1:-1:-1;30594:206:0;;;;;:::i;:::-;;:::i;7443:103::-;;;;;;;;;;;;;:::i;49032:45::-;;;;;;;;;;-1:-1:-1;49032:45:0;;;;;:::i;:::-;;;;;;;;;;;;;;48961:27;;;;;;;;;;;;;;;;6792:87;;;;;;;;;;-1:-1:-1;6865:6:0;;-1:-1:-1;;;;;6865:6:0;6792:87;;33539:104;;;;;;;;;;;;;:::i;49137:459::-;;;;;;:::i;:::-;;:::i;35287:319::-;;;;;;;;;;-1:-1:-1;35287:319:0;;;;;:::i;:::-;;:::i;48995:30::-;;;;;;;;;;;;;;;;36455:406;;;;;;;;;;-1:-1:-1;36455:406:0;;;;;:::i;:::-;;:::i;51424:484::-;;;;;;;;;;-1:-1:-1;51424:484:0;;;;;:::i;:::-;;:::i;48774:64::-;;;;;;;;;;;;;:::i;48845:31::-;;;;;;;;;;;;;;;;35677:214;;;;;;;;;;-1:-1:-1;35677:214:0;;;;;:::i;:::-;;:::i;7701:238::-;;;;;;;;;;-1:-1:-1;7701:238:0;;;;;:::i;:::-;;:::i;50795:104::-;;;;;;;;;;-1:-1:-1;50795:104:0;;;;;:::i;:::-;;:::i;30175:355::-;30322:4;-1:-1:-1;;;;;;30364:40:0;;-1:-1:-1;;;30364:40:0;;:105;;-1:-1:-1;;;;;;;30421:48:0;;-1:-1:-1;;;30421:48:0;30364:105;:158;;;-1:-1:-1;;;;;;;;;;20108:40:0;;;30486:36;30344:178;30175:355;-1:-1:-1;;30175:355:0:o;50583:96::-;6865:6;;-1:-1:-1;;;;;6865:6:0;5574:10;7012:23;7004:68;;;;-1:-1:-1;;;7004:68:0;;;;;;;:::i;:::-;;;;;;;;;50650:11:::1;:21:::0;50583:96::o;33370:100::-;33424:13;33457:5;33450:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33370:100;:::o;34970:245::-;35074:7;35104:16;35112:7;35104;:16::i;:::-;35099:64;;35129:34;;-1:-1:-1;;;35129:34:0;;;;;;;;;;;35099:64;-1:-1:-1;35183:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;35183:24:0;;34970:245::o;34533:371::-;34606:13;34622:24;34638:7;34622:15;:24::i;:::-;34606:40;;34667:5;-1:-1:-1;;;;;34661:11:0;:2;-1:-1:-1;;;;;34661:11:0;;34657:48;;34681:24;;-1:-1:-1;;;34681:24:0;;;;;;;;;;;34657:48;5574:10;-1:-1:-1;;;;;34722:21:0;;;;;;:63;;-1:-1:-1;34748:37:0;34765:5;5574:10;35677:214;:::i;34748:37::-;34747:38;34722:63;34718:138;;;34809:35;;-1:-1:-1;;;34809:35:0;;;;;;;;;;;34718:138;34868:28;34877:2;34881:7;34890:5;34868:8;:28::i;:::-;34595:309;34533:371;;:::o;50124:151::-;6865:6;;-1:-1:-1;;;;;6865:6:0;5574:10;7012:23;7004:68;;;;-1:-1:-1;;;7004:68:0;;;;;;;:::i;:::-;50234:33:::1;50244:9;50255:11;50234:9;:33::i;:::-;50124:151:::0;;:::o;50907:83::-;6865:6;;-1:-1:-1;;;;;6865:6:0;5574:10;7012:23;7004:68;;;;-1:-1:-1;;;7004:68:0;;;;;;;:::i;:::-;50967:6:::1;:15:::0;;-1:-1:-1;;50967:15:0::1;::::0;::::1;;::::0;;;::::1;::::0;;50907:83::o;35958:170::-;36092:28;36102:4;36108:2;36112:7;36092:9;:28::i;50998:184::-;6865:6;;-1:-1:-1;;;;;6865:6:0;5574:10;7012:23;7004:68;;;;-1:-1:-1;;;7004:68:0;;;;;;;:::i;:::-;51065:82:::1;::::0;51047:12:::1;::::0;51073:10:::1;::::0;51111:21:::1;::::0;51047:12;51065:82;51047:12;51065:82;51111:21;51073:10;51065:82:::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51046:101;;;51166:7;51158:16;;;::::0;::::1;;51035:147;50998:184::o:0;36199:185::-;36337:39;36354:4;36360:2;36364:7;36337:39;;;;;;;;;;;;:16;:39::i;50392:80::-;6865:6;;-1:-1:-1;;;;;6865:6:0;5574:10;7012:23;7004:68;;;;-1:-1:-1;;;7004:68:0;;;;;;;:::i;:::-;50452:4:::1;:12:::0;50392:80::o;51190:104::-;6865:6;;-1:-1:-1;;;;;6865:6:0;5574:10;7012:23;7004:68;;;;-1:-1:-1;;;7004:68:0;;;;;;;:::i;:::-;51263:13:::1;:23;51279:7:::0;;51263:13;:23:::1;:::i;49604:512::-:0;1714:1;2312:7;;:19;2304:63;;;;-1:-1:-1;;;2304:63:0;;9070:2:1;2304:63:0;;;9052:21:1;9109:2;9089:18;;;9082:30;9148:33;9128:18;;;9121:61;9199:18;;2304:63:0;8868:355:1;2304:63:0;1714:1;2445:7;:18;49689:11:::1;::::0;49674:10:::1;49663:22;::::0;;;:10:::1;:22;::::0;;;;;:37:::1;;49655:77;;;::::0;-1:-1:-1;;;49655:77:0;;9430:2:1;49655:77:0::1;::::0;::::1;9412:21:1::0;9469:2;9449:18;;;9442:30;9508:29;9488:18;;;9481:57;9555:18;;49655:77:0::1;9228:351:1::0;49655:77:0::1;49773:10;;49758:11;;49751:4;;:18;;;;:::i;:::-;:32;;49743:66;;;::::0;-1:-1:-1;;;49743:66:0;;10048:2:1;49743:66:0::1;::::0;::::1;10030:21:1::0;10087:2;10067:18;;;10060:30;-1:-1:-1;;;10106:18:1;;;10099:51;10167:18;;49743:66:0::1;9846:345:1::0;49743:66:0::1;49873:9;::::0;49858:11:::1;::::0;50375:1;29678:12;29468:7;29662:13;:28;-1:-1:-1;;29662:46:0;49842:27:::1;;;;:::i;:::-;:40;;49820:101;;;::::0;-1:-1:-1;;;49820:101:0;;10398:2:1;49820:101:0::1;::::0;::::1;10380:21:1::0;10437:2;10417:18;;;10410:30;-1:-1:-1;;;10456:18:1;;;10449:41;10507:18;;49820:101:0::1;10196:335:1::0;49820:101:0::1;49941:6;::::0;::::1;;49940:7;49932:27;;;::::0;-1:-1:-1;;;49932:27:0;;10738:2:1;49932:27:0::1;::::0;::::1;10720:21:1::0;10777:1;10757:18;;;10750:29;-1:-1:-1;;;10795:18:1;;;10788:37;10842:18;;49932:27:0::1;10536:330:1::0;49932:27:0::1;49970:61;5574:10:::0;50019::::1;50008:22;::::0;;;:10:::1;:22;::::0;;;;;49994:11:::1;::::0;:36:::1;::::0;50008:22;49994:36:::1;:::i;:::-;49970:9;:61::i;:::-;50067:11;::::0;50053:10:::1;50042:22;::::0;;;:10:::1;:22;::::0;;;;:36;;;50089:4:::1;:19:::0;;:4;;50042:22;50089:19:::1;::::0;50067:11;;50089:19:::1;:::i;:::-;::::0;;;-1:-1:-1;;1670:1:0;2624:7;:22;49604:512::o;50480:95::-;6865:6;;-1:-1:-1;;;;;6865:6:0;5574:10;7012:23;7004:68;;;;-1:-1:-1;;;7004:68:0;;;;;;;:::i;:::-;50550:7:::1;:17:::0;50480:95::o;33178:125::-;33242:7;33269:21;33282:7;33269:12;:21::i;:::-;:26;;33178:125;-1:-1:-1;;33178:125:0:o;50687:100::-;6865:6;;-1:-1:-1;;;;;6865:6:0;5574:10;7012:23;7004:68;;;;-1:-1:-1;;;7004:68:0;;;;;;;:::i;:::-;50757:9:::1;:22:::0;50687:100::o;30594:206::-;30658:7;-1:-1:-1;;;;;30682:19:0;;30678:60;;30710:28;;-1:-1:-1;;;30710:28:0;;;;;;;;;;;30678:60;-1:-1:-1;;;;;;30764:19:0;;;;;:12;:19;;;;;:27;;;;30594:206::o;7443:103::-;6865:6;;-1:-1:-1;;;;;6865:6:0;5574:10;7012:23;7004:68;;;;-1:-1:-1;;;7004:68:0;;;;;;;:::i;:::-;7508:30:::1;7535:1;7508:18;:30::i;:::-;7443:103::o:0;33539:104::-;33595:13;33628:7;33621:14;;;;;:::i;49137:459::-;1714:1;2312:7;;:19;2304:63;;;;-1:-1:-1;;;2304:63:0;;9070:2:1;2304:63:0;;;9052:21:1;9109:2;9089:18;;;9082:30;9148:33;9128:18;;;9121:61;9199:18;;2304:63:0;8868:355:1;2304:63:0;1714:1;2445:7;:18;49233:15;;;;;:41:::1;;;49267:7;;49252:11;:22;;49233:41;49211:106;;;::::0;-1:-1:-1;;;49211:106:0;;11206:2:1;49211:106:0::1;::::0;::::1;11188:21:1::0;11245:2;11225:18;;;11218:30;-1:-1:-1;;;11264:18:1;;;11257:45;11319:18;;49211:106:0::1;11004:339:1::0;49211:106:0::1;49381:9;::::0;50375:1;29678:12;29468:7;29662:13;49366:11;;29662:28;;-1:-1:-1;;29662:46:0;49350:27:::1;;;;:::i;:::-;:40;;49328:101;;;::::0;-1:-1:-1;;;49328:101:0;;10398:2:1;49328:101:0::1;::::0;::::1;10380:21:1::0;10437:2;10417:18;;;10410:30;-1:-1:-1;;;10456:18:1;;;10449:41;10507:18;;49328:101:0::1;10196:335:1::0;49328:101:0::1;49449:6;::::0;::::1;;49448:7;49440:27;;;::::0;-1:-1:-1;;;49440:27:0;;10738:2:1;49440:27:0::1;::::0;::::1;10720:21:1::0;10777:1;10757:18;;;10750:29;-1:-1:-1;;;10795:18:1;;;10788:37;10842:18;;49440:27:0::1;10536:330:1::0;49440:27:0::1;49506:11;49499:4;;:18;;;;:::i;:::-;49486:9;:31;;49478:63;;;::::0;-1:-1:-1;;;49478:63:0;;11723:2:1;49478:63:0::1;::::0;::::1;11705:21:1::0;11762:2;11742:18;;;11735:30;-1:-1:-1;;;11781:18:1;;;11774:49;11840:18;;49478:63:0::1;11521:343:1::0;49478:63:0::1;49552:36;5574:10:::0;49576:11:::1;49552:9;:36::i;:::-;-1:-1:-1::0;1670:1:0;2624:7;:22;49137:459::o;35287:319::-;5574:10;-1:-1:-1;;;;;35418:24:0;;;35414:54;;35451:17;;-1:-1:-1;;;35451:17:0;;;;;;;;;;;35414:54;5574:10;35481:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;35481:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;35481:53:0;;;;;;;;;;35550:48;;540:41:1;;;35481:42:0;;5574:10;35550:48;;513:18:1;35550:48:0;;;;;;;35287:319;;:::o;36455:406::-;36622:28;36632:4;36638:2;36642:7;36622:9;:28::i;:::-;-1:-1:-1;;;;;36679:13:0;;9699:19;:23;;36679:89;;;;;36712:56;36743:4;36749:2;36753:7;36762:5;36712:30;:56::i;:::-;36711:57;36679:89;36661:193;;;36802:40;;-1:-1:-1;;;36802:40:0;;;;;;;;;;;36661:193;36455:406;;;;:::o;51424:484::-;51543:13;51582:17;51590:8;51582:7;:17::i;:::-;51574:49;;;;-1:-1:-1;;;51574:49:0;;12071:2:1;51574:49:0;;;12053:21:1;12110:2;12090:18;;;12083:30;-1:-1:-1;;;12129:18:1;;;12122:49;12188:18;;51574:49:0;11869:343:1;51574:49:0;51684:1;51660:13;51654:27;;;;;:::i;:::-;;;:31;:246;;;;;;;;;;;;;;;;;51777:13;51817:19;:8;:17;:19::i;:::-;51734:125;;;;;;;;;:::i;:::-;;;;;;;;;;;;;51634:266;51424:484;-1:-1:-1;;51424:484:0:o;48774:64::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;35677:214::-;-1:-1:-1;;;;;35848:25:0;;;35819:4;35848:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;35677:214::o;7701:238::-;6865:6;;-1:-1:-1;;;;;6865:6:0;5574:10;7012:23;7004:68;;;;-1:-1:-1;;;7004:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;7804:22:0;::::1;7782:110;;;::::0;-1:-1:-1;;;7782:110:0;;13445:2:1;7782:110:0::1;::::0;::::1;13427:21:1::0;13484:2;13464:18;;;13457:30;13523:34;13503:18;;;13496:62;-1:-1:-1;;;13574:18:1;;;13567:36;13620:19;;7782:110:0::1;13243:402:1::0;7782:110:0::1;7903:28;7922:8;7903:18;:28::i;50795:104::-:0;6865:6;;-1:-1:-1;;;;;6865:6:0;5574:10;7012:23;7004:68;;;;-1:-1:-1;;;7004:68:0;;;;;;;:::i;:::-;50867:10:::1;:24:::0;50795:104::o;37116:213::-;37173:4;37229:7;50375:1;37210:26;;:66;;;;;37263:13;;37253:7;:23;37210:66;:111;;;;-1:-1:-1;;37294:20:0;;;;:11;:20;;;;;:27;-1:-1:-1;;;37294:27:0;;;;37293:28;;37116:213::o;45503:196::-;45618:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;45618:29:0;-1:-1:-1;;;;;45618:29:0;;;;;;;;;45663:28;;45618:24;;45663:28;;;;;;;45503:196;;;:::o;37337:104::-;37406:27;37416:2;37420:8;37406:27;;;;;;;;;;;;:9;:27::i;40446:2130::-;40561:35;40599:21;40612:7;40599:12;:21::i;:::-;40561:59;;40659:4;-1:-1:-1;;;;;40637:26:0;:13;:18;;;-1:-1:-1;;;;;40637:26:0;;40633:67;;40672:28;;-1:-1:-1;;;40672:28:0;;;;;;;;;;;40633:67;40713:22;5574:10;-1:-1:-1;;;;;40739:20:0;;;;:73;;-1:-1:-1;40776:36:0;40793:4;5574:10;35677:214;:::i;40776:36::-;40739:126;;;-1:-1:-1;5574:10:0;40829:20;40841:7;40829:11;:20::i;:::-;-1:-1:-1;;;;;40829:36:0;;40739:126;40713:153;;40884:17;40879:66;;40910:35;;-1:-1:-1;;;40910:35:0;;;;;;;;;;;40879:66;-1:-1:-1;;;;;40960:16:0;;40956:52;;40985:23;;-1:-1:-1;;;40985:23:0;;;;;;;;;;;40956:52;41129:35;41146:1;41150:7;41159:4;41129:8;:35::i;:::-;-1:-1:-1;;;;;41460:18:0;;;;;;;:12;:18;;;;;;;;:31;;-1:-1:-1;;41460:31:0;;;;;;;-1:-1:-1;;41460:31:0;;;;;;;41506:16;;;;;;;;;:29;;;;;;;;-1:-1:-1;41506:29:0;;;;;;;;;;;41586:20;;;:11;:20;;;;;;41621:18;;-1:-1:-1;;;;;;41654:49:0;;;;-1:-1:-1;;;41687:15:0;41654:49;;;;;;;;;;41977:11;;42037:24;;;;;42080:13;;41586:20;;42037:24;;42080:13;42076:384;;42290:13;;42275:11;:28;42271:174;;42328:20;;42397:28;;;;42371:54;;-1:-1:-1;;;42371:54:0;-1:-1:-1;;;;;;42371:54:0;;;-1:-1:-1;;;;;42328:20:0;;42371:54;;;;42271:174;41435:1036;;;42507:7;42503:2;-1:-1:-1;;;;;42488:27:0;42497:4;-1:-1:-1;;;;;42488:27:0;;;;;;;;;;;42526:42;40550:2026;;40446:2130;;;:::o;31975:1141::-;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;32118:7:0;;50375:1;32167:23;;:47;;;;;32201:13;;32194:4;:20;32167:47;32163:886;;;32235:31;32269:17;;;:11;:17;;;;;;;;;32235:51;;;;;;;;;-1:-1:-1;;;;;32235:51:0;;;;-1:-1:-1;;;32235:51:0;;;;;;;;;;;-1:-1:-1;;;32235:51:0;;;;;;;;;;;;;;32305:729;;32355:14;;-1:-1:-1;;;;;32355:28:0;;32351:101;;32419:9;31975:1141;-1:-1:-1;;;31975:1141:0:o;32351:101::-;-1:-1:-1;;;32794:6:0;32839:17;;;;:11;:17;;;;;;;;;32827:29;;;;;;;;;-1:-1:-1;;;;;32827:29:0;;;;;-1:-1:-1;;;32827:29:0;;;;;;;;;;;-1:-1:-1;;;32827:29:0;;;;;;;;;;;;;32887:28;32883:109;;32955:9;31975:1141;-1:-1:-1;;;31975:1141:0:o;32883:109::-;32754:261;;;32216:833;32163:886;33077:31;;-1:-1:-1;;;33077:31:0;;;;;;;;;;;8099:191;8192:6;;;-1:-1:-1;;;;;8209:17:0;;;-1:-1:-1;;;;;;8209:17:0;;;;;;;8242:40;;8192:6;;;8209:17;8192:6;;8242:40;;8173:16;;8242:40;8162:128;8099:191;:::o;46191:772::-;46388:155;;-1:-1:-1;;;46388:155:0;;46354:4;;-1:-1:-1;;;;;46388:36:0;;;;;:155;;5574:10;;46474:4;;46497:7;;46523:5;;46388:155;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;46388:155:0;;;;;;;;-1:-1:-1;;46388:155:0;;;;;;;;;;;;:::i;:::-;;;46371:585;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46714:6;:13;46731:1;46714:18;46710:235;;46760:40;;-1:-1:-1;;;46760:40:0;;;;;;;;;;;46710:235;46903:6;46897:13;46888:6;46884:2;46880:15;46873:38;46371:585;-1:-1:-1;;;;;;46599:55:0;-1:-1:-1;;;46599:55:0;;-1:-1:-1;46371:585:0;46191:772;;;;;;:::o;3025:723::-;3081:13;3302:5;3311:1;3302:10;3298:53;;-1:-1:-1;;3329:10:0;;;;;;;;;;;;-1:-1:-1;;;3329:10:0;;;;;3025:723::o;3298:53::-;3376:5;3361:12;3417:78;3424:9;;3417:78;;3450:8;;;;:::i;:::-;;-1:-1:-1;3473:10:0;;-1:-1:-1;3481:2:0;3473:10;;:::i;:::-;;;3417:78;;;3505:19;3537:6;3527:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;3527:17:0;;3505:39;;3555:154;3562:10;;3555:154;;3589:11;3599:1;3589:11;;:::i;:::-;;-1:-1:-1;3658:10:0;3666:2;3658:5;:10;:::i;:::-;3645:24;;:2;:24;:::i;:::-;3632:39;;3615:6;3622;3615:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;3615:56:0;;;;;;;;-1:-1:-1;3686:11:0;3695:2;3686:11;;:::i;:::-;;;3555:154;;37804:163;37927:32;37933:2;37937:8;37947:5;37954:4;38365:20;38388:13;-1:-1:-1;;;;;38416:16:0;;38412:48;;38441:19;;-1:-1:-1;;;38441:19:0;;;;;;;;;;;38412:48;38475:8;38487:1;38475:13;38471:44;;38497:18;;-1:-1:-1;;;38497:18:0;;;;;;;;;;;38471:44;-1:-1:-1;;;;;38866:16:0;;;;;;:12;:16;;;;;;;;:44;;-1:-1:-1;;38925:49:0;;38866:44;;;;;;;;38925:49;;;;-1:-1:-1;;38866:44:0;;;;;;38925:49;;;;;;;;;;;;;;;;38991:25;;;:11;:25;;;;;;:35;;-1:-1:-1;;;;;;39041:66:0;;;;-1:-1:-1;;;39091:15:0;39041:66;;;;;;;;;;38991:25;39188:23;;;39232:4;:23;;;;-1:-1:-1;;;;;;39240:13:0;;9699:19;:23;;39240:15;39228:832;;;39276:505;39307:38;;39332:12;;-1:-1:-1;;;;;39307:38:0;;;39324:1;;39307:38;;39324:1;;39307:38;39399:212;39468:1;39501:2;39534:14;;;;;;39579:5;39399:30;:212::i;:::-;39368:365;;39669:40;;-1:-1:-1;;;39669:40:0;;;;;;;;;;;39368:365;39776:3;39760:12;:19;39276:505;;39862:12;39845:13;;:29;39841:43;;39876:8;;;39841:43;39228:832;;;39925:120;39956:40;;39981:14;;;;;-1:-1:-1;;;;;39956:40:0;;;39973:1;;39956:40;;39973:1;;39956:40;40040:3;40024:12;:19;39925:120;;39228:832;-1:-1:-1;40074:13:0;:28;40124:60;36455:406;14:131:1;-1:-1:-1;;;;;;88:32:1;;78:43;;68:71;;135:1;132;125:12;150:245;208:6;261:2;249:9;240:7;236:23;232:32;229:52;;;277:1;274;267:12;229:52;316:9;303:23;335:30;359:5;335:30;:::i;:::-;384:5;150:245;-1:-1:-1;;;150:245:1:o;592:180::-;651:6;704:2;692:9;683:7;679:23;675:32;672:52;;;720:1;717;710:12;672:52;-1:-1:-1;743:23:1;;592:180;-1:-1:-1;592:180:1:o;777:250::-;862:1;872:113;886:6;883:1;880:13;872:113;;;962:11;;;956:18;943:11;;;936:39;908:2;901:10;872:113;;;-1:-1:-1;;1019:1:1;1001:16;;994:27;777:250::o;1032:271::-;1074:3;1112:5;1106:12;1139:6;1134:3;1127:19;1155:76;1224:6;1217:4;1212:3;1208:14;1201:4;1194:5;1190:16;1155:76;:::i;:::-;1285:2;1264:15;-1:-1:-1;;1260:29:1;1251:39;;;;1292:4;1247:50;;1032:271;-1:-1:-1;;1032:271:1:o;1308:220::-;1457:2;1446:9;1439:21;1420:4;1477:45;1518:2;1507:9;1503:18;1495:6;1477:45;:::i;1741:173::-;1809:20;;-1:-1:-1;;;;;1858:31:1;;1848:42;;1838:70;;1904:1;1901;1894:12;1838:70;1741:173;;;:::o;1919:254::-;1987:6;1995;2048:2;2036:9;2027:7;2023:23;2019:32;2016:52;;;2064:1;2061;2054:12;2016:52;2087:29;2106:9;2087:29;:::i;:::-;2077:39;2163:2;2148:18;;;;2135:32;;-1:-1:-1;;;1919:254:1:o;2178:::-;2246:6;2254;2307:2;2295:9;2286:7;2282:23;2278:32;2275:52;;;2323:1;2320;2313:12;2275:52;2359:9;2346:23;2336:33;;2388:38;2422:2;2411:9;2407:18;2388:38;:::i;:::-;2378:48;;2178:254;;;;;:::o;2619:160::-;2684:20;;2740:13;;2733:21;2723:32;;2713:60;;2769:1;2766;2759:12;2784:180;2840:6;2893:2;2881:9;2872:7;2868:23;2864:32;2861:52;;;2909:1;2906;2899:12;2861:52;2932:26;2948:9;2932:26;:::i;2969:328::-;3046:6;3054;3062;3115:2;3103:9;3094:7;3090:23;3086:32;3083:52;;;3131:1;3128;3121:12;3083:52;3154:29;3173:9;3154:29;:::i;:::-;3144:39;;3202:38;3236:2;3225:9;3221:18;3202:38;:::i;:::-;3192:48;;3287:2;3276:9;3272:18;3259:32;3249:42;;2969:328;;;;;:::o;3302:592::-;3373:6;3381;3434:2;3422:9;3413:7;3409:23;3405:32;3402:52;;;3450:1;3447;3440:12;3402:52;3490:9;3477:23;3519:18;3560:2;3552:6;3549:14;3546:34;;;3576:1;3573;3566:12;3546:34;3614:6;3603:9;3599:22;3589:32;;3659:7;3652:4;3648:2;3644:13;3640:27;3630:55;;3681:1;3678;3671:12;3630:55;3721:2;3708:16;3747:2;3739:6;3736:14;3733:34;;;3763:1;3760;3753:12;3733:34;3808:7;3803:2;3794:6;3790:2;3786:15;3782:24;3779:37;3776:57;;;3829:1;3826;3819:12;3776:57;3860:2;3852:11;;;;;3882:6;;-1:-1:-1;3302:592:1;;-1:-1:-1;;;;3302:592:1:o;3899:186::-;3958:6;4011:2;3999:9;3990:7;3986:23;3982:32;3979:52;;;4027:1;4024;4017:12;3979:52;4050:29;4069:9;4050:29;:::i;4090:254::-;4155:6;4163;4216:2;4204:9;4195:7;4191:23;4187:32;4184:52;;;4232:1;4229;4222:12;4184:52;4255:29;4274:9;4255:29;:::i;:::-;4245:39;;4303:35;4334:2;4323:9;4319:18;4303:35;:::i;4349:127::-;4410:10;4405:3;4401:20;4398:1;4391:31;4441:4;4438:1;4431:15;4465:4;4462:1;4455:15;4481:1138;4576:6;4584;4592;4600;4653:3;4641:9;4632:7;4628:23;4624:33;4621:53;;;4670:1;4667;4660:12;4621:53;4693:29;4712:9;4693:29;:::i;:::-;4683:39;;4741:38;4775:2;4764:9;4760:18;4741:38;:::i;:::-;4731:48;;4826:2;4815:9;4811:18;4798:32;4788:42;;4881:2;4870:9;4866:18;4853:32;4904:18;4945:2;4937:6;4934:14;4931:34;;;4961:1;4958;4951:12;4931:34;4999:6;4988:9;4984:22;4974:32;;5044:7;5037:4;5033:2;5029:13;5025:27;5015:55;;5066:1;5063;5056:12;5015:55;5102:2;5089:16;5124:2;5120;5117:10;5114:36;;;5130:18;;:::i;:::-;5205:2;5199:9;5173:2;5259:13;;-1:-1:-1;;5255:22:1;;;5279:2;5251:31;5247:40;5235:53;;;5303:18;;;5323:22;;;5300:46;5297:72;;;5349:18;;:::i;:::-;5389:10;5385:2;5378:22;5424:2;5416:6;5409:18;5464:7;5459:2;5454;5450;5446:11;5442:20;5439:33;5436:53;;;5485:1;5482;5475:12;5436:53;5541:2;5536;5532;5528:11;5523:2;5515:6;5511:15;5498:46;5586:1;5581:2;5576;5568:6;5564:15;5560:24;5553:35;5607:6;5597:16;;;;;;;4481:1138;;;;;;;:::o;5624:260::-;5692:6;5700;5753:2;5741:9;5732:7;5728:23;5724:32;5721:52;;;5769:1;5766;5759:12;5721:52;5792:29;5811:9;5792:29;:::i;:::-;5782:39;;5840:38;5874:2;5863:9;5859:18;5840:38;:::i;5889:356::-;6091:2;6073:21;;;6110:18;;;6103:30;6169:34;6164:2;6149:18;;6142:62;6236:2;6221:18;;5889:356::o;6250:380::-;6329:1;6325:12;;;;6372;;;6393:61;;6447:4;6439:6;6435:17;6425:27;;6393:61;6500:2;6492:6;6489:14;6469:18;6466:38;6463:161;;6546:10;6541:3;6537:20;6534:1;6527:31;6581:4;6578:1;6571:15;6609:4;6606:1;6599:15;6463:161;;6250:380;;;:::o;6971:518::-;7073:2;7068:3;7065:11;7062:421;;;7109:5;7106:1;7099:16;7153:4;7150:1;7140:18;7223:2;7211:10;7207:19;7204:1;7200:27;7194:4;7190:38;7259:4;7247:10;7244:20;7241:47;;;-1:-1:-1;7282:4:1;7241:47;7337:2;7332:3;7328:12;7325:1;7321:20;7315:4;7311:31;7301:41;;7392:81;7410:2;7403:5;7400:13;7392:81;;;7469:1;7455:16;;7436:1;7425:13;7392:81;;7665:1198;7789:18;7784:3;7781:27;7778:53;;;7811:18;;:::i;:::-;7840:94;7930:3;7890:38;7922:4;7916:11;7890:38;:::i;:::-;7884:4;7840:94;:::i;:::-;7960:1;7985:2;7980:3;7977:11;8002:1;7997:608;;;;8649:1;8666:3;8663:93;;;-1:-1:-1;8722:19:1;;;8709:33;8663:93;-1:-1:-1;;7622:1:1;7618:11;;;7614:24;7610:29;7600:40;7646:1;7642:11;;;7597:57;8769:78;;7970:887;;7997:608;6918:1;6911:14;;;6955:4;6942:18;;-1:-1:-1;;8033:17:1;;;8148:229;8162:7;8159:1;8156:14;8148:229;;;8251:19;;;8238:33;8223:49;;8358:4;8343:20;;;;8311:1;8299:14;;;;8178:12;8148:229;;;8152:3;8405;8396:7;8393:16;8390:159;;;8529:1;8525:6;8519:3;8513;8510:1;8506:11;8502:21;8498:34;8494:39;8481:9;8476:3;8472:19;8459:33;8455:79;8447:6;8440:95;8390:159;;;8592:1;8586:3;8583:1;8579:11;8575:19;8569:4;8562:33;7970:887;;7665:1198;;;:::o;9584:127::-;9645:10;9640:3;9636:20;9633:1;9626:31;9676:4;9673:1;9666:15;9700:4;9697:1;9690:15;9716:125;9781:9;;;9802:10;;;9799:36;;;9815:18;;:::i;10871:128::-;10938:9;;;10959:11;;;10956:37;;;10973:18;;:::i;11348:168::-;11421:9;;;11452;;11469:15;;;11463:22;;11449:37;11439:71;;11490:18;;:::i;12217:1021::-;12393:3;12422:1;12455:6;12449:13;12485:36;12511:9;12485:36;:::i;:::-;12540:1;12557:17;;;12583:133;;;;12730:1;12725:358;;;;12550:533;;12583:133;-1:-1:-1;;12616:24:1;;12604:37;;12689:14;;12682:22;12670:35;;12661:45;;;-1:-1:-1;12583:133:1;;12725:358;12756:6;12753:1;12746:17;12786:4;12831;12828:1;12818:18;12858:1;12872:165;12886:6;12883:1;12880:13;12872:165;;;12964:14;;12951:11;;;12944:35;13007:16;;;;12901:10;;12872:165;;;12876:3;;;13066:6;13061:3;13057:16;13050:23;;12550:533;;;;;13114:6;13108:13;13130:68;13189:8;13184:3;13177:4;13169:6;13165:17;13130:68;:::i;:::-;13214:18;;12217:1021;-1:-1:-1;;;;12217:1021:1:o;13650:489::-;-1:-1:-1;;;;;13919:15:1;;;13901:34;;13971:15;;13966:2;13951:18;;13944:43;14018:2;14003:18;;13996:34;;;14066:3;14061:2;14046:18;;14039:31;;;13844:4;;14087:46;;14113:19;;14105:6;14087:46;:::i;:::-;14079:54;13650:489;-1:-1:-1;;;;;;13650:489:1:o;14144:249::-;14213:6;14266:2;14254:9;14245:7;14241:23;14237:32;14234:52;;;14282:1;14279;14272:12;14234:52;14314:9;14308:16;14333:30;14357:5;14333:30;:::i;14398:135::-;14437:3;14458:17;;;14455:43;;14478:18;;:::i;:::-;-1:-1:-1;14525:1:1;14514:13;;14398:135::o;14538:127::-;14599:10;14594:3;14590:20;14587:1;14580:31;14630:4;14627:1;14620:15;14654:4;14651:1;14644:15;14670:120;14710:1;14736;14726:35;;14741:18;;:::i;:::-;-1:-1:-1;14775:9:1;;14670:120::o;14795:112::-;14827:1;14853;14843:35;;14858:18;;:::i;:::-;-1:-1:-1;14892:9:1;;14795:112::o;14912:127::-;14973:10;14968:3;14964:20;14961:1;14954:31;15004:4;15001:1;14994:15;15028:4;15025:1;15018:15

Swarm Source

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