ETH Price: $3,005.75 (-0.24%)
Gas: 6 Gwei

Token

Patriarch (PATRIARCH)
 

Overview

Max Total Supply

777 PATRIARCH

Holders

92

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Balance
10 PATRIARCH
0x1174044bbedf5a89e1d14ad214434b3083b9c48a
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:
PatriarchCollection

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-10-14
*/

// SPDX-License-Identifier: MIT

// File erc721a/contracts/[email protected]

// Original license: SPDX_License_Identifier: MIT
// ERC721A Contracts v4.2.3
// Creator: Chiru Labs

pragma solidity ^0.8.18;
/**
 * @dev Interface of ERC721A.
 */
interface IERC721A {
    /**
 0x488D44000B200D1f88Cb0AA7B265A01bB90bB92a    * 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/[email protected]

// Original license: SPDX_License_Identifier: MIT
// 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/Patriarch.sol

// Original license: SPDX_License_Identifier: MIT
pragma solidity ^0.8.18;

abstract contract Context {
    function _msgSender() internal view virtual returns (address) {
        return msg.sender;
    }

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


abstract contract Ownable is Context {
    address private _owner;

    /**
     * @dev The caller account is not authorized to perform an operation.
     */
    error OwnableUnauthorizedAccount(address account);

    /**
     * @dev The owner is not a valid owner account. (eg. `address(0)`)
     */
    error OwnableInvalidOwner(address owner);

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

    /**
     * @dev Initializes the contract setting the address provided by the deployer as the initial owner.
     */
    constructor(address initialOwner) {
        if (initialOwner == address(0)) {
            revert OwnableInvalidOwner(address(0));
        }
        _transferOwnership(initialOwner);
    }

    /**
     * @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 {
        if (owner() != _msgSender()) {
            revert OwnableUnauthorizedAccount(_msgSender());
        }
    }

    /**
     * @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 {
        if (newOwner == address(0)) {
            revert OwnableInvalidOwner(address(0));
        }
        _transferOwnership(newOwner);
    }

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


contract PatriarchCollection is ERC721A, Ownable(msg.sender){
    uint256 public constant MAX_SUPPLY = 777;
    uint256 public unitPrice = 0.0025 ether;
    string public baseURI;

    bool public isMintingEnable;

    constructor(string memory uri, bool _isMintingEnable) ERC721A("Patriarch", "PATRIARCH") {
        baseURI = uri;
        isMintingEnable = _isMintingEnable;
    }

    function changeMintPrice(uint256 _unitPrice) public onlyOwner {
        unitPrice= _unitPrice;
    }



    function flipMintEnable() public onlyOwner {
        isMintingEnable = !isMintingEnable;
    }

    function setUri(string memory uri) external onlyOwner {
        baseURI = uri;
    }
    
    function mint(uint256 quantity) external payable {
        require(isMintingEnable,"Mint Not Enabled");
        require(totalSupply()+quantity<=MAX_SUPPLY,"max supply exceeds");
        require(msg.value >= quantity*unitPrice, "invalid payable value" );
        _mint(msg.sender, quantity);
    }


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


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

    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        if (!_exists(tokenId)) revert URIQueryForNonexistentToken();
        string memory uri = _baseURI();
        return bytes(uri).length != 0 ? string(abi.encodePacked(uri, _toString(tokenId),".json")) : '';
    }



    
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"uri","type":"string"},{"internalType":"bool","name":"_isMintingEnable","type":"bool"}],"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":[{"internalType":"address","name":"owner","type":"address"}],"name":"OwnableInvalidOwner","type":"error"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"OwnableUnauthorizedAccount","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":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_unitPrice","type":"uint256"}],"name":"changeMintPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"flipMintEnable","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":"isMintingEnable","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"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":"setUri","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":"unitPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040526608e1bc9bf040006009553480156200001c57600080fd5b5060405162001896380380620018968339810160408190526200003f916200018b565b33604051806040016040528060098152602001680a0c2e8e4d2c2e4c6d60bb1b815250604051806040016040528060098152602001680a082a8a49282a486960bb1b815250816002908162000095919062000302565b506003620000a4828262000302565b506000805550506001600160a01b038116620000da57604051631e4fbdf760e01b81526000600482015260240160405180910390fd5b620000e5816200010d565b50600a620000f4838262000302565b50600b805460ff191691151591909117905550620003ce565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b634e487b7160e01b600052604160045260246000fd5b805180151581146200018657600080fd5b919050565b600080604083850312156200019f57600080fd5b82516001600160401b0380821115620001b757600080fd5b818501915085601f830112620001cc57600080fd5b815181811115620001e157620001e16200015f565b604051601f8201601f19908116603f011681019083821181831017156200020c576200020c6200015f565b816040528281526020935088848487010111156200022957600080fd5b600091505b828210156200024d57848201840151818301850152908301906200022e565b60008484830101528096505050506200026881860162000175565b925050509250929050565b600181811c908216806200028857607f821691505b602082108103620002a957634e487b7160e01b600052602260045260246000fd5b50919050565b601f821115620002fd57600081815260208120601f850160051c81016020861015620002d85750805b601f850160051c820191505b81811015620002f957828155600101620002e4565b5050505b505050565b81516001600160401b038111156200031e576200031e6200015f565b62000336816200032f845462000273565b84620002af565b602080601f8311600181146200036e5760008415620003555750858301515b600019600386901b1c1916600185901b178555620002f9565b600085815260208120601f198616915b828110156200039f578886015182559484019460019091019084016200037e565b5085821015620003be5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b6114b880620003de6000396000f3fe6080604052600436106101815760003560e01c80636c0360eb116100d1578063a0712d681161008a578063c87b56dd11610064578063c87b56dd146103f0578063e73faa2d14610410578063e985e9c514610426578063f2fde38b1461044657600080fd5b8063a0712d68146103aa578063a22cb465146103bd578063b88d4fde146103dd57600080fd5b80636c0360eb1461030d57806370a0823114610322578063715018a6146103425780638da5cb5b1461035757806395d89b41146103755780639b642de11461038a57600080fd5b8063301356001161013e5780633fd17366116101185780633fd17366146102a057806342842e0e146102c05780634735debc146102d35780636352211e146102ed57600080fd5b8063301356001461026057806332cb6b0c146102755780633ccfd60b1461028b57600080fd5b806301ffc9a71461018657806306fdde03146101bb578063081812fc146101dd578063095ea7b31461021557806318160ddd1461022a57806323b872dd1461024d575b600080fd5b34801561019257600080fd5b506101a66101a1366004610f73565b610466565b60405190151581526020015b60405180910390f35b3480156101c757600080fd5b506101d06104b8565b6040516101b29190610fe0565b3480156101e957600080fd5b506101fd6101f8366004610ff3565b61054a565b6040516001600160a01b0390911681526020016101b2565b610228610223366004611028565b61058e565b005b34801561023657600080fd5b50600154600054035b6040519081526020016101b2565b61022861025b366004611052565b61062e565b34801561026c57600080fd5b506102286107c7565b34801561028157600080fd5b5061023f61030981565b34801561029757600080fd5b506102286107e3565b3480156102ac57600080fd5b506102286102bb366004610ff3565b61081a565b6102286102ce366004611052565b610827565b3480156102df57600080fd5b50600b546101a69060ff1681565b3480156102f957600080fd5b506101fd610308366004610ff3565b610847565b34801561031957600080fd5b506101d0610852565b34801561032e57600080fd5b5061023f61033d36600461108e565b6108e0565b34801561034e57600080fd5b5061022861092f565b34801561036357600080fd5b506008546001600160a01b03166101fd565b34801561038157600080fd5b506101d0610943565b34801561039657600080fd5b506102286103a5366004611135565b610952565b6102286103b8366004610ff3565b61096a565b3480156103c957600080fd5b506102286103d836600461117e565b610a70565b6102286103eb3660046111ba565b610adc565b3480156103fc57600080fd5b506101d061040b366004610ff3565b610b26565b34801561041c57600080fd5b5061023f60095481565b34801561043257600080fd5b506101a6610441366004611236565b610baa565b34801561045257600080fd5b5061022861046136600461108e565b610bd8565b60006301ffc9a760e01b6001600160e01b03198316148061049757506380ac58cd60e01b6001600160e01b03198316145b806104b25750635b5e139f60e01b6001600160e01b03198316145b92915050565b6060600280546104c790611269565b80601f01602080910402602001604051908101604052809291908181526020018280546104f390611269565b80156105405780601f1061051557610100808354040283529160200191610540565b820191906000526020600020905b81548152906001019060200180831161052357829003601f168201915b5050505050905090565b600061055582610c13565b610572576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b600061059982610847565b9050336001600160a01b038216146105d2576105b58133610baa565b6105d2576040516367d9dca160e11b815260040160405180910390fd5b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b600061063982610c3a565b9050836001600160a01b0316816001600160a01b03161461066c5760405162a1148160e81b815260040160405180910390fd5b60008281526006602052604090208054338082146001600160a01b038816909114176106b95761069c8633610baa565b6106b957604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b0385166106e057604051633a954ecd60e21b815260040160405180910390fd5b80156106eb57600082555b6001600160a01b038681166000908152600560205260408082208054600019019055918716808252919020805460010190554260a01b17600160e11b17600085815260046020526040812091909155600160e11b8416900361077d5760018401600081815260046020526040812054900361077b57600054811461077b5760008181526004602052604090208490555b505b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b505050505050565b6107cf610ca1565b600b805460ff19811660ff90911615179055565b6107eb610ca1565b60405133904780156108fc02916000818181858888f19350505050158015610817573d6000803e3d6000fd5b50565b610822610ca1565b600955565b61084283838360405180602001604052806000815250610adc565b505050565b60006104b282610c3a565b600a805461085f90611269565b80601f016020809104026020016040519081016040528092919081815260200182805461088b90611269565b80156108d85780601f106108ad576101008083540402835291602001916108d8565b820191906000526020600020905b8154815290600101906020018083116108bb57829003601f168201915b505050505081565b60006001600160a01b038216610909576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b610937610ca1565b6109416000610cce565b565b6060600380546104c790611269565b61095a610ca1565b600a61096682826112e9565b5050565b600b5460ff166109b45760405162461bcd60e51b815260206004820152601060248201526f135a5b9d08139bdd08115b98589b195960821b60448201526064015b60405180910390fd5b610309816109c56001546000540390565b6109cf91906113bf565b1115610a125760405162461bcd60e51b81526020600482015260126024820152716d617820737570706c79206578636565647360701b60448201526064016109ab565b600954610a1f90826113d2565b341015610a665760405162461bcd60e51b8152602060048201526015602482015274696e76616c69642070617961626c652076616c756560581b60448201526064016109ab565b6108173382610d20565b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b610ae784848461062e565b6001600160a01b0383163b15610b2057610b0384848484610e1e565b610b20576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b6060610b3182610c13565b610b4e57604051630a14c4b560e41b815260040160405180910390fd5b6000610b58610f0a565b90508051600003610b785760405180602001604052806000815250610ba3565b80610b8284610f19565b604051602001610b939291906113e9565b6040516020818303038152906040525b9392505050565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b610be0610ca1565b6001600160a01b038116610c0a57604051631e4fbdf760e01b8152600060048201526024016109ab565b61081781610cce565b60008054821080156104b2575050600090815260046020526040902054600160e01b161590565b600081600054811015610c885760008181526004602052604081205490600160e01b82169003610c86575b80600003610ba3575060001901600081815260046020526040902054610c65565b505b604051636f96cda160e11b815260040160405180910390fd5b6008546001600160a01b031633146109415760405163118cdaa760e01b81523360048201526024016109ab565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6000805490829003610d455760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b03831660008181526005602090815260408083208054680100000000000000018802019055848352600490915281206001851460e11b4260a01b178317905582840190839083907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8180a4600183015b818114610df457808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600101610dbc565b5081600003610e1557604051622e076360e81b815260040160405180910390fd5b60005550505050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a0290610e53903390899088908890600401611428565b6020604051808303816000875af1925050508015610e8e575060408051601f3d908101601f19168201909252610e8b91810190611465565b60015b610eec573d808015610ebc576040519150601f19603f3d011682016040523d82523d6000602084013e610ec1565b606091505b508051600003610ee4576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b6060600a80546104c790611269565b606060a06040510180604052602081039150506000815280825b600183039250600a81066030018353600a900480610f335750819003601f19909101908152919050565b6001600160e01b03198116811461081757600080fd5b600060208284031215610f8557600080fd5b8135610ba381610f5d565b60005b83811015610fab578181015183820152602001610f93565b50506000910152565b60008151808452610fcc816020860160208601610f90565b601f01601f19169290920160200192915050565b602081526000610ba36020830184610fb4565b60006020828403121561100557600080fd5b5035919050565b80356001600160a01b038116811461102357600080fd5b919050565b6000806040838503121561103b57600080fd5b6110448361100c565b946020939093013593505050565b60008060006060848603121561106757600080fd5b6110708461100c565b925061107e6020850161100c565b9150604084013590509250925092565b6000602082840312156110a057600080fd5b610ba38261100c565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff808411156110da576110da6110a9565b604051601f8501601f19908116603f01168101908282118183101715611102576111026110a9565b8160405280935085815286868601111561111b57600080fd5b858560208301376000602087830101525050509392505050565b60006020828403121561114757600080fd5b813567ffffffffffffffff81111561115e57600080fd5b8201601f8101841361116f57600080fd5b610f02848235602084016110bf565b6000806040838503121561119157600080fd5b61119a8361100c565b9150602083013580151581146111af57600080fd5b809150509250929050565b600080600080608085870312156111d057600080fd5b6111d98561100c565b93506111e76020860161100c565b925060408501359150606085013567ffffffffffffffff81111561120a57600080fd5b8501601f8101871361121b57600080fd5b61122a878235602084016110bf565b91505092959194509250565b6000806040838503121561124957600080fd5b6112528361100c565b91506112606020840161100c565b90509250929050565b600181811c9082168061127d57607f821691505b60208210810361129d57634e487b7160e01b600052602260045260246000fd5b50919050565b601f82111561084257600081815260208120601f850160051c810160208610156112ca5750805b601f850160051c820191505b818110156107bf578281556001016112d6565b815167ffffffffffffffff811115611303576113036110a9565b611317816113118454611269565b846112a3565b602080601f83116001811461134c57600084156113345750858301515b600019600386901b1c1916600185901b1785556107bf565b600085815260208120601f198616915b8281101561137b5788860151825594840194600190910190840161135c565b50858210156113995787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b634e487b7160e01b600052601160045260246000fd5b808201808211156104b2576104b26113a9565b80820281158282048414176104b2576104b26113a9565b600083516113fb818460208801610f90565b83519083019061140f818360208801610f90565b64173539b7b760d91b9101908152600501949350505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061145b90830184610fb4565b9695505050505050565b60006020828403121561147757600080fd5b8151610ba381610f5d56fea264697066735822122074db82f2a6661440e9d62aa91ec28b3d3e0f8534cc7d3fcb11ed1affb5bee07664736f6c63430008120033000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106101815760003560e01c80636c0360eb116100d1578063a0712d681161008a578063c87b56dd11610064578063c87b56dd146103f0578063e73faa2d14610410578063e985e9c514610426578063f2fde38b1461044657600080fd5b8063a0712d68146103aa578063a22cb465146103bd578063b88d4fde146103dd57600080fd5b80636c0360eb1461030d57806370a0823114610322578063715018a6146103425780638da5cb5b1461035757806395d89b41146103755780639b642de11461038a57600080fd5b8063301356001161013e5780633fd17366116101185780633fd17366146102a057806342842e0e146102c05780634735debc146102d35780636352211e146102ed57600080fd5b8063301356001461026057806332cb6b0c146102755780633ccfd60b1461028b57600080fd5b806301ffc9a71461018657806306fdde03146101bb578063081812fc146101dd578063095ea7b31461021557806318160ddd1461022a57806323b872dd1461024d575b600080fd5b34801561019257600080fd5b506101a66101a1366004610f73565b610466565b60405190151581526020015b60405180910390f35b3480156101c757600080fd5b506101d06104b8565b6040516101b29190610fe0565b3480156101e957600080fd5b506101fd6101f8366004610ff3565b61054a565b6040516001600160a01b0390911681526020016101b2565b610228610223366004611028565b61058e565b005b34801561023657600080fd5b50600154600054035b6040519081526020016101b2565b61022861025b366004611052565b61062e565b34801561026c57600080fd5b506102286107c7565b34801561028157600080fd5b5061023f61030981565b34801561029757600080fd5b506102286107e3565b3480156102ac57600080fd5b506102286102bb366004610ff3565b61081a565b6102286102ce366004611052565b610827565b3480156102df57600080fd5b50600b546101a69060ff1681565b3480156102f957600080fd5b506101fd610308366004610ff3565b610847565b34801561031957600080fd5b506101d0610852565b34801561032e57600080fd5b5061023f61033d36600461108e565b6108e0565b34801561034e57600080fd5b5061022861092f565b34801561036357600080fd5b506008546001600160a01b03166101fd565b34801561038157600080fd5b506101d0610943565b34801561039657600080fd5b506102286103a5366004611135565b610952565b6102286103b8366004610ff3565b61096a565b3480156103c957600080fd5b506102286103d836600461117e565b610a70565b6102286103eb3660046111ba565b610adc565b3480156103fc57600080fd5b506101d061040b366004610ff3565b610b26565b34801561041c57600080fd5b5061023f60095481565b34801561043257600080fd5b506101a6610441366004611236565b610baa565b34801561045257600080fd5b5061022861046136600461108e565b610bd8565b60006301ffc9a760e01b6001600160e01b03198316148061049757506380ac58cd60e01b6001600160e01b03198316145b806104b25750635b5e139f60e01b6001600160e01b03198316145b92915050565b6060600280546104c790611269565b80601f01602080910402602001604051908101604052809291908181526020018280546104f390611269565b80156105405780601f1061051557610100808354040283529160200191610540565b820191906000526020600020905b81548152906001019060200180831161052357829003601f168201915b5050505050905090565b600061055582610c13565b610572576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b600061059982610847565b9050336001600160a01b038216146105d2576105b58133610baa565b6105d2576040516367d9dca160e11b815260040160405180910390fd5b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b600061063982610c3a565b9050836001600160a01b0316816001600160a01b03161461066c5760405162a1148160e81b815260040160405180910390fd5b60008281526006602052604090208054338082146001600160a01b038816909114176106b95761069c8633610baa565b6106b957604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b0385166106e057604051633a954ecd60e21b815260040160405180910390fd5b80156106eb57600082555b6001600160a01b038681166000908152600560205260408082208054600019019055918716808252919020805460010190554260a01b17600160e11b17600085815260046020526040812091909155600160e11b8416900361077d5760018401600081815260046020526040812054900361077b57600054811461077b5760008181526004602052604090208490555b505b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b505050505050565b6107cf610ca1565b600b805460ff19811660ff90911615179055565b6107eb610ca1565b60405133904780156108fc02916000818181858888f19350505050158015610817573d6000803e3d6000fd5b50565b610822610ca1565b600955565b61084283838360405180602001604052806000815250610adc565b505050565b60006104b282610c3a565b600a805461085f90611269565b80601f016020809104026020016040519081016040528092919081815260200182805461088b90611269565b80156108d85780601f106108ad576101008083540402835291602001916108d8565b820191906000526020600020905b8154815290600101906020018083116108bb57829003601f168201915b505050505081565b60006001600160a01b038216610909576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b610937610ca1565b6109416000610cce565b565b6060600380546104c790611269565b61095a610ca1565b600a61096682826112e9565b5050565b600b5460ff166109b45760405162461bcd60e51b815260206004820152601060248201526f135a5b9d08139bdd08115b98589b195960821b60448201526064015b60405180910390fd5b610309816109c56001546000540390565b6109cf91906113bf565b1115610a125760405162461bcd60e51b81526020600482015260126024820152716d617820737570706c79206578636565647360701b60448201526064016109ab565b600954610a1f90826113d2565b341015610a665760405162461bcd60e51b8152602060048201526015602482015274696e76616c69642070617961626c652076616c756560581b60448201526064016109ab565b6108173382610d20565b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b610ae784848461062e565b6001600160a01b0383163b15610b2057610b0384848484610e1e565b610b20576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b6060610b3182610c13565b610b4e57604051630a14c4b560e41b815260040160405180910390fd5b6000610b58610f0a565b90508051600003610b785760405180602001604052806000815250610ba3565b80610b8284610f19565b604051602001610b939291906113e9565b6040516020818303038152906040525b9392505050565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b610be0610ca1565b6001600160a01b038116610c0a57604051631e4fbdf760e01b8152600060048201526024016109ab565b61081781610cce565b60008054821080156104b2575050600090815260046020526040902054600160e01b161590565b600081600054811015610c885760008181526004602052604081205490600160e01b82169003610c86575b80600003610ba3575060001901600081815260046020526040902054610c65565b505b604051636f96cda160e11b815260040160405180910390fd5b6008546001600160a01b031633146109415760405163118cdaa760e01b81523360048201526024016109ab565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6000805490829003610d455760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b03831660008181526005602090815260408083208054680100000000000000018802019055848352600490915281206001851460e11b4260a01b178317905582840190839083907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8180a4600183015b818114610df457808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600101610dbc565b5081600003610e1557604051622e076360e81b815260040160405180910390fd5b60005550505050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a0290610e53903390899088908890600401611428565b6020604051808303816000875af1925050508015610e8e575060408051601f3d908101601f19168201909252610e8b91810190611465565b60015b610eec573d808015610ebc576040519150601f19603f3d011682016040523d82523d6000602084013e610ec1565b606091505b508051600003610ee4576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b6060600a80546104c790611269565b606060a06040510180604052602081039150506000815280825b600183039250600a81066030018353600a900480610f335750819003601f19909101908152919050565b6001600160e01b03198116811461081757600080fd5b600060208284031215610f8557600080fd5b8135610ba381610f5d565b60005b83811015610fab578181015183820152602001610f93565b50506000910152565b60008151808452610fcc816020860160208601610f90565b601f01601f19169290920160200192915050565b602081526000610ba36020830184610fb4565b60006020828403121561100557600080fd5b5035919050565b80356001600160a01b038116811461102357600080fd5b919050565b6000806040838503121561103b57600080fd5b6110448361100c565b946020939093013593505050565b60008060006060848603121561106757600080fd5b6110708461100c565b925061107e6020850161100c565b9150604084013590509250925092565b6000602082840312156110a057600080fd5b610ba38261100c565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff808411156110da576110da6110a9565b604051601f8501601f19908116603f01168101908282118183101715611102576111026110a9565b8160405280935085815286868601111561111b57600080fd5b858560208301376000602087830101525050509392505050565b60006020828403121561114757600080fd5b813567ffffffffffffffff81111561115e57600080fd5b8201601f8101841361116f57600080fd5b610f02848235602084016110bf565b6000806040838503121561119157600080fd5b61119a8361100c565b9150602083013580151581146111af57600080fd5b809150509250929050565b600080600080608085870312156111d057600080fd5b6111d98561100c565b93506111e76020860161100c565b925060408501359150606085013567ffffffffffffffff81111561120a57600080fd5b8501601f8101871361121b57600080fd5b61122a878235602084016110bf565b91505092959194509250565b6000806040838503121561124957600080fd5b6112528361100c565b91506112606020840161100c565b90509250929050565b600181811c9082168061127d57607f821691505b60208210810361129d57634e487b7160e01b600052602260045260246000fd5b50919050565b601f82111561084257600081815260208120601f850160051c810160208610156112ca5750805b601f850160051c820191505b818110156107bf578281556001016112d6565b815167ffffffffffffffff811115611303576113036110a9565b611317816113118454611269565b846112a3565b602080601f83116001811461134c57600084156113345750858301515b600019600386901b1c1916600185901b1785556107bf565b600085815260208120601f198616915b8281101561137b5788860151825594840194600190910190840161135c565b50858210156113995787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b634e487b7160e01b600052601160045260246000fd5b808201808211156104b2576104b26113a9565b80820281158282048414176104b2576104b26113a9565b600083516113fb818460208801610f90565b83519083019061140f818360208801610f90565b64173539b7b760d91b9101908152600501949350505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061145b90830184610fb4565b9695505050505050565b60006020828403121561147757600080fd5b8151610ba381610f5d56fea264697066735822122074db82f2a6661440e9d62aa91ec28b3d3e0f8534cc7d3fcb11ed1affb5bee07664736f6c63430008120033

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

000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : uri (string):
Arg [1] : _isMintingEnable (bool): False

-----Encoded View---------------
3 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000040
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000000
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

54510:1588:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18590:639;;;;;;;;;;-1:-1:-1;18590:639:0;;;;;:::i;:::-;;:::i;:::-;;;565:14:1;;558:22;540:41;;528:2;513:18;18590:639:0;;;;;;;;19492:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;25983:218::-;;;;;;;;;;-1:-1:-1;25983:218:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;1697:32:1;;;1679:51;;1667:2;1652:18;25983:218:0;1533:203:1;25416:408:0;;;;;;:::i;:::-;;:::i;:::-;;15243:323;;;;;;;;;;-1:-1:-1;15517:12:0;;15304:7;15501:13;:28;15243:323;;;2324:25:1;;;2312:2;2297:18;15243:323:0;2178:177:1;29622:2825:0;;;;;;:::i;:::-;;:::i;55023:96::-;;;;;;;;;;;;;:::i;54577:40::-;;;;;;;;;;;;54614:3;54577:40;;55536:109;;;;;;;;;;;;;:::i;54909:102::-;;;;;;;;;;-1:-1:-1;54909:102:0;;;;;:::i;:::-;;:::i;32543:193::-;;;;;;:::i;:::-;;:::i;54700:27::-;;;;;;;;;;-1:-1:-1;54700:27:0;;;;;;;;20885:152;;;;;;;;;;-1:-1:-1;20885:152:0;;;;;:::i;:::-;;:::i;54670:21::-;;;;;;;;;;;;;:::i;16427:233::-;;;;;;;;;;-1:-1:-1;16427:233:0;;;;;:::i;:::-;;:::i;53672:103::-;;;;;;;;;;;;;:::i;52997:87::-;;;;;;;;;;-1:-1:-1;53070:6:0;;-1:-1:-1;;;;;53070:6:0;52997:87;;19668:104;;;;;;;;;;;;;:::i;55127:86::-;;;;;;;;;;-1:-1:-1;55127:86:0;;;;;:::i;:::-;;:::i;55225:301::-;;;;;;:::i;:::-;;:::i;26541:234::-;;;;;;;;;;-1:-1:-1;26541:234:0;;;;;:::i;:::-;;:::i;33334:407::-;;;;;;:::i;:::-;;:::i;55771:312::-;;;;;;;;;;-1:-1:-1;55771:312:0;;;;;:::i;:::-;;:::i;54624:39::-;;;;;;;;;;;;;;;;26932:164;;;;;;;;;;-1:-1:-1;26932:164:0;;;;;:::i;:::-;;:::i;53930:220::-;;;;;;;;;;-1:-1:-1;53930:220:0;;;;;:::i;:::-;;:::i;18590:639::-;18675:4;-1:-1:-1;;;;;;;;;18999:25:0;;;;:102;;-1:-1:-1;;;;;;;;;;19076:25:0;;;18999:102;:179;;;-1:-1:-1;;;;;;;;;;19153:25:0;;;18999:179;18979:199;18590:639;-1:-1:-1;;18590:639:0:o;19492:100::-;19546:13;19579:5;19572:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19492:100;:::o;25983:218::-;26059:7;26084:16;26092:7;26084;:16::i;:::-;26079:64;;26109:34;;-1:-1:-1;;;26109:34:0;;;;;;;;;;;26079:64;-1:-1:-1;26163:24:0;;;;:15;:24;;;;;:30;-1:-1:-1;;;;;26163:30:0;;25983:218::o;25416:408::-;25505:13;25521:16;25529:7;25521;:16::i;:::-;25505:32;-1:-1:-1;49749:10:0;-1:-1:-1;;;;;25554:28:0;;;25550:175;;25602:44;25619:5;49749:10;26932:164;:::i;25602:44::-;25597:128;;25674:35;;-1:-1:-1;;;25674:35:0;;;;;;;;;;;25597:128;25737:24;;;;:15;:24;;;;;;:35;;-1:-1:-1;;;;;;25737:35:0;-1:-1:-1;;;;;25737:35:0;;;;;;;;;25788:28;;25737:24;;25788:28;;;;;;;25494:330;25416:408;;:::o;29622:2825::-;29764:27;29794;29813:7;29794:18;:27::i;:::-;29764:57;;29879:4;-1:-1:-1;;;;;29838:45:0;29854:19;-1:-1:-1;;;;;29838:45:0;;29834:86;;29892:28;;-1:-1:-1;;;29892:28:0;;;;;;;;;;;29834:86;29934:27;28730:24;;;:15;:24;;;;;28958:26;;49749:10;28355:30;;;-1:-1:-1;;;;;28048:28:0;;28333:20;;;28330:56;30120:180;;30213:43;30230:4;49749:10;26932:164;:::i;30213:43::-;30208:92;;30265:35;;-1:-1:-1;;;30265:35:0;;;;;;;;;;;30208:92;-1:-1:-1;;;;;30317:16:0;;30313:52;;30342:23;;-1:-1:-1;;;30342:23:0;;;;;;;;;;;30313:52;30514:15;30511:160;;;30654:1;30633:19;30626:30;30511:160;-1:-1:-1;;;;;31051:24:0;;;;;;;:18;:24;;;;;;31049:26;;-1:-1:-1;;31049:26:0;;;31120:22;;;;;;;;;31118:24;;-1:-1:-1;31118:24:0;;;24274:11;24249:23;24245:41;24232:63;-1:-1:-1;;;24232:63:0;31413:26;;;;:17;:26;;;;;:175;;;;-1:-1:-1;;;31708:47:0;;:52;;31704:627;;31813:1;31803:11;;31781:19;31936:30;;;:17;:30;;;;;;:35;;31932:384;;32074:13;;32059:11;:28;32055:242;;32221:30;;;;:17;:30;;;;;:52;;;32055:242;31762:569;31704:627;32378:7;32374:2;-1:-1:-1;;;;;32359:27:0;32368:4;-1:-1:-1;;;;;32359:27:0;;;;;;;;;;;32397:42;29753:2694;;;29622:2825;;;:::o;55023:96::-;52883:13;:11;:13::i;:::-;55096:15:::1;::::0;;-1:-1:-1;;55077:34:0;::::1;55096:15;::::0;;::::1;55095:16;55077:34;::::0;;55023:96::o;55536:109::-;52883:13;:11;:13::i;:::-;55586:51:::1;::::0;55594:10:::1;::::0;55615:21:::1;55586:51:::0;::::1;;;::::0;::::1;::::0;;;55615:21;55594:10;55586:51;::::1;;;;;;;;;;;;;::::0;::::1;;;;;;55536:109::o:0;54909:102::-;52883:13;:11;:13::i;:::-;54982:9:::1;:21:::0;54909:102::o;32543:193::-;32689:39;32706:4;32712:2;32716:7;32689:39;;;;;;;;;;;;:16;:39::i;:::-;32543:193;;;:::o;20885:152::-;20957:7;21000:27;21019:7;21000:18;:27::i;54670:21::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;16427:233::-;16499:7;-1:-1:-1;;;;;16523:19:0;;16519:60;;16551:28;;-1:-1:-1;;;16551:28:0;;;;;;;;;;;16519:60;-1:-1:-1;;;;;;16597:25:0;;;;;:18;:25;;;;;;10586:13;16597:55;;16427:233::o;53672:103::-;52883:13;:11;:13::i;:::-;53737:30:::1;53764:1;53737:18;:30::i;:::-;53672:103::o:0;19668:104::-;19724:13;19757:7;19750:14;;;;;:::i;55127:86::-;52883:13;:11;:13::i;:::-;55192:7:::1;:13;55202:3:::0;55192:7;:13:::1;:::i;:::-;;55127:86:::0;:::o;55225:301::-;55293:15;;;;55285:43;;;;-1:-1:-1;;;55285:43:0;;8189:2:1;55285:43:0;;;8171:21:1;8228:2;8208:18;;;8201:30;-1:-1:-1;;;8247:18:1;;;8240:46;8303:18;;55285:43:0;;;;;;;;;54614:3;55361:8;55347:13;15517:12;;15304:7;15501:13;:28;;15243:323;55347:13;:22;;;;:::i;:::-;:34;;55339:64;;;;-1:-1:-1;;;55339:64:0;;8796:2:1;55339:64:0;;;8778:21:1;8835:2;8815:18;;;8808:30;-1:-1:-1;;;8854:18:1;;;8847:48;8912:18;;55339:64:0;8594:342:1;55339:64:0;55444:9;;55435:18;;:8;:18;:::i;:::-;55422:9;:31;;55414:66;;;;-1:-1:-1;;;55414:66:0;;9316:2:1;55414:66:0;;;9298:21:1;9355:2;9335:18;;;9328:30;-1:-1:-1;;;9374:18:1;;;9367:51;9435:18;;55414:66:0;9114:345:1;55414:66:0;55491:27;55497:10;55509:8;55491:5;:27::i;26541:234::-;49749:10;26636:39;;;;:18;:39;;;;;;;;-1:-1:-1;;;;;26636:49:0;;;;;;;;;;;;:60;;-1:-1:-1;;26636:60:0;;;;;;;;;;26712:55;;540:41:1;;;26636:49:0;;49749:10;26712:55;;513:18:1;26712:55:0;;;;;;;26541:234;;:::o;33334:407::-;33509:31;33522:4;33528:2;33532:7;33509:12;:31::i;:::-;-1:-1:-1;;;;;33555:14:0;;;:19;33551:183;;33594:56;33625:4;33631:2;33635:7;33644:5;33594:30;:56::i;:::-;33589:145;;33678:40;;-1:-1:-1;;;33678:40:0;;;;;;;;;;;33589:145;33334:407;;;;:::o;55771:312::-;55844:13;55875:16;55883:7;55875;:16::i;:::-;55870:59;;55900:29;;-1:-1:-1;;;55900:29:0;;;;;;;;;;;55870:59;55940:17;55960:10;:8;:10::i;:::-;55940:30;;55994:3;55988:17;56009:1;55988:22;:87;;;;;;;;;;;;;;;;;56037:3;56042:18;56052:7;56042:9;:18::i;:::-;56020:49;;;;;;;;;:::i;:::-;;;;;;;;;;;;;55988:87;55981:94;55771:312;-1:-1:-1;;;55771:312:0:o;26932:164::-;-1:-1:-1;;;;;27053:25:0;;;27029:4;27053:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;26932:164::o;53930:220::-;52883:13;:11;:13::i;:::-;-1:-1:-1;;;;;54015:22:0;::::1;54011:93;;54061:31;::::0;-1:-1:-1;;;54061:31:0;;54089:1:::1;54061:31;::::0;::::1;1679:51:1::0;1652:18;;54061:31:0::1;1533:203:1::0;54011:93:0::1;54114:28;54133:8;54114:18;:28::i;27354:282::-:0;27419:4;27509:13;;27499:7;:23;27456:153;;;;-1:-1:-1;;27560:26:0;;;;:17;:26;;;;;;-1:-1:-1;;;27560:44:0;:49;;27354:282::o;22040:1275::-;22107:7;22142;22244:13;;22237:4;:20;22233:1015;;;22282:14;22299:23;;;:17;:23;;;;;;;-1:-1:-1;;;22388:24:0;;:29;;22384:845;;23053:113;23060:6;23070:1;23060:11;23053:113;;-1:-1:-1;;;23131:6:0;23113:25;;;;:17;:25;;;;;;23053:113;;22384:845;22259:989;22233:1015;23276:31;;-1:-1:-1;;;23276:31:0;;;;;;;;;;;53162:166;53070:6;;-1:-1:-1;;;;;53070:6:0;49749:10;53222:23;53218:103;;53269:40;;-1:-1:-1;;;53269:40:0;;49749:10;53269:40;;;1679:51:1;1652:18;;53269:40:0;1533:203:1;54310:191:0;54403:6;;;-1:-1:-1;;;;;54420:17:0;;;-1:-1:-1;;;;;;54420:17:0;;;;;;;54453:40;;54403:6;;;54420:17;54403:6;;54453:40;;54384:16;;54453:40;54373:128;54310:191;:::o;37003:2966::-;37076:20;37099:13;;;37127;;;37123:44;;37149:18;;-1:-1:-1;;;37149:18:0;;;;;;;;;;;37123:44;-1:-1:-1;;;;;37655:22:0;;;;;;:18;:22;;;;10724:2;37655:22;;;:71;;37693:32;37681:45;;37655:71;;;37969:31;;;:17;:31;;;;;-1:-1:-1;24705:15:0;;24679:24;24675:46;24274:11;24249:23;24245:41;24242:52;24232:63;;37969:173;;38204:23;;;;37969:31;;37655:22;;38969:25;37655:22;;38822:335;39483:1;39469:12;39465:20;39423:346;39524:3;39515:7;39512:16;39423:346;;39742:7;39732:8;39729:1;39702:25;39699:1;39696;39691:59;39577:1;39564:15;39423:346;;;39427:77;39802:8;39814:1;39802:13;39798:45;;39824:19;;-1:-1:-1;;;39824:19:0;;;;;;;;;;;39798:45;39860:13;:19;-1:-1:-1;32543:193:0;;;:::o;35825:716::-;36009:88;;-1:-1:-1;;;36009:88:0;;35988:4;;-1:-1:-1;;;;;36009:45:0;;;;;:88;;49749:10;;36076:4;;36082:7;;36091:5;;36009:88;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;36009:88:0;;;;;;;;-1:-1:-1;;36009:88:0;;;;;;;;;;;;:::i;:::-;;;36005:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36292:6;:13;36309:1;36292:18;36288:235;;36338:40;;-1:-1:-1;;;36338:40:0;;;;;;;;;;;36288:235;36481:6;36475:13;36466:6;36462:2;36458:15;36451:38;36005:529;-1:-1:-1;;;;;;36168:64:0;-1:-1:-1;;;36168:64:0;;-1:-1:-1;36005:529:0;35825:716;;;;;;:::o;55655:108::-;55715:13;55748:7;55741:14;;;;;:::i;49869:1745::-;49934:17;50368:4;50361;50355:11;50351:22;50460:1;50454:4;50447:15;50535:4;50532:1;50528:12;50521:19;;;50617:1;50612:3;50605:14;50721:3;50960:5;50942:428;51008:1;51003:3;50999:11;50992:18;;51179:2;51173:4;51169:13;51165:2;51161:22;51156:3;51148:36;51273:2;51263:13;;51330:25;50942:428;51330:25;-1:-1:-1;51400:13:0;;;-1:-1:-1;;51515:14:0;;;51577:19;;;51515:14;49869:1745;-1:-1:-1;49869:1745: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:186::-;2752:6;2805:2;2793:9;2784:7;2780:23;2776:32;2773:52;;;2821:1;2818;2811:12;2773:52;2844:29;2863:9;2844:29;:::i;2884:127::-;2945:10;2940:3;2936:20;2933:1;2926:31;2976:4;2973:1;2966:15;3000:4;2997:1;2990:15;3016:632;3081:5;3111:18;3152:2;3144:6;3141:14;3138:40;;;3158:18;;:::i;:::-;3233:2;3227:9;3201:2;3287:15;;-1:-1:-1;;3283:24:1;;;3309:2;3279:33;3275:42;3263:55;;;3333:18;;;3353:22;;;3330:46;3327:72;;;3379:18;;:::i;:::-;3419:10;3415:2;3408:22;3448:6;3439:15;;3478:6;3470;3463:22;3518:3;3509:6;3504:3;3500:16;3497:25;3494:45;;;3535:1;3532;3525:12;3494:45;3585:6;3580:3;3573:4;3565:6;3561:17;3548:44;3640:1;3633:4;3624:6;3616;3612:19;3608:30;3601:41;;;;3016:632;;;;;:::o;3653:451::-;3722:6;3775:2;3763:9;3754:7;3750:23;3746:32;3743:52;;;3791:1;3788;3781:12;3743:52;3831:9;3818:23;3864:18;3856:6;3853:30;3850:50;;;3896:1;3893;3886:12;3850:50;3919:22;;3972:4;3964:13;;3960:27;-1:-1:-1;3950:55:1;;4001:1;3998;3991:12;3950:55;4024:74;4090:7;4085:2;4072:16;4067:2;4063;4059:11;4024:74;:::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;8332:127::-;8393:10;8388:3;8384:20;8381:1;8374:31;8424:4;8421:1;8414:15;8448:4;8445:1;8438:15;8464:125;8529:9;;;8550:10;;;8547:36;;;8563:18;;:::i;8941:168::-;9014:9;;;9045;;9062:15;;;9056:22;;9042:37;9032:71;;9083:18;;:::i;9464:663::-;9744:3;9782:6;9776:13;9798:66;9857:6;9852:3;9845:4;9837:6;9833:17;9798:66;:::i;:::-;9927:13;;9886:16;;;;9949:70;9927:13;9886:16;9996:4;9984:17;;9949:70;:::i;:::-;-1:-1:-1;;;10041:20:1;;10070:22;;;10119:1;10108:13;;9464:663;-1:-1:-1;;;;9464:663:1:o;10132:489::-;-1:-1:-1;;;;;10401:15:1;;;10383:34;;10453:15;;10448:2;10433:18;;10426:43;10500:2;10485:18;;10478:34;;;10548:3;10543:2;10528:18;;10521:31;;;10326:4;;10569:46;;10595:19;;10587:6;10569:46;:::i;:::-;10561:54;10132:489;-1:-1:-1;;;;;;10132:489:1:o;10626:249::-;10695:6;10748:2;10736:9;10727:7;10723:23;10719:32;10716:52;;;10764:1;10761;10754:12;10716:52;10796:9;10790:16;10815:30;10839:5;10815:30;:::i

Swarm Source

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