POL Price: $0.654141 (+12.57%)
 

Overview

TokenID

2

Total Transfers

-

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information

Contract Source Code Verified (Exact Match)

Contract Name:
DropKitERC721A

Compiler Version
v0.8.9+commit.e5eed63a

Optimization Enabled:
Yes with 200 runs

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

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

// Version: 1.1
contract DropKitERC721A is ERC721A, Ownable {

  uint256 private immutable _collectionSize;
  /**
    * @dev the optimal number for balancing mint to transfer is 8
    * https://github.com/chiru-labs/ERC721A/issues/145
    */ 
  uint256 private immutable _maxBatchSize;
  string private _baseURIextended;
  address payable private immutable _royaltyReceiver;
  uint256 private immutable _royaltyBPS;

  constructor(
    string memory contractName,
    string memory tokenSymbol,
    uint256 maxBatchSize_,
    uint256 collectionSize_,
    string memory baseURI_,
    address payable royaltyReceiver_,
    uint256 royaltyBPS_
  ) ERC721A(contractName, tokenSymbol) {
    require(
      collectionSize_ > 0,
      "ERC721A: collection must have a nonzero supply"
    );
    require(maxBatchSize_ > 0, "ERC721A: max batch size must be nonzero");

    require(maxBatchSize_ < collectionSize_, "ERC721A: max batch size must be lower than collection size");
    require(royaltyBPS_ >= 0, "ERC721A: Royalties cannot be lower than 0");
    
    _baseURIextended = baseURI_;
    _maxBatchSize = maxBatchSize_;
    _collectionSize = collectionSize_;
    _royaltyReceiver = royaltyReceiver_;
    _royaltyBPS = royaltyBPS_;
  }

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

  function mint(uint256 quantity, address buyer) external onlyOwner {
    require(
      totalSupply() + quantity <= _collectionSize,
      "Mint quantity exceeds collection size"
    );

    require(
         quantity <= _maxBatchSize,
          "Mint quantity exceeds max batch size"
        );

    _safeMint(buyer, quantity);
  }

  function burn(uint256 tokenId) external {
    _burn(tokenId, true);
  }

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

  // ROYALTIES

  /**
     *  @dev Rarible: RoyaltiesV1
     *
     *  bytes4(keccak256('getFeeRecipients(uint256)')) == 0xb9c4d9fb
     *  bytes4(keccak256('getFeeBps(uint256)')) == 0x0ebd4c7f
     *
     *  => 0xb9c4d9fb ^ 0x0ebd4c7f = 0xb7799584
     */
    bytes4 private constant _INTERFACE_ID_ROYALTIES_RARIBLE = 0xb7799584;

    /**
     *  @dev Foundation
     *
     *  bytes4(keccak256('getFees(uint256)')) == 0xd5a06d4c
     *
     *  => 0xd5a06d4c = 0xd5a06d4c
     */
    bytes4 private constant _INTERFACE_ID_ROYALTIES_FOUNDATION = 0xd5a06d4c;

    /**
     *  @dev EIP-2981
     *
     * bytes4(keccak256("royaltyInfo(uint256,uint256)")) == 0x2a55205a
     *
     * => 0x2a55205a = 0x2a55205a
     */
    bytes4 private constant _INTERFACE_ID_ROYALTIES_EIP2981 = 0x2a55205a;

    /**
     * @dev 3rd party Marketplace Royalty Support
     */

    /**
     * @dev IFoundation
     */
    function getFees(uint256 tokenId)
        external
        view
        virtual
        returns (address payable[] memory, uint256[] memory)
    {
        require(_exists(tokenId), "Nonexistent token");

        address payable[] memory receivers = new address payable[](1);
        uint256[] memory bps = new uint256[](1);
        receivers[0] = _getReceiver();
        bps[0] = _getBps();
        return (receivers, bps);
    }

    /**
     * @dev IRaribleV1
     */
    function getFeeRecipients(uint256 tokenId)
        external
        view
        virtual
        returns (address payable[] memory)
    {
        require(_exists(tokenId), "Nonexistent token");

        address payable[] memory receivers = new address payable[](1);
        receivers[0] = _getReceiver();
        return receivers;
    }

    function getFeeBps(uint256 tokenId)
        external
        view
        virtual
        returns (uint256[] memory)
    {
        require(_exists(tokenId), "Nonexistent token");

        uint256[] memory bps = new uint256[](1);
        bps[0] = _getBps();
        return bps;
    }

    /**
     * @dev EIP-2981
     * Returns primary receiver i.e. receivers[0]
     */
    function royaltyInfo(uint256 tokenId, uint256 value)
        external
        view
        virtual
        returns (address, uint256)
    {
        require(_exists(tokenId), "Nonexistent token");
        return _getRoyaltyInfo(value);
    }

    function _getRoyaltyInfo(uint256 value)
        internal
        view
        returns (address receiver, uint256 amount)
    {
        address _receiver = _getReceiver();
        uint256 _bps = _getBps();
        return (_receiver, (_bps * value) / 10000);
    }

    function _getBps() internal view returns (uint256) {
        return _royaltyBPS;
    }

    function _getReceiver()
        internal
        view
        returns (address payable)
    {
        return _royaltyReceiver;
    }

    function supportsInterface(bytes4 interfaceId)
        public
        view
        override(ERC721A)
        returns (bool)
    {
        return
            super.supportsInterface(interfaceId) ||
            _supportsRoyaltyInterfaces(interfaceId);
    }

    function _supportsRoyaltyInterfaces(bytes4 interfaceId)
        private
        pure
        returns (bool)
    {
        return
            interfaceId == _INTERFACE_ID_ROYALTIES_RARIBLE ||
            interfaceId == _INTERFACE_ID_ROYALTIES_FOUNDATION ||
            interfaceId == _INTERFACE_ID_ROYALTIES_EIP2981;
    }
}

File 2 of 11 : ERC721A.sol
// SPDX-License-Identifier: MIT
// Creator: Chiru Labs

pragma solidity ^0.8.4;

import '@openzeppelin/contracts/token/ERC721/IERC721.sol';
import '@openzeppelin/contracts/token/ERC721/IERC721Receiver.sol';
import '@openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol';
import '@openzeppelin/contracts/utils/Address.sol';
import '@openzeppelin/contracts/utils/Context.sol';
import '@openzeppelin/contracts/utils/Strings.sol';
import '@openzeppelin/contracts/utils/introspection/ERC165.sol';

error ApprovalCallerNotOwnerNorApproved();
error ApprovalQueryForNonexistentToken();
error ApproveToCaller();
error ApprovalToCurrentOwner();
error BalanceQueryForZeroAddress();
error MintToZeroAddress();
error MintZeroQuantity();
error OwnerQueryForNonexistentToken();
error TransferCallerNotOwnerNorApproved();
error TransferFromIncorrectOwner();
error TransferToNonERC721ReceiverImplementer();
error TransferToZeroAddress();
error URIQueryForNonexistentToken();

/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
 * the Metadata extension. Built to optimize for lower gas during batch mints.
 *
 * Assumes serials are sequentially minted starting at _startTokenId() (defaults to 0, e.g. 0, 1, 2, 3..).
 *
 * Assumes that an owner cannot have more than 2**64 - 1 (max value of uint64) of supply.
 *
 * Assumes that the maximum token id cannot exceed 2**256 - 1 (max value of uint256).
 */
contract ERC721A is Context, ERC165, IERC721, IERC721Metadata {
    using Address for address;
    using Strings for uint256;

    // Compiler will pack this into a single 256bit word.
    struct TokenOwnership {
        // The address of the owner.
        address addr;
        // Keeps track of the start time of ownership with minimal overhead for tokenomics.
        uint64 startTimestamp;
        // Whether the token has been burned.
        bool burned;
    }

    // Compiler will pack this into a single 256bit word.
    struct AddressData {
        // Realistically, 2**64-1 is more than enough.
        uint64 balance;
        // Keeps track of mint count with minimal overhead for tokenomics.
        uint64 numberMinted;
        // Keeps track of burn count with minimal overhead for tokenomics.
        uint64 numberBurned;
        // For miscellaneous variable(s) pertaining to the address
        // (e.g. number of whitelist mint slots used).
        // If there are multiple variables, please pack them into a uint64.
        uint64 aux;
    }

    // The tokenId of the next token to be minted.
    uint256 internal _currentIndex;

    // The number of tokens burned.
    uint256 internal _burnCounter;

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

    // Mapping from token ID to ownership details
    // An empty struct value does not necessarily mean the token is unowned. See _ownershipOf implementation for details.
    mapping(uint256 => TokenOwnership) internal _ownerships;

    // Mapping owner address to address data
    mapping(address => AddressData) private _addressData;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId, owner);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfers(from, to, tokenId, 1);

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

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

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

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

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

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

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

        address from = prevOwnership.addr;

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

            if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        }

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

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

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

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

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

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

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

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

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

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

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

File 3 of 11 : Ownable.sol
// SPDX-License-Identifier: MIT

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() {
        _setOwner(_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 {
        _setOwner(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");
        _setOwner(newOwner);
    }

    function _setOwner(address newOwner) private {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}

File 4 of 11 : Context.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

File 5 of 11 : IERC721.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "../../utils/introspection/IERC165.sol";

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

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

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

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

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

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

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

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

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

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

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

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

File 6 of 11 : IERC165.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

File 7 of 11 : IERC721Receiver.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

File 8 of 11 : IERC721Metadata.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "../IERC721.sol";

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

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

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

File 9 of 11 : Address.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

/**
 * @dev Collection of functions related to the address type
 */
library Address {
    /**
     * @dev Returns true if `account` is a contract.
     *
     * [IMPORTANT]
     * ====
     * It is unsafe to assume that an address for which this function returns
     * false is an externally-owned account (EOA) and not a contract.
     *
     * Among others, `isContract` will return false for the following
     * types of addresses:
     *
     *  - an externally-owned account
     *  - a contract in construction
     *  - an address where a contract will be created
     *  - an address where a contract lived, but was destroyed
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize, which returns 0 for contracts in
        // construction, since the code is only stored at the end of the
        // constructor execution.

        uint256 size;
        assembly {
            size := extcodesize(account)
        }
        return size > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

File 10 of 11 : Strings.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

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

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

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

File 11 of 11 : ERC165.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./IERC165.sol";

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

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

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"contractName","type":"string"},{"internalType":"string","name":"tokenSymbol","type":"string"},{"internalType":"uint256","name":"maxBatchSize_","type":"uint256"},{"internalType":"uint256","name":"collectionSize_","type":"uint256"},{"internalType":"string","name":"baseURI_","type":"string"},{"internalType":"address payable","name":"royaltyReceiver_","type":"address"},{"internalType":"uint256","name":"royaltyBPS_","type":"uint256"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"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":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"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":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getFeeBps","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getFeeRecipients","outputs":[{"internalType":"address payable[]","name":"","type":"address[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getFees","outputs":[{"internalType":"address payable[]","name":"","type":"address[]"},{"internalType":"uint256[]","name":"","type":"uint256[]"}],"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"},{"internalType":"address","name":"buyer","type":"address"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"royaltyInfo","outputs":[{"internalType":"address","name":"","type":"address"},{"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":"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":"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"}]

6101006040523480156200001257600080fd5b50604051620021613803806200216183398101604081905262000035916200039b565b8651879087906200004e90600290602085019062000228565b5080516200006490600390602084019062000228565b50506001600055506200007733620001d6565b60008411620000e45760405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20636f6c6c656374696f6e206d757374206861766520612060448201526d6e6f6e7a65726f20737570706c7960901b60648201526084015b60405180910390fd5b60008511620001355760405162461bcd60e51b81526020600482015260276024820152600080516020620021418339815191526044820152666e6f6e7a65726f60c81b6064820152608401620000db565b8385106200019b5760405162461bcd60e51b815260206004820152603a60248201526000805160206200214183398151915260448201527f6c6f776572207468616e20636f6c6c656374696f6e2073697a650000000000006064820152608401620000db565b8251620001b090600990602086019062000228565b5060a094909452608092909252506001600160a01b031660c05260e05250620004aa9050565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b82805462000236906200046d565b90600052602060002090601f0160209004810192826200025a5760008555620002a5565b82601f106200027557805160ff1916838001178555620002a5565b82800160010185558215620002a5579182015b82811115620002a557825182559160200191906001019062000288565b50620002b3929150620002b7565b5090565b5b80821115620002b35760008155600101620002b8565b634e487b7160e01b600052604160045260246000fd5b600082601f830112620002f657600080fd5b81516001600160401b0380821115620003135762000313620002ce565b604051601f8301601f19908116603f011681019082821181831017156200033e576200033e620002ce565b816040528381526020925086838588010111156200035b57600080fd5b600091505b838210156200037f578582018301518183018401529082019062000360565b83821115620003915760008385830101525b9695505050505050565b600080600080600080600060e0888a031215620003b757600080fd5b87516001600160401b0380821115620003cf57600080fd5b620003dd8b838c01620002e4565b985060208a0151915080821115620003f457600080fd5b620004028b838c01620002e4565b975060408a0151965060608a0151955060808a01519150808211156200042757600080fd5b50620004368a828b01620002e4565b60a08a015190945090506001600160a01b03811681146200045657600080fd5b8092505060c0880151905092959891949750929550565b600181811c908216806200048257607f821691505b60208210811415620004a457634e487b7160e01b600052602260045260246000fd5b50919050565b60805160a05160c05160e051611c41620005006000396000818161056f01528181610ad30152610eec01526000818161094301528181610a870152610ecb0152600061077a015260006106eb0152611c416000f3fe608060405234801561001057600080fd5b506004361061014d5760003560e01c806370a08231116100c3578063b88d4fde1161007c578063b88d4fde146102e1578063b9c4d9fb146102f4578063c87b56dd14610314578063d5a06d4c14610327578063e985e9c514610348578063f2fde38b1461038457600080fd5b806370a0823114610287578063715018a61461029a5780638da5cb5b146102a257806394bf804d146102b357806395d89b41146102c6578063a22cb465146102ce57600080fd5b806318160ddd1161011557806318160ddd146101ef57806323b872dd146102095780632a55205a1461021c57806342842e0e1461024e57806342966c68146102615780636352211e1461027457600080fd5b806301ffc9a71461015257806306fdde031461017a578063081812fc1461018f578063095ea7b3146101ba5780630ebd4c7f146101cf575b600080fd5b610165610160366004611648565b610397565b60405190151581526020015b60405180910390f35b6101826103b7565b60405161017191906116bd565b6101a261019d3660046116d0565b610449565b6040516001600160a01b039091168152602001610171565b6101cd6101c8366004611705565b61048d565b005b6101e26101dd3660046116d0565b61051b565b604051610171919061176a565b60015460005403600019015b604051908152602001610171565b6101cd61021736600461177d565b6105b2565b61022f61022a3660046117b9565b6105bd565b604080516001600160a01b039093168352602083019190915201610171565b6101cd61025c36600461177d565b6105f9565b6101cd61026f3660046116d0565b610614565b6101a26102823660046116d0565b610622565b6101fb6102953660046117db565b610634565b6101cd610683565b6008546001600160a01b03166101a2565b6101cd6102c13660046117f6565b6106b9565b610182610802565b6101cd6102dc366004611822565b610811565b6101cd6102ef366004611874565b6108a7565b6103076103023660046116d0565b6108f8565b6040516101719190611989565b6101826103223660046116d0565b610993565b61033a6103353660046116d0565b610a18565b60405161017192919061199c565b6101656103563660046119ca565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b6101cd6103923660046117db565b610b1a565b60006103a282610bb2565b806103b157506103b182610c02565b92915050565b6060600280546103c6906119f4565b80601f01602080910402602001604051908101604052809291908181526020018280546103f2906119f4565b801561043f5780601f106104145761010080835404028352916020019161043f565b820191906000526020600020905b81548152906001019060200180831161042257829003601f168201915b5050505050905090565b600061045482610c53565b610471576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b600061049882610622565b9050806001600160a01b0316836001600160a01b031614156104cd5760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b038216148015906104ed57506104eb8133610356565b155b1561050b576040516367d9dca160e11b815260040160405180910390fd5b610516838383610c8c565b505050565b606061052682610c53565b61054b5760405162461bcd60e51b815260040161054290611a2f565b60405180910390fd5b604080516001808252818301909252600091602080830190803683370190505090507f0000000000000000000000000000000000000000000000000000000000000000816000815181106105a1576105a1611a5a565b602090810291909101015292915050565b610516838383610ce8565b6000806105c984610c53565b6105e55760405162461bcd60e51b815260040161054290611a2f565b6105ee83610ec6565b915091509250929050565b610516838383604051806020016040528060008152506108a7565b61061f816001610f2e565b50565b600061062d826110e3565b5192915050565b60006001600160a01b03821661065d576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b6008546001600160a01b031633146106ad5760405162461bcd60e51b815260040161054290611a70565b6106b7600061120c565b565b6008546001600160a01b031633146106e35760405162461bcd60e51b815260040161054290611a70565b6001546000547f0000000000000000000000000000000000000000000000000000000000000000918491036000190161071c9190611abb565b11156107785760405162461bcd60e51b815260206004820152602560248201527f4d696e74207175616e74697479206578636565647320636f6c6c656374696f6e6044820152642073697a6560d81b6064820152608401610542565b7f00000000000000000000000000000000000000000000000000000000000000008211156107f45760405162461bcd60e51b8152602060048201526024808201527f4d696e74207175616e746974792065786365656473206d61782062617463682060448201526373697a6560e01b6064820152608401610542565b6107fe818361125e565b5050565b6060600380546103c6906119f4565b6001600160a01b03821633141561083b5760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6108b2848484610ce8565b6001600160a01b0383163b151580156108d457506108d284848484611278565b155b156108f2576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b606061090382610c53565b61091f5760405162461bcd60e51b815260040161054290611a2f565b604080516001808252818301909252600091602080830190803683370190505090507f00000000000000000000000000000000000000000000000000000000000000008160008151811061097557610975611a5a565b6001600160a01b039092166020928302919091019091015292915050565b606061099e82610c53565b6109bb57604051630a14c4b560e41b815260040160405180910390fd5b60006109c5611370565b90508051600014156109e65760405180602001604052806000815250610a11565b806109f08461137f565b604051602001610a01929190611ad3565b6040516020818303038152906040525b9392505050565b606080610a2483610c53565b610a405760405162461bcd60e51b815260040161054290611a2f565b6040805160018082528183019092526000916020808301908036833750506040805160018082528183019092529293506000929150602080830190803683370190505090507f000000000000000000000000000000000000000000000000000000000000000082600081518110610ab957610ab9611a5a565b6001600160a01b03909216602092830291909101909101527f000000000000000000000000000000000000000000000000000000000000000081600081518110610b0557610b05611a5a565b60209081029190910101529094909350915050565b6008546001600160a01b03163314610b445760405162461bcd60e51b815260040161054290611a70565b6001600160a01b038116610ba95760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610542565b61061f8161120c565b60006001600160e01b031982166380ac58cd60e01b1480610be357506001600160e01b03198216635b5e139f60e01b145b806103b157506301ffc9a760e01b6001600160e01b03198316146103b1565b60006001600160e01b03198216632dde656160e21b1480610c3357506001600160e01b031982166335681b5360e21b145b806103b157506001600160e01b0319821663152a902d60e11b1492915050565b600081600111158015610c67575060005482105b80156103b1575050600090815260046020526040902054600160e01b900460ff161590565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6000610cf3826110e3565b9050836001600160a01b031681600001516001600160a01b031614610d2a5760405162a1148160e81b815260040160405180910390fd5b6000336001600160a01b0386161480610d485750610d488533610356565b80610d63575033610d5884610449565b6001600160a01b0316145b905080610d8357604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b038416610daa57604051633a954ecd60e21b815260040160405180910390fd5b610db660008487610c8c565b6001600160a01b038581166000908152600560209081526040808320805467ffffffffffffffff1980821667ffffffffffffffff92831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600490945282852080546001600160e01b031916909417600160a01b42909216919091021783558701808452922080549193909116610e8c576000548214610e8c578054602086015167ffffffffffffffff16600160a01b026001600160e01b03199091166001600160a01b038a16171781555b50505082846001600160a01b0316866001600160a01b0316600080516020611bec83398151915260405160405180910390a45b5050505050565b6000807f00000000000000000000000000000000000000000000000000000000000000007f000000000000000000000000000000000000000000000000000000000000000081612710610f198784611b02565b610f239190611b37565b935093505050915091565b6000610f39836110e3565b80519091508215610f9f576000336001600160a01b0383161480610f625750610f628233610356565b80610f7d575033610f7286610449565b6001600160a01b0316145b905080610f9d57604051632ce44b5f60e11b815260040160405180910390fd5b505b610fab60008583610c8c565b6001600160a01b0380821660008181526005602090815260408083208054600160801b60001967ffffffffffffffff80841691909101811667ffffffffffffffff198416811783900482166001908101831690930277ffffffffffffffff0000000000000000ffffffffffffffff19909416179290921783558b86526004909452828520805460ff60e01b1942909316600160a01b026001600160e01b03199091169097179690961716600160e01b1785559189018084529220805491949091166110ab5760005482146110ab578054602087015167ffffffffffffffff16600160a01b026001600160e01b03199091166001600160a01b038716171781555b5050604051869250600091506001600160a01b03841690600080516020611bec833981519152908390a4505060018054810190555050565b60408051606081018252600080825260208201819052918101919091528180600111158015611113575060005481105b156111f357600081815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b810467ffffffffffffffff1692820192909252600160e01b90910460ff161515918101829052906111f15780516001600160a01b031615611187579392505050565b5060001901600081815260046020908152604091829020825160608101845290546001600160a01b038116808352600160a01b820467ffffffffffffffff1693830193909352600160e01b900460ff16151592810192909252156111ec579392505050565b611187565b505b604051636f96cda160e11b815260040160405180910390fd5b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6107fe82826040518060200160405280600081525061147d565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a02906112ad903390899088908890600401611b4b565b602060405180830381600087803b1580156112c757600080fd5b505af19250505080156112f7575060408051601f3d908101601f191682019092526112f491810190611b88565b60015b611352573d808015611325576040519150601f19603f3d011682016040523d82523d6000602084013e61132a565b606091505b50805161134a576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b6060600980546103c6906119f4565b6060816113a35750506040805180820190915260018152600360fc1b602082015290565b8160005b81156113cd57806113b781611ba5565b91506113c69050600a83611b37565b91506113a7565b60008167ffffffffffffffff8111156113e8576113e861185e565b6040519080825280601f01601f191660200182016040528015611412576020820181803683370190505b5090505b841561136857611427600183611bc0565b9150611434600a86611bd7565b61143f906030611abb565b60f81b81838151811061145457611454611a5a565b60200101906001600160f81b031916908160001a905350611476600a86611b37565b9450611416565b61051683838360016000546001600160a01b0385166114ae57604051622e076360e81b815260040160405180910390fd5b836114cc5760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038516600081815260056020908152604080832080546fffffffffffffffffffffffffffffffff19811667ffffffffffffffff8083168c0181169182176801000000000000000067ffffffffffffffff1990941690921783900481168c01811690920217909155858452600490925290912080546001600160e01b031916909217600160a01b42909216919091021790558080850183801561157e57506001600160a01b0387163b15155b156115f5575b60405182906001600160a01b03891690600090600080516020611bec833981519152908290a46115bd6000888480600101955088611278565b6115da576040516368d2bf6b60e11b815260040160405180910390fd5b808214156115845782600054146115f057600080fd5b611629565b5b6040516001830192906001600160a01b03891690600090600080516020611bec833981519152908290a4808214156115f6575b50600055610ebf565b6001600160e01b03198116811461061f57600080fd5b60006020828403121561165a57600080fd5b8135610a1181611632565b60005b83811015611680578181015183820152602001611668565b838111156108f25750506000910152565b600081518084526116a9816020860160208601611665565b601f01601f19169290920160200192915050565b602081526000610a116020830184611691565b6000602082840312156116e257600080fd5b5035919050565b80356001600160a01b038116811461170057600080fd5b919050565b6000806040838503121561171857600080fd5b611721836116e9565b946020939093013593505050565b600081518084526020808501945080840160005b8381101561175f57815187529582019590820190600101611743565b509495945050505050565b602081526000610a11602083018461172f565b60008060006060848603121561179257600080fd5b61179b846116e9565b92506117a9602085016116e9565b9150604084013590509250925092565b600080604083850312156117cc57600080fd5b50508035926020909101359150565b6000602082840312156117ed57600080fd5b610a11826116e9565b6000806040838503121561180957600080fd5b82359150611819602084016116e9565b90509250929050565b6000806040838503121561183557600080fd5b61183e836116e9565b91506020830135801515811461185357600080fd5b809150509250929050565b634e487b7160e01b600052604160045260246000fd5b6000806000806080858703121561188a57600080fd5b611893856116e9565b93506118a1602086016116e9565b925060408501359150606085013567ffffffffffffffff808211156118c557600080fd5b818701915087601f8301126118d957600080fd5b8135818111156118eb576118eb61185e565b604051601f8201601f19908116603f011681019083821181831017156119135761191361185e565b816040528281528a602084870101111561192c57600080fd5b82602086016020830137600060208483010152809550505050505092959194509250565b600081518084526020808501945080840160005b8381101561175f5781516001600160a01b031687529582019590820190600101611964565b602081526000610a116020830184611950565b6040815260006119af6040830185611950565b82810360208401526119c1818561172f565b95945050505050565b600080604083850312156119dd57600080fd5b6119e6836116e9565b9150611819602084016116e9565b600181811c90821680611a0857607f821691505b60208210811415611a2957634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252601190820152702737b732bc34b9ba32b73a103a37b5b2b760791b604082015260600190565b634e487b7160e01b600052603260045260246000fd5b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b60008219821115611ace57611ace611aa5565b500190565b60008351611ae5818460208801611665565b835190830190611af9818360208801611665565b01949350505050565b6000816000190483118215151615611b1c57611b1c611aa5565b500290565b634e487b7160e01b600052601260045260246000fd5b600082611b4657611b46611b21565b500490565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611b7e90830184611691565b9695505050505050565b600060208284031215611b9a57600080fd5b8151610a1181611632565b6000600019821415611bb957611bb9611aa5565b5060010190565b600082821015611bd257611bd2611aa5565b500390565b600082611be657611be6611b21565b50069056feddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3efa264697066735822122044f5082dde86d997d3a25b2330aefd9a5eca801052234d417cfe065e63da18ba64736f6c63430008090033455243373231413a206d61782062617463682073697a65206d7573742062652000000000000000000000000000000000000000000000000000000000000000e000000000000000000000000000000000000000000000000000000000000001200000000000000000000000000000000000000000000000000000000000000005000000000000000000000000000000000000000000000000000000000000027100000000000000000000000000000000000000000000000000000000000001600000000000000000000000002bbf34c5eaf9498c88c9d1cd04f3885da53670b100000000000000000000000000000000000000000000000000000000000003840000000000000000000000000000000000000000000000000000000000000017444952545920574f524453203420434f4d4d554e49545900000000000000000000000000000000000000000000000000000000000000000000000000000000065052544e303100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d534633394b454d784e554152657441615a4e59544150426f73454b786e6442575a364459694143456f6b355a2f00000000000000000000

Deployed Bytecode

0x608060405234801561001057600080fd5b506004361061014d5760003560e01c806370a08231116100c3578063b88d4fde1161007c578063b88d4fde146102e1578063b9c4d9fb146102f4578063c87b56dd14610314578063d5a06d4c14610327578063e985e9c514610348578063f2fde38b1461038457600080fd5b806370a0823114610287578063715018a61461029a5780638da5cb5b146102a257806394bf804d146102b357806395d89b41146102c6578063a22cb465146102ce57600080fd5b806318160ddd1161011557806318160ddd146101ef57806323b872dd146102095780632a55205a1461021c57806342842e0e1461024e57806342966c68146102615780636352211e1461027457600080fd5b806301ffc9a71461015257806306fdde031461017a578063081812fc1461018f578063095ea7b3146101ba5780630ebd4c7f146101cf575b600080fd5b610165610160366004611648565b610397565b60405190151581526020015b60405180910390f35b6101826103b7565b60405161017191906116bd565b6101a261019d3660046116d0565b610449565b6040516001600160a01b039091168152602001610171565b6101cd6101c8366004611705565b61048d565b005b6101e26101dd3660046116d0565b61051b565b604051610171919061176a565b60015460005403600019015b604051908152602001610171565b6101cd61021736600461177d565b6105b2565b61022f61022a3660046117b9565b6105bd565b604080516001600160a01b039093168352602083019190915201610171565b6101cd61025c36600461177d565b6105f9565b6101cd61026f3660046116d0565b610614565b6101a26102823660046116d0565b610622565b6101fb6102953660046117db565b610634565b6101cd610683565b6008546001600160a01b03166101a2565b6101cd6102c13660046117f6565b6106b9565b610182610802565b6101cd6102dc366004611822565b610811565b6101cd6102ef366004611874565b6108a7565b6103076103023660046116d0565b6108f8565b6040516101719190611989565b6101826103223660046116d0565b610993565b61033a6103353660046116d0565b610a18565b60405161017192919061199c565b6101656103563660046119ca565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b6101cd6103923660046117db565b610b1a565b60006103a282610bb2565b806103b157506103b182610c02565b92915050565b6060600280546103c6906119f4565b80601f01602080910402602001604051908101604052809291908181526020018280546103f2906119f4565b801561043f5780601f106104145761010080835404028352916020019161043f565b820191906000526020600020905b81548152906001019060200180831161042257829003601f168201915b5050505050905090565b600061045482610c53565b610471576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b600061049882610622565b9050806001600160a01b0316836001600160a01b031614156104cd5760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b038216148015906104ed57506104eb8133610356565b155b1561050b576040516367d9dca160e11b815260040160405180910390fd5b610516838383610c8c565b505050565b606061052682610c53565b61054b5760405162461bcd60e51b815260040161054290611a2f565b60405180910390fd5b604080516001808252818301909252600091602080830190803683370190505090507f0000000000000000000000000000000000000000000000000000000000000384816000815181106105a1576105a1611a5a565b602090810291909101015292915050565b610516838383610ce8565b6000806105c984610c53565b6105e55760405162461bcd60e51b815260040161054290611a2f565b6105ee83610ec6565b915091509250929050565b610516838383604051806020016040528060008152506108a7565b61061f816001610f2e565b50565b600061062d826110e3565b5192915050565b60006001600160a01b03821661065d576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b6008546001600160a01b031633146106ad5760405162461bcd60e51b815260040161054290611a70565b6106b7600061120c565b565b6008546001600160a01b031633146106e35760405162461bcd60e51b815260040161054290611a70565b6001546000547f0000000000000000000000000000000000000000000000000000000000000271918491036000190161071c9190611abb565b11156107785760405162461bcd60e51b815260206004820152602560248201527f4d696e74207175616e74697479206578636565647320636f6c6c656374696f6e6044820152642073697a6560d81b6064820152608401610542565b7f00000000000000000000000000000000000000000000000000000000000000058211156107f45760405162461bcd60e51b8152602060048201526024808201527f4d696e74207175616e746974792065786365656473206d61782062617463682060448201526373697a6560e01b6064820152608401610542565b6107fe818361125e565b5050565b6060600380546103c6906119f4565b6001600160a01b03821633141561083b5760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6108b2848484610ce8565b6001600160a01b0383163b151580156108d457506108d284848484611278565b155b156108f2576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b606061090382610c53565b61091f5760405162461bcd60e51b815260040161054290611a2f565b604080516001808252818301909252600091602080830190803683370190505090507f0000000000000000000000002bbf34c5eaf9498c88c9d1cd04f3885da53670b18160008151811061097557610975611a5a565b6001600160a01b039092166020928302919091019091015292915050565b606061099e82610c53565b6109bb57604051630a14c4b560e41b815260040160405180910390fd5b60006109c5611370565b90508051600014156109e65760405180602001604052806000815250610a11565b806109f08461137f565b604051602001610a01929190611ad3565b6040516020818303038152906040525b9392505050565b606080610a2483610c53565b610a405760405162461bcd60e51b815260040161054290611a2f565b6040805160018082528183019092526000916020808301908036833750506040805160018082528183019092529293506000929150602080830190803683370190505090507f0000000000000000000000002bbf34c5eaf9498c88c9d1cd04f3885da53670b182600081518110610ab957610ab9611a5a565b6001600160a01b03909216602092830291909101909101527f000000000000000000000000000000000000000000000000000000000000038481600081518110610b0557610b05611a5a565b60209081029190910101529094909350915050565b6008546001600160a01b03163314610b445760405162461bcd60e51b815260040161054290611a70565b6001600160a01b038116610ba95760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610542565b61061f8161120c565b60006001600160e01b031982166380ac58cd60e01b1480610be357506001600160e01b03198216635b5e139f60e01b145b806103b157506301ffc9a760e01b6001600160e01b03198316146103b1565b60006001600160e01b03198216632dde656160e21b1480610c3357506001600160e01b031982166335681b5360e21b145b806103b157506001600160e01b0319821663152a902d60e11b1492915050565b600081600111158015610c67575060005482105b80156103b1575050600090815260046020526040902054600160e01b900460ff161590565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6000610cf3826110e3565b9050836001600160a01b031681600001516001600160a01b031614610d2a5760405162a1148160e81b815260040160405180910390fd5b6000336001600160a01b0386161480610d485750610d488533610356565b80610d63575033610d5884610449565b6001600160a01b0316145b905080610d8357604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b038416610daa57604051633a954ecd60e21b815260040160405180910390fd5b610db660008487610c8c565b6001600160a01b038581166000908152600560209081526040808320805467ffffffffffffffff1980821667ffffffffffffffff92831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600490945282852080546001600160e01b031916909417600160a01b42909216919091021783558701808452922080549193909116610e8c576000548214610e8c578054602086015167ffffffffffffffff16600160a01b026001600160e01b03199091166001600160a01b038a16171781555b50505082846001600160a01b0316866001600160a01b0316600080516020611bec83398151915260405160405180910390a45b5050505050565b6000807f0000000000000000000000002bbf34c5eaf9498c88c9d1cd04f3885da53670b17f000000000000000000000000000000000000000000000000000000000000038481612710610f198784611b02565b610f239190611b37565b935093505050915091565b6000610f39836110e3565b80519091508215610f9f576000336001600160a01b0383161480610f625750610f628233610356565b80610f7d575033610f7286610449565b6001600160a01b0316145b905080610f9d57604051632ce44b5f60e11b815260040160405180910390fd5b505b610fab60008583610c8c565b6001600160a01b0380821660008181526005602090815260408083208054600160801b60001967ffffffffffffffff80841691909101811667ffffffffffffffff198416811783900482166001908101831690930277ffffffffffffffff0000000000000000ffffffffffffffff19909416179290921783558b86526004909452828520805460ff60e01b1942909316600160a01b026001600160e01b03199091169097179690961716600160e01b1785559189018084529220805491949091166110ab5760005482146110ab578054602087015167ffffffffffffffff16600160a01b026001600160e01b03199091166001600160a01b038716171781555b5050604051869250600091506001600160a01b03841690600080516020611bec833981519152908390a4505060018054810190555050565b60408051606081018252600080825260208201819052918101919091528180600111158015611113575060005481105b156111f357600081815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b810467ffffffffffffffff1692820192909252600160e01b90910460ff161515918101829052906111f15780516001600160a01b031615611187579392505050565b5060001901600081815260046020908152604091829020825160608101845290546001600160a01b038116808352600160a01b820467ffffffffffffffff1693830193909352600160e01b900460ff16151592810192909252156111ec579392505050565b611187565b505b604051636f96cda160e11b815260040160405180910390fd5b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6107fe82826040518060200160405280600081525061147d565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a02906112ad903390899088908890600401611b4b565b602060405180830381600087803b1580156112c757600080fd5b505af19250505080156112f7575060408051601f3d908101601f191682019092526112f491810190611b88565b60015b611352573d808015611325576040519150601f19603f3d011682016040523d82523d6000602084013e61132a565b606091505b50805161134a576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b6060600980546103c6906119f4565b6060816113a35750506040805180820190915260018152600360fc1b602082015290565b8160005b81156113cd57806113b781611ba5565b91506113c69050600a83611b37565b91506113a7565b60008167ffffffffffffffff8111156113e8576113e861185e565b6040519080825280601f01601f191660200182016040528015611412576020820181803683370190505b5090505b841561136857611427600183611bc0565b9150611434600a86611bd7565b61143f906030611abb565b60f81b81838151811061145457611454611a5a565b60200101906001600160f81b031916908160001a905350611476600a86611b37565b9450611416565b61051683838360016000546001600160a01b0385166114ae57604051622e076360e81b815260040160405180910390fd5b836114cc5760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038516600081815260056020908152604080832080546fffffffffffffffffffffffffffffffff19811667ffffffffffffffff8083168c0181169182176801000000000000000067ffffffffffffffff1990941690921783900481168c01811690920217909155858452600490925290912080546001600160e01b031916909217600160a01b42909216919091021790558080850183801561157e57506001600160a01b0387163b15155b156115f5575b60405182906001600160a01b03891690600090600080516020611bec833981519152908290a46115bd6000888480600101955088611278565b6115da576040516368d2bf6b60e11b815260040160405180910390fd5b808214156115845782600054146115f057600080fd5b611629565b5b6040516001830192906001600160a01b03891690600090600080516020611bec833981519152908290a4808214156115f6575b50600055610ebf565b6001600160e01b03198116811461061f57600080fd5b60006020828403121561165a57600080fd5b8135610a1181611632565b60005b83811015611680578181015183820152602001611668565b838111156108f25750506000910152565b600081518084526116a9816020860160208601611665565b601f01601f19169290920160200192915050565b602081526000610a116020830184611691565b6000602082840312156116e257600080fd5b5035919050565b80356001600160a01b038116811461170057600080fd5b919050565b6000806040838503121561171857600080fd5b611721836116e9565b946020939093013593505050565b600081518084526020808501945080840160005b8381101561175f57815187529582019590820190600101611743565b509495945050505050565b602081526000610a11602083018461172f565b60008060006060848603121561179257600080fd5b61179b846116e9565b92506117a9602085016116e9565b9150604084013590509250925092565b600080604083850312156117cc57600080fd5b50508035926020909101359150565b6000602082840312156117ed57600080fd5b610a11826116e9565b6000806040838503121561180957600080fd5b82359150611819602084016116e9565b90509250929050565b6000806040838503121561183557600080fd5b61183e836116e9565b91506020830135801515811461185357600080fd5b809150509250929050565b634e487b7160e01b600052604160045260246000fd5b6000806000806080858703121561188a57600080fd5b611893856116e9565b93506118a1602086016116e9565b925060408501359150606085013567ffffffffffffffff808211156118c557600080fd5b818701915087601f8301126118d957600080fd5b8135818111156118eb576118eb61185e565b604051601f8201601f19908116603f011681019083821181831017156119135761191361185e565b816040528281528a602084870101111561192c57600080fd5b82602086016020830137600060208483010152809550505050505092959194509250565b600081518084526020808501945080840160005b8381101561175f5781516001600160a01b031687529582019590820190600101611964565b602081526000610a116020830184611950565b6040815260006119af6040830185611950565b82810360208401526119c1818561172f565b95945050505050565b600080604083850312156119dd57600080fd5b6119e6836116e9565b9150611819602084016116e9565b600181811c90821680611a0857607f821691505b60208210811415611a2957634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252601190820152702737b732bc34b9ba32b73a103a37b5b2b760791b604082015260600190565b634e487b7160e01b600052603260045260246000fd5b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b60008219821115611ace57611ace611aa5565b500190565b60008351611ae5818460208801611665565b835190830190611af9818360208801611665565b01949350505050565b6000816000190483118215151615611b1c57611b1c611aa5565b500290565b634e487b7160e01b600052601260045260246000fd5b600082611b4657611b46611b21565b500490565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611b7e90830184611691565b9695505050505050565b600060208284031215611b9a57600080fd5b8151610a1181611632565b6000600019821415611bb957611bb9611aa5565b5060010190565b600082821015611bd257611bd2611aa5565b500390565b600082611be657611be6611b21565b50069056feddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3efa264697066735822122044f5082dde86d997d3a25b2330aefd9a5eca801052234d417cfe065e63da18ba64736f6c63430008090033

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

00000000000000000000000000000000000000000000000000000000000000e000000000000000000000000000000000000000000000000000000000000001200000000000000000000000000000000000000000000000000000000000000005000000000000000000000000000000000000000000000000000000000000027100000000000000000000000000000000000000000000000000000000000001600000000000000000000000002bbf34c5eaf9498c88c9d1cd04f3885da53670b100000000000000000000000000000000000000000000000000000000000003840000000000000000000000000000000000000000000000000000000000000017444952545920574f524453203420434f4d4d554e49545900000000000000000000000000000000000000000000000000000000000000000000000000000000065052544e303100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d534633394b454d784e554152657441615a4e59544150426f73454b786e6442575a364459694143456f6b355a2f00000000000000000000

-----Decoded View---------------
Arg [0] : contractName (string): DIRTY WORDS 4 COMMUNITY
Arg [1] : tokenSymbol (string): PRTN01
Arg [2] : maxBatchSize_ (uint256): 5
Arg [3] : collectionSize_ (uint256): 625
Arg [4] : baseURI_ (string): ipfs://QmSF39KEMxNUARetAaZNYTAPBosEKxndBWZ6DYiACEok5Z/
Arg [5] : royaltyReceiver_ (address): 0x2bbF34c5EAf9498c88c9d1cd04F3885da53670B1
Arg [6] : royaltyBPS_ (uint256): 900

-----Encoded View---------------
14 Constructor Arguments found :
Arg [0] : 00000000000000000000000000000000000000000000000000000000000000e0
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000120
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000005
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000271
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000160
Arg [5] : 0000000000000000000000002bbf34c5eaf9498c88c9d1cd04f3885da53670b1
Arg [6] : 0000000000000000000000000000000000000000000000000000000000000384
Arg [7] : 0000000000000000000000000000000000000000000000000000000000000017
Arg [8] : 444952545920574f524453203420434f4d4d554e495459000000000000000000
Arg [9] : 0000000000000000000000000000000000000000000000000000000000000006
Arg [10] : 5052544e30310000000000000000000000000000000000000000000000000000
Arg [11] : 0000000000000000000000000000000000000000000000000000000000000036
Arg [12] : 697066733a2f2f516d534633394b454d784e554152657441615a4e5954415042
Arg [13] : 6f73454b786e6442575a364459694143456f6b355a2f00000000000000000000


Deployed Bytecode Sourcemap

226:5248:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4890:255;;;;;;:::i;:::-;;:::i;:::-;;;565:14:11;;558:22;540:41;;528:2;513:18;4890:255:0;;;;;;;;7579:98:10;;;:::i;:::-;;;;;;;:::i;9035:200::-;;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;1692:32:11;;;1674:51;;1662:2;1647:18;9035:200:10;1528:203:11;8612:362:10;;;;;;:::i;:::-;;:::i;:::-;;3771:282:0;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;3822:297:10:-;1528:1:0;4072:12:10;3866:7;4056:13;:28;-1:-1:-1;;4056:46:10;3822:297;;;3025:25:11;;;3013:2;2998:18;3822:297:10;2879:177:11;9874:164:10;;;;;;:::i;:::-;;:::i;4146:240:0:-;;;;;;:::i;:::-;;:::i;:::-;;;;-1:-1:-1;;;;;3839:32:11;;;3821:51;;3903:2;3888:18;;3881:34;;;;3794:18;4146:240:0;3647:274:11;10104:179:10;;;;;;:::i;:::-;;:::i;1875:71:0:-;;;;;;:::i;:::-;;:::i;7394:123:10:-;;;;;;:::i;:::-;;:::i;4910:203::-;;;;;;:::i;:::-;;:::i;1605:92:1:-;;;:::i;973:85::-;1045:6;;-1:-1:-1;;;;;1045:6:1;973:85;;1540:331:0;;;;;;:::i;:::-;;:::i;7741:102:10:-;;;:::i;9302:282::-;;;;;;:::i;:::-;;:::i;10349:359::-;;;;;;:::i;:::-;;:::i;3429:336:0:-;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;7909:313:10:-;;;;;;:::i;:::-;;:::i;2955:429:0:-;;;;;;:::i;:::-;;:::i;:::-;;;;;;;;:::i;9650:162:10:-;;;;;;:::i;:::-;-1:-1:-1;;;;;9770:25:10;;;9747:4;9770:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;9650:162;1846:189:1;;;;;;:::i;:::-;;:::i;4890:255:0:-;5008:4;5047:36;5071:11;5047:23;:36::i;:::-;:91;;;;5099:39;5126:11;5099:26;:39::i;:::-;5028:110;4890:255;-1:-1:-1;;4890:255:0:o;7579:98:10:-;7633:13;7665:5;7658:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7579:98;:::o;9035:200::-;9103:7;9127:16;9135:7;9127;:16::i;:::-;9122:64;;9152:34;;-1:-1:-1;;;9152:34:10;;;;;;;;;;;9122:64;-1:-1:-1;9204:24:10;;;;:15;:24;;;;;;-1:-1:-1;;;;;9204:24:10;;9035:200::o;8612:362::-;8684:13;8700:24;8716:7;8700:15;:24::i;:::-;8684:40;;8744:5;-1:-1:-1;;;;;8738:11:10;:2;-1:-1:-1;;;;;8738:11:10;;8734:48;;;8758:24;;-1:-1:-1;;;8758:24:10;;;;;;;;;;;8734:48;666:10:6;-1:-1:-1;;;;;8797:21:10;;;;;;:63;;-1:-1:-1;8823:37:10;8840:5;666:10:6;9650:162:10;:::i;8823:37::-;8822:38;8797:63;8793:136;;;8883:35;;-1:-1:-1;;;8883:35:10;;;;;;;;;;;8793:136;8939:28;8948:2;8952:7;8961:5;8939:8;:28::i;:::-;8674:300;8612:362;;:::o;3771:282:0:-;3870:16;3910;3918:7;3910;:16::i;:::-;3902:46;;;;-1:-1:-1;;;3902:46:0;;;;;;;:::i;:::-;;;;;;;;;3982:16;;;3996:1;3982:16;;;;;;;;;3959:20;;3982:16;;;;;;;;;;;-1:-1:-1;;3959:39:0;-1:-1:-1;4728:11:0;4008:3;4012:1;4008:6;;;;;;;;:::i;:::-;;;;;;;;;;:18;4043:3;3771:282;-1:-1:-1;;3771:282:0:o;9874:164:10:-;10003:28;10013:4;10019:2;10023:7;10003:9;:28::i;4146:240:0:-;4262:7;4271;4302:16;4310:7;4302;:16::i;:::-;4294:46;;;;-1:-1:-1;;;4294:46:0;;;;;;;:::i;:::-;4357:22;4373:5;4357:15;:22::i;:::-;4350:29;;;;4146:240;;;;;:::o;10104:179:10:-;10237:39;10254:4;10260:2;10264:7;10237:39;;;;;;;;;;;;:16;:39::i;1875:71:0:-;1921:20;1927:7;1936:4;1921:5;:20::i;:::-;1875:71;:::o;7394:123:10:-;7458:7;7484:21;7497:7;7484:12;:21::i;:::-;:26;;7394:123;-1:-1:-1;;7394:123:10:o;4910:203::-;4974:7;-1:-1:-1;;;;;4997:19:10;;4993:60;;5025:28;;-1:-1:-1;;;5025:28:10;;;;;;;;;;;4993:60;-1:-1:-1;;;;;;5078:19:10;;;;;:12;:19;;;;;:27;;;;4910:203::o;1605:92:1:-;1045:6;;-1:-1:-1;;;;;1045:6:1;666:10:6;1185:23:1;1177:68;;;;-1:-1:-1;;;1177:68:1;;;;;;;:::i;:::-;1669:21:::1;1687:1;1669:9;:21::i;:::-;1605:92::o:0;1540:331:0:-;1045:6:1;;-1:-1:-1;;;;;1045:6:1;666:10:6;1185:23:1;1177:68;;;;-1:-1:-1;;;1177:68:1;;;;;;;:::i;:::-;1528:1:0;4072:12:10;3866:7;4056:13;1655:15:0::1;::::0;1643:8;;4056:28:10;-1:-1:-1;;4056:46:10;1627:24:0::1;;;;:::i;:::-;:43;;1612:111;;;::::0;-1:-1:-1;;;1612:111:0;;9217:2:11;1612:111:0::1;::::0;::::1;9199:21:11::0;9256:2;9236:18;;;9229:30;9295:34;9275:18;;;9268:62;-1:-1:-1;;;9346:18:11;;;9339:35;9391:19;;1612:111:0::1;9015:401:11::0;1612:111:0::1;1760:13;1748:8;:25;;1730:103;;;::::0;-1:-1:-1;;;1730:103:0;;9623:2:11;1730:103:0::1;::::0;::::1;9605:21:11::0;9662:2;9642:18;;;9635:30;9701:34;9681:18;;;9674:62;-1:-1:-1;;;9752:18:11;;;9745:34;9796:19;;1730:103:0::1;9421:400:11::0;1730:103:0::1;1840:26;1850:5;1857:8;1840:9;:26::i;:::-;1540:331:::0;;:::o;7741:102:10:-;7797:13;7829:7;7822:14;;;;;:::i;9302:282::-;-1:-1:-1;;;;;9400:24:10;;666:10:6;9400:24:10;9396:54;;;9433:17;;-1:-1:-1;;;9433:17:10;;;;;;;;;;;9396:54;666:10:6;9461:32:10;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;9461:42:10;;;;;;;;;;;;:53;;-1:-1:-1;;9461:53:10;;;;;;;;;;9529:48;;540:41:11;;;9461:42:10;;666:10:6;9529:48:10;;513:18:11;9529:48:10;;;;;;;9302:282;;:::o;10349:359::-;10510:28;10520:4;10526:2;10530:7;10510:9;:28::i;:::-;-1:-1:-1;;;;;10552:13:10;;1034:20:5;1080:8;;10552:76:10;;;;;10572:56;10603:4;10609:2;10613:7;10622:5;10572:30;:56::i;:::-;10571:57;10552:76;10548:154;;;10651:40;;-1:-1:-1;;;10651:40:10;;;;;;;;;;;10548:154;10349:359;;;;:::o;3429:336:0:-;3535:24;3583:16;3591:7;3583;:16::i;:::-;3575:46;;;;-1:-1:-1;;;3575:46:0;;;;;;;:::i;:::-;3669:24;;;3691:1;3669:24;;;;;;;;;3632:34;;3669:24;;;;;;;;;;;-1:-1:-1;;3632:61:0;-1:-1:-1;4861:16:0;3703:9;3713:1;3703:12;;;;;;;;:::i;:::-;-1:-1:-1;;;;;3703:29:0;;;:12;;;;;;;;;;;:29;3749:9;3429:336;-1:-1:-1;;3429:336:0:o;7909:313:10:-;7982:13;8012:16;8020:7;8012;:16::i;:::-;8007:59;;8037:29;;-1:-1:-1;;;8037:29:10;;;;;;;;;;;8007:59;8077:21;8101:10;:8;:10::i;:::-;8077:34;;8134:7;8128:21;8153:1;8128:26;;:87;;;;;;;;;;;;;;;;;8181:7;8190:18;:7;:16;:18::i;:::-;8164:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;8128:87;8121:94;7909:313;-1:-1:-1;;;7909:313:10:o;2955:429:0:-;3052:24;3078:16;3118;3126:7;3118;:16::i;:::-;3110:46;;;;-1:-1:-1;;;3110:46:0;;;;;;;:::i;:::-;3204:24;;;3226:1;3204:24;;;;;;;;;3167:34;;3204:24;;;;;;;;;-1:-1:-1;;3261:16:0;;;3275:1;3261:16;;;;;;;;;3167:61;;-1:-1:-1;3238:20:0;;3261:16;-1:-1:-1;3261:16:0;;;;;;;;;;;-1:-1:-1;;3238:39:0;-1:-1:-1;4861:16:0;3287:9;3297:1;3287:12;;;;;;;;:::i;:::-;-1:-1:-1;;;;;3287:29:0;;;:12;;;;;;;;;;;:29;4728:11;3326:3;3330:1;3326:6;;;;;;;;:::i;:::-;;;;;;;;;;:18;3362:9;;3373:3;;-1:-1:-1;2955:429:0;-1:-1:-1;;2955:429:0:o;1846:189:1:-;1045:6;;-1:-1:-1;;;;;1045:6:1;666:10:6;1185:23:1;1177:68;;;;-1:-1:-1;;;1177:68:1;;;;;;;:::i;:::-;-1:-1:-1;;;;;1934:22:1;::::1;1926:73;;;::::0;-1:-1:-1;;;1926:73:1;;10503:2:11;1926:73:1::1;::::0;::::1;10485:21:11::0;10542:2;10522:18;;;10515:30;10581:34;10561:18;;;10554:62;-1:-1:-1;;;10632:18:11;;;10625:36;10678:19;;1926:73:1::1;10301:402:11::0;1926:73:1::1;2009:19;2019:8;2009:9;:19::i;4551:300:10:-:0;4653:4;-1:-1:-1;;;;;;4688:40:10;;-1:-1:-1;;;4688:40:10;;:104;;-1:-1:-1;;;;;;;4744:48:10;;-1:-1:-1;;;4744:48:10;4688:104;:156;;;-1:-1:-1;;;;;;;;;;871:40:8;;;4808:36:10;763:155:8;5151:321:0;5253:4;-1:-1:-1;;;;;;5292:46:0;;-1:-1:-1;;;5292:46:0;;:111;;-1:-1:-1;;;;;;;5354:49:0;;-1:-1:-1;;;5354:49:0;5292:111;:173;;;-1:-1:-1;;;;;;;5419:46:0;;-1:-1:-1;;;5419:46:0;5273:192;5151:321;-1:-1:-1;;5151:321:0:o;10954:184:10:-;11011:4;11053:7;1528:1:0;11034:26:10;;:53;;;;;11074:13;;11064:7;:23;11034:53;:97;;;;-1:-1:-1;;11104:20:10;;;;:11;:20;;;;;:27;-1:-1:-1;;;11104:27:10;;;;11103:28;;10954:184::o;18906:189::-;19016:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;19016:29:10;-1:-1:-1;;;;;19016:29:10;;;;;;;;;19060:28;;19016:24;;19060:28;;;;;;;18906:189;;;:::o;13976:2082::-;14086:35;14124:21;14137:7;14124:12;:21::i;:::-;14086:59;;14182:4;-1:-1:-1;;;;;14160:26:10;:13;:18;;;-1:-1:-1;;;;;14160:26:10;;14156:67;;14195:28;;-1:-1:-1;;;14195:28:10;;;;;;;;;;;14156:67;14234:22;666:10:6;-1:-1:-1;;;;;14260:20:10;;;;:72;;-1:-1:-1;14296:36:10;14313:4;666:10:6;9650:162:10;:::i;14296:36::-;14260:124;;;-1:-1:-1;666:10:6;14348:20:10;14360:7;14348:11;:20::i;:::-;-1:-1:-1;;;;;14348:36:10;;14260:124;14234:151;;14401:17;14396:66;;14427:35;;-1:-1:-1;;;14427:35:10;;;;;;;;;;;14396:66;-1:-1:-1;;;;;14476:16:10;;14472:52;;14501:23;;-1:-1:-1;;;14501:23:10;;;;;;;;;;;14472:52;14640:35;14657:1;14661:7;14670:4;14640:8;:35::i;:::-;-1:-1:-1;;;;;14965:18:10;;;;;;;:12;:18;;;;;;;;:31;;-1:-1:-1;;14965:31:10;;;;;;;-1:-1:-1;;14965:31:10;;;;;;;15010:16;;;;;;;;;:29;;;;;;;;-1:-1:-1;15010:29:10;;;;;;;;;;;15088:20;;;:11;:20;;;;;;15122:18;;-1:-1:-1;;;;;;15154:49:10;;;;-1:-1:-1;;;15187:15:10;15154:49;;;;;;;;;;15473:11;;15532:24;;;;;15574:13;;15088:20;;15532:24;;15574:13;15570:377;;15781:13;;15766:11;:28;15762:171;;15818:20;;15886:28;;;;15860:54;;-1:-1:-1;;;15860:54:10;-1:-1:-1;;;;;;15860:54:10;;;-1:-1:-1;;;;;15818:20:10;;15860:54;;;;15762:171;14941:1016;;;15991:7;15987:2;-1:-1:-1;;;;;15972:27:10;15981:4;-1:-1:-1;;;;;15972:27:10;-1:-1:-1;;;;;;;;;;;15972:27:10;;;;;;;;;16009:42;14076:1982;;13976:2082;;;:::o;4392:262:0:-;4479:16;;4861;4728:11;4861:16;4641:5;4625:12;4632:5;4728:11;4625:12;:::i;:::-;4624:22;;;;:::i;:::-;4605:42;;;;;;4392:262;;;:::o;16440:2355:10:-;16519:35;16557:21;16570:7;16557:12;:21::i;:::-;16604:18;;16519:59;;-1:-1:-1;16633:284:10;;;;16666:22;666:10:6;-1:-1:-1;;;;;16692:20:10;;;;:76;;-1:-1:-1;16732:36:10;16749:4;666:10:6;9650:162:10;:::i;16732:36::-;16692:132;;;-1:-1:-1;666:10:6;16788:20:10;16800:7;16788:11;:20::i;:::-;-1:-1:-1;;;;;16788:36:10;;16692:132;16666:159;;16845:17;16840:66;;16871:35;;-1:-1:-1;;;16871:35:10;;;;;;;;;;;16840:66;16652:265;16633:284;17040:35;17057:1;17061:7;17070:4;17040:8;:35::i;:::-;-1:-1:-1;;;;;17399:18:10;;;17365:31;17399:18;;;:12;:18;;;;;;;;17431:24;;-1:-1:-1;;;;;17431:24:10;;;;;;;;;;-1:-1:-1;;17431:24:10;;;;17469:29;;;;;17454:1;17469:29;;;;;;;;-1:-1:-1;;17469:29:10;;;;;;;;;;17628:20;;;:11;:20;;;;;;17662;;-1:-1:-1;;;;17729:15:10;17696:49;;;-1:-1:-1;;;17696:49:10;-1:-1:-1;;;;;;17696:49:10;;;;;;;;;;17759:22;-1:-1:-1;;;17759:22:10;;;18047:11;;;18106:24;;;;;18148:13;;17399:18;;18106:24;;18148:13;18144:377;;18355:13;;18340:11;:28;18336:171;;18392:20;;18460:28;;;;18434:54;;-1:-1:-1;;;18434:54:10;-1:-1:-1;;;;;;18434:54:10;;;-1:-1:-1;;;;;18392:20:10;;18434:54;;;;18336:171;-1:-1:-1;;18546:35:10;;18573:7;;-1:-1:-1;18569:1:10;;-1:-1:-1;;;;;;18546:35:10;;;-1:-1:-1;;;;;;;;;;;18546:35:10;18569:1;;18546:35;-1:-1:-1;;18764:12:10;:14;;;;;;-1:-1:-1;;16440:2355:10:o;6253:1084::-;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;6363:7:10;;1528:1:0;6409:23:10;;:47;;;;;6443:13;;6436:4;:20;6409:47;6405:868;;;6476:31;6510:17;;;:11;:17;;;;;;;;;6476:51;;;;;;;;;-1:-1:-1;;;;;6476:51:10;;;;-1:-1:-1;;;6476:51:10;;;;;;;;;;;-1:-1:-1;;;6476:51:10;;;;;;;;;;;;;;6545:714;;6594:14;;-1:-1:-1;;;;;6594:28:10;;6590:99;;6657:9;6253:1084;-1:-1:-1;;;6253:1084:10:o;6590:99::-;-1:-1:-1;;;7025:6:10;7069:17;;;;:11;:17;;;;;;;;;7057:29;;;;;;;;;-1:-1:-1;;;;;7057:29:10;;;;;-1:-1:-1;;;7057:29:10;;;;;;;;;;;-1:-1:-1;;;7057:29:10;;;;;;;;;;;;;7116:28;7112:107;;7183:9;6253:1084;-1:-1:-1;;;6253:1084:10:o;7112:107::-;6986:255;;;6458:815;6405:868;7299:31;;-1:-1:-1;;;7299:31:10;;;;;;;;;;;2041:169:1;2115:6;;;-1:-1:-1;;;;;2131:17:1;;;-1:-1:-1;;;;;;2131:17:1;;;;;;;2163:40;;2115:6;;;2131:17;2115:6;;2163:40;;2096:16;;2163:40;2086:124;2041:169;:::o;11144:102:10:-;11212:27;11222:2;11226:8;11212:27;;;;;;;;;;;;:9;:27::i;19576:650::-;19754:72;;-1:-1:-1;;;19754:72:10;;19734:4;;-1:-1:-1;;;;;19754:36:10;;;;;:72;;666:10:6;;19805:4:10;;19811:7;;19820:5;;19754:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;19754:72:10;;;;;;;;-1:-1:-1;;19754:72:10;;;;;;;;;;;;:::i;:::-;;;19750:470;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;19985:13:10;;19981:229;;20030:40;;-1:-1:-1;;;20030:40:10;;;;;;;;;;;19981:229;20170:6;20164:13;20155:6;20151:2;20147:15;20140:38;19750:470;-1:-1:-1;;;;;;19872:55:10;-1:-1:-1;;;19872:55:10;;-1:-1:-1;19750:470:10;19576:650;;;;;;:::o;1950:101:0:-;2002:13;2030:16;2023:23;;;;;:::i;275:703:7:-;331:13;548:10;544:51;;-1:-1:-1;;574:10:7;;;;;;;;;;;;-1:-1:-1;;;574:10:7;;;;;275:703::o;544:51::-;619:5;604:12;658:75;665:9;;658:75;;690:8;;;;:::i;:::-;;-1:-1:-1;712:10:7;;-1:-1:-1;720:2:7;712:10;;:::i;:::-;;;658:75;;;742:19;774:6;764:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;764:17:7;;742:39;;791:150;798:10;;791:150;;824:11;834:1;824:11;;:::i;:::-;;-1:-1:-1;892:10:7;900:2;892:5;:10;:::i;:::-;879:24;;:2;:24;:::i;:::-;866:39;;849:6;856;849:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;849:56:7;;;;;;;;-1:-1:-1;919:11:7;928:2;919:11;;:::i;:::-;;;791:150;;11597:157:10;11715:32;11721:2;11725:8;11735:5;11742:4;12134:20;12157:13;-1:-1:-1;;;;;12184:16:10;;12180:48;;12209:19;;-1:-1:-1;;;12209:19:10;;;;;;;;;;;12180:48;12242:13;12238:44;;12264:18;;-1:-1:-1;;;12264:18:10;;;;;;;;;;;12238:44;-1:-1:-1;;;;;12625:16:10;;;;;;:12;:16;;;;;;;;:44;;-1:-1:-1;;12683:49:10;;12625:44;;;;;;;;12683:49;;;;-1:-1:-1;;12625:44:10;;;;;;12683:49;;;;;;;;;;;;;;;;12747:25;;;:11;:25;;;;;;:35;;-1:-1:-1;;;;;;12796:66:10;;;;-1:-1:-1;;;12846:15:10;12796:66;;;;;;;;;;12747:25;12940:23;;;12982:4;:23;;;;-1:-1:-1;;;;;;12990:13:10;;1034:20:5;1080:8;;12990:15:10;12978:628;;;13025:309;13055:38;;13080:12;;-1:-1:-1;;;;;13055:38:10;;;13072:1;;-1:-1:-1;;;;;;;;;;;13055:38:10;13072:1;;13055:38;13120:69;13159:1;13163:2;13167:14;;;;;;13183:5;13120:30;:69::i;:::-;13115:172;;13224:40;;-1:-1:-1;;;13224:40:10;;;;;;;;;;;13115:172;13329:3;13313:12;:19;;13025:309;;13413:12;13396:13;;:29;13392:43;;13427:8;;;13392:43;12978:628;;;13474:118;13504:40;;13529:14;;;;;-1:-1:-1;;;;;13504:40:10;;;13521:1;;-1:-1:-1;;;;;;;;;;;13504:40:10;13521:1;;13504:40;13587:3;13571:12;:19;;13474:118;;12978:628;-1:-1:-1;13619:13:10;:28;13667:60;10349:359;14:131:11;-1:-1:-1;;;;;;88:32:11;;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:11;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:11;1061:39;;;;1102:4;1057:50;;855:258;-1:-1:-1;;855:258:11: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:11;;1343:180;-1:-1:-1;1343:180:11:o;1736:173::-;1804:20;;-1:-1:-1;;;;;1853:31:11;;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:11:o;2173:435::-;2226:3;2264:5;2258:12;2291:6;2286:3;2279:19;2317:4;2346:2;2341:3;2337:12;2330:19;;2383:2;2376:5;2372:14;2404:1;2414:169;2428:6;2425:1;2422:13;2414:169;;;2489:13;;2477:26;;2523:12;;;;2558:15;;;;2450:1;2443:9;2414:169;;;-1:-1:-1;2599:3:11;;2173:435;-1:-1:-1;;;;;2173:435:11:o;2613:261::-;2792:2;2781:9;2774:21;2755:4;2812:56;2864:2;2853:9;2849:18;2841:6;2812:56;:::i;3061:328::-;3138:6;3146;3154;3207:2;3195:9;3186:7;3182:23;3178:32;3175:52;;;3223:1;3220;3213:12;3175:52;3246:29;3265:9;3246:29;:::i;:::-;3236:39;;3294:38;3328:2;3317:9;3313:18;3294:38;:::i;:::-;3284:48;;3379:2;3368:9;3364:18;3351:32;3341:42;;3061:328;;;;;:::o;3394:248::-;3462:6;3470;3523:2;3511:9;3502:7;3498:23;3494:32;3491:52;;;3539:1;3536;3529:12;3491:52;-1:-1:-1;;3562:23:11;;;3632:2;3617:18;;;3604:32;;-1:-1:-1;3394:248:11:o;3926:186::-;3985:6;4038:2;4026:9;4017:7;4013:23;4009:32;4006:52;;;4054:1;4051;4044:12;4006:52;4077:29;4096:9;4077:29;:::i;4117:254::-;4185:6;4193;4246:2;4234:9;4225:7;4221:23;4217:32;4214:52;;;4262:1;4259;4252:12;4214:52;4298:9;4285:23;4275:33;;4327:38;4361:2;4350:9;4346:18;4327:38;:::i;:::-;4317:48;;4117:254;;;;;:::o;4376:347::-;4441:6;4449;4502:2;4490:9;4481:7;4477:23;4473:32;4470:52;;;4518:1;4515;4508:12;4470:52;4541:29;4560:9;4541:29;:::i;:::-;4531:39;;4620:2;4609:9;4605:18;4592:32;4667:5;4660:13;4653:21;4646:5;4643:32;4633:60;;4689:1;4686;4679:12;4633:60;4712:5;4702:15;;;4376:347;;;;;:::o;4728:127::-;4789:10;4784:3;4780:20;4777:1;4770:31;4820:4;4817:1;4810:15;4844:4;4841:1;4834:15;4860:1138;4955:6;4963;4971;4979;5032:3;5020:9;5011:7;5007:23;5003:33;5000:53;;;5049:1;5046;5039:12;5000:53;5072:29;5091:9;5072:29;:::i;:::-;5062:39;;5120:38;5154:2;5143:9;5139:18;5120:38;:::i;:::-;5110:48;;5205:2;5194:9;5190:18;5177:32;5167:42;;5260:2;5249:9;5245:18;5232:32;5283:18;5324:2;5316:6;5313:14;5310:34;;;5340:1;5337;5330:12;5310:34;5378:6;5367:9;5363:22;5353:32;;5423:7;5416:4;5412:2;5408:13;5404:27;5394:55;;5445:1;5442;5435:12;5394:55;5481:2;5468:16;5503:2;5499;5496:10;5493:36;;;5509:18;;:::i;:::-;5584:2;5578:9;5552:2;5638:13;;-1:-1:-1;;5634:22:11;;;5658:2;5630:31;5626:40;5614:53;;;5682:18;;;5702:22;;;5679:46;5676:72;;;5728:18;;:::i;:::-;5768:10;5764:2;5757:22;5803:2;5795:6;5788:18;5843:7;5838:2;5833;5829;5825:11;5821:20;5818:33;5815:53;;;5864:1;5861;5854:12;5815:53;5920:2;5915;5911;5907:11;5902:2;5894:6;5890:15;5877:46;5965:1;5960:2;5955;5947:6;5943:15;5939:24;5932:35;5986:6;5976:16;;;;;;;4860:1138;;;;;;;:::o;6003:469::-;6064:3;6102:5;6096:12;6129:6;6124:3;6117:19;6155:4;6184:2;6179:3;6175:12;6168:19;;6221:2;6214:5;6210:14;6242:1;6252:195;6266:6;6263:1;6260:13;6252:195;;;6331:13;;-1:-1:-1;;;;;6327:39:11;6315:52;;6387:12;;;;6422:15;;;;6363:1;6281:9;6252:195;;6477:285;6672:2;6661:9;6654:21;6635:4;6692:64;6752:2;6741:9;6737:18;6729:6;6692:64;:::i;6767:489::-;7040:2;7029:9;7022:21;7003:4;7066:64;7126:2;7115:9;7111:18;7103:6;7066:64;:::i;:::-;7178:9;7170:6;7166:22;7161:2;7150:9;7146:18;7139:50;7206:44;7243:6;7235;7206:44;:::i;:::-;7198:52;6767:489;-1:-1:-1;;;;;6767:489:11:o;7261:260::-;7329:6;7337;7390:2;7378:9;7369:7;7365:23;7361:32;7358:52;;;7406:1;7403;7396:12;7358:52;7429:29;7448:9;7429:29;:::i;:::-;7419:39;;7477:38;7511:2;7500:9;7496:18;7477:38;:::i;7526:380::-;7605:1;7601:12;;;;7648;;;7669:61;;7723:4;7715:6;7711:17;7701:27;;7669:61;7776:2;7768:6;7765:14;7745:18;7742:38;7739:161;;;7822:10;7817:3;7813:20;7810:1;7803:31;7857:4;7854:1;7847:15;7885:4;7882:1;7875:15;7739:161;;7526:380;;;:::o;7911:341::-;8113:2;8095:21;;;8152:2;8132:18;;;8125:30;-1:-1:-1;;;8186:2:11;8171:18;;8164:47;8243:2;8228:18;;7911:341::o;8257:127::-;8318:10;8313:3;8309:20;8306:1;8299:31;8349:4;8346:1;8339:15;8373:4;8370:1;8363:15;8389:356;8591:2;8573:21;;;8610:18;;;8603:30;8669:34;8664:2;8649:18;;8642:62;8736:2;8721:18;;8389:356::o;8750:127::-;8811:10;8806:3;8802:20;8799:1;8792:31;8842:4;8839:1;8832:15;8866:4;8863:1;8856:15;8882:128;8922:3;8953:1;8949:6;8946:1;8943:13;8940:39;;;8959:18;;:::i;:::-;-1:-1:-1;8995:9:11;;8882:128::o;9826:470::-;10005:3;10043:6;10037:13;10059:53;10105:6;10100:3;10093:4;10085:6;10081:17;10059:53;:::i;:::-;10175:13;;10134:16;;;;10197:57;10175:13;10134:16;10231:4;10219:17;;10197:57;:::i;:::-;10270:20;;9826:470;-1:-1:-1;;;;9826:470:11:o;10708:168::-;10748:7;10814:1;10810;10806:6;10802:14;10799:1;10796:21;10791:1;10784:9;10777:17;10773:45;10770:71;;;10821:18;;:::i;:::-;-1:-1:-1;10861:9:11;;10708:168::o;10881:127::-;10942:10;10937:3;10933:20;10930:1;10923:31;10973:4;10970:1;10963:15;10997:4;10994:1;10987:15;11013:120;11053:1;11079;11069:35;;11084:18;;:::i;:::-;-1:-1:-1;11118:9:11;;11013:120::o;11138:489::-;-1:-1:-1;;;;;11407:15:11;;;11389:34;;11459:15;;11454:2;11439:18;;11432:43;11506:2;11491:18;;11484:34;;;11554:3;11549:2;11534:18;;11527:31;;;11332:4;;11575:46;;11601:19;;11593:6;11575:46;:::i;:::-;11567:54;11138:489;-1:-1:-1;;;;;;11138:489:11:o;11632:249::-;11701:6;11754:2;11742:9;11733:7;11729:23;11725:32;11722:52;;;11770:1;11767;11760:12;11722:52;11802:9;11796:16;11821:30;11845:5;11821:30;:::i;11886:135::-;11925:3;-1:-1:-1;;11946:17:11;;11943:43;;;11966:18;;:::i;:::-;-1:-1:-1;12013:1:11;12002:13;;11886:135::o;12026:125::-;12066:4;12094:1;12091;12088:8;12085:34;;;12099:18;;:::i;:::-;-1:-1:-1;12136:9:11;;12026:125::o;12156:112::-;12188:1;12214;12204:35;;12219:18;;:::i;:::-;-1:-1:-1;12253:9:11;;12156:112::o

Swarm Source

ipfs://44f5082dde86d997d3a25b2330aefd9a5eca801052234d417cfe065e63da18ba
Loading...
Loading
[ 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.