ETH Price: $2,727.27 (+1.91%)
Gas: 0.85 Gwei

Token

MEMEmigos (MEMEmigos)
 

Overview

Max Total Supply

444 MEMEmigos

Holders

142

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 MEMEmigos
0xd4f37677b28fdca064dd5e89737b384613893a46
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:
MEMEmigos

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-04-02
*/

// SPDX-License-Identifier: MIT

//   __  __  U _____ u  __  __  U _____ u  __  __              ____    U  ___ u  ____     
// U|' \/ '|u\| ___"|/U|' \/ '|u\| ___"|/U|' \/ '|u   ___   U /"___|u   \/"_ \/ / __"| u  
// \| |\/| |/ |  _|"  \| |\/| |/ |  _|"  \| |\/| |/  |_"_|  \| |  _ /   | | | |<\___ \/   
//  | |  | |  | |___   | |  | |  | |___   | |  | |    | |    | |_| |.-,_| |_| | u___) |   
//  |_|  |_|  |_____|  |_|  |_|  |_____|  |_|  |_|  U/| |\u   \____| \_)-\___/  |____/>>  
// <<,-,,-.   <<   >> <<,-,,-.   <<   >> <<,-,,-..-,_|___|_,-._)(|_       \\     )(  (__) 
//  (./  \.) (__) (__) (./  \.) (__) (__) (./  \.)\_)-' '-(_/(__)__)     (__)   (__)                                                         

// Twiiter: @MEMEmigos
// 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/Address.sol


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

pragma solidity ^0.8.1;

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

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;


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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

// File: @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: ERC721A.sol


// Creator: Chiru Labs

pragma solidity ^0.8.7;

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

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

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

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

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

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId, owner);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

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

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

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

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

    /**
     * @dev Equivalent to `_safeMint(to, quantity, '')`.
     */
    function _safeMint(address to, uint256 quantity) internal {
        _safeMint(to, quantity, '');
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfers(from, to, tokenId, 1);

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

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

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

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

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

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

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

        address from = prevOwnership.addr;

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

            if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        }

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

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

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

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

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

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

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

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

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

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

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



contract MEMEmigos is ERC721A, Ownable {

    string public baseURI = "ipfs://QmXrPgZnLnZ8vZwVvVjqgid4PwEHdLqJ8nhecUwgvEiQic/";
    uint256 public constant MAX_SUPPLY = 2000;
    uint256 public MINT_PRICE = 0.0025 ether;
    uint256   public MAX_PER_TX = 10;
    uint256   public MAX_PER_TX_FREE = 1;
    bool public isPublicSale = false;
    mapping(address => uint256) public _mintedFreeAmount;
    mapping(address => uint256) public _totalMintedAmount;
    uint   public totalFreeMinted = 0;

    constructor() ERC721A("MEMEmigos", "MEMEmigos") {
    }

  function tokenURI(uint256 _tokenId) public view override returns (string memory) {
        require(_exists(_tokenId), "Token does not exist.");
        return string(abi.encodePacked(baseURI, Strings.toString(_tokenId), ".json"));
    }

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


    function setMintPrice(uint256 _price) external onlyOwner {
        MINT_PRICE = _price;
    }

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

    function togglePublicSale(bool _isPublicSale) external onlyOwner {
        isPublicSale = _isPublicSale;
    }
  

    function mint(uint256 count) external payable {
        require(isPublicSale, "Mint is not live yet");
        require(totalSupply() + count <= MAX_SUPPLY, "No more");
        require(count <= MAX_PER_TX, "Max per txn reached.");
            if(count >= (MAX_PER_TX_FREE - _mintedFreeAmount[msg.sender]))
            {
             require(msg.value >= (count * MINT_PRICE) - ((MAX_PER_TX_FREE - _mintedFreeAmount[msg.sender]) * MINT_PRICE), "You've already minted max free allocation or incorrect ETH sent");
             _mintedFreeAmount[msg.sender] = MAX_PER_TX_FREE;
             totalFreeMinted += MAX_PER_TX_FREE;
            }
            else if(count < (MAX_PER_TX_FREE - _mintedFreeAmount[msg.sender]))
            {
             require(msg.value >= 0, "Please send the exact ETH amount");
             _mintedFreeAmount[msg.sender] += count;
             totalFreeMinted += count;
            }
        // }
        else{
        require(isPublicSale, "Mint is not live yet");
        require(msg.value >= count * MINT_PRICE, "Please send the exact ETH amount");
        require(totalSupply() + count <= MAX_SUPPLY, "No more");
        require(count <= MAX_PER_TX, "Max per txn reached.");
        }
        _totalMintedAmount[msg.sender] += count;
        _safeMint(msg.sender, count);
    }

    function devMint(uint256 count) external onlyOwner {
        _safeMint(_msgSender(), count);
    }

    function withdrawMoney() external onlyOwner {
        (bool success, ) = _msgSender().call{value: address(this).balance}("");
        require(success, "Transfer failed.");
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"MAX_PER_TX","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_PER_TX_FREE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MINT_PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_mintedFreeAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_totalMintedAmount","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":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"count","type":"uint256"}],"name":"devMint","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":[],"name":"isPublicSale","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"count","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_price","type":"uint256"}],"name":"setMintPrice","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":"bool","name":"_isPublicSale","type":"bool"}],"name":"togglePublicSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalFreeMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"withdrawMoney","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60e06040526036608081815290620020c360a0398051620000299160099160209091019062000121565b506608e1bc9bf04000600a908155600b556001600c55600d805460ff1916905560006010553480156200005b57600080fd5b506040805180820182526009808252684d454d456d69676f7360b81b602080840182815285518087019096529285528401528151919291620000a09160029162000121565b508051620000b690600390602084019062000121565b5050600160005550620000c933620000cf565b62000204565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b8280546200012f90620001c7565b90600052602060002090601f0160209004810192826200015357600085556200019e565b82601f106200016e57805160ff19168380011785556200019e565b828001600101855582156200019e579182015b828111156200019e57825182559160200191906001019062000181565b50620001ac929150620001b0565b5090565b5b80821115620001ac5760008155600101620001b1565b600181811c90821680620001dc57607f821691505b60208210811415620001fe57634e487b7160e01b600052602260045260246000fd5b50919050565b611eaf80620002146000396000f3fe6080604052600436106101e35760003560e01c80638c3cefa311610102578063c002d23d11610095578063f2fde38b11610064578063f2fde38b14610571578063f43a22dc14610591578063f4a0a528146105a7578063f4db2acb146105c757600080fd5b8063c002d23d146104dc578063c87b56dd146104f2578063dad7b5c914610512578063e985e9c51461052857600080fd5b8063a22cb465116100d1578063a22cb4651461046d578063a5a865dc1461048d578063ac446002146104a7578063b88d4fde146104bc57600080fd5b80638c3cefa3146104075780638da5cb5b1461042757806395d89b4114610445578063a0712d681461045a57600080fd5b8063375a069a1161017a5780636352211e116101495780636352211e1461039d5780636c0360eb146103bd57806370a08231146103d2578063715018a6146103f257600080fd5b8063375a069a1461032757806342842e0e14610347578063463fff791461036757806355f804b31461037d57600080fd5b806311b01a32116101b657806311b01a321461029957806318160ddd146102d457806323b872dd146102f157806332cb6b0c1461031157600080fd5b806301ffc9a7146101e857806306fdde031461021d578063081812fc1461023f578063095ea7b314610277575b600080fd5b3480156101f457600080fd5b50610208610203366004611aef565b6105f4565b60405190151581526020015b60405180910390f35b34801561022957600080fd5b50610232610646565b6040516102149190611ccb565b34801561024b57600080fd5b5061025f61025a366004611b72565b6106d8565b6040516001600160a01b039091168152602001610214565b34801561028357600080fd5b50610297610292366004611aaa565b61071c565b005b3480156102a557600080fd5b506102c66102b4366004611973565b600f6020526000908152604090205481565b604051908152602001610214565b3480156102e057600080fd5b5060015460005403600019016102c6565b3480156102fd57600080fd5b5061029761030c3660046119c8565b6107aa565b34801561031d57600080fd5b506102c66107d081565b34801561033357600080fd5b50610297610342366004611b72565b6107b5565b34801561035357600080fd5b506102976103623660046119c8565b6107f5565b34801561037357600080fd5b506102c6600c5481565b34801561038957600080fd5b50610297610398366004611b29565b610810565b3480156103a957600080fd5b5061025f6103b8366004611b72565b610851565b3480156103c957600080fd5b50610232610863565b3480156103de57600080fd5b506102c66103ed366004611973565b6108f1565b3480156103fe57600080fd5b50610297610940565b34801561041357600080fd5b50610297610422366004611ad4565b610976565b34801561043357600080fd5b506008546001600160a01b031661025f565b34801561045157600080fd5b506102326109b3565b610297610468366004611b72565b6109c2565b34801561047957600080fd5b50610297610488366004611a80565b610d7e565b34801561049957600080fd5b50600d546102089060ff1681565b3480156104b357600080fd5b50610297610e14565b3480156104c857600080fd5b506102976104d7366004611a04565b610ec9565b3480156104e857600080fd5b506102c6600a5481565b3480156104fe57600080fd5b5061023261050d366004611b72565b610f1a565b34801561051e57600080fd5b506102c660105481565b34801561053457600080fd5b50610208610543366004611995565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b34801561057d57600080fd5b5061029761058c366004611973565b610f9b565b34801561059d57600080fd5b506102c6600b5481565b3480156105b357600080fd5b506102976105c2366004611b72565b611033565b3480156105d357600080fd5b506102c66105e2366004611973565b600e6020526000908152604090205481565b60006001600160e01b031982166380ac58cd60e01b148061062557506001600160e01b03198216635b5e139f60e01b145b8061064057506301ffc9a760e01b6001600160e01b03198316145b92915050565b60606002805461065590611da1565b80601f016020809104026020016040519081016040528092919081815260200182805461068190611da1565b80156106ce5780601f106106a3576101008083540402835291602001916106ce565b820191906000526020600020905b8154815290600101906020018083116106b157829003601f168201915b5050505050905090565b60006106e382611062565b610700576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b600061072782610851565b9050806001600160a01b0316836001600160a01b0316141561075c5760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b0382161480159061077c575061077a8133610543565b155b1561079a576040516367d9dca160e11b815260040160405180910390fd5b6107a583838361109b565b505050565b6107a58383836110f7565b6008546001600160a01b031633146107e85760405162461bcd60e51b81526004016107df90611cde565b60405180910390fd5b6107f233826112e6565b50565b6107a583838360405180602001604052806000815250610ec9565b6008546001600160a01b0316331461083a5760405162461bcd60e51b81526004016107df90611cde565b805161084d906009906020840190611838565b5050565b600061085c82611300565b5192915050565b6009805461087090611da1565b80601f016020809104026020016040519081016040528092919081815260200182805461089c90611da1565b80156108e95780601f106108be576101008083540402835291602001916108e9565b820191906000526020600020905b8154815290600101906020018083116108cc57829003601f168201915b505050505081565b60006001600160a01b03821661091a576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b6008546001600160a01b0316331461096a5760405162461bcd60e51b81526004016107df90611cde565b6109746000611429565b565b6008546001600160a01b031633146109a05760405162461bcd60e51b81526004016107df90611cde565b600d805460ff1916911515919091179055565b60606003805461065590611da1565b600d5460ff16610a0b5760405162461bcd60e51b8152602060048201526014602482015273135a5b9d081a5cc81b9bdd081b1a5d99481e595d60621b60448201526064016107df565b6001546000546107d09183910360001901610a269190611d13565b1115610a5e5760405162461bcd60e51b81526020600482015260076024820152664e6f206d6f726560c81b60448201526064016107df565b600b54811115610aa75760405162461bcd60e51b815260206004820152601460248201527326b0bc103832b9103a3c37103932b0b1b432b21760611b60448201526064016107df565b336000908152600e6020526040902054600c54610ac49190611d5e565b8110610bb257600a54336000908152600e6020526040902054600c54610aea9190611d5e565b610af49190611d3f565b600a54610b019083611d3f565b610b0b9190611d5e565b341015610b805760405162461bcd60e51b815260206004820152603f60248201527f596f7527766520616c7265616479206d696e746564206d61782066726565206160448201527f6c6c6f636174696f6e206f7220696e636f7272656374204554482073656e740060648201526084016107df565b600c54336000908152600e6020526040812082905560108054909190610ba7908490611d13565b90915550610d4f9050565b336000908152600e6020526040902054600c54610bcf9190611d5e565b811015610c0e57336000908152600e602052604081208054839290610bf5908490611d13565b925050819055508060106000828254610ba79190611d13565b600d5460ff16610c575760405162461bcd60e51b8152602060048201526014602482015273135a5b9d081a5cc81b9bdd081b1a5d99481e595d60621b60448201526064016107df565b600a54610c649082611d3f565b341015610cb35760405162461bcd60e51b815260206004820181905260248201527f506c656173652073656e64207468652065786163742045544820616d6f756e7460448201526064016107df565b6001546000546107d09183910360001901610cce9190611d13565b1115610d065760405162461bcd60e51b81526020600482015260076024820152664e6f206d6f726560c81b60448201526064016107df565b600b54811115610d4f5760405162461bcd60e51b815260206004820152601460248201527326b0bc103832b9103a3c37103932b0b1b432b21760611b60448201526064016107df565b336000908152600f602052604081208054839290610d6e908490611d13565b909155506107f2905033826112e6565b6001600160a01b038216331415610da85760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6008546001600160a01b03163314610e3e5760405162461bcd60e51b81526004016107df90611cde565b604051600090339047908381818185875af1925050503d8060008114610e80576040519150601f19603f3d011682016040523d82523d6000602084013e610e85565b606091505b50509050806107f25760405162461bcd60e51b815260206004820152601060248201526f2a3930b739b332b9103330b4b632b21760811b60448201526064016107df565b610ed48484846110f7565b6001600160a01b0383163b15158015610ef65750610ef48484848461147b565b155b15610f14576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b6060610f2582611062565b610f695760405162461bcd60e51b81526020600482015260156024820152742a37b5b2b7103237b2b9903737ba1032bc34b9ba1760591b60448201526064016107df565b6009610f7483611573565b604051602001610f85929190611bd3565b6040516020818303038152906040529050919050565b6008546001600160a01b03163314610fc55760405162461bcd60e51b81526004016107df90611cde565b6001600160a01b03811661102a5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016107df565b6107f281611429565b6008546001600160a01b0316331461105d5760405162461bcd60e51b81526004016107df90611cde565b600a55565b600081600111158015611076575060005482105b8015610640575050600090815260046020526040902054600160e01b900460ff161590565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b600061110282611300565b9050836001600160a01b031681600001516001600160a01b0316146111395760405162a1148160e81b815260040160405180910390fd5b6000336001600160a01b038616148061115757506111578533610543565b80611172575033611167846106d8565b6001600160a01b0316145b90508061119257604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b0384166111b957604051633a954ecd60e21b815260040160405180910390fd5b6111c56000848761109b565b6001600160a01b038581166000908152600560209081526040808320805467ffffffffffffffff1980821667ffffffffffffffff92831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600490945282852080546001600160e01b031916909417600160a01b4290921691909102178355870180845292208054919390911661129b57600054821461129b578054602086015167ffffffffffffffff16600160a01b026001600160e01b03199091166001600160a01b038a16171781555b50505082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050505050565b61084d828260405180602001604052806000815250611671565b60408051606081018252600080825260208201819052918101919091528180600111158015611330575060005481105b1561141057600081815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b810467ffffffffffffffff1692820192909252600160e01b90910460ff1615159181018290529061140e5780516001600160a01b0316156113a4579392505050565b5060001901600081815260046020908152604091829020825160608101845290546001600160a01b038116808352600160a01b820467ffffffffffffffff1693830193909352600160e01b900460ff1615159281019290925215611409579392505050565b6113a4565b505b604051636f96cda160e11b815260040160405180910390fd5b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a02906114b0903390899088908890600401611c8e565b602060405180830381600087803b1580156114ca57600080fd5b505af19250505080156114fa575060408051601f3d908101601f191682019092526114f791810190611b0c565b60015b611555573d808015611528576040519150601f19603f3d011682016040523d82523d6000602084013e61152d565b606091505b50805161154d576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b6060816115975750506040805180820190915260018152600360fc1b602082015290565b8160005b81156115c157806115ab81611ddc565b91506115ba9050600a83611d2b565b915061159b565b60008167ffffffffffffffff8111156115dc576115dc611e4d565b6040519080825280601f01601f191660200182016040528015611606576020820181803683370190505b5090505b841561156b5761161b600183611d5e565b9150611628600a86611df7565b611633906030611d13565b60f81b81838151811061164857611648611e37565b60200101906001600160f81b031916908160001a90535061166a600a86611d2b565b945061160a565b6000546001600160a01b03841661169a57604051622e076360e81b815260040160405180910390fd5b826116b85760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038416600081815260056020908152604080832080546fffffffffffffffffffffffffffffffff19811667ffffffffffffffff8083168b0181169182176801000000000000000067ffffffffffffffff1990941690921783900481168b01811690920217909155858452600490925290912080546001600160e01b0319168317600160a01b42909316929092029190911790558190818501903b156117e2575b60405182906001600160a01b038816906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a46117aa600087848060010195508761147b565b6117c7576040516368d2bf6b60e11b815260040160405180910390fd5b8082141561175f5782600054146117dd57600080fd5b611828565b5b6040516001830192906001600160a01b038816906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4808214156117e3575b506000908155610f149085838684565b82805461184490611da1565b90600052602060002090601f01602090048101928261186657600085556118ac565b82601f1061187f57805160ff19168380011785556118ac565b828001600101855582156118ac579182015b828111156118ac578251825591602001919060010190611891565b506118b89291506118bc565b5090565b5b808211156118b857600081556001016118bd565b600067ffffffffffffffff808411156118ec576118ec611e4d565b604051601f8501601f19908116603f0116810190828211818310171561191457611914611e4d565b8160405280935085815286868601111561192d57600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b038116811461195e57600080fd5b919050565b8035801515811461195e57600080fd5b60006020828403121561198557600080fd5b61198e82611947565b9392505050565b600080604083850312156119a857600080fd5b6119b183611947565b91506119bf60208401611947565b90509250929050565b6000806000606084860312156119dd57600080fd5b6119e684611947565b92506119f460208501611947565b9150604084013590509250925092565b60008060008060808587031215611a1a57600080fd5b611a2385611947565b9350611a3160208601611947565b925060408501359150606085013567ffffffffffffffff811115611a5457600080fd5b8501601f81018713611a6557600080fd5b611a74878235602084016118d1565b91505092959194509250565b60008060408385031215611a9357600080fd5b611a9c83611947565b91506119bf60208401611963565b60008060408385031215611abd57600080fd5b611ac683611947565b946020939093013593505050565b600060208284031215611ae657600080fd5b61198e82611963565b600060208284031215611b0157600080fd5b813561198e81611e63565b600060208284031215611b1e57600080fd5b815161198e81611e63565b600060208284031215611b3b57600080fd5b813567ffffffffffffffff811115611b5257600080fd5b8201601f81018413611b6357600080fd5b61156b848235602084016118d1565b600060208284031215611b8457600080fd5b5035919050565b60008151808452611ba3816020860160208601611d75565b601f01601f19169290920160200192915050565b60008151611bc9818560208601611d75565b9290920192915050565b600080845481600182811c915080831680611bef57607f831692505b6020808410821415611c0f57634e487b7160e01b86526022600452602486fd5b818015611c235760018114611c3457611c61565b60ff19861689528489019650611c61565b60008b81526020902060005b86811015611c595781548b820152908501908301611c40565b505084890196505b505050505050611c85611c748286611bb7565b64173539b7b760d91b815260050190565b95945050505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611cc190830184611b8b565b9695505050505050565b60208152600061198e6020830184611b8b565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60008219821115611d2657611d26611e0b565b500190565b600082611d3a57611d3a611e21565b500490565b6000816000190483118215151615611d5957611d59611e0b565b500290565b600082821015611d7057611d70611e0b565b500390565b60005b83811015611d90578181015183820152602001611d78565b83811115610f145750506000910152565b600181811c90821680611db557607f821691505b60208210811415611dd657634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415611df057611df0611e0b565b5060010190565b600082611e0657611e06611e21565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b0319811681146107f257600080fdfea26469706673582212205b870fadebfa9429bb1b375af70d3178c730cb20f3b5b1aed0b8813cc368d08464736f6c63430008070033697066733a2f2f516d587250675a6e4c6e5a38765a775676566a716769643450774548644c714a386e6865635577677645695169632f

Deployed Bytecode

0x6080604052600436106101e35760003560e01c80638c3cefa311610102578063c002d23d11610095578063f2fde38b11610064578063f2fde38b14610571578063f43a22dc14610591578063f4a0a528146105a7578063f4db2acb146105c757600080fd5b8063c002d23d146104dc578063c87b56dd146104f2578063dad7b5c914610512578063e985e9c51461052857600080fd5b8063a22cb465116100d1578063a22cb4651461046d578063a5a865dc1461048d578063ac446002146104a7578063b88d4fde146104bc57600080fd5b80638c3cefa3146104075780638da5cb5b1461042757806395d89b4114610445578063a0712d681461045a57600080fd5b8063375a069a1161017a5780636352211e116101495780636352211e1461039d5780636c0360eb146103bd57806370a08231146103d2578063715018a6146103f257600080fd5b8063375a069a1461032757806342842e0e14610347578063463fff791461036757806355f804b31461037d57600080fd5b806311b01a32116101b657806311b01a321461029957806318160ddd146102d457806323b872dd146102f157806332cb6b0c1461031157600080fd5b806301ffc9a7146101e857806306fdde031461021d578063081812fc1461023f578063095ea7b314610277575b600080fd5b3480156101f457600080fd5b50610208610203366004611aef565b6105f4565b60405190151581526020015b60405180910390f35b34801561022957600080fd5b50610232610646565b6040516102149190611ccb565b34801561024b57600080fd5b5061025f61025a366004611b72565b6106d8565b6040516001600160a01b039091168152602001610214565b34801561028357600080fd5b50610297610292366004611aaa565b61071c565b005b3480156102a557600080fd5b506102c66102b4366004611973565b600f6020526000908152604090205481565b604051908152602001610214565b3480156102e057600080fd5b5060015460005403600019016102c6565b3480156102fd57600080fd5b5061029761030c3660046119c8565b6107aa565b34801561031d57600080fd5b506102c66107d081565b34801561033357600080fd5b50610297610342366004611b72565b6107b5565b34801561035357600080fd5b506102976103623660046119c8565b6107f5565b34801561037357600080fd5b506102c6600c5481565b34801561038957600080fd5b50610297610398366004611b29565b610810565b3480156103a957600080fd5b5061025f6103b8366004611b72565b610851565b3480156103c957600080fd5b50610232610863565b3480156103de57600080fd5b506102c66103ed366004611973565b6108f1565b3480156103fe57600080fd5b50610297610940565b34801561041357600080fd5b50610297610422366004611ad4565b610976565b34801561043357600080fd5b506008546001600160a01b031661025f565b34801561045157600080fd5b506102326109b3565b610297610468366004611b72565b6109c2565b34801561047957600080fd5b50610297610488366004611a80565b610d7e565b34801561049957600080fd5b50600d546102089060ff1681565b3480156104b357600080fd5b50610297610e14565b3480156104c857600080fd5b506102976104d7366004611a04565b610ec9565b3480156104e857600080fd5b506102c6600a5481565b3480156104fe57600080fd5b5061023261050d366004611b72565b610f1a565b34801561051e57600080fd5b506102c660105481565b34801561053457600080fd5b50610208610543366004611995565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b34801561057d57600080fd5b5061029761058c366004611973565b610f9b565b34801561059d57600080fd5b506102c6600b5481565b3480156105b357600080fd5b506102976105c2366004611b72565b611033565b3480156105d357600080fd5b506102c66105e2366004611973565b600e6020526000908152604090205481565b60006001600160e01b031982166380ac58cd60e01b148061062557506001600160e01b03198216635b5e139f60e01b145b8061064057506301ffc9a760e01b6001600160e01b03198316145b92915050565b60606002805461065590611da1565b80601f016020809104026020016040519081016040528092919081815260200182805461068190611da1565b80156106ce5780601f106106a3576101008083540402835291602001916106ce565b820191906000526020600020905b8154815290600101906020018083116106b157829003601f168201915b5050505050905090565b60006106e382611062565b610700576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b600061072782610851565b9050806001600160a01b0316836001600160a01b0316141561075c5760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b0382161480159061077c575061077a8133610543565b155b1561079a576040516367d9dca160e11b815260040160405180910390fd5b6107a583838361109b565b505050565b6107a58383836110f7565b6008546001600160a01b031633146107e85760405162461bcd60e51b81526004016107df90611cde565b60405180910390fd5b6107f233826112e6565b50565b6107a583838360405180602001604052806000815250610ec9565b6008546001600160a01b0316331461083a5760405162461bcd60e51b81526004016107df90611cde565b805161084d906009906020840190611838565b5050565b600061085c82611300565b5192915050565b6009805461087090611da1565b80601f016020809104026020016040519081016040528092919081815260200182805461089c90611da1565b80156108e95780601f106108be576101008083540402835291602001916108e9565b820191906000526020600020905b8154815290600101906020018083116108cc57829003601f168201915b505050505081565b60006001600160a01b03821661091a576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b6008546001600160a01b0316331461096a5760405162461bcd60e51b81526004016107df90611cde565b6109746000611429565b565b6008546001600160a01b031633146109a05760405162461bcd60e51b81526004016107df90611cde565b600d805460ff1916911515919091179055565b60606003805461065590611da1565b600d5460ff16610a0b5760405162461bcd60e51b8152602060048201526014602482015273135a5b9d081a5cc81b9bdd081b1a5d99481e595d60621b60448201526064016107df565b6001546000546107d09183910360001901610a269190611d13565b1115610a5e5760405162461bcd60e51b81526020600482015260076024820152664e6f206d6f726560c81b60448201526064016107df565b600b54811115610aa75760405162461bcd60e51b815260206004820152601460248201527326b0bc103832b9103a3c37103932b0b1b432b21760611b60448201526064016107df565b336000908152600e6020526040902054600c54610ac49190611d5e565b8110610bb257600a54336000908152600e6020526040902054600c54610aea9190611d5e565b610af49190611d3f565b600a54610b019083611d3f565b610b0b9190611d5e565b341015610b805760405162461bcd60e51b815260206004820152603f60248201527f596f7527766520616c7265616479206d696e746564206d61782066726565206160448201527f6c6c6f636174696f6e206f7220696e636f7272656374204554482073656e740060648201526084016107df565b600c54336000908152600e6020526040812082905560108054909190610ba7908490611d13565b90915550610d4f9050565b336000908152600e6020526040902054600c54610bcf9190611d5e565b811015610c0e57336000908152600e602052604081208054839290610bf5908490611d13565b925050819055508060106000828254610ba79190611d13565b600d5460ff16610c575760405162461bcd60e51b8152602060048201526014602482015273135a5b9d081a5cc81b9bdd081b1a5d99481e595d60621b60448201526064016107df565b600a54610c649082611d3f565b341015610cb35760405162461bcd60e51b815260206004820181905260248201527f506c656173652073656e64207468652065786163742045544820616d6f756e7460448201526064016107df565b6001546000546107d09183910360001901610cce9190611d13565b1115610d065760405162461bcd60e51b81526020600482015260076024820152664e6f206d6f726560c81b60448201526064016107df565b600b54811115610d4f5760405162461bcd60e51b815260206004820152601460248201527326b0bc103832b9103a3c37103932b0b1b432b21760611b60448201526064016107df565b336000908152600f602052604081208054839290610d6e908490611d13565b909155506107f2905033826112e6565b6001600160a01b038216331415610da85760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6008546001600160a01b03163314610e3e5760405162461bcd60e51b81526004016107df90611cde565b604051600090339047908381818185875af1925050503d8060008114610e80576040519150601f19603f3d011682016040523d82523d6000602084013e610e85565b606091505b50509050806107f25760405162461bcd60e51b815260206004820152601060248201526f2a3930b739b332b9103330b4b632b21760811b60448201526064016107df565b610ed48484846110f7565b6001600160a01b0383163b15158015610ef65750610ef48484848461147b565b155b15610f14576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b6060610f2582611062565b610f695760405162461bcd60e51b81526020600482015260156024820152742a37b5b2b7103237b2b9903737ba1032bc34b9ba1760591b60448201526064016107df565b6009610f7483611573565b604051602001610f85929190611bd3565b6040516020818303038152906040529050919050565b6008546001600160a01b03163314610fc55760405162461bcd60e51b81526004016107df90611cde565b6001600160a01b03811661102a5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016107df565b6107f281611429565b6008546001600160a01b0316331461105d5760405162461bcd60e51b81526004016107df90611cde565b600a55565b600081600111158015611076575060005482105b8015610640575050600090815260046020526040902054600160e01b900460ff161590565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b600061110282611300565b9050836001600160a01b031681600001516001600160a01b0316146111395760405162a1148160e81b815260040160405180910390fd5b6000336001600160a01b038616148061115757506111578533610543565b80611172575033611167846106d8565b6001600160a01b0316145b90508061119257604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b0384166111b957604051633a954ecd60e21b815260040160405180910390fd5b6111c56000848761109b565b6001600160a01b038581166000908152600560209081526040808320805467ffffffffffffffff1980821667ffffffffffffffff92831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600490945282852080546001600160e01b031916909417600160a01b4290921691909102178355870180845292208054919390911661129b57600054821461129b578054602086015167ffffffffffffffff16600160a01b026001600160e01b03199091166001600160a01b038a16171781555b50505082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050505050565b61084d828260405180602001604052806000815250611671565b60408051606081018252600080825260208201819052918101919091528180600111158015611330575060005481105b1561141057600081815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b810467ffffffffffffffff1692820192909252600160e01b90910460ff1615159181018290529061140e5780516001600160a01b0316156113a4579392505050565b5060001901600081815260046020908152604091829020825160608101845290546001600160a01b038116808352600160a01b820467ffffffffffffffff1693830193909352600160e01b900460ff1615159281019290925215611409579392505050565b6113a4565b505b604051636f96cda160e11b815260040160405180910390fd5b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a02906114b0903390899088908890600401611c8e565b602060405180830381600087803b1580156114ca57600080fd5b505af19250505080156114fa575060408051601f3d908101601f191682019092526114f791810190611b0c565b60015b611555573d808015611528576040519150601f19603f3d011682016040523d82523d6000602084013e61152d565b606091505b50805161154d576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b6060816115975750506040805180820190915260018152600360fc1b602082015290565b8160005b81156115c157806115ab81611ddc565b91506115ba9050600a83611d2b565b915061159b565b60008167ffffffffffffffff8111156115dc576115dc611e4d565b6040519080825280601f01601f191660200182016040528015611606576020820181803683370190505b5090505b841561156b5761161b600183611d5e565b9150611628600a86611df7565b611633906030611d13565b60f81b81838151811061164857611648611e37565b60200101906001600160f81b031916908160001a90535061166a600a86611d2b565b945061160a565b6000546001600160a01b03841661169a57604051622e076360e81b815260040160405180910390fd5b826116b85760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038416600081815260056020908152604080832080546fffffffffffffffffffffffffffffffff19811667ffffffffffffffff8083168b0181169182176801000000000000000067ffffffffffffffff1990941690921783900481168b01811690920217909155858452600490925290912080546001600160e01b0319168317600160a01b42909316929092029190911790558190818501903b156117e2575b60405182906001600160a01b038816906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a46117aa600087848060010195508761147b565b6117c7576040516368d2bf6b60e11b815260040160405180910390fd5b8082141561175f5782600054146117dd57600080fd5b611828565b5b6040516001830192906001600160a01b038816906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4808214156117e3575b506000908155610f149085838684565b82805461184490611da1565b90600052602060002090601f01602090048101928261186657600085556118ac565b82601f1061187f57805160ff19168380011785556118ac565b828001600101855582156118ac579182015b828111156118ac578251825591602001919060010190611891565b506118b89291506118bc565b5090565b5b808211156118b857600081556001016118bd565b600067ffffffffffffffff808411156118ec576118ec611e4d565b604051601f8501601f19908116603f0116810190828211818310171561191457611914611e4d565b8160405280935085815286868601111561192d57600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b038116811461195e57600080fd5b919050565b8035801515811461195e57600080fd5b60006020828403121561198557600080fd5b61198e82611947565b9392505050565b600080604083850312156119a857600080fd5b6119b183611947565b91506119bf60208401611947565b90509250929050565b6000806000606084860312156119dd57600080fd5b6119e684611947565b92506119f460208501611947565b9150604084013590509250925092565b60008060008060808587031215611a1a57600080fd5b611a2385611947565b9350611a3160208601611947565b925060408501359150606085013567ffffffffffffffff811115611a5457600080fd5b8501601f81018713611a6557600080fd5b611a74878235602084016118d1565b91505092959194509250565b60008060408385031215611a9357600080fd5b611a9c83611947565b91506119bf60208401611963565b60008060408385031215611abd57600080fd5b611ac683611947565b946020939093013593505050565b600060208284031215611ae657600080fd5b61198e82611963565b600060208284031215611b0157600080fd5b813561198e81611e63565b600060208284031215611b1e57600080fd5b815161198e81611e63565b600060208284031215611b3b57600080fd5b813567ffffffffffffffff811115611b5257600080fd5b8201601f81018413611b6357600080fd5b61156b848235602084016118d1565b600060208284031215611b8457600080fd5b5035919050565b60008151808452611ba3816020860160208601611d75565b601f01601f19169290920160200192915050565b60008151611bc9818560208601611d75565b9290920192915050565b600080845481600182811c915080831680611bef57607f831692505b6020808410821415611c0f57634e487b7160e01b86526022600452602486fd5b818015611c235760018114611c3457611c61565b60ff19861689528489019650611c61565b60008b81526020902060005b86811015611c595781548b820152908501908301611c40565b505084890196505b505050505050611c85611c748286611bb7565b64173539b7b760d91b815260050190565b95945050505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611cc190830184611b8b565b9695505050505050565b60208152600061198e6020830184611b8b565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60008219821115611d2657611d26611e0b565b500190565b600082611d3a57611d3a611e21565b500490565b6000816000190483118215151615611d5957611d59611e0b565b500290565b600082821015611d7057611d70611e0b565b500390565b60005b83811015611d90578181015183820152602001611d78565b83811115610f145750506000910152565b600181811c90821680611db557607f821691505b60208210811415611dd657634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415611df057611df0611e0b565b5060010190565b600082611e0657611e06611e21565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b0319811681146107f257600080fdfea26469706673582212205b870fadebfa9429bb1b375af70d3178c730cb20f3b5b1aed0b8813cc368d08464736f6c63430008070033

Deployed Bytecode Sourcemap

46494:2896:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25148:305;;;;;;;;;;-1:-1:-1;25148:305:0;;;;;:::i;:::-;;:::i;:::-;;;7252:14:1;;7245:22;7227:41;;7215:2;7200:18;25148:305:0;;;;;;;;28261:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;29764:204::-;;;;;;;;;;-1:-1:-1;29764:204:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;6550:32:1;;;6532:51;;6520:2;6505:18;29764:204:0;6386:203:1;29327:371:0;;;;;;;;;;-1:-1:-1;29327:371:0;;;;;:::i;:::-;;:::i;:::-;;46904:53;;;;;;;;;;-1:-1:-1;46904:53:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;;10938:25:1;;;10926:2;10911:18;46904:53:0;10792:177:1;24397:303:0;;;;;;;;;;-1:-1:-1;47620:1:0;24651:12;24441:7;24635:13;:28;-1:-1:-1;;24635:46:0;24397:303;;30629:170;;;;;;;;;;-1:-1:-1;30629:170:0;;;;;:::i;:::-;;:::i;46629:41::-;;;;;;;;;;;;46666:4;46629:41;;49099:100;;;;;;;;;;-1:-1:-1;49099:100:0;;;;;:::i;:::-;;:::i;30870:185::-;;;;;;;;;;-1:-1:-1;30870:185:0;;;;;:::i;:::-;;:::i;46763:36::-;;;;;;;;;;;;;;;;47315:100;;;;;;;;;;-1:-1:-1;47315:100:0;;;;;:::i;:::-;;:::i;28069:125::-;;;;;;;;;;-1:-1:-1;28069:125:0;;;;;:::i;:::-;;:::i;46542:80::-;;;;;;;;;;;;;:::i;25517:206::-;;;;;;;;;;-1:-1:-1;25517:206:0;;;;;:::i;:::-;;:::i;45673:103::-;;;;;;;;;;;;;:::i;47637:112::-;;;;;;;;;;-1:-1:-1;47637:112:0;;;;;:::i;:::-;;:::i;45022:87::-;;;;;;;;;;-1:-1:-1;45095:6:0;;-1:-1:-1;;;;;45095:6:0;45022:87;;28430:104;;;;;;;;;;;;;:::i;47761:1330::-;;;;;;:::i;:::-;;:::i;30040:287::-;;;;;;;;;;-1:-1:-1;30040:287:0;;;;;:::i;:::-;;:::i;46806:32::-;;;;;;;;;;-1:-1:-1;46806:32:0;;;;;;;;49207:180;;;;;;;;;;;;;:::i;31126:369::-;;;;;;;;;;-1:-1:-1;31126:369:0;;;;;:::i;:::-;;:::i;46677:40::-;;;;;;;;;;;;;;;;47068:239;;;;;;;;;;-1:-1:-1;47068:239:0;;;;;:::i;:::-;;:::i;46964:33::-;;;;;;;;;;;;;;;;30398:164;;;;;;;;;;-1:-1:-1;30398:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;30519:25:0;;;30495:4;30519:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;30398:164;45931:201;;;;;;;;;;-1:-1:-1;45931:201:0;;;;;:::i;:::-;;:::i;46724:32::-;;;;;;;;;;;;;;;;47425:95;;;;;;;;;;-1:-1:-1;47425:95:0;;;;;:::i;:::-;;:::i;46845:52::-;;;;;;;;;;-1:-1:-1;46845:52:0;;;;;:::i;:::-;;;;;;;;;;;;;;25148:305;25250:4;-1:-1:-1;;;;;;25287:40:0;;-1:-1:-1;;;25287:40:0;;:105;;-1:-1:-1;;;;;;;25344:48:0;;-1:-1:-1;;;25344:48:0;25287:105;:158;;;-1:-1:-1;;;;;;;;;;14272:40:0;;;25409:36;25267:178;25148:305;-1:-1:-1;;25148:305:0:o;28261:100::-;28315:13;28348:5;28341:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28261:100;:::o;29764:204::-;29832:7;29857:16;29865:7;29857;:16::i;:::-;29852:64;;29882:34;;-1:-1:-1;;;29882:34:0;;;;;;;;;;;29852:64;-1:-1:-1;29936:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;29936:24:0;;29764:204::o;29327:371::-;29400:13;29416:24;29432:7;29416:15;:24::i;:::-;29400:40;;29461:5;-1:-1:-1;;;;;29455:11:0;:2;-1:-1:-1;;;;;29455:11:0;;29451:48;;;29475:24;;-1:-1:-1;;;29475:24:0;;;;;;;;;;;29451:48;20776:10;-1:-1:-1;;;;;29516:21:0;;;;;;:63;;-1:-1:-1;29542:37:0;29559:5;20776:10;30398:164;:::i;29542:37::-;29541:38;29516:63;29512:138;;;29603:35;;-1:-1:-1;;;29603:35:0;;;;;;;;;;;29512:138;29662:28;29671:2;29675:7;29684:5;29662:8;:28::i;:::-;29389:309;29327:371;;:::o;30629:170::-;30763:28;30773:4;30779:2;30783:7;30763:9;:28::i;49099:100::-;45095:6;;-1:-1:-1;;;;;45095:6:0;20776:10;45242:23;45234:68;;;;-1:-1:-1;;;45234:68:0;;;;;;;:::i;:::-;;;;;;;;;49161:30:::1;20776:10:::0;49185:5:::1;49161:9;:30::i;:::-;49099:100:::0;:::o;30870:185::-;31008:39;31025:4;31031:2;31035:7;31008:39;;;;;;;;;;;;:16;:39::i;47315:100::-;45095:6;;-1:-1:-1;;;;;45095:6:0;20776:10;45242:23;45234:68;;;;-1:-1:-1;;;45234:68:0;;;;;;;:::i;:::-;47389:18;;::::1;::::0;:7:::1;::::0;:18:::1;::::0;::::1;::::0;::::1;:::i;:::-;;47315:100:::0;:::o;28069:125::-;28133:7;28160:21;28173:7;28160:12;:21::i;:::-;:26;;28069:125;-1:-1:-1;;28069:125:0:o;46542:80::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;25517:206::-;25581:7;-1:-1:-1;;;;;25605:19:0;;25601:60;;25633:28;;-1:-1:-1;;;25633:28:0;;;;;;;;;;;25601:60;-1:-1:-1;;;;;;25687:19:0;;;;;:12;:19;;;;;:27;;;;25517:206::o;45673:103::-;45095:6;;-1:-1:-1;;;;;45095:6:0;20776:10;45242:23;45234:68;;;;-1:-1:-1;;;45234:68:0;;;;;;;:::i;:::-;45738:30:::1;45765:1;45738:18;:30::i;:::-;45673:103::o:0;47637:112::-;45095:6;;-1:-1:-1;;;;;45095:6:0;20776:10;45242:23;45234:68;;;;-1:-1:-1;;;45234:68:0;;;;;;;:::i;:::-;47713:12:::1;:28:::0;;-1:-1:-1;;47713:28:0::1;::::0;::::1;;::::0;;;::::1;::::0;;47637:112::o;28430:104::-;28486:13;28519:7;28512:14;;;;;:::i;47761:1330::-;47826:12;;;;47818:45;;;;-1:-1:-1;;;47818:45:0;;8054:2:1;47818:45:0;;;8036:21:1;8093:2;8073:18;;;8066:30;-1:-1:-1;;;8112:18:1;;;8105:50;8172:18;;47818:45:0;7852:344:1;47818:45:0;47620:1;24651:12;24441:7;24635:13;46666:4;;47898:5;;24635:28;-1:-1:-1;;24635:46:0;47882:21;;;;:::i;:::-;:35;;47874:55;;;;-1:-1:-1;;;47874:55:0;;8403:2:1;47874:55:0;;;8385:21:1;8442:1;8422:18;;;8415:29;-1:-1:-1;;;8460:18:1;;;8453:37;8507:18;;47874:55:0;8201:330:1;47874:55:0;47957:10;;47948:5;:19;;47940:52;;;;-1:-1:-1;;;47940:52:0;;7705:2:1;47940:52:0;;;7687:21:1;7744:2;7724:18;;;7717:30;-1:-1:-1;;;7763:18:1;;;7756:50;7823:18;;47940:52:0;7503:344:1;47940:52:0;48056:10;48038:29;;;;:17;:29;;;;;;48020:15;;:47;;48038:29;48020:47;:::i;:::-;48010:5;:58;48007:988;;48196:10;;48181;48163:29;;;;:17;:29;;;;;;48145:15;;:47;;48163:29;48145:47;:::i;:::-;48144:62;;;;:::i;:::-;48129:10;;48121:18;;:5;:18;:::i;:::-;48120:87;;;;:::i;:::-;48107:9;:100;;48099:176;;;;-1:-1:-1;;;48099:176:0;;9145:2:1;48099:176:0;;;9127:21:1;9184:2;9164:18;;;9157:30;9223:34;9203:18;;;9196:62;9294:33;9274:18;;;9267:61;9345:19;;48099:176:0;8943:427:1;48099:176:0;48323:15;;48309:10;48291:29;;;;:17;:29;;;;;:47;;;48354:15;:34;;:15;;48291:29;48354:34;;48323:15;;48354:34;:::i;:::-;;;;-1:-1:-1;48007:988:0;;-1:-1:-1;48007:988:0;;48471:10;48453:29;;;;:17;:29;;;;;;48435:15;;:47;;48453:29;48435:47;:::i;:::-;48426:5;:57;48423:572;;;48607:10;48589:29;;;;:17;:29;;;;;:38;;48622:5;;48589:29;:38;;48622:5;;48589:38;:::i;:::-;;;;;;;;48662:5;48643:15;;:24;;;;;;;:::i;48423:572::-;48730:12;;;;48722:45;;;;-1:-1:-1;;;48722:45:0;;8054:2:1;48722:45:0;;;8036:21:1;8093:2;8073:18;;;8066:30;-1:-1:-1;;;8112:18:1;;;8105:50;8172:18;;48722:45:0;7852:344:1;48722:45:0;48807:10;;48799:18;;:5;:18;:::i;:::-;48786:9;:31;;48778:76;;;;-1:-1:-1;;;48778:76:0;;9927:2:1;48778:76:0;;;9909:21:1;;;9946:18;;;9939:30;10005:34;9985:18;;;9978:62;10057:18;;48778:76:0;9725:356:1;48778:76:0;47620:1;24651:12;24441:7;24635:13;46666:4;;48889:5;;24635:28;-1:-1:-1;;24635:46:0;48873:21;;;;:::i;:::-;:35;;48865:55;;;;-1:-1:-1;;;48865:55:0;;8403:2:1;48865:55:0;;;8385:21:1;8442:1;8422:18;;;8415:29;-1:-1:-1;;;8460:18:1;;;8453:37;8507:18;;48865:55:0;8201:330:1;48865:55:0;48948:10;;48939:5;:19;;48931:52;;;;-1:-1:-1;;;48931:52:0;;7705:2:1;48931:52:0;;;7687:21:1;7744:2;7724:18;;;7717:30;-1:-1:-1;;;7763:18:1;;;7756:50;7823:18;;48931:52:0;7503:344:1;48931:52:0;49024:10;49005:30;;;;:18;:30;;;;;:39;;49039:5;;49005:30;:39;;49039:5;;49005:39;:::i;:::-;;;;-1:-1:-1;49055:28:0;;-1:-1:-1;49065:10:0;49077:5;49055:9;:28::i;30040:287::-;-1:-1:-1;;;;;30139:24:0;;20776:10;30139:24;30135:54;;;30172:17;;-1:-1:-1;;;30172:17:0;;;;;;;;;;;30135:54;20776:10;30202:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;30202:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;30202:53:0;;;;;;;;;;30271:48;;7227:41:1;;;30202:42:0;;20776:10;30271:48;;7200:18:1;30271:48:0;;;;;;;30040:287;;:::o;49207:180::-;45095:6;;-1:-1:-1;;;;;45095:6:0;20776:10;45242:23;45234:68;;;;-1:-1:-1;;;45234:68:0;;;;;;;:::i;:::-;49281:51:::1;::::0;49263:12:::1;::::0;20776:10;;49306:21:::1;::::0;49263:12;49281:51;49263:12;49281:51;49306:21;20776:10;49281:51:::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49262:70;;;49351:7;49343:36;;;::::0;-1:-1:-1;;;49343:36:0;;10649:2:1;49343:36:0::1;::::0;::::1;10631:21:1::0;10688:2;10668:18;;;10661:30;-1:-1:-1;;;10707:18:1;;;10700:46;10763:18;;49343:36:0::1;10447:340:1::0;31126:369:0;31293:28;31303:4;31309:2;31313:7;31293:9;:28::i;:::-;-1:-1:-1;;;;;31336:13:0;;4352:19;:23;;31336:76;;;;;31356:56;31387:4;31393:2;31397:7;31406:5;31356:30;:56::i;:::-;31355:57;31336:76;31332:156;;;31436:40;;-1:-1:-1;;;31436:40:0;;;;;;;;;;;31332:156;31126:369;;;;:::o;47068:239::-;47134:13;47168:17;47176:8;47168:7;:17::i;:::-;47160:51;;;;-1:-1:-1;;;47160:51:0;;9577:2:1;47160:51:0;;;9559:21:1;9616:2;9596:18;;;9589:30;-1:-1:-1;;;9635:18:1;;;9628:51;9696:18;;47160:51:0;9375:345:1;47160:51:0;47253:7;47262:26;47279:8;47262:16;:26::i;:::-;47236:62;;;;;;;;;:::i;:::-;;;;;;;;;;;;;47222:77;;47068:239;;;:::o;45931:201::-;45095:6;;-1:-1:-1;;;;;45095:6:0;20776:10;45242:23;45234:68;;;;-1:-1:-1;;;45234:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;46020:22:0;::::1;46012:73;;;::::0;-1:-1:-1;;;46012:73:0;;8738:2:1;46012:73:0::1;::::0;::::1;8720:21:1::0;8777:2;8757:18;;;8750:30;8816:34;8796:18;;;8789:62;-1:-1:-1;;;8867:18:1;;;8860:36;8913:19;;46012:73:0::1;8536:402:1::0;46012:73:0::1;46096:28;46115:8;46096:18;:28::i;47425:95::-:0;45095:6;;-1:-1:-1;;;;;45095:6:0;20776:10;45242:23;45234:68;;;;-1:-1:-1;;;45234:68:0;;;;;;;:::i;:::-;47493:10:::1;:19:::0;47425:95::o;31750:174::-;31807:4;31850:7;47620:1;31831:26;;:53;;;;;31871:13;;31861:7;:23;31831:53;:85;;;;-1:-1:-1;;31889:20:0;;;;:11;:20;;;;;:27;-1:-1:-1;;;31889:27:0;;;;31888:28;;31750:174::o;40976:196::-;41091:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;41091:29:0;-1:-1:-1;;;;;41091:29:0;;;;;;;;;41136:28;;41091:24;;41136:28;;;;;;;40976:196;;;:::o;35924:2130::-;36039:35;36077:21;36090:7;36077:12;:21::i;:::-;36039:59;;36137:4;-1:-1:-1;;;;;36115:26:0;:13;:18;;;-1:-1:-1;;;;;36115:26:0;;36111:67;;36150:28;;-1:-1:-1;;;36150:28:0;;;;;;;;;;;36111:67;36191:22;20776:10;-1:-1:-1;;;;;36217:20:0;;;;:73;;-1:-1:-1;36254:36:0;36271:4;20776:10;30398:164;:::i;36254:36::-;36217:126;;;-1:-1:-1;20776:10:0;36307:20;36319:7;36307:11;:20::i;:::-;-1:-1:-1;;;;;36307:36:0;;36217:126;36191:153;;36362:17;36357:66;;36388:35;;-1:-1:-1;;;36388:35:0;;;;;;;;;;;36357:66;-1:-1:-1;;;;;36438:16:0;;36434:52;;36463:23;;-1:-1:-1;;;36463:23:0;;;;;;;;;;;36434:52;36607:35;36624:1;36628:7;36637:4;36607:8;:35::i;:::-;-1:-1:-1;;;;;36938:18:0;;;;;;;:12;:18;;;;;;;;:31;;-1:-1:-1;;36938:31:0;;;;;;;-1:-1:-1;;36938:31:0;;;;;;;36984:16;;;;;;;;;:29;;;;;;;;-1:-1:-1;36984:29:0;;;;;;;;;;;37064:20;;;:11;:20;;;;;;37099:18;;-1:-1:-1;;;;;;37132:49:0;;;;-1:-1:-1;;;37165:15:0;37132:49;;;;;;;;;;37455:11;;37515:24;;;;;37558:13;;37064:20;;37515:24;;37558:13;37554:384;;37768:13;;37753:11;:28;37749:174;;37806:20;;37875:28;;;;37849:54;;-1:-1:-1;;;37849:54:0;-1:-1:-1;;;;;;37849:54:0;;;-1:-1:-1;;;;;37806:20:0;;37849:54;;;;37749:174;36913:1036;;;37985:7;37981:2;-1:-1:-1;;;;;37966:27:0;37975:4;-1:-1:-1;;;;;37966:27:0;;;;;;;;;;;36028:2026;;35924:2130;;;:::o;32008:104::-;32077:27;32087:2;32091:8;32077:27;;;;;;;;;;;;:9;:27::i;26898:1109::-;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;27009:7:0;;47620:1;27058:23;;:47;;;;;27092:13;;27085:4;:20;27058:47;27054:886;;;27126:31;27160:17;;;:11;:17;;;;;;;;;27126:51;;;;;;;;;-1:-1:-1;;;;;27126:51:0;;;;-1:-1:-1;;;27126:51:0;;;;;;;;;;;-1:-1:-1;;;27126:51:0;;;;;;;;;;;;;;27196:729;;27246:14;;-1:-1:-1;;;;;27246:28:0;;27242:101;;27310:9;26898:1109;-1:-1:-1;;;26898:1109:0:o;27242:101::-;-1:-1:-1;;;27685:6:0;27730:17;;;;:11;:17;;;;;;;;;27718:29;;;;;;;;;-1:-1:-1;;;;;27718:29:0;;;;;-1:-1:-1;;;27718:29:0;;;;;;;;;;;-1:-1:-1;;;27718:29:0;;;;;;;;;;;;;27778:28;27774:109;;27846:9;26898:1109;-1:-1:-1;;;26898:1109:0:o;27774:109::-;27645:261;;;27107:833;27054:886;27968:31;;-1:-1:-1;;;27968:31:0;;;;;;;;;;;46292:191;46385:6;;;-1:-1:-1;;;;;46402:17:0;;;-1:-1:-1;;;;;;46402:17:0;;;;;;;46435:40;;46385:6;;;46402:17;46385:6;;46435:40;;46366:16;;46435:40;46355:128;46292:191;:::o;41664:667::-;41848:72;;-1:-1:-1;;;41848:72:0;;41827:4;;-1:-1:-1;;;;;41848:36:0;;;;;:72;;20776:10;;41899:4;;41905:7;;41914:5;;41848:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;41848:72:0;;;;;;;;-1:-1:-1;;41848:72:0;;;;;;;;;;;;:::i;:::-;;;41844:480;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;42082:13:0;;42078:235;;42128:40;;-1:-1:-1;;;42128:40:0;;;;;;;;;;;42078:235;42271:6;42265:13;42256:6;42252:2;42248:15;42241:38;41844:480;-1:-1:-1;;;;;;41967:55:0;-1:-1:-1;;;41967:55:0;;-1:-1:-1;41844:480:0;41664:667;;;;;;:::o;1065:723::-;1121:13;1342:10;1338:53;;-1:-1:-1;;1369:10:0;;;;;;;;;;;;-1:-1:-1;;;1369:10:0;;;;;1065:723::o;1338:53::-;1416:5;1401:12;1457:78;1464:9;;1457:78;;1490:8;;;;:::i;:::-;;-1:-1:-1;1513:10:0;;-1:-1:-1;1521:2:0;1513:10;;:::i;:::-;;;1457:78;;;1545:19;1577:6;1567:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;1567:17:0;;1545:39;;1595:154;1602:10;;1595:154;;1629:11;1639:1;1629:11;;:::i;:::-;;-1:-1:-1;1698:10:0;1706:2;1698:5;:10;:::i;:::-;1685:24;;:2;:24;:::i;:::-;1672:39;;1655:6;1662;1655:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;1655:56:0;;;;;;;;-1:-1:-1;1726:11:0;1735:2;1726:11;;:::i;:::-;;;1595:154;;32486:1751;32609:20;32632:13;-1:-1:-1;;;;;32660:16:0;;32656:48;;32685:19;;-1:-1:-1;;;32685:19:0;;;;;;;;;;;32656:48;32719:13;32715:44;;32741:18;;-1:-1:-1;;;32741:18:0;;;;;;;;;;;32715:44;-1:-1:-1;;;;;33110:16:0;;;;;;:12;:16;;;;;;;;:44;;-1:-1:-1;;33169:49:0;;33110:44;;;;;;;;33169:49;;;;-1:-1:-1;;33110:44:0;;;;;;33169:49;;;;;;;;;;;;;;;;33235:25;;;:11;:25;;;;;;:35;;-1:-1:-1;;;;;;33285:66:0;;;-1:-1:-1;;;33335:15:0;33285:66;;;;;;;;;;;;;33235:25;;33432:23;;;;4352:19;:23;33472:633;;33512:314;33543:38;;33568:12;;-1:-1:-1;;;;;33543:38:0;;;33560:1;;33543:38;;33560:1;;33543:38;33609:69;33648:1;33652:2;33656:14;;;;;;33672:5;33609:30;:69::i;:::-;33604:174;;33714:40;;-1:-1:-1;;;33714:40:0;;;;;;;;;;;33604:174;33821:3;33805:12;:19;;33512:314;;33907:12;33890:13;;:29;33886:43;;33921:8;;;33886:43;33472:633;;;33970:120;34001:40;;34026:14;;;;;-1:-1:-1;;;;;34001:40:0;;;34018:1;;34001:40;;34018:1;;34001:40;34085:3;34069:12;:19;;33970:120;;33472:633;-1:-1:-1;34119:13:0;:28;;;34169:60;;34202:2;34206:12;34220:8;34169:60;:::i;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:631:1;78:5;108:18;149:2;141:6;138:14;135:40;;;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:72;;;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:45;;;532:1;529;522:12;491:45;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;;;;14:631;;;;;:::o;650:173::-;718:20;;-1:-1:-1;;;;;767:31:1;;757:42;;747:70;;813:1;810;803:12;747:70;650:173;;;:::o;828:160::-;893:20;;949:13;;942:21;932:32;;922:60;;978:1;975;968:12;993:186;1052:6;1105:2;1093:9;1084:7;1080:23;1076:32;1073:52;;;1121:1;1118;1111:12;1073:52;1144:29;1163:9;1144:29;:::i;:::-;1134:39;993:186;-1:-1:-1;;;993:186:1:o;1184:260::-;1252:6;1260;1313:2;1301:9;1292:7;1288:23;1284:32;1281:52;;;1329:1;1326;1319:12;1281:52;1352:29;1371:9;1352:29;:::i;:::-;1342:39;;1400:38;1434:2;1423:9;1419:18;1400:38;:::i;:::-;1390:48;;1184:260;;;;;:::o;1449:328::-;1526:6;1534;1542;1595:2;1583:9;1574:7;1570:23;1566:32;1563:52;;;1611:1;1608;1601:12;1563:52;1634:29;1653:9;1634:29;:::i;:::-;1624:39;;1682:38;1716:2;1705:9;1701:18;1682:38;:::i;:::-;1672:48;;1767:2;1756:9;1752:18;1739:32;1729:42;;1449:328;;;;;:::o;1782:666::-;1877:6;1885;1893;1901;1954:3;1942:9;1933:7;1929:23;1925:33;1922:53;;;1971:1;1968;1961:12;1922:53;1994:29;2013:9;1994:29;:::i;:::-;1984:39;;2042:38;2076:2;2065:9;2061:18;2042:38;:::i;:::-;2032:48;;2127:2;2116:9;2112:18;2099:32;2089:42;;2182:2;2171:9;2167:18;2154:32;2209:18;2201:6;2198:30;2195:50;;;2241:1;2238;2231:12;2195:50;2264:22;;2317:4;2309:13;;2305:27;-1:-1:-1;2295:55:1;;2346:1;2343;2336:12;2295:55;2369:73;2434:7;2429:2;2416:16;2411:2;2407;2403:11;2369:73;:::i;:::-;2359:83;;;1782:666;;;;;;;:::o;2453:254::-;2518:6;2526;2579:2;2567:9;2558:7;2554:23;2550:32;2547:52;;;2595:1;2592;2585:12;2547:52;2618:29;2637:9;2618:29;:::i;:::-;2608:39;;2666:35;2697:2;2686:9;2682:18;2666:35;:::i;2712:254::-;2780:6;2788;2841:2;2829:9;2820:7;2816:23;2812:32;2809:52;;;2857:1;2854;2847:12;2809:52;2880:29;2899:9;2880:29;:::i;:::-;2870:39;2956:2;2941:18;;;;2928:32;;-1:-1:-1;;;2712:254:1:o;2971:180::-;3027:6;3080:2;3068:9;3059:7;3055:23;3051:32;3048:52;;;3096:1;3093;3086:12;3048:52;3119:26;3135:9;3119:26;:::i;3156:245::-;3214:6;3267:2;3255:9;3246:7;3242:23;3238:32;3235:52;;;3283:1;3280;3273:12;3235:52;3322:9;3309:23;3341:30;3365:5;3341:30;:::i;3406:249::-;3475:6;3528:2;3516:9;3507:7;3503:23;3499:32;3496:52;;;3544:1;3541;3534:12;3496:52;3576:9;3570:16;3595:30;3619:5;3595:30;:::i;3660:450::-;3729:6;3782:2;3770:9;3761:7;3757:23;3753:32;3750:52;;;3798:1;3795;3788:12;3750:52;3838:9;3825:23;3871:18;3863:6;3860:30;3857:50;;;3903:1;3900;3893:12;3857:50;3926:22;;3979:4;3971:13;;3967:27;-1:-1:-1;3957:55:1;;4008:1;4005;3998:12;3957:55;4031:73;4096:7;4091:2;4078:16;4073:2;4069;4065:11;4031:73;:::i;4115:180::-;4174:6;4227:2;4215:9;4206:7;4202:23;4198:32;4195:52;;;4243:1;4240;4233:12;4195:52;-1:-1:-1;4266:23:1;;4115:180;-1:-1:-1;4115:180:1:o;4300:257::-;4341:3;4379:5;4373:12;4406:6;4401:3;4394:19;4422:63;4478:6;4471:4;4466:3;4462:14;4455:4;4448:5;4444:16;4422:63;:::i;:::-;4539:2;4518:15;-1:-1:-1;;4514:29:1;4505:39;;;;4546:4;4501:50;;4300:257;-1:-1:-1;;4300:257:1:o;4562:185::-;4604:3;4642:5;4636:12;4657:52;4702:6;4697:3;4690:4;4683:5;4679:16;4657:52;:::i;:::-;4725:16;;;;;4562:185;-1:-1:-1;;4562:185:1:o;4870:1301::-;5147:3;5176:1;5209:6;5203:13;5239:3;5261:1;5289:9;5285:2;5281:18;5271:28;;5349:2;5338:9;5334:18;5371;5361:61;;5415:4;5407:6;5403:17;5393:27;;5361:61;5441:2;5489;5481:6;5478:14;5458:18;5455:38;5452:165;;;-1:-1:-1;;;5516:33:1;;5572:4;5569:1;5562:15;5602:4;5523:3;5590:17;5452:165;5633:18;5660:104;;;;5778:1;5773:320;;;;5626:467;;5660:104;-1:-1:-1;;5693:24:1;;5681:37;;5738:16;;;;-1:-1:-1;5660:104:1;;5773:320;11047:1;11040:14;;;11084:4;11071:18;;5868:1;5882:165;5896:6;5893:1;5890:13;5882:165;;;5974:14;;5961:11;;;5954:35;6017:16;;;;5911:10;;5882:165;;;5886:3;;6076:6;6071:3;6067:16;6060:23;;5626:467;;;;;;;6109:56;6134:30;6160:3;6152:6;6134:30;:::i;:::-;-1:-1:-1;;;4812:20:1;;4857:1;4848:11;;4752:113;6109:56;6102:63;4870:1301;-1:-1:-1;;;;;4870:1301:1:o;6594:488::-;-1:-1:-1;;;;;6863:15:1;;;6845:34;;6915:15;;6910:2;6895:18;;6888:43;6962:2;6947:18;;6940:34;;;7010:3;7005:2;6990:18;;6983:31;;;6788:4;;7031:45;;7056:19;;7048:6;7031:45;:::i;:::-;7023:53;6594:488;-1:-1:-1;;;;;;6594:488:1:o;7279:219::-;7428:2;7417:9;7410:21;7391:4;7448:44;7488:2;7477:9;7473:18;7465:6;7448:44;:::i;10086:356::-;10288:2;10270:21;;;10307:18;;;10300:30;10366:34;10361:2;10346:18;;10339:62;10433:2;10418:18;;10086:356::o;11100:128::-;11140:3;11171:1;11167:6;11164:1;11161:13;11158:39;;;11177:18;;:::i;:::-;-1:-1:-1;11213:9:1;;11100:128::o;11233:120::-;11273:1;11299;11289:35;;11304:18;;:::i;:::-;-1:-1:-1;11338:9:1;;11233:120::o;11358:168::-;11398:7;11464:1;11460;11456:6;11452:14;11449:1;11446:21;11441:1;11434:9;11427:17;11423:45;11420:71;;;11471:18;;:::i;:::-;-1:-1:-1;11511:9:1;;11358:168::o;11531:125::-;11571:4;11599:1;11596;11593:8;11590:34;;;11604:18;;:::i;:::-;-1:-1:-1;11641:9:1;;11531:125::o;11661:258::-;11733:1;11743:113;11757:6;11754:1;11751:13;11743:113;;;11833:11;;;11827:18;11814:11;;;11807:39;11779:2;11772:10;11743:113;;;11874:6;11871:1;11868:13;11865:48;;;-1:-1:-1;;11909:1:1;11891:16;;11884:27;11661:258::o;11924:380::-;12003:1;11999:12;;;;12046;;;12067:61;;12121:4;12113:6;12109:17;12099:27;;12067:61;12174:2;12166:6;12163:14;12143:18;12140:38;12137:161;;;12220:10;12215:3;12211:20;12208:1;12201:31;12255:4;12252:1;12245:15;12283:4;12280:1;12273:15;12137:161;;11924:380;;;:::o;12309:135::-;12348:3;-1:-1:-1;;12369:17:1;;12366:43;;;12389:18;;:::i;:::-;-1:-1:-1;12436:1:1;12425:13;;12309:135::o;12449:112::-;12481:1;12507;12497:35;;12512:18;;:::i;:::-;-1:-1:-1;12546:9:1;;12449:112::o;12566:127::-;12627:10;12622:3;12618:20;12615:1;12608:31;12658:4;12655:1;12648:15;12682:4;12679:1;12672:15;12698:127;12759:10;12754:3;12750:20;12747:1;12740:31;12790:4;12787:1;12780:15;12814:4;12811:1;12804:15;12830:127;12891:10;12886:3;12882:20;12879:1;12872:31;12922:4;12919:1;12912:15;12946:4;12943:1;12936:15;12962:127;13023:10;13018:3;13014:20;13011:1;13004:31;13054:4;13051:1;13044:15;13078:4;13075:1;13068:15;13094:131;-1:-1:-1;;;;;;13168:32:1;;13158:43;;13148:71;;13215:1;13212;13205:12

Swarm Source

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