ETH Price: $2,333.64 (-0.36%)

Token

Shitcoin Memorabilia (SM)
 

Overview

Max Total Supply

5,555 SM

Holders

355

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Balance
20 SM
0x1821F9b27f5Ed419890De1F4Ce36870fdC6390dE
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:
ShitcoinMemorabilia

Compiler Version
v0.8.15+commit.e14f2714

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion
File 1 of 1 : nft.sol
// SPDX-License-Identifier: MIT

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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

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


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

pragma solidity ^0.8.1;

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

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;


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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

// File: contracts/new.sol




pragma solidity ^0.8.4;








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 1;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId, owner);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfers(from, to, tokenId, 1);

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

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

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

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

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

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

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

        address from = prevOwnership.addr;

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

            if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        }

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

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

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

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

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

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

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

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

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

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

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

abstract contract Ownable is Context {
    address private _owner;

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

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

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

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

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

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

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

// File: closedsea/src/OperatorFilterer.sol


pragma solidity ^0.8.4;

/// @notice Optimized and flexible operator filterer to abide to OpenSea's
/// mandatory on-chain royalty enforcement in order for new collections to
/// receive royalties.
/// For more information, see:
/// See: https://github.com/ProjectOpenSea/operator-filter-registry
abstract contract OperatorFilterer {
    /// @dev The default OpenSea operator blocklist subscription.
    address internal constant _DEFAULT_SUBSCRIPTION = 0x3cc6CddA760b79bAfa08dF41ECFA224f810dCeB6;

    /// @dev The OpenSea operator filter registry.
    address internal constant _OPERATOR_FILTER_REGISTRY = 0x000000000000AAeB6D7670E522A718067333cd4E;

    /// @dev Registers the current contract to OpenSea's operator filter,
    /// and subscribe to the default OpenSea operator blocklist.
    /// Note: Will not revert nor update existing settings for repeated registration.
    function _registerForOperatorFiltering() internal virtual {
        _registerForOperatorFiltering(_DEFAULT_SUBSCRIPTION, true);
    }

    /// @dev Registers the current contract to OpenSea's operator filter.
    /// Note: Will not revert nor update existing settings for repeated registration.
    function _registerForOperatorFiltering(address subscriptionOrRegistrantToCopy, bool subscribe)
        internal
        virtual
    {
        /// @solidity memory-safe-assembly
        assembly {
            let functionSelector := 0x7d3e3dbe // `registerAndSubscribe(address,address)`.

            // Clean the upper 96 bits of `subscriptionOrRegistrantToCopy` in case they are dirty.
            subscriptionOrRegistrantToCopy := shr(96, shl(96, subscriptionOrRegistrantToCopy))

            for {} iszero(subscribe) {} {
                if iszero(subscriptionOrRegistrantToCopy) {
                    functionSelector := 0x4420e486 // `register(address)`.
                    break
                }
                functionSelector := 0xa0af2903 // `registerAndCopyEntries(address,address)`.
                break
            }
            // Store the function selector.
            mstore(0x00, shl(224, functionSelector))
            // Store the `address(this)`.
            mstore(0x04, address())
            // Store the `subscriptionOrRegistrantToCopy`.
            mstore(0x24, subscriptionOrRegistrantToCopy)
            // Register into the registry.
            if iszero(call(gas(), _OPERATOR_FILTER_REGISTRY, 0, 0x00, 0x44, 0x00, 0x04)) {
                // If the function selector has not been overwritten,
                // it is an out-of-gas error.
                if eq(shr(224, mload(0x00)), functionSelector) {
                    // To prevent gas under-estimation.
                    revert(0, 0)
                }
            }
            // Restore the part of the free memory pointer that was overwritten,
            // which is guaranteed to be zero, because of Solidity's memory size limits.
            mstore(0x24, 0)
        }
    }

    /// @dev Modifier to guard a function and revert if the caller is a blocked operator.
    modifier onlyAllowedOperator(address from) virtual {
        if (from != msg.sender) {
            if (!_isPriorityOperator(msg.sender)) {
                if (_operatorFilteringEnabled()) _revertIfBlocked(msg.sender);
            }
        }
        _;
    }

    /// @dev Modifier to guard a function from approving a blocked operator..
    modifier onlyAllowedOperatorApproval(address operator) virtual {
        if (!_isPriorityOperator(operator)) {
            if (_operatorFilteringEnabled()) _revertIfBlocked(operator);
        }
        _;
    }

    /// @dev Helper function that reverts if the `operator` is blocked by the registry.
    function _revertIfBlocked(address operator) private view {
        /// @solidity memory-safe-assembly
        assembly {
            // Store the function selector of `isOperatorAllowed(address,address)`,
            // shifted left by 6 bytes, which is enough for 8tb of memory.
            // We waste 6-3 = 3 bytes to save on 6 runtime gas (PUSH1 0x224 SHL).
            mstore(0x00, 0xc6171134001122334455)
            // Store the `address(this)`.
            mstore(0x1a, address())
            // Store the `operator`.
            mstore(0x3a, operator)

            // `isOperatorAllowed` always returns true if it does not revert.
            if iszero(staticcall(gas(), _OPERATOR_FILTER_REGISTRY, 0x16, 0x44, 0x00, 0x00)) {
                // Bubble up the revert if the staticcall reverts.
                returndatacopy(0x00, 0x00, returndatasize())
                revert(0x00, returndatasize())
            }

            // We'll skip checking if `from` is inside the blacklist.
            // Even though that can block transferring out of wrapper contracts,
            // we don't want tokens to be stuck.

            // Restore the part of the free memory pointer that was overwritten,
            // which is guaranteed to be zero, if less than 8tb of memory is used.
            mstore(0x3a, 0)
        }
    }

    /// @dev For deriving contracts to override, so that operator filtering
    /// can be turned on / off.
    /// Returns true by default.
    function _operatorFilteringEnabled() internal view virtual returns (bool) {
        return true;
    }

    /// @dev For deriving contracts to override, so that preferred marketplaces can
    /// skip operator filtering, helping users save gas.
    /// Returns false for all inputs by default.
    function _isPriorityOperator(address) internal view virtual returns (bool) {
        return false;
    }
}


    pragma solidity ^0.8.13;
    
    contract ShitcoinMemorabilia  is ERC721A, Ownable, OperatorFilterer {
    using Strings for uint256;


  string private uriPrefix = "ipfs://bafybeihyh2bn5id4rolug6xg5xrcoogepmgvhw2gulxjyirliendvmlrtm/";
  string private uriSuffix = ".json";
  string private hiddenURL;

  
  

  uint256 public cost = 0.001 ether;
 
  

  uint16 public maxSupply = 5555;
  uint8 public maxMintAmountPerTx = 20;
   uint8 public maxMintAmountPerWallet = 20;
    uint8 public maxFreeMintAmountPerWallet = 2;
    uint256 public freeNFTAlreadyMinted = 0;
     uint256 public  NUM_FREE_MINTS = 5555;
     bool public operatorFilteringEnabled;
                                                             
 
  bool public paused = true;
  bool public reveal = true;


 
  
  
 
  

    constructor(
    string memory _tokenName,
    string memory _tokenSymbol
   
  ) ERC721A(_tokenName, _tokenSymbol) {
     _registerForOperatorFiltering();
        operatorFilteringEnabled = true;
  }

   modifier callerIsUser() {
    require(tx.origin == msg.sender, "The caller is another contract");
    _;
  }
  
 
 
  function mint(uint256 _mintAmount)
      external
      payable
      callerIsUser
  {
    require(!paused, "The contract is paused!");
    require(totalSupply() + _mintAmount < maxSupply + 1, "No more");
     require (balanceOf(msg.sender) + _mintAmount <= maxMintAmountPerWallet, "max NFT per address exceeded");
    

    if(freeNFTAlreadyMinted + _mintAmount > NUM_FREE_MINTS){
        require(
            (cost * _mintAmount) <= msg.value,
            "Incorrect ETH value sent"
        );
    }
     else {
        if (balanceOf(msg.sender) + _mintAmount > maxFreeMintAmountPerWallet) {
        require(
            (cost * _mintAmount) <= msg.value,
            "Incorrect ETH value sent"
        );
        require(
            _mintAmount <= maxMintAmountPerTx,
            "Max mints per transaction exceeded"
        );
        } else {
            require(
                _mintAmount <= maxFreeMintAmountPerWallet,
                "Max mints per transaction exceeded"
            );
            freeNFTAlreadyMinted += _mintAmount;
        }
    }
    _safeMint(msg.sender, _mintAmount);
  }

  function Reserve(uint16 _mintAmount, address _receiver) external onlyOwner {
     uint16 totalSupply = uint16(totalSupply());
    require(totalSupply + _mintAmount <= maxSupply, "Excedes max supply.");
     _safeMint(_receiver , _mintAmount);
     delete _mintAmount;
     delete _receiver;
     delete totalSupply;
  }

  function Airdrop(uint8 _amountPerAddress, address[] calldata addresses) external onlyOwner {
     uint16 totalSupply = uint16(totalSupply());
     uint totalAmount =   _amountPerAddress * addresses.length;
    require(totalSupply + totalAmount <= maxSupply, "Excedes max supply.");
     for (uint256 i = 0; i < addresses.length; i++) {
            _safeMint(addresses[i], _amountPerAddress);
        }

     delete _amountPerAddress;
     delete totalSupply;
  }

 

  function setMaxSupply(uint16 _maxSupply) external onlyOwner {
      maxSupply = _maxSupply;
  }



   
  function tokenURI(uint256 _tokenId)
    public
    view
    virtual
    override
    returns (string memory)
  {
    require(
      _exists(_tokenId),
      "ERC721Metadata: URI query for nonexistent token"
    );
    
  
if ( reveal == false)
{
    return hiddenURL;
}
    

    string memory currentBaseURI = _baseURI();
    return bytes(currentBaseURI).length > 0
        ? string(abi.encodePacked(currentBaseURI, _tokenId.toString() ,uriSuffix))
        : "";
  }


 function setFreeMaxLimitPerAddress(uint8 _limit) external onlyOwner{
    maxFreeMintAmountPerWallet = _limit;
   delete _limit;

}

    
   function seturiSuffix(string memory _uriSuffix) external onlyOwner {
    uriSuffix = _uriSuffix;
  }


  function setUriPrefix(string memory _uriPrefix) external onlyOwner {
    uriPrefix = _uriPrefix;
  }
   function setHiddenUri(string memory _uriPrefix) external onlyOwner {
    hiddenURL = _uriPrefix;
  }
function setNumFreeMints(uint256 _numfreemints)
      external
      onlyOwner
  {
      NUM_FREE_MINTS = _numfreemints;
  }

  function setPaused() external onlyOwner {
    paused = !paused;

  }

  function setCost(uint _cost) external onlyOwner{
      cost = _cost;

  }

 function setRevealed() external onlyOwner{
     reveal = !reveal;
 }

  function setMaxMintAmountPerTx(uint8 _maxtx) external onlyOwner{
      maxMintAmountPerTx = _maxtx;

  }

 

  function withdraw() public onlyOwner  {
    // This will transfer the remaining contract balance to the owner.
    // Do not remove this otherwise you will not be able to withdraw the funds.
    // =============================================================================
    (bool os, ) = payable(owner()).call{value: address(this).balance}('');
    require(os);
    // =============================================================================
  }


  function _baseURI() internal view  override returns (string memory) {
    return uriPrefix;
  }
    function transferFrom(address from, address to, uint256 tokenId) public override onlyAllowedOperator(from) {
    ERC721A.transferFrom(from, to, tokenId);
  }

  function safeTransferFrom(address from, address to, uint256 tokenId) public override onlyAllowedOperator(from) {
    ERC721A.safeTransferFrom(from, to, tokenId);
  }

  function safeTransferFrom(address from, address to, uint256 tokenId, bytes memory data)
    public
    override
    onlyAllowedOperator(from)
  {
    ERC721A.safeTransferFrom(from, to, tokenId, data);
  }
     function setOperatorFilteringEnabled(bool value) public onlyOwner {
        operatorFilteringEnabled = value;
    }

    function _operatorFilteringEnabled() internal view override returns (bool) {
        return operatorFilteringEnabled;
    }
}

Settings
{
  "optimizer": {
    "enabled": true,
    "runs": 200
  },
  "outputSelection": {
    "*": {
      "*": [
        "evm.bytecode",
        "evm.deployedBytecode",
        "devdoc",
        "userdoc",
        "metadata",
        "abi"
      ]
    }
  }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_tokenName","type":"string"},{"internalType":"string","name":"_tokenSymbol","type":"string"}],"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":[{"internalType":"uint8","name":"_amountPerAddress","type":"uint8"},{"internalType":"address[]","name":"addresses","type":"address[]"}],"name":"Airdrop","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"NUM_FREE_MINTS","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint16","name":"_mintAmount","type":"uint16"},{"internalType":"address","name":"_receiver","type":"address"}],"name":"Reserve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"cost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"freeNFTAlreadyMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxFreeMintAmountPerWallet","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintAmountPerTx","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintAmountPerWallet","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"operatorFilteringEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"reveal","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","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":"uint256","name":"_cost","type":"uint256"}],"name":"setCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint8","name":"_limit","type":"uint8"}],"name":"setFreeMaxLimitPerAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uriPrefix","type":"string"}],"name":"setHiddenUri","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint8","name":"_maxtx","type":"uint8"}],"name":"setMaxMintAmountPerTx","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint16","name":"_maxSupply","type":"uint16"}],"name":"setMaxSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_numfreemints","type":"uint256"}],"name":"setNumFreeMints","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"value","type":"bool"}],"name":"setOperatorFilteringEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"setPaused","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"setRevealed","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uriPrefix","type":"string"}],"name":"setUriPrefix","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uriSuffix","type":"string"}],"name":"seturiSuffix","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

610100604052604360808181529062002a8760a039600990620000239082620002a1565b50604080518082019091526005815264173539b7b760d91b6020820152600a906200004f9082620002a1565b5066038d7ea4c68000600c55600d805464ffffffffff19166402141415b31790556000600e556115b3600f556010805462ffff001916620101001790553480156200009957600080fd5b5060405162002aca38038062002aca833981016040819052620000bc9162000424565b81816002620000cc8382620002a1565b506003620000db8282620002a1565b5050600160005550620000ee336200010d565b620000f86200015f565b50506010805460ff191660011790556200048e565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b62000180733cc6cdda760b79bafa08df41ecfa224f810dceb6600162000182565b565b6001600160a01b0390911690637d3e3dbe81620001b25782620001ab5750634420e486620001b2565b5063a0af29035b8060e01b60005230600452826024526004600060446000806daaeb6d7670e522a718067333cd4e5af1620001f2578060005160e01c03620001f257600080fd5b5060006024525050565b634e487b7160e01b600052604160045260246000fd5b600181811c908216806200022757607f821691505b6020821081036200024857634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156200029c57600081815260208120601f850160051c81016020861015620002775750805b601f850160051c820191505b81811015620002985782815560010162000283565b5050505b505050565b81516001600160401b03811115620002bd57620002bd620001fc565b620002d581620002ce845462000212565b846200024e565b602080601f8311600181146200030d5760008415620002f45750858301515b600019600386901b1c1916600185901b17855562000298565b600085815260208120601f198616915b828110156200033e578886015182559484019460019091019084016200031d565b50858210156200035d5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b600082601f8301126200037f57600080fd5b81516001600160401b03808211156200039c576200039c620001fc565b604051601f8301601f19908116603f01168101908282118183101715620003c757620003c7620001fc565b81604052838152602092508683858801011115620003e457600080fd5b600091505b83821015620004085785820183015181830184015290820190620003e9565b838211156200041a5760008385830101525b9695505050505050565b600080604083850312156200043857600080fd5b82516001600160401b03808211156200045057600080fd5b6200045e868387016200036d565b935060208501519150808211156200047557600080fd5b5062000484858286016200036d565b9150509250929050565b6125e9806200049e6000396000f3fe6080604052600436106102515760003560e01c806370a0823111610139578063aa062290116100b6578063cffb6e201161007a578063cffb6e20146106c1578063d5abeb01146106e1578063e985e9c51461070f578063f2fde38b14610758578063f8bf517214610778578063fb796e6c1461079a57600080fd5b8063aa06229014610620578063b7c0b8e814610640578063b88d4fde14610660578063bc951b9114610680578063c87b56dd146106a157600080fd5b806395d89b41116100fd57806395d89b41146105a2578063982d669e146105b7578063a0712d68146105cd578063a22cb465146105e0578063a475b5dd1461060057600080fd5b806370a08231146104fd578063715018a61461051d5780637ec4a659146105325780638da5cb5b1461055257806394354fd01461057057600080fd5b806323b872dd116101d25780633ccfd60b116101965780633ccfd60b1461044957806342842e0e1461045e57806344a0d68a1461047e5780634d9c18481461049e5780635c975abb146104be5780636352211e146104dd57600080fd5b806323b872dd146103bf5780632f6f98e1146103df578063305ae775146103ff57806337a66d851461041f5780633bd649681461043457600080fd5b80630a00ae83116102195780630a00ae83146103275780631067fcc71461034757806313faede61461036757806318160ddd1461038b578063193ad7b4146103a957600080fd5b806301ffc9a71461025657806306421c2f1461028b57806306fdde03146102ad578063081812fc146102cf578063095ea7b314610307575b600080fd5b34801561026257600080fd5b50610276610271366004611df9565b6107b4565b60405190151581526020015b60405180910390f35b34801561029757600080fd5b506102ab6102a6366004611e2d565b610806565b005b3480156102b957600080fd5b506102c2610851565b6040516102829190611ea0565b3480156102db57600080fd5b506102ef6102ea366004611eb3565b6108e3565b6040516001600160a01b039091168152602001610282565b34801561031357600080fd5b506102ab610322366004611ee3565b610927565b34801561033357600080fd5b506102ab610342366004611eb3565b6109b4565b34801561035357600080fd5b506102ab610362366004611f99565b6109e3565b34801561037357600080fd5b5061037d600c5481565b604051908152602001610282565b34801561039757600080fd5b5061037d600154600054036000190190565b3480156103b557600080fd5b5061037d600e5481565b3480156103cb57600080fd5b506102ab6103da366004611fe2565b610a1d565b3480156103eb57600080fd5b506102ab6103fa36600461201e565b610a53565b34801561040b57600080fd5b506102ab61041a366004611f99565b610afa565b34801561042b57600080fd5b506102ab610b30565b34801561044057600080fd5b506102ab610b77565b34801561045557600080fd5b506102ab610bc0565b34801561046a57600080fd5b506102ab610479366004611fe2565b610c5e565b34801561048a57600080fd5b506102ab610499366004611eb3565b610c8e565b3480156104aa57600080fd5b506102ab6104b9366004612062565b610cbd565b3480156104ca57600080fd5b5060105461027690610100900460ff1681565b3480156104e957600080fd5b506102ef6104f8366004611eb3565b610d09565b34801561050957600080fd5b5061037d61051836600461207d565b610d1b565b34801561052957600080fd5b506102ab610d6a565b34801561053e57600080fd5b506102ab61054d366004611f99565b610da0565b34801561055e57600080fd5b506008546001600160a01b03166102ef565b34801561057c57600080fd5b50600d546105909062010000900460ff1681565b60405160ff9091168152602001610282565b3480156105ae57600080fd5b506102c2610dd6565b3480156105c357600080fd5b5061037d600f5481565b6102ab6105db366004611eb3565b610de5565b3480156105ec57600080fd5b506102ab6105fb3660046120a8565b6110d2565b34801561060c57600080fd5b506010546102769062010000900460ff1681565b34801561062c57600080fd5b506102ab61063b366004612062565b611167565b34801561064c57600080fd5b506102ab61065b3660046120d2565b6111af565b34801561066c57600080fd5b506102ab61067b3660046120ed565b6111ec565b34801561068c57600080fd5b50600d54610590906301000000900460ff1681565b3480156106ad57600080fd5b506102c26106bc366004611eb3565b611224565b3480156106cd57600080fd5b506102ab6106dc366004612169565b611399565b3480156106ed57600080fd5b50600d546106fc9061ffff1681565b60405161ffff9091168152602001610282565b34801561071b57600080fd5b5061027661072a3660046121ef565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b34801561076457600080fd5b506102ab61077336600461207d565b61149d565b34801561078457600080fd5b50600d5461059090640100000000900460ff1681565b3480156107a657600080fd5b506010546102769060ff1681565b60006001600160e01b031982166380ac58cd60e01b14806107e557506001600160e01b03198216635b5e139f60e01b145b8061080057506301ffc9a760e01b6001600160e01b03198316145b92915050565b6008546001600160a01b031633146108395760405162461bcd60e51b81526004016108309061220b565b60405180910390fd5b600d805461ffff191661ffff92909216919091179055565b60606002805461086090612240565b80601f016020809104026020016040519081016040528092919081815260200182805461088c90612240565b80156108d95780601f106108ae576101008083540402835291602001916108d9565b820191906000526020600020905b8154815290600101906020018083116108bc57829003601f168201915b5050505050905090565b60006108ee82611535565b61090b576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b600061093282610d09565b9050806001600160a01b0316836001600160a01b0316036109665760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b038216148015906109865750610984813361072a565b155b156109a4576040516367d9dca160e11b815260040160405180910390fd5b6109af83838361156e565b505050565b6008546001600160a01b031633146109de5760405162461bcd60e51b81526004016108309061220b565b600f55565b6008546001600160a01b03163314610a0d5760405162461bcd60e51b81526004016108309061220b565b600b610a1982826122c0565b5050565b826001600160a01b0381163314610a425760105460ff1615610a4257610a42336115ca565b610a4d84848461160e565b50505050565b6008546001600160a01b03163314610a7d5760405162461bcd60e51b81526004016108309061220b565b6000610a90600154600054036000190190565b600d5490915061ffff16610aa48483612396565b61ffff161115610aec5760405162461bcd60e51b815260206004820152601360248201527222bc31b2b232b99036b0bc1039bab838363c9760691b6044820152606401610830565b6109af828461ffff16611619565b6008546001600160a01b03163314610b245760405162461bcd60e51b81526004016108309061220b565b600a610a1982826122c0565b6008546001600160a01b03163314610b5a5760405162461bcd60e51b81526004016108309061220b565b6010805461ff001981166101009182900460ff1615909102179055565b6008546001600160a01b03163314610ba15760405162461bcd60e51b81526004016108309061220b565b6010805462ff0000198116620100009182900460ff1615909102179055565b6008546001600160a01b03163314610bea5760405162461bcd60e51b81526004016108309061220b565b6000610bfe6008546001600160a01b031690565b6001600160a01b03164760405160006040518083038185875af1925050503d8060008114610c48576040519150601f19603f3d011682016040523d82523d6000602084013e610c4d565b606091505b5050905080610c5b57600080fd5b50565b826001600160a01b0381163314610c835760105460ff1615610c8357610c83336115ca565b610a4d848484611633565b6008546001600160a01b03163314610cb85760405162461bcd60e51b81526004016108309061220b565b600c55565b6008546001600160a01b03163314610ce75760405162461bcd60e51b81526004016108309061220b565b600d805460ff9092166401000000000264ff0000000019909216919091179055565b6000610d148261164e565b5192915050565b60006001600160a01b038216610d44576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b6008546001600160a01b03163314610d945760405162461bcd60e51b81526004016108309061220b565b610d9e6000611777565b565b6008546001600160a01b03163314610dca5760405162461bcd60e51b81526004016108309061220b565b6009610a1982826122c0565b60606003805461086090612240565b323314610e345760405162461bcd60e51b815260206004820152601e60248201527f5468652063616c6c657220697320616e6f7468657220636f6e747261637400006044820152606401610830565b601054610100900460ff1615610e8c5760405162461bcd60e51b815260206004820152601760248201527f54686520636f6e747261637420697320706175736564210000000000000000006044820152606401610830565b600d54610e9e9061ffff166001612396565b61ffff1681610eb4600154600054036000190190565b610ebe91906123bc565b10610ef55760405162461bcd60e51b81526020600482015260076024820152664e6f206d6f726560c81b6044820152606401610830565b600d546301000000900460ff1681610f0c33610d1b565b610f1691906123bc565b1115610f645760405162461bcd60e51b815260206004820152601c60248201527f6d6178204e4654207065722061646472657373206578636565646564000000006044820152606401610830565b600f5481600e54610f7591906123bc565b1115610fd8573481600c54610f8a91906123d4565b1115610fd35760405162461bcd60e51b8152602060048201526018602482015277125b98dbdc9c9958dd08115512081d985b1d59481cd95b9d60421b6044820152606401610830565b6110c8565b600d54640100000000900460ff1681610ff033610d1b565b610ffa91906123bc565b1115611083573481600c5461100f91906123d4565b11156110585760405162461bcd60e51b8152602060048201526018602482015277125b98dbdc9c9958dd08115512081d985b1d59481cd95b9d60421b6044820152606401610830565b600d5462010000900460ff16811115610fd35760405162461bcd60e51b8152600401610830906123f3565b600d54640100000000900460ff168111156110b05760405162461bcd60e51b8152600401610830906123f3565b80600e60008282546110c291906123bc565b90915550505b610c5b3382611619565b336001600160a01b038316036110fb5760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6008546001600160a01b031633146111915760405162461bcd60e51b81526004016108309061220b565b600d805460ff909216620100000262ff000019909216919091179055565b6008546001600160a01b031633146111d95760405162461bcd60e51b81526004016108309061220b565b6010805460ff1916911515919091179055565b836001600160a01b03811633146112115760105460ff161561121157611211336115ca565b61121d858585856117c9565b5050505050565b606061122f82611535565b6112935760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610830565b60105462010000900460ff16151560000361133a57600b80546112b590612240565b80601f01602080910402602001604051908101604052809291908181526020018280546112e190612240565b801561132e5780601f106113035761010080835404028352916020019161132e565b820191906000526020600020905b81548152906001019060200180831161131157829003601f168201915b50505050509050919050565b6000611344611814565b905060008151116113645760405180602001604052806000815250611392565b8061136e84611823565b600a60405160200161138293929190612435565b6040516020818303038152906040525b9392505050565b6008546001600160a01b031633146113c35760405162461bcd60e51b81526004016108309061220b565b60006113d6600154600054036000190190565b905060006113e78360ff87166123d4565b600d5490915061ffff9081169061140190839085166123bc565b11156114455760405162461bcd60e51b815260206004820152601360248201527222bc31b2b232b99036b0bc1039bab838363c9760691b6044820152606401610830565b60005b8381101561149557611483858583818110611465576114656124d5565b905060200201602081019061147a919061207d565b8760ff16611619565b8061148d816124eb565b915050611448565b505050505050565b6008546001600160a01b031633146114c75760405162461bcd60e51b81526004016108309061220b565b6001600160a01b03811661152c5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610830565b610c5b81611777565b600081600111158015611549575060005482105b8015610800575050600090815260046020526040902054600160e01b900460ff161590565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b69c617113400112233445560005230601a5280603a52600080604460166daaeb6d7670e522a718067333cd4e5afa611606573d6000803e3d6000fd5b6000603a5250565b6109af83838361192c565b610a19828260405180602001604052806000815250611b19565b6109af838383604051806020016040528060008152506111ec565b6040805160608101825260008082526020820181905291810191909152818060011115801561167e575060005481105b1561175e57600081815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b810467ffffffffffffffff1692820192909252600160e01b90910460ff1615159181018290529061175c5780516001600160a01b0316156116f2579392505050565b5060001901600081815260046020908152604091829020825160608101845290546001600160a01b038116808352600160a01b820467ffffffffffffffff1693830193909352600160e01b900460ff1615159281019290925215611757579392505050565b6116f2565b505b604051636f96cda160e11b815260040160405180910390fd5b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6117d484848461192c565b6001600160a01b0383163b151580156117f657506117f484848484611b26565b155b15610a4d576040516368d2bf6b60e11b815260040160405180910390fd5b60606009805461086090612240565b60608160000361184a5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611874578061185e816124eb565b915061186d9050600a8361251a565b915061184e565b60008167ffffffffffffffff81111561188f5761188f611f0d565b6040519080825280601f01601f1916602001820160405280156118b9576020820181803683370190505b5090505b8415611924576118ce60018361252e565b91506118db600a86612545565b6118e69060306123bc565b60f81b8183815181106118fb576118fb6124d5565b60200101906001600160f81b031916908160001a90535061191d600a8661251a565b94506118bd565b949350505050565b60006119378261164e565b9050836001600160a01b031681600001516001600160a01b03161461196e5760405162a1148160e81b815260040160405180910390fd5b6000336001600160a01b038616148061198c575061198c853361072a565b806119a757503361199c846108e3565b6001600160a01b0316145b9050806119c757604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b0384166119ee57604051633a954ecd60e21b815260040160405180910390fd5b6119fa6000848761156e565b6001600160a01b038581166000908152600560209081526040808320805467ffffffffffffffff1980821667ffffffffffffffff92831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600490945282852080546001600160e01b031916909417600160a01b42909216919091021783558701808452922080549193909116611ad0576000548214611ad0578054602086015167ffffffffffffffff16600160a01b026001600160e01b03199091166001600160a01b038a16171781555b50505082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461121d565b6109af8383836001611c11565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a0290611b5b903390899088908890600401612559565b6020604051808303816000875af1925050508015611b96575060408051601f3d908101601f19168201909252611b9391810190612596565b60015b611bf4573d808015611bc4576040519150601f19603f3d011682016040523d82523d6000602084013e611bc9565b606091505b508051600003611bec576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050949350505050565b6000546001600160a01b038516611c3a57604051622e076360e81b815260040160405180910390fd5b83600003611c5b5760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038516600081815260056020908152604080832080546fffffffffffffffffffffffffffffffff19811667ffffffffffffffff8083168c0181169182176801000000000000000067ffffffffffffffff1990941690921783900481168c01811690920217909155858452600490925290912080546001600160e01b031916909217600160a01b429092169190910217905580808501838015611d0d57506001600160a01b0387163b15155b15611d95575b60405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4611d5e6000888480600101955088611b26565b611d7b576040516368d2bf6b60e11b815260040160405180910390fd5b808203611d13578260005414611d9057600080fd5b611dda565b5b6040516001830192906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4808203611d96575b5060005561121d565b6001600160e01b031981168114610c5b57600080fd5b600060208284031215611e0b57600080fd5b813561139281611de3565b803561ffff81168114611e2857600080fd5b919050565b600060208284031215611e3f57600080fd5b61139282611e16565b60005b83811015611e63578181015183820152602001611e4b565b83811115610a4d5750506000910152565b60008151808452611e8c816020860160208601611e48565b601f01601f19169290920160200192915050565b6020815260006113926020830184611e74565b600060208284031215611ec557600080fd5b5035919050565b80356001600160a01b0381168114611e2857600080fd5b60008060408385031215611ef657600080fd5b611eff83611ecc565b946020939093013593505050565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff80841115611f3e57611f3e611f0d565b604051601f8501601f19908116603f01168101908282118183101715611f6657611f66611f0d565b81604052809350858152868686011115611f7f57600080fd5b858560208301376000602087830101525050509392505050565b600060208284031215611fab57600080fd5b813567ffffffffffffffff811115611fc257600080fd5b8201601f81018413611fd357600080fd5b61192484823560208401611f23565b600080600060608486031215611ff757600080fd5b61200084611ecc565b925061200e60208501611ecc565b9150604084013590509250925092565b6000806040838503121561203157600080fd5b61203a83611e16565b915061204860208401611ecc565b90509250929050565b803560ff81168114611e2857600080fd5b60006020828403121561207457600080fd5b61139282612051565b60006020828403121561208f57600080fd5b61139282611ecc565b80358015158114611e2857600080fd5b600080604083850312156120bb57600080fd5b6120c483611ecc565b915061204860208401612098565b6000602082840312156120e457600080fd5b61139282612098565b6000806000806080858703121561210357600080fd5b61210c85611ecc565b935061211a60208601611ecc565b925060408501359150606085013567ffffffffffffffff81111561213d57600080fd5b8501601f8101871361214e57600080fd5b61215d87823560208401611f23565b91505092959194509250565b60008060006040848603121561217e57600080fd5b61218784612051565b9250602084013567ffffffffffffffff808211156121a457600080fd5b818601915086601f8301126121b857600080fd5b8135818111156121c757600080fd5b8760208260051b85010111156121dc57600080fd5b6020830194508093505050509250925092565b6000806040838503121561220257600080fd5b61203a83611ecc565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600181811c9082168061225457607f821691505b60208210810361227457634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156109af57600081815260208120601f850160051c810160208610156122a15750805b601f850160051c820191505b81811015611495578281556001016122ad565b815167ffffffffffffffff8111156122da576122da611f0d565b6122ee816122e88454612240565b8461227a565b602080601f831160018114612323576000841561230b5750858301515b600019600386901b1c1916600185901b178555611495565b600085815260208120601f198616915b8281101561235257888601518255948401946001909101908401612333565b50858210156123705787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b634e487b7160e01b600052601160045260246000fd5b600061ffff8083168185168083038211156123b3576123b3612380565b01949350505050565b600082198211156123cf576123cf612380565b500190565b60008160001904831182151516156123ee576123ee612380565b500290565b60208082526022908201527f4d6178206d696e747320706572207472616e73616374696f6e20657863656564604082015261195960f21b606082015260800190565b6000845160206124488285838a01611e48565b85519184019161245b8184848a01611e48565b855492019160009061246c81612240565b600182811680156124845760018114612499576124c5565b60ff19841687528215158302870194506124c5565b896000528560002060005b848110156124bd578154898201529083019087016124a4565b505082870194505b50929a9950505050505050505050565b634e487b7160e01b600052603260045260246000fd5b6000600182016124fd576124fd612380565b5060010190565b634e487b7160e01b600052601260045260246000fd5b60008261252957612529612504565b500490565b60008282101561254057612540612380565b500390565b60008261255457612554612504565b500690565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061258c90830184611e74565b9695505050505050565b6000602082840312156125a857600080fd5b815161139281611de356fea2646970667358221220998028171283327282f3fd9bd0ab1ed0f37c1583ee4b13b7cbbea0fc9c72ab7364736f6c634300080f0033697066733a2f2f6261667962656968796832626e35696434726f6c7567367867357872636f6f6765706d677668773267756c786a7969726c69656e64766d6c72746d2f00000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000000000000001453686974636f696e204d656d6f726162696c69610000000000000000000000000000000000000000000000000000000000000000000000000000000000000002534d000000000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106102515760003560e01c806370a0823111610139578063aa062290116100b6578063cffb6e201161007a578063cffb6e20146106c1578063d5abeb01146106e1578063e985e9c51461070f578063f2fde38b14610758578063f8bf517214610778578063fb796e6c1461079a57600080fd5b8063aa06229014610620578063b7c0b8e814610640578063b88d4fde14610660578063bc951b9114610680578063c87b56dd146106a157600080fd5b806395d89b41116100fd57806395d89b41146105a2578063982d669e146105b7578063a0712d68146105cd578063a22cb465146105e0578063a475b5dd1461060057600080fd5b806370a08231146104fd578063715018a61461051d5780637ec4a659146105325780638da5cb5b1461055257806394354fd01461057057600080fd5b806323b872dd116101d25780633ccfd60b116101965780633ccfd60b1461044957806342842e0e1461045e57806344a0d68a1461047e5780634d9c18481461049e5780635c975abb146104be5780636352211e146104dd57600080fd5b806323b872dd146103bf5780632f6f98e1146103df578063305ae775146103ff57806337a66d851461041f5780633bd649681461043457600080fd5b80630a00ae83116102195780630a00ae83146103275780631067fcc71461034757806313faede61461036757806318160ddd1461038b578063193ad7b4146103a957600080fd5b806301ffc9a71461025657806306421c2f1461028b57806306fdde03146102ad578063081812fc146102cf578063095ea7b314610307575b600080fd5b34801561026257600080fd5b50610276610271366004611df9565b6107b4565b60405190151581526020015b60405180910390f35b34801561029757600080fd5b506102ab6102a6366004611e2d565b610806565b005b3480156102b957600080fd5b506102c2610851565b6040516102829190611ea0565b3480156102db57600080fd5b506102ef6102ea366004611eb3565b6108e3565b6040516001600160a01b039091168152602001610282565b34801561031357600080fd5b506102ab610322366004611ee3565b610927565b34801561033357600080fd5b506102ab610342366004611eb3565b6109b4565b34801561035357600080fd5b506102ab610362366004611f99565b6109e3565b34801561037357600080fd5b5061037d600c5481565b604051908152602001610282565b34801561039757600080fd5b5061037d600154600054036000190190565b3480156103b557600080fd5b5061037d600e5481565b3480156103cb57600080fd5b506102ab6103da366004611fe2565b610a1d565b3480156103eb57600080fd5b506102ab6103fa36600461201e565b610a53565b34801561040b57600080fd5b506102ab61041a366004611f99565b610afa565b34801561042b57600080fd5b506102ab610b30565b34801561044057600080fd5b506102ab610b77565b34801561045557600080fd5b506102ab610bc0565b34801561046a57600080fd5b506102ab610479366004611fe2565b610c5e565b34801561048a57600080fd5b506102ab610499366004611eb3565b610c8e565b3480156104aa57600080fd5b506102ab6104b9366004612062565b610cbd565b3480156104ca57600080fd5b5060105461027690610100900460ff1681565b3480156104e957600080fd5b506102ef6104f8366004611eb3565b610d09565b34801561050957600080fd5b5061037d61051836600461207d565b610d1b565b34801561052957600080fd5b506102ab610d6a565b34801561053e57600080fd5b506102ab61054d366004611f99565b610da0565b34801561055e57600080fd5b506008546001600160a01b03166102ef565b34801561057c57600080fd5b50600d546105909062010000900460ff1681565b60405160ff9091168152602001610282565b3480156105ae57600080fd5b506102c2610dd6565b3480156105c357600080fd5b5061037d600f5481565b6102ab6105db366004611eb3565b610de5565b3480156105ec57600080fd5b506102ab6105fb3660046120a8565b6110d2565b34801561060c57600080fd5b506010546102769062010000900460ff1681565b34801561062c57600080fd5b506102ab61063b366004612062565b611167565b34801561064c57600080fd5b506102ab61065b3660046120d2565b6111af565b34801561066c57600080fd5b506102ab61067b3660046120ed565b6111ec565b34801561068c57600080fd5b50600d54610590906301000000900460ff1681565b3480156106ad57600080fd5b506102c26106bc366004611eb3565b611224565b3480156106cd57600080fd5b506102ab6106dc366004612169565b611399565b3480156106ed57600080fd5b50600d546106fc9061ffff1681565b60405161ffff9091168152602001610282565b34801561071b57600080fd5b5061027661072a3660046121ef565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b34801561076457600080fd5b506102ab61077336600461207d565b61149d565b34801561078457600080fd5b50600d5461059090640100000000900460ff1681565b3480156107a657600080fd5b506010546102769060ff1681565b60006001600160e01b031982166380ac58cd60e01b14806107e557506001600160e01b03198216635b5e139f60e01b145b8061080057506301ffc9a760e01b6001600160e01b03198316145b92915050565b6008546001600160a01b031633146108395760405162461bcd60e51b81526004016108309061220b565b60405180910390fd5b600d805461ffff191661ffff92909216919091179055565b60606002805461086090612240565b80601f016020809104026020016040519081016040528092919081815260200182805461088c90612240565b80156108d95780601f106108ae576101008083540402835291602001916108d9565b820191906000526020600020905b8154815290600101906020018083116108bc57829003601f168201915b5050505050905090565b60006108ee82611535565b61090b576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b600061093282610d09565b9050806001600160a01b0316836001600160a01b0316036109665760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b038216148015906109865750610984813361072a565b155b156109a4576040516367d9dca160e11b815260040160405180910390fd5b6109af83838361156e565b505050565b6008546001600160a01b031633146109de5760405162461bcd60e51b81526004016108309061220b565b600f55565b6008546001600160a01b03163314610a0d5760405162461bcd60e51b81526004016108309061220b565b600b610a1982826122c0565b5050565b826001600160a01b0381163314610a425760105460ff1615610a4257610a42336115ca565b610a4d84848461160e565b50505050565b6008546001600160a01b03163314610a7d5760405162461bcd60e51b81526004016108309061220b565b6000610a90600154600054036000190190565b600d5490915061ffff16610aa48483612396565b61ffff161115610aec5760405162461bcd60e51b815260206004820152601360248201527222bc31b2b232b99036b0bc1039bab838363c9760691b6044820152606401610830565b6109af828461ffff16611619565b6008546001600160a01b03163314610b245760405162461bcd60e51b81526004016108309061220b565b600a610a1982826122c0565b6008546001600160a01b03163314610b5a5760405162461bcd60e51b81526004016108309061220b565b6010805461ff001981166101009182900460ff1615909102179055565b6008546001600160a01b03163314610ba15760405162461bcd60e51b81526004016108309061220b565b6010805462ff0000198116620100009182900460ff1615909102179055565b6008546001600160a01b03163314610bea5760405162461bcd60e51b81526004016108309061220b565b6000610bfe6008546001600160a01b031690565b6001600160a01b03164760405160006040518083038185875af1925050503d8060008114610c48576040519150601f19603f3d011682016040523d82523d6000602084013e610c4d565b606091505b5050905080610c5b57600080fd5b50565b826001600160a01b0381163314610c835760105460ff1615610c8357610c83336115ca565b610a4d848484611633565b6008546001600160a01b03163314610cb85760405162461bcd60e51b81526004016108309061220b565b600c55565b6008546001600160a01b03163314610ce75760405162461bcd60e51b81526004016108309061220b565b600d805460ff9092166401000000000264ff0000000019909216919091179055565b6000610d148261164e565b5192915050565b60006001600160a01b038216610d44576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b6008546001600160a01b03163314610d945760405162461bcd60e51b81526004016108309061220b565b610d9e6000611777565b565b6008546001600160a01b03163314610dca5760405162461bcd60e51b81526004016108309061220b565b6009610a1982826122c0565b60606003805461086090612240565b323314610e345760405162461bcd60e51b815260206004820152601e60248201527f5468652063616c6c657220697320616e6f7468657220636f6e747261637400006044820152606401610830565b601054610100900460ff1615610e8c5760405162461bcd60e51b815260206004820152601760248201527f54686520636f6e747261637420697320706175736564210000000000000000006044820152606401610830565b600d54610e9e9061ffff166001612396565b61ffff1681610eb4600154600054036000190190565b610ebe91906123bc565b10610ef55760405162461bcd60e51b81526020600482015260076024820152664e6f206d6f726560c81b6044820152606401610830565b600d546301000000900460ff1681610f0c33610d1b565b610f1691906123bc565b1115610f645760405162461bcd60e51b815260206004820152601c60248201527f6d6178204e4654207065722061646472657373206578636565646564000000006044820152606401610830565b600f5481600e54610f7591906123bc565b1115610fd8573481600c54610f8a91906123d4565b1115610fd35760405162461bcd60e51b8152602060048201526018602482015277125b98dbdc9c9958dd08115512081d985b1d59481cd95b9d60421b6044820152606401610830565b6110c8565b600d54640100000000900460ff1681610ff033610d1b565b610ffa91906123bc565b1115611083573481600c5461100f91906123d4565b11156110585760405162461bcd60e51b8152602060048201526018602482015277125b98dbdc9c9958dd08115512081d985b1d59481cd95b9d60421b6044820152606401610830565b600d5462010000900460ff16811115610fd35760405162461bcd60e51b8152600401610830906123f3565b600d54640100000000900460ff168111156110b05760405162461bcd60e51b8152600401610830906123f3565b80600e60008282546110c291906123bc565b90915550505b610c5b3382611619565b336001600160a01b038316036110fb5760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6008546001600160a01b031633146111915760405162461bcd60e51b81526004016108309061220b565b600d805460ff909216620100000262ff000019909216919091179055565b6008546001600160a01b031633146111d95760405162461bcd60e51b81526004016108309061220b565b6010805460ff1916911515919091179055565b836001600160a01b03811633146112115760105460ff161561121157611211336115ca565b61121d858585856117c9565b5050505050565b606061122f82611535565b6112935760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610830565b60105462010000900460ff16151560000361133a57600b80546112b590612240565b80601f01602080910402602001604051908101604052809291908181526020018280546112e190612240565b801561132e5780601f106113035761010080835404028352916020019161132e565b820191906000526020600020905b81548152906001019060200180831161131157829003601f168201915b50505050509050919050565b6000611344611814565b905060008151116113645760405180602001604052806000815250611392565b8061136e84611823565b600a60405160200161138293929190612435565b6040516020818303038152906040525b9392505050565b6008546001600160a01b031633146113c35760405162461bcd60e51b81526004016108309061220b565b60006113d6600154600054036000190190565b905060006113e78360ff87166123d4565b600d5490915061ffff9081169061140190839085166123bc565b11156114455760405162461bcd60e51b815260206004820152601360248201527222bc31b2b232b99036b0bc1039bab838363c9760691b6044820152606401610830565b60005b8381101561149557611483858583818110611465576114656124d5565b905060200201602081019061147a919061207d565b8760ff16611619565b8061148d816124eb565b915050611448565b505050505050565b6008546001600160a01b031633146114c75760405162461bcd60e51b81526004016108309061220b565b6001600160a01b03811661152c5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610830565b610c5b81611777565b600081600111158015611549575060005482105b8015610800575050600090815260046020526040902054600160e01b900460ff161590565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b69c617113400112233445560005230601a5280603a52600080604460166daaeb6d7670e522a718067333cd4e5afa611606573d6000803e3d6000fd5b6000603a5250565b6109af83838361192c565b610a19828260405180602001604052806000815250611b19565b6109af838383604051806020016040528060008152506111ec565b6040805160608101825260008082526020820181905291810191909152818060011115801561167e575060005481105b1561175e57600081815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b810467ffffffffffffffff1692820192909252600160e01b90910460ff1615159181018290529061175c5780516001600160a01b0316156116f2579392505050565b5060001901600081815260046020908152604091829020825160608101845290546001600160a01b038116808352600160a01b820467ffffffffffffffff1693830193909352600160e01b900460ff1615159281019290925215611757579392505050565b6116f2565b505b604051636f96cda160e11b815260040160405180910390fd5b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6117d484848461192c565b6001600160a01b0383163b151580156117f657506117f484848484611b26565b155b15610a4d576040516368d2bf6b60e11b815260040160405180910390fd5b60606009805461086090612240565b60608160000361184a5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611874578061185e816124eb565b915061186d9050600a8361251a565b915061184e565b60008167ffffffffffffffff81111561188f5761188f611f0d565b6040519080825280601f01601f1916602001820160405280156118b9576020820181803683370190505b5090505b8415611924576118ce60018361252e565b91506118db600a86612545565b6118e69060306123bc565b60f81b8183815181106118fb576118fb6124d5565b60200101906001600160f81b031916908160001a90535061191d600a8661251a565b94506118bd565b949350505050565b60006119378261164e565b9050836001600160a01b031681600001516001600160a01b03161461196e5760405162a1148160e81b815260040160405180910390fd5b6000336001600160a01b038616148061198c575061198c853361072a565b806119a757503361199c846108e3565b6001600160a01b0316145b9050806119c757604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b0384166119ee57604051633a954ecd60e21b815260040160405180910390fd5b6119fa6000848761156e565b6001600160a01b038581166000908152600560209081526040808320805467ffffffffffffffff1980821667ffffffffffffffff92831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600490945282852080546001600160e01b031916909417600160a01b42909216919091021783558701808452922080549193909116611ad0576000548214611ad0578054602086015167ffffffffffffffff16600160a01b026001600160e01b03199091166001600160a01b038a16171781555b50505082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461121d565b6109af8383836001611c11565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a0290611b5b903390899088908890600401612559565b6020604051808303816000875af1925050508015611b96575060408051601f3d908101601f19168201909252611b9391810190612596565b60015b611bf4573d808015611bc4576040519150601f19603f3d011682016040523d82523d6000602084013e611bc9565b606091505b508051600003611bec576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050949350505050565b6000546001600160a01b038516611c3a57604051622e076360e81b815260040160405180910390fd5b83600003611c5b5760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038516600081815260056020908152604080832080546fffffffffffffffffffffffffffffffff19811667ffffffffffffffff8083168c0181169182176801000000000000000067ffffffffffffffff1990941690921783900481168c01811690920217909155858452600490925290912080546001600160e01b031916909217600160a01b429092169190910217905580808501838015611d0d57506001600160a01b0387163b15155b15611d95575b60405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4611d5e6000888480600101955088611b26565b611d7b576040516368d2bf6b60e11b815260040160405180910390fd5b808203611d13578260005414611d9057600080fd5b611dda565b5b6040516001830192906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4808203611d96575b5060005561121d565b6001600160e01b031981168114610c5b57600080fd5b600060208284031215611e0b57600080fd5b813561139281611de3565b803561ffff81168114611e2857600080fd5b919050565b600060208284031215611e3f57600080fd5b61139282611e16565b60005b83811015611e63578181015183820152602001611e4b565b83811115610a4d5750506000910152565b60008151808452611e8c816020860160208601611e48565b601f01601f19169290920160200192915050565b6020815260006113926020830184611e74565b600060208284031215611ec557600080fd5b5035919050565b80356001600160a01b0381168114611e2857600080fd5b60008060408385031215611ef657600080fd5b611eff83611ecc565b946020939093013593505050565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff80841115611f3e57611f3e611f0d565b604051601f8501601f19908116603f01168101908282118183101715611f6657611f66611f0d565b81604052809350858152868686011115611f7f57600080fd5b858560208301376000602087830101525050509392505050565b600060208284031215611fab57600080fd5b813567ffffffffffffffff811115611fc257600080fd5b8201601f81018413611fd357600080fd5b61192484823560208401611f23565b600080600060608486031215611ff757600080fd5b61200084611ecc565b925061200e60208501611ecc565b9150604084013590509250925092565b6000806040838503121561203157600080fd5b61203a83611e16565b915061204860208401611ecc565b90509250929050565b803560ff81168114611e2857600080fd5b60006020828403121561207457600080fd5b61139282612051565b60006020828403121561208f57600080fd5b61139282611ecc565b80358015158114611e2857600080fd5b600080604083850312156120bb57600080fd5b6120c483611ecc565b915061204860208401612098565b6000602082840312156120e457600080fd5b61139282612098565b6000806000806080858703121561210357600080fd5b61210c85611ecc565b935061211a60208601611ecc565b925060408501359150606085013567ffffffffffffffff81111561213d57600080fd5b8501601f8101871361214e57600080fd5b61215d87823560208401611f23565b91505092959194509250565b60008060006040848603121561217e57600080fd5b61218784612051565b9250602084013567ffffffffffffffff808211156121a457600080fd5b818601915086601f8301126121b857600080fd5b8135818111156121c757600080fd5b8760208260051b85010111156121dc57600080fd5b6020830194508093505050509250925092565b6000806040838503121561220257600080fd5b61203a83611ecc565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600181811c9082168061225457607f821691505b60208210810361227457634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156109af57600081815260208120601f850160051c810160208610156122a15750805b601f850160051c820191505b81811015611495578281556001016122ad565b815167ffffffffffffffff8111156122da576122da611f0d565b6122ee816122e88454612240565b8461227a565b602080601f831160018114612323576000841561230b5750858301515b600019600386901b1c1916600185901b178555611495565b600085815260208120601f198616915b8281101561235257888601518255948401946001909101908401612333565b50858210156123705787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b634e487b7160e01b600052601160045260246000fd5b600061ffff8083168185168083038211156123b3576123b3612380565b01949350505050565b600082198211156123cf576123cf612380565b500190565b60008160001904831182151516156123ee576123ee612380565b500290565b60208082526022908201527f4d6178206d696e747320706572207472616e73616374696f6e20657863656564604082015261195960f21b606082015260800190565b6000845160206124488285838a01611e48565b85519184019161245b8184848a01611e48565b855492019160009061246c81612240565b600182811680156124845760018114612499576124c5565b60ff19841687528215158302870194506124c5565b896000528560002060005b848110156124bd578154898201529083019087016124a4565b505082870194505b50929a9950505050505050505050565b634e487b7160e01b600052603260045260246000fd5b6000600182016124fd576124fd612380565b5060010190565b634e487b7160e01b600052601260045260246000fd5b60008261252957612529612504565b500490565b60008282101561254057612540612380565b500390565b60008261255457612554612504565b500690565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061258c90830184611e74565b9695505050505050565b6000602082840312156125a857600080fd5b815161139281611de356fea2646970667358221220998028171283327282f3fd9bd0ab1ed0f37c1583ee4b13b7cbbea0fc9c72ab7364736f6c634300080f0033

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

00000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000000000000001453686974636f696e204d656d6f726162696c69610000000000000000000000000000000000000000000000000000000000000000000000000000000000000002534d000000000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : _tokenName (string): Shitcoin Memorabilia
Arg [1] : _tokenSymbol (string): SM

-----Encoded View---------------
6 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000040
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000014
Arg [3] : 53686974636f696e204d656d6f726162696c6961000000000000000000000000
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000002
Arg [5] : 534d000000000000000000000000000000000000000000000000000000000000


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.