ETH Price: $3,503.34 (+2.53%)
Gas: 16 Gwei

Token

Multitest (MT)
 

Overview

Max Total Supply

1,409 MT

Holders

964

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Balance
4 MT
0x897dfdc2d61eeebf0a9bc73366c9e66d0df77395
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:
Multitest

Compiler Version
v0.8.15+commit.e14f2714

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license
File 1 of 5 : Multitest.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.4;

import "erc721a/contracts/ERC721A.sol";
import "@openzeppelin/contracts/access/Ownable.sol";

contract Multitest is ERC721A, Ownable {

    uint256 public MAX_PER_WALLET = 2;
    uint256 public MAX_PER_TX = 1;
    uint256 public mintRate = 0 ether;

    constructor() ERC721A("Multitest", "MT") {}

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

    function mint(uint256 quantity) external payable  {
        require(quantity <= MAX_PER_TX, "Exceeded the limit tx");
        require(quantity + _numberMinted(msg.sender) <= MAX_PER_WALLET, "Exceeded the limit");
        require(msg.value >= mintRate * quantity, "Insufficient funds!");
        _safeMint(msg.sender, quantity);
    }

    function mintAT(uint256 quantity) external payable  {
        require(quantity + balanceOf(msg.sender) <= MAX_PER_WALLET, "Exceeded the limit");
        require(msg.value >= mintRate * quantity, "Insufficient funds!");
        _safeMint(msg.sender, quantity);
    }

    function mintCD(uint256 quantity, address _to) external payable  {
        require(quantity + _numberMinted(msg.sender) <= MAX_PER_WALLET, "Exceeded the limit");
        require(quantity + _numberMinted(_to) <= MAX_PER_WALLET, "Exceeded the limit");
        require(msg.value >= mintRate * quantity, "Insufficient funds!");
        _safeMint(_to, quantity);
    }

    function ownerMint(address addr, uint quantity) external onlyOwner {
        _safeMint(addr, quantity);
    }

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

    function setMaxPerWallet(uint256 _MAX_MINTS) public onlyOwner {
        MAX_PER_WALLET = _MAX_MINTS;
    }

    function setMaxPerTx(uint256 _MAX_MINTS) public onlyOwner {
        MAX_PER_TX = _MAX_MINTS;
    }

    function setMintRate(uint256 _mintRate) public onlyOwner {
        mintRate = _mintRate;
    }
}

File 2 of 5 : Ownable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (access/Ownable.sol)

pragma solidity ^0.8.0;

import "../utils/Context.sol";

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

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

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

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

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

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

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

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

File 3 of 5 : ERC721A.sol
// SPDX-License-Identifier: MIT
// ERC721A Contracts v4.2.2
// Creator: Chiru Labs

pragma solidity ^0.8.4;

import './IERC721A.sol';

/**
 * @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 4 of 5 : IERC721A.sol
// SPDX-License-Identifier: MIT
// 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 5 of 5 : Context.sol
// SPDX-License-Identifier: MIT
// 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;
    }
}

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

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":[],"name":"MAX_PER_TX","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_PER_WALLET","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"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":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"mintAT","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"},{"internalType":"address","name":"_to","type":"address"}],"name":"mintCD","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"mintRate","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"addr","type":"address"},{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"ownerMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_MAX_MINTS","type":"uint256"}],"name":"setMaxPerTx","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_MAX_MINTS","type":"uint256"}],"name":"setMaxPerWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintRate","type":"uint256"}],"name":"setMintRate","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"payable","type":"function"}]

608060405260026009556001600a556000600b553480156200002057600080fd5b5060405180604001604052806009815260200168135d5b1d1a5d195cdd60ba1b81525060405180604001604052806002815260200161135560f21b81525081600290816200006f91906200018e565b5060036200007e82826200018e565b5050600160005550620000913362000097565b6200025a565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b634e487b7160e01b600052604160045260246000fd5b600181811c908216806200011457607f821691505b6020821081036200013557634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156200018957600081815260208120601f850160051c81016020861015620001645750805b601f850160051c820191505b81811015620001855782815560010162000170565b5050505b505050565b81516001600160401b03811115620001aa57620001aa620000e9565b620001c281620001bb8454620000ff565b846200013b565b602080601f831160018114620001fa5760008415620001e15750858301515b600019600386901b1c1916600185901b17855562000185565b600085815260208120601f198616915b828110156200022b578886015182559484019460019091019084016200020a565b50858210156200024a5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b611679806200026a6000396000f3fe6080604052600436106101b75760003560e01c80638da5cb5b116100ec578063ca0dcf161161008a578063e268e4d311610064578063e268e4d31461048d578063e985e9c5146104ad578063f2fde38b146104f6578063f43a22dc1461051657600080fd5b8063ca0dcf1614610444578063dbe2193f1461045a578063de45c02c1461047a57600080fd5b8063a22cb465116100c6578063a22cb465146103c4578063b88d4fde146103e4578063c6f6f21614610404578063c87b56dd1461042457600080fd5b80638da5cb5b1461037e57806395d89b411461039c578063a0712d68146103b157600080fd5b80633ccfd60b116101595780636352211e116101335780636352211e1461031657806370a0823114610336578063715018a614610356578063894c86ba1461036b57600080fd5b80633ccfd60b146102ce57806342842e0e146102d6578063484b973c146102f657600080fd5b8063095ea7b311610195578063095ea7b31461024b5780630f2cdd6c1461026d57806318160ddd1461029157806323b872dd146102ae57600080fd5b806301ffc9a7146101bc57806306fdde03146101f1578063081812fc14610213575b600080fd5b3480156101c857600080fd5b506101dc6101d7366004611210565b61052c565b60405190151581526020015b60405180910390f35b3480156101fd57600080fd5b5061020661057e565b6040516101e89190611285565b34801561021f57600080fd5b5061023361022e366004611298565b610610565b6040516001600160a01b0390911681526020016101e8565b34801561025757600080fd5b5061026b6102663660046112cd565b610654565b005b34801561027957600080fd5b5061028360095481565b6040519081526020016101e8565b34801561029d57600080fd5b506001546000540360001901610283565b3480156102ba57600080fd5b5061026b6102c93660046112f7565b6106f4565b61026b61088c565b3480156102e257600080fd5b5061026b6102f13660046112f7565b6108fb565b34801561030257600080fd5b5061026b6103113660046112cd565b61091b565b34801561032257600080fd5b50610233610331366004611298565b610953565b34801561034257600080fd5b50610283610351366004611333565b61095e565b34801561036257600080fd5b5061026b6109ad565b61026b610379366004611298565b6109e3565b34801561038a57600080fd5b506008546001600160a01b0316610233565b3480156103a857600080fd5b50610206610a74565b61026b6103bf366004611298565b610a83565b3480156103d057600080fd5b5061026b6103df36600461134e565b610ad9565b3480156103f057600080fd5b5061026b6103ff3660046113a0565b610b6e565b34801561041057600080fd5b5061026b61041f366004611298565b610bb8565b34801561043057600080fd5b5061020661043f366004611298565b610be7565b34801561045057600080fd5b50610283600b5481565b34801561046657600080fd5b5061026b610475366004611298565b610c78565b61026b61048836600461147c565b610ca7565b34801561049957600080fd5b5061026b6104a8366004611298565b610d6c565b3480156104b957600080fd5b506101dc6104c83660046114a8565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b34801561050257600080fd5b5061026b610511366004611333565b610d9b565b34801561052257600080fd5b50610283600a5481565b60006301ffc9a760e01b6001600160e01b03198316148061055d57506380ac58cd60e01b6001600160e01b03198316145b806105785750635b5e139f60e01b6001600160e01b03198316145b92915050565b60606002805461058d906114d2565b80601f01602080910402602001604051908101604052809291908181526020018280546105b9906114d2565b80156106065780601f106105db57610100808354040283529160200191610606565b820191906000526020600020905b8154815290600101906020018083116105e957829003601f168201915b5050505050905090565b600061061b82610e33565b610638576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b600061065f82610953565b9050336001600160a01b038216146106985761067b81336104c8565b610698576040516367d9dca160e11b815260040160405180910390fd5b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b60006106ff82610e68565b9050836001600160a01b0316816001600160a01b0316146107325760405162a1148160e81b815260040160405180910390fd5b60008281526006602052604090208054338082146001600160a01b0388169091141761077f5761076286336104c8565b61077f57604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b0385166107a657604051633a954ecd60e21b815260040160405180910390fd5b80156107b157600082555b6001600160a01b038681166000908152600560205260408082208054600019019055918716808252919020805460010190554260a01b17600160e11b17600085815260046020526040812091909155600160e11b84169003610843576001840160008181526004602052604081205490036108415760005481146108415760008181526004602052604090208490555b505b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050505050565b6008546001600160a01b031633146108bf5760405162461bcd60e51b81526004016108b69061150c565b60405180910390fd5b6008546040516001600160a01b03909116904780156108fc02916000818181858888f193505050501580156108f8573d6000803e3d6000fd5b50565b61091683838360405180602001604052806000815250610b6e565b505050565b6008546001600160a01b031633146109455760405162461bcd60e51b81526004016108b69061150c565b61094f8282610ed7565b5050565b600061057882610e68565b60006001600160a01b038216610987576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b6008546001600160a01b031633146109d75760405162461bcd60e51b81526004016108b69061150c565b6109e16000610ef1565b565b6009546109ef3361095e565b6109f99083611557565b1115610a175760405162461bcd60e51b81526004016108b69061156f565b80600b54610a25919061159b565b341015610a6a5760405162461bcd60e51b8152602060048201526013602482015272496e73756666696369656e742066756e64732160681b60448201526064016108b6565b6108f83382610ed7565b60606003805461058d906114d2565b600a54811115610acd5760405162461bcd60e51b815260206004820152601560248201527408af0c6cacac8cac840e8d0ca40d8d2dad2e840e8f605b1b60448201526064016108b6565b6009546109ef33610f43565b336001600160a01b03831603610b025760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b610b798484846106f4565b6001600160a01b0383163b15610bb257610b9584848484610f6c565b610bb2576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b6008546001600160a01b03163314610be25760405162461bcd60e51b81526004016108b69061150c565b600a55565b6060610bf282610e33565b610c0f57604051630a14c4b560e41b815260040160405180910390fd5b6000610c2660408051602081019091526000815290565b90508051600003610c465760405180602001604052806000815250610c71565b80610c5084611057565b604051602001610c619291906115ba565b6040516020818303038152906040525b9392505050565b6008546001600160a01b03163314610ca25760405162461bcd60e51b81526004016108b69061150c565b600b55565b600954610cb333610f43565b610cbd9084611557565b1115610cdb5760405162461bcd60e51b81526004016108b69061156f565b600954610ce782610f43565b610cf19084611557565b1115610d0f5760405162461bcd60e51b81526004016108b69061156f565b81600b54610d1d919061159b565b341015610d625760405162461bcd60e51b8152602060048201526013602482015272496e73756666696369656e742066756e64732160681b60448201526064016108b6565b61094f8183610ed7565b6008546001600160a01b03163314610d965760405162461bcd60e51b81526004016108b69061150c565b600955565b6008546001600160a01b03163314610dc55760405162461bcd60e51b81526004016108b69061150c565b6001600160a01b038116610e2a5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016108b6565b6108f881610ef1565b600081600111158015610e47575060005482105b8015610578575050600090815260046020526040902054600160e01b161590565b60008180600111610ebe57600054811015610ebe5760008181526004602052604081205490600160e01b82169003610ebc575b80600003610c71575060001901600081815260046020526040902054610e9b565b505b604051636f96cda160e11b815260040160405180910390fd5b61094f82826040518060200160405280600081525061108f565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b03166000908152600560205260409081902054901c67ffffffffffffffff1690565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a0290610fa19033908990889088906004016115e9565b6020604051808303816000875af1925050508015610fdc575060408051601f3d908101601f19168201909252610fd991810190611626565b60015b61103a573d80801561100a576040519150601f19603f3d011682016040523d82523d6000602084013e61100f565b606091505b508051600003611032576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050949350505050565b604080516080019081905280825b600183039250600a81066030018353600a9004806110655750819003601f19909101908152919050565b61109983836110fc565b6001600160a01b0383163b15610916576000548281035b6110c36000868380600101945086610f6c565b6110e0576040516368d2bf6b60e11b815260040160405180910390fd5b8181106110b05781600054146110f557600080fd5b5050505050565b60008054908290036111215760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b03831660008181526005602090815260408083208054680100000000000000018802019055848352600490915281206001851460e11b4260a01b178317905582840190839083907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8180a4600183015b8181146111d057808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600101611198565b50816000036111f157604051622e076360e81b815260040160405180910390fd5b60005550505050565b6001600160e01b0319811681146108f857600080fd5b60006020828403121561122257600080fd5b8135610c71816111fa565b60005b83811015611248578181015183820152602001611230565b83811115610bb25750506000910152565b6000815180845261127181602086016020860161122d565b601f01601f19169290920160200192915050565b602081526000610c716020830184611259565b6000602082840312156112aa57600080fd5b5035919050565b80356001600160a01b03811681146112c857600080fd5b919050565b600080604083850312156112e057600080fd5b6112e9836112b1565b946020939093013593505050565b60008060006060848603121561130c57600080fd5b611315846112b1565b9250611323602085016112b1565b9150604084013590509250925092565b60006020828403121561134557600080fd5b610c71826112b1565b6000806040838503121561136157600080fd5b61136a836112b1565b91506020830135801515811461137f57600080fd5b809150509250929050565b634e487b7160e01b600052604160045260246000fd5b600080600080608085870312156113b657600080fd5b6113bf856112b1565b93506113cd602086016112b1565b925060408501359150606085013567ffffffffffffffff808211156113f157600080fd5b818701915087601f83011261140557600080fd5b8135818111156114175761141761138a565b604051601f8201601f19908116603f0116810190838211818310171561143f5761143f61138a565b816040528281528a602084870101111561145857600080fd5b82602086016020830137600060208483010152809550505050505092959194509250565b6000806040838503121561148f57600080fd5b8235915061149f602084016112b1565b90509250929050565b600080604083850312156114bb57600080fd5b6114c4836112b1565b915061149f602084016112b1565b600181811c908216806114e657607f821691505b60208210810361150657634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b6000821982111561156a5761156a611541565b500190565b602080825260129082015271115e18d959591959081d1a19481b1a5b5a5d60721b604082015260600190565b60008160001904831182151516156115b5576115b5611541565b500290565b600083516115cc81846020880161122d565b8351908301906115e081836020880161122d565b01949350505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061161c90830184611259565b9695505050505050565b60006020828403121561163857600080fd5b8151610c71816111fa56fea2646970667358221220e298abe7261f2fcebe07b1e757447f593e3bcc7875c0aef77515c679db5a5fc064736f6c634300080f0033

Deployed Bytecode

0x6080604052600436106101b75760003560e01c80638da5cb5b116100ec578063ca0dcf161161008a578063e268e4d311610064578063e268e4d31461048d578063e985e9c5146104ad578063f2fde38b146104f6578063f43a22dc1461051657600080fd5b8063ca0dcf1614610444578063dbe2193f1461045a578063de45c02c1461047a57600080fd5b8063a22cb465116100c6578063a22cb465146103c4578063b88d4fde146103e4578063c6f6f21614610404578063c87b56dd1461042457600080fd5b80638da5cb5b1461037e57806395d89b411461039c578063a0712d68146103b157600080fd5b80633ccfd60b116101595780636352211e116101335780636352211e1461031657806370a0823114610336578063715018a614610356578063894c86ba1461036b57600080fd5b80633ccfd60b146102ce57806342842e0e146102d6578063484b973c146102f657600080fd5b8063095ea7b311610195578063095ea7b31461024b5780630f2cdd6c1461026d57806318160ddd1461029157806323b872dd146102ae57600080fd5b806301ffc9a7146101bc57806306fdde03146101f1578063081812fc14610213575b600080fd5b3480156101c857600080fd5b506101dc6101d7366004611210565b61052c565b60405190151581526020015b60405180910390f35b3480156101fd57600080fd5b5061020661057e565b6040516101e89190611285565b34801561021f57600080fd5b5061023361022e366004611298565b610610565b6040516001600160a01b0390911681526020016101e8565b34801561025757600080fd5b5061026b6102663660046112cd565b610654565b005b34801561027957600080fd5b5061028360095481565b6040519081526020016101e8565b34801561029d57600080fd5b506001546000540360001901610283565b3480156102ba57600080fd5b5061026b6102c93660046112f7565b6106f4565b61026b61088c565b3480156102e257600080fd5b5061026b6102f13660046112f7565b6108fb565b34801561030257600080fd5b5061026b6103113660046112cd565b61091b565b34801561032257600080fd5b50610233610331366004611298565b610953565b34801561034257600080fd5b50610283610351366004611333565b61095e565b34801561036257600080fd5b5061026b6109ad565b61026b610379366004611298565b6109e3565b34801561038a57600080fd5b506008546001600160a01b0316610233565b3480156103a857600080fd5b50610206610a74565b61026b6103bf366004611298565b610a83565b3480156103d057600080fd5b5061026b6103df36600461134e565b610ad9565b3480156103f057600080fd5b5061026b6103ff3660046113a0565b610b6e565b34801561041057600080fd5b5061026b61041f366004611298565b610bb8565b34801561043057600080fd5b5061020661043f366004611298565b610be7565b34801561045057600080fd5b50610283600b5481565b34801561046657600080fd5b5061026b610475366004611298565b610c78565b61026b61048836600461147c565b610ca7565b34801561049957600080fd5b5061026b6104a8366004611298565b610d6c565b3480156104b957600080fd5b506101dc6104c83660046114a8565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b34801561050257600080fd5b5061026b610511366004611333565b610d9b565b34801561052257600080fd5b50610283600a5481565b60006301ffc9a760e01b6001600160e01b03198316148061055d57506380ac58cd60e01b6001600160e01b03198316145b806105785750635b5e139f60e01b6001600160e01b03198316145b92915050565b60606002805461058d906114d2565b80601f01602080910402602001604051908101604052809291908181526020018280546105b9906114d2565b80156106065780601f106105db57610100808354040283529160200191610606565b820191906000526020600020905b8154815290600101906020018083116105e957829003601f168201915b5050505050905090565b600061061b82610e33565b610638576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b600061065f82610953565b9050336001600160a01b038216146106985761067b81336104c8565b610698576040516367d9dca160e11b815260040160405180910390fd5b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b60006106ff82610e68565b9050836001600160a01b0316816001600160a01b0316146107325760405162a1148160e81b815260040160405180910390fd5b60008281526006602052604090208054338082146001600160a01b0388169091141761077f5761076286336104c8565b61077f57604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b0385166107a657604051633a954ecd60e21b815260040160405180910390fd5b80156107b157600082555b6001600160a01b038681166000908152600560205260408082208054600019019055918716808252919020805460010190554260a01b17600160e11b17600085815260046020526040812091909155600160e11b84169003610843576001840160008181526004602052604081205490036108415760005481146108415760008181526004602052604090208490555b505b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050505050565b6008546001600160a01b031633146108bf5760405162461bcd60e51b81526004016108b69061150c565b60405180910390fd5b6008546040516001600160a01b03909116904780156108fc02916000818181858888f193505050501580156108f8573d6000803e3d6000fd5b50565b61091683838360405180602001604052806000815250610b6e565b505050565b6008546001600160a01b031633146109455760405162461bcd60e51b81526004016108b69061150c565b61094f8282610ed7565b5050565b600061057882610e68565b60006001600160a01b038216610987576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b6008546001600160a01b031633146109d75760405162461bcd60e51b81526004016108b69061150c565b6109e16000610ef1565b565b6009546109ef3361095e565b6109f99083611557565b1115610a175760405162461bcd60e51b81526004016108b69061156f565b80600b54610a25919061159b565b341015610a6a5760405162461bcd60e51b8152602060048201526013602482015272496e73756666696369656e742066756e64732160681b60448201526064016108b6565b6108f83382610ed7565b60606003805461058d906114d2565b600a54811115610acd5760405162461bcd60e51b815260206004820152601560248201527408af0c6cacac8cac840e8d0ca40d8d2dad2e840e8f605b1b60448201526064016108b6565b6009546109ef33610f43565b336001600160a01b03831603610b025760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b610b798484846106f4565b6001600160a01b0383163b15610bb257610b9584848484610f6c565b610bb2576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b6008546001600160a01b03163314610be25760405162461bcd60e51b81526004016108b69061150c565b600a55565b6060610bf282610e33565b610c0f57604051630a14c4b560e41b815260040160405180910390fd5b6000610c2660408051602081019091526000815290565b90508051600003610c465760405180602001604052806000815250610c71565b80610c5084611057565b604051602001610c619291906115ba565b6040516020818303038152906040525b9392505050565b6008546001600160a01b03163314610ca25760405162461bcd60e51b81526004016108b69061150c565b600b55565b600954610cb333610f43565b610cbd9084611557565b1115610cdb5760405162461bcd60e51b81526004016108b69061156f565b600954610ce782610f43565b610cf19084611557565b1115610d0f5760405162461bcd60e51b81526004016108b69061156f565b81600b54610d1d919061159b565b341015610d625760405162461bcd60e51b8152602060048201526013602482015272496e73756666696369656e742066756e64732160681b60448201526064016108b6565b61094f8183610ed7565b6008546001600160a01b03163314610d965760405162461bcd60e51b81526004016108b69061150c565b600955565b6008546001600160a01b03163314610dc55760405162461bcd60e51b81526004016108b69061150c565b6001600160a01b038116610e2a5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016108b6565b6108f881610ef1565b600081600111158015610e47575060005482105b8015610578575050600090815260046020526040902054600160e01b161590565b60008180600111610ebe57600054811015610ebe5760008181526004602052604081205490600160e01b82169003610ebc575b80600003610c71575060001901600081815260046020526040902054610e9b565b505b604051636f96cda160e11b815260040160405180910390fd5b61094f82826040518060200160405280600081525061108f565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b03166000908152600560205260409081902054901c67ffffffffffffffff1690565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a0290610fa19033908990889088906004016115e9565b6020604051808303816000875af1925050508015610fdc575060408051601f3d908101601f19168201909252610fd991810190611626565b60015b61103a573d80801561100a576040519150601f19603f3d011682016040523d82523d6000602084013e61100f565b606091505b508051600003611032576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050949350505050565b604080516080019081905280825b600183039250600a81066030018353600a9004806110655750819003601f19909101908152919050565b61109983836110fc565b6001600160a01b0383163b15610916576000548281035b6110c36000868380600101945086610f6c565b6110e0576040516368d2bf6b60e11b815260040160405180910390fd5b8181106110b05781600054146110f557600080fd5b5050505050565b60008054908290036111215760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b03831660008181526005602090815260408083208054680100000000000000018802019055848352600490915281206001851460e11b4260a01b178317905582840190839083907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8180a4600183015b8181146111d057808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600101611198565b50816000036111f157604051622e076360e81b815260040160405180910390fd5b60005550505050565b6001600160e01b0319811681146108f857600080fd5b60006020828403121561122257600080fd5b8135610c71816111fa565b60005b83811015611248578181015183820152602001611230565b83811115610bb25750506000910152565b6000815180845261127181602086016020860161122d565b601f01601f19169290920160200192915050565b602081526000610c716020830184611259565b6000602082840312156112aa57600080fd5b5035919050565b80356001600160a01b03811681146112c857600080fd5b919050565b600080604083850312156112e057600080fd5b6112e9836112b1565b946020939093013593505050565b60008060006060848603121561130c57600080fd5b611315846112b1565b9250611323602085016112b1565b9150604084013590509250925092565b60006020828403121561134557600080fd5b610c71826112b1565b6000806040838503121561136157600080fd5b61136a836112b1565b91506020830135801515811461137f57600080fd5b809150509250929050565b634e487b7160e01b600052604160045260246000fd5b600080600080608085870312156113b657600080fd5b6113bf856112b1565b93506113cd602086016112b1565b925060408501359150606085013567ffffffffffffffff808211156113f157600080fd5b818701915087601f83011261140557600080fd5b8135818111156114175761141761138a565b604051601f8201601f19908116603f0116810190838211818310171561143f5761143f61138a565b816040528281528a602084870101111561145857600080fd5b82602086016020830137600060208483010152809550505050505092959194509250565b6000806040838503121561148f57600080fd5b8235915061149f602084016112b1565b90509250929050565b600080604083850312156114bb57600080fd5b6114c4836112b1565b915061149f602084016112b1565b600181811c908216806114e657607f821691505b60208210810361150657634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b6000821982111561156a5761156a611541565b500190565b602080825260129082015271115e18d959591959081d1a19481b1a5b5a5d60721b604082015260600190565b60008160001904831182151516156115b5576115b5611541565b500290565b600083516115cc81846020880161122d565b8351908301906115e081836020880161122d565b01949350505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061161c90830184611259565b9695505050505050565b60006020828403121561163857600080fd5b8151610c71816111fa56fea2646970667358221220e298abe7261f2fcebe07b1e757447f593e3bcc7875c0aef77515c679db5a5fc064736f6c634300080f0033

Deployed Bytecode Sourcemap

157:1889:2:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9112:630:3;;;;;;;;;;-1:-1:-1;9112:630:3;;;;;:::i;:::-;;:::i;:::-;;;565:14:5;;558:22;540:41;;528:2;513:18;9112:630:3;;;;;;;;9996:98;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;16309:214::-;;;;;;;;;;-1:-1:-1;16309:214:3;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;1692:32:5;;;1674:51;;1662:2;1647:18;16309:214:3;1528:203:5;15769:390:3;;;;;;;;;;-1:-1:-1;15769:390:3;;;;;:::i;:::-;;:::i;:::-;;205:33:2;;;;;;;;;;;;;;;;;;;2319:25:5;;;2307:2;2292:18;205:33:2;2173:177:5;5851:317:3;;;;;;;;;;-1:-1:-1;466:1:2;6121:12:3;5912:7;6105:13;:28;-1:-1:-1;;6105:46:3;5851:317;;19918:2756;;;;;;;;;;-1:-1:-1;19918:2756:3;;;;;:::i;:::-;;:::i;1601:114:2:-;;;:::i;22765:179:3:-;;;;;;;;;;-1:-1:-1;22765:179:3;;;;;:::i;:::-;;:::i;1482:111:2:-;;;;;;;;;;-1:-1:-1;1482:111:2;;;;;:::i;:::-;;:::i;11348:150:3:-;;;;;;;;;;-1:-1:-1;11348:150:3;;;;;:::i;:::-;;:::i;7002:230::-;;;;;;;;;;-1:-1:-1;7002:230:3;;;;;:::i;:::-;;:::i;1668:101:0:-;;;;;;;;;;;;;:::i;829:269:2:-;;;;;;:::i;:::-;;:::i;1036:85:0:-;;;;;;;;;;-1:-1:-1;1108:6:0;;-1:-1:-1;;;;;1108:6:0;1036:85;;10165:102:3;;;;;;;;;;;;;:::i;483:338:2:-;;;;;;:::i;:::-;;:::i;16850:303:3:-;;;;;;;;;;-1:-1:-1;16850:303:3;;;;;:::i;:::-;;:::i;23525:388::-;;;;;;;;;;-1:-1:-1;23525:388:3;;;;;:::i;:::-;;:::i;1839:100:2:-;;;;;;;;;;-1:-1:-1;1839:100:2;;;;;:::i;:::-;;:::i;10368:313:3:-;;;;;;;;;;-1:-1:-1;10368:313:3;;;;;:::i;:::-;;:::i;281:33:2:-;;;;;;;;;;;;;;;;1947:96;;;;;;;;;;-1:-1:-1;1947:96:2;;;;;:::i;:::-;;:::i;1106:368::-;;;;;;:::i;:::-;;:::i;1723:108::-;;;;;;;;;;-1:-1:-1;1723:108:2;;;;;:::i;:::-;;:::i;17303:162:3:-;;;;;;;;;;-1:-1:-1;17303:162:3;;;;;:::i;:::-;-1:-1:-1;;;;;17423:25:3;;;17400:4;17423:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;17303:162;1918:198:0;;;;;;;;;;-1:-1:-1;1918:198:0;;;;;:::i;:::-;;:::i;245:29:2:-;;;;;;;;;;;;;;;;9112:630:3;9197:4;-1:-1:-1;;;;;;;;;9515:25:3;;;;:101;;-1:-1:-1;;;;;;;;;;9591:25:3;;;9515:101;:177;;;-1:-1:-1;;;;;;;;;;9667:25:3;;;9515:177;9496:196;9112:630;-1:-1:-1;;9112:630:3:o;9996:98::-;10050:13;10082:5;10075:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9996:98;:::o;16309:214::-;16385:7;16409:16;16417:7;16409;:16::i;:::-;16404:64;;16434:34;;-1:-1:-1;;;16434:34:3;;;;;;;;;;;16404:64;-1:-1:-1;16486:24:3;;;;:15;:24;;;;;:30;-1:-1:-1;;;;;16486:30:3;;16309:214::o;15769:390::-;15849:13;15865:16;15873:7;15865;:16::i;:::-;15849:32;-1:-1:-1;39008:10:3;-1:-1:-1;;;;;15896:28:3;;;15892:172;;15943:44;15960:5;39008:10;17303:162;:::i;15943:44::-;15938:126;;16014:35;;-1:-1:-1;;;16014:35:3;;;;;;;;;;;15938:126;16074:24;;;;:15;:24;;;;;;:35;;-1:-1:-1;;;;;;16074:35:3;-1:-1:-1;;;;;16074:35:3;;;;;;;;;16124:28;;16074:24;;16124:28;;;;;;;15839:320;15769:390;;:::o;19918:2756::-;20047:27;20077;20096:7;20077:18;:27::i;:::-;20047:57;;20160:4;-1:-1:-1;;;;;20119:45:3;20135:19;-1:-1:-1;;;;;20119:45:3;;20115:86;;20173:28;;-1:-1:-1;;;20173:28:3;;;;;;;;;;;20115:86;20213:27;19057:24;;;:15;:24;;;;;19275:26;;39008:10;18694:30;;;-1:-1:-1;;;;;18391:28:3;;18672:20;;;18669:56;20396:179;;20488:43;20505:4;39008:10;17303:162;:::i;20488:43::-;20483:92;;20540:35;;-1:-1:-1;;;20540:35:3;;;;;;;;;;;20483:92;-1:-1:-1;;;;;20590:16:3;;20586:52;;20615:23;;-1:-1:-1;;;20615:23:3;;;;;;;;;;;20586:52;20781:15;20778:157;;;20919:1;20898:19;20891:30;20778:157;-1:-1:-1;;;;;21307:24:3;;;;;;;:18;:24;;;;;;21305:26;;-1:-1:-1;;21305:26:3;;;21375:22;;;;;;;;;21373:24;;-1:-1:-1;21373:24:3;;;14660:11;14635:23;14631:41;14618:63;-1:-1:-1;;;14618:63:3;21661:26;;;;:17;:26;;;;;:172;;;;-1:-1:-1;;;21950:47:3;;:52;;21946:617;;22054:1;22044:11;;22022:19;22175:30;;;:17;:30;;;;;;:35;;22171:378;;22311:13;;22296:11;:28;22292:239;;22456:30;;;;:17;:30;;;;;:52;;;22292:239;22004:559;21946:617;22607:7;22603:2;-1:-1:-1;;;;;22588:27:3;22597:4;-1:-1:-1;;;;;22588:27:3;;;;;;;;;;;20037:2637;;;19918:2756;;;:::o;1601:114:2:-;1108:6:0;;-1:-1:-1;;;;;1108:6:0;39008:10:3;1248:23:0;1240:68;;;;-1:-1:-1;;;1240:68:0;;;;;;;:::i;:::-;;;;;;;;;1108:6;;1659:48:2::1;::::0;-1:-1:-1;;;;;1108:6:0;;;;1685:21:2::1;1659:48:::0;::::1;;;::::0;::::1;::::0;;;1685:21;1108:6:0;1659:48:2;::::1;;;;;;;;;;;;;::::0;::::1;;;;;;1601:114::o:0;22765:179:3:-;22898:39;22915:4;22921:2;22925:7;22898:39;;;;;;;;;;;;:16;:39::i;:::-;22765:179;;;:::o;1482:111:2:-;1108:6:0;;-1:-1:-1;;;;;1108:6:0;39008:10:3;1248:23:0;1240:68;;;;-1:-1:-1;;;1240:68:0;;;;;;;:::i;:::-;1560:25:2::1;1570:4;1576:8;1560:9;:25::i;:::-;1482:111:::0;;:::o;11348:150:3:-;11420:7;11462:27;11481:7;11462:18;:27::i;7002:230::-;7074:7;-1:-1:-1;;;;;7097:19:3;;7093:60;;7125:28;;-1:-1:-1;;;7125:28:3;;;;;;;;;;;7093:60;-1:-1:-1;;;;;;7170:25:3;;;;;:18;:25;;;;;;1317:13;7170:55;;7002:230::o;1668:101:0:-;1108:6;;-1:-1:-1;;;;;1108:6:0;39008:10:3;1248:23:0;1240:68;;;;-1:-1:-1;;;1240:68:0;;;;;;;:::i;:::-;1732:30:::1;1759:1;1732:18;:30::i;:::-;1668:101::o:0;829:269:2:-;936:14;;911:21;921:10;911:9;:21::i;:::-;900:32;;:8;:32;:::i;:::-;:50;;892:81;;;;-1:-1:-1;;;892:81:2;;;;;;;:::i;:::-;1016:8;1005;;:19;;;;:::i;:::-;992:9;:32;;984:64;;;;-1:-1:-1;;;984:64:2;;6763:2:5;984:64:2;;;6745:21:5;6802:2;6782:18;;;6775:30;-1:-1:-1;;;6821:18:5;;;6814:49;6880:18;;984:64:2;6561:343:5;984:64:2;1059:31;1069:10;1081:8;1059:9;:31::i;10165:102:3:-;10221:13;10253:7;10246:14;;;;;:::i;483:338:2:-;564:10;;552:8;:22;;544:56;;;;-1:-1:-1;;;544:56:2;;7111:2:5;544:56:2;;;7093:21:5;7150:2;7130:18;;;7123:30;-1:-1:-1;;;7169:18:5;;;7162:51;7230:18;;544:56:2;6909:345:5;544:56:2;659:14;;630:25;644:10;630:13;:25::i;16850:303:3:-;39008:10;-1:-1:-1;;;;;16948:31:3;;;16944:61;;16988:17;;-1:-1:-1;;;16988:17:3;;;;;;;;;;;16944:61;39008:10;17016:39;;;;:18;:39;;;;;;;;-1:-1:-1;;;;;17016:49:3;;;;;;;;;;;;:60;;-1:-1:-1;;17016:60:3;;;;;;;;;;17091:55;;540:41:5;;;17016:49:3;;39008:10;17091:55;;513:18:5;17091:55:3;;;;;;;16850:303;;:::o;23525:388::-;23686:31;23699:4;23705:2;23709:7;23686:12;:31::i;:::-;-1:-1:-1;;;;;23731:14:3;;;:19;23727:180;;23769:56;23800:4;23806:2;23810:7;23819:5;23769:30;:56::i;:::-;23764:143;;23852:40;;-1:-1:-1;;;23852:40:3;;;;;;;;;;;23764:143;23525:388;;;;:::o;1839:100:2:-;1108:6:0;;-1:-1:-1;;;;;1108:6:0;39008:10:3;1248:23:0;1240:68;;;;-1:-1:-1;;;1240:68:0;;;;;;;:::i;:::-;1908:10:2::1;:23:::0;1839:100::o;10368:313:3:-;10441:13;10471:16;10479:7;10471;:16::i;:::-;10466:59;;10496:29;;-1:-1:-1;;;10496:29:3;;;;;;;;;;;10466:59;10536:21;10560:10;11002:9;;;;;;;;;-1:-1:-1;11002:9:3;;;10926:92;10560:10;10536:34;;10593:7;10587:21;10612:1;10587:26;:87;;;;;;;;;;;;;;;;;10640:7;10649:18;10659:7;10649:9;:18::i;:::-;10623:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;10587:87;10580:94;10368:313;-1:-1:-1;;;10368:313:3:o;1947:96:2:-;1108:6:0;;-1:-1:-1;;;;;1108:6:0;39008:10:3;1248:23:0;1240:68;;;;-1:-1:-1;;;1240:68:0;;;;;;;:::i;:::-;2015:8:2::1;:20:::0;1947:96::o;1106:368::-;1230:14;;1201:25;1215:10;1201:13;:25::i;:::-;1190:36;;:8;:36;:::i;:::-;:54;;1182:85;;;;-1:-1:-1;;;1182:85:2;;;;;;;:::i;:::-;1319:14;;1297:18;1311:3;1297:13;:18::i;:::-;1286:29;;:8;:29;:::i;:::-;:47;;1278:78;;;;-1:-1:-1;;;1278:78:2;;;;;;;:::i;:::-;1399:8;1388;;:19;;;;:::i;:::-;1375:9;:32;;1367:64;;;;-1:-1:-1;;;1367:64:2;;6763:2:5;1367:64:2;;;6745:21:5;6802:2;6782:18;;;6775:30;-1:-1:-1;;;6821:18:5;;;6814:49;6880:18;;1367:64:2;6561:343:5;1367:64:2;1442:24;1452:3;1457:8;1442:9;:24::i;1723:108::-;1108:6:0;;-1:-1:-1;;;;;1108:6:0;39008:10:3;1248:23:0;1240:68;;;;-1:-1:-1;;;1240:68:0;;;;;;;:::i;:::-;1796:14:2::1;:27:::0;1723:108::o;1918:198:0:-;1108:6;;-1:-1:-1;;;;;1108:6:0;39008:10:3;1248:23:0;1240:68;;;;-1:-1:-1;;;1240:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;2006:22:0;::::1;1998:73;;;::::0;-1:-1:-1;;;1998:73:0;;7936:2:5;1998:73:0::1;::::0;::::1;7918:21:5::0;7975:2;7955:18;;;7948:30;8014:34;7994:18;;;7987:62;-1:-1:-1;;;8065:18:5;;;8058:36;8111:19;;1998:73:0::1;7734:402:5::0;1998:73:0::1;2081:28;2100:8;2081:18;:28::i;17714:277:3:-:0;17779:4;17833:7;466:1:2;17814:26:3;;:65;;;;;17866:13;;17856:7;:23;17814:65;:151;;;;-1:-1:-1;;17916:26:3;;;;:17;:26;;;;;;-1:-1:-1;;;17916:44:3;:49;;17714:277::o;12472:1249::-;12539:7;12573;;466:1:2;12619:23:3;12615:1042;;12671:13;;12664:4;:20;12660:997;;;12708:14;12725:23;;;:17;:23;;;;;;;-1:-1:-1;;;12812:24:3;;:29;;12808:831;;13467:111;13474:6;13484:1;13474:11;13467:111;;-1:-1:-1;;;13544:6:3;13526:25;;;;:17;:25;;;;;;13467:111;;12808:831;12686:971;12660:997;13683:31;;-1:-1:-1;;;13683:31:3;;;;;;;;;;;32908:110;32984:27;32994:2;32998:8;32984:27;;;;;;;;;;;;:9;:27::i;2270:187:0:-;2362:6;;;-1:-1:-1;;;;;2378:17:0;;;-1:-1:-1;;;;;;2378:17:0;;;;;;;2410:40;;2362:6;;;2378:17;2362:6;;2410:40;;2343:16;;2410:40;2333:124;2270:187;:::o;7309:176:3:-;-1:-1:-1;;;;;7397:25:3;7370:7;7397:25;;;:18;:25;;1452:2;7397:25;;;;;:50;;1317:13;7396:82;;7309:176::o;25939:697::-;26117:88;;-1:-1:-1;;;26117:88:3;;26097:4;;-1:-1:-1;;;;;26117:45:3;;;;;:88;;39008:10;;26184:4;;26190:7;;26199:5;;26117:88;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;26117:88:3;;;;;;;;-1:-1:-1;;26117:88:3;;;;;;;;;;;;:::i;:::-;;;26113:517;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26395:6;:13;26412:1;26395:18;26391:229;;26440:40;;-1:-1:-1;;;26440:40:3;;;;;;;;;;;26391:229;26580:6;26574:13;26565:6;26561:2;26557:15;26550:38;26113:517;-1:-1:-1;;;;;;26273:64:3;-1:-1:-1;;;26273:64:3;;-1:-1:-1;25939:697:3;;;;;;:::o;39122:1548::-;39599:4;39593:11;;39606:4;39589:22;39683:17;;;;39589:22;40033:5;40015:419;40080:1;40075:3;40071:11;40064:18;;40248:2;40242:4;40238:13;40234:2;40230:22;40225:3;40217:36;40340:2;40330:13;;40395:25;40015:419;40395:25;-1:-1:-1;40462:13:3;;;-1:-1:-1;;40575:14:3;;;40635:19;;;40575:14;39122:1548;-1:-1:-1;39122:1548:3:o;32160:669::-;32286:19;32292:2;32296:8;32286:5;:19::i;:::-;-1:-1:-1;;;;;32344:14:3;;;:19;32340:473;;32383:11;32397:13;32444:14;;;32476:229;32506:62;32545:1;32549:2;32553:7;;;;;;32562:5;32506:30;:62::i;:::-;32501:165;;32603:40;;-1:-1:-1;;;32603:40:3;;;;;;;;;;;32501:165;32700:3;32692:5;:11;32476:229;;32785:3;32768:13;;:20;32764:34;;32790:8;;;32764:34;32365:448;;32160:669;;;:::o;27082:2396::-;27154:20;27177:13;;;27204;;;27200:44;;27226:18;;-1:-1:-1;;;27226:18:3;;;;;;;;;;;27200:44;-1:-1:-1;;;;;27719:22:3;;;;;;:18;:22;;;;1452:2;27719:22;;;:71;;27757:32;27745:45;;27719:71;;;28026:31;;;:17;:31;;;;;-1:-1:-1;15080:15:3;;15054:24;15050:46;14660:11;14635:23;14631:41;14628:52;14618:63;;28026:170;;28255:23;;;;28026:31;;27719:22;;28744:25;27719:22;;28600:328;29005:1;28991:12;28987:20;28946:339;29045:3;29036:7;29033:16;28946:339;;29259:7;29249:8;29246:1;29219:25;29216:1;29213;29208:59;29097:1;29084:15;28946:339;;;28950:75;29316:8;29328:1;29316:13;29312:45;;29338:19;;-1:-1:-1;;;29338:19:3;;;;;;;;;;;29312:45;29372:13;:19;-1:-1:-1;22765:179:3;;;:::o;14:131:5:-;-1:-1:-1;;;;;;88:32:5;;78:43;;68:71;;135:1;132;125:12;150:245;208:6;261:2;249:9;240:7;236:23;232:32;229:52;;;277:1;274;267:12;229:52;316:9;303:23;335:30;359:5;335:30;:::i;592:258::-;664:1;674:113;688:6;685:1;682:13;674:113;;;764:11;;;758:18;745:11;;;738:39;710:2;703:10;674:113;;;805:6;802:1;799:13;796:48;;;-1:-1:-1;;840:1:5;822:16;;815:27;592:258::o;855:::-;897:3;935:5;929:12;962:6;957:3;950:19;978:63;1034:6;1027:4;1022:3;1018:14;1011:4;1004:5;1000:16;978:63;:::i;:::-;1095:2;1074:15;-1:-1:-1;;1070:29:5;1061:39;;;;1102:4;1057:50;;855:258;-1:-1:-1;;855:258:5:o;1118:220::-;1267:2;1256:9;1249:21;1230:4;1287:45;1328:2;1317:9;1313:18;1305:6;1287:45;:::i;1343:180::-;1402:6;1455:2;1443:9;1434:7;1430:23;1426:32;1423:52;;;1471:1;1468;1461:12;1423:52;-1:-1:-1;1494:23:5;;1343:180;-1:-1:-1;1343:180:5:o;1736:173::-;1804:20;;-1:-1:-1;;;;;1853:31:5;;1843:42;;1833:70;;1899:1;1896;1889:12;1833:70;1736:173;;;:::o;1914:254::-;1982:6;1990;2043:2;2031:9;2022:7;2018:23;2014:32;2011:52;;;2059:1;2056;2049:12;2011:52;2082:29;2101:9;2082:29;:::i;:::-;2072:39;2158:2;2143:18;;;;2130:32;;-1:-1:-1;;;1914:254:5:o;2355:328::-;2432:6;2440;2448;2501:2;2489:9;2480:7;2476:23;2472:32;2469:52;;;2517:1;2514;2507:12;2469:52;2540:29;2559:9;2540:29;:::i;:::-;2530:39;;2588:38;2622:2;2611:9;2607:18;2588:38;:::i;:::-;2578:48;;2673:2;2662:9;2658:18;2645:32;2635:42;;2355:328;;;;;:::o;2688:186::-;2747:6;2800:2;2788:9;2779:7;2775:23;2771:32;2768:52;;;2816:1;2813;2806:12;2768:52;2839:29;2858:9;2839:29;:::i;2879:347::-;2944:6;2952;3005:2;2993:9;2984:7;2980:23;2976:32;2973:52;;;3021:1;3018;3011:12;2973:52;3044:29;3063:9;3044:29;:::i;:::-;3034:39;;3123:2;3112:9;3108:18;3095:32;3170:5;3163:13;3156:21;3149:5;3146:32;3136:60;;3192:1;3189;3182:12;3136:60;3215:5;3205:15;;;2879:347;;;;;:::o;3231:127::-;3292:10;3287:3;3283:20;3280:1;3273:31;3323:4;3320:1;3313:15;3347:4;3344:1;3337:15;3363:1138;3458:6;3466;3474;3482;3535:3;3523:9;3514:7;3510:23;3506:33;3503:53;;;3552:1;3549;3542:12;3503:53;3575:29;3594:9;3575:29;:::i;:::-;3565:39;;3623:38;3657:2;3646:9;3642:18;3623:38;:::i;:::-;3613:48;;3708:2;3697:9;3693:18;3680:32;3670:42;;3763:2;3752:9;3748:18;3735:32;3786:18;3827:2;3819:6;3816:14;3813:34;;;3843:1;3840;3833:12;3813:34;3881:6;3870:9;3866:22;3856:32;;3926:7;3919:4;3915:2;3911:13;3907:27;3897:55;;3948:1;3945;3938:12;3897:55;3984:2;3971:16;4006:2;4002;3999:10;3996:36;;;4012:18;;:::i;:::-;4087:2;4081:9;4055:2;4141:13;;-1:-1:-1;;4137:22:5;;;4161:2;4133:31;4129:40;4117:53;;;4185:18;;;4205:22;;;4182:46;4179:72;;;4231:18;;:::i;:::-;4271:10;4267:2;4260:22;4306:2;4298:6;4291:18;4346:7;4341:2;4336;4332;4328:11;4324:20;4321:33;4318:53;;;4367:1;4364;4357:12;4318:53;4423:2;4418;4414;4410:11;4405:2;4397:6;4393:15;4380:46;4468:1;4463:2;4458;4450:6;4446:15;4442:24;4435:35;4489:6;4479:16;;;;;;;3363:1138;;;;;;;:::o;4506:254::-;4574:6;4582;4635:2;4623:9;4614:7;4610:23;4606:32;4603:52;;;4651:1;4648;4641:12;4603:52;4687:9;4674:23;4664:33;;4716:38;4750:2;4739:9;4735:18;4716:38;:::i;:::-;4706:48;;4506:254;;;;;:::o;4765:260::-;4833:6;4841;4894:2;4882:9;4873:7;4869:23;4865:32;4862:52;;;4910:1;4907;4900:12;4862:52;4933:29;4952:9;4933:29;:::i;:::-;4923:39;;4981:38;5015:2;5004:9;5000:18;4981:38;:::i;5030:380::-;5109:1;5105:12;;;;5152;;;5173:61;;5227:4;5219:6;5215:17;5205:27;;5173:61;5280:2;5272:6;5269:14;5249:18;5246:38;5243:161;;5326:10;5321:3;5317:20;5314:1;5307:31;5361:4;5358:1;5351:15;5389:4;5386:1;5379:15;5243:161;;5030:380;;;:::o;5415:356::-;5617:2;5599:21;;;5636:18;;;5629:30;5695:34;5690:2;5675:18;;5668:62;5762:2;5747:18;;5415:356::o;5776:127::-;5837:10;5832:3;5828:20;5825:1;5818:31;5868:4;5865:1;5858:15;5892:4;5889:1;5882:15;5908:128;5948:3;5979:1;5975:6;5972:1;5969:13;5966:39;;;5985:18;;:::i;:::-;-1:-1:-1;6021:9:5;;5908:128::o;6041:342::-;6243:2;6225:21;;;6282:2;6262:18;;;6255:30;-1:-1:-1;;;6316:2:5;6301:18;;6294:48;6374:2;6359:18;;6041:342::o;6388:168::-;6428:7;6494:1;6490;6486:6;6482:14;6479:1;6476:21;6471:1;6464:9;6457:17;6453:45;6450:71;;;6501:18;;:::i;:::-;-1:-1:-1;6541:9:5;;6388:168::o;7259:470::-;7438:3;7476:6;7470:13;7492:53;7538:6;7533:3;7526:4;7518:6;7514:17;7492:53;:::i;:::-;7608:13;;7567:16;;;;7630:57;7608:13;7567:16;7664:4;7652:17;;7630:57;:::i;:::-;7703:20;;7259:470;-1:-1:-1;;;;7259:470:5:o;8141:489::-;-1:-1:-1;;;;;8410:15:5;;;8392:34;;8462:15;;8457:2;8442:18;;8435:43;8509:2;8494:18;;8487:34;;;8557:3;8552:2;8537:18;;8530:31;;;8335:4;;8578:46;;8604:19;;8596:6;8578:46;:::i;:::-;8570:54;8141:489;-1:-1:-1;;;;;;8141:489:5:o;8635:249::-;8704:6;8757:2;8745:9;8736:7;8732:23;8728:32;8725:52;;;8773:1;8770;8763:12;8725:52;8805:9;8799:16;8824:30;8848:5;8824:30;:::i

Swarm Source

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