ETH Price: $3,361.91 (-0.65%)
Gas: 1 Gwei

Token

0xmfers (0xmfers)
 

Overview

Max Total Supply

5,999 0xmfers

Holders

1,245

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
chumwithnodick.eth
Balance
2 0xmfers
0xB2Aadf6BFc0a5213acb9c279394B46F50aEa65a3
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:
xMfers

Compiler Version
v0.8.6+commit.11564f7e

Optimization Enabled:
Yes with 800 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

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


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

pragma solidity ^0.8.0;

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

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

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

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

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

        _;

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

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


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

pragma solidity ^0.8.0;

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.1;

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

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


// OpenZeppelin Contracts 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 BurnedQueryForZeroAddress();
error AuxQueryForZeroAddress();
error MintToZeroAddress();
error MintZeroQuantity();
error OwnerIndexOutOfBounds();
error OwnerQueryForNonexistentToken();
error TokenIndexOutOfBounds();
error TransferCallerNotOwnerNorApproved();
error TransferFromIncorrectOwner();
error TransferToNonERC721ReceiverImplementer();
error TransferToZeroAddress();
error URIQueryForNonexistentToken();

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

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

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

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

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

    /**
     * @dev See {IERC721Enumerable-totalSupply}.
     */
    function totalSupply() public view returns (uint256) {
        // Counter underflow is impossible as _burnCounter cannot be incremented
        // more than _currentIndex times
        unchecked {
            return _currentIndex - _burnCounter;    
        }
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId, owner);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

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

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

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

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

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

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

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

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

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

            uint256 updatedIndex = startTokenId;

            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)) {
                // This will suffice for checking _exists(nextTokenId),
                // as a burned slot cannot contain the zero address.
                if (nextTokenId < _currentIndex) {
                    _ownerships[nextTokenId].addr = prevOwnership.addr;
                    _ownerships[nextTokenId].startTimestamp = prevOwnership.startTimestamp;
                }
            }
        }

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

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

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

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

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

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

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

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

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

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

    /**
     * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target 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.
     * And also called before burning one token.
     *
     * startTokenId - the first token id to be transferred
     * quantity - the amount to be transferred
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, `from`'s `tokenId` will be
     * transferred to `to`.
     * - When `from` is zero, `tokenId` will be minted for `to`.
     * - When `to` is zero, `tokenId` will be burned by `from`.
     * - `from` and `to` are never both zero.
     */
    function _beforeTokenTransfers(
        address from,
        address to,
        uint256 startTokenId,
        uint256 quantity
    ) internal virtual {}

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



pragma solidity ^0.8.4;

//  ________     ___    ___ _____ ______   ________ _______   ________  ________      
// |\   __  \   |\  \  /  /|\   _ \  _   \|\  _____\\  ___ \ |\   __  \|\   ____\     
// \ \  \|\  \  \ \  \/  / | \  \\\__\ \  \ \  \__/\ \   __/|\ \  \|\  \ \  \___|_    
//  \ \  \\\  \  \ \    / / \ \  \\|__| \  \ \   __\\ \  \_|/_\ \   _  _\ \_____  \   
//   \ \  \\\  \  /     \/   \ \  \    \ \  \ \  \_| \ \  \_|\ \ \  \\  \\|____|\  \  
//    \ \_______\/  /\   \    \ \__\    \ \__\ \__\   \ \_______\ \__\\ _\ ____\_\  \ 
//     \|_______/__/ /\ __\    \|__|     \|__|\|__|    \|_______|\|__|\|__|\_________\
//              |__|/ \|__|                                               \|_________|




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

    uint256 public MFPRICE; //0.01 Ξ = 10000000000000000 Wei
    uint256 public MFERS_MAX_SUPPLY; //MAX SUPPLY IS 10000
    uint256 public FREE_MINT_CAP_PER_WALLET_ADDRESS; //2 0xMFERS PER WALLET 
    uint256 public MAX_MINT_QUANTITY_PER_TX; //MAX 100 PER WALLET
    uint256 public FREE_MINT_IS_ALLOWED_UNTIL; // FREE MINT UNTIL X AMOUNT HAVE BEEN CLAIMED
    bool public IS_SALE_UP_AND_RUNNING; //ALL THINGS ARE A GO
    bool public IS_METADATA_FROZEN; //FREEZE METADATA AFTER MINTED HAS BEEN REVEALED 
    string private BASE_URI; //METADATA
    string public baseExtension = ".json";

    mapping(address => uint256) private freeMintCountMap;

    constructor(uint256 price, uint256 maxSupply, string memory baseUri, uint256 freeMintAllowance, uint256 maxMintPerTx, bool isSaleActive, uint256 freeMintIsAllowedUntil) ERC721A("0xmfers", "0xmfers") {
        MFPRICE = price;
        MFERS_MAX_SUPPLY = maxSupply;
        BASE_URI = baseUri;
        FREE_MINT_CAP_PER_WALLET_ADDRESS = freeMintAllowance;
        MAX_MINT_QUANTITY_PER_TX = maxMintPerTx;
        IS_SALE_UP_AND_RUNNING = isSaleActive;
        FREE_MINT_IS_ALLOWED_UNTIL = freeMintIsAllowedUntil;
    }

    /** GETTERS MFERS **/

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

    function tokenURI(uint256 tokenId) public view virtual override returns (string memory)
    {
    require(_exists(tokenId),"ERC721AMetadata: URI query for nonexistent token");
    string memory currentBaseURI = _baseURI();
    return bytes(currentBaseURI).length > 0
        ? string(abi.encodePacked(currentBaseURI, tokenId.toString(), baseExtension))
        : "";
        }

    /** SETTERS MFERS **/

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

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

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

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

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

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

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

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

    /** FREE MINT FOR THE LUCKY MFERS **/

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

    /** MINT MFERS **/

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

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

        uint256 price = MFPRICE * _mintAmount;

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

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

        _safeMint(msg.sender, _mintAmount);
    }

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

    /** WITHDRAW MFERS **/
    
    //DAO WALLET
    address private constant payoutAddress1 = 0x5ABc60aA3c3978749DF8C6821e05fc28aeD71134;
    address private constant payoutAddress2 = 0x5b76F295498954B7CcAfA8D6a809a89f79c4A643;

    function withdraw() public onlyOwner nonReentrant {
        uint256 balance = address(this).balance;

        Address.sendValue(payable(payoutAddress1), balance / 2);
        Address.sendValue(payable(payoutAddress2), balance / 2);
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"uint256","name":"price","type":"uint256"},{"internalType":"uint256","name":"maxSupply","type":"uint256"},{"internalType":"string","name":"baseUri","type":"string"},{"internalType":"uint256","name":"freeMintAllowance","type":"uint256"},{"internalType":"uint256","name":"maxMintPerTx","type":"uint256"},{"internalType":"bool","name":"isSaleActive","type":"bool"},{"internalType":"uint256","name":"freeMintIsAllowedUntil","type":"uint256"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"FREE_MINT_CAP_PER_WALLET_ADDRESS","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"FREE_MINT_IS_ALLOWED_UNTIL","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"IS_METADATA_FROZEN","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"IS_SALE_UP_AND_RUNNING","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_MINT_QUANTITY_PER_TX","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MFERS_MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MFPRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseExtension","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"freezeMetadata","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"newMaxSupply","type":"uint256"}],"name":"lowerMaxSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mintOwner","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"customBaseURI_","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"freeMintAllowance","type":"uint256"}],"name":"setFreeMintAllowance","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"freeMintIsAllowedUntil","type":"uint256"}],"name":"setFreeMintAllowedUntil","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"maxMintPerTx","type":"uint256"}],"name":"setMaxMintPerTx","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"customPrice","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"saleIsActive","type":"bool"}],"name":"setSaleActive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60c06040526005608081905264173539b7b760d91b60a090815262000028916011919062000173565b503480156200003657600080fd5b50604051620027253803806200272583398101604081905262000059916200022f565b60408051808201825260078082526630786d6665727360c81b6020808401828152855180870190965292855284015281519192916200009b9160029162000173565b508051620000b190600390602084019062000173565b505050620000ce620000c86200011d60201b60201c565b62000121565b6001600955600a879055600b8690558451620000f290601090602088019062000173565b50600c93909355600d91909155600f805460ff1916911515919091179055600e5550620003a5915050565b3390565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b828054620001819062000352565b90600052602060002090601f016020900481019282620001a55760008555620001f0565b82601f10620001c057805160ff1916838001178555620001f0565b82800160010185558215620001f0579182015b82811115620001f0578251825591602001919060010190620001d3565b50620001fe92915062000202565b5090565b5b80821115620001fe576000815560010162000203565b805180151581146200022a57600080fd5b919050565b600080600080600080600060e0888a0312156200024b57600080fd5b87516020808a015160408b01519299509750906001600160401b03808211156200027457600080fd5b818b0191508b601f8301126200028957600080fd5b8151818111156200029e576200029e6200038f565b604051601f8201601f19908116603f01168101908382118183101715620002c957620002c96200038f565b816040528281528e86848701011115620002e257600080fd5b600093505b82841015620003065784840186015181850187015292850192620002e7565b82841115620003185760008684830101525b809a5050505050505060608801519350608088015192506200033d60a0890162000219565b915060c0880151905092959891949750929550565b600181811c908216806200036757607f821691505b602082108114156200038957634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052604160045260246000fd5b61237080620003b56000396000f3fe60806040526004361061024f5760003560e01c8063715018a611610138578063b0551ac4116100b0578063c87b56dd1161007f578063e985e9c511610064578063e985e9c514610633578063e9e7220f1461067c578063f2fde38b1461069257600080fd5b8063c87b56dd146105fe578063d111515d1461061e57600080fd5b8063b0551ac414610589578063b88d4fde146105a9578063c4e9374d146105c9578063c6682862146105e957600080fd5b806391b7f5ed116101075780639b4a0744116100ec5780639b4a074414610540578063a0712d6814610556578063a22cb4651461056957600080fd5b806391b7f5ed1461050b57806395d89b411461052b57600080fd5b8063715018a614610498578063841718a6146104ad5780638b85e43d146104cd5780638da5cb5b146104ed57600080fd5b80634065b85f116101cb5780635e4d63761161019a5780636352211e1161017f5780636352211e146104395780636fbdae511461045957806370a082311461047857600080fd5b80635e4d637614610403578063616cdb1e1461041957600080fd5b80634065b85f1461038d578063408cbf94146103a357806342842e0e146103c357806355f804b3146103e357600080fd5b806318160ddd11610222578063230d7de811610207578063230d7de81461034257806323b872dd146103585780633ccfd60b1461037857600080fd5b806318160ddd146103055780631b0bd89b1461032857600080fd5b806301ffc9a71461025457806306fdde0314610289578063081812fc146102ab578063095ea7b3146102e3575b600080fd5b34801561026057600080fd5b5061027461026f366004611fd9565b6106b2565b60405190151581526020015b60405180910390f35b34801561029557600080fd5b5061029e610704565b60405161028091906121a1565b3480156102b757600080fd5b506102cb6102c636600461205c565b610796565b6040516001600160a01b039091168152602001610280565b3480156102ef57600080fd5b506103036102fe366004611f94565b6107da565b005b34801561031157600080fd5b50600154600054035b604051908152602001610280565b34801561033457600080fd5b50600f546102749060ff1681565b34801561034e57600080fd5b5061031a600a5481565b34801561036457600080fd5b50610303610373366004611eb2565b610868565b34801561038457600080fd5b50610303610873565b34801561039957600080fd5b5061031a600e5481565b3480156103af57600080fd5b506103036103be366004611f94565b610970565b3480156103cf57600080fd5b506103036103de366004611eb2565b610a80565b3480156103ef57600080fd5b506103036103fe366004612013565b610a9b565b34801561040f57600080fd5b5061031a600c5481565b34801561042557600080fd5b5061030361043436600461205c565b610b52565b34801561044557600080fd5b506102cb61045436600461205c565b610b9f565b34801561046557600080fd5b50600f5461027490610100900460ff1681565b34801561048457600080fd5b5061031a610493366004611e64565b610bb1565b3480156104a457600080fd5b50610303610c00565b3480156104b957600080fd5b506103036104c8366004611fbe565b610c54565b3480156104d957600080fd5b506103036104e836600461205c565b610caf565b3480156104f957600080fd5b506008546001600160a01b03166102cb565b34801561051757600080fd5b5061030361052636600461205c565b610cfc565b34801561053757600080fd5b5061029e610d49565b34801561054c57600080fd5b5061031a600d5481565b61030361056436600461205c565b610d58565b34801561057557600080fd5b50610303610584366004611f6a565b610f59565b34801561059557600080fd5b506103036105a436600461205c565b610fef565b3480156105b557600080fd5b506103036105c4366004611eee565b61103c565b3480156105d557600080fd5b506103036105e436600461205c565b611076565b3480156105f557600080fd5b5061029e611166565b34801561060a57600080fd5b5061029e61061936600461205c565b6111f4565b34801561062a57600080fd5b506103036112d0565b34801561063f57600080fd5b5061027461064e366004611e7f565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b34801561068857600080fd5b5061031a600b5481565b34801561069e57600080fd5b506103036106ad366004611e64565b611329565b60006001600160e01b031982166380ac58cd60e01b14806106e357506001600160e01b03198216635b5e139f60e01b145b806106fe57506301ffc9a760e01b6001600160e01b03198316145b92915050565b60606002805461071390612242565b80601f016020809104026020016040519081016040528092919081815260200182805461073f90612242565b801561078c5780601f106107615761010080835404028352916020019161078c565b820191906000526020600020905b81548152906001019060200180831161076f57829003601f168201915b5050505050905090565b60006107a1826113f9565b6107be576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b60006107e582610b9f565b9050806001600160a01b0316836001600160a01b0316141561081a5760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b0382161480159061083a5750610838813361064e565b155b15610858576040516367d9dca160e11b815260040160405180910390fd5b610863838383611424565b505050565b61086383838361148d565b6008546001600160a01b031633146108c05760405162461bcd60e51b8152602060048201819052602482015260008051602061231b83398151915260448201526064015b60405180910390fd5b600260095414156109135760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0060448201526064016108b7565b60026009819055479061094590735abc60aa3c3978749df8c6821e05fc28aed711349061094090846121cc565b6116a3565b610968735b76f295498954b7ccafa8d6a809a89f79c4a6436109406002846121cc565b506001600955565b806000811180156109835750600d548111155b6109cf5760405162461bcd60e51b815260206004820152601a60248201527f496e76616c6964206d696e7420616d6f756e74206d666572732100000000000060448201526064016108b7565b600b54816000546109e091906121b4565b1115610a2e5760405162461bcd60e51b815260206004820152601a60248201527f4d617820737570706c79206578636565646564206d666572732100000000000060448201526064016108b7565b6008546001600160a01b03163314610a765760405162461bcd60e51b8152602060048201819052602482015260008051602061231b83398151915260448201526064016108b7565b61086383836117bc565b6108638383836040518060200160405280600081525061103c565b6008546001600160a01b03163314610ae35760405162461bcd60e51b8152602060048201819052602482015260008051602061231b83398151915260448201526064016108b7565b600f54610100900460ff1615610b3b5760405162461bcd60e51b815260206004820181905260248201527f4d6574616461746120697320616c72656164792066726f7a656e206d6665722160448201526064016108b7565b8051610b4e906010906020840190611d29565b5050565b6008546001600160a01b03163314610b9a5760405162461bcd60e51b8152602060048201819052602482015260008051602061231b83398151915260448201526064016108b7565b600d55565b6000610baa826117d6565b5192915050565b60006001600160a01b038216610bda576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b6008546001600160a01b03163314610c485760405162461bcd60e51b8152602060048201819052602482015260008051602061231b83398151915260448201526064016108b7565b610c5260006118f1565b565b6008546001600160a01b03163314610c9c5760405162461bcd60e51b8152602060048201819052602482015260008051602061231b83398151915260448201526064016108b7565b600f805460ff1916911515919091179055565b6008546001600160a01b03163314610cf75760405162461bcd60e51b8152602060048201819052602482015260008051602061231b83398151915260448201526064016108b7565b600e55565b6008546001600160a01b03163314610d445760405162461bcd60e51b8152602060048201819052602482015260008051602061231b83398151915260448201526064016108b7565b600a55565b60606003805461071390612242565b80600081118015610d6b5750600d548111155b610db75760405162461bcd60e51b815260206004820152601a60248201527f496e76616c6964206d696e7420616d6f756e74206d666572732100000000000060448201526064016108b7565b600b5481600054610dc891906121b4565b1115610e165760405162461bcd60e51b815260206004820152601a60248201527f4d617820737570706c79206578636565646564206d666572732100000000000060448201526064016108b7565b600f5460ff16610e685760405162461bcd60e51b815260206004820152601960248201527f53616c65206973206e6f7420616374697665206d66657273210000000000000060448201526064016108b7565b600082600a54610e7891906121e0565b9050600e546000541015610eff5733600090815260126020526040812054600c54610ea391906121ff565b90508015610efd57808410610eda57600a54610ebf90826121e0565b610ec990836121ff565b9150610ed53382611950565b610efd565b600a54610ee790856121e0565b610ef190836121ff565b9150610efd3385611950565b505b80341015610f4f5760405162461bcd60e51b815260206004820152601860248201527f496e73756666696369656e742066756e6473206d66657221000000000000000060448201526064016108b7565b61086333846117bc565b6001600160a01b038216331415610f835760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6008546001600160a01b031633146110375760405162461bcd60e51b8152602060048201819052602482015260008051602061231b83398151915260448201526064016108b7565b600c55565b61104784848461148d565b61105384848484611981565b611070576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b6008546001600160a01b031633146110be5760405162461bcd60e51b8152602060048201819052602482015260008051602061231b83398151915260448201526064016108b7565b600b54811061110f5760405162461bcd60e51b815260206004820152601b60248201527f496e76616c6964206e6577206d617820737570706c79206d666572000000000060448201526064016108b7565b6000548110156111615760405162461bcd60e51b815260206004820152601b60248201527f496e76616c6964206e6577206d617820737570706c79206d666572000000000060448201526064016108b7565b600b55565b6011805461117390612242565b80601f016020809104026020016040519081016040528092919081815260200182805461119f90612242565b80156111ec5780601f106111c1576101008083540402835291602001916111ec565b820191906000526020600020905b8154815290600101906020018083116111cf57829003601f168201915b505050505081565b60606111ff826113f9565b6112715760405162461bcd60e51b815260206004820152603060248201527f455243373231414d657461646174613a2055524920717565727920666f72206e60448201527f6f6e6578697374656e7420746f6b656e0000000000000000000000000000000060648201526084016108b7565b600061127b611a90565b9050600081511161129b57604051806020016040528060008152506112c9565b806112a584611a9f565b60116040516020016112b9939291906120a1565b6040516020818303038152906040525b9392505050565b6008546001600160a01b031633146113185760405162461bcd60e51b8152602060048201819052602482015260008051602061231b83398151915260448201526064016108b7565b600f805461ff001916610100179055565b6008546001600160a01b031633146113715760405162461bcd60e51b8152602060048201819052602482015260008051602061231b83398151915260448201526064016108b7565b6001600160a01b0381166113ed5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f646472657373000000000000000000000000000000000000000000000000000060648201526084016108b7565b6113f6816118f1565b50565b60008054821080156106fe575050600090815260046020526040902054600160e01b900460ff161590565b600082815260066020526040808220805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6000611498826117d6565b80519091506000906001600160a01b0316336001600160a01b031614806114c6575081516114c6903361064e565b806114e15750336114d684610796565b6001600160a01b0316145b90508061150157604051632ce44b5f60e11b815260040160405180910390fd5b846001600160a01b031682600001516001600160a01b0316146115365760405162a1148160e81b815260040160405180910390fd5b6001600160a01b03841661155d57604051633a954ecd60e21b815260040160405180910390fd5b61156d6000848460000151611424565b6001600160a01b038581166000908152600560209081526040808320805467ffffffffffffffff1980821667ffffffffffffffff92831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600490945282852080546001600160e01b031916909417600160a01b42909216919091021790925590860180835291205490911661165957600054811015611659578251600082815260046020908152604090912080549186015167ffffffffffffffff16600160a01b026001600160e01b03199092166001600160a01b03909316929092171790555b5082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b804710156116f35760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a20696e73756666696369656e742062616c616e636500000060448201526064016108b7565b6000826001600160a01b03168260405160006040518083038185875af1925050503d8060008114611740576040519150601f19603f3d011682016040523d82523d6000602084013e611745565b606091505b50509050806108635760405162461bcd60e51b815260206004820152603a60248201527f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260448201527f6563697069656e74206d6179206861766520726576657274656400000000000060648201526084016108b7565b610b4e828260405180602001604052806000815250611bb5565b60408051606081018252600080825260208201819052918101829052905482908110156118d857600081815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b810467ffffffffffffffff1692820192909252600160e01b90910460ff161515918101829052906118d65780516001600160a01b03161561186c579392505050565b5060001901600081815260046020908152604091829020825160608101845290546001600160a01b038116808352600160a01b820467ffffffffffffffff1693830193909352600160e01b900460ff16151592810192909252156118d1579392505050565b61186c565b505b604051636f96cda160e11b815260040160405180910390fd5b600880546001600160a01b0383811673ffffffffffffffffffffffffffffffffffffffff19831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b038216600090815260126020526040812080548392906119789084906121b4565b90915550505050565b60006001600160a01b0384163b15611a8457604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906119c5903390899088908890600401612165565b602060405180830381600087803b1580156119df57600080fd5b505af1925050508015611a0f575060408051601f3d908101601f19168201909252611a0c91810190611ff6565b60015b611a6a573d808015611a3d576040519150601f19603f3d011682016040523d82523d6000602084013e611a42565b606091505b508051611a62576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611a88565b5060015b949350505050565b60606010805461071390612242565b606081611ac35750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611aed5780611ad78161227d565b9150611ae69050600a836121cc565b9150611ac7565b60008167ffffffffffffffff811115611b0857611b086122ee565b6040519080825280601f01601f191660200182016040528015611b32576020820181803683370190505b5090505b8415611a8857611b476001836121ff565b9150611b54600a86612298565b611b5f9060306121b4565b60f81b818381518110611b7457611b746122d8565b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350611bae600a866121cc565b9450611b36565b61086383838360016000546001600160a01b038516611be657604051622e076360e81b815260040160405180910390fd5b83611c045760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038516600081815260056020908152604080832080546fffffffffffffffffffffffffffffffff19811667ffffffffffffffff8083168c0181169182176801000000000000000067ffffffffffffffff1990941690921783900481168c018116909202179091558584526004909252822080546001600160e01b031916909317600160a01b42909216919091021790915581905b85811015611d205760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4838015611cf65750611cf46000888488611981565b155b15611d14576040516368d2bf6b60e11b815260040160405180910390fd5b60019182019101611c9f565b5060005561169c565b828054611d3590612242565b90600052602060002090601f016020900481019282611d575760008555611d9d565b82601f10611d7057805160ff1916838001178555611d9d565b82800160010185558215611d9d579182015b82811115611d9d578251825591602001919060010190611d82565b50611da9929150611dad565b5090565b5b80821115611da95760008155600101611dae565b600067ffffffffffffffff80841115611ddd57611ddd6122ee565b604051601f8501601f19908116603f01168101908282118183101715611e0557611e056122ee565b81604052809350858152868686011115611e1e57600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b0381168114611e4f57600080fd5b919050565b80358015158114611e4f57600080fd5b600060208284031215611e7657600080fd5b6112c982611e38565b60008060408385031215611e9257600080fd5b611e9b83611e38565b9150611ea960208401611e38565b90509250929050565b600080600060608486031215611ec757600080fd5b611ed084611e38565b9250611ede60208501611e38565b9150604084013590509250925092565b60008060008060808587031215611f0457600080fd5b611f0d85611e38565b9350611f1b60208601611e38565b925060408501359150606085013567ffffffffffffffff811115611f3e57600080fd5b8501601f81018713611f4f57600080fd5b611f5e87823560208401611dc2565b91505092959194509250565b60008060408385031215611f7d57600080fd5b611f8683611e38565b9150611ea960208401611e54565b60008060408385031215611fa757600080fd5b611fb083611e38565b946020939093013593505050565b600060208284031215611fd057600080fd5b6112c982611e54565b600060208284031215611feb57600080fd5b81356112c981612304565b60006020828403121561200857600080fd5b81516112c981612304565b60006020828403121561202557600080fd5b813567ffffffffffffffff81111561203c57600080fd5b8201601f8101841361204d57600080fd5b611a8884823560208401611dc2565b60006020828403121561206e57600080fd5b5035919050565b6000815180845261208d816020860160208601612216565b601f01601f19169290920160200192915050565b6000845160206120b48285838a01612216565b8551918401916120c78184848a01612216565b8554920191600090600181811c90808316806120e457607f831692505b85831081141561210257634e487b7160e01b85526022600452602485fd5b808015612116576001811461212757612154565b60ff19851688528388019550612154565b60008b81526020902060005b8581101561214c5781548a820152908401908801612133565b505083880195505b50939b9a5050505050505050505050565b60006001600160a01b038087168352808616602084015250836040830152608060608301526121976080830184612075565b9695505050505050565b6020815260006112c96020830184612075565b600082198211156121c7576121c76122ac565b500190565b6000826121db576121db6122c2565b500490565b60008160001904831182151516156121fa576121fa6122ac565b500290565b600082821015612211576122116122ac565b500390565b60005b83811015612231578181015183820152602001612219565b838111156110705750506000910152565b600181811c9082168061225657607f821691505b6020821081141561227757634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415612291576122916122ac565b5060010190565b6000826122a7576122a76122c2565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b0319811681146113f657600080fdfe4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572a2646970667358221220b6492d89602f82307d21003f22c541b8318b443cd5cf2b9b576785725c82a0f564736f6c63430008060033000000000000000000000000000000000000000000000000002386f26fc10000000000000000000000000000000000000000000000000000000000000000271000000000000000000000000000000000000000000000000000000000000000e000000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000064000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003e80000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d665450426f584c5172454861346373644252544a415637696575385177326445764d44706a315636795432502f00000000000000000000

Deployed Bytecode

0x60806040526004361061024f5760003560e01c8063715018a611610138578063b0551ac4116100b0578063c87b56dd1161007f578063e985e9c511610064578063e985e9c514610633578063e9e7220f1461067c578063f2fde38b1461069257600080fd5b8063c87b56dd146105fe578063d111515d1461061e57600080fd5b8063b0551ac414610589578063b88d4fde146105a9578063c4e9374d146105c9578063c6682862146105e957600080fd5b806391b7f5ed116101075780639b4a0744116100ec5780639b4a074414610540578063a0712d6814610556578063a22cb4651461056957600080fd5b806391b7f5ed1461050b57806395d89b411461052b57600080fd5b8063715018a614610498578063841718a6146104ad5780638b85e43d146104cd5780638da5cb5b146104ed57600080fd5b80634065b85f116101cb5780635e4d63761161019a5780636352211e1161017f5780636352211e146104395780636fbdae511461045957806370a082311461047857600080fd5b80635e4d637614610403578063616cdb1e1461041957600080fd5b80634065b85f1461038d578063408cbf94146103a357806342842e0e146103c357806355f804b3146103e357600080fd5b806318160ddd11610222578063230d7de811610207578063230d7de81461034257806323b872dd146103585780633ccfd60b1461037857600080fd5b806318160ddd146103055780631b0bd89b1461032857600080fd5b806301ffc9a71461025457806306fdde0314610289578063081812fc146102ab578063095ea7b3146102e3575b600080fd5b34801561026057600080fd5b5061027461026f366004611fd9565b6106b2565b60405190151581526020015b60405180910390f35b34801561029557600080fd5b5061029e610704565b60405161028091906121a1565b3480156102b757600080fd5b506102cb6102c636600461205c565b610796565b6040516001600160a01b039091168152602001610280565b3480156102ef57600080fd5b506103036102fe366004611f94565b6107da565b005b34801561031157600080fd5b50600154600054035b604051908152602001610280565b34801561033457600080fd5b50600f546102749060ff1681565b34801561034e57600080fd5b5061031a600a5481565b34801561036457600080fd5b50610303610373366004611eb2565b610868565b34801561038457600080fd5b50610303610873565b34801561039957600080fd5b5061031a600e5481565b3480156103af57600080fd5b506103036103be366004611f94565b610970565b3480156103cf57600080fd5b506103036103de366004611eb2565b610a80565b3480156103ef57600080fd5b506103036103fe366004612013565b610a9b565b34801561040f57600080fd5b5061031a600c5481565b34801561042557600080fd5b5061030361043436600461205c565b610b52565b34801561044557600080fd5b506102cb61045436600461205c565b610b9f565b34801561046557600080fd5b50600f5461027490610100900460ff1681565b34801561048457600080fd5b5061031a610493366004611e64565b610bb1565b3480156104a457600080fd5b50610303610c00565b3480156104b957600080fd5b506103036104c8366004611fbe565b610c54565b3480156104d957600080fd5b506103036104e836600461205c565b610caf565b3480156104f957600080fd5b506008546001600160a01b03166102cb565b34801561051757600080fd5b5061030361052636600461205c565b610cfc565b34801561053757600080fd5b5061029e610d49565b34801561054c57600080fd5b5061031a600d5481565b61030361056436600461205c565b610d58565b34801561057557600080fd5b50610303610584366004611f6a565b610f59565b34801561059557600080fd5b506103036105a436600461205c565b610fef565b3480156105b557600080fd5b506103036105c4366004611eee565b61103c565b3480156105d557600080fd5b506103036105e436600461205c565b611076565b3480156105f557600080fd5b5061029e611166565b34801561060a57600080fd5b5061029e61061936600461205c565b6111f4565b34801561062a57600080fd5b506103036112d0565b34801561063f57600080fd5b5061027461064e366004611e7f565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b34801561068857600080fd5b5061031a600b5481565b34801561069e57600080fd5b506103036106ad366004611e64565b611329565b60006001600160e01b031982166380ac58cd60e01b14806106e357506001600160e01b03198216635b5e139f60e01b145b806106fe57506301ffc9a760e01b6001600160e01b03198316145b92915050565b60606002805461071390612242565b80601f016020809104026020016040519081016040528092919081815260200182805461073f90612242565b801561078c5780601f106107615761010080835404028352916020019161078c565b820191906000526020600020905b81548152906001019060200180831161076f57829003601f168201915b5050505050905090565b60006107a1826113f9565b6107be576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b60006107e582610b9f565b9050806001600160a01b0316836001600160a01b0316141561081a5760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b0382161480159061083a5750610838813361064e565b155b15610858576040516367d9dca160e11b815260040160405180910390fd5b610863838383611424565b505050565b61086383838361148d565b6008546001600160a01b031633146108c05760405162461bcd60e51b8152602060048201819052602482015260008051602061231b83398151915260448201526064015b60405180910390fd5b600260095414156109135760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0060448201526064016108b7565b60026009819055479061094590735abc60aa3c3978749df8c6821e05fc28aed711349061094090846121cc565b6116a3565b610968735b76f295498954b7ccafa8d6a809a89f79c4a6436109406002846121cc565b506001600955565b806000811180156109835750600d548111155b6109cf5760405162461bcd60e51b815260206004820152601a60248201527f496e76616c6964206d696e7420616d6f756e74206d666572732100000000000060448201526064016108b7565b600b54816000546109e091906121b4565b1115610a2e5760405162461bcd60e51b815260206004820152601a60248201527f4d617820737570706c79206578636565646564206d666572732100000000000060448201526064016108b7565b6008546001600160a01b03163314610a765760405162461bcd60e51b8152602060048201819052602482015260008051602061231b83398151915260448201526064016108b7565b61086383836117bc565b6108638383836040518060200160405280600081525061103c565b6008546001600160a01b03163314610ae35760405162461bcd60e51b8152602060048201819052602482015260008051602061231b83398151915260448201526064016108b7565b600f54610100900460ff1615610b3b5760405162461bcd60e51b815260206004820181905260248201527f4d6574616461746120697320616c72656164792066726f7a656e206d6665722160448201526064016108b7565b8051610b4e906010906020840190611d29565b5050565b6008546001600160a01b03163314610b9a5760405162461bcd60e51b8152602060048201819052602482015260008051602061231b83398151915260448201526064016108b7565b600d55565b6000610baa826117d6565b5192915050565b60006001600160a01b038216610bda576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b6008546001600160a01b03163314610c485760405162461bcd60e51b8152602060048201819052602482015260008051602061231b83398151915260448201526064016108b7565b610c5260006118f1565b565b6008546001600160a01b03163314610c9c5760405162461bcd60e51b8152602060048201819052602482015260008051602061231b83398151915260448201526064016108b7565b600f805460ff1916911515919091179055565b6008546001600160a01b03163314610cf75760405162461bcd60e51b8152602060048201819052602482015260008051602061231b83398151915260448201526064016108b7565b600e55565b6008546001600160a01b03163314610d445760405162461bcd60e51b8152602060048201819052602482015260008051602061231b83398151915260448201526064016108b7565b600a55565b60606003805461071390612242565b80600081118015610d6b5750600d548111155b610db75760405162461bcd60e51b815260206004820152601a60248201527f496e76616c6964206d696e7420616d6f756e74206d666572732100000000000060448201526064016108b7565b600b5481600054610dc891906121b4565b1115610e165760405162461bcd60e51b815260206004820152601a60248201527f4d617820737570706c79206578636565646564206d666572732100000000000060448201526064016108b7565b600f5460ff16610e685760405162461bcd60e51b815260206004820152601960248201527f53616c65206973206e6f7420616374697665206d66657273210000000000000060448201526064016108b7565b600082600a54610e7891906121e0565b9050600e546000541015610eff5733600090815260126020526040812054600c54610ea391906121ff565b90508015610efd57808410610eda57600a54610ebf90826121e0565b610ec990836121ff565b9150610ed53382611950565b610efd565b600a54610ee790856121e0565b610ef190836121ff565b9150610efd3385611950565b505b80341015610f4f5760405162461bcd60e51b815260206004820152601860248201527f496e73756666696369656e742066756e6473206d66657221000000000000000060448201526064016108b7565b61086333846117bc565b6001600160a01b038216331415610f835760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6008546001600160a01b031633146110375760405162461bcd60e51b8152602060048201819052602482015260008051602061231b83398151915260448201526064016108b7565b600c55565b61104784848461148d565b61105384848484611981565b611070576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b6008546001600160a01b031633146110be5760405162461bcd60e51b8152602060048201819052602482015260008051602061231b83398151915260448201526064016108b7565b600b54811061110f5760405162461bcd60e51b815260206004820152601b60248201527f496e76616c6964206e6577206d617820737570706c79206d666572000000000060448201526064016108b7565b6000548110156111615760405162461bcd60e51b815260206004820152601b60248201527f496e76616c6964206e6577206d617820737570706c79206d666572000000000060448201526064016108b7565b600b55565b6011805461117390612242565b80601f016020809104026020016040519081016040528092919081815260200182805461119f90612242565b80156111ec5780601f106111c1576101008083540402835291602001916111ec565b820191906000526020600020905b8154815290600101906020018083116111cf57829003601f168201915b505050505081565b60606111ff826113f9565b6112715760405162461bcd60e51b815260206004820152603060248201527f455243373231414d657461646174613a2055524920717565727920666f72206e60448201527f6f6e6578697374656e7420746f6b656e0000000000000000000000000000000060648201526084016108b7565b600061127b611a90565b9050600081511161129b57604051806020016040528060008152506112c9565b806112a584611a9f565b60116040516020016112b9939291906120a1565b6040516020818303038152906040525b9392505050565b6008546001600160a01b031633146113185760405162461bcd60e51b8152602060048201819052602482015260008051602061231b83398151915260448201526064016108b7565b600f805461ff001916610100179055565b6008546001600160a01b031633146113715760405162461bcd60e51b8152602060048201819052602482015260008051602061231b83398151915260448201526064016108b7565b6001600160a01b0381166113ed5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f646472657373000000000000000000000000000000000000000000000000000060648201526084016108b7565b6113f6816118f1565b50565b60008054821080156106fe575050600090815260046020526040902054600160e01b900460ff161590565b600082815260066020526040808220805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6000611498826117d6565b80519091506000906001600160a01b0316336001600160a01b031614806114c6575081516114c6903361064e565b806114e15750336114d684610796565b6001600160a01b0316145b90508061150157604051632ce44b5f60e11b815260040160405180910390fd5b846001600160a01b031682600001516001600160a01b0316146115365760405162a1148160e81b815260040160405180910390fd5b6001600160a01b03841661155d57604051633a954ecd60e21b815260040160405180910390fd5b61156d6000848460000151611424565b6001600160a01b038581166000908152600560209081526040808320805467ffffffffffffffff1980821667ffffffffffffffff92831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600490945282852080546001600160e01b031916909417600160a01b42909216919091021790925590860180835291205490911661165957600054811015611659578251600082815260046020908152604090912080549186015167ffffffffffffffff16600160a01b026001600160e01b03199092166001600160a01b03909316929092171790555b5082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b804710156116f35760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a20696e73756666696369656e742062616c616e636500000060448201526064016108b7565b6000826001600160a01b03168260405160006040518083038185875af1925050503d8060008114611740576040519150601f19603f3d011682016040523d82523d6000602084013e611745565b606091505b50509050806108635760405162461bcd60e51b815260206004820152603a60248201527f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260448201527f6563697069656e74206d6179206861766520726576657274656400000000000060648201526084016108b7565b610b4e828260405180602001604052806000815250611bb5565b60408051606081018252600080825260208201819052918101829052905482908110156118d857600081815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b810467ffffffffffffffff1692820192909252600160e01b90910460ff161515918101829052906118d65780516001600160a01b03161561186c579392505050565b5060001901600081815260046020908152604091829020825160608101845290546001600160a01b038116808352600160a01b820467ffffffffffffffff1693830193909352600160e01b900460ff16151592810192909252156118d1579392505050565b61186c565b505b604051636f96cda160e11b815260040160405180910390fd5b600880546001600160a01b0383811673ffffffffffffffffffffffffffffffffffffffff19831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b038216600090815260126020526040812080548392906119789084906121b4565b90915550505050565b60006001600160a01b0384163b15611a8457604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906119c5903390899088908890600401612165565b602060405180830381600087803b1580156119df57600080fd5b505af1925050508015611a0f575060408051601f3d908101601f19168201909252611a0c91810190611ff6565b60015b611a6a573d808015611a3d576040519150601f19603f3d011682016040523d82523d6000602084013e611a42565b606091505b508051611a62576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611a88565b5060015b949350505050565b60606010805461071390612242565b606081611ac35750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611aed5780611ad78161227d565b9150611ae69050600a836121cc565b9150611ac7565b60008167ffffffffffffffff811115611b0857611b086122ee565b6040519080825280601f01601f191660200182016040528015611b32576020820181803683370190505b5090505b8415611a8857611b476001836121ff565b9150611b54600a86612298565b611b5f9060306121b4565b60f81b818381518110611b7457611b746122d8565b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350611bae600a866121cc565b9450611b36565b61086383838360016000546001600160a01b038516611be657604051622e076360e81b815260040160405180910390fd5b83611c045760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038516600081815260056020908152604080832080546fffffffffffffffffffffffffffffffff19811667ffffffffffffffff8083168c0181169182176801000000000000000067ffffffffffffffff1990941690921783900481168c018116909202179091558584526004909252822080546001600160e01b031916909317600160a01b42909216919091021790915581905b85811015611d205760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4838015611cf65750611cf46000888488611981565b155b15611d14576040516368d2bf6b60e11b815260040160405180910390fd5b60019182019101611c9f565b5060005561169c565b828054611d3590612242565b90600052602060002090601f016020900481019282611d575760008555611d9d565b82601f10611d7057805160ff1916838001178555611d9d565b82800160010185558215611d9d579182015b82811115611d9d578251825591602001919060010190611d82565b50611da9929150611dad565b5090565b5b80821115611da95760008155600101611dae565b600067ffffffffffffffff80841115611ddd57611ddd6122ee565b604051601f8501601f19908116603f01168101908282118183101715611e0557611e056122ee565b81604052809350858152868686011115611e1e57600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b0381168114611e4f57600080fd5b919050565b80358015158114611e4f57600080fd5b600060208284031215611e7657600080fd5b6112c982611e38565b60008060408385031215611e9257600080fd5b611e9b83611e38565b9150611ea960208401611e38565b90509250929050565b600080600060608486031215611ec757600080fd5b611ed084611e38565b9250611ede60208501611e38565b9150604084013590509250925092565b60008060008060808587031215611f0457600080fd5b611f0d85611e38565b9350611f1b60208601611e38565b925060408501359150606085013567ffffffffffffffff811115611f3e57600080fd5b8501601f81018713611f4f57600080fd5b611f5e87823560208401611dc2565b91505092959194509250565b60008060408385031215611f7d57600080fd5b611f8683611e38565b9150611ea960208401611e54565b60008060408385031215611fa757600080fd5b611fb083611e38565b946020939093013593505050565b600060208284031215611fd057600080fd5b6112c982611e54565b600060208284031215611feb57600080fd5b81356112c981612304565b60006020828403121561200857600080fd5b81516112c981612304565b60006020828403121561202557600080fd5b813567ffffffffffffffff81111561203c57600080fd5b8201601f8101841361204d57600080fd5b611a8884823560208401611dc2565b60006020828403121561206e57600080fd5b5035919050565b6000815180845261208d816020860160208601612216565b601f01601f19169290920160200192915050565b6000845160206120b48285838a01612216565b8551918401916120c78184848a01612216565b8554920191600090600181811c90808316806120e457607f831692505b85831081141561210257634e487b7160e01b85526022600452602485fd5b808015612116576001811461212757612154565b60ff19851688528388019550612154565b60008b81526020902060005b8581101561214c5781548a820152908401908801612133565b505083880195505b50939b9a5050505050505050505050565b60006001600160a01b038087168352808616602084015250836040830152608060608301526121976080830184612075565b9695505050505050565b6020815260006112c96020830184612075565b600082198211156121c7576121c76122ac565b500190565b6000826121db576121db6122c2565b500490565b60008160001904831182151516156121fa576121fa6122ac565b500290565b600082821015612211576122116122ac565b500390565b60005b83811015612231578181015183820152602001612219565b838111156110705750506000910152565b600181811c9082168061225657607f821691505b6020821081141561227757634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415612291576122916122ac565b5060010190565b6000826122a7576122a76122c2565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b0319811681146113f657600080fdfe4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572a2646970667358221220b6492d89602f82307d21003f22c541b8318b443cd5cf2b9b576785725c82a0f564736f6c63430008060033

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

000000000000000000000000000000000000000000000000002386f26fc10000000000000000000000000000000000000000000000000000000000000000271000000000000000000000000000000000000000000000000000000000000000e000000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000064000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003e80000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d665450426f584c5172454861346373644252544a415637696575385177326445764d44706a315636795432502f00000000000000000000

-----Decoded View---------------
Arg [0] : price (uint256): 10000000000000000
Arg [1] : maxSupply (uint256): 10000
Arg [2] : baseUri (string): ipfs://QmfTPBoXLQrEHa4csdBRTJAV7ieu8Qw2dEvMDpj1V6yT2P/
Arg [3] : freeMintAllowance (uint256): 2
Arg [4] : maxMintPerTx (uint256): 100
Arg [5] : isSaleActive (bool): False
Arg [6] : freeMintIsAllowedUntil (uint256): 1000

-----Encoded View---------------
10 Constructor Arguments found :
Arg [0] : 000000000000000000000000000000000000000000000000002386f26fc10000
Arg [1] : 0000000000000000000000000000000000000000000000000000000000002710
Arg [2] : 00000000000000000000000000000000000000000000000000000000000000e0
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000002
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000064
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000000
Arg [6] : 00000000000000000000000000000000000000000000000000000000000003e8
Arg [7] : 0000000000000000000000000000000000000000000000000000000000000036
Arg [8] : 697066733a2f2f516d665450426f584c5172454861346373644252544a415637
Arg [9] : 696575385177326445764d44706a315636795432502f00000000000000000000


Deployed Bytecode Sourcemap

48257:5139:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30281:305;;;;;;;;;;-1:-1:-1;30281:305:0;;;;;:::i;:::-;;:::i;:::-;;;7239:14:1;;7232:22;7214:41;;7202:2;7187:18;30281:305:0;;;;;;;;33641:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;35144:204::-;;;;;;;;;;-1:-1:-1;35144:204:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;6491:55:1;;;6473:74;;6461:2;6446:18;35144:204:0;6428:125:1;34707:371:0;;;;;;;;;;-1:-1:-1;34707:371:0;;;;;:::i;:::-;;:::i;:::-;;29938:271;;;;;;;;;;-1:-1:-1;30174:12:0;;29982:7;30158:13;:28;29938:271;;;12100:25:1;;;12088:2;12073:18;29938:271:0;12055:76:1;48713:34:0;;;;;;;;;;-1:-1:-1;48713:34:0;;;;;;;;48351:22;;;;;;;;;;;;;;;;36001:170;;;;;;;;;;-1:-1:-1;36001:170:0;;;;;:::i;:::-;;:::i;53151:242::-;;;;;;;;;;;;;:::i;48619:41::-;;;;;;;;;;;;;;;;52763:144;;;;;;;;;;-1:-1:-1;52763:144:0;;;;;:::i;:::-;;:::i;36242:185::-;;;;;;;;;;-1:-1:-1;36242:185:0;;;;;:::i;:::-;;:::i;50500:188::-;;;;;;;;;;-1:-1:-1;50500:188:0;;;;;:::i;:::-;;:::i;48474:47::-;;;;;;;;;;;;;;;;50851:124;;;;;;;;;;-1:-1:-1;50851:124:0;;;;;:::i;:::-;;:::i;33450:::-;;;;;;;;;;-1:-1:-1;33450:124:0;;;;;:::i;:::-;;:::i;48776:30::-;;;;;;;;;;-1:-1:-1;48776:30:0;;;;;;;;;;;30650:206;;;;;;;;;;-1:-1:-1;30650:206:0;;;;;:::i;:::-;;:::i;7522:103::-;;;;;;;;;;;;;:::i;50983:117::-;;;;;;;;;;-1:-1:-1;50983:117:0;;;;;:::i;:::-;;:::i;51108:154::-;;;;;;;;;;-1:-1:-1;51108:154:0;;;;;:::i;:::-;;:::i;6871:87::-;;;;;;;;;;-1:-1:-1;6944:6:0;;-1:-1:-1;;;;;6944:6:0;6871:87;;50109:98;;;;;;;;;;-1:-1:-1;50109:98:0;;;;;:::i;:::-;;:::i;33810:104::-;;;;;;;;;;;;;:::i;48552:39::-;;;;;;;;;;;;;;;;51844:911;;;;;;:::i;:::-;;:::i;35420:279::-;;;;;;;;;;-1:-1:-1;35420:279:0;;;;;:::i;:::-;;:::i;50696:147::-;;;;;;;;;;-1:-1:-1;50696:147:0;;;;;:::i;:::-;;:::i;36498:342::-;;;;;;;;;;-1:-1:-1;36498:342:0;;;;;:::i;:::-;;:::i;50215:277::-;;;;;;;;;;-1:-1:-1;50215:277:0;;;;;:::i;:::-;;:::i;48904:37::-;;;;;;;;;;;;;:::i;49689:383::-;;;;;;;;;;-1:-1:-1;49689:383:0;;;;;:::i;:::-;;:::i;51270:89::-;;;;;;;;;;;;;:::i;35770:164::-;;;;;;;;;;-1:-1:-1;35770:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;35891:25:0;;;35867:4;35891:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;35770:164;48414:31;;;;;;;;;;;;;;;;7780:201;;;;;;;;;;-1:-1:-1;7780:201:0;;;;;:::i;:::-;;:::i;30281:305::-;30383:4;-1:-1:-1;;;;;;30420:40:0;;-1:-1:-1;;;30420:40:0;;:105;;-1:-1:-1;;;;;;;30477:48:0;;-1:-1:-1;;;30477:48:0;30420:105;:158;;;-1:-1:-1;;;;;;;;;;19764:40:0;;;30542:36;30400:178;30281:305;-1:-1:-1;;30281:305:0:o;33641:100::-;33695:13;33728:5;33721:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33641:100;:::o;35144:204::-;35212:7;35237:16;35245:7;35237;:16::i;:::-;35232:64;;35262:34;;-1:-1:-1;;;35262:34:0;;;;;;;;;;;35232:64;-1:-1:-1;35316:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;35316:24:0;;35144:204::o;34707:371::-;34780:13;34796:24;34812:7;34796:15;:24::i;:::-;34780:40;;34841:5;-1:-1:-1;;;;;34835:11:0;:2;-1:-1:-1;;;;;34835:11:0;;34831:48;;;34855:24;;-1:-1:-1;;;34855:24:0;;;;;;;;;;;34831:48;5675:10;-1:-1:-1;;;;;34896:21:0;;;;;;:63;;-1:-1:-1;34922:37:0;34939:5;5675:10;35770:164;:::i;34922:37::-;34921:38;34896:63;34892:138;;;34983:35;;-1:-1:-1;;;34983:35:0;;;;;;;;;;;34892:138;35042:28;35051:2;35055:7;35064:5;35042:8;:28::i;:::-;34769:309;34707:371;;:::o;36001:170::-;36135:28;36145:4;36151:2;36155:7;36135:9;:28::i;53151:242::-;6944:6;;-1:-1:-1;;;;;6944:6:0;5675:10;7091:23;7083:68;;;;-1:-1:-1;;;7083:68:0;;11079:2:1;7083:68:0;;;11061:21:1;;;11098:18;;;11091:30;-1:-1:-1;;;;;;;;;;;11137:18:1;;;11130:62;11209:18;;7083:68:0;;;;;;;;;1845:1:::1;2443:7;;:19;;2435:63;;;::::0;-1:-1:-1;;;2435:63:0;;11440:2:1;2435:63:0::1;::::0;::::1;11422:21:1::0;11479:2;11459:18;;;11452:30;11518:33;11498:18;;;11491:61;11569:18;;2435:63:0::1;11412:181:1::0;2435:63:0::1;1845:1;2576:7;:18:::0;;;53230:21:::2;::::0;53264:55:::2;::::0;53009:42:::2;::::0;53307:11:::2;::::0;53230:21;53307:11:::2;:::i;:::-;53264:17;:55::i;:::-;53330;53100:42;53373:11;53383:1;53373:7:::0;:11:::2;:::i;53330:55::-;-1:-1:-1::0;1801:1:0::1;2755:7;:22:::0;53151:242::o;52763:144::-;52838:11;51644:1;51630:11;:15;:58;;;;;51664:24;;51649:11;:39;;51630:58;51622:97;;;;-1:-1:-1;;;51622:97:0;;7692:2:1;51622:97:0;;;7674:21:1;7731:2;7711:18;;;7704:30;7770:28;7750:18;;;7743:56;7816:18;;51622:97:0;7664:176:1;51622:97:0;51769:16;;51754:11;51738:13;;:27;;;;:::i;:::-;:47;;51730:86;;;;-1:-1:-1;;;51730:86:0;;8464:2:1;51730:86:0;;;8446:21:1;8503:2;8483:18;;;8476:30;8542:28;8522:18;;;8515:56;8588:18;;51730:86:0;8436:176:1;51730:86:0;6944:6;;-1:-1:-1;;;;;6944:6:0;5675:10;7091:23:::1;7083:68;;;::::0;-1:-1:-1;;;7083:68:0;;11079:2:1;7083:68:0::1;::::0;::::1;11061:21:1::0;;;11098:18;;;11091:30;-1:-1:-1;;;;;;;;;;;11137:18:1;;;11130:62;11209:18;;7083:68:0::1;11051:182:1::0;7083:68:0::1;52872:27:::2;52882:3;52887:11;52872:9;:27::i;36242:185::-:0;36380:39;36397:4;36403:2;36407:7;36380:39;;;;;;;;;;;;:16;:39::i;50500:188::-;6944:6;;-1:-1:-1;;;;;6944:6:0;5675:10;7091:23;7083:68;;;;-1:-1:-1;;;7083:68:0;;11079:2:1;7083:68:0;;;11061:21:1;;;11098:18;;;11091:30;-1:-1:-1;;;;;;;;;;;11137:18:1;;;11130:62;11209:18;;7083:68:0;11051:182:1;7083:68:0;50589:18:::1;::::0;::::1;::::0;::::1;;;50588:19;50580:64;;;::::0;-1:-1:-1;;;50580:64:0;;9226:2:1;50580:64:0::1;::::0;::::1;9208:21:1::0;;;9245:18;;;9238:30;9304:34;9284:18;;;9277:62;9356:18;;50580:64:0::1;9198:182:1::0;50580:64:0::1;50655:25:::0;;::::1;::::0;:8:::1;::::0;:25:::1;::::0;::::1;::::0;::::1;:::i;:::-;;50500:188:::0;:::o;50851:124::-;6944:6;;-1:-1:-1;;;;;6944:6:0;5675:10;7091:23;7083:68;;;;-1:-1:-1;;;7083:68:0;;11079:2:1;7083:68:0;;;11061:21:1;;;11098:18;;;11091:30;-1:-1:-1;;;;;;;;;;;11137:18:1;;;11130:62;11209:18;;7083:68:0;11051:182:1;7083:68:0;50928:24:::1;:39:::0;50851:124::o;33450:::-;33514:7;33541:20;33553:7;33541:11;:20::i;:::-;:25;;33450:124;-1:-1:-1;;33450:124:0:o;30650:206::-;30714:7;-1:-1:-1;;;;;30738:19:0;;30734:60;;30766:28;;-1:-1:-1;;;30766:28:0;;;;;;;;;;;30734:60;-1:-1:-1;;;;;;30820:19:0;;;;;:12;:19;;;;;:27;;;;30650:206::o;7522:103::-;6944:6;;-1:-1:-1;;;;;6944:6:0;5675:10;7091:23;7083:68;;;;-1:-1:-1;;;7083:68:0;;11079:2:1;7083:68:0;;;11061:21:1;;;11098:18;;;11091:30;-1:-1:-1;;;;;;;;;;;11137:18:1;;;11130:62;11209:18;;7083:68:0;11051:182:1;7083:68:0;7587:30:::1;7614:1;7587:18;:30::i;:::-;7522:103::o:0;50983:117::-;6944:6;;-1:-1:-1;;;;;6944:6:0;5675:10;7091:23;7083:68;;;;-1:-1:-1;;;7083:68:0;;11079:2:1;7083:68:0;;;11061:21:1;;;11098:18;;;11091:30;-1:-1:-1;;;;;;;;;;;11137:18:1;;;11130:62;11209:18;;7083:68:0;11051:182:1;7083:68:0;51055:22:::1;:37:::0;;-1:-1:-1;;51055:37:0::1;::::0;::::1;;::::0;;;::::1;::::0;;50983:117::o;51108:154::-;6944:6;;-1:-1:-1;;;;;6944:6:0;5675:10;7091:23;7083:68;;;;-1:-1:-1;;;7083:68:0;;11079:2:1;7083:68:0;;;11061:21:1;;;11098:18;;;11091:30;-1:-1:-1;;;;;;;;;;;11137:18:1;;;11130:62;11209:18;;7083:68:0;11051:182:1;7083:68:0;51203:26:::1;:51:::0;51108:154::o;50109:98::-;6944:6;;-1:-1:-1;;;;;6944:6:0;5675:10;7091:23;7083:68;;;;-1:-1:-1;;;7083:68:0;;11079:2:1;7083:68:0;;;11061:21:1;;;11098:18;;;11091:30;-1:-1:-1;;;;;;;;;;;11137:18:1;;;11130:62;11209:18;;7083:68:0;11051:182:1;7083:68:0;50178:7:::1;:21:::0;50109:98::o;33810:104::-;33866:13;33899:7;33892:14;;;;;:::i;51844:911::-;51909:11;51644:1;51630:11;:15;:58;;;;;51664:24;;51649:11;:39;;51630:58;51622:97;;;;-1:-1:-1;;;51622:97:0;;7692:2:1;51622:97:0;;;7674:21:1;7731:2;7711:18;;;7704:30;7770:28;7750:18;;;7743:56;7816:18;;51622:97:0;7664:176:1;51622:97:0;51769:16;;51754:11;51738:13;;:27;;;;:::i;:::-;:47;;51730:86;;;;-1:-1:-1;;;51730:86:0;;8464:2:1;51730:86:0;;;8446:21:1;8503:2;8483:18;;;8476:30;8542:28;8522:18;;;8515:56;8588:18;;51730:86:0;8436:176:1;51730:86:0;51941:22:::1;::::0;::::1;;51933:60;;;::::0;-1:-1:-1;;;51933:60:0;;9940:2:1;51933:60:0::1;::::0;::::1;9922:21:1::0;9979:2;9959:18;;;9952:30;10018:27;9998:18;;;9991:55;10063:18;;51933:60:0::1;9912:175:1::0;51933:60:0::1;52006:13;52032:11;52022:7;;:21;;;;:::i;:::-;52006:37;;52076:26;;52060:13;;:42;52056:577;;;52199:10;52119:25;52182:28:::0;;;:16:::1;:28;::::0;;;;;52147:32:::1;::::0;:63:::1;::::0;52182:28;52147:63:::1;:::i;:::-;52119:91:::0;-1:-1:-1;52229:21:0;;52225:397:::1;;52290:17;52275:11;:32;52271:336;;52361:7;::::0;52341:27:::1;::::0;:17;:27:::1;:::i;:::-;52332:36;::::0;;::::1;:::i;:::-;;;52391:50;52411:10;52423:17;52391:19;:50::i;:::-;52271:336;;;52513:7;::::0;52499:21:::1;::::0;:11;:21:::1;:::i;:::-;52490:30;::::0;;::::1;:::i;:::-;;;52543:44;52563:10;52575:11;52543:19;:44::i;:::-;52104:529;52056:577;52666:5;52653:9;:18;;52645:55;;;::::0;-1:-1:-1;;;52645:55:0;;9587:2:1;52645:55:0::1;::::0;::::1;9569:21:1::0;9626:2;9606:18;;;9599:30;9665:26;9645:18;;;9638:54;9709:18;;52645:55:0::1;9559:174:1::0;52645:55:0::1;52713:34;52723:10;52735:11;52713:9;:34::i;35420:279::-:0;-1:-1:-1;;;;;35511:24:0;;5675:10;35511:24;35507:54;;;35544:17;;-1:-1:-1;;;35544:17:0;;;;;;;;;;;35507:54;5675:10;35574:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;35574:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;35574:53:0;;;;;;;;;;35643:48;;7214:41:1;;;35574:42:0;;5675:10;35643:48;;7187:18:1;35643:48:0;;;;;;;35420:279;;:::o;50696:147::-;6944:6;;-1:-1:-1;;;;;6944:6:0;5675:10;7091:23;7083:68;;;;-1:-1:-1;;;7083:68:0;;11079:2:1;7083:68:0;;;11061:21:1;;;11098:18;;;11091:30;-1:-1:-1;;;;;;;;;;;11137:18:1;;;11130:62;11209:18;;7083:68:0;11051:182:1;7083:68:0;50783:32:::1;:52:::0;50696:147::o;36498:342::-;36665:28;36675:4;36681:2;36685:7;36665:9;:28::i;:::-;36709:48;36732:4;36738:2;36742:7;36751:5;36709:22;:48::i;:::-;36704:129;;36781:40;;-1:-1:-1;;;36781:40:0;;;;;;;;;;;36704:129;36498:342;;;;:::o;50215:277::-;6944:6;;-1:-1:-1;;;;;6944:6:0;5675:10;7091:23;7083:68;;;;-1:-1:-1;;;7083:68:0;;11079:2:1;7083:68:0;;;11061:21:1;;;11098:18;;;11091:30;-1:-1:-1;;;;;;;;;;;11137:18:1;;;11130:62;11209:18;;7083:68:0;11051:182:1;7083:68:0;50314:16:::1;;50299:12;:31;50291:71;;;::::0;-1:-1:-1;;;50291:71:0;;11800:2:1;50291:71:0::1;::::0;::::1;11782:21:1::0;11839:2;11819:18;;;11812:30;11878:29;11858:18;;;11851:57;11925:18;;50291:71:0::1;11772:177:1::0;50291:71:0::1;50397:13;;50381:12;:29;;50373:69;;;::::0;-1:-1:-1;;;50373:69:0;;11800:2:1;50373:69:0::1;::::0;::::1;11782:21:1::0;11839:2;11819:18;;;11812:30;11878:29;11858:18;;;11851:57;11925:18;;50373:69:0::1;11772:177:1::0;50373:69:0::1;50453:16;:31:::0;50215:277::o;48904:37::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;49689:383::-;49762:13;49797:16;49805:7;49797;:16::i;:::-;49789:76;;;;-1:-1:-1;;;49789:76:0;;8047:2:1;49789:76:0;;;8029:21:1;8086:2;8066:18;;;8059:30;8125:34;8105:18;;;8098:62;8196:18;8176;;;8169:46;8232:19;;49789:76:0;8019:238:1;49789:76:0;49872:28;49903:10;:8;:10::i;:::-;49872:41;;49958:1;49933:14;49927:28;:32;:133;;;;;;;;;;;;;;;;;49995:14;50011:18;:7;:16;:18::i;:::-;50031:13;49978:67;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;49927:133;49920:140;49689:383;-1:-1:-1;;;49689:383:0:o;51270:89::-;6944:6;;-1:-1:-1;;;;;6944:6:0;5675:10;7091:23;7083:68;;;;-1:-1:-1;;;7083:68:0;;11079:2:1;7083:68:0;;;11061:21:1;;;11098:18;;;11091:30;-1:-1:-1;;;;;;;;;;;11137:18:1;;;11130:62;11209:18;;7083:68:0;11051:182:1;7083:68:0;51326:18:::1;:25:::0;;-1:-1:-1;;51326:25:0::1;;;::::0;;51270:89::o;7780:201::-;6944:6;;-1:-1:-1;;;;;6944:6:0;5675:10;7091:23;7083:68;;;;-1:-1:-1;;;7083:68:0;;11079:2:1;7083:68:0;;;11061:21:1;;;11098:18;;;11091:30;-1:-1:-1;;;;;;;;;;;11137:18:1;;;11130:62;11209:18;;7083:68:0;11051:182:1;7083:68:0;-1:-1:-1;;;;;7869:22:0;::::1;7861:73;;;::::0;-1:-1:-1;;;7861:73:0;;8819:2:1;7861:73:0::1;::::0;::::1;8801:21:1::0;8858:2;8838:18;;;8831:30;8897:34;8877:18;;;8870:62;8968:8;8948:18;;;8941:36;8994:19;;7861:73:0::1;8791:228:1::0;7861:73:0::1;7945:28;7964:8;7945:18;:28::i;:::-;7780:201:::0;:::o;37095:144::-;37152:4;37186:13;;37176:7;:23;:55;;;;-1:-1:-1;;37204:20:0;;;;:11;:20;;;;;:27;-1:-1:-1;;;37204:27:0;;;;37203:28;;37095:144::o;44301:196::-;44416:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;44416:29:0;-1:-1:-1;;;;;44416:29:0;;;;;;;;;44461:28;;44416:24;;44461:28;;;;;;;44301:196;;;:::o;39802:2112::-;39917:35;39955:20;39967:7;39955:11;:20::i;:::-;40030:18;;39917:58;;-1:-1:-1;39988:22:0;;-1:-1:-1;;;;;40014:34:0;5675:10;-1:-1:-1;;;;;40014:34:0;;:101;;;-1:-1:-1;40082:18:0;;40065:50;;5675:10;35770:164;:::i;40065:50::-;40014:154;;;-1:-1:-1;5675:10:0;40132:20;40144:7;40132:11;:20::i;:::-;-1:-1:-1;;;;;40132:36:0;;40014:154;39988:181;;40187:17;40182:66;;40213:35;;-1:-1:-1;;;40213:35:0;;;;;;;;;;;40182:66;40285:4;-1:-1:-1;;;;;40263:26:0;:13;:18;;;-1:-1:-1;;;;;40263:26:0;;40259:67;;40298:28;;-1:-1:-1;;;40298:28:0;;;;;;;;;;;40259:67;-1:-1:-1;;;;;40341:16:0;;40337:52;;40366:23;;-1:-1:-1;;;40366:23:0;;;;;;;;;;;40337:52;40510:49;40527:1;40531:7;40540:13;:18;;;40510:8;:49::i;:::-;-1:-1:-1;;;;;40855:18:0;;;;;;;:12;:18;;;;;;;;:31;;-1:-1:-1;;40855:31:0;;;;;;;-1:-1:-1;;40855:31:0;;;;;;;40901:16;;;;;;;;;:29;;;;;;;;-1:-1:-1;40901:29:0;;;;;;;;;;;40947:20;;;:11;:20;;;;;;:30;;-1:-1:-1;;;;;;40992:61:0;;;;-1:-1:-1;;;41037:15:0;40992:61;;;;;;;;;;;41327:11;;;41357:24;;;;;:29;41327:11;;41357:29;41353:445;;41582:13;;41568:11;:27;41564:219;;;41652:18;;;41620:24;;;:11;:24;;;;;;;;:50;;41735:28;;;;41693:70;;-1:-1:-1;;;41693:70:0;-1:-1:-1;;;;;;41693:70:0;;;-1:-1:-1;;;;;41620:50:0;;;41693:70;;;;;;;41564:219;40830:979;41845:7;41841:2;-1:-1:-1;;;;;41826:27:0;41835:4;-1:-1:-1;;;;;41826:27:0;;;;;;;;;;;41864:42;39906:2008;;39802:2112;;;:::o;10833:317::-;10948:6;10923:21;:31;;10915:73;;;;-1:-1:-1;;;10915:73:0;;10721:2:1;10915:73:0;;;10703:21:1;10760:2;10740:18;;;10733:30;10799:31;10779:18;;;10772:59;10848:18;;10915:73:0;10693:179:1;10915:73:0;11002:12;11020:9;-1:-1:-1;;;;;11020:14:0;11042:6;11020:33;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11001:52;;;11072:7;11064:78;;;;-1:-1:-1;;;11064:78:0;;10294:2:1;11064:78:0;;;10276:21:1;10333:2;10313:18;;;10306:30;10372:34;10352:18;;;10345:62;10443:28;10423:18;;;10416:56;10489:19;;11064:78:0;10266:248:1;37247:104:0;37316:27;37326:2;37330:8;37316:27;;;;;;;;;;;;:9;:27::i;32305:1083::-;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;32471:13:0;;32415:7;;32464:20;;32460:861;;;32505:31;32539:17;;;:11;:17;;;;;;;;;32505:51;;;;;;;;;-1:-1:-1;;;;;32505:51:0;;;;-1:-1:-1;;;32505:51:0;;;;;;;;;;;-1:-1:-1;;;32505:51:0;;;;;;;;;;;;;;32575:731;;32625:14;;-1:-1:-1;;;;;32625:28:0;;32621:101;;32689:9;32305:1083;-1:-1:-1;;;32305:1083:0:o;32621:101::-;-1:-1:-1;;;33066:6:0;33111:17;;;;:11;:17;;;;;;;;;33099:29;;;;;;;;;-1:-1:-1;;;;;33099:29:0;;;;;-1:-1:-1;;;33099:29:0;;;;;;;;;;;-1:-1:-1;;;33099:29:0;;;;;;;;;;;;;33159:28;33155:109;;33227:9;32305:1083;-1:-1:-1;;;32305:1083:0:o;33155:109::-;33026:261;;;32486:835;32460:861;33349:31;;-1:-1:-1;;;33349:31:0;;;;;;;;;;;8141:191;8234:6;;;-1:-1:-1;;;;;8251:17:0;;;-1:-1:-1;;8251:17:0;;;;;;;8284:40;;8234:6;;;8251:17;8234:6;;8284:40;;8215:16;;8284:40;8204:128;8141:191;:::o;51412:120::-;-1:-1:-1;;;;;51491:24:0;;;;;;:16;:24;;;;;:33;;51519:5;;51491:24;:33;;51519:5;;51491:33;:::i;:::-;;;;-1:-1:-1;;;;51412:120:0:o;45062:790::-;45217:4;-1:-1:-1;;;;;45238:13:0;;9867:19;:23;45234:611;;45274:72;;-1:-1:-1;;;45274:72:0;;-1:-1:-1;;;;;45274:36:0;;;;;:72;;5675:10;;45325:4;;45331:7;;45340:5;;45274:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;45274:72:0;;;;;;;;-1:-1:-1;;45274:72:0;;;;;;;;;;;;:::i;:::-;;;45270:520;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;45520:13:0;;45516:259;;45570:40;;-1:-1:-1;;;45570:40:0;;;;;;;;;;;45516:259;45725:6;45719:13;45710:6;45706:2;45702:15;45695:38;45270:520;-1:-1:-1;;;;;;45397:55:0;-1:-1:-1;;;45397:55:0;;-1:-1:-1;45390:62:0;;45234:611;-1:-1:-1;45829:4:0;45234:611;45062:790;;;;;;:::o;49572:109::-;49632:13;49665:8;49658:15;;;;;:::i;3157:723::-;3213:13;3434:10;3430:53;;-1:-1:-1;;3461:10:0;;;;;;;;;;;;-1:-1:-1;;;3461:10:0;;;;;3157:723::o;3430:53::-;3508:5;3493:12;3549:78;3556:9;;3549:78;;3582:8;;;;:::i;:::-;;-1:-1:-1;3605:10:0;;-1:-1:-1;3613:2:0;3605:10;;:::i;:::-;;;3549:78;;;3637:19;3669:6;3659:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;3659:17:0;;3637:39;;3687:154;3694:10;;3687:154;;3721:11;3731:1;3721:11;;:::i;:::-;;-1:-1:-1;3790:10:0;3798:2;3790:5;:10;:::i;:::-;3777:24;;:2;:24;:::i;:::-;3764:39;;3747:6;3754;3747:14;;;;;;;;:::i;:::-;;;;:56;;;;;;;;;;-1:-1:-1;3818:11:0;3827:2;3818:11;;:::i;:::-;;;3687:154;;37714:163;37837:32;37843:2;37847:8;37857:5;37864:4;38275:20;38298:13;-1:-1:-1;;;;;38326:16:0;;38322:48;;38351:19;;-1:-1:-1;;;38351:19:0;;;;;;;;;;;38322:48;38385:13;38381:44;;38407:18;;-1:-1:-1;;;38407:18:0;;;;;;;;;;;38381:44;-1:-1:-1;;;;;38776:16:0;;;;;;:12;:16;;;;;;;;:44;;-1:-1:-1;;38835:49:0;;38776:44;;;;;;;;38835:49;;;;-1:-1:-1;;38776:44:0;;;;;;38835:49;;;;;;;;;;;;;;;;38901:25;;;:11;:25;;;;;:35;;-1:-1:-1;;;;;;38951:66:0;;;;-1:-1:-1;;;39001:15:0;38951:66;;;;;;;;;;;38901:25;;39086:328;39106:8;39102:1;:12;39086:328;;;39145:38;;39170:12;;-1:-1:-1;;;;;39145:38:0;;;39162:1;;39145:38;;39162:1;;39145:38;39206:4;:68;;;;;39215:59;39246:1;39250:2;39254:12;39268:5;39215:22;:59::i;:::-;39214:60;39206:68;39202:164;;;39306:40;;-1:-1:-1;;;39306:40:0;;;;;;;;;;;39202:164;39384:14;;;;;39116:3;39086:328;;;-1:-1:-1;39430:13:0;:28;39480:60;36498:342;-1:-1:-1;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:631:1;78:5;108:18;149:2;141:6;138:14;135:2;;;155:18;;:::i;:::-;230:2;224:9;198:2;284:15;;-1:-1:-1;;280:24:1;;;306:2;276:33;272:42;260:55;;;330:18;;;350:22;;;327:46;324:2;;;376:18;;:::i;:::-;416:10;412:2;405:22;445:6;436:15;;475:6;467;460:22;515:3;506:6;501:3;497:16;494:25;491:2;;;532:1;529;522:12;491:2;582:6;577:3;570:4;562:6;558:17;545:44;637:1;630:4;621:6;613;609:19;605:30;598:41;;;;88:557;;;;;:::o;650:196::-;718:20;;-1:-1:-1;;;;;767:54:1;;757:65;;747:2;;836:1;833;826:12;747:2;699:147;;;:::o;851:160::-;916:20;;972:13;;965:21;955:32;;945:2;;1001:1;998;991:12;1016:186;1075:6;1128:2;1116:9;1107:7;1103:23;1099:32;1096:2;;;1144:1;1141;1134:12;1096:2;1167:29;1186:9;1167:29;:::i;1207:260::-;1275:6;1283;1336:2;1324:9;1315:7;1311:23;1307:32;1304:2;;;1352:1;1349;1342:12;1304:2;1375:29;1394:9;1375:29;:::i;:::-;1365:39;;1423:38;1457:2;1446:9;1442:18;1423:38;:::i;:::-;1413:48;;1294:173;;;;;:::o;1472:328::-;1549:6;1557;1565;1618:2;1606:9;1597:7;1593:23;1589:32;1586:2;;;1634:1;1631;1624:12;1586:2;1657:29;1676:9;1657:29;:::i;:::-;1647:39;;1705:38;1739:2;1728:9;1724:18;1705:38;:::i;:::-;1695:48;;1790:2;1779:9;1775:18;1762:32;1752:42;;1576:224;;;;;:::o;1805:666::-;1900:6;1908;1916;1924;1977:3;1965:9;1956:7;1952:23;1948:33;1945:2;;;1994:1;1991;1984:12;1945:2;2017:29;2036:9;2017:29;:::i;:::-;2007:39;;2065:38;2099:2;2088:9;2084:18;2065:38;:::i;:::-;2055:48;;2150:2;2139:9;2135:18;2122:32;2112:42;;2205:2;2194:9;2190:18;2177:32;2232:18;2224:6;2221:30;2218:2;;;2264:1;2261;2254:12;2218:2;2287:22;;2340:4;2332:13;;2328:27;-1:-1:-1;2318:2:1;;2369:1;2366;2359:12;2318:2;2392:73;2457:7;2452:2;2439:16;2434:2;2430;2426:11;2392:73;:::i;:::-;2382:83;;;1935:536;;;;;;;:::o;2476:254::-;2541:6;2549;2602:2;2590:9;2581:7;2577:23;2573:32;2570:2;;;2618:1;2615;2608:12;2570:2;2641:29;2660:9;2641:29;:::i;:::-;2631:39;;2689:35;2720:2;2709:9;2705:18;2689:35;:::i;2735:254::-;2803:6;2811;2864:2;2852:9;2843:7;2839:23;2835:32;2832:2;;;2880:1;2877;2870:12;2832:2;2903:29;2922:9;2903:29;:::i;:::-;2893:39;2979:2;2964:18;;;;2951:32;;-1:-1:-1;;;2822:167:1:o;2994:180::-;3050:6;3103:2;3091:9;3082:7;3078:23;3074:32;3071:2;;;3119:1;3116;3109:12;3071:2;3142:26;3158:9;3142:26;:::i;3179:245::-;3237:6;3290:2;3278:9;3269:7;3265:23;3261:32;3258:2;;;3306:1;3303;3296:12;3258:2;3345:9;3332:23;3364:30;3388:5;3364:30;:::i;3429:249::-;3498:6;3551:2;3539:9;3530:7;3526:23;3522:32;3519:2;;;3567:1;3564;3557:12;3519:2;3599:9;3593:16;3618:30;3642:5;3618:30;:::i;3683:450::-;3752:6;3805:2;3793:9;3784:7;3780:23;3776:32;3773:2;;;3821:1;3818;3811:12;3773:2;3861:9;3848:23;3894:18;3886:6;3883:30;3880:2;;;3926:1;3923;3916:12;3880:2;3949:22;;4002:4;3994:13;;3990:27;-1:-1:-1;3980:2:1;;4031:1;4028;4021:12;3980:2;4054:73;4119:7;4114:2;4101:16;4096:2;4092;4088:11;4054:73;:::i;4138:180::-;4197:6;4250:2;4238:9;4229:7;4225:23;4221:32;4218:2;;;4266:1;4263;4256:12;4218:2;-1:-1:-1;4289:23:1;;4208:110;-1:-1:-1;4208:110:1:o;4323:257::-;4364:3;4402:5;4396:12;4429:6;4424:3;4417:19;4445:63;4501:6;4494:4;4489:3;4485:14;4478:4;4471:5;4467:16;4445:63;:::i;:::-;4562:2;4541:15;-1:-1:-1;;4537:29:1;4528:39;;;;4569:4;4524:50;;4372:208;-1:-1:-1;;4372:208:1:o;4585:1527::-;4809:3;4847:6;4841:13;4873:4;4886:51;4930:6;4925:3;4920:2;4912:6;4908:15;4886:51;:::i;:::-;5000:13;;4959:16;;;;5022:55;5000:13;4959:16;5044:15;;;5022:55;:::i;:::-;5166:13;;5099:20;;;5139:1;;5226;5248:18;;;;5301;;;;5328:2;;5406:4;5396:8;5392:19;5380:31;;5328:2;5469;5459:8;5456:16;5436:18;5433:40;5430:2;;;-1:-1:-1;;;5496:33:1;;5552:4;5549:1;5542:15;5582:4;5503:3;5570:17;5430:2;5613:18;5640:110;;;;5764:1;5759:328;;;;5606:481;;5640:110;-1:-1:-1;;5675:24:1;;5661:39;;5720:20;;;;-1:-1:-1;5640:110:1;;5759:328;12209:1;12202:14;;;12246:4;12233:18;;5854:1;5868:169;5882:8;5879:1;5876:15;5868:169;;;5964:14;;5949:13;;;5942:37;6007:16;;;;5899:10;;5868:169;;;5872:3;;6068:8;6061:5;6057:20;6050:27;;5606:481;-1:-1:-1;6103:3:1;;4817:1295;-1:-1:-1;;;;;;;;;;;4817:1295:1:o;6558:511::-;6752:4;-1:-1:-1;;;;;6862:2:1;6854:6;6850:15;6839:9;6832:34;6914:2;6906:6;6902:15;6897:2;6886:9;6882:18;6875:43;;6954:6;6949:2;6938:9;6934:18;6927:34;6997:3;6992:2;6981:9;6977:18;6970:31;7018:45;7058:3;7047:9;7043:19;7035:6;7018:45;:::i;:::-;7010:53;6761:308;-1:-1:-1;;;;;;6761:308:1:o;7266:219::-;7415:2;7404:9;7397:21;7378:4;7435:44;7475:2;7464:9;7460:18;7452:6;7435:44;:::i;12262:128::-;12302:3;12333:1;12329:6;12326:1;12323:13;12320:2;;;12339:18;;:::i;:::-;-1:-1:-1;12375:9:1;;12310:80::o;12395:120::-;12435:1;12461;12451:2;;12466:18;;:::i;:::-;-1:-1:-1;12500:9:1;;12441:74::o;12520:168::-;12560:7;12626:1;12622;12618:6;12614:14;12611:1;12608:21;12603:1;12596:9;12589:17;12585:45;12582:2;;;12633:18;;:::i;:::-;-1:-1:-1;12673:9:1;;12572:116::o;12693:125::-;12733:4;12761:1;12758;12755:8;12752:2;;;12766:18;;:::i;:::-;-1:-1:-1;12803:9:1;;12742:76::o;12823:258::-;12895:1;12905:113;12919:6;12916:1;12913:13;12905:113;;;12995:11;;;12989:18;12976:11;;;12969:39;12941:2;12934:10;12905:113;;;13036:6;13033:1;13030:13;13027:2;;;-1:-1:-1;;13071:1:1;13053:16;;13046:27;12876:205::o;13086:380::-;13165:1;13161:12;;;;13208;;;13229:2;;13283:4;13275:6;13271:17;13261:27;;13229:2;13336;13328:6;13325:14;13305:18;13302:38;13299:2;;;13382:10;13377:3;13373:20;13370:1;13363:31;13417:4;13414:1;13407:15;13445:4;13442:1;13435:15;13299:2;;13141:325;;;:::o;13471:135::-;13510:3;-1:-1:-1;;13531:17:1;;13528:2;;;13551:18;;:::i;:::-;-1:-1:-1;13598:1:1;13587:13;;13518:88::o;13611:112::-;13643:1;13669;13659:2;;13674:18;;:::i;:::-;-1:-1:-1;13708:9:1;;13649:74::o;13728:127::-;13789:10;13784:3;13780:20;13777:1;13770:31;13820:4;13817:1;13810:15;13844:4;13841:1;13834:15;13860:127;13921:10;13916:3;13912:20;13909:1;13902:31;13952:4;13949:1;13942:15;13976:4;13973:1;13966:15;13992:127;14053:10;14048:3;14044:20;14041:1;14034:31;14084:4;14081:1;14074:15;14108:4;14105:1;14098:15;14124:127;14185:10;14180:3;14176:20;14173:1;14166:31;14216:4;14213:1;14206:15;14240:4;14237:1;14230:15;14256:131;-1:-1:-1;;;;;;14330:32:1;;14320:43;;14310:2;;14377:1;14374;14367:12

Swarm Source

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