ETH Price: $3,290.72 (+1.51%)
Gas: 2 Gwei

Token

TubbyMfers (TMFERS)
 

Overview

Max Total Supply

79 TMFERS

Holders

26

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
suckmyfeet.eth
Balance
1 TMFERS
0xe56a354b83a748a2aaa6b8fdaa293d9f891bd388
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:
TUBBYMFERS

Compiler Version
v0.8.9+commit.e5eed63a

Optimization Enabled:
Yes with 400 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

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


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

pragma solidity ^0.8.0;

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

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

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

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

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

        _;

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

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


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

pragma solidity ^0.8.0;

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.1;

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

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;


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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

// File: contracts/ERC721A.sol


// Creator: Chiru Labs

pragma solidity ^0.8.4;









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

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

    struct TokenOwnership {
        address addr;
        uint64 startTimestamp;
    }

    struct AddressData {
        uint128 balance;
        uint128 numberMinted;
    }

    uint256 internal _currentIndex;

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

    /**
     * @dev See {IERC721Enumerable-totalSupply}.
     */
    function totalSupply() public view override returns (uint256) {
        return _currentIndex;
    }

    /**
     * @dev See {IERC721Enumerable-tokenByIndex}.
     */
    function tokenByIndex(uint256 index) public view override returns (uint256) {
        if (index >= totalSupply()) revert TokenIndexOutOfBounds();
        return index;
    }

    /**
     * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}.
     * This read function is O(totalSupply). If calling from a separate contract, be sure to test gas first.
     * It may also degrade with extremely large collection sizes (e.g >> 10000), test for your use case.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) public view override returns (uint256) {
        if (index >= balanceOf(owner)) revert OwnerIndexOutOfBounds();
        uint256 numMintedSoFar = totalSupply();
        uint256 tokenIdsIdx;
        address currOwnershipAddr;

        // Counter overflow is impossible as the loop breaks when uint256 i is equal to another uint256 numMintedSoFar.
        unchecked {
            for (uint256 i; i < numMintedSoFar; i++) {
                TokenOwnership memory ownership = _ownerships[i];
                if (ownership.addr != address(0)) {
                    currOwnershipAddr = ownership.addr;
                }
                if (currOwnershipAddr == owner) {
                    if (tokenIdsIdx == index) {
                        return i;
                    }
                    tokenIdsIdx++;
                }
            }
        }

        // Execution should never reach this point.
        assert(false);
    }

    /**
     * @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 ||
            interfaceId == type(IERC721Enumerable).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);
    }

    function _numberMinted(address owner) internal view returns (uint256) {
        if (owner == address(0)) revert MintedQueryForZeroAddress();
        return uint256(_addressData[owner].numberMinted);
    }

    /**
     * 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) {
        if (!_exists(tokenId)) revert OwnerQueryForNonexistentToken();

        unchecked {
            for (uint256 curr = tokenId;; curr--) {
                TokenOwnership memory ownership = _ownerships[curr];
                if (ownership.addr != address(0)) {
                    return ownership;
                }
            }
        }
    }

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

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

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

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

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

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

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

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

        _approve(to, tokenId, owner);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

    /**
     * @dev See {IERC721-transferFrom}.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public 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 override {
        _transfer(from, to, tokenId);
        if (!_checkOnERC721Received(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 tokenId < _currentIndex;
    }

    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 > 3.4e38 (2**128) - 1
        // updatedIndex overflows if _currentIndex + quantity > 1.56e77 (2**256) - 1
        unchecked {
            _addressData[to].balance += uint128(quantity);
            _addressData[to].numberMinted += uint128(quantity);

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

            uint256 updatedIndex = startTokenId;

            for (uint256 i; i < quantity; i++) {
                emit Transfer(address(0), to, updatedIndex);
                if (safe && !_checkOnERC721Received(address(0), to, updatedIndex, _data)) {
                    revert TransferToNonERC721ReceiverImplementer();
                }

                updatedIndex++;
            }

            _currentIndex = updatedIndex;
        }

        _afterTokenTransfers(address(0), to, startTokenId, quantity);
    }

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

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

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

        _beforeTokenTransfers(from, to, tokenId, 1);

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

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

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

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

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

    /**
     * @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 address.
     * The call is not executed if the target address is not a 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 _checkOnERC721Received(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) private returns (bool) {
        if (to.isContract()) {
            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))
                    }
                }
            }
        } else {
            return true;
        }
    }

    /**
     * @dev Hook that is called before a set of serially-ordered token ids are about to be transferred. This includes minting.
     *
     * 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`.
     */
    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.
     *
     * 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` and `to` are never both zero.
     */
    function _afterTokenTransfers(
        address from,
        address to,
        uint256 startTokenId,
        uint256 quantity
    ) internal virtual {}
}
// File: contracts/tubbymfers.sol

pragma solidity ^0.8.0;

contract TUBBYMFERS is ERC721A, Ownable, ReentrancyGuard {
  using Address for address;
  using Strings for uint;

  uint64  public  immutable _maxSupply = 10000;
  uint public constant _pricePerToken = 0.042 ether;
  uint64  private immutable _maxMintAmountPerTx = 20;
  bool public saleIsActive = false;

  string  public  _baseTokenURI;

  constructor() ERC721A("TubbyMfers", "TMFERS") {}

  function mint(uint8 quantity) external payable {
      require(saleIsActive, "Sale must be active to mint tokens");
      require(quantity <= _maxMintAmountPerTx, "Exceeded max token purchase");
      require(totalSupply() + quantity <= _maxSupply, "reached max supply");
      require(_pricePerToken * quantity <= msg.value, "Ether value sent is not correct");

      _safeMint(msg.sender, quantity);
  }

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

  function withdraw() public onlyOwner nonReentrant {
    uint total = address(this).balance;
    uint split = total * 1/8;
    Address.sendValue(payable(0x1e4252A6f0ED0608d55af7a9859217E8252EEA2E), split);
    Address.sendValue(payable(0xfA3E0C02fFba42E1513482Dbbc5a1F744D176F8F), split);
    Address.sendValue(payable(0xb97B6596727a245aCD55a3dAd029C77d0403D348), split);
    Address.sendValue(payable(0x3b971298c21F92156Df183400c7A0f029e8333cE), split);
    Address.sendValue(payable(0x2090cA4db13b984A65fC52D2822dadBdaB7B08f1), split);
    Address.sendValue(payable(0x8e7464944FEF18BaBe45B55F89Be27B02B977F46), split);
    Address.sendValue(payable(0xB4ff573E6BcA6647aA127087F3b69A9b96088C5a), split);
    Address.sendValue(payable(0x527cE2D381d1A5D765ff76dba9725C63D1EaF2f5), split);
  }

  function setSaleState(bool newState) external onlyOwner {
    saleIsActive = newState;
  }

  function tokenURI(uint _tokenId) public view virtual override returns (string memory) {
    require(_exists(_tokenId), "ERC721Metadata: URI query for nonexistent token");
    return string(abi.encodePacked(_baseTokenURI, _tokenId.toString()));
  }

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

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":"OwnerIndexOutOfBounds","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TokenIndexOutOfBounds","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":[],"name":"_maxSupply","outputs":[{"internalType":"uint64","name":"","type":"uint64"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_pricePerToken","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint8","name":"quantity","type":"uint8"}],"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":"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":[],"name":"saleIsActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","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":"bool","name":"newState","type":"bool"}],"name":"setSaleState","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":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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"}]

60c0604052612710608052601460a0526009805460ff191690553480156200002657600080fd5b50604080518082018252600a81526954756262794d6665727360b01b602080830191825283518085019094526006845265544d4645525360d01b90840152815191929162000077916001916200010b565b5080516200008d9060029060208401906200010b565b505050620000aa620000a4620000b560201b60201c565b620000b9565b6001600855620001ee565b3390565b600780546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b8280546200011990620001b1565b90600052602060002090601f0160209004810192826200013d576000855562000188565b82601f106200015857805160ff191683800117855562000188565b8280016001018555821562000188579182015b82811115620001885782518255916020019190600101906200016b565b50620001969291506200019a565b5090565b5b808211156200019657600081556001016200019b565b600181811c90821680620001c657607f821691505b60208210811415620001e857634e487b7160e01b600052602260045260246000fd5b50919050565b60805160a051611eed6200021b6000396000610af60152600081816102ae0152610b730152611eed6000f3fe6080604052600436106101ac5760003560e01c80636352211e116100ec578063b88d4fde1161008a578063cfc86f7b11610064578063cfc86f7b146104b9578063e985e9c5146104ce578063eb8d244414610517578063f2fde38b1461053157600080fd5b8063b88d4fde14610459578063c4e3709514610479578063c87b56dd1461049957600080fd5b8063715018a6116100c6578063715018a6146103f15780638da5cb5b1461040657806395d89b4114610424578063a22cb4651461043957600080fd5b80636352211e1461039e5780636ecd2306146103be57806370a08231146103d157600080fd5b806322f4596f116101595780633ccfd60b116101335780633ccfd60b1461032957806342842e0e1461033e5780634f6ccce71461035e57806355f804b31461037e57600080fd5b806322f4596f1461029c57806323b872dd146102e95780632f745c591461030957600080fd5b8063095ea7b31161018a578063095ea7b31461024057806318160ddd146102625780631f9e4d491461028157600080fd5b806301ffc9a7146101b157806306fdde03146101e6578063081812fc14610208575b600080fd5b3480156101bd57600080fd5b506101d16101cc366004611936565b610551565b60405190151581526020015b60405180910390f35b3480156101f257600080fd5b506101fb6105be565b6040516101dd91906119b2565b34801561021457600080fd5b506102286102233660046119c5565b610650565b6040516001600160a01b0390911681526020016101dd565b34801561024c57600080fd5b5061026061025b3660046119fa565b610696565b005b34801561026e57600080fd5b506000545b6040519081526020016101dd565b34801561028d57600080fd5b50610273669536c70891000081565b3480156102a857600080fd5b506102d07f000000000000000000000000000000000000000000000000000000000000000081565b60405167ffffffffffffffff90911681526020016101dd565b3480156102f557600080fd5b50610260610304366004611a24565b610724565b34801561031557600080fd5b506102736103243660046119fa565b61072f565b34801561033557600080fd5b50610260610804565b34801561034a57600080fd5b50610260610359366004611a24565b6109d2565b34801561036a57600080fd5b506102736103793660046119c5565b6109ed565b34801561038a57600080fd5b50610260610399366004611aec565b610a14565b3480156103aa57600080fd5b506102286103b93660046119c5565b610a85565b6102606103cc366004611b35565b610a97565b3480156103dd57600080fd5b506102736103ec366004611b58565b610c74565b3480156103fd57600080fd5b50610260610cc2565b34801561041257600080fd5b506007546001600160a01b0316610228565b34801561043057600080fd5b506101fb610d28565b34801561044557600080fd5b50610260610454366004611b83565b610d37565b34801561046557600080fd5b50610260610474366004611bb6565b610dcd565b34801561048557600080fd5b50610260610494366004611c32565b610e07565b3480156104a557600080fd5b506101fb6104b43660046119c5565b610e74565b3480156104c557600080fd5b506101fb610f17565b3480156104da57600080fd5b506101d16104e9366004611c4d565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b34801561052357600080fd5b506009546101d19060ff1681565b34801561053d57600080fd5b5061026061054c366004611b58565b610fa5565b60006001600160e01b031982166380ac58cd60e01b148061058257506001600160e01b03198216635b5e139f60e01b145b8061059d57506001600160e01b0319821663780e9d6360e01b145b806105b857506301ffc9a760e01b6001600160e01b03198316145b92915050565b6060600180546105cd90611c77565b80601f01602080910402602001604051908101604052809291908181526020018280546105f990611c77565b80156106465780601f1061061b57610100808354040283529160200191610646565b820191906000526020600020905b81548152906001019060200180831161062957829003601f168201915b5050505050905090565b600061065d826000541190565b61067a576040516333d1c03960e21b815260040160405180910390fd5b506000908152600560205260409020546001600160a01b031690565b60006106a182610a85565b9050806001600160a01b0316836001600160a01b031614156106d65760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b038216148015906106f657506106f481336104e9565b155b15610714576040516367d9dca160e11b815260040160405180910390fd5b61071f83838361106d565b505050565b61071f8383836110c9565b600061073a83610c74565b8210610759576040516306ed618760e11b815260040160405180910390fd5b600080549080805b838110156107f2576000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff1691830191909152156107b457805192505b876001600160a01b0316836001600160a01b031614156107e957868414156107e2575093506105b892505050565b6001909301925b50600101610761565b506107fb611cb2565b50505092915050565b6007546001600160a01b031633146108635760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064015b60405180910390fd5b600260085414156108b65760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604482015260640161085a565b6002600890815547906000906108cd836001611cde565b6108d79190611d13565b90506108f7731e4252a6f0ed0608d55af7a9859217e8252eea2e826112f1565b61091573fa3e0c02ffba42e1513482dbbc5a1f744d176f8f826112f1565b61093373b97b6596727a245acd55a3dad029c77d0403d348826112f1565b610951733b971298c21f92156df183400c7a0f029e8333ce826112f1565b61096f732090ca4db13b984a65fc52d2822dadbdab7b08f1826112f1565b61098d738e7464944fef18babe45b55f89be27b02b977f46826112f1565b6109ab73b4ff573e6bca6647aa127087f3b69a9b96088c5a826112f1565b6109c973527ce2d381d1a5d765ff76dba9725c63d1eaf2f5826112f1565b50506001600855565b61071f83838360405180602001604052806000815250610dcd565b600080548210610a10576040516329c8c00760e21b815260040160405180910390fd5b5090565b6007546001600160a01b03163314610a6e5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161085a565b8051610a8190600a906020840190611890565b5050565b6000610a908261140a565b5192915050565b60095460ff16610af45760405162461bcd60e51b815260206004820152602260248201527f53616c65206d7573742062652061637469766520746f206d696e7420746f6b656044820152616e7360f01b606482015260840161085a565b7f000000000000000000000000000000000000000000000000000000000000000067ffffffffffffffff168160ff161115610b715760405162461bcd60e51b815260206004820152601b60248201527f4578636565646564206d617820746f6b656e2070757263686173650000000000604482015260640161085a565b7f000000000000000000000000000000000000000000000000000000000000000067ffffffffffffffff168160ff16610ba960005490565b610bb39190611d27565b1115610c015760405162461bcd60e51b815260206004820152601260248201527f72656163686564206d617820737570706c790000000000000000000000000000604482015260640161085a565b34610c1660ff8316669536c708910000611cde565b1115610c645760405162461bcd60e51b815260206004820152601f60248201527f45746865722076616c75652073656e74206973206e6f7420636f727265637400604482015260640161085a565b610c71338260ff1661149f565b50565b60006001600160a01b038216610c9d576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b03166000908152600460205260409020546001600160801b031690565b6007546001600160a01b03163314610d1c5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161085a565b610d2660006114b9565b565b6060600280546105cd90611c77565b6001600160a01b038216331415610d615760405163b06307db60e01b815260040160405180910390fd5b3360008181526006602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b610dd88484846110c9565b610de48484848461150b565b610e01576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b6007546001600160a01b03163314610e615760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161085a565b6009805460ff1916911515919091179055565b6060610e81826000541190565b610ee55760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b606482015260840161085a565b600a610ef08361161a565b604051602001610f01929190611d5b565b6040516020818303038152906040529050919050565b600a8054610f2490611c77565b80601f0160208091040260200160405190810160405280929190818152602001828054610f5090611c77565b8015610f9d5780601f10610f7257610100808354040283529160200191610f9d565b820191906000526020600020905b815481529060010190602001808311610f8057829003601f168201915b505050505081565b6007546001600160a01b03163314610fff5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161085a565b6001600160a01b0381166110645760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161085a565b610c71816114b9565b60008281526005602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b60006110d48261140a565b80519091506000906001600160a01b0316336001600160a01b031614806111025750815161110290336104e9565b8061111d57503361111284610650565b6001600160a01b0316145b90508061113d57604051632ce44b5f60e11b815260040160405180910390fd5b846001600160a01b031682600001516001600160a01b0316146111725760405162a1148160e81b815260040160405180910390fd5b6001600160a01b03841661119957604051633a954ecd60e21b815260040160405180910390fd5b6111a9600084846000015161106d565b6001600160a01b03858116600090815260046020908152604080832080546fffffffffffffffffffffffffffffffff198082166001600160801b03928316600019018316179092558986168086528386208054938416938316600190810190931693909317909255888552600390935281842080546001600160e01b031916909117600160a01b4267ffffffffffffffff16021790559086018083529120549091166112a75761125a816000541190565b156112a7578251600082815260036020908152604090912080549186015167ffffffffffffffff16600160a01b026001600160e01b03199092166001600160a01b03909316929092171790555b5082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b804710156113415760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a20696e73756666696369656e742062616c616e6365000000604482015260640161085a565b6000826001600160a01b03168260405160006040518083038185875af1925050503d806000811461138e576040519150601f19603f3d011682016040523d82523d6000602084013e611393565b606091505b505090508061071f5760405162461bcd60e51b815260206004820152603a60248201527f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260448201527f6563697069656e74206d61792068617665207265766572746564000000000000606482015260840161085a565b6040805180820190915260008082526020820152611429826000541190565b61144657604051636f96cda160e11b815260040160405180910390fd5b815b6000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff169183019190915215611495579392505050565b5060001901611448565b610a81828260405180602001604052806000815250611730565b600780546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b60006001600160a01b0384163b1561160e57604051630a85bd0160e11b81526001600160a01b0385169063150b7a029061154f903390899088908890600401611e02565b602060405180830381600087803b15801561156957600080fd5b505af1925050508015611599575060408051601f3d908101601f1916820190925261159691810190611e3e565b60015b6115f4573d8080156115c7576040519150601f19603f3d011682016040523d82523d6000602084013e6115cc565b606091505b5080516115ec576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611612565b5060015b949350505050565b60608161163e5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611668578061165281611e5b565b91506116619050600a83611d13565b9150611642565b60008167ffffffffffffffff81111561168357611683611a60565b6040519080825280601f01601f1916602001820160405280156116ad576020820181803683370190505b5090505b8415611612576116c2600183611e76565b91506116cf600a86611e8d565b6116da906030611d27565b60f81b8183815181106116ef576116ef611ea1565b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350611729600a86611d13565b94506116b1565b61071f83838360016000546001600160a01b03851661176157604051622e076360e81b815260040160405180910390fd5b8361177f5760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b03851660008181526004602090815260408083208054600160801b6fffffffffffffffffffffffffffffffff1982166001600160801b039283168c01831690811782900483168c01909216021790558483526003909152812080546001600160e01b031916909217600160a01b4267ffffffffffffffff16021790915581905b858110156118875760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a483801561185d575061185b600088848861150b565b155b1561187b576040516368d2bf6b60e11b815260040160405180910390fd5b60019182019101611806565b506000556112ea565b82805461189c90611c77565b90600052602060002090601f0160209004810192826118be5760008555611904565b82601f106118d757805160ff1916838001178555611904565b82800160010185558215611904579182015b828111156119045782518255916020019190600101906118e9565b50610a109291505b80821115610a10576000815560010161190c565b6001600160e01b031981168114610c7157600080fd5b60006020828403121561194857600080fd5b813561195381611920565b9392505050565b60005b8381101561197557818101518382015260200161195d565b83811115610e015750506000910152565b6000815180845261199e81602086016020860161195a565b601f01601f19169290920160200192915050565b6020815260006119536020830184611986565b6000602082840312156119d757600080fd5b5035919050565b80356001600160a01b03811681146119f557600080fd5b919050565b60008060408385031215611a0d57600080fd5b611a16836119de565b946020939093013593505050565b600080600060608486031215611a3957600080fd5b611a42846119de565b9250611a50602085016119de565b9150604084013590509250925092565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff80841115611a9157611a91611a60565b604051601f8501601f19908116603f01168101908282118183101715611ab957611ab9611a60565b81604052809350858152868686011115611ad257600080fd5b858560208301376000602087830101525050509392505050565b600060208284031215611afe57600080fd5b813567ffffffffffffffff811115611b1557600080fd5b8201601f81018413611b2657600080fd5b61161284823560208401611a76565b600060208284031215611b4757600080fd5b813560ff8116811461195357600080fd5b600060208284031215611b6a57600080fd5b611953826119de565b803580151581146119f557600080fd5b60008060408385031215611b9657600080fd5b611b9f836119de565b9150611bad60208401611b73565b90509250929050565b60008060008060808587031215611bcc57600080fd5b611bd5856119de565b9350611be3602086016119de565b925060408501359150606085013567ffffffffffffffff811115611c0657600080fd5b8501601f81018713611c1757600080fd5b611c2687823560208401611a76565b91505092959194509250565b600060208284031215611c4457600080fd5b61195382611b73565b60008060408385031215611c6057600080fd5b611c69836119de565b9150611bad602084016119de565b600181811c90821680611c8b57607f821691505b60208210811415611cac57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052600160045260246000fd5b634e487b7160e01b600052601160045260246000fd5b6000816000190483118215151615611cf857611cf8611cc8565b500290565b634e487b7160e01b600052601260045260246000fd5b600082611d2257611d22611cfd565b500490565b60008219821115611d3a57611d3a611cc8565b500190565b60008151611d5181856020860161195a565b9290920192915050565b600080845481600182811c915080831680611d7757607f831692505b6020808410821415611d9757634e487b7160e01b86526022600452602486fd5b818015611dab5760018114611dbc57611de9565b60ff19861689528489019650611de9565b60008b81526020902060005b86811015611de15781548b820152908501908301611dc8565b505084890196505b505050505050611df98185611d3f565b95945050505050565b60006001600160a01b03808716835280861660208401525083604083015260806060830152611e346080830184611986565b9695505050505050565b600060208284031215611e5057600080fd5b815161195381611920565b6000600019821415611e6f57611e6f611cc8565b5060010190565b600082821015611e8857611e88611cc8565b500390565b600082611e9c57611e9c611cfd565b500690565b634e487b7160e01b600052603260045260246000fdfea2646970667358221220a298448cbb155e2f53cb973a413aaf557411c88210b7cc9db4cdd134e44bf84f64736f6c63430008090033

Deployed Bytecode

0x6080604052600436106101ac5760003560e01c80636352211e116100ec578063b88d4fde1161008a578063cfc86f7b11610064578063cfc86f7b146104b9578063e985e9c5146104ce578063eb8d244414610517578063f2fde38b1461053157600080fd5b8063b88d4fde14610459578063c4e3709514610479578063c87b56dd1461049957600080fd5b8063715018a6116100c6578063715018a6146103f15780638da5cb5b1461040657806395d89b4114610424578063a22cb4651461043957600080fd5b80636352211e1461039e5780636ecd2306146103be57806370a08231146103d157600080fd5b806322f4596f116101595780633ccfd60b116101335780633ccfd60b1461032957806342842e0e1461033e5780634f6ccce71461035e57806355f804b31461037e57600080fd5b806322f4596f1461029c57806323b872dd146102e95780632f745c591461030957600080fd5b8063095ea7b31161018a578063095ea7b31461024057806318160ddd146102625780631f9e4d491461028157600080fd5b806301ffc9a7146101b157806306fdde03146101e6578063081812fc14610208575b600080fd5b3480156101bd57600080fd5b506101d16101cc366004611936565b610551565b60405190151581526020015b60405180910390f35b3480156101f257600080fd5b506101fb6105be565b6040516101dd91906119b2565b34801561021457600080fd5b506102286102233660046119c5565b610650565b6040516001600160a01b0390911681526020016101dd565b34801561024c57600080fd5b5061026061025b3660046119fa565b610696565b005b34801561026e57600080fd5b506000545b6040519081526020016101dd565b34801561028d57600080fd5b50610273669536c70891000081565b3480156102a857600080fd5b506102d07f000000000000000000000000000000000000000000000000000000000000271081565b60405167ffffffffffffffff90911681526020016101dd565b3480156102f557600080fd5b50610260610304366004611a24565b610724565b34801561031557600080fd5b506102736103243660046119fa565b61072f565b34801561033557600080fd5b50610260610804565b34801561034a57600080fd5b50610260610359366004611a24565b6109d2565b34801561036a57600080fd5b506102736103793660046119c5565b6109ed565b34801561038a57600080fd5b50610260610399366004611aec565b610a14565b3480156103aa57600080fd5b506102286103b93660046119c5565b610a85565b6102606103cc366004611b35565b610a97565b3480156103dd57600080fd5b506102736103ec366004611b58565b610c74565b3480156103fd57600080fd5b50610260610cc2565b34801561041257600080fd5b506007546001600160a01b0316610228565b34801561043057600080fd5b506101fb610d28565b34801561044557600080fd5b50610260610454366004611b83565b610d37565b34801561046557600080fd5b50610260610474366004611bb6565b610dcd565b34801561048557600080fd5b50610260610494366004611c32565b610e07565b3480156104a557600080fd5b506101fb6104b43660046119c5565b610e74565b3480156104c557600080fd5b506101fb610f17565b3480156104da57600080fd5b506101d16104e9366004611c4d565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b34801561052357600080fd5b506009546101d19060ff1681565b34801561053d57600080fd5b5061026061054c366004611b58565b610fa5565b60006001600160e01b031982166380ac58cd60e01b148061058257506001600160e01b03198216635b5e139f60e01b145b8061059d57506001600160e01b0319821663780e9d6360e01b145b806105b857506301ffc9a760e01b6001600160e01b03198316145b92915050565b6060600180546105cd90611c77565b80601f01602080910402602001604051908101604052809291908181526020018280546105f990611c77565b80156106465780601f1061061b57610100808354040283529160200191610646565b820191906000526020600020905b81548152906001019060200180831161062957829003601f168201915b5050505050905090565b600061065d826000541190565b61067a576040516333d1c03960e21b815260040160405180910390fd5b506000908152600560205260409020546001600160a01b031690565b60006106a182610a85565b9050806001600160a01b0316836001600160a01b031614156106d65760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b038216148015906106f657506106f481336104e9565b155b15610714576040516367d9dca160e11b815260040160405180910390fd5b61071f83838361106d565b505050565b61071f8383836110c9565b600061073a83610c74565b8210610759576040516306ed618760e11b815260040160405180910390fd5b600080549080805b838110156107f2576000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff1691830191909152156107b457805192505b876001600160a01b0316836001600160a01b031614156107e957868414156107e2575093506105b892505050565b6001909301925b50600101610761565b506107fb611cb2565b50505092915050565b6007546001600160a01b031633146108635760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064015b60405180910390fd5b600260085414156108b65760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604482015260640161085a565b6002600890815547906000906108cd836001611cde565b6108d79190611d13565b90506108f7731e4252a6f0ed0608d55af7a9859217e8252eea2e826112f1565b61091573fa3e0c02ffba42e1513482dbbc5a1f744d176f8f826112f1565b61093373b97b6596727a245acd55a3dad029c77d0403d348826112f1565b610951733b971298c21f92156df183400c7a0f029e8333ce826112f1565b61096f732090ca4db13b984a65fc52d2822dadbdab7b08f1826112f1565b61098d738e7464944fef18babe45b55f89be27b02b977f46826112f1565b6109ab73b4ff573e6bca6647aa127087f3b69a9b96088c5a826112f1565b6109c973527ce2d381d1a5d765ff76dba9725c63d1eaf2f5826112f1565b50506001600855565b61071f83838360405180602001604052806000815250610dcd565b600080548210610a10576040516329c8c00760e21b815260040160405180910390fd5b5090565b6007546001600160a01b03163314610a6e5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161085a565b8051610a8190600a906020840190611890565b5050565b6000610a908261140a565b5192915050565b60095460ff16610af45760405162461bcd60e51b815260206004820152602260248201527f53616c65206d7573742062652061637469766520746f206d696e7420746f6b656044820152616e7360f01b606482015260840161085a565b7f000000000000000000000000000000000000000000000000000000000000001467ffffffffffffffff168160ff161115610b715760405162461bcd60e51b815260206004820152601b60248201527f4578636565646564206d617820746f6b656e2070757263686173650000000000604482015260640161085a565b7f000000000000000000000000000000000000000000000000000000000000271067ffffffffffffffff168160ff16610ba960005490565b610bb39190611d27565b1115610c015760405162461bcd60e51b815260206004820152601260248201527f72656163686564206d617820737570706c790000000000000000000000000000604482015260640161085a565b34610c1660ff8316669536c708910000611cde565b1115610c645760405162461bcd60e51b815260206004820152601f60248201527f45746865722076616c75652073656e74206973206e6f7420636f727265637400604482015260640161085a565b610c71338260ff1661149f565b50565b60006001600160a01b038216610c9d576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b03166000908152600460205260409020546001600160801b031690565b6007546001600160a01b03163314610d1c5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161085a565b610d2660006114b9565b565b6060600280546105cd90611c77565b6001600160a01b038216331415610d615760405163b06307db60e01b815260040160405180910390fd5b3360008181526006602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b610dd88484846110c9565b610de48484848461150b565b610e01576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b6007546001600160a01b03163314610e615760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161085a565b6009805460ff1916911515919091179055565b6060610e81826000541190565b610ee55760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b606482015260840161085a565b600a610ef08361161a565b604051602001610f01929190611d5b565b6040516020818303038152906040529050919050565b600a8054610f2490611c77565b80601f0160208091040260200160405190810160405280929190818152602001828054610f5090611c77565b8015610f9d5780601f10610f7257610100808354040283529160200191610f9d565b820191906000526020600020905b815481529060010190602001808311610f8057829003601f168201915b505050505081565b6007546001600160a01b03163314610fff5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161085a565b6001600160a01b0381166110645760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161085a565b610c71816114b9565b60008281526005602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b60006110d48261140a565b80519091506000906001600160a01b0316336001600160a01b031614806111025750815161110290336104e9565b8061111d57503361111284610650565b6001600160a01b0316145b90508061113d57604051632ce44b5f60e11b815260040160405180910390fd5b846001600160a01b031682600001516001600160a01b0316146111725760405162a1148160e81b815260040160405180910390fd5b6001600160a01b03841661119957604051633a954ecd60e21b815260040160405180910390fd5b6111a9600084846000015161106d565b6001600160a01b03858116600090815260046020908152604080832080546fffffffffffffffffffffffffffffffff198082166001600160801b03928316600019018316179092558986168086528386208054938416938316600190810190931693909317909255888552600390935281842080546001600160e01b031916909117600160a01b4267ffffffffffffffff16021790559086018083529120549091166112a75761125a816000541190565b156112a7578251600082815260036020908152604090912080549186015167ffffffffffffffff16600160a01b026001600160e01b03199092166001600160a01b03909316929092171790555b5082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b804710156113415760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a20696e73756666696369656e742062616c616e6365000000604482015260640161085a565b6000826001600160a01b03168260405160006040518083038185875af1925050503d806000811461138e576040519150601f19603f3d011682016040523d82523d6000602084013e611393565b606091505b505090508061071f5760405162461bcd60e51b815260206004820152603a60248201527f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260448201527f6563697069656e74206d61792068617665207265766572746564000000000000606482015260840161085a565b6040805180820190915260008082526020820152611429826000541190565b61144657604051636f96cda160e11b815260040160405180910390fd5b815b6000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff169183019190915215611495579392505050565b5060001901611448565b610a81828260405180602001604052806000815250611730565b600780546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b60006001600160a01b0384163b1561160e57604051630a85bd0160e11b81526001600160a01b0385169063150b7a029061154f903390899088908890600401611e02565b602060405180830381600087803b15801561156957600080fd5b505af1925050508015611599575060408051601f3d908101601f1916820190925261159691810190611e3e565b60015b6115f4573d8080156115c7576040519150601f19603f3d011682016040523d82523d6000602084013e6115cc565b606091505b5080516115ec576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611612565b5060015b949350505050565b60608161163e5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611668578061165281611e5b565b91506116619050600a83611d13565b9150611642565b60008167ffffffffffffffff81111561168357611683611a60565b6040519080825280601f01601f1916602001820160405280156116ad576020820181803683370190505b5090505b8415611612576116c2600183611e76565b91506116cf600a86611e8d565b6116da906030611d27565b60f81b8183815181106116ef576116ef611ea1565b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350611729600a86611d13565b94506116b1565b61071f83838360016000546001600160a01b03851661176157604051622e076360e81b815260040160405180910390fd5b8361177f5760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b03851660008181526004602090815260408083208054600160801b6fffffffffffffffffffffffffffffffff1982166001600160801b039283168c01831690811782900483168c01909216021790558483526003909152812080546001600160e01b031916909217600160a01b4267ffffffffffffffff16021790915581905b858110156118875760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a483801561185d575061185b600088848861150b565b155b1561187b576040516368d2bf6b60e11b815260040160405180910390fd5b60019182019101611806565b506000556112ea565b82805461189c90611c77565b90600052602060002090601f0160209004810192826118be5760008555611904565b82601f106118d757805160ff1916838001178555611904565b82800160010185558215611904579182015b828111156119045782518255916020019190600101906118e9565b50610a109291505b80821115610a10576000815560010161190c565b6001600160e01b031981168114610c7157600080fd5b60006020828403121561194857600080fd5b813561195381611920565b9392505050565b60005b8381101561197557818101518382015260200161195d565b83811115610e015750506000910152565b6000815180845261199e81602086016020860161195a565b601f01601f19169290920160200192915050565b6020815260006119536020830184611986565b6000602082840312156119d757600080fd5b5035919050565b80356001600160a01b03811681146119f557600080fd5b919050565b60008060408385031215611a0d57600080fd5b611a16836119de565b946020939093013593505050565b600080600060608486031215611a3957600080fd5b611a42846119de565b9250611a50602085016119de565b9150604084013590509250925092565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff80841115611a9157611a91611a60565b604051601f8501601f19908116603f01168101908282118183101715611ab957611ab9611a60565b81604052809350858152868686011115611ad257600080fd5b858560208301376000602087830101525050509392505050565b600060208284031215611afe57600080fd5b813567ffffffffffffffff811115611b1557600080fd5b8201601f81018413611b2657600080fd5b61161284823560208401611a76565b600060208284031215611b4757600080fd5b813560ff8116811461195357600080fd5b600060208284031215611b6a57600080fd5b611953826119de565b803580151581146119f557600080fd5b60008060408385031215611b9657600080fd5b611b9f836119de565b9150611bad60208401611b73565b90509250929050565b60008060008060808587031215611bcc57600080fd5b611bd5856119de565b9350611be3602086016119de565b925060408501359150606085013567ffffffffffffffff811115611c0657600080fd5b8501601f81018713611c1757600080fd5b611c2687823560208401611a76565b91505092959194509250565b600060208284031215611c4457600080fd5b61195382611b73565b60008060408385031215611c6057600080fd5b611c69836119de565b9150611bad602084016119de565b600181811c90821680611c8b57607f821691505b60208210811415611cac57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052600160045260246000fd5b634e487b7160e01b600052601160045260246000fd5b6000816000190483118215151615611cf857611cf8611cc8565b500290565b634e487b7160e01b600052601260045260246000fd5b600082611d2257611d22611cfd565b500490565b60008219821115611d3a57611d3a611cc8565b500190565b60008151611d5181856020860161195a565b9290920192915050565b600080845481600182811c915080831680611d7757607f831692505b6020808410821415611d9757634e487b7160e01b86526022600452602486fd5b818015611dab5760018114611dbc57611de9565b60ff19861689528489019650611de9565b60008b81526020902060005b86811015611de15781548b820152908501908301611dc8565b505084890196505b505050505050611df98185611d3f565b95945050505050565b60006001600160a01b03808716835280861660208401525083604083015260806060830152611e346080830184611986565b9695505050505050565b600060208284031215611e5057600080fd5b815161195381611920565b6000600019821415611e6f57611e6f611cc8565b5060010190565b600082821015611e8857611e88611cc8565b500390565b600082611e9c57611e9c611cfd565b500690565b634e487b7160e01b600052603260045260246000fdfea2646970667358221220a298448cbb155e2f53cb973a413aaf557411c88210b7cc9db4cdd134e44bf84f64736f6c63430008090033

Deployed Bytecode Sourcemap

43432:2201:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30704:372;;;;;;;;;;-1:-1:-1;30704:372:0;;;;;:::i;:::-;;:::i;:::-;;;565:14:1;;558:22;540:41;;528:2;513:18;30704:372:0;;;;;;;;32463:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;33940:204::-;;;;;;;;;;-1:-1:-1;33940:204:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;1714:55:1;;;1696:74;;1684:2;1669:18;33940:204:0;1550:226:1;33529:345:0;;;;;;;;;;-1:-1:-1;33529:345:0;;;;;:::i;:::-;;:::i;:::-;;28971:101;;;;;;;;;;-1:-1:-1;29024:7:0;29051:13;28971:101;;;2387:25:1;;;2375:2;2360:18;28971:101:0;2241:177:1;43602:49:0;;;;;;;;;;;;43640:11;43602:49;;43553:44;;;;;;;;;;;;;;;;;;2597:18:1;2585:31;;;2567:50;;2555:2;2540:18;43553:44:0;2423:200:1;34797:170:0;;;;;;;;;;-1:-1:-1;34797:170:0;;;;;:::i;:::-;;:::i;29625:1007::-;;;;;;;;;;-1:-1:-1;29625:1007:0;;;;;:::i;:::-;;:::i;44362:800::-;;;;;;;;;;;;;:::i;35038:185::-;;;;;;;;;;-1:-1:-1;35038:185:0;;;;;:::i;:::-;;:::i;29149:176::-;;;;;;;;;;-1:-1:-1;29149:176:0;;;;;:::i;:::-;;:::i;44258:98::-;;;;;;;;;;-1:-1:-1;44258:98:0;;;;;:::i;:::-;;:::i;32272:124::-;;;;;;;;;;-1:-1:-1;32272:124:0;;;;;:::i;:::-;;:::i;43840:412::-;;;;;;:::i;:::-;;:::i;31140:206::-;;;;;;;;;;-1:-1:-1;31140:206:0;;;;;:::i;:::-;;:::i;7489:103::-;;;;;;;;;;;;;:::i;6838:87::-;;;;;;;;;;-1:-1:-1;6911:6:0;;-1:-1:-1;;;;;6911:6:0;6838:87;;32632:104;;;;;;;;;;;;;:::i;34216:279::-;;;;;;;;;;-1:-1:-1;34216:279:0;;;;;:::i;:::-;;:::i;35294:308::-;;;;;;;;;;-1:-1:-1;35294:308:0;;;;;:::i;:::-;;:::i;45168:92::-;;;;;;;;;;-1:-1:-1;45168:92:0;;;;;:::i;:::-;;:::i;45266:250::-;;;;;;;;;;-1:-1:-1;45266:250:0;;;;;:::i;:::-;;:::i;43750:29::-;;;;;;;;;;;;;:::i;34566:164::-;;;;;;;;;;-1:-1:-1;34566:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;34687:25:0;;;34663:4;34687:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;34566:164;43711:32;;;;;;;;;;-1:-1:-1;43711:32:0;;;;;;;;7747:201;;;;;;;;;;-1:-1:-1;7747:201:0;;;;;:::i;:::-;;:::i;30704:372::-;30806:4;-1:-1:-1;;;;;;30843:40:0;;-1:-1:-1;;;30843:40:0;;:105;;-1:-1:-1;;;;;;;30900:48:0;;-1:-1:-1;;;30900:48:0;30843:105;:172;;;-1:-1:-1;;;;;;;30965:50:0;;-1:-1:-1;;;30965:50:0;30843:172;:225;;;-1:-1:-1;;;;;;;;;;19731:40:0;;;31032:36;30823:245;30704:372;-1:-1:-1;;30704:372:0:o;32463:100::-;32517:13;32550:5;32543:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32463:100;:::o;33940:204::-;34008:7;34033:16;34041:7;35914:4;35948:13;-1:-1:-1;35938:23:0;35857:112;34033:16;34028:64;;34058:34;;-1:-1:-1;;;34058:34:0;;;;;;;;;;;34028:64;-1:-1:-1;34112:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;34112:24:0;;33940:204::o;33529:345::-;33602:13;33618:24;33634:7;33618:15;:24::i;:::-;33602:40;;33663:5;-1:-1:-1;;;;;33657:11:0;:2;-1:-1:-1;;;;;33657:11:0;;33653:48;;;33677:24;;-1:-1:-1;;;33677:24:0;;;;;;;;;;;33653:48;5642:10;-1:-1:-1;;;;;33718:21:0;;;;;;:63;;-1:-1:-1;33744:37:0;33761:5;5642:10;34566:164;:::i;33744:37::-;33743:38;33718:63;33714:111;;;33790:35;;-1:-1:-1;;;33790:35:0;;;;;;;;;;;33714:111;33838:28;33847:2;33851:7;33860:5;33838:8;:28::i;:::-;33591:283;33529:345;;:::o;34797:170::-;34931:28;34941:4;34947:2;34951:7;34931:9;:28::i;29625:1007::-;29714:7;29747:16;29757:5;29747:9;:16::i;:::-;29738:5;:25;29734:61;;29772:23;;-1:-1:-1;;;29772:23:0;;;;;;;;;;;29734:61;29806:22;29051:13;;;29806:22;;30069:466;30089:14;30085:1;:18;30069:466;;;30129:31;30163:14;;;:11;:14;;;;;;;;;30129:48;;;;;;;;;-1:-1:-1;;;;;30129:48:0;;;;;-1:-1:-1;;;30129:48:0;;;;;;;;;;;;30200:28;30196:111;;30273:14;;;-1:-1:-1;30196:111:0;30350:5;-1:-1:-1;;;;;30329:26:0;:17;-1:-1:-1;;;;;30329:26:0;;30325:195;;;30399:5;30384:11;:20;30380:85;;;-1:-1:-1;30440:1:0;-1:-1:-1;30433:8:0;;-1:-1:-1;;;30433:8:0;30380:85;30487:13;;;;;30325:195;-1:-1:-1;30105:3:0;;30069:466;;;-1:-1:-1;30611:13:0;;:::i;:::-;29723:909;;;29625:1007;;;;:::o;44362:800::-;6911:6;;-1:-1:-1;;;;;6911:6:0;5642:10;7058:23;7050:68;;;;-1:-1:-1;;;7050:68:0;;6916:2:1;7050:68:0;;;6898:21:1;;;6935:18;;;6928:30;6994:34;6974:18;;;6967:62;7046:18;;7050:68:0;;;;;;;;;1812:1:::1;2410:7;;:19;;2402:63;;;::::0;-1:-1:-1;;;2402:63:0;;7277:2:1;2402:63:0::1;::::0;::::1;7259:21:1::0;7316:2;7296:18;;;7289:30;7355:33;7335:18;;;7328:61;7406:18;;2402:63:0::1;7075:355:1::0;2402:63:0::1;1812:1;2543:7;:18:::0;;;44432:21:::2;::::0;44419:10:::2;::::0;44473:9:::2;44432:21:::0;44481:1:::2;44473:9;:::i;:::-;:11;;;;:::i;:::-;44460:24;;44491:77;44517:42;44562:5;44491:17;:77::i;:::-;44575;44601:42;44646:5;44575:17;:77::i;:::-;44659;44685:42;44730:5;44659:17;:77::i;:::-;44743;44769:42;44814:5;44743:17;:77::i;:::-;44827;44853:42;44898:5;44827:17;:77::i;:::-;44911;44937:42;44982:5;44911:17;:77::i;:::-;44995;45021:42;45066:5;44995:17;:77::i;:::-;45079;45105:42;45150:5;45079:17;:77::i;:::-;-1:-1:-1::0;;1768:1:0::1;2722:7;:22:::0;44362:800::o;35038:185::-;35176:39;35193:4;35199:2;35203:7;35176:39;;;;;;;;;;;;:16;:39::i;29149:176::-;29216:7;29051:13;;29240:5;:22;29236:58;;29271:23;;-1:-1:-1;;;29271:23:0;;;;;;;;;;;29236:58;-1:-1:-1;29312:5:0;29149:176::o;44258:98::-;6911:6;;-1:-1:-1;;;;;6911:6:0;5642:10;7058:23;7050:68;;;;-1:-1:-1;;;7050:68:0;;6916:2:1;7050:68:0;;;6898:21:1;;;6935:18;;;6928:30;6994:34;6974:18;;;6967:62;7046:18;;7050:68:0;6714:356:1;7050:68:0;44327:23;;::::1;::::0;:13:::1;::::0;:23:::1;::::0;::::1;::::0;::::1;:::i;:::-;;44258:98:::0;:::o;32272:124::-;32336:7;32363:20;32375:7;32363:11;:20::i;:::-;:25;;32272:124;-1:-1:-1;;32272:124:0:o;43840:412::-;43904:12;;;;43896:59;;;;-1:-1:-1;;;43896:59:0;;8199:2:1;43896:59:0;;;8181:21:1;8238:2;8218:18;;;8211:30;8277:34;8257:18;;;8250:62;-1:-1:-1;;;8328:18:1;;;8321:32;8370:19;;43896:59:0;7997:398:1;43896:59:0;43984:19;43972:31;;:8;:31;;;;43964:71;;;;-1:-1:-1;;;43964:71:0;;8602:2:1;43964:71:0;;;8584:21:1;8641:2;8621:18;;;8614:30;8680:29;8660:18;;;8653:57;8727:18;;43964:71:0;8400:351:1;43964:71:0;44080:10;44052:38;;44068:8;44052:24;;:13;29024:7;29051:13;;28971:101;44052:13;:24;;;;:::i;:::-;:38;;44044:69;;;;-1:-1:-1;;;44044:69:0;;9091:2:1;44044:69:0;;;9073:21:1;9130:2;9110:18;;;9103:30;9169:20;9149:18;;;9142:48;9207:18;;44044:69:0;8889:342:1;44044:69:0;44159:9;44130:25;;;;43640:11;44130:25;:::i;:::-;:38;;44122:82;;;;-1:-1:-1;;;44122:82:0;;9438:2:1;44122:82:0;;;9420:21:1;9477:2;9457:18;;;9450:30;9516:33;9496:18;;;9489:61;9567:18;;44122:82:0;9236:355:1;44122:82:0;44215:31;44225:10;44237:8;44215:31;;:9;:31::i;:::-;43840:412;:::o;31140:206::-;31204:7;-1:-1:-1;;;;;31228:19:0;;31224:60;;31256:28;;-1:-1:-1;;;31256:28:0;;;;;;;;;;;31224:60;-1:-1:-1;;;;;;31310:19:0;;;;;:12;:19;;;;;:27;-1:-1:-1;;;;;31310:27:0;;31140:206::o;7489:103::-;6911:6;;-1:-1:-1;;;;;6911:6:0;5642:10;7058:23;7050:68;;;;-1:-1:-1;;;7050:68:0;;6916:2:1;7050:68:0;;;6898:21:1;;;6935:18;;;6928:30;6994:34;6974:18;;;6967:62;7046:18;;7050:68:0;6714:356:1;7050:68:0;7554:30:::1;7581:1;7554:18;:30::i;:::-;7489:103::o:0;32632:104::-;32688:13;32721:7;32714:14;;;;;:::i;34216:279::-;-1:-1:-1;;;;;34307:24:0;;5642:10;34307:24;34303:54;;;34340:17;;-1:-1:-1;;;34340:17:0;;;;;;;;;;;34303:54;5642:10;34370:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;34370:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;34370:53:0;;;;;;;;;;34439:48;;540:41:1;;;34370:42:0;;5642:10;34439:48;;513:18:1;34439:48:0;;;;;;;34216:279;;:::o;35294:308::-;35453:28;35463:4;35469:2;35473:7;35453:9;:28::i;:::-;35497:48;35520:4;35526:2;35530:7;35539:5;35497:22;:48::i;:::-;35492:102;;35554:40;;-1:-1:-1;;;35554:40:0;;;;;;;;;;;35492:102;35294:308;;;;:::o;45168:92::-;6911:6;;-1:-1:-1;;;;;6911:6:0;5642:10;7058:23;7050:68;;;;-1:-1:-1;;;7050:68:0;;6916:2:1;7050:68:0;;;6898:21:1;;;6935:18;;;6928:30;6994:34;6974:18;;;6967:62;7046:18;;7050:68:0;6714:356:1;7050:68:0;45231:12:::1;:23:::0;;-1:-1:-1;;45231:23:0::1;::::0;::::1;;::::0;;;::::1;::::0;;45168:92::o;45266:250::-;45337:13;45367:17;45375:8;35914:4;35948:13;-1:-1:-1;35938:23:0;35857:112;45367:17;45359:77;;;;-1:-1:-1;;;45359:77:0;;9798:2:1;45359:77:0;;;9780:21:1;9837:2;9817:18;;;9810:30;9876:34;9856:18;;;9849:62;-1:-1:-1;;;9927:18:1;;;9920:45;9982:19;;45359:77:0;9596:411:1;45359:77:0;45474:13;45489:19;:8;:17;:19::i;:::-;45457:52;;;;;;;;;:::i;:::-;;;;;;;;;;;;;45443:67;;45266:250;;;:::o;43750:29::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;7747:201::-;6911:6;;-1:-1:-1;;;;;6911:6:0;5642:10;7058:23;7050:68;;;;-1:-1:-1;;;7050:68:0;;6916:2:1;7050:68:0;;;6898:21:1;;;6935:18;;;6928:30;6994:34;6974:18;;;6967:62;7046:18;;7050:68:0;6714:356:1;7050:68:0;-1:-1:-1;;;;;7836:22:0;::::1;7828:73;;;::::0;-1:-1:-1;;;7828:73:0;;11709:2:1;7828:73:0::1;::::0;::::1;11691:21:1::0;11748:2;11728:18;;;11721:30;11787:34;11767:18;;;11760:62;-1:-1:-1;;;11838:18:1;;;11831:36;11884:19;;7828:73:0::1;11507:402:1::0;7828:73:0::1;7912:28;7931:8;7912:18;:28::i;40620:196::-:0;40735:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;40735:29:0;-1:-1:-1;;;;;40735:29:0;;;;;;;;;40780:28;;40735:24;;40780:28;;;;;;;40620:196;;;:::o;38540:1962::-;38655:35;38693:20;38705:7;38693:11;:20::i;:::-;38768:18;;38655:58;;-1:-1:-1;38726:22:0;;-1:-1:-1;;;;;38752:34:0;5642:10;-1:-1:-1;;;;;38752:34:0;;:101;;;-1:-1:-1;38820:18:0;;38803:50;;5642:10;34566:164;:::i;38803:50::-;38752:154;;;-1:-1:-1;5642:10:0;38870:20;38882:7;38870:11;:20::i;:::-;-1:-1:-1;;;;;38870:36:0;;38752:154;38726:181;;38925:17;38920:66;;38951:35;;-1:-1:-1;;;38951:35:0;;;;;;;;;;;38920:66;39023:4;-1:-1:-1;;;;;39001:26:0;:13;:18;;;-1:-1:-1;;;;;39001:26:0;;38997:67;;39036:28;;-1:-1:-1;;;39036:28:0;;;;;;;;;;;38997:67;-1:-1:-1;;;;;39079:16:0;;39075:52;;39104:23;;-1:-1:-1;;;39104:23:0;;;;;;;;;;;39075:52;39248:49;39265:1;39269:7;39278:13;:18;;;39248:8;:49::i;:::-;-1:-1:-1;;;;;39593:18:0;;;;;;;:12;:18;;;;;;;;:31;;-1:-1:-1;;39593:31:0;;;-1:-1:-1;;;;;39593:31:0;;;-1:-1:-1;;39593:31:0;;;;;;;39639:16;;;;;;;;;:29;;;;;;;;-1:-1:-1;39639:29:0;;;;;;;;;;;;;39685:20;;;:11;:20;;;;;;:30;;-1:-1:-1;;;;;;39730:61:0;;;;-1:-1:-1;;;39775:15:0;39730:61;;;;;;40065:11;;;40095:24;;;;;:29;40065:11;;40095:29;40091:295;;40163:20;40171:11;35914:4;35948:13;-1:-1:-1;35938:23:0;35857:112;40163:20;40159:212;;;40240:18;;;40208:24;;;:11;:24;;;;;;;;:50;;40323:28;;;;40281:70;;-1:-1:-1;;;40281:70:0;-1:-1:-1;;;;;;40281:70:0;;;-1:-1:-1;;;;;40208:50:0;;;40281:70;;;;;;;40159:212;39568:829;40433:7;40429:2;-1:-1:-1;;;;;40414:27:0;40423:4;-1:-1:-1;;;;;40414:27:0;;;;;;;;;;;40452:42;38644:1858;;38540:1962;;;:::o;10800:317::-;10915:6;10890:21;:31;;10882:73;;;;-1:-1:-1;;;10882:73:0;;12116:2:1;10882:73:0;;;12098:21:1;12155:2;12135:18;;;12128:30;12194:31;12174:18;;;12167:59;12243:18;;10882:73:0;11914:353:1;10882:73:0;10969:12;10987:9;-1:-1:-1;;;;;10987:14:0;11009:6;10987:33;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10968:52;;;11039:7;11031:78;;;;-1:-1:-1;;;11031:78:0;;12684:2:1;11031:78:0;;;12666:21:1;12723:2;12703:18;;;12696:30;12762:34;12742:18;;;12735:62;12833:28;12813:18;;;12806:56;12879:19;;11031:78:0;12482:422:1;31763:447:0;-1:-1:-1;;;;;;;;;;;;;;;;;31863:16:0;31871:7;35914:4;35948:13;-1:-1:-1;35938:23:0;35857:112;31863:16;31858:61;;31888:31;;-1:-1:-1;;;31888:31:0;;;;;;;;;;;31858:61;31977:7;31957:235;32014:31;32048:17;;;:11;:17;;;;;;;;;32014:51;;;;;;;;;-1:-1:-1;;;;;32014:51:0;;;;;-1:-1:-1;;;32014:51:0;;;;;;;;;;;;32088:28;32084:93;;32148:9;31763:447;-1:-1:-1;;;31763:447:0:o;32084:93::-;-1:-1:-1;;;31987:6:0;31957:235;;35977:104;36046:27;36056:2;36060:8;36046:27;;;;;;;;;;;;:9;:27::i;8108:191::-;8201:6;;;-1:-1:-1;;;;;8218:17:0;;;-1:-1:-1;;;;;;8218:17:0;;;;;;;8251:40;;8201:6;;;8218:17;8201:6;;8251:40;;8182:16;;8251:40;8171:128;8108:191;:::o;41381:765::-;41536:4;-1:-1:-1;;;;;41557:13:0;;9834:19;:23;41553:586;;41593:72;;-1:-1:-1;;;41593:72:0;;-1:-1:-1;;;;;41593:36:0;;;;;:72;;5642:10;;41644:4;;41650:7;;41659:5;;41593:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;41593:72:0;;;;;;;;-1:-1:-1;;41593:72:0;;;;;;;;;;;;:::i;:::-;;;41589:495;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;41839:13:0;;41835:234;;41866:40;;-1:-1:-1;;;41866:40:0;;;;;;;;;;;41835:234;42019:6;42013:13;42004:6;42000:2;41996:15;41989:38;41589:495;-1:-1:-1;;;;;;41716:55:0;-1:-1:-1;;;41716:55:0;;-1:-1:-1;41709:62:0;;41553:586;-1:-1:-1;42123:4:0;41553:586;41381:765;;;;;;:::o;3124:723::-;3180:13;3401:10;3397:53;;-1:-1:-1;;3428:10:0;;;;;;;;;;;;-1:-1:-1;;;3428:10:0;;;;;3124:723::o;3397:53::-;3475:5;3460:12;3516:78;3523:9;;3516:78;;3549:8;;;;:::i;:::-;;-1:-1:-1;3572:10:0;;-1:-1:-1;3580:2:0;3572:10;;:::i;:::-;;;3516:78;;;3604:19;3636:6;3626:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;3626:17:0;;3604:39;;3654:154;3661:10;;3654:154;;3688:11;3698:1;3688:11;;:::i;:::-;;-1:-1:-1;3757:10:0;3765:2;3757:5;:10;:::i;:::-;3744:24;;:2;:24;:::i;:::-;3731:39;;3714:6;3721;3714:14;;;;;;;;:::i;:::-;;;;:56;;;;;;;;;;-1:-1:-1;3785:11:0;3794:2;3785:11;;:::i;:::-;;;3654:154;;36444:163;36567:32;36573:2;36577:8;36587:5;36594:4;37005:20;37028:13;-1:-1:-1;;;;;37056:16:0;;37052:48;;37081:19;;-1:-1:-1;;;37081:19:0;;;;;;;;;;;37052:48;37115:13;37111:44;;37137:18;;-1:-1:-1;;;37137:18:0;;;;;;;;;;;37111:44;-1:-1:-1;;;;;37508:16:0;;;;;;:12;:16;;;;;;;;:45;;-1:-1:-1;;;;;37508:45:0;;-1:-1:-1;;;;;37508:45:0;;;;;;;;;;37568:50;;;;;;;;;;;;;;37635:25;;;:11;:25;;;;;:35;;-1:-1:-1;;;;;;37685:66:0;;;;-1:-1:-1;;;37735:15:0;37685:66;;;;;;;37635:25;;37820:330;37840:8;37836:1;:12;37820:330;;;37879:38;;37904:12;;-1:-1:-1;;;;;37879:38:0;;;37896:1;;37879:38;;37896:1;;37879:38;37940:4;:68;;;;;37949:59;37980:1;37984:2;37988:12;38002:5;37949:22;:59::i;:::-;37948:60;37940:68;37936:164;;;38040:40;;-1:-1:-1;;;38040:40:0;;;;;;;;;;;37936:164;38120:14;;;;;37850:3;37820:330;;;-1:-1:-1;38166:13:0;:28;38218:60;35294:308;-1:-1:-1;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;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:258::-;664:1;674:113;688:6;685:1;682:13;674:113;;;764:11;;;758:18;745:11;;;738:39;710:2;703:10;674:113;;;805:6;802:1;799:13;796:48;;;-1:-1:-1;;840:1:1;822:16;;815:27;592:258::o;855:269::-;908:3;946:5;940:12;973:6;968:3;961:19;989:63;1045:6;1038:4;1033:3;1029:14;1022:4;1015:5;1011:16;989:63;:::i;:::-;1106:2;1085:15;-1:-1:-1;;1081:29:1;1072:39;;;;1113:4;1068:50;;855:269;-1:-1:-1;;855:269:1:o;1129:231::-;1278:2;1267:9;1260:21;1241:4;1298:56;1350:2;1339:9;1335:18;1327:6;1298:56;:::i;1365:180::-;1424:6;1477:2;1465:9;1456:7;1452:23;1448:32;1445:52;;;1493:1;1490;1483:12;1445:52;-1:-1:-1;1516:23:1;;1365:180;-1:-1:-1;1365:180:1:o;1781:196::-;1849:20;;-1:-1:-1;;;;;1898:54:1;;1888:65;;1878:93;;1967:1;1964;1957:12;1878:93;1781:196;;;:::o;1982:254::-;2050:6;2058;2111:2;2099:9;2090:7;2086:23;2082:32;2079:52;;;2127:1;2124;2117:12;2079:52;2150:29;2169:9;2150:29;:::i;:::-;2140:39;2226:2;2211:18;;;;2198:32;;-1:-1:-1;;;1982:254:1:o;2628:328::-;2705:6;2713;2721;2774:2;2762:9;2753:7;2749:23;2745:32;2742:52;;;2790:1;2787;2780:12;2742:52;2813:29;2832:9;2813:29;:::i;:::-;2803:39;;2861:38;2895:2;2884:9;2880:18;2861:38;:::i;:::-;2851:48;;2946:2;2935:9;2931:18;2918:32;2908:42;;2628:328;;;;;:::o;2961:127::-;3022:10;3017:3;3013:20;3010:1;3003:31;3053:4;3050:1;3043:15;3077:4;3074:1;3067:15;3093:632;3158:5;3188:18;3229:2;3221:6;3218:14;3215:40;;;3235:18;;:::i;:::-;3310:2;3304:9;3278:2;3364:15;;-1:-1:-1;;3360:24:1;;;3386:2;3356:33;3352:42;3340:55;;;3410:18;;;3430:22;;;3407:46;3404:72;;;3456:18;;:::i;:::-;3496:10;3492:2;3485:22;3525:6;3516:15;;3555:6;3547;3540:22;3595:3;3586:6;3581:3;3577:16;3574:25;3571:45;;;3612:1;3609;3602:12;3571:45;3662:6;3657:3;3650:4;3642:6;3638:17;3625:44;3717:1;3710:4;3701:6;3693;3689:19;3685:30;3678:41;;;;3093:632;;;;;:::o;3730:451::-;3799:6;3852:2;3840:9;3831:7;3827:23;3823:32;3820:52;;;3868:1;3865;3858:12;3820:52;3908:9;3895:23;3941:18;3933:6;3930:30;3927:50;;;3973:1;3970;3963:12;3927:50;3996:22;;4049:4;4041:13;;4037:27;-1:-1:-1;4027:55:1;;4078:1;4075;4068:12;4027:55;4101:74;4167:7;4162:2;4149:16;4144:2;4140;4136:11;4101:74;:::i;4186:269::-;4243:6;4296:2;4284:9;4275:7;4271:23;4267:32;4264:52;;;4312:1;4309;4302:12;4264:52;4351:9;4338:23;4401:4;4394:5;4390:16;4383:5;4380:27;4370:55;;4421:1;4418;4411:12;4460:186;4519:6;4572:2;4560:9;4551:7;4547:23;4543:32;4540:52;;;4588:1;4585;4578:12;4540:52;4611:29;4630:9;4611:29;:::i;4651:160::-;4716:20;;4772:13;;4765:21;4755:32;;4745:60;;4801:1;4798;4791:12;4816:254;4881:6;4889;4942:2;4930:9;4921:7;4917:23;4913:32;4910:52;;;4958:1;4955;4948:12;4910:52;4981:29;5000:9;4981:29;:::i;:::-;4971:39;;5029:35;5060:2;5049:9;5045:18;5029:35;:::i;:::-;5019:45;;4816:254;;;;;:::o;5075:667::-;5170:6;5178;5186;5194;5247:3;5235:9;5226:7;5222:23;5218:33;5215:53;;;5264:1;5261;5254:12;5215:53;5287:29;5306:9;5287:29;:::i;:::-;5277:39;;5335:38;5369:2;5358:9;5354:18;5335:38;:::i;:::-;5325:48;;5420:2;5409:9;5405:18;5392:32;5382:42;;5475:2;5464:9;5460:18;5447:32;5502:18;5494:6;5491:30;5488:50;;;5534:1;5531;5524:12;5488:50;5557:22;;5610:4;5602:13;;5598:27;-1:-1:-1;5588:55:1;;5639:1;5636;5629:12;5588:55;5662:74;5728:7;5723:2;5710:16;5705:2;5701;5697:11;5662:74;:::i;:::-;5652:84;;;5075:667;;;;;;;:::o;5747:180::-;5803:6;5856:2;5844:9;5835:7;5831:23;5827:32;5824:52;;;5872:1;5869;5862:12;5824:52;5895:26;5911:9;5895:26;:::i;5932:260::-;6000:6;6008;6061:2;6049:9;6040:7;6036:23;6032:32;6029:52;;;6077:1;6074;6067:12;6029:52;6100:29;6119:9;6100:29;:::i;:::-;6090:39;;6148:38;6182:2;6171:9;6167:18;6148:38;:::i;6197:380::-;6276:1;6272:12;;;;6319;;;6340:61;;6394:4;6386:6;6382:17;6372:27;;6340:61;6447:2;6439:6;6436:14;6416:18;6413:38;6410:161;;;6493:10;6488:3;6484:20;6481:1;6474:31;6528:4;6525:1;6518:15;6556:4;6553:1;6546:15;6410:161;;6197:380;;;:::o;6582:127::-;6643:10;6638:3;6634:20;6631:1;6624:31;6674:4;6671:1;6664:15;6698:4;6695:1;6688:15;7435:127;7496:10;7491:3;7487:20;7484:1;7477:31;7527:4;7524:1;7517:15;7551:4;7548:1;7541:15;7567:168;7607:7;7673:1;7669;7665:6;7661:14;7658:1;7655:21;7650:1;7643:9;7636:17;7632:45;7629:71;;;7680:18;;:::i;:::-;-1:-1:-1;7720:9:1;;7567:168::o;7740:127::-;7801:10;7796:3;7792:20;7789:1;7782:31;7832:4;7829:1;7822:15;7856:4;7853:1;7846:15;7872:120;7912:1;7938;7928:35;;7943:18;;:::i;:::-;-1:-1:-1;7977:9:1;;7872:120::o;8756:128::-;8796:3;8827:1;8823:6;8820:1;8817:13;8814:39;;;8833:18;;:::i;:::-;-1:-1:-1;8869:9:1;;8756:128::o;10138:185::-;10180:3;10218:5;10212:12;10233:52;10278:6;10273:3;10266:4;10259:5;10255:16;10233:52;:::i;:::-;10301:16;;;;;10138:185;-1:-1:-1;;10138:185:1:o;10328:1174::-;10504:3;10533:1;10566:6;10560:13;10596:3;10618:1;10646:9;10642:2;10638:18;10628:28;;10706:2;10695:9;10691:18;10728;10718:61;;10772:4;10764:6;10760:17;10750:27;;10718:61;10798:2;10846;10838:6;10835:14;10815:18;10812:38;10809:165;;;-1:-1:-1;;;10873:33:1;;10929:4;10926:1;10919:15;10959:4;10880:3;10947:17;10809:165;10990:18;11017:104;;;;11135:1;11130:320;;;;10983:467;;11017:104;-1:-1:-1;;11050:24:1;;11038:37;;11095:16;;;;-1:-1:-1;11017:104:1;;11130:320;10085:1;10078:14;;;10122:4;10109:18;;11225:1;11239:165;11253:6;11250:1;11247:13;11239:165;;;11331:14;;11318:11;;;11311:35;11374:16;;;;11268:10;;11239:165;;;11243:3;;11433:6;11428:3;11424:16;11417:23;;10983:467;;;;;;;11466:30;11492:3;11484:6;11466:30;:::i;:::-;11459:37;10328:1174;-1:-1:-1;;;;;10328:1174:1:o;12909:523::-;13103:4;-1:-1:-1;;;;;13213:2:1;13205:6;13201:15;13190:9;13183:34;13265:2;13257:6;13253:15;13248:2;13237:9;13233:18;13226:43;;13305:6;13300:2;13289:9;13285:18;13278:34;13348:3;13343:2;13332:9;13328:18;13321:31;13369:57;13421:3;13410:9;13406:19;13398:6;13369:57;:::i;:::-;13361:65;12909:523;-1:-1:-1;;;;;;12909:523:1:o;13437:249::-;13506:6;13559:2;13547:9;13538:7;13534:23;13530:32;13527:52;;;13575:1;13572;13565:12;13527:52;13607:9;13601:16;13626:30;13650:5;13626:30;:::i;13691:135::-;13730:3;-1:-1:-1;;13751:17:1;;13748:43;;;13771:18;;:::i;:::-;-1:-1:-1;13818:1:1;13807:13;;13691:135::o;13831:125::-;13871:4;13899:1;13896;13893:8;13890:34;;;13904:18;;:::i;:::-;-1:-1:-1;13941:9:1;;13831:125::o;13961:112::-;13993:1;14019;14009:35;;14024:18;;:::i;:::-;-1:-1:-1;14058:9:1;;13961:112::o;14078:127::-;14139:10;14134:3;14130:20;14127:1;14120:31;14170:4;14167:1;14160:15;14194:4;14191:1;14184:15

Swarm Source

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