ETH Price: $2,682.15 (-2.02%)

Token

TiffMoonBirds (TMbirds)
 

Overview

Max Total Supply

1,150 TMbirds

Holders

108

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Filtered by Token Holder
web3oh.eth
Balance
8 TMbirds
0xf81c9522d1ac2ec12920aa79a725acdc85779b46
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:
TiffMoonbirds

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, Unlicense license

Contract Source Code (Solidity)

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

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


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

pragma solidity ^0.8.0;

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

// File: erc721a/contracts/IERC721A.sol


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

pragma solidity ^0.8.4;

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

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

    /**
     * The caller cannot approve to their own address.
     */
    error ApproveToCaller();

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

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

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

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

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

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

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

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

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

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

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

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

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

// File: erc721a/contracts/ERC721A.sol


// ERC721A Contracts v4.2.2
// 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 {
    // Reference type for token approval.
    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 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 {
        if (operator == _msgSenderERC721A()) revert ApproveToCaller();

        _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]`.
        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 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 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 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.
            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`.
                )

                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 0x80 bytes to keep the free memory pointer 32-byte word aliged.
            // We will need 1 32-byte word to store the length,
            // and 3 32-byte words to store a maximum of 78 digits. Total: 0x20 + 3 * 0x20 = 0x80.
            str := add(mload(0x40), 0x80)
            // Update the free memory pointer to allocate.
            mstore(0x40, str)

            // 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: TiffMoonBirds.sol

//SPDX-License-Identifier: Unlicense

pragma solidity >=0.7.0 <0.9.0;



contract TiffMoonbirds is ERC721A, Ownable {
  uint256 public extraPrice = 0.01 ether;
  uint256 public freeSupply = 3000;
  uint256 public maxSupply = 8000;
  uint256 public maxPerTx = 8;

  string public uriPrefix = "ipfs://bafybeigdfqnyrl7pu4tqlzjwsf2lzurlpxc4fk5c5perwhbcrfrz7gvioe/";
  string public uriSuffix = ".json";
  bool public paused = true;

  constructor() ERC721A("TiffMoonBirds", "TMbirds") {}

  function mint(uint256 _quantity) external payable {
    require(!paused, "Minting paused");
    uint256 _totalSupply = totalSupply();
    uint256 price;
    require(msg.sender == tx.origin, "The caller is another contract!");
    require(_totalSupply + _quantity <= maxSupply, "Exceeds supply!");
    require(_quantity > 0 && _quantity <= maxPerTx, "Invalid mint amount!");
    if (_totalSupply > freeSupply) {
      price = extraPrice;
    }
    require(msg.value >= price * _quantity, "ETH sent not correct");
    _mint(msg.sender, _quantity);
  }

  function setPrice(uint256 price) external onlyOwner {
    extraPrice = price;
  }

  function setFreeSupply(uint256 _freeSupply) external onlyOwner {
    freeSupply = _freeSupply;
  }

  function setMaxPerTx(uint256 _maxPerTx) external onlyOwner {
    maxPerTx = _maxPerTx;
  }

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

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

  function setBaseURI(string calldata _newBaseUri) external onlyOwner {
    uriPrefix = _newBaseUri;
  }

  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), uriSuffix)) : '';
    }

  function setPause() external onlyOwner {
    paused = !paused;
  }

  function airdropReserves(uint256 _quantity) external onlyOwner {
    require(totalSupply() == 0, "Reserves already taken");

    _mint(msg.sender, _quantity);
  }

  function withdraw() external onlyOwner {
    require(
      payable(owner()).send(address(this).balance),
      "Withdraw unsuccessful"
    );
  }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintERC2309QuantityExceedsLimit","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"OwnershipNotInitializedForExtraData","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"fromTokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"toTokenId","type":"uint256"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"}],"name":"ConsecutiveTransfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"uint256","name":"_quantity","type":"uint256"}],"name":"airdropReserves","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"extraPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"freeSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPerTx","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_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":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseUri","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_freeSupply","type":"uint256"}],"name":"setFreeSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxPerTx","type":"uint256"}],"name":"setMaxPerTx","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"setPause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"price","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uriPrefix","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uriSuffix","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

662386f26fc10000600955610bb8600a55611f40600b556008600c55610100604052604360808181529062001aa460a03980516200004691600d9160209091019062000166565b5060408051808201909152600580825264173539b7b760d91b60209092019182526200007591600e9162000166565b50600f805460ff191660011790553480156200009057600080fd5b50604080518082018252600d81526c546966664d6f6f6e426972647360981b602080830191825283518085019094526007845266544d626972647360c81b908401528151919291620000e59160029162000166565b508051620000fb90600390602084019062000166565b50506001600055506200010e3362000114565b62000249565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b82805462000174906200020c565b90600052602060002090601f016020900481019282620001985760008555620001e3565b82601f10620001b357805160ff1916838001178555620001e3565b82800160010185558215620001e3579182015b82811115620001e3578251825591602001919060010190620001c6565b50620001f1929150620001f5565b5090565b5b80821115620001f15760008155600101620001f6565b600181811c908216806200022157607f821691505b602082108114156200024357634e487b7160e01b600052602260045260246000fd5b50919050565b61184b80620002596000396000f3fe6080604052600436106101e35760003560e01c806370c93f1a11610102578063c6f6f21611610095578063e985e9c511610064578063e985e9c51461052b578063f2fde38b14610574578063f676308a14610594578063f968adbe146105b457600080fd5b8063c6f6f216146104c0578063c87b56dd146104e0578063d431b1ac14610500578063d5abeb011461051557600080fd5b806395d89b41116100d157806395d89b4114610458578063a0712d681461046d578063a22cb46514610480578063b88d4fde146104a057600080fd5b806370c93f1a146103ef578063715018a6146104055780638da5cb5b1461041a57806391b7f5ed1461043857600080fd5b80633ccfd60b1161017a5780635c975abb116101495780635c975abb1461038057806362b99ad41461039a5780636352211e146103af57806370a08231146103cf57600080fd5b80633ccfd60b1461031657806342842e0e1461032b5780635503a0e81461034b57806355f804b31461036057600080fd5b806315560b99116101b657806315560b991461029957806318160ddd146102b957806323b872dd146102e057806324a6ab0c1461030057600080fd5b806301ffc9a7146101e857806306fdde031461021d578063081812fc1461023f578063095ea7b314610277575b600080fd5b3480156101f457600080fd5b50610208610203366004611530565b6105ca565b60405190151581526020015b60405180910390f35b34801561022957600080fd5b5061023261061c565b6040516102149190611722565b34801561024b57600080fd5b5061025f61025a3660046115dc565b6106ae565b6040516001600160a01b039091168152602001610214565b34801561028357600080fd5b50610297610292366004611506565b6106f2565b005b3480156102a557600080fd5b506102976102b43660046115dc565b610792565b3480156102c557600080fd5b5060015460005403600019015b604051908152602001610214565b3480156102ec57600080fd5b506102976102fb3660046113b2565b6107fd565b34801561030c57600080fd5b506102d2600a5481565b34801561032257600080fd5b5061029761098e565b34801561033757600080fd5b506102976103463660046113b2565b610a04565b34801561035757600080fd5b50610232610a24565b34801561036c57600080fd5b5061029761037b36600461156a565b610ab2565b34801561038c57600080fd5b50600f546102089060ff1681565b3480156103a657600080fd5b50610232610ac6565b3480156103bb57600080fd5b5061025f6103ca3660046115dc565b610ad3565b3480156103db57600080fd5b506102d26103ea366004611364565b610ade565b3480156103fb57600080fd5b506102d260095481565b34801561041157600080fd5b50610297610b2d565b34801561042657600080fd5b506008546001600160a01b031661025f565b34801561044457600080fd5b506102976104533660046115dc565b610b3f565b34801561046457600080fd5b50610232610b4c565b61029761047b3660046115dc565b610b5b565b34801561048c57600080fd5b5061029761049b3660046114ca565b610d12565b3480156104ac57600080fd5b506102976104bb3660046113ee565b610da8565b3480156104cc57600080fd5b506102976104db3660046115dc565b610df2565b3480156104ec57600080fd5b506102326104fb3660046115dc565b610dff565b34801561050c57600080fd5b50610297610e87565b34801561052157600080fd5b506102d2600b5481565b34801561053757600080fd5b5061020861054636600461137f565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b34801561058057600080fd5b5061029761058f366004611364565b610ea3565b3480156105a057600080fd5b506102976105af3660046115dc565b610f19565b3480156105c057600080fd5b506102d2600c5481565b60006301ffc9a760e01b6001600160e01b0319831614806105fb57506380ac58cd60e01b6001600160e01b03198316145b806106165750635b5e139f60e01b6001600160e01b03198316145b92915050565b60606002805461062b90611798565b80601f016020809104026020016040519081016040528092919081815260200182805461065790611798565b80156106a45780601f10610679576101008083540402835291602001916106a4565b820191906000526020600020905b81548152906001019060200180831161068757829003601f168201915b5050505050905090565b60006106b982610f26565b6106d6576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b60006106fd82610ad3565b9050336001600160a01b03821614610736576107198133610546565b610736576040516367d9dca160e11b815260040160405180910390fd5b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b61079a610f5b565b6001546000540360001901156107f05760405162461bcd60e51b81526020600482015260166024820152752932b9b2b93b32b99030b63932b0b23c903a30b5b2b760511b60448201526064015b60405180910390fd5b6107fa3382610fb5565b50565b6000610808826110ac565b9050836001600160a01b0316816001600160a01b03161461083b5760405162a1148160e81b815260040160405180910390fd5b60008281526006602052604090208054338082146001600160a01b038816909114176108885761086b8633610546565b61088857604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b0385166108af57604051633a954ecd60e21b815260040160405180910390fd5b80156108ba57600082555b6001600160a01b038681166000908152600560205260408082208054600019019055918716808252919020805460010190554260a01b17600160e11b17600085815260046020526040902055600160e11b831661094557600184016000818152600460205260409020546109435760005481146109435760008181526004602052604090208490555b505b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050505050565b610996610f5b565b6008546040516001600160a01b03909116904780156108fc02916000818181858888f19350505050610a025760405162461bcd60e51b815260206004820152601560248201527415da5d1a191c985dc81d5b9cdd58d8d95cdcd99d5b605a1b60448201526064016107e7565b565b610a1f83838360405180602001604052806000815250610da8565b505050565b600e8054610a3190611798565b80601f0160208091040260200160405190810160405280929190818152602001828054610a5d90611798565b8015610aaa5780601f10610a7f57610100808354040283529160200191610aaa565b820191906000526020600020905b815481529060010190602001808311610a8d57829003601f168201915b505050505081565b610aba610f5b565b610a1f600d83836112af565b600d8054610a3190611798565b6000610616826110ac565b60006001600160a01b038216610b07576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b610b35610f5b565b610a026000611115565b610b47610f5b565b600955565b60606003805461062b90611798565b600f5460ff1615610b9f5760405162461bcd60e51b815260206004820152600e60248201526d135a5b9d1a5b99c81c185d5cd95960921b60448201526064016107e7565b6000610bb46001546000546000199190030190565b90506000333214610c075760405162461bcd60e51b815260206004820152601f60248201527f5468652063616c6c657220697320616e6f7468657220636f6e7472616374210060448201526064016107e7565b600b54610c148484611735565b1115610c545760405162461bcd60e51b815260206004820152600f60248201526e4578636565647320737570706c792160881b60448201526064016107e7565b600083118015610c665750600c548311155b610ca95760405162461bcd60e51b8152602060048201526014602482015273496e76616c6964206d696e7420616d6f756e742160601b60448201526064016107e7565b600a54821115610cb857506009545b610cc2838261174d565b341015610d085760405162461bcd60e51b8152602060048201526014602482015273115512081cd95b9d081b9bdd0818dbdc9c9958dd60621b60448201526064016107e7565b610a1f3384610fb5565b6001600160a01b038216331415610d3c5760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b610db38484846107fd565b6001600160a01b0383163b15610dec57610dcf84848484611167565b610dec576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b610dfa610f5b565b600c55565b6060610e0a82610f26565b610e2757604051630a14c4b560e41b815260040160405180910390fd5b6000610e3161125e565b9050805160001415610e525760405180602001604052806000815250610e80565b80610e5c8461126d565b600e604051602001610e7093929190611621565b6040516020818303038152906040525b9392505050565b610e8f610f5b565b600f805460ff19811660ff90911615179055565b610eab610f5b565b6001600160a01b038116610f105760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016107e7565b6107fa81611115565b610f21610f5b565b600a55565b600081600111158015610f3a575060005482105b8015610616575050600090815260046020526040902054600160e01b161590565b6008546001600160a01b03163314610a025760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016107e7565b60005481610fd65760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b03831660008181526005602090815260408083208054680100000000000000018802019055848352600490915281206001851460e11b4260a01b178317905582840190839083907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8180a4600183015b81811461108557808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a460010161104d565b50816110a357604051622e076360e81b815260040160405180910390fd5b60005550505050565b600081806001116110fc576000548110156110fc57600081815260046020526040902054600160e01b81166110fa575b80610e805750600019016000818152600460205260409020546110dc565b505b604051636f96cda160e11b815260040160405180910390fd5b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a029061119c9033908990889088906004016116e5565b602060405180830381600087803b1580156111b657600080fd5b505af19250505080156111e6575060408051601f3d908101601f191682019092526111e39181019061154d565b60015b611241573d808015611214576040519150601f19603f3d011682016040523d82523d6000602084013e611219565b606091505b508051611239576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050949350505050565b6060600d805461062b90611798565b604080516080019081905280825b600183039250600a81066030018353600a9004806112985761129d565b61127b565b50819003601f19909101908152919050565b8280546112bb90611798565b90600052602060002090601f0160209004810192826112dd5760008555611323565b82601f106112f65782800160ff19823516178555611323565b82800160010185558215611323579182015b82811115611323578235825591602001919060010190611308565b5061132f929150611333565b5090565b5b8082111561132f5760008155600101611334565b80356001600160a01b038116811461135f57600080fd5b919050565b60006020828403121561137657600080fd5b610e8082611348565b6000806040838503121561139257600080fd5b61139b83611348565b91506113a960208401611348565b90509250929050565b6000806000606084860312156113c757600080fd5b6113d084611348565b92506113de60208501611348565b9150604084013590509250925092565b6000806000806080858703121561140457600080fd5b61140d85611348565b935061141b60208601611348565b925060408501359150606085013567ffffffffffffffff8082111561143f57600080fd5b818701915087601f83011261145357600080fd5b813581811115611465576114656117e9565b604051601f8201601f19908116603f0116810190838211818310171561148d5761148d6117e9565b816040528281528a60208487010111156114a657600080fd5b82602086016020830137600060208483010152809550505050505092959194509250565b600080604083850312156114dd57600080fd5b6114e683611348565b9150602083013580151581146114fb57600080fd5b809150509250929050565b6000806040838503121561151957600080fd5b61152283611348565b946020939093013593505050565b60006020828403121561154257600080fd5b8135610e80816117ff565b60006020828403121561155f57600080fd5b8151610e80816117ff565b6000806020838503121561157d57600080fd5b823567ffffffffffffffff8082111561159557600080fd5b818501915085601f8301126115a957600080fd5b8135818111156115b857600080fd5b8660208285010111156115ca57600080fd5b60209290920196919550909350505050565b6000602082840312156115ee57600080fd5b5035919050565b6000815180845261160d81602086016020860161176c565b601f01601f19169290920160200192915050565b6000845160206116348285838a0161176c565b8551918401916116478184848a0161176c565b8554920191600090600181811c908083168061166457607f831692505b85831081141561168257634e487b7160e01b85526022600452602485fd5b80801561169657600181146116a7576116d4565b60ff198516885283880195506116d4565b60008b81526020902060005b858110156116cc5781548a8201529084019088016116b3565b505083880195505b50939b9a5050505050505050505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611718908301846115f5565b9695505050505050565b602081526000610e8060208301846115f5565b60008219821115611748576117486117d3565b500190565b6000816000190483118215151615611767576117676117d3565b500290565b60005b8381101561178757818101518382015260200161176f565b83811115610dec5750506000910152565b600181811c908216806117ac57607f821691505b602082108114156117cd57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b0319811681146107fa57600080fdfea2646970667358221220760ea41ec1f59ad9a9ba22008ec77e179d96096b23be428ec21ecdde6fc7860764736f6c63430008070033697066733a2f2f62616679626569676466716e79726c3770753474716c7a6a777366326c7a75726c70786334666b356335706572776862637266727a376776696f652f

Deployed Bytecode

0x6080604052600436106101e35760003560e01c806370c93f1a11610102578063c6f6f21611610095578063e985e9c511610064578063e985e9c51461052b578063f2fde38b14610574578063f676308a14610594578063f968adbe146105b457600080fd5b8063c6f6f216146104c0578063c87b56dd146104e0578063d431b1ac14610500578063d5abeb011461051557600080fd5b806395d89b41116100d157806395d89b4114610458578063a0712d681461046d578063a22cb46514610480578063b88d4fde146104a057600080fd5b806370c93f1a146103ef578063715018a6146104055780638da5cb5b1461041a57806391b7f5ed1461043857600080fd5b80633ccfd60b1161017a5780635c975abb116101495780635c975abb1461038057806362b99ad41461039a5780636352211e146103af57806370a08231146103cf57600080fd5b80633ccfd60b1461031657806342842e0e1461032b5780635503a0e81461034b57806355f804b31461036057600080fd5b806315560b99116101b657806315560b991461029957806318160ddd146102b957806323b872dd146102e057806324a6ab0c1461030057600080fd5b806301ffc9a7146101e857806306fdde031461021d578063081812fc1461023f578063095ea7b314610277575b600080fd5b3480156101f457600080fd5b50610208610203366004611530565b6105ca565b60405190151581526020015b60405180910390f35b34801561022957600080fd5b5061023261061c565b6040516102149190611722565b34801561024b57600080fd5b5061025f61025a3660046115dc565b6106ae565b6040516001600160a01b039091168152602001610214565b34801561028357600080fd5b50610297610292366004611506565b6106f2565b005b3480156102a557600080fd5b506102976102b43660046115dc565b610792565b3480156102c557600080fd5b5060015460005403600019015b604051908152602001610214565b3480156102ec57600080fd5b506102976102fb3660046113b2565b6107fd565b34801561030c57600080fd5b506102d2600a5481565b34801561032257600080fd5b5061029761098e565b34801561033757600080fd5b506102976103463660046113b2565b610a04565b34801561035757600080fd5b50610232610a24565b34801561036c57600080fd5b5061029761037b36600461156a565b610ab2565b34801561038c57600080fd5b50600f546102089060ff1681565b3480156103a657600080fd5b50610232610ac6565b3480156103bb57600080fd5b5061025f6103ca3660046115dc565b610ad3565b3480156103db57600080fd5b506102d26103ea366004611364565b610ade565b3480156103fb57600080fd5b506102d260095481565b34801561041157600080fd5b50610297610b2d565b34801561042657600080fd5b506008546001600160a01b031661025f565b34801561044457600080fd5b506102976104533660046115dc565b610b3f565b34801561046457600080fd5b50610232610b4c565b61029761047b3660046115dc565b610b5b565b34801561048c57600080fd5b5061029761049b3660046114ca565b610d12565b3480156104ac57600080fd5b506102976104bb3660046113ee565b610da8565b3480156104cc57600080fd5b506102976104db3660046115dc565b610df2565b3480156104ec57600080fd5b506102326104fb3660046115dc565b610dff565b34801561050c57600080fd5b50610297610e87565b34801561052157600080fd5b506102d2600b5481565b34801561053757600080fd5b5061020861054636600461137f565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b34801561058057600080fd5b5061029761058f366004611364565b610ea3565b3480156105a057600080fd5b506102976105af3660046115dc565b610f19565b3480156105c057600080fd5b506102d2600c5481565b60006301ffc9a760e01b6001600160e01b0319831614806105fb57506380ac58cd60e01b6001600160e01b03198316145b806106165750635b5e139f60e01b6001600160e01b03198316145b92915050565b60606002805461062b90611798565b80601f016020809104026020016040519081016040528092919081815260200182805461065790611798565b80156106a45780601f10610679576101008083540402835291602001916106a4565b820191906000526020600020905b81548152906001019060200180831161068757829003601f168201915b5050505050905090565b60006106b982610f26565b6106d6576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b60006106fd82610ad3565b9050336001600160a01b03821614610736576107198133610546565b610736576040516367d9dca160e11b815260040160405180910390fd5b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b61079a610f5b565b6001546000540360001901156107f05760405162461bcd60e51b81526020600482015260166024820152752932b9b2b93b32b99030b63932b0b23c903a30b5b2b760511b60448201526064015b60405180910390fd5b6107fa3382610fb5565b50565b6000610808826110ac565b9050836001600160a01b0316816001600160a01b03161461083b5760405162a1148160e81b815260040160405180910390fd5b60008281526006602052604090208054338082146001600160a01b038816909114176108885761086b8633610546565b61088857604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b0385166108af57604051633a954ecd60e21b815260040160405180910390fd5b80156108ba57600082555b6001600160a01b038681166000908152600560205260408082208054600019019055918716808252919020805460010190554260a01b17600160e11b17600085815260046020526040902055600160e11b831661094557600184016000818152600460205260409020546109435760005481146109435760008181526004602052604090208490555b505b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050505050565b610996610f5b565b6008546040516001600160a01b03909116904780156108fc02916000818181858888f19350505050610a025760405162461bcd60e51b815260206004820152601560248201527415da5d1a191c985dc81d5b9cdd58d8d95cdcd99d5b605a1b60448201526064016107e7565b565b610a1f83838360405180602001604052806000815250610da8565b505050565b600e8054610a3190611798565b80601f0160208091040260200160405190810160405280929190818152602001828054610a5d90611798565b8015610aaa5780601f10610a7f57610100808354040283529160200191610aaa565b820191906000526020600020905b815481529060010190602001808311610a8d57829003601f168201915b505050505081565b610aba610f5b565b610a1f600d83836112af565b600d8054610a3190611798565b6000610616826110ac565b60006001600160a01b038216610b07576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b610b35610f5b565b610a026000611115565b610b47610f5b565b600955565b60606003805461062b90611798565b600f5460ff1615610b9f5760405162461bcd60e51b815260206004820152600e60248201526d135a5b9d1a5b99c81c185d5cd95960921b60448201526064016107e7565b6000610bb46001546000546000199190030190565b90506000333214610c075760405162461bcd60e51b815260206004820152601f60248201527f5468652063616c6c657220697320616e6f7468657220636f6e7472616374210060448201526064016107e7565b600b54610c148484611735565b1115610c545760405162461bcd60e51b815260206004820152600f60248201526e4578636565647320737570706c792160881b60448201526064016107e7565b600083118015610c665750600c548311155b610ca95760405162461bcd60e51b8152602060048201526014602482015273496e76616c6964206d696e7420616d6f756e742160601b60448201526064016107e7565b600a54821115610cb857506009545b610cc2838261174d565b341015610d085760405162461bcd60e51b8152602060048201526014602482015273115512081cd95b9d081b9bdd0818dbdc9c9958dd60621b60448201526064016107e7565b610a1f3384610fb5565b6001600160a01b038216331415610d3c5760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b610db38484846107fd565b6001600160a01b0383163b15610dec57610dcf84848484611167565b610dec576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b610dfa610f5b565b600c55565b6060610e0a82610f26565b610e2757604051630a14c4b560e41b815260040160405180910390fd5b6000610e3161125e565b9050805160001415610e525760405180602001604052806000815250610e80565b80610e5c8461126d565b600e604051602001610e7093929190611621565b6040516020818303038152906040525b9392505050565b610e8f610f5b565b600f805460ff19811660ff90911615179055565b610eab610f5b565b6001600160a01b038116610f105760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016107e7565b6107fa81611115565b610f21610f5b565b600a55565b600081600111158015610f3a575060005482105b8015610616575050600090815260046020526040902054600160e01b161590565b6008546001600160a01b03163314610a025760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016107e7565b60005481610fd65760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b03831660008181526005602090815260408083208054680100000000000000018802019055848352600490915281206001851460e11b4260a01b178317905582840190839083907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8180a4600183015b81811461108557808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a460010161104d565b50816110a357604051622e076360e81b815260040160405180910390fd5b60005550505050565b600081806001116110fc576000548110156110fc57600081815260046020526040902054600160e01b81166110fa575b80610e805750600019016000818152600460205260409020546110dc565b505b604051636f96cda160e11b815260040160405180910390fd5b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a029061119c9033908990889088906004016116e5565b602060405180830381600087803b1580156111b657600080fd5b505af19250505080156111e6575060408051601f3d908101601f191682019092526111e39181019061154d565b60015b611241573d808015611214576040519150601f19603f3d011682016040523d82523d6000602084013e611219565b606091505b508051611239576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050949350505050565b6060600d805461062b90611798565b604080516080019081905280825b600183039250600a81066030018353600a9004806112985761129d565b61127b565b50819003601f19909101908152919050565b8280546112bb90611798565b90600052602060002090601f0160209004810192826112dd5760008555611323565b82601f106112f65782800160ff19823516178555611323565b82800160010185558215611323579182015b82811115611323578235825591602001919060010190611308565b5061132f929150611333565b5090565b5b8082111561132f5760008155600101611334565b80356001600160a01b038116811461135f57600080fd5b919050565b60006020828403121561137657600080fd5b610e8082611348565b6000806040838503121561139257600080fd5b61139b83611348565b91506113a960208401611348565b90509250929050565b6000806000606084860312156113c757600080fd5b6113d084611348565b92506113de60208501611348565b9150604084013590509250925092565b6000806000806080858703121561140457600080fd5b61140d85611348565b935061141b60208601611348565b925060408501359150606085013567ffffffffffffffff8082111561143f57600080fd5b818701915087601f83011261145357600080fd5b813581811115611465576114656117e9565b604051601f8201601f19908116603f0116810190838211818310171561148d5761148d6117e9565b816040528281528a60208487010111156114a657600080fd5b82602086016020830137600060208483010152809550505050505092959194509250565b600080604083850312156114dd57600080fd5b6114e683611348565b9150602083013580151581146114fb57600080fd5b809150509250929050565b6000806040838503121561151957600080fd5b61152283611348565b946020939093013593505050565b60006020828403121561154257600080fd5b8135610e80816117ff565b60006020828403121561155f57600080fd5b8151610e80816117ff565b6000806020838503121561157d57600080fd5b823567ffffffffffffffff8082111561159557600080fd5b818501915085601f8301126115a957600080fd5b8135818111156115b857600080fd5b8660208285010111156115ca57600080fd5b60209290920196919550909350505050565b6000602082840312156115ee57600080fd5b5035919050565b6000815180845261160d81602086016020860161176c565b601f01601f19169290920160200192915050565b6000845160206116348285838a0161176c565b8551918401916116478184848a0161176c565b8554920191600090600181811c908083168061166457607f831692505b85831081141561168257634e487b7160e01b85526022600452602485fd5b80801561169657600181146116a7576116d4565b60ff198516885283880195506116d4565b60008b81526020902060005b858110156116cc5781548a8201529084019088016116b3565b505083880195505b50939b9a5050505050505050505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611718908301846115f5565b9695505050505050565b602081526000610e8060208301846115f5565b60008219821115611748576117486117d3565b500190565b6000816000190483118215151615611767576117676117d3565b500290565b60005b8381101561178757818101518382015260200161176f565b83811115610dec5750506000910152565b600181811c908216806117ac57607f821691505b602082108114156117cd57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b0319811681146107fa57600080fdfea2646970667358221220760ea41ec1f59ad9a9ba22008ec77e179d96096b23be428ec21ecdde6fc7860764736f6c63430008070033

Deployed Bytecode Sourcemap

54528:2326:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22028:639;;;;;;;;;;-1:-1:-1;22028:639:0;;;;;:::i;:::-;;:::i;:::-;;;6681:14:1;;6674:22;6656:41;;6644:2;6629:18;22028:639:0;;;;;;;;22930:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;29413:218::-;;;;;;;;;;-1:-1:-1;29413:218:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;5979:32:1;;;5961:51;;5949:2;5934:18;29413:218:0;5815:203:1;28854:400:0;;;;;;;;;;-1:-1:-1;28854:400:0;;;;;:::i;:::-;;:::i;:::-;;56528:166;;;;;;;;;;-1:-1:-1;56528:166:0;;;;;:::i;:::-;;:::i;18681:323::-;;;;;;;;;;-1:-1:-1;55894:1:0;18955:12;18742:7;18939:13;:28;-1:-1:-1;;18939:46:0;18681:323;;;10292:25:1;;;10280:2;10265:18;18681:323:0;10146:177:1;33120:2817:0;;;;;;;;;;-1:-1:-1;33120:2817:0;;;;;:::i;:::-;;:::i;54619:32::-;;;;;;;;;;;;;;;;56700:151;;;;;;;;;;;;;:::i;36033:185::-;;;;;;;;;;-1:-1:-1;36033:185:0;;;;;:::i;:::-;;:::i;54826:33::-;;;;;;;;;;;;;:::i;56009:104::-;;;;;;;;;;-1:-1:-1;56009:104:0;;;;;:::i;:::-;;:::i;54864:25::-;;;;;;;;;;-1:-1:-1;54864:25:0;;;;;;;;54726:95;;;;;;;;;;;;;:::i;24323:152::-;;;;;;;;;;-1:-1:-1;24323:152:0;;;;;:::i;:::-;;:::i;19865:233::-;;;;;;;;;;-1:-1:-1;19865:233:0;;;;;:::i;:::-;;:::i;54576:38::-;;;;;;;;;;;;;;;;2776:103;;;;;;;;;;;;;:::i;2128:87::-;;;;;;;;;;-1:-1:-1;2201:6:0;;-1:-1:-1;;;;;2201:6:0;2128:87;;55521:83;;;;;;;;;;-1:-1:-1;55521:83:0;;;;;:::i;:::-;;:::i;23106:104::-;;;;;;;;;;;;;:::i;54954:561::-;;;;;;:::i;:::-;;:::i;29971:308::-;;;;;;;;;;-1:-1:-1;29971:308:0;;;;;:::i;:::-;;:::i;36816:399::-;;;;;;;;;;-1:-1:-1;36816:399:0;;;;;:::i;:::-;;:::i;55716:92::-;;;;;;;;;;-1:-1:-1;55716:92:0;;;;;:::i;:::-;;:::i;56119:329::-;;;;;;;;;;-1:-1:-1;56119:329:0;;;;;:::i;:::-;;:::i;56454:68::-;;;;;;;;;;;;;:::i;54656:31::-;;;;;;;;;;;;;;;;30436:164;;;;;;;;;;-1:-1:-1;30436:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;30557:25:0;;;30533:4;30557:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;30436:164;3034:201;;;;;;;;;;-1:-1:-1;3034:201:0;;;;;:::i;:::-;;:::i;55610:100::-;;;;;;;;;;-1:-1:-1;55610:100:0;;;;;:::i;:::-;;:::i;54692:27::-;;;;;;;;;;;;;;;;22028:639;22113:4;-1:-1:-1;;;;;;;;;22437:25:0;;;;:102;;-1:-1:-1;;;;;;;;;;22514:25:0;;;22437:102;:179;;;-1:-1:-1;;;;;;;;;;22591:25:0;;;22437:179;22417:199;22028:639;-1:-1:-1;;22028:639:0:o;22930:100::-;22984:13;23017:5;23010:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22930:100;:::o;29413:218::-;29489:7;29514:16;29522:7;29514;:16::i;:::-;29509:64;;29539:34;;-1:-1:-1;;;29539:34:0;;;;;;;;;;;29509:64;-1:-1:-1;29593:24:0;;;;:15;:24;;;;;:30;-1:-1:-1;;;;;29593:30:0;;29413:218::o;28854:400::-;28935:13;28951:16;28959:7;28951;:16::i;:::-;28935:32;-1:-1:-1;52711:10:0;-1:-1:-1;;;;;28984:28:0;;;28980:175;;29032:44;29049:5;52711:10;30436:164;:::i;29032:44::-;29027:128;;29104:35;;-1:-1:-1;;;29104:35:0;;;;;;;;;;;29027:128;29167:24;;;;:15;:24;;;;;;:35;;-1:-1:-1;;;;;;29167:35:0;-1:-1:-1;;;;;29167:35:0;;;;;;;;;29218:28;;29167:24;;29218:28;;;;;;;28924:330;28854:400;;:::o;56528:166::-;2014:13;:11;:13::i;:::-;55894:1;18955:12;18742:7;18939:13;:28;-1:-1:-1;;18939:46:0;56606:18;56598:53:::1;;;::::0;-1:-1:-1;;;56598:53:0;;9647:2:1;56598:53:0::1;::::0;::::1;9629:21:1::0;9686:2;9666:18;;;9659:30;-1:-1:-1;;;9705:18:1;;;9698:52;9767:18;;56598:53:0::1;;;;;;;;;56660:28;56666:10;56678:9;56660:5;:28::i;:::-;56528:166:::0;:::o;33120:2817::-;33254:27;33284;33303:7;33284:18;:27::i;:::-;33254:57;;33369:4;-1:-1:-1;;;;;33328:45:0;33344:19;-1:-1:-1;;;;;33328:45:0;;33324:86;;33382:28;;-1:-1:-1;;;33382:28:0;;;;;;;;;;;33324:86;33424:27;32234:24;;;:15;:24;;;;;32456:26;;52711:10;31859:30;;;-1:-1:-1;;;;;31552:28:0;;31837:20;;;31834:56;33610:180;;33703:43;33720:4;52711:10;30436:164;:::i;33703:43::-;33698:92;;33755:35;;-1:-1:-1;;;33755:35:0;;;;;;;;;;;33698:92;-1:-1:-1;;;;;33807:16:0;;33803:52;;33832:23;;-1:-1:-1;;;33832:23:0;;;;;;;;;;;33803:52;34004:15;34001:160;;;34144:1;34123:19;34116:30;34001:160;-1:-1:-1;;;;;34541:24:0;;;;;;;:18;:24;;;;;;34539:26;;-1:-1:-1;;34539:26:0;;;34610:22;;;;;;;;;34608:24;;-1:-1:-1;34608:24:0;;;27712:11;27687:23;27683:41;27670:63;-1:-1:-1;;;27670:63:0;34903:26;;;;:17;:26;;;;;:175;-1:-1:-1;;;35198:47:0;;35194:627;;35303:1;35293:11;;35271:19;35426:30;;;:17;:30;;;;;;35422:384;;35564:13;;35549:11;:28;35545:242;;35711:30;;;;:17;:30;;;;;:52;;;35545:242;35252:569;35194:627;35868:7;35864:2;-1:-1:-1;;;;;35849:27:0;35858:4;-1:-1:-1;;;;;35849:27:0;;;;;;;;;;;33243:2694;;;33120:2817;;;:::o;56700:151::-;2014:13;:11;:13::i;:::-;2201:6;;56762:44:::1;::::0;-1:-1:-1;;;;;2201:6:0;;;;56784:21:::1;56762:44:::0;::::1;;;::::0;::::1;::::0;;;56784:21;2201:6;56762:44;::::1;;;;;;56746:99;;;::::0;-1:-1:-1;;;56746:99:0;;9998:2:1;56746:99:0::1;::::0;::::1;9980:21:1::0;10037:2;10017:18;;;10010:30;-1:-1:-1;;;10056:18:1;;;10049:51;10117:18;;56746:99:0::1;9796:345:1::0;56746:99:0::1;56700:151::o:0;36033:185::-;36171:39;36188:4;36194:2;36198:7;36171:39;;;;;;;;;;;;:16;:39::i;:::-;36033:185;;;:::o;54826:33::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;56009:104::-;2014:13;:11;:13::i;:::-;56084:23:::1;:9;56096:11:::0;;56084:23:::1;:::i;54726:95::-:0;;;;;;;:::i;24323:152::-;24395:7;24438:27;24457:7;24438:18;:27::i;19865:233::-;19937:7;-1:-1:-1;;;;;19961:19:0;;19957:60;;19989:28;;-1:-1:-1;;;19989:28:0;;;;;;;;;;;19957:60;-1:-1:-1;;;;;;20035:25:0;;;;;:18;:25;;;;;;14024:13;20035:55;;19865:233::o;2776:103::-;2014:13;:11;:13::i;:::-;2841:30:::1;2868:1;2841:18;:30::i;55521:83::-:0;2014:13;:11;:13::i;:::-;55580:10:::1;:18:::0;55521:83::o;23106:104::-;23162:13;23195:7;23188:14;;;;;:::i;54954:561::-;55020:6;;;;55019:7;55011:34;;;;-1:-1:-1;;;55011:34:0;;7827:2:1;55011:34:0;;;7809:21:1;7866:2;7846:18;;;7839:30;-1:-1:-1;;;7885:18:1;;;7878:44;7939:18;;55011:34:0;7625:338:1;55011:34:0;55052:20;55075:13;55894:1;18955:12;18742:7;18939:13;-1:-1:-1;;18939:28:0;;;:46;;18681:323;55075:13;55052:36;-1:-1:-1;55095:13:0;55123:10;55137:9;55123:23;55115:67;;;;-1:-1:-1;;;55115:67:0;;9287:2:1;55115:67:0;;;9269:21:1;9326:2;9306:18;;;9299:30;9365:33;9345:18;;;9338:61;9416:18;;55115:67:0;9085:355:1;55115:67:0;55225:9;;55197:24;55212:9;55197:12;:24;:::i;:::-;:37;;55189:65;;;;-1:-1:-1;;;55189:65:0;;7134:2:1;55189:65:0;;;7116:21:1;7173:2;7153:18;;;7146:30;-1:-1:-1;;;7192:18:1;;;7185:45;7247:18;;55189:65:0;6932:339:1;55189:65:0;55281:1;55269:9;:13;:38;;;;;55299:8;;55286:9;:21;;55269:38;55261:71;;;;-1:-1:-1;;;55261:71:0;;8577:2:1;55261:71:0;;;8559:21:1;8616:2;8596:18;;;8589:30;-1:-1:-1;;;8635:18:1;;;8628:50;8695:18;;55261:71:0;8375:344:1;55261:71:0;55358:10;;55343:12;:25;55339:66;;;-1:-1:-1;55387:10:0;;55339:66;55432:17;55440:9;55432:5;:17;:::i;:::-;55419:9;:30;;55411:63;;;;-1:-1:-1;;;55411:63:0;;7478:2:1;55411:63:0;;;7460:21:1;7517:2;7497:18;;;7490:30;-1:-1:-1;;;7536:18:1;;;7529:50;7596:18;;55411:63:0;7276:344:1;55411:63:0;55481:28;55487:10;55499:9;55481:5;:28::i;29971:308::-;-1:-1:-1;;;;;30070:31:0;;52711:10;30070:31;30066:61;;;30110:17;;-1:-1:-1;;;30110:17:0;;;;;;;;;;;30066:61;52711:10;30140:39;;;;:18;:39;;;;;;;;-1:-1:-1;;;;;30140:49:0;;;;;;;;;;;;:60;;-1:-1:-1;;30140:60:0;;;;;;;;;;30216:55;;6656:41:1;;;30140:49:0;;52711:10;30216:55;;6629:18:1;30216:55:0;;;;;;;29971:308;;:::o;36816:399::-;36983:31;36996:4;37002:2;37006:7;36983:12;:31::i;:::-;-1:-1:-1;;;;;37029:14:0;;;:19;37025:183;;37068:56;37099:4;37105:2;37109:7;37118:5;37068:30;:56::i;:::-;37063:145;;37152:40;;-1:-1:-1;;;37152:40:0;;;;;;;;;;;37063:145;36816:399;;;;:::o;55716:92::-;2014:13;:11;:13::i;:::-;55782:8:::1;:20:::0;55716:92::o;56119:329::-;56192:13;56223:16;56231:7;56223;:16::i;:::-;56218:59;;56248:29;;-1:-1:-1;;;56248:29:0;;;;;;;;;;;56218:59;56290:21;56314:10;:8;:10::i;:::-;56290:34;;56348:7;56342:21;56367:1;56342:26;;:98;;;;;;;;;;;;;;;;;56395:7;56404:18;56414:7;56404:9;:18::i;:::-;56424:9;56378:56;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;56342:98;56335:105;56119:329;-1:-1:-1;;;56119:329:0:o;56454:68::-;2014:13;:11;:13::i;:::-;56510:6:::1;::::0;;-1:-1:-1;;56500:16:0;::::1;56510:6;::::0;;::::1;56509:7;56500:16;::::0;;56454:68::o;3034:201::-;2014:13;:11;:13::i;:::-;-1:-1:-1;;;;;3123:22:0;::::1;3115:73;;;::::0;-1:-1:-1;;;3115:73:0;;8170:2:1;3115:73:0::1;::::0;::::1;8152:21:1::0;8209:2;8189:18;;;8182:30;8248:34;8228:18;;;8221:62;-1:-1:-1;;;8299:18:1;;;8292:36;8345:19;;3115:73:0::1;7968:402:1::0;3115:73:0::1;3199:28;3218:8;3199:18;:28::i;55610:100::-:0;2014:13;:11;:13::i;:::-;55680:10:::1;:24:::0;55610:100::o;30858:282::-;30923:4;30979:7;55894:1;30960:26;;:66;;;;;31013:13;;31003:7;:23;30960:66;:153;;;;-1:-1:-1;;31064:26:0;;;;:17;:26;;;;;;-1:-1:-1;;;31064:44:0;:49;;30858:282::o;2293:132::-;2201:6;;-1:-1:-1;;;;;2201:6:0;52711:10;2357:23;2349:68;;;;-1:-1:-1;;;2349:68:0;;8926:2:1;2349:68:0;;;8908:21:1;;;8945:18;;;8938:30;9004:34;8984:18;;;8977:62;9056:18;;2349:68:0;8724:356:1;40477:2454:0;40550:20;40573:13;40601;40597:44;;40623:18;;-1:-1:-1;;;40623:18:0;;;;;;;;;;;40597:44;-1:-1:-1;;;;;41129:22:0;;;;;;:18;:22;;;;14162:2;41129:22;;;:71;;41167:32;41155:45;;41129:71;;;41443:31;;;:17;:31;;;;;-1:-1:-1;28143:15:0;;28117:24;28113:46;27712:11;27687:23;27683:41;27680:52;27670:63;;41443:173;;41678:23;;;;41443:31;;41129:22;;42177:25;41129:22;;42030:335;42445:1;42431:12;42427:20;42385:346;42486:3;42477:7;42474:16;42385:346;;42704:7;42694:8;42691:1;42664:25;42661:1;42658;42653:59;42539:1;42526:15;42385:346;;;-1:-1:-1;42764:13:0;42760:45;;42786:19;;-1:-1:-1;;;42786:19:0;;;;;;;;;;;42760:45;42822:13;:19;-1:-1:-1;36033:185:0;;;:::o;25478:1275::-;25545:7;25580;;55894:1;25629:23;25625:1061;;25682:13;;25675:4;:20;25671:1015;;;25720:14;25737:23;;;:17;:23;;;;;;-1:-1:-1;;;25826:24:0;;25822:845;;26491:113;26498:11;26491:113;;-1:-1:-1;;;26569:6:0;26551:25;;;;:17;:25;;;;;;26491:113;;25822:845;25697:989;25671:1015;26714:31;;-1:-1:-1;;;26714:31:0;;;;;;;;;;;3395:191;3488:6;;;-1:-1:-1;;;;;3505:17:0;;;-1:-1:-1;;;;;;3505:17:0;;;;;;;3538:40;;3488:6;;;3505:17;3488:6;;3538:40;;3469:16;;3538:40;3458:128;3395:191;:::o;39299:716::-;39483:88;;-1:-1:-1;;;39483:88:0;;39462:4;;-1:-1:-1;;;;;39483:45:0;;;;;:88;;52711:10;;39550:4;;39556:7;;39565:5;;39483:88;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;39483:88:0;;;;;;;;-1:-1:-1;;39483:88:0;;;;;;;;;;;;:::i;:::-;;;39479:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;39766:13:0;;39762:235;;39812:40;;-1:-1:-1;;;39812:40:0;;;;;;;;;;;39762:235;39955:6;39949:13;39940:6;39936:2;39932:15;39925:38;39479:529;-1:-1:-1;;;;;;39642:64:0;-1:-1:-1;;;39642:64:0;;-1:-1:-1;39299:716:0;;;;;;:::o;55907:96::-;55959:13;55988:9;55981:16;;;;;:::i;52831:1581::-;53314:4;53308:11;;53321:4;53304:22;53400:17;;;;53304:22;53758:5;53740:428;53806:1;53801:3;53797:11;53790:18;;53977:2;53971:4;53967:13;53963:2;53959:22;53954:3;53946:36;54071:2;54061:13;;;54128:25;;54146:5;;54128:25;53740:428;;;-1:-1:-1;54198:13:0;;;-1:-1:-1;;54313:14:0;;;54375:19;;;54313:14;52831:1581;-1:-1:-1;52831:1581:0:o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:173:1;82:20;;-1:-1:-1;;;;;131:31:1;;121:42;;111:70;;177:1;174;167:12;111:70;14:173;;;:::o;192:186::-;251:6;304:2;292:9;283:7;279:23;275:32;272:52;;;320:1;317;310:12;272:52;343:29;362:9;343:29;:::i;383:260::-;451:6;459;512:2;500:9;491:7;487:23;483:32;480:52;;;528:1;525;518:12;480:52;551:29;570:9;551:29;:::i;:::-;541:39;;599:38;633:2;622:9;618:18;599:38;:::i;:::-;589:48;;383:260;;;;;:::o;648:328::-;725:6;733;741;794:2;782:9;773:7;769:23;765:32;762:52;;;810:1;807;800:12;762:52;833:29;852:9;833:29;:::i;:::-;823:39;;881:38;915:2;904:9;900:18;881:38;:::i;:::-;871:48;;966:2;955:9;951:18;938:32;928:42;;648:328;;;;;:::o;981:1138::-;1076:6;1084;1092;1100;1153:3;1141:9;1132:7;1128:23;1124:33;1121:53;;;1170:1;1167;1160:12;1121:53;1193:29;1212:9;1193:29;:::i;:::-;1183:39;;1241:38;1275:2;1264:9;1260:18;1241:38;:::i;:::-;1231:48;;1326:2;1315:9;1311:18;1298:32;1288:42;;1381:2;1370:9;1366:18;1353:32;1404:18;1445:2;1437:6;1434:14;1431:34;;;1461:1;1458;1451:12;1431:34;1499:6;1488:9;1484:22;1474:32;;1544:7;1537:4;1533:2;1529:13;1525:27;1515:55;;1566:1;1563;1556:12;1515:55;1602:2;1589:16;1624:2;1620;1617:10;1614:36;;;1630:18;;:::i;:::-;1705:2;1699:9;1673:2;1759:13;;-1:-1:-1;;1755:22:1;;;1779:2;1751:31;1747:40;1735:53;;;1803:18;;;1823:22;;;1800:46;1797:72;;;1849:18;;:::i;:::-;1889:10;1885:2;1878:22;1924:2;1916:6;1909:18;1964:7;1959:2;1954;1950;1946:11;1942:20;1939:33;1936:53;;;1985:1;1982;1975:12;1936:53;2041:2;2036;2032;2028:11;2023:2;2015:6;2011:15;1998:46;2086:1;2081:2;2076;2068:6;2064:15;2060:24;2053:35;2107:6;2097:16;;;;;;;981:1138;;;;;;;:::o;2124:347::-;2189:6;2197;2250:2;2238:9;2229:7;2225:23;2221:32;2218:52;;;2266:1;2263;2256:12;2218:52;2289:29;2308:9;2289:29;:::i;:::-;2279:39;;2368:2;2357:9;2353:18;2340:32;2415:5;2408:13;2401:21;2394:5;2391:32;2381:60;;2437:1;2434;2427:12;2381:60;2460:5;2450:15;;;2124:347;;;;;:::o;2476:254::-;2544:6;2552;2605:2;2593:9;2584:7;2580:23;2576:32;2573:52;;;2621:1;2618;2611:12;2573:52;2644:29;2663:9;2644:29;:::i;:::-;2634:39;2720:2;2705:18;;;;2692:32;;-1:-1:-1;;;2476:254:1:o;2735:245::-;2793:6;2846:2;2834:9;2825:7;2821:23;2817:32;2814:52;;;2862:1;2859;2852:12;2814:52;2901:9;2888:23;2920:30;2944:5;2920:30;:::i;2985:249::-;3054:6;3107:2;3095:9;3086:7;3082:23;3078:32;3075:52;;;3123:1;3120;3113:12;3075:52;3155:9;3149:16;3174:30;3198:5;3174:30;:::i;3239:592::-;3310:6;3318;3371:2;3359:9;3350:7;3346:23;3342:32;3339:52;;;3387:1;3384;3377:12;3339:52;3427:9;3414:23;3456:18;3497:2;3489:6;3486:14;3483:34;;;3513:1;3510;3503:12;3483:34;3551:6;3540:9;3536:22;3526:32;;3596:7;3589:4;3585:2;3581:13;3577:27;3567:55;;3618:1;3615;3608:12;3567:55;3658:2;3645:16;3684:2;3676:6;3673:14;3670:34;;;3700:1;3697;3690:12;3670:34;3745:7;3740:2;3731:6;3727:2;3723:15;3719:24;3716:37;3713:57;;;3766:1;3763;3756:12;3713:57;3797:2;3789:11;;;;;3819:6;;-1:-1:-1;3239:592:1;;-1:-1:-1;;;;3239:592:1:o;3836:180::-;3895:6;3948:2;3936:9;3927:7;3923:23;3919:32;3916:52;;;3964:1;3961;3954:12;3916:52;-1:-1:-1;3987:23:1;;3836:180;-1:-1:-1;3836:180:1:o;4021:257::-;4062:3;4100:5;4094:12;4127:6;4122:3;4115:19;4143:63;4199:6;4192:4;4187:3;4183:14;4176:4;4169:5;4165:16;4143:63;:::i;:::-;4260:2;4239:15;-1:-1:-1;;4235:29:1;4226:39;;;;4267:4;4222:50;;4021:257;-1:-1:-1;;4021:257:1:o;4283:1527::-;4507:3;4545:6;4539:13;4571:4;4584:51;4628:6;4623:3;4618:2;4610:6;4606:15;4584:51;:::i;:::-;4698:13;;4657:16;;;;4720:55;4698:13;4657:16;4742:15;;;4720:55;:::i;:::-;4864:13;;4797:20;;;4837:1;;4924;4946:18;;;;4999;;;;5026:93;;5104:4;5094:8;5090:19;5078:31;;5026:93;5167:2;5157:8;5154:16;5134:18;5131:40;5128:167;;;-1:-1:-1;;;5194:33:1;;5250:4;5247:1;5240:15;5280:4;5201:3;5268:17;5128:167;5311:18;5338:110;;;;5462:1;5457:328;;;;5304:481;;5338:110;-1:-1:-1;;5373:24:1;;5359:39;;5418:20;;;;-1:-1:-1;5338:110:1;;5457:328;10401:1;10394:14;;;10438:4;10425:18;;5552:1;5566:169;5580:8;5577:1;5574:15;5566:169;;;5662:14;;5647:13;;;5640:37;5705:16;;;;5597:10;;5566:169;;;5570:3;;5766:8;5759:5;5755:20;5748:27;;5304:481;-1:-1:-1;5801:3:1;;4283:1527;-1:-1:-1;;;;;;;;;;;4283:1527:1:o;6023:488::-;-1:-1:-1;;;;;6292:15:1;;;6274:34;;6344:15;;6339:2;6324:18;;6317:43;6391:2;6376:18;;6369:34;;;6439:3;6434:2;6419:18;;6412:31;;;6217:4;;6460:45;;6485:19;;6477:6;6460:45;:::i;:::-;6452:53;6023:488;-1:-1:-1;;;;;;6023:488:1:o;6708:219::-;6857:2;6846:9;6839:21;6820:4;6877:44;6917:2;6906:9;6902:18;6894:6;6877:44;:::i;10454:128::-;10494:3;10525:1;10521:6;10518:1;10515:13;10512:39;;;10531:18;;:::i;:::-;-1:-1:-1;10567:9:1;;10454:128::o;10587:168::-;10627:7;10693:1;10689;10685:6;10681:14;10678:1;10675:21;10670:1;10663:9;10656:17;10652:45;10649:71;;;10700:18;;:::i;:::-;-1:-1:-1;10740:9:1;;10587:168::o;10760:258::-;10832:1;10842:113;10856:6;10853:1;10850:13;10842:113;;;10932:11;;;10926:18;10913:11;;;10906:39;10878:2;10871:10;10842:113;;;10973:6;10970:1;10967:13;10964:48;;;-1:-1:-1;;11008:1:1;10990:16;;10983:27;10760:258::o;11023:380::-;11102:1;11098:12;;;;11145;;;11166:61;;11220:4;11212:6;11208:17;11198:27;;11166:61;11273:2;11265:6;11262:14;11242:18;11239:38;11236:161;;;11319:10;11314:3;11310:20;11307:1;11300:31;11354:4;11351:1;11344:15;11382:4;11379:1;11372:15;11236:161;;11023:380;;;:::o;11408:127::-;11469:10;11464:3;11460:20;11457:1;11450:31;11500:4;11497:1;11490:15;11524:4;11521:1;11514:15;11540:127;11601:10;11596:3;11592:20;11589:1;11582:31;11632:4;11629:1;11622:15;11656:4;11653:1;11646:15;11672:131;-1:-1:-1;;;;;;11746:32:1;;11736:43;;11726:71;;11793:1;11790;11783:12

Swarm Source

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