ETH Price: $3,412.50 (+1.62%)
Gas: 6 Gwei

Token

Toilet PEPES (ToiletPEPES)
 

Overview

Max Total Supply

3,333 ToiletPEPES

Holders

808

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
brandonharris.eth
Balance
1 ToiletPEPES
0x3edc9a6fe9a1b985573928e4bb74ec080722ba02
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:
ToiletPEPES

Compiler Version
v0.8.18+commit.87f61d96

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-06-09
*/

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


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

pragma solidity ^0.8.0;

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

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

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


// OpenZeppelin Contracts (last updated v4.9.0) (access/Ownable.sol)

pragma solidity ^0.8.0;


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

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

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

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        _checkOwner();
        _;
    }

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

    /**
     * @dev Throws if the sender is not the owner.
     */
    function _checkOwner() internal view virtual {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
    }

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby disabling 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: erc721a/contracts/IERC721A.sol


// ERC721A Contracts v4.2.3
// Creator: Chiru Labs

pragma solidity ^0.8.4;

/**
 * @dev Interface of ERC721A.
 */
interface IERC721A {
    /**
     * The caller must own the token or be an approved operator.
     */
    error ApprovalCallerNotOwnerNorApproved();

    /**
     * The token does not exist.
     */
    error ApprovalQueryForNonexistentToken();

    /**
     * Cannot query the balance for the zero address.
     */
    error BalanceQueryForZeroAddress();

    /**
     * Cannot mint to the zero address.
     */
    error MintToZeroAddress();

    /**
     * The quantity of tokens minted must be more than zero.
     */
    error MintZeroQuantity();

    /**
     * The token does not exist.
     */
    error OwnerQueryForNonexistentToken();

    /**
     * The caller must own the token or be an approved operator.
     */
    error TransferCallerNotOwnerNorApproved();

    /**
     * The token must be owned by `from`.
     */
    error TransferFromIncorrectOwner();

    /**
     * Cannot safely transfer to a contract that does not implement the
     * ERC721Receiver interface.
     */
    error TransferToNonERC721ReceiverImplementer();

    /**
     * Cannot transfer to the zero address.
     */
    error TransferToZeroAddress();

    /**
     * The token does not exist.
     */
    error URIQueryForNonexistentToken();

    /**
     * The `quantity` minted with ERC2309 exceeds the safety limit.
     */
    error MintERC2309QuantityExceedsLimit();

    /**
     * The `extraData` cannot be set on an unintialized ownership slot.
     */
    error OwnershipNotInitializedForExtraData();

    // =============================================================
    //                            STRUCTS
    // =============================================================

    struct TokenOwnership {
        // The address of the owner.
        address addr;
        // Stores the start time of ownership with minimal overhead for tokenomics.
        uint64 startTimestamp;
        // Whether the token has been burned.
        bool burned;
        // Arbitrary data similar to `startTimestamp` that can be set via {_extraData}.
        uint24 extraData;
    }

    // =============================================================
    //                         TOKEN COUNTERS
    // =============================================================

    /**
     * @dev Returns the total number of tokens in existence.
     * Burned tokens will reduce the count.
     * To get the total number of tokens minted, please see {_totalMinted}.
     */
    function totalSupply() external view returns (uint256);

    // =============================================================
    //                            IERC165
    // =============================================================

    /**
     * @dev Returns true if this contract implements the interface defined by
     * `interfaceId`. See the corresponding
     * [EIP section](https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified)
     * to learn more about how these ids are created.
     *
     * This function call must use less than 30000 gas.
     */
    function supportsInterface(bytes4 interfaceId) external view returns (bool);

    // =============================================================
    //                            IERC721
    // =============================================================

    /**
     * @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,
        bytes calldata data
    ) external payable;

    /**
     * @dev Equivalent to `safeTransferFrom(from, to, tokenId, '')`.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) external payable;

    /**
     * @dev Transfers `tokenId` 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 payable;

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

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

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

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

    // =============================================================
    //                        IERC721Metadata
    // =============================================================

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

    // =============================================================
    //                           IERC2309
    // =============================================================

    /**
     * @dev Emitted when tokens in `fromTokenId` to `toTokenId`
     * (inclusive) is transferred from `from` to `to`, as defined in the
     * [ERC2309](https://eips.ethereum.org/EIPS/eip-2309) standard.
     *
     * See {_mintERC2309} for more details.
     */
    event ConsecutiveTransfer(uint256 indexed fromTokenId, uint256 toTokenId, address indexed from, address indexed to);
}

// File: erc721a/contracts/ERC721A.sol


// ERC721A Contracts v4.2.3
// Creator: Chiru Labs

pragma solidity ^0.8.4;


/**
 * @dev Interface of ERC721 token receiver.
 */
interface ERC721A__IERC721Receiver {
    function onERC721Received(
        address operator,
        address from,
        uint256 tokenId,
        bytes calldata data
    ) external returns (bytes4);
}

/**
 * @title ERC721A
 *
 * @dev Implementation of the [ERC721](https://eips.ethereum.org/EIPS/eip-721)
 * Non-Fungible Token Standard, including the Metadata extension.
 * Optimized for lower gas during batch mints.
 *
 * Token IDs are minted in sequential order (e.g. 0, 1, 2, 3, ...)
 * starting from `_startTokenId()`.
 *
 * Assumptions:
 *
 * - An owner cannot have more than 2**64 - 1 (max value of uint64) of supply.
 * - The maximum token ID cannot exceed 2**256 - 1 (max value of uint256).
 */
contract ERC721A is IERC721A {
    // Bypass for a `--via-ir` bug (https://github.com/chiru-labs/ERC721A/pull/364).
    struct TokenApprovalRef {
        address value;
    }

    // =============================================================
    //                           CONSTANTS
    // =============================================================

    // Mask of an entry in packed address data.
    uint256 private constant _BITMASK_ADDRESS_DATA_ENTRY = (1 << 64) - 1;

    // The bit position of `numberMinted` in packed address data.
    uint256 private constant _BITPOS_NUMBER_MINTED = 64;

    // The bit position of `numberBurned` in packed address data.
    uint256 private constant _BITPOS_NUMBER_BURNED = 128;

    // The bit position of `aux` in packed address data.
    uint256 private constant _BITPOS_AUX = 192;

    // Mask of all 256 bits in packed address data except the 64 bits for `aux`.
    uint256 private constant _BITMASK_AUX_COMPLEMENT = (1 << 192) - 1;

    // The bit position of `startTimestamp` in packed ownership.
    uint256 private constant _BITPOS_START_TIMESTAMP = 160;

    // The bit mask of the `burned` bit in packed ownership.
    uint256 private constant _BITMASK_BURNED = 1 << 224;

    // The bit position of the `nextInitialized` bit in packed ownership.
    uint256 private constant _BITPOS_NEXT_INITIALIZED = 225;

    // The bit mask of the `nextInitialized` bit in packed ownership.
    uint256 private constant _BITMASK_NEXT_INITIALIZED = 1 << 225;

    // The bit position of `extraData` in packed ownership.
    uint256 private constant _BITPOS_EXTRA_DATA = 232;

    // Mask of all 256 bits in a packed ownership except the 24 bits for `extraData`.
    uint256 private constant _BITMASK_EXTRA_DATA_COMPLEMENT = (1 << 232) - 1;

    // The mask of the lower 160 bits for addresses.
    uint256 private constant _BITMASK_ADDRESS = (1 << 160) - 1;

    // The maximum `quantity` that can be minted with {_mintERC2309}.
    // This limit is to prevent overflows on the address data entries.
    // For a limit of 5000, a total of 3.689e15 calls to {_mintERC2309}
    // is required to cause an overflow, which is unrealistic.
    uint256 private constant _MAX_MINT_ERC2309_QUANTITY_LIMIT = 5000;

    // The `Transfer` event signature is given by:
    // `keccak256(bytes("Transfer(address,address,uint256)"))`.
    bytes32 private constant _TRANSFER_EVENT_SIGNATURE =
        0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef;

    // =============================================================
    //                            STORAGE
    // =============================================================

    // The next token ID to be minted.
    uint256 private _currentIndex;

    // The number of tokens burned.
    uint256 private _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 {_packedOwnershipOf} implementation for details.
    //
    // Bits Layout:
    // - [0..159]   `addr`
    // - [160..223] `startTimestamp`
    // - [224]      `burned`
    // - [225]      `nextInitialized`
    // - [232..255] `extraData`
    mapping(uint256 => uint256) private _packedOwnerships;

    // Mapping owner address to address data.
    //
    // Bits Layout:
    // - [0..63]    `balance`
    // - [64..127]  `numberMinted`
    // - [128..191] `numberBurned`
    // - [192..255] `aux`
    mapping(address => uint256) private _packedAddressData;

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

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

    // =============================================================
    //                          CONSTRUCTOR
    // =============================================================

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

    // =============================================================
    //                   TOKEN COUNTING OPERATIONS
    // =============================================================

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

    /**
     * @dev Returns the next token ID to be minted.
     */
    function _nextTokenId() internal view virtual returns (uint256) {
        return _currentIndex;
    }

    /**
     * @dev Returns the total number of tokens in existence.
     * Burned tokens will reduce the count.
     * To get the total number of tokens minted, please see {_totalMinted}.
     */
    function totalSupply() public view virtual override returns (uint256) {
        // Counter underflow is impossible as _burnCounter cannot be incremented
        // more than `_currentIndex - _startTokenId()` times.
        unchecked {
            return _currentIndex - _burnCounter - _startTokenId();
        }
    }

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

    /**
     * @dev Returns the total number of tokens burned.
     */
    function _totalBurned() internal view virtual returns (uint256) {
        return _burnCounter;
    }

    // =============================================================
    //                    ADDRESS DATA OPERATIONS
    // =============================================================

    /**
     * @dev Returns the number of tokens in `owner`'s account.
     */
    function balanceOf(address owner) public view virtual override returns (uint256) {
        if (owner == address(0)) revert BalanceQueryForZeroAddress();
        return _packedAddressData[owner] & _BITMASK_ADDRESS_DATA_ENTRY;
    }

    /**
     * Returns the number of tokens minted by `owner`.
     */
    function _numberMinted(address owner) internal view returns (uint256) {
        return (_packedAddressData[owner] >> _BITPOS_NUMBER_MINTED) & _BITMASK_ADDRESS_DATA_ENTRY;
    }

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

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

    /**
     * Sets the auxiliary 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 virtual {
        uint256 packed = _packedAddressData[owner];
        uint256 auxCasted;
        // Cast `aux` with assembly to avoid redundant masking.
        assembly {
            auxCasted := aux
        }
        packed = (packed & _BITMASK_AUX_COMPLEMENT) | (auxCasted << _BITPOS_AUX);
        _packedAddressData[owner] = packed;
    }

    // =============================================================
    //                            IERC165
    // =============================================================

    /**
     * @dev Returns true if this contract implements the interface defined by
     * `interfaceId`. See the corresponding
     * [EIP section](https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified)
     * to learn more about how these ids are created.
     *
     * This function call must use less than 30000 gas.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
        // The interface IDs are constants representing the first 4 bytes
        // of the XOR of all function selectors in the interface.
        // See: [ERC165](https://eips.ethereum.org/EIPS/eip-165)
        // (e.g. `bytes4(i.functionA.selector ^ i.functionB.selector ^ ...)`)
        return
            interfaceId == 0x01ffc9a7 || // ERC165 interface ID for ERC165.
            interfaceId == 0x80ac58cd || // ERC165 interface ID for ERC721.
            interfaceId == 0x5b5e139f; // ERC165 interface ID for ERC721Metadata.
    }

    // =============================================================
    //                        IERC721Metadata
    // =============================================================

    /**
     * @dev Returns the token collection name.
     */
    function name() public view virtual override returns (string memory) {
        return _name;
    }

    /**
     * @dev Returns the token collection symbol.
     */
    function symbol() public view virtual override returns (string memory) {
        return _symbol;
    }

    /**
     * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token.
     */
    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, _toString(tokenId))) : '';
    }

    /**
     * @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, it can be overridden in child contracts.
     */
    function _baseURI() internal view virtual returns (string memory) {
        return '';
    }

    // =============================================================
    //                     OWNERSHIPS OPERATIONS
    // =============================================================

    /**
     * @dev Returns the owner of the `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function ownerOf(uint256 tokenId) public view virtual override returns (address) {
        return address(uint160(_packedOwnershipOf(tokenId)));
    }

    /**
     * @dev Gas spent here starts off proportional to the maximum mint batch size.
     * It gradually moves to O(1) as tokens get transferred around over time.
     */
    function _ownershipOf(uint256 tokenId) internal view virtual returns (TokenOwnership memory) {
        return _unpackedOwnership(_packedOwnershipOf(tokenId));
    }

    /**
     * @dev Returns the unpacked `TokenOwnership` struct at `index`.
     */
    function _ownershipAt(uint256 index) internal view virtual returns (TokenOwnership memory) {
        return _unpackedOwnership(_packedOwnerships[index]);
    }

    /**
     * @dev Initializes the ownership slot minted at `index` for efficiency purposes.
     */
    function _initializeOwnershipAt(uint256 index) internal virtual {
        if (_packedOwnerships[index] == 0) {
            _packedOwnerships[index] = _packedOwnershipOf(index);
        }
    }

    /**
     * Returns the packed ownership data of `tokenId`.
     */
    function _packedOwnershipOf(uint256 tokenId) private view returns (uint256) {
        uint256 curr = tokenId;

        unchecked {
            if (_startTokenId() <= curr)
                if (curr < _currentIndex) {
                    uint256 packed = _packedOwnerships[curr];
                    // If not burned.
                    if (packed & _BITMASK_BURNED == 0) {
                        // Invariant:
                        // There will always be an initialized ownership slot
                        // (i.e. `ownership.addr != address(0) && ownership.burned == false`)
                        // before an unintialized ownership slot
                        // (i.e. `ownership.addr == address(0) && ownership.burned == false`)
                        // Hence, `curr` will not underflow.
                        //
                        // We can directly compare the packed value.
                        // If the address is zero, packed will be zero.
                        while (packed == 0) {
                            packed = _packedOwnerships[--curr];
                        }
                        return packed;
                    }
                }
        }
        revert OwnerQueryForNonexistentToken();
    }

    /**
     * @dev Returns the unpacked `TokenOwnership` struct from `packed`.
     */
    function _unpackedOwnership(uint256 packed) private pure returns (TokenOwnership memory ownership) {
        ownership.addr = address(uint160(packed));
        ownership.startTimestamp = uint64(packed >> _BITPOS_START_TIMESTAMP);
        ownership.burned = packed & _BITMASK_BURNED != 0;
        ownership.extraData = uint24(packed >> _BITPOS_EXTRA_DATA);
    }

    /**
     * @dev Packs ownership data into a single uint256.
     */
    function _packOwnershipData(address owner, uint256 flags) private view returns (uint256 result) {
        assembly {
            // Mask `owner` to the lower 160 bits, in case the upper bits somehow aren't clean.
            owner := and(owner, _BITMASK_ADDRESS)
            // `owner | (block.timestamp << _BITPOS_START_TIMESTAMP) | flags`.
            result := or(owner, or(shl(_BITPOS_START_TIMESTAMP, timestamp()), flags))
        }
    }

    /**
     * @dev Returns the `nextInitialized` flag set if `quantity` equals 1.
     */
    function _nextInitializedFlag(uint256 quantity) private pure returns (uint256 result) {
        // For branchless setting of the `nextInitialized` flag.
        assembly {
            // `(quantity == 1) << _BITPOS_NEXT_INITIALIZED`.
            result := shl(_BITPOS_NEXT_INITIALIZED, eq(quantity, 1))
        }
    }

    // =============================================================
    //                      APPROVAL OPERATIONS
    // =============================================================

    /**
     * @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) public payable virtual override {
        address owner = ownerOf(tokenId);

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

        _tokenApprovals[tokenId].value = to;
        emit Approval(owner, to, tokenId);
    }

    /**
     * @dev Returns the account approved for `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function getApproved(uint256 tokenId) public view virtual override returns (address) {
        if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken();

        return _tokenApprovals[tokenId].value;
    }

    /**
     * @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) public virtual override {
        _operatorApprovals[_msgSenderERC721A()][operator] = approved;
        emit ApprovalForAll(_msgSenderERC721A(), operator, approved);
    }

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

    /**
     * @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. See {_mint}.
     */
    function _exists(uint256 tokenId) internal view virtual returns (bool) {
        return
            _startTokenId() <= tokenId &&
            tokenId < _currentIndex && // If within bounds,
            _packedOwnerships[tokenId] & _BITMASK_BURNED == 0; // and not burned.
    }

    /**
     * @dev Returns whether `msgSender` is equal to `approvedAddress` or `owner`.
     */
    function _isSenderApprovedOrOwner(
        address approvedAddress,
        address owner,
        address msgSender
    ) private pure returns (bool result) {
        assembly {
            // Mask `owner` to the lower 160 bits, in case the upper bits somehow aren't clean.
            owner := and(owner, _BITMASK_ADDRESS)
            // Mask `msgSender` to the lower 160 bits, in case the upper bits somehow aren't clean.
            msgSender := and(msgSender, _BITMASK_ADDRESS)
            // `msgSender == owner || msgSender == approvedAddress`.
            result := or(eq(msgSender, owner), eq(msgSender, approvedAddress))
        }
    }

    /**
     * @dev Returns the storage slot and value for the approved address of `tokenId`.
     */
    function _getApprovedSlotAndAddress(uint256 tokenId)
        private
        view
        returns (uint256 approvedAddressSlot, address approvedAddress)
    {
        TokenApprovalRef storage tokenApproval = _tokenApprovals[tokenId];
        // The following is equivalent to `approvedAddress = _tokenApprovals[tokenId].value`.
        assembly {
            approvedAddressSlot := tokenApproval.slot
            approvedAddress := sload(approvedAddressSlot)
        }
    }

    // =============================================================
    //                      TRANSFER OPERATIONS
    // =============================================================

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *
     * 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
    ) public payable virtual override {
        uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId);

        if (address(uint160(prevOwnershipPacked)) != from) revert TransferFromIncorrectOwner();

        (uint256 approvedAddressSlot, address approvedAddress) = _getApprovedSlotAndAddress(tokenId);

        // The nested ifs save around 20+ gas over a compound boolean condition.
        if (!_isSenderApprovedOrOwner(approvedAddress, from, _msgSenderERC721A()))
            if (!isApprovedForAll(from, _msgSenderERC721A())) revert TransferCallerNotOwnerNorApproved();

        if (to == address(0)) revert TransferToZeroAddress();

        _beforeTokenTransfers(from, to, tokenId, 1);

        // Clear approvals from the previous owner.
        assembly {
            if approvedAddress {
                // This is equivalent to `delete _tokenApprovals[tokenId]`.
                sstore(approvedAddressSlot, 0)
            }
        }

        // 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 {
            // We can directly increment and decrement the balances.
            --_packedAddressData[from]; // Updates: `balance -= 1`.
            ++_packedAddressData[to]; // Updates: `balance += 1`.

            // Updates:
            // - `address` to the next owner.
            // - `startTimestamp` to the timestamp of transfering.
            // - `burned` to `false`.
            // - `nextInitialized` to `true`.
            _packedOwnerships[tokenId] = _packOwnershipData(
                to,
                _BITMASK_NEXT_INITIALIZED | _nextExtraData(from, to, prevOwnershipPacked)
            );

            // If the next slot may not have been initialized (i.e. `nextInitialized == false`) .
            if (prevOwnershipPacked & _BITMASK_NEXT_INITIALIZED == 0) {
                uint256 nextTokenId = tokenId + 1;
                // If the next slot's address is zero and not burned (i.e. packed value is zero).
                if (_packedOwnerships[nextTokenId] == 0) {
                    // If the next slot is within bounds.
                    if (nextTokenId != _currentIndex) {
                        // Initialize the next slot to maintain correctness for `ownerOf(tokenId + 1)`.
                        _packedOwnerships[nextTokenId] = prevOwnershipPacked;
                    }
                }
            }
        }

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

    /**
     * @dev Equivalent to `safeTransferFrom(from, to, tokenId, '')`.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public payable virtual override {
        safeTransferFrom(from, to, tokenId, '');
    }

    /**
     * @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 memory _data
    ) public payable virtual override {
        transferFrom(from, to, tokenId);
        if (to.code.length != 0)
            if (!_checkContractOnERC721Received(from, to, tokenId, _data)) {
                revert TransferToNonERC721ReceiverImplementer();
            }
    }

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

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

    // =============================================================
    //                        MINT OPERATIONS
    // =============================================================

    /**
     * @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 for each mint.
     */
    function _mint(address to, uint256 quantity) internal virtual {
        uint256 startTokenId = _currentIndex;
        if (quantity == 0) revert MintZeroQuantity();

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

        // Overflows are incredibly unrealistic.
        // `balance` and `numberMinted` have a maximum limit of 2**64.
        // `tokenId` has a maximum limit of 2**256.
        unchecked {
            // Updates:
            // - `balance += quantity`.
            // - `numberMinted += quantity`.
            //
            // We can directly add to the `balance` and `numberMinted`.
            _packedAddressData[to] += quantity * ((1 << _BITPOS_NUMBER_MINTED) | 1);

            // Updates:
            // - `address` to the owner.
            // - `startTimestamp` to the timestamp of minting.
            // - `burned` to `false`.
            // - `nextInitialized` to `quantity == 1`.
            _packedOwnerships[startTokenId] = _packOwnershipData(
                to,
                _nextInitializedFlag(quantity) | _nextExtraData(address(0), to, 0)
            );

            uint256 toMasked;
            uint256 end = startTokenId + quantity;

            // Use assembly to loop and emit the `Transfer` event for gas savings.
            // The duplicated `log4` removes an extra check and reduces stack juggling.
            // The assembly, together with the surrounding Solidity code, have been
            // delicately arranged to nudge the compiler into producing optimized opcodes.
            assembly {
                // Mask `to` to the lower 160 bits, in case the upper bits somehow aren't clean.
                toMasked := and(to, _BITMASK_ADDRESS)
                // Emit the `Transfer` event.
                log4(
                    0, // Start of data (0, since no data).
                    0, // End of data (0, since no data).
                    _TRANSFER_EVENT_SIGNATURE, // Signature.
                    0, // `address(0)`.
                    toMasked, // `to`.
                    startTokenId // `tokenId`.
                )

                // The `iszero(eq(,))` check ensures that large values of `quantity`
                // that overflows uint256 will make the loop run out of gas.
                // The compiler will optimize the `iszero` away for performance.
                for {
                    let tokenId := add(startTokenId, 1)
                } iszero(eq(tokenId, end)) {
                    tokenId := add(tokenId, 1)
                } {
                    // Emit the `Transfer` event. Similar to above.
                    log4(0, 0, _TRANSFER_EVENT_SIGNATURE, 0, toMasked, tokenId)
                }
            }
            if (toMasked == 0) revert MintToZeroAddress();

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

    /**
     * @dev Mints `quantity` tokens and transfers them to `to`.
     *
     * This function is intended for efficient minting only during contract creation.
     *
     * It emits only one {ConsecutiveTransfer} as defined in
     * [ERC2309](https://eips.ethereum.org/EIPS/eip-2309),
     * instead of a sequence of {Transfer} event(s).
     *
     * Calling this function outside of contract creation WILL make your contract
     * non-compliant with the ERC721 standard.
     * For full ERC721 compliance, substituting ERC721 {Transfer} event(s) with the ERC2309
     * {ConsecutiveTransfer} event is only permissible during contract creation.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `quantity` must be greater than 0.
     *
     * Emits a {ConsecutiveTransfer} event.
     */
    function _mintERC2309(address to, uint256 quantity) internal virtual {
        uint256 startTokenId = _currentIndex;
        if (to == address(0)) revert MintToZeroAddress();
        if (quantity == 0) revert MintZeroQuantity();
        if (quantity > _MAX_MINT_ERC2309_QUANTITY_LIMIT) revert MintERC2309QuantityExceedsLimit();

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

        // Overflows are unrealistic due to the above check for `quantity` to be below the limit.
        unchecked {
            // Updates:
            // - `balance += quantity`.
            // - `numberMinted += quantity`.
            //
            // We can directly add to the `balance` and `numberMinted`.
            _packedAddressData[to] += quantity * ((1 << _BITPOS_NUMBER_MINTED) | 1);

            // Updates:
            // - `address` to the owner.
            // - `startTimestamp` to the timestamp of minting.
            // - `burned` to `false`.
            // - `nextInitialized` to `quantity == 1`.
            _packedOwnerships[startTokenId] = _packOwnershipData(
                to,
                _nextInitializedFlag(quantity) | _nextExtraData(address(0), to, 0)
            );

            emit ConsecutiveTransfer(startTokenId, startTokenId + quantity - 1, address(0), to);

            _currentIndex = startTokenId + quantity;
        }
        _afterTokenTransfers(address(0), to, startTokenId, 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.
     *
     * See {_mint}.
     *
     * Emits a {Transfer} event for each mint.
     */
    function _safeMint(
        address to,
        uint256 quantity,
        bytes memory _data
    ) internal virtual {
        _mint(to, quantity);

        unchecked {
            if (to.code.length != 0) {
                uint256 end = _currentIndex;
                uint256 index = end - quantity;
                do {
                    if (!_checkContractOnERC721Received(address(0), to, index++, _data)) {
                        revert TransferToNonERC721ReceiverImplementer();
                    }
                } while (index < end);
                // Reentrancy protection.
                if (_currentIndex != end) revert();
            }
        }
    }

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

    // =============================================================
    //                        BURN OPERATIONS
    // =============================================================

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

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

        address from = address(uint160(prevOwnershipPacked));

        (uint256 approvedAddressSlot, address approvedAddress) = _getApprovedSlotAndAddress(tokenId);

        if (approvalCheck) {
            // The nested ifs save around 20+ gas over a compound boolean condition.
            if (!_isSenderApprovedOrOwner(approvedAddress, from, _msgSenderERC721A()))
                if (!isApprovedForAll(from, _msgSenderERC721A())) revert TransferCallerNotOwnerNorApproved();
        }

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

        // Clear approvals from the previous owner.
        assembly {
            if approvedAddress {
                // This is equivalent to `delete _tokenApprovals[tokenId]`.
                sstore(approvedAddressSlot, 0)
            }
        }

        // 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 {
            // Updates:
            // - `balance -= 1`.
            // - `numberBurned += 1`.
            //
            // We can directly decrement the balance, and increment the number burned.
            // This is equivalent to `packed -= 1; packed += 1 << _BITPOS_NUMBER_BURNED;`.
            _packedAddressData[from] += (1 << _BITPOS_NUMBER_BURNED) - 1;

            // Updates:
            // - `address` to the last owner.
            // - `startTimestamp` to the timestamp of burning.
            // - `burned` to `true`.
            // - `nextInitialized` to `true`.
            _packedOwnerships[tokenId] = _packOwnershipData(
                from,
                (_BITMASK_BURNED | _BITMASK_NEXT_INITIALIZED) | _nextExtraData(from, address(0), prevOwnershipPacked)
            );

            // If the next slot may not have been initialized (i.e. `nextInitialized == false`) .
            if (prevOwnershipPacked & _BITMASK_NEXT_INITIALIZED == 0) {
                uint256 nextTokenId = tokenId + 1;
                // If the next slot's address is zero and not burned (i.e. packed value is zero).
                if (_packedOwnerships[nextTokenId] == 0) {
                    // If the next slot is within bounds.
                    if (nextTokenId != _currentIndex) {
                        // Initialize the next slot to maintain correctness for `ownerOf(tokenId + 1)`.
                        _packedOwnerships[nextTokenId] = prevOwnershipPacked;
                    }
                }
            }
        }

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

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

    // =============================================================
    //                     EXTRA DATA OPERATIONS
    // =============================================================

    /**
     * @dev Directly sets the extra data for the ownership data `index`.
     */
    function _setExtraDataAt(uint256 index, uint24 extraData) internal virtual {
        uint256 packed = _packedOwnerships[index];
        if (packed == 0) revert OwnershipNotInitializedForExtraData();
        uint256 extraDataCasted;
        // Cast `extraData` with assembly to avoid redundant masking.
        assembly {
            extraDataCasted := extraData
        }
        packed = (packed & _BITMASK_EXTRA_DATA_COMPLEMENT) | (extraDataCasted << _BITPOS_EXTRA_DATA);
        _packedOwnerships[index] = packed;
    }

    /**
     * @dev Called during each token transfer to set the 24bit `extraData` field.
     * Intended to be overridden by the cosumer contract.
     *
     * `previousExtraData` - the value of `extraData` before transfer.
     *
     * 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 _extraData(
        address from,
        address to,
        uint24 previousExtraData
    ) internal view virtual returns (uint24) {}

    /**
     * @dev Returns the next extra data for the packed ownership data.
     * The returned result is shifted into position.
     */
    function _nextExtraData(
        address from,
        address to,
        uint256 prevOwnershipPacked
    ) private view returns (uint256) {
        uint24 extraData = uint24(prevOwnershipPacked >> _BITPOS_EXTRA_DATA);
        return uint256(_extraData(from, to, extraData)) << _BITPOS_EXTRA_DATA;
    }

    // =============================================================
    //                       OTHER OPERATIONS
    // =============================================================

    /**
     * @dev Returns the message sender (defaults to `msg.sender`).
     *
     * If you are writing GSN compatible contracts, you need to override this function.
     */
    function _msgSenderERC721A() internal view virtual returns (address) {
        return msg.sender;
    }

    /**
     * @dev Converts a uint256 to its ASCII string decimal representation.
     */
    function _toString(uint256 value) internal pure virtual returns (string memory str) {
        assembly {
            // The maximum value of a uint256 contains 78 digits (1 byte per digit), but
            // we allocate 0xa0 bytes to keep the free memory pointer 32-byte word aligned.
            // We will need 1 word for the trailing zeros padding, 1 word for the length,
            // and 3 words for a maximum of 78 digits. Total: 5 * 0x20 = 0xa0.
            let m := add(mload(0x40), 0xa0)
            // Update the free memory pointer to allocate.
            mstore(0x40, m)
            // Assign the `str` to the end.
            str := sub(m, 0x20)
            // Zeroize the slot after the string.
            mstore(str, 0)

            // Cache the end of the memory to calculate the length later.
            let end := str

            // We write the string from rightmost digit to leftmost digit.
            // The following is essentially a do-while loop that also handles the zero case.
            // prettier-ignore
            for { let temp := value } 1 {} {
                str := sub(str, 1)
                // Write the character to the pointer.
                // The ASCII index of the '0' character is 48.
                mstore8(str, add(48, mod(temp, 10)))
                // Keep dividing `temp` until zero.
                temp := div(temp, 10)
                // prettier-ignore
                if iszero(temp) { break }
            }

            let length := sub(end, str)
            // Move the pointer 32 bytes leftwards to make room for the length.
            str := sub(str, 0x20)
            // Store the length.
            mstore(str, length)
        }
    }
}

// File: contracts/pl.sol


pragma solidity ^0.8.4;



contract ToiletPEPES is ERC721A, Ownable {

    string private baseURI;
    uint public price = 0.003 ether;
    uint256 public maxPerTx = 6;
    uint256 public maxFreePerWallet = 3;
    uint256 public maxSupply = 3333;
    uint256 public maxFreeSupply = 1111;
    bool public mintEnabled = false;

    mapping(address => uint256) private _mintedFreeAmount;

    constructor(string memory _name, string memory _symbol) ERC721A(_name, _symbol) {
        _safeMint(msg.sender, 1);
        setBaseURI("ipfs://Qmb6scrGjunJxLAWuoLNEQ6qz5Mj2Qtfv2jcZnQSUW5hwk/");
    }

    function mint(uint256 count) external payable {
        uint256 cost = price;
        bool isFree = ((totalSupply() + count < maxFreeSupply + 1) &&
            (_mintedFreeAmount[msg.sender] + count <= maxFreePerWallet));

        if (isFree) {
            cost = 0;
        }

        require(msg.value >= count * cost, "Not enough ether sent");
        require(totalSupply() + count < maxSupply + 1, "Not enough tokens left");
        require(mintEnabled, "Mint is not live yet.");
        require(count + _numberMinted(msg.sender) <= maxPerTx, "Exceeded the limit");
        require(tx.origin == msg.sender, "Contract minting is not allowed");


        if (isFree) {
            _mintedFreeAmount[msg.sender] += count;
        }

        _safeMint(msg.sender, count);
    }

    function flipSale() external onlyOwner {
        mintEnabled = !mintEnabled;
    }

    function withdraw() external payable onlyOwner {
        payable(owner()).transfer(address(this).balance);
    }

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

    function setBaseURI(string memory uri) public onlyOwner {
        baseURI = uri;
    }

    function setPrice(uint256 _price) public onlyOwner {
        price = _price;
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_symbol","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintERC2309QuantityExceedsLimit","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"OwnershipNotInitializedForExtraData","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","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":"uint256","name":"fromTokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"toTokenId","type":"uint256"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"}],"name":"ConsecutiveTransfer","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":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"flipSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxFreePerWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxFreeSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPerTx","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"count","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"mintEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"payable","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":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"uri","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_price","type":"uint256"}],"name":"setPrice","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":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"payable","type":"function"}]

6080604052660aa87bee538000600a556006600b556003600c55610d05600d55610457600e55600f805460ff191690553480156200003c57600080fd5b5060405162001e4a38038062001e4a8339810160408190526200005f91620004d2565b818160026200006f8382620005ca565b5060036200007e8282620005ca565b505060008055506200009033620000c9565b6200009d3360016200011b565b620000c160405180606001604052806036815260200162001df46036913962000141565b50506200071f565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6200013d8282604051806020016040528060008152506200015960201b60201c565b5050565b6200014b620001d0565b60096200013d8282620005ca565b62000165838362000231565b6001600160a01b0383163b15620001cb576000548281035b6001810190620001939060009087908662000311565b620001b1576040516368d2bf6b60e11b815260040160405180910390fd5b8181106200017d578160005414620001c857600080fd5b50505b505050565b6008546001600160a01b031633146200022f5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640160405180910390fd5b565b6000805490829003620002575760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b03831660008181526005602090815260408083208054680100000000000000018802019055848352600490915281206001851460e11b4260a01b1783179055828401908390839060008051602062001e2a8339815191528180a4600183015b818114620002e6578083600060008051602062001e2a833981519152600080a4600101620002bd565b50816000036200030857604051622e076360e81b815260040160405180910390fd5b60005550505050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a02906200034890339089908890889060040162000696565b6020604051808303816000875af192505050801562000386575060408051601f3d908101601f191682019092526200038391810190620006ec565b60015b620003e8573d808015620003b7576040519150601f19603f3d011682016040523d82523d6000602084013e620003bc565b606091505b508051600003620003e0576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050949350505050565b634e487b7160e01b600052604160045260246000fd5b60005b83811015620004385781810151838201526020016200041e565b50506000910152565b600082601f8301126200045357600080fd5b81516001600160401b038082111562000470576200047062000405565b604051601f8301601f19908116603f011681019082821181831017156200049b576200049b62000405565b81604052838152866020858801011115620004b557600080fd5b620004c88460208301602089016200041b565b9695505050505050565b60008060408385031215620004e657600080fd5b82516001600160401b0380821115620004fe57600080fd5b6200050c8683870162000441565b935060208501519150808211156200052357600080fd5b50620005328582860162000441565b9150509250929050565b600181811c908216806200055157607f821691505b6020821081036200057257634e487b7160e01b600052602260045260246000fd5b50919050565b601f821115620001cb57600081815260208120601f850160051c81016020861015620005a15750805b601f850160051c820191505b81811015620005c257828155600101620005ad565b505050505050565b81516001600160401b03811115620005e657620005e662000405565b620005fe81620005f784546200053c565b8462000578565b602080601f8311600181146200063657600084156200061d5750858301515b600019600386901b1c1916600185901b178555620005c2565b600085815260208120601f198616915b82811015620006675788860151825594840194600190910190840162000646565b5085821015620006865787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b600060018060a01b038087168352808616602084015250836040830152608060608301528251806080840152620006d58160a08501602087016200041b565b601f01601f19169190910160a00195945050505050565b600060208284031215620006ff57600080fd5b81516001600160e01b0319811681146200071857600080fd5b9392505050565b6116c5806200072f6000396000f3fe6080604052600436106101b75760003560e01c80638da5cb5b116100ec578063b88d4fde1161008a578063d5abeb0111610064578063d5abeb0114610450578063e985e9c514610466578063f2fde38b14610486578063f968adbe146104a657600080fd5b8063b88d4fde14610403578063c87b56dd14610416578063d12397301461043657600080fd5b8063a035b1fe116100c6578063a035b1fe146103a4578063a0712d68146103ba578063a22cb465146103cd578063a7027357146103ed57600080fd5b80638da5cb5b1461035157806391b7f5ed1461036f57806395d89b411461038f57600080fd5b806342842e0e116101595780636352211e116101335780636352211e146102e757806370a0823114610307578063715018a6146103275780637ba5e6211461033c57600080fd5b806342842e0e1461029e57806347513334146102b157806355f804b3146102c757600080fd5b8063095ea7b311610195578063095ea7b31461024b57806318160ddd1461026057806323b872dd146102835780633ccfd60b1461029657600080fd5b806301ffc9a7146101bc57806306fdde03146101f1578063081812fc14610213575b600080fd5b3480156101c857600080fd5b506101dc6101d7366004611190565b6104bc565b60405190151581526020015b60405180910390f35b3480156101fd57600080fd5b5061020661050e565b6040516101e891906111fd565b34801561021f57600080fd5b5061023361022e366004611210565b6105a0565b6040516001600160a01b0390911681526020016101e8565b61025e610259366004611245565b6105e4565b005b34801561026c57600080fd5b50600154600054035b6040519081526020016101e8565b61025e61029136600461126f565b610684565b61025e61081d565b61025e6102ac36600461126f565b610861565b3480156102bd57600080fd5b50610275600e5481565b3480156102d357600080fd5b5061025e6102e2366004611337565b610881565b3480156102f357600080fd5b50610233610302366004611210565b610899565b34801561031357600080fd5b50610275610322366004611380565b6108a4565b34801561033357600080fd5b5061025e6108f3565b34801561034857600080fd5b5061025e610907565b34801561035d57600080fd5b506008546001600160a01b0316610233565b34801561037b57600080fd5b5061025e61038a366004611210565b610923565b34801561039b57600080fd5b50610206610930565b3480156103b057600080fd5b50610275600a5481565b61025e6103c8366004611210565b61093f565b3480156103d957600080fd5b5061025e6103e836600461139b565b610b9e565b3480156103f957600080fd5b50610275600c5481565b61025e6104113660046113d7565b610c0a565b34801561042257600080fd5b50610206610431366004611210565b610c54565b34801561044257600080fd5b50600f546101dc9060ff1681565b34801561045c57600080fd5b50610275600d5481565b34801561047257600080fd5b506101dc610481366004611453565b610cd8565b34801561049257600080fd5b5061025e6104a1366004611380565b610d06565b3480156104b257600080fd5b50610275600b5481565b60006301ffc9a760e01b6001600160e01b0319831614806104ed57506380ac58cd60e01b6001600160e01b03198316145b806105085750635b5e139f60e01b6001600160e01b03198316145b92915050565b60606002805461051d90611486565b80601f016020809104026020016040519081016040528092919081815260200182805461054990611486565b80156105965780601f1061056b57610100808354040283529160200191610596565b820191906000526020600020905b81548152906001019060200180831161057957829003601f168201915b5050505050905090565b60006105ab82610d7c565b6105c8576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b60006105ef82610899565b9050336001600160a01b038216146106285761060b8133610cd8565b610628576040516367d9dca160e11b815260040160405180910390fd5b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b600061068f82610da3565b9050836001600160a01b0316816001600160a01b0316146106c25760405162a1148160e81b815260040160405180910390fd5b60008281526006602052604090208054338082146001600160a01b0388169091141761070f576106f28633610cd8565b61070f57604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b03851661073657604051633a954ecd60e21b815260040160405180910390fd5b801561074157600082555b6001600160a01b038681166000908152600560205260408082208054600019019055918716808252919020805460010190554260a01b17600160e11b17600085815260046020526040812091909155600160e11b841690036107d3576001840160008181526004602052604081205490036107d15760005481146107d15760008181526004602052604090208490555b505b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b505050505050565b610825610e0a565b6008546040516001600160a01b03909116904780156108fc02916000818181858888f1935050505015801561085e573d6000803e3d6000fd5b50565b61087c83838360405180602001604052806000815250610c0a565b505050565b610889610e0a565b60096108958282611506565b5050565b600061050882610da3565b60006001600160a01b0382166108cd576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b6108fb610e0a565b6109056000610e64565b565b61090f610e0a565b600f805460ff19811660ff90911615179055565b61092b610e0a565b600a55565b60606003805461051d90611486565b600a54600e546000906109539060016115dc565b836109616001546000540390565b61096b91906115dc565b1080156109945750600c54336000908152601060205260409020546109919085906115dc565b11155b905080156109a157600091505b6109ab82846115ef565b3410156109f75760405162461bcd60e51b8152602060048201526015602482015274139bdd08195b9bdd59da08195d1a195c881cd95b9d605a1b60448201526064015b60405180910390fd5b600d54610a059060016115dc565b83610a136001546000540390565b610a1d91906115dc565b10610a635760405162461bcd60e51b8152602060048201526016602482015275139bdd08195b9bdd59da081d1bdad95b9cc81b19599d60521b60448201526064016109ee565b600f5460ff16610aad5760405162461bcd60e51b815260206004820152601560248201527426b4b73a1034b9903737ba103634bb32903cb2ba1760591b60448201526064016109ee565b600b54336000908152600560205260409081902054610ad7911c67ffffffffffffffff16856115dc565b1115610b1a5760405162461bcd60e51b8152602060048201526012602482015271115e18d959591959081d1a19481b1a5b5a5d60721b60448201526064016109ee565b323314610b695760405162461bcd60e51b815260206004820152601f60248201527f436f6e7472616374206d696e74696e67206973206e6f7420616c6c6f7765640060448201526064016109ee565b8015610b94573360009081526010602052604081208054859290610b8e9084906115dc565b90915550505b61087c3384610eb6565b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b610c15848484610684565b6001600160a01b0383163b15610c4e57610c3184848484610ed0565b610c4e576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b6060610c5f82610d7c565b610c7c57604051630a14c4b560e41b815260040160405180910390fd5b6000610c86610fbc565b90508051600003610ca65760405180602001604052806000815250610cd1565b80610cb084610fcb565b604051602001610cc1929190611606565b6040516020818303038152906040525b9392505050565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b610d0e610e0a565b6001600160a01b038116610d735760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016109ee565b61085e81610e64565b6000805482108015610508575050600090815260046020526040902054600160e01b161590565b600081600054811015610df15760008181526004602052604081205490600160e01b82169003610def575b80600003610cd1575060001901600081815260046020526040902054610dce565b505b604051636f96cda160e11b815260040160405180910390fd5b6008546001600160a01b031633146109055760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016109ee565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b61089582826040518060200160405280600081525061100f565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a0290610f05903390899088908890600401611635565b6020604051808303816000875af1925050508015610f40575060408051601f3d908101601f19168201909252610f3d91810190611672565b60015b610f9e573d808015610f6e576040519150601f19603f3d011682016040523d82523d6000602084013e610f73565b606091505b508051600003610f96576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b60606009805461051d90611486565b606060a06040510180604052602081039150506000815280825b600183039250600a81066030018353600a900480610fe55750819003601f19909101908152919050565b611019838361107c565b6001600160a01b0383163b1561087c576000548281035b6110436000868380600101945086610ed0565b611060576040516368d2bf6b60e11b815260040160405180910390fd5b81811061103057816000541461107557600080fd5b5050505050565b60008054908290036110a15760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b03831660008181526005602090815260408083208054680100000000000000018802019055848352600490915281206001851460e11b4260a01b178317905582840190839083907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8180a4600183015b81811461115057808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600101611118565b508160000361117157604051622e076360e81b815260040160405180910390fd5b60005550505050565b6001600160e01b03198116811461085e57600080fd5b6000602082840312156111a257600080fd5b8135610cd18161117a565b60005b838110156111c85781810151838201526020016111b0565b50506000910152565b600081518084526111e98160208601602086016111ad565b601f01601f19169290920160200192915050565b602081526000610cd160208301846111d1565b60006020828403121561122257600080fd5b5035919050565b80356001600160a01b038116811461124057600080fd5b919050565b6000806040838503121561125857600080fd5b61126183611229565b946020939093013593505050565b60008060006060848603121561128457600080fd5b61128d84611229565b925061129b60208501611229565b9150604084013590509250925092565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff808411156112dc576112dc6112ab565b604051601f8501601f19908116603f01168101908282118183101715611304576113046112ab565b8160405280935085815286868601111561131d57600080fd5b858560208301376000602087830101525050509392505050565b60006020828403121561134957600080fd5b813567ffffffffffffffff81111561136057600080fd5b8201601f8101841361137157600080fd5b610fb4848235602084016112c1565b60006020828403121561139257600080fd5b610cd182611229565b600080604083850312156113ae57600080fd5b6113b783611229565b9150602083013580151581146113cc57600080fd5b809150509250929050565b600080600080608085870312156113ed57600080fd5b6113f685611229565b935061140460208601611229565b925060408501359150606085013567ffffffffffffffff81111561142757600080fd5b8501601f8101871361143857600080fd5b611447878235602084016112c1565b91505092959194509250565b6000806040838503121561146657600080fd5b61146f83611229565b915061147d60208401611229565b90509250929050565b600181811c9082168061149a57607f821691505b6020821081036114ba57634e487b7160e01b600052602260045260246000fd5b50919050565b601f82111561087c57600081815260208120601f850160051c810160208610156114e75750805b601f850160051c820191505b81811015610815578281556001016114f3565b815167ffffffffffffffff811115611520576115206112ab565b6115348161152e8454611486565b846114c0565b602080601f83116001811461156957600084156115515750858301515b600019600386901b1c1916600185901b178555610815565b600085815260208120601f198616915b8281101561159857888601518255948401946001909101908401611579565b50858210156115b65787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b634e487b7160e01b600052601160045260246000fd5b80820180821115610508576105086115c6565b8082028115828204841417610508576105086115c6565b600083516116188184602088016111ad565b83519083019061162c8183602088016111ad565b01949350505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611668908301846111d1565b9695505050505050565b60006020828403121561168457600080fd5b8151610cd18161117a56fea2646970667358221220fbf81fa54b871b421e976f03bd0c5b549bd1aa8636ebac4979473f6f8a33f3c164736f6c63430008120033697066733a2f2f516d6236736372476a756e4a784c4157756f4c4e455136717a354d6a3251746676326a635a6e515355573568776b2fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef00000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000000000000000c546f696c65742050455045530000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000b546f696c65745045504553000000000000000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106101b75760003560e01c80638da5cb5b116100ec578063b88d4fde1161008a578063d5abeb0111610064578063d5abeb0114610450578063e985e9c514610466578063f2fde38b14610486578063f968adbe146104a657600080fd5b8063b88d4fde14610403578063c87b56dd14610416578063d12397301461043657600080fd5b8063a035b1fe116100c6578063a035b1fe146103a4578063a0712d68146103ba578063a22cb465146103cd578063a7027357146103ed57600080fd5b80638da5cb5b1461035157806391b7f5ed1461036f57806395d89b411461038f57600080fd5b806342842e0e116101595780636352211e116101335780636352211e146102e757806370a0823114610307578063715018a6146103275780637ba5e6211461033c57600080fd5b806342842e0e1461029e57806347513334146102b157806355f804b3146102c757600080fd5b8063095ea7b311610195578063095ea7b31461024b57806318160ddd1461026057806323b872dd146102835780633ccfd60b1461029657600080fd5b806301ffc9a7146101bc57806306fdde03146101f1578063081812fc14610213575b600080fd5b3480156101c857600080fd5b506101dc6101d7366004611190565b6104bc565b60405190151581526020015b60405180910390f35b3480156101fd57600080fd5b5061020661050e565b6040516101e891906111fd565b34801561021f57600080fd5b5061023361022e366004611210565b6105a0565b6040516001600160a01b0390911681526020016101e8565b61025e610259366004611245565b6105e4565b005b34801561026c57600080fd5b50600154600054035b6040519081526020016101e8565b61025e61029136600461126f565b610684565b61025e61081d565b61025e6102ac36600461126f565b610861565b3480156102bd57600080fd5b50610275600e5481565b3480156102d357600080fd5b5061025e6102e2366004611337565b610881565b3480156102f357600080fd5b50610233610302366004611210565b610899565b34801561031357600080fd5b50610275610322366004611380565b6108a4565b34801561033357600080fd5b5061025e6108f3565b34801561034857600080fd5b5061025e610907565b34801561035d57600080fd5b506008546001600160a01b0316610233565b34801561037b57600080fd5b5061025e61038a366004611210565b610923565b34801561039b57600080fd5b50610206610930565b3480156103b057600080fd5b50610275600a5481565b61025e6103c8366004611210565b61093f565b3480156103d957600080fd5b5061025e6103e836600461139b565b610b9e565b3480156103f957600080fd5b50610275600c5481565b61025e6104113660046113d7565b610c0a565b34801561042257600080fd5b50610206610431366004611210565b610c54565b34801561044257600080fd5b50600f546101dc9060ff1681565b34801561045c57600080fd5b50610275600d5481565b34801561047257600080fd5b506101dc610481366004611453565b610cd8565b34801561049257600080fd5b5061025e6104a1366004611380565b610d06565b3480156104b257600080fd5b50610275600b5481565b60006301ffc9a760e01b6001600160e01b0319831614806104ed57506380ac58cd60e01b6001600160e01b03198316145b806105085750635b5e139f60e01b6001600160e01b03198316145b92915050565b60606002805461051d90611486565b80601f016020809104026020016040519081016040528092919081815260200182805461054990611486565b80156105965780601f1061056b57610100808354040283529160200191610596565b820191906000526020600020905b81548152906001019060200180831161057957829003601f168201915b5050505050905090565b60006105ab82610d7c565b6105c8576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b60006105ef82610899565b9050336001600160a01b038216146106285761060b8133610cd8565b610628576040516367d9dca160e11b815260040160405180910390fd5b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b600061068f82610da3565b9050836001600160a01b0316816001600160a01b0316146106c25760405162a1148160e81b815260040160405180910390fd5b60008281526006602052604090208054338082146001600160a01b0388169091141761070f576106f28633610cd8565b61070f57604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b03851661073657604051633a954ecd60e21b815260040160405180910390fd5b801561074157600082555b6001600160a01b038681166000908152600560205260408082208054600019019055918716808252919020805460010190554260a01b17600160e11b17600085815260046020526040812091909155600160e11b841690036107d3576001840160008181526004602052604081205490036107d15760005481146107d15760008181526004602052604090208490555b505b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b505050505050565b610825610e0a565b6008546040516001600160a01b03909116904780156108fc02916000818181858888f1935050505015801561085e573d6000803e3d6000fd5b50565b61087c83838360405180602001604052806000815250610c0a565b505050565b610889610e0a565b60096108958282611506565b5050565b600061050882610da3565b60006001600160a01b0382166108cd576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b6108fb610e0a565b6109056000610e64565b565b61090f610e0a565b600f805460ff19811660ff90911615179055565b61092b610e0a565b600a55565b60606003805461051d90611486565b600a54600e546000906109539060016115dc565b836109616001546000540390565b61096b91906115dc565b1080156109945750600c54336000908152601060205260409020546109919085906115dc565b11155b905080156109a157600091505b6109ab82846115ef565b3410156109f75760405162461bcd60e51b8152602060048201526015602482015274139bdd08195b9bdd59da08195d1a195c881cd95b9d605a1b60448201526064015b60405180910390fd5b600d54610a059060016115dc565b83610a136001546000540390565b610a1d91906115dc565b10610a635760405162461bcd60e51b8152602060048201526016602482015275139bdd08195b9bdd59da081d1bdad95b9cc81b19599d60521b60448201526064016109ee565b600f5460ff16610aad5760405162461bcd60e51b815260206004820152601560248201527426b4b73a1034b9903737ba103634bb32903cb2ba1760591b60448201526064016109ee565b600b54336000908152600560205260409081902054610ad7911c67ffffffffffffffff16856115dc565b1115610b1a5760405162461bcd60e51b8152602060048201526012602482015271115e18d959591959081d1a19481b1a5b5a5d60721b60448201526064016109ee565b323314610b695760405162461bcd60e51b815260206004820152601f60248201527f436f6e7472616374206d696e74696e67206973206e6f7420616c6c6f7765640060448201526064016109ee565b8015610b94573360009081526010602052604081208054859290610b8e9084906115dc565b90915550505b61087c3384610eb6565b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b610c15848484610684565b6001600160a01b0383163b15610c4e57610c3184848484610ed0565b610c4e576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b6060610c5f82610d7c565b610c7c57604051630a14c4b560e41b815260040160405180910390fd5b6000610c86610fbc565b90508051600003610ca65760405180602001604052806000815250610cd1565b80610cb084610fcb565b604051602001610cc1929190611606565b6040516020818303038152906040525b9392505050565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b610d0e610e0a565b6001600160a01b038116610d735760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016109ee565b61085e81610e64565b6000805482108015610508575050600090815260046020526040902054600160e01b161590565b600081600054811015610df15760008181526004602052604081205490600160e01b82169003610def575b80600003610cd1575060001901600081815260046020526040902054610dce565b505b604051636f96cda160e11b815260040160405180910390fd5b6008546001600160a01b031633146109055760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016109ee565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b61089582826040518060200160405280600081525061100f565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a0290610f05903390899088908890600401611635565b6020604051808303816000875af1925050508015610f40575060408051601f3d908101601f19168201909252610f3d91810190611672565b60015b610f9e573d808015610f6e576040519150601f19603f3d011682016040523d82523d6000602084013e610f73565b606091505b508051600003610f96576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b60606009805461051d90611486565b606060a06040510180604052602081039150506000815280825b600183039250600a81066030018353600a900480610fe55750819003601f19909101908152919050565b611019838361107c565b6001600160a01b0383163b1561087c576000548281035b6110436000868380600101945086610ed0565b611060576040516368d2bf6b60e11b815260040160405180910390fd5b81811061103057816000541461107557600080fd5b5050505050565b60008054908290036110a15760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b03831660008181526005602090815260408083208054680100000000000000018802019055848352600490915281206001851460e11b4260a01b178317905582840190839083907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8180a4600183015b81811461115057808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600101611118565b508160000361117157604051622e076360e81b815260040160405180910390fd5b60005550505050565b6001600160e01b03198116811461085e57600080fd5b6000602082840312156111a257600080fd5b8135610cd18161117a565b60005b838110156111c85781810151838201526020016111b0565b50506000910152565b600081518084526111e98160208601602086016111ad565b601f01601f19169290920160200192915050565b602081526000610cd160208301846111d1565b60006020828403121561122257600080fd5b5035919050565b80356001600160a01b038116811461124057600080fd5b919050565b6000806040838503121561125857600080fd5b61126183611229565b946020939093013593505050565b60008060006060848603121561128457600080fd5b61128d84611229565b925061129b60208501611229565b9150604084013590509250925092565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff808411156112dc576112dc6112ab565b604051601f8501601f19908116603f01168101908282118183101715611304576113046112ab565b8160405280935085815286868601111561131d57600080fd5b858560208301376000602087830101525050509392505050565b60006020828403121561134957600080fd5b813567ffffffffffffffff81111561136057600080fd5b8201601f8101841361137157600080fd5b610fb4848235602084016112c1565b60006020828403121561139257600080fd5b610cd182611229565b600080604083850312156113ae57600080fd5b6113b783611229565b9150602083013580151581146113cc57600080fd5b809150509250929050565b600080600080608085870312156113ed57600080fd5b6113f685611229565b935061140460208601611229565b925060408501359150606085013567ffffffffffffffff81111561142757600080fd5b8501601f8101871361143857600080fd5b611447878235602084016112c1565b91505092959194509250565b6000806040838503121561146657600080fd5b61146f83611229565b915061147d60208401611229565b90509250929050565b600181811c9082168061149a57607f821691505b6020821081036114ba57634e487b7160e01b600052602260045260246000fd5b50919050565b601f82111561087c57600081815260208120601f850160051c810160208610156114e75750805b601f850160051c820191505b81811015610815578281556001016114f3565b815167ffffffffffffffff811115611520576115206112ab565b6115348161152e8454611486565b846114c0565b602080601f83116001811461156957600084156115515750858301515b600019600386901b1c1916600185901b178555610815565b600085815260208120601f198616915b8281101561159857888601518255948401946001909101908401611579565b50858210156115b65787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b634e487b7160e01b600052601160045260246000fd5b80820180821115610508576105086115c6565b8082028115828204841417610508576105086115c6565b600083516116188184602088016111ad565b83519083019061162c8183602088016111ad565b01949350505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611668908301846111d1565b9695505050505050565b60006020828403121561168457600080fd5b8151610cd18161117a56fea2646970667358221220fbf81fa54b871b421e976f03bd0c5b549bd1aa8636ebac4979473f6f8a33f3c164736f6c63430008120033

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

00000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000000000000000c546f696c65742050455045530000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000b546f696c65745045504553000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : _name (string): Toilet PEPES
Arg [1] : _symbol (string): ToiletPEPES

-----Encoded View---------------
6 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000040
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [2] : 000000000000000000000000000000000000000000000000000000000000000c
Arg [3] : 546f696c65742050455045530000000000000000000000000000000000000000
Arg [4] : 000000000000000000000000000000000000000000000000000000000000000b
Arg [5] : 546f696c65745045504553000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

55083:1904:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21990:639;;;;;;;;;;-1:-1:-1;21990:639:0;;;;;:::i;:::-;;:::i;:::-;;;565:14:1;;558:22;540:41;;528:2;513:18;21990:639:0;;;;;;;;22892:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;29383:218::-;;;;;;;;;;-1:-1:-1;29383:218:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;1697:32:1;;;1679:51;;1667:2;1652:18;29383:218:0;1533:203:1;28816:408:0;;;;;;:::i;:::-;;:::i;:::-;;18643:323;;;;;;;;;;-1:-1:-1;18917:12:0;;18704:7;18901:13;:28;18643:323;;;2324:25:1;;;2312:2;2297:18;18643:323:0;2178:177:1;33022:2825:0;;;;;;:::i;:::-;;:::i;56566:114::-;;;:::i;35943:193::-;;;;;;:::i;:::-;;:::i;55314:35::-;;;;;;;;;;;;;;;;56804:88;;;;;;;;;;-1:-1:-1;56804:88:0;;;;;:::i;:::-;;:::i;24285:152::-;;;;;;;;;;-1:-1:-1;24285:152:0;;;;;:::i;:::-;;:::i;19827:233::-;;;;;;;;;;-1:-1:-1;19827:233:0;;;;;:::i;:::-;;:::i;2769:103::-;;;;;;;;;;;;;:::i;56474:84::-;;;;;;;;;;;;;:::i;2128:87::-;;;;;;;;;;-1:-1:-1;2201:6:0;;-1:-1:-1;;;;;2201:6:0;2128:87;;56900:84;;;;;;;;;;-1:-1:-1;56900:84:0;;;;;:::i;:::-;;:::i;23068:104::-;;;;;;;;;;;;;:::i;55162:31::-;;;;;;;;;;;;;;;;55668:798;;;;;;:::i;:::-;;:::i;29941:234::-;;;;;;;;;;-1:-1:-1;29941:234:0;;;;;:::i;:::-;;:::i;55234:35::-;;;;;;;;;;;;;;;;36734:407;;;;;;:::i;:::-;;:::i;23278:318::-;;;;;;;;;;-1:-1:-1;23278:318:0;;;;;:::i;:::-;;:::i;55356:31::-;;;;;;;;;;-1:-1:-1;55356:31:0;;;;;;;;55276;;;;;;;;;;;;;;;;30332:164;;;;;;;;;;-1:-1:-1;30332:164:0;;;;;:::i;:::-;;:::i;3027:201::-;;;;;;;;;;-1:-1:-1;3027:201:0;;;;;:::i;:::-;;:::i;55200:27::-;;;;;;;;;;;;;;;;21990:639;22075:4;-1:-1:-1;;;;;;;;;22399:25:0;;;;:102;;-1:-1:-1;;;;;;;;;;22476:25:0;;;22399:102;:179;;;-1:-1:-1;;;;;;;;;;22553:25:0;;;22399:179;22379:199;21990:639;-1:-1:-1;;21990:639:0:o;22892:100::-;22946:13;22979:5;22972:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22892:100;:::o;29383:218::-;29459:7;29484:16;29492:7;29484;:16::i;:::-;29479:64;;29509:34;;-1:-1:-1;;;29509:34:0;;;;;;;;;;;29479:64;-1:-1:-1;29563:24:0;;;;:15;:24;;;;;:30;-1:-1:-1;;;;;29563:30:0;;29383:218::o;28816:408::-;28905:13;28921:16;28929:7;28921;:16::i;:::-;28905:32;-1:-1:-1;53149:10:0;-1:-1:-1;;;;;28954:28:0;;;28950:175;;29002:44;29019:5;53149:10;30332:164;:::i;29002:44::-;28997:128;;29074:35;;-1:-1:-1;;;29074:35:0;;;;;;;;;;;28997:128;29137:24;;;;:15;:24;;;;;;:35;;-1:-1:-1;;;;;;29137:35:0;-1:-1:-1;;;;;29137:35:0;;;;;;;;;29188:28;;29137:24;;29188:28;;;;;;;28894:330;28816:408;;:::o;33022:2825::-;33164:27;33194;33213:7;33194:18;:27::i;:::-;33164:57;;33279:4;-1:-1:-1;;;;;33238:45:0;33254:19;-1:-1:-1;;;;;33238:45:0;;33234:86;;33292:28;;-1:-1:-1;;;33292:28:0;;;;;;;;;;;33234:86;33334:27;32130:24;;;:15;:24;;;;;32358:26;;53149:10;31755:30;;;-1:-1:-1;;;;;31448:28:0;;31733:20;;;31730:56;33520:180;;33613:43;33630:4;53149:10;30332:164;:::i;33613:43::-;33608:92;;33665:35;;-1:-1:-1;;;33665:35:0;;;;;;;;;;;33608:92;-1:-1:-1;;;;;33717:16:0;;33713:52;;33742:23;;-1:-1:-1;;;33742:23:0;;;;;;;;;;;33713:52;33914:15;33911:160;;;34054:1;34033:19;34026:30;33911:160;-1:-1:-1;;;;;34451:24:0;;;;;;;:18;:24;;;;;;34449:26;;-1:-1:-1;;34449:26:0;;;34520:22;;;;;;;;;34518:24;;-1:-1:-1;34518:24:0;;;27674:11;27649:23;27645:41;27632:63;-1:-1:-1;;;27632:63:0;34813:26;;;;:17;:26;;;;;:175;;;;-1:-1:-1;;;35108:47:0;;:52;;35104:627;;35213:1;35203:11;;35181:19;35336:30;;;:17;:30;;;;;;:35;;35332:384;;35474:13;;35459:11;:28;35455:242;;35621:30;;;;:17;:30;;;;;:52;;;35455:242;35162:569;35104:627;35778:7;35774:2;-1:-1:-1;;;;;35759:27:0;35768:4;-1:-1:-1;;;;;35759:27:0;;;;;;;;;;;35797:42;33153:2694;;;33022:2825;;;:::o;56566:114::-;2014:13;:11;:13::i;:::-;2201:6;;56624:48:::1;::::0;-1:-1:-1;;;;;2201:6:0;;;;56650:21:::1;56624:48:::0;::::1;;;::::0;::::1;::::0;;;56650:21;2201:6;56624:48;::::1;;;;;;;;;;;;;::::0;::::1;;;;;;56566:114::o:0;35943:193::-;36089:39;36106:4;36112:2;36116:7;36089:39;;;;;;;;;;;;:16;:39::i;:::-;35943:193;;;:::o;56804:88::-;2014:13;:11;:13::i;:::-;56871:7:::1;:13;56881:3:::0;56871:7;:13:::1;:::i;:::-;;56804:88:::0;:::o;24285:152::-;24357:7;24400:27;24419:7;24400:18;:27::i;19827:233::-;19899:7;-1:-1:-1;;;;;19923:19:0;;19919:60;;19951:28;;-1:-1:-1;;;19951:28:0;;;;;;;;;;;19919:60;-1:-1:-1;;;;;;19997:25:0;;;;;:18;:25;;;;;;13986:13;19997:55;;19827:233::o;2769:103::-;2014:13;:11;:13::i;:::-;2834:30:::1;2861:1;2834:18;:30::i;:::-;2769:103::o:0;56474:84::-;2014:13;:11;:13::i;:::-;56539:11:::1;::::0;;-1:-1:-1;;56524:26:0;::::1;56539:11;::::0;;::::1;56538:12;56524:26;::::0;;56474:84::o;56900:::-;2014:13;:11;:13::i;:::-;56962:5:::1;:14:::0;56900:84::o;23068:104::-;23124:13;23157:7;23150:14;;;;;:::i;55668:798::-;55740:5;;55796:13;;55725:12;;55796:17;;55812:1;55796:17;:::i;:::-;55788:5;55772:13;18917:12;;18704:7;18901:13;:28;;18643:323;55772:13;:21;;;;:::i;:::-;:41;55771:119;;;;-1:-1:-1;55873:16:0;;55850:10;55832:29;;;;:17;:29;;;;;;:37;;55864:5;;55832:37;:::i;:::-;:57;;55771:119;55756:135;;55908:6;55904:47;;;55938:1;55931:8;;55904:47;55984:12;55992:4;55984:5;:12;:::i;:::-;55971:9;:25;;55963:59;;;;-1:-1:-1;;;55963:59:0;;8624:2:1;55963:59:0;;;8606:21:1;8663:2;8643:18;;;8636:30;-1:-1:-1;;;8682:18:1;;;8675:51;8743:18;;55963:59:0;;;;;;;;;56065:9;;:13;;56077:1;56065:13;:::i;:::-;56057:5;56041:13;18917:12;;18704:7;18901:13;:28;;18643:323;56041:13;:21;;;;:::i;:::-;:37;56033:72;;;;-1:-1:-1;;;56033:72:0;;8974:2:1;56033:72:0;;;8956:21:1;9013:2;8993:18;;;8986:30;-1:-1:-1;;;9032:18:1;;;9025:52;9094:18;;56033:72:0;8772:346:1;56033:72:0;56124:11;;;;56116:45;;;;-1:-1:-1;;;56116:45:0;;9325:2:1;56116:45:0;;;9307:21:1;9364:2;9344:18;;;9337:30;-1:-1:-1;;;9383:18:1;;;9376:51;9444:18;;56116:45:0;9123:345:1;56116:45:0;56217:8;;56202:10;20203:7;20231:25;;;:18;:25;;14124:2;20231:25;;;;;56180:33;;20231:50;13986:13;20230:82;56180:5;:33;:::i;:::-;:45;;56172:76;;;;-1:-1:-1;;;56172:76:0;;9675:2:1;56172:76:0;;;9657:21:1;9714:2;9694:18;;;9687:30;-1:-1:-1;;;9733:18:1;;;9726:48;9791:18;;56172:76:0;9473:342:1;56172:76:0;56267:9;56280:10;56267:23;56259:67;;;;-1:-1:-1;;;56259:67:0;;10022:2:1;56259:67:0;;;10004:21:1;10061:2;10041:18;;;10034:30;10100:33;10080:18;;;10073:61;10151:18;;56259:67:0;9820:355:1;56259:67:0;56345:6;56341:77;;;56386:10;56368:29;;;;:17;:29;;;;;:38;;56401:5;;56368:29;:38;;56401:5;;56368:38;:::i;:::-;;;;-1:-1:-1;;56341:77:0;56430:28;56440:10;56452:5;56430:9;:28::i;29941:234::-;53149:10;30036:39;;;;:18;:39;;;;;;;;-1:-1:-1;;;;;30036:49:0;;;;;;;;;;;;:60;;-1:-1:-1;;30036:60:0;;;;;;;;;;30112:55;;540:41:1;;;30036:49:0;;53149:10;30112:55;;513:18:1;30112:55:0;;;;;;;29941:234;;:::o;36734:407::-;36909:31;36922:4;36928:2;36932:7;36909:12;:31::i;:::-;-1:-1:-1;;;;;36955:14:0;;;:19;36951:183;;36994:56;37025:4;37031:2;37035:7;37044:5;36994:30;:56::i;:::-;36989:145;;37078:40;;-1:-1:-1;;;37078:40:0;;;;;;;;;;;36989:145;36734:407;;;;:::o;23278:318::-;23351:13;23382:16;23390:7;23382;:16::i;:::-;23377:59;;23407:29;;-1:-1:-1;;;23407:29:0;;;;;;;;;;;23377:59;23449:21;23473:10;:8;:10::i;:::-;23449:34;;23507:7;23501:21;23526:1;23501:26;:87;;;;;;;;;;;;;;;;;23554:7;23563:18;23573:7;23563:9;:18::i;:::-;23537:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;23501:87;23494:94;23278:318;-1:-1:-1;;;23278:318:0:o;30332:164::-;-1:-1:-1;;;;;30453:25:0;;;30429:4;30453:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;30332:164::o;3027:201::-;2014:13;:11;:13::i;:::-;-1:-1:-1;;;;;3116:22:0;::::1;3108:73;;;::::0;-1:-1:-1;;;3108:73:0;;10883:2:1;3108:73:0::1;::::0;::::1;10865:21:1::0;10922:2;10902:18;;;10895:30;10961:34;10941:18;;;10934:62;-1:-1:-1;;;11012:18:1;;;11005:36;11058:19;;3108:73:0::1;10681:402:1::0;3108:73:0::1;3192:28;3211:8;3192:18;:28::i;30754:282::-:0;30819:4;30909:13;;30899:7;:23;30856:153;;;;-1:-1:-1;;30960:26:0;;;;:17;:26;;;;;;-1:-1:-1;;;30960:44:0;:49;;30754:282::o;25440:1275::-;25507:7;25542;25644:13;;25637:4;:20;25633:1015;;;25682:14;25699:23;;;:17;:23;;;;;;;-1:-1:-1;;;25788:24:0;;:29;;25784:845;;26453:113;26460:6;26470:1;26460:11;26453:113;;-1:-1:-1;;;26531:6:0;26513:25;;;;:17;:25;;;;;;26453:113;;25784:845;25659:989;25633:1015;26676:31;;-1:-1:-1;;;26676:31:0;;;;;;;;;;;2293:132;2201:6;;-1:-1:-1;;;;;2201:6:0;53149:10;2357:23;2349:68;;;;-1:-1:-1;;;2349:68:0;;11290:2:1;2349:68:0;;;11272:21:1;;;11309:18;;;11302:30;11368:34;11348:18;;;11341:62;11420:18;;2349:68:0;11088:356:1;3388:191:0;3481:6;;;-1:-1:-1;;;;;3498:17:0;;;-1:-1:-1;;;;;;3498:17:0;;;;;;;3531:40;;3481:6;;;3498:17;3481:6;;3531:40;;3462:16;;3531:40;3451:128;3388:191;:::o;46894:112::-;46971:27;46981:2;46985:8;46971:27;;;;;;;;;;;;:9;:27::i;39225:716::-;39409:88;;-1:-1:-1;;;39409:88:0;;39388:4;;-1:-1:-1;;;;;39409:45:0;;;;;:88;;53149:10;;39476:4;;39482:7;;39491:5;;39409:88;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;39409:88:0;;;;;;;;-1:-1:-1;;39409:88:0;;;;;;;;;;;;:::i;:::-;;;39405:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39692:6;:13;39709:1;39692:18;39688:235;;39738:40;;-1:-1:-1;;;39738:40:0;;;;;;;;;;;39688:235;39881:6;39875:13;39866:6;39862:2;39858:15;39851:38;39405:529;-1:-1:-1;;;;;;39568:64:0;-1:-1:-1;;;39568:64:0;;-1:-1:-1;39405:529:0;39225:716;;;;;;:::o;56688:108::-;56748:13;56781:7;56774:14;;;;;:::i;53269:1745::-;53334:17;53768:4;53761;53755:11;53751:22;53860:1;53854:4;53847:15;53935:4;53932:1;53928:12;53921:19;;;54017:1;54012:3;54005:14;54121:3;54360:5;54342:428;54408:1;54403:3;54399:11;54392:18;;54579:2;54573:4;54569:13;54565:2;54561:22;54556:3;54548:36;54673:2;54663:13;;54730:25;54342:428;54730:25;-1:-1:-1;54800:13:0;;;-1:-1:-1;;54915:14:0;;;54977:19;;;54915:14;53269:1745;-1:-1:-1;53269:1745:0:o;46121:689::-;46252:19;46258:2;46262:8;46252:5;:19::i;:::-;-1:-1:-1;;;;;46313:14:0;;;:19;46309:483;;46353:11;46367:13;46415:14;;;46448:233;46479:62;46518:1;46522:2;46526:7;;;;;;46535:5;46479:30;:62::i;:::-;46474:167;;46577:40;;-1:-1:-1;;;46577:40:0;;;;;;;;;;;46474:167;46676:3;46668:5;:11;46448:233;;46763:3;46746:13;;:20;46742:34;;46768:8;;;46742:34;46334:458;;46121:689;;;:::o;40403:2966::-;40476:20;40499:13;;;40527;;;40523:44;;40549:18;;-1:-1:-1;;;40549:18:0;;;;;;;;;;;40523:44;-1:-1:-1;;;;;41055:22:0;;;;;;:18;:22;;;;14124:2;41055:22;;;:71;;41093:32;41081:45;;41055:71;;;41369:31;;;:17;:31;;;;;-1:-1:-1;28105:15:0;;28079:24;28075:46;27674:11;27649:23;27645:41;27642:52;27632:63;;41369:173;;41604:23;;;;41369:31;;41055:22;;42369:25;41055:22;;42222:335;42883:1;42869:12;42865:20;42823:346;42924:3;42915:7;42912:16;42823:346;;43142:7;43132:8;43129:1;43102:25;43099:1;43096;43091:59;42977:1;42964:15;42823:346;;;42827:77;43202:8;43214:1;43202:13;43198:45;;43224:19;;-1:-1:-1;;;43224:19:0;;;;;;;;;;;43198:45;43260:13;:19;-1:-1:-1;35943:193:0;;;:::o;14:131:1:-;-1:-1:-1;;;;;;88:32:1;;78:43;;68:71;;135:1;132;125:12;150:245;208:6;261:2;249:9;240:7;236:23;232:32;229:52;;;277:1;274;267:12;229:52;316:9;303:23;335:30;359:5;335:30;:::i;592:250::-;677:1;687:113;701:6;698:1;695:13;687:113;;;777:11;;;771:18;758:11;;;751:39;723:2;716:10;687:113;;;-1:-1:-1;;834:1:1;816:16;;809:27;592:250::o;847:271::-;889:3;927:5;921:12;954:6;949:3;942:19;970:76;1039:6;1032:4;1027:3;1023:14;1016:4;1009:5;1005:16;970:76;:::i;:::-;1100:2;1079:15;-1:-1:-1;;1075:29:1;1066:39;;;;1107:4;1062:50;;847:271;-1:-1:-1;;847:271:1:o;1123:220::-;1272:2;1261:9;1254:21;1235:4;1292:45;1333:2;1322:9;1318:18;1310:6;1292:45;:::i;1348:180::-;1407:6;1460:2;1448:9;1439:7;1435:23;1431:32;1428:52;;;1476:1;1473;1466:12;1428:52;-1:-1:-1;1499:23:1;;1348:180;-1:-1:-1;1348:180:1:o;1741:173::-;1809:20;;-1:-1:-1;;;;;1858:31:1;;1848:42;;1838:70;;1904:1;1901;1894:12;1838:70;1741:173;;;:::o;1919:254::-;1987:6;1995;2048:2;2036:9;2027:7;2023:23;2019:32;2016:52;;;2064:1;2061;2054:12;2016:52;2087:29;2106:9;2087:29;:::i;:::-;2077:39;2163:2;2148:18;;;;2135:32;;-1:-1:-1;;;1919:254:1:o;2360:328::-;2437:6;2445;2453;2506:2;2494:9;2485:7;2481:23;2477:32;2474:52;;;2522:1;2519;2512:12;2474:52;2545:29;2564:9;2545:29;:::i;:::-;2535:39;;2593:38;2627:2;2616:9;2612:18;2593:38;:::i;:::-;2583:48;;2678:2;2667:9;2663:18;2650:32;2640:42;;2360:328;;;;;:::o;2693:127::-;2754:10;2749:3;2745:20;2742:1;2735:31;2785:4;2782:1;2775:15;2809:4;2806:1;2799:15;2825:632;2890:5;2920:18;2961:2;2953:6;2950:14;2947:40;;;2967:18;;:::i;:::-;3042:2;3036:9;3010:2;3096:15;;-1:-1:-1;;3092:24:1;;;3118:2;3088:33;3084:42;3072:55;;;3142:18;;;3162:22;;;3139:46;3136:72;;;3188:18;;:::i;:::-;3228:10;3224:2;3217:22;3257:6;3248:15;;3287:6;3279;3272:22;3327:3;3318:6;3313:3;3309:16;3306:25;3303:45;;;3344:1;3341;3334:12;3303:45;3394:6;3389:3;3382:4;3374:6;3370:17;3357:44;3449:1;3442:4;3433:6;3425;3421:19;3417:30;3410:41;;;;2825:632;;;;;:::o;3462:451::-;3531:6;3584:2;3572:9;3563:7;3559:23;3555:32;3552:52;;;3600:1;3597;3590:12;3552:52;3640:9;3627:23;3673:18;3665:6;3662:30;3659:50;;;3705:1;3702;3695:12;3659:50;3728:22;;3781:4;3773:13;;3769:27;-1:-1:-1;3759:55:1;;3810:1;3807;3800:12;3759:55;3833:74;3899:7;3894:2;3881:16;3876:2;3872;3868:11;3833:74;:::i;3918:186::-;3977:6;4030:2;4018:9;4009:7;4005:23;4001:32;3998:52;;;4046:1;4043;4036:12;3998:52;4069:29;4088:9;4069:29;:::i;4109:347::-;4174:6;4182;4235:2;4223:9;4214:7;4210:23;4206:32;4203:52;;;4251:1;4248;4241:12;4203:52;4274:29;4293:9;4274:29;:::i;:::-;4264:39;;4353:2;4342:9;4338:18;4325:32;4400:5;4393:13;4386:21;4379:5;4376:32;4366:60;;4422:1;4419;4412:12;4366:60;4445:5;4435:15;;;4109:347;;;;;:::o;4461:667::-;4556:6;4564;4572;4580;4633:3;4621:9;4612:7;4608:23;4604:33;4601:53;;;4650:1;4647;4640:12;4601:53;4673:29;4692:9;4673:29;:::i;:::-;4663:39;;4721:38;4755:2;4744:9;4740:18;4721:38;:::i;:::-;4711:48;;4806:2;4795:9;4791:18;4778:32;4768:42;;4861:2;4850:9;4846:18;4833:32;4888:18;4880:6;4877:30;4874:50;;;4920:1;4917;4910:12;4874:50;4943:22;;4996:4;4988:13;;4984:27;-1:-1:-1;4974:55:1;;5025:1;5022;5015:12;4974:55;5048:74;5114:7;5109:2;5096:16;5091:2;5087;5083:11;5048:74;:::i;:::-;5038:84;;;4461:667;;;;;;;:::o;5133:260::-;5201:6;5209;5262:2;5250:9;5241:7;5237:23;5233:32;5230:52;;;5278:1;5275;5268:12;5230:52;5301:29;5320:9;5301:29;:::i;:::-;5291:39;;5349:38;5383:2;5372:9;5368:18;5349:38;:::i;:::-;5339:48;;5133:260;;;;;:::o;5398:380::-;5477:1;5473:12;;;;5520;;;5541:61;;5595:4;5587:6;5583:17;5573:27;;5541:61;5648:2;5640:6;5637:14;5617:18;5614:38;5611:161;;5694:10;5689:3;5685:20;5682:1;5675:31;5729:4;5726:1;5719:15;5757:4;5754:1;5747:15;5611:161;;5398:380;;;:::o;5909:545::-;6011:2;6006:3;6003:11;6000:448;;;6047:1;6072:5;6068:2;6061:17;6117:4;6113:2;6103:19;6187:2;6175:10;6171:19;6168:1;6164:27;6158:4;6154:38;6223:4;6211:10;6208:20;6205:47;;;-1:-1:-1;6246:4:1;6205:47;6301:2;6296:3;6292:12;6289:1;6285:20;6279:4;6275:31;6265:41;;6356:82;6374:2;6367:5;6364:13;6356:82;;;6419:17;;;6400:1;6389:13;6356:82;;6630:1352;6756:3;6750:10;6783:18;6775:6;6772:30;6769:56;;;6805:18;;:::i;:::-;6834:97;6924:6;6884:38;6916:4;6910:11;6884:38;:::i;:::-;6878:4;6834:97;:::i;:::-;6986:4;;7050:2;7039:14;;7067:1;7062:663;;;;7769:1;7786:6;7783:89;;;-1:-1:-1;7838:19:1;;;7832:26;7783:89;-1:-1:-1;;6587:1:1;6583:11;;;6579:24;6575:29;6565:40;6611:1;6607:11;;;6562:57;7885:81;;7032:944;;7062:663;5856:1;5849:14;;;5893:4;5880:18;;-1:-1:-1;;7098:20:1;;;7216:236;7230:7;7227:1;7224:14;7216:236;;;7319:19;;;7313:26;7298:42;;7411:27;;;;7379:1;7367:14;;;;7246:19;;7216:236;;;7220:3;7480:6;7471:7;7468:19;7465:201;;;7541:19;;;7535:26;-1:-1:-1;;7624:1:1;7620:14;;;7636:3;7616:24;7612:37;7608:42;7593:58;7578:74;;7465:201;-1:-1:-1;;;;;7712:1:1;7696:14;;;7692:22;7679:36;;-1:-1:-1;6630:1352:1:o;7987:127::-;8048:10;8043:3;8039:20;8036:1;8029:31;8079:4;8076:1;8069:15;8103:4;8100:1;8093:15;8119:125;8184:9;;;8205:10;;;8202:36;;;8218:18;;:::i;8249:168::-;8322:9;;;8353;;8370:15;;;8364:22;;8350:37;8340:71;;8391:18;;:::i;10180:496::-;10359:3;10397:6;10391:13;10413:66;10472:6;10467:3;10460:4;10452:6;10448:17;10413:66;:::i;:::-;10542:13;;10501:16;;;;10564:70;10542:13;10501:16;10611:4;10599:17;;10564:70;:::i;:::-;10650:20;;10180:496;-1:-1:-1;;;;10180:496:1:o;11449:489::-;-1:-1:-1;;;;;11718:15:1;;;11700:34;;11770:15;;11765:2;11750:18;;11743:43;11817:2;11802:18;;11795:34;;;11865:3;11860:2;11845:18;;11838:31;;;11643:4;;11886:46;;11912:19;;11904:6;11886:46;:::i;:::-;11878:54;11449:489;-1:-1:-1;;;;;;11449:489:1:o;11943:249::-;12012:6;12065:2;12053:9;12044:7;12040:23;12036:32;12033:52;;;12081:1;12078;12071:12;12033:52;12113:9;12107:16;12132:30;12156:5;12132:30;:::i

Swarm Source

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