ETH Price: $2,901.16 (-10.48%)
Gas: 30 Gwei

Token

DigiDorablesC1 (cbDigiC1)
 

Overview

Max Total Supply

620 cbDigiC1

Holders

147

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
kyleriggins.eth
Balance
1 cbDigiC1
0x17526dd2955c6d7b4450bf066d196d7001e70804
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information
# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
DigiDorablesC1

Compiler Version
v0.8.13+commit.abaa5c0e

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion
File 1 of 13 : DigiDorables.sol
//SPDX-License-Identifier: MIT
/*
 ██████  ██████  ███    ███ ██  ██████ ██████   ██████  ██   ██ ███████ ██      ███████ 
██      ██    ██ ████  ████ ██ ██      ██   ██ ██    ██  ██ ██  ██      ██      ██      
██      ██    ██ ██ ████ ██ ██ ██      ██████  ██    ██   ███   █████   ██      ███████ 
██      ██    ██ ██  ██  ██ ██ ██      ██   ██ ██    ██  ██ ██  ██      ██           ██ 
 ██████  ██████  ██      ██ ██  ██████ ██████   ██████  ██   ██ ███████ ███████ ███████ 
*/                                                                           
pragma solidity ^0.8.13; 
import "erc721a/contracts/ERC721A.sol";
import "@openzeppelin/contracts/token/ERC721/IERC721.sol";
import "@openzeppelin/contracts/security/ReentrancyGuard.sol";
import "@openzeppelin/contracts/utils/cryptography/MerkleProof.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/utils/Strings.sol";

contract DigiDorablesC1 is ERC721A, Ownable, ReentrancyGuard {
  using Strings for uint256;

  enum PERIOD {
    PRE_LAUNCH,
    PRE_SALE,
    OPEN_SALE
  }

  //URIs
  string public baseURI = "";
  string public contractURI = "";
  string public placeholderURI = "";
  
  //token limits
  uint256 public immutable price;
  uint16 public immutable maxSupply;
  uint8 public maxBatchSize;
  uint8 public maxPerUser;
  
  //Merkle roots
  bytes32 public rootAllowList;
  bytes32 public rootRedeemableTokens;

  //token state
  bool public revealed;
  PERIOD public mintPeriod;

  IERC721 private immutable boxelContract;

  mapping(uint256 => bool) private redeemedBoxels;

  error MintMoreThanMaxSupply();
  error MintMoreThanMaxPerUser();
  error MintMoreThanBatchSize();
  error InsufficientPayment(uint256 expected);
  error NotOnAllowList();
  error NonRedeemableToken();
  error NotOwnerOfToken();
  error TokenHasBeenRedeemed();
  error WrongPeriod();

  event TokenRevealed();
  event PeriodChanged(PERIOD period);
  event BoxelRedeemed(uint256 tokenId);

  constructor(
    string memory name_,
    string memory symbol_,
    string memory baseURI_,
    string memory contractURI_,
    string memory placeholderURI_,
    uint256 price_,
    uint16 maxSupply_,
    address boxelContract_,
    bytes32 rootAllowList_,
    bytes32 rootRedeemableTokens_
  ) ERC721A(name_, symbol_) {
    baseURI = baseURI_;
    contractURI = contractURI_;
    placeholderURI = placeholderURI_;
    price = price_;  //pass price in ETH
    maxSupply = maxSupply_;
    //ComicBoxels Genesis is at 0xfF58403B9b011659f45d12744a0bE5F01c9FB607
    boxelContract = IERC721(boxelContract_);
    rootAllowList = rootAllowList_;
    rootRedeemableTokens = rootRedeemableTokens_;
    setMintPeriod(PERIOD.PRE_LAUNCH);
    preAllocate();
  }

  modifier onlyUser() {
    require(tx.origin == msg.sender, "Only a wallet address can mint");
    _;
  }

  // @dev first token index starts at 1
  function _startTokenId() internal pure override returns (uint256) {
    return 1;
  }

  /** Mint functions */

  function mint(uint16 quantity) external payable onlyUser {
    if(mintPeriod != PERIOD.OPEN_SALE) revert WrongPeriod();
    if(quantity > maxBatchSize && msg.sender != owner()) revert MintMoreThanBatchSize();
    if(totalSupply() + uint256(quantity) > maxSupply) revert MintMoreThanMaxSupply();
    if(_numberMinted(msg.sender) + quantity > maxPerUser && msg.sender != owner()) revert MintMoreThanMaxPerUser();
    uint256 totalPrice = calculatePrice(quantity);
    if(msg.value < totalPrice) revert InsufficientPayment({expected: totalPrice});

    _safeMint(msg.sender, quantity);
    //emits a Transfer event for every token minted
  }

  //mint for an address on the allow list
  function allowListMint(uint16 quantity, bytes32[] memory proof) external payable onlyUser {
    if(mintPeriod != PERIOD.PRE_SALE) revert WrongPeriod();
    if(!MerkleProof.verify(proof, rootAllowList, keccak256(abi.encodePacked(msg.sender)))) revert NotOnAllowList();
    if(quantity > maxBatchSize && msg.sender != owner()) revert MintMoreThanBatchSize();
    if(totalSupply() + uint256(quantity) > maxSupply) revert MintMoreThanMaxSupply();
    if(_numberMinted(msg.sender) + quantity > maxPerUser && msg.sender != owner()) revert MintMoreThanMaxPerUser();
    uint256 totalPrice = calculatePrice(quantity);
    if(msg.value < totalPrice) revert InsufficientPayment({expected: totalPrice});
    
    _safeMint(msg.sender, quantity);
    //emits a Transfer event for every token minted
  }

  //redeem a DigiDorables token, providing Merkle Proof to the token number
  function redeem(uint256 tokenId, bytes32[] memory proof) external onlyUser {
    if(mintPeriod == PERIOD.PRE_LAUNCH) revert WrongPeriod();
    if(totalSupply() + 1 > maxSupply) revert MintMoreThanMaxSupply();
    if(boxelContract.ownerOf(tokenId) != msg.sender) revert NotOwnerOfToken();
    if(redeemedBoxels[tokenId]) revert TokenHasBeenRedeemed();
    bytes32 token = keccak256(abi.encodePacked(tokenId.toString()));
    if(!MerkleProof.verify(proof, rootRedeemableTokens, token)) revert NonRedeemableToken();
    //you get 2 DigiDorables for a redeemed Boxel! Yay!
    _safeMint(msg.sender, 2);
    redeemedBoxels[tokenId] = true;
    emit BoxelRedeemed(tokenId);
    //emits a Transfer event for every token minted
  }

  function tokensLeft() public view returns(uint16) {
    return maxSupply - uint16(totalSupply());
  }

  function isBoxelRedeemed(uint256 tokenId) public view returns(bool) {
    return (redeemedBoxels[tokenId] == true);
  }

  function calculatePrice(uint16 quantity) public view returns (uint256) {
    if(msg.sender != address(0)) {
      if(msg.sender == owner()) {
        return 0 ether;
      }
      else if(boxelContract.balanceOf(msg.sender) > 0) {
        return ((price - 0.01 ether) * quantity);
      }
    }
    return price * quantity;
  }

  /// @dev Returns the tokenIds of the address. O(totalSupply) in complexity.
  /// @dev avoid implementing if totalSupply >= 10,000
  function tokensOfOwner(address owner) external view returns (uint256[] memory) {
    unchecked {
      uint256[] memory a = new uint256[](balanceOf(owner)); 
      uint256 end = _currentIndex;
      uint256 tokenIdsIdx;
      address currOwnershipAddr;
      for (uint256 i; i < end; i++) {
        TokenOwnership memory ownership = _ownerships[i];
        if (ownership.burned) {
          continue;
        }
        if (ownership.addr != address(0)) {
          currOwnershipAddr = ownership.addr;
        }
        if (currOwnershipAddr == owner) {
          a[tokenIdsIdx++] = i;
        }
      }
      return a;    
    }
  }

  /** URI functions */

  // @dev if token is revealed, use baseURI + tokenID, otherwise, serve placeholder URI
  function tokenURI(uint256 tokenId) public view override returns (string memory) {
    if (!_exists(tokenId)) revert URIQueryForNonexistentToken();
    if(revealed) {
      return bytes(baseURI).length != 0 ? string(abi.encodePacked(baseURI, tokenId.toString(), '.json')) : '';
    }
    else {
      return bytes(placeholderURI).length != 0 ? placeholderURI : '';
    }
  }

  /** Owner only functions */

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

  function setContractURI(string memory contractURI_) public onlyOwner {
    contractURI = contractURI_;
  }

  function setPlaceholderURI(string memory placeholderURI_) public onlyOwner {
    placeholderURI = placeholderURI_;
  }

  /// @dev reveal signals the contract to return token JSON, instead of placeholder JSON
  function reveal() external onlyOwner {
    revealed = true;
    emit TokenRevealed();
  }

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

  function setMerkleRoots(bytes32 rootAllowList_, bytes32 rootRedeemableTokens_) external onlyOwner {
    rootAllowList = rootAllowList_;
    rootRedeemableTokens = rootRedeemableTokens_;
  }

  /// @dev set mint period and token mint limits
  function setMintPeriod(PERIOD period_) public onlyOwner {
    if(period_ == PERIOD.PRE_LAUNCH) {
      maxBatchSize = 0;
      maxPerUser = 0;
    }
    else if(period_ == PERIOD.PRE_SALE) {
      maxBatchSize = 10;
      maxPerUser = 10;
    }
    else if(period_ == PERIOD.OPEN_SALE) {
      maxBatchSize = 10;
      maxPerUser = 30;
    }
    mintPeriod = period_;
    emit PeriodChanged(period_);
  }

  function preAllocate() internal onlyOwner {
    _safeMint(address(0xf33A496671C71dF3e304E2dc7854DCb0FACBCBCB), 200);
    _safeMint(address(0xe8B16D34f816348C08DE076e08E6DF05493AA70A), 100);
  }
}

File 2 of 13 : 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 13 : IERC721.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721.sol)

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 4 of 13 : ReentrancyGuard.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (security/ReentrancyGuard.sol)

pragma solidity ^0.8.0;

/**
 * @dev Contract module that helps prevent reentrant calls to a function.
 *
 * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier
 * available, which can be applied to functions to make sure there are no nested
 * (reentrant) calls to them.
 *
 * Note that because there is a single `nonReentrant` guard, functions marked as
 * `nonReentrant` may not call one another. This can be worked around by making
 * those functions `private`, and then adding `external` `nonReentrant` entry
 * points to them.
 *
 * TIP: If you would like to learn more about reentrancy and alternative ways
 * to protect against it, check out our blog post
 * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul].
 */
abstract contract ReentrancyGuard {
    // Booleans are more expensive than uint256 or any type that takes up a full
    // word because each write operation emits an extra SLOAD to first read the
    // slot's contents, replace the bits taken up by the boolean, and then write
    // back. This is the compiler's defense against contract upgrades and
    // pointer aliasing, and it cannot be disabled.

    // The values being non-zero value makes deployment a bit more expensive,
    // but in exchange the refund on every call to nonReentrant will be lower in
    // amount. Since refunds are capped to a percentage of the total
    // transaction's gas, it is best to keep them low in cases like this one, to
    // increase the likelihood of the full refund coming into effect.
    uint256 private constant _NOT_ENTERED = 1;
    uint256 private constant _ENTERED = 2;

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

    /**
     * @dev Prevents a contract from calling itself, directly or indirectly.
     * Calling a `nonReentrant` function from another `nonReentrant`
     * function is not supported. It is possible to prevent this from happening
     * by making the `nonReentrant` function external, and making it call a
     * `private` function that does the actual work.
     */
    modifier nonReentrant() {
        // On the first call to nonReentrant, _notEntered will be true
        require(_status != _ENTERED, "ReentrancyGuard: reentrant call");

        // Any calls to nonReentrant after this point will fail
        _status = _ENTERED;

        _;

        // By storing the original value once again, a refund is triggered (see
        // https://eips.ethereum.org/EIPS/eip-2200)
        _status = _NOT_ENTERED;
    }
}

File 5 of 13 : MerkleProof.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.0) (utils/cryptography/MerkleProof.sol)

pragma solidity ^0.8.0;

/**
 * @dev These functions deal with verification of Merkle Trees proofs.
 *
 * The proofs can be generated using the JavaScript library
 * https://github.com/miguelmota/merkletreejs[merkletreejs].
 * Note: the hashing algorithm should be keccak256 and pair sorting should be enabled.
 *
 * See `test/utils/cryptography/MerkleProof.test.js` for some examples.
 */
library MerkleProof {
    /**
     * @dev Returns true if a `leaf` can be proved to be a part of a Merkle tree
     * defined by `root`. For this, a `proof` must be provided, containing
     * sibling hashes on the branch from the leaf to the root of the tree. Each
     * pair of leaves and each pair of pre-images are assumed to be sorted.
     */
    function verify(
        bytes32[] memory proof,
        bytes32 root,
        bytes32 leaf
    ) internal pure returns (bool) {
        return processProof(proof, leaf) == root;
    }

    /**
     * @dev Returns the rebuilt hash obtained by traversing a Merklee tree up
     * from `leaf` using `proof`. A `proof` is valid if and only if the rebuilt
     * hash matches the root of the tree. When processing the proof, the pairs
     * of leafs & pre-images are assumed to be sorted.
     *
     * _Available since v4.4._
     */
    function processProof(bytes32[] memory proof, bytes32 leaf) internal pure returns (bytes32) {
        bytes32 computedHash = leaf;
        for (uint256 i = 0; i < proof.length; i++) {
            bytes32 proofElement = proof[i];
            if (computedHash <= proofElement) {
                // Hash(current computed hash + current element of the proof)
                computedHash = _efficientHash(computedHash, proofElement);
            } else {
                // Hash(current element of the proof + current computed hash)
                computedHash = _efficientHash(proofElement, computedHash);
            }
        }
        return computedHash;
    }

    function _efficientHash(bytes32 a, bytes32 b) private pure returns (bytes32 value) {
        assembly {
            mstore(0x00, a)
            mstore(0x20, b)
            value := keccak256(0x00, 0x40)
        }
    }
}

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

File 7 of 13 : Strings.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Strings.sol)

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 8 of 13 : IERC721Receiver.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721Receiver.sol)

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 9 of 13 : IERC721Metadata.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol)

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 10 of 13 : Address.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.0) (utils/Address.sol)

pragma solidity ^0.8.1;

/**
 * @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
     * ====
     *
     * [IMPORTANT]
     * ====
     * You shouldn't rely on `isContract` to protect against flash loan attacks!
     *
     * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets
     * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract
     * constructor.
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize/address.code.length, which returns 0
        // for contracts in construction, since the code is only stored at the end
        // of the constructor execution.

        return account.code.length > 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 11 of 13 : Context.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)

pragma solidity ^0.8.0;

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

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

File 12 of 13 : ERC165.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol)

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;
    }
}

File 13 of 13 : IERC165.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol)

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);
}

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

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"name_","type":"string"},{"internalType":"string","name":"symbol_","type":"string"},{"internalType":"string","name":"baseURI_","type":"string"},{"internalType":"string","name":"contractURI_","type":"string"},{"internalType":"string","name":"placeholderURI_","type":"string"},{"internalType":"uint256","name":"price_","type":"uint256"},{"internalType":"uint16","name":"maxSupply_","type":"uint16"},{"internalType":"address","name":"boxelContract_","type":"address"},{"internalType":"bytes32","name":"rootAllowList_","type":"bytes32"},{"internalType":"bytes32","name":"rootRedeemableTokens_","type":"bytes32"}],"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":[{"internalType":"uint256","name":"expected","type":"uint256"}],"name":"InsufficientPayment","type":"error"},{"inputs":[],"name":"MintMoreThanBatchSize","type":"error"},{"inputs":[],"name":"MintMoreThanMaxPerUser","type":"error"},{"inputs":[],"name":"MintMoreThanMaxSupply","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"NonRedeemableToken","type":"error"},{"inputs":[],"name":"NotOnAllowList","type":"error"},{"inputs":[],"name":"NotOwnerOfToken","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TokenHasBeenRedeemed","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"},{"inputs":[],"name":"WrongPeriod","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":false,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"BoxelRedeemed","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":false,"internalType":"enum DigiDorablesC1.PERIOD","name":"period","type":"uint8"}],"name":"PeriodChanged","type":"event"},{"anonymous":false,"inputs":[],"name":"TokenRevealed","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":"uint16","name":"quantity","type":"uint16"},{"internalType":"bytes32[]","name":"proof","type":"bytes32[]"}],"name":"allowListMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint16","name":"quantity","type":"uint16"}],"name":"calculatePrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"contractURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"isBoxelRedeemed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxBatchSize","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPerUser","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint16","name":"quantity","type":"uint16"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"mintPeriod","outputs":[{"internalType":"enum DigiDorablesC1.PERIOD","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"placeholderURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes32[]","name":"proof","type":"bytes32[]"}],"name":"redeem","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"reveal","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"rootAllowList","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"rootRedeemableTokens","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"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":"string","name":"baseURI_","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"contractURI_","type":"string"}],"name":"setContractURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"rootAllowList_","type":"bytes32"},{"internalType":"bytes32","name":"rootRedeemableTokens_","type":"bytes32"}],"name":"setMerkleRoots","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"enum DigiDorablesC1.PERIOD","name":"period_","type":"uint8"}],"name":"setMintPeriod","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"placeholderURI_","type":"string"}],"name":"setPlaceholderURI","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":"tokensLeft","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"tokensOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

6101006040819052600060e08190526200001c91600a916200068b565b506040805160208101918290526000908190526200003d91600b916200068b565b506040805160208101918290526000908190526200005e91600c916200068b565b503480156200006c57600080fd5b5060405162003606380380620036068339810160408190526200008f9162000837565b89518a908a90620000a89060029060208501906200068b565b508051620000be9060039060208401906200068b565b5050600160005550620000d13362000162565b60016009558751620000eb90600a9060208b01906200068b565b5086516200010190600b9060208a01906200068b565b5085516200011790600c9060208901906200068b565b50608085905261ffff841660a0526001600160a01b03831660c052600e829055600f819055620001486000620001b4565b62000152620002f5565b5050505050505050505062000a60565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6008546001600160a01b03163314620002035760405162461bcd60e51b81526020600482018190526024820152600080516020620035c683398151915260448201526064015b60405180910390fd5b60008160028111156200021a576200021a6200095c565b036200023157600d805461ffff1916905562000290565b60018160028111156200024857620002486200095c565b036200026357600d805461ffff1916610a0a17905562000290565b60028160028111156200027a576200027a6200095c565b036200029057600d805461ffff1916611e0a1790555b6010805482919061ff001916610100836002811115620002b457620002b46200095c565b02179055507ff20e5f51c40ecd792e74bf9d0bb09ce7ba6f2191e53df39f6173aacd3c9cd70381604051620002ea919062000972565b60405180910390a150565b6008546001600160a01b03163314620003405760405162461bcd60e51b81526020600482018190526024820152600080516020620035c68339815191526044820152606401620001fa565b6200036173f33a496671c71df3e304e2dc7854dcb0facbcbcb60c862000384565b6200038273e8b16d34f816348c08de076e08e6df05493aa70a606462000384565b565b620003a6828260405180602001604052806000815250620003aa60201b60201c565b5050565b620003b98383836001620003be565b505050565b6000546001600160a01b038516620003e857604051622e076360e81b815260040160405180910390fd5b836000036200040a5760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038516600081815260056020908152604080832080546001600160801b031981166001600160401b038083168c018116918217680100000000000000006001600160401b031990941690921783900481168c01811690920217909155858452600490925290912080546001600160e01b031916909217600160a01b429092169190910217905580808501838015620004c35750620004c3876001600160a01b03166200058860201b620019841760201c565b1562000542575b60405182906001600160a01b03891690600090600080516020620035e6833981519152908290a46001820191620005079060009089908862000597565b62000525576040516368d2bf6b60e11b815260040160405180910390fd5b808203620004ca5782600054146200053c57600080fd5b62000577565b5b6040516001830192906001600160a01b03891690600090600080516020620035e6833981519152908290a480820362000543575b506000555050505050565b50505050565b6001600160a01b03163b151590565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a0290620005ce9033908990889088906004016200099b565b6020604051808303816000875af19250505080156200060c575060408051601f3d908101601f191682019092526200060991810190620009f1565b60015b6200066e573d8080156200063d576040519150601f19603f3d011682016040523d82523d6000602084013e62000642565b606091505b50805160000362000666576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050949350505050565b828054620006999062000a24565b90600052602060002090601f016020900481019282620006bd576000855562000708565b82601f10620006d857805160ff191683800117855562000708565b8280016001018555821562000708579182015b8281111562000708578251825591602001919060010190620006eb565b50620007169291506200071a565b5090565b5b808211156200071657600081556001016200071b565b634e487b7160e01b600052604160045260246000fd5b60005b83811015620007645781810151838201526020016200074a565b83811115620005825750506000910152565b600082601f8301126200078857600080fd5b81516001600160401b0380821115620007a557620007a562000731565b604051601f8301601f19908116603f01168101908282118183101715620007d057620007d062000731565b81604052838152866020858801011115620007ea57600080fd5b620007fd84602083016020890162000747565b9695505050505050565b805161ffff811681146200081a57600080fd5b919050565b80516001600160a01b03811681146200081a57600080fd5b6000806000806000806000806000806101408b8d0312156200085857600080fd5b8a516001600160401b03808211156200087057600080fd5b6200087e8e838f0162000776565b9b5060208d01519150808211156200089557600080fd5b620008a38e838f0162000776565b9a5060408d0151915080821115620008ba57600080fd5b620008c88e838f0162000776565b995060608d0151915080821115620008df57600080fd5b620008ed8e838f0162000776565b985060808d01519150808211156200090457600080fd5b50620009138d828e0162000776565b96505060a08b015194506200092b60c08c0162000807565b93506200093b60e08c016200081f565b92506101008b015191506101208b015190509295989b9194979a5092959850565b634e487b7160e01b600052602160045260246000fd5b60208101600383106200099557634e487b7160e01b600052602160045260246000fd5b91905290565b600060018060a01b038087168352808616602084015250836040830152608060608301528251806080840152620009da8160a085016020870162000747565b601f01601f19169190910160a00195945050505050565b60006020828403121562000a0457600080fd5b81516001600160e01b03198116811462000a1d57600080fd5b9392505050565b600181811c9082168062000a3957607f821691505b60208210810362000a5a57634e487b7160e01b600052602260045260246000fd5b50919050565b60805160a05160c051612b0562000ac160003960008181610ce501526110f701526000818161070d01528181610a4e015281816110820152818161150a01526116810152600081816105f401528181610d700152610da80152612b056000f3fe6080604052600436106102515760003560e01c80638462151c11610139578063a475b5dd116100b6578063d5abeb011161007a578063d5abeb01146106fb578063e0a389881461072f578063e0ae8dd714610745578063e8a3d4851461075b578063e985e9c514610770578063f2fde38b146107b957600080fd5b8063a475b5dd1461066b578063b31f8f9314610680578063b88d4fde146106a8578063b95f62fa146106c8578063c87b56dd146106db57600080fd5b80639a48eb51116100fd5780639a48eb51146105a25780639d5c3f40146105c2578063a035b1fe146105e2578063a22cb46514610616578063a36609841461063657600080fd5b80638462151c1461050257806388470ef01461052f5780638da5cb5b1461054f578063938e3d7b1461056d57806395d89b411461058d57600080fd5b80633ccfd60b116101d257806357a678171161019657806357a67817146104635780636352211e146104835780636c0360eb146104a357806370a08231146104b8578063715018a6146104d85780637313cba9146104ed57600080fd5b80633ccfd60b146103c857806342842e0e146103dd5780634c498203146103fd578063518302271461042957806355f804b31461044357600080fd5b806318160ddd1161021957806318160ddd1461033857806323b872dd1461035b57806323cf0a221461037b5780632913daa01461038e5780633574a2dd146103a857600080fd5b806301ffc9a71461025657806306d586bb1461028b57806306fdde03146102bc578063081812fc146102de578063095ea7b314610316575b600080fd5b34801561026257600080fd5b506102766102713660046122ae565b6107d9565b60405190151581526020015b60405180910390f35b34801561029757600080fd5b50600d546102aa90610100900460ff1681565b60405160ff9091168152602001610282565b3480156102c857600080fd5b506102d161082b565b604051610282919061232a565b3480156102ea57600080fd5b506102fe6102f936600461233d565b6108bd565b6040516001600160a01b039091168152602001610282565b34801561032257600080fd5b5061033661033136600461236b565b610901565b005b34801561034457600080fd5b5061034d61098e565b604051908152602001610282565b34801561036757600080fd5b50610336610376366004612397565b61099c565b6103366103893660046123ea565b6109a7565b34801561039a57600080fd5b50600d546102aa9060ff1681565b3480156103b457600080fd5b506103366103c33660046124a2565b610b5d565b3480156103d457600080fd5b50610336610b9a565b3480156103e957600080fd5b506103366103f8366004612397565b610c53565b34801561040957600080fd5b5060105461041c90610100900460ff1681565b6040516102829190612500565b34801561043557600080fd5b506010546102769060ff1681565b34801561044f57600080fd5b5061033661045e3660046124a2565b610c6e565b34801561046f57600080fd5b5061034d61047e3660046123ea565b610cab565b34801561048f57600080fd5b506102fe61049e36600461233d565b610dcc565b3480156104af57600080fd5b506102d1610dde565b3480156104c457600080fd5b5061034d6104d3366004612528565b610e6c565b3480156104e457600080fd5b50610336610eba565b3480156104f957600080fd5b506102d1610ef0565b34801561050e57600080fd5b5061052261051d366004612528565b610efd565b6040516102829190612545565b34801561053b57600080fd5b5061033661054a366004612608565b611025565b34801561055b57600080fd5b506008546001600160a01b03166102fe565b34801561057957600080fd5b506103366105883660046124a2565b611279565b34801561059957600080fd5b506102d16112b6565b3480156105ae57600080fd5b506103366105bd36600461264e565b6112c5565b3480156105ce57600080fd5b506103366105dd366004612670565b6112fa565b3480156105ee57600080fd5b5061034d7f000000000000000000000000000000000000000000000000000000000000000081565b34801561062257600080fd5b50610336610631366004612691565b611403565b34801561064257600080fd5b5061027661065136600461233d565b60009081526011602052604090205460ff16151560011490565b34801561067757600080fd5b50610336611498565b34801561068c57600080fd5b506106956114fa565b60405161ffff9091168152602001610282565b3480156106b457600080fd5b506103366106c33660046126cf565b611533565b6103366106d636600461274e565b611584565b3480156106e757600080fd5b506102d16106f636600461233d565b61178c565b34801561070757600080fd5b506106957f000000000000000000000000000000000000000000000000000000000000000081565b34801561073b57600080fd5b5061034d600e5481565b34801561075157600080fd5b5061034d600f5481565b34801561076757600080fd5b506102d16118dc565b34801561077c57600080fd5b5061027661078b366004612785565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b3480156107c557600080fd5b506103366107d4366004612528565b6118e9565b60006001600160e01b031982166380ac58cd60e01b148061080a57506001600160e01b03198216635b5e139f60e01b145b8061082557506301ffc9a760e01b6001600160e01b03198316145b92915050565b60606002805461083a906127b3565b80601f0160208091040260200160405190810160405280929190818152602001828054610866906127b3565b80156108b35780601f10610888576101008083540402835291602001916108b3565b820191906000526020600020905b81548152906001019060200180831161089657829003601f168201915b5050505050905090565b60006108c882611993565b6108e5576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b600061090c82610dcc565b9050806001600160a01b0316836001600160a01b0316036109405760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b03821614801590610960575061095e813361078b565b155b1561097e576040516367d9dca160e11b815260040160405180910390fd5b6109898383836119cc565b505050565b600154600054036000190190565b610989838383611a28565b3233146109cf5760405162461bcd60e51b81526004016109c6906127ed565b60405180910390fd5b6002601054610100900460ff1660028111156109ed576109ed6124ea565b14610a0b57604051634323091d60e11b815260040160405180910390fd5b600d5460ff1661ffff8216118015610a2e57506008546001600160a01b03163314155b15610a4c57604051630df3c0a760e21b815260040160405180910390fd5b7f000000000000000000000000000000000000000000000000000000000000000061ffff168161ffff16610a7e61098e565b610a88919061283a565b1115610aa757604051632df8063760e21b815260040160405180910390fd5b600d543360009081526005602052604090205461010090910460ff169061ffff831690600160401b90046001600160401b0316610ae4919061283a565b118015610afc57506008546001600160a01b03163314155b15610b1a57604051638d5e761360e01b815260040160405180910390fd5b6000610b2582610cab565b905080341015610b4b5760405163bd4f29e360e01b8152600481018290526024016109c6565b610b59338361ffff16611c16565b5050565b6008546001600160a01b03163314610b875760405162461bcd60e51b81526004016109c690612852565b8051610b5990600c9060208401906121ff565b600260095403610bec5760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0060448201526064016109c6565b60026009556008546001600160a01b03163314610c1b5760405162461bcd60e51b81526004016109c690612852565b6040514790339082156108fc029083906000818181858888f19350505050158015610c4a573d6000803e3d6000fd5b50506001600955565b61098983838360405180602001604052806000815250611533565b6008546001600160a01b03163314610c985760405162461bcd60e51b81526004016109c690612852565b8051610b5990600a9060208401906121ff565b60003315610d9e576008546001600160a01b03163303610ccd57506000919050565b6040516370a0823160e01b81523360048201526000907f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316906370a0823190602401602060405180830381865afa158015610d34573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d589190612887565b1115610d9e5761ffff8216610d94662386f26fc100007f00000000000000000000000000000000000000000000000000000000000000006128a0565b61082591906128b7565b61082561ffff83167f00000000000000000000000000000000000000000000000000000000000000006128b7565b6000610dd782611c30565b5192915050565b600a8054610deb906127b3565b80601f0160208091040260200160405190810160405280929190818152602001828054610e17906127b3565b8015610e645780601f10610e3957610100808354040283529160200191610e64565b820191906000526020600020905b815481529060010190602001808311610e4757829003601f168201915b505050505081565b60006001600160a01b038216610e95576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b03166000908152600560205260409020546001600160401b031690565b6008546001600160a01b03163314610ee45760405162461bcd60e51b81526004016109c690612852565b610eee6000611d57565b565b600c8054610deb906127b3565b60606000610f0a83610e6c565b6001600160401b03811115610f2157610f21612405565b604051908082528060200260200182016040528015610f4a578160200160208202803683370190505b506000805491925080805b8381101561101a57600081815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff161580159282019290925290610fbc5750611012565b80516001600160a01b031615610fd157805192505b876001600160a01b0316836001600160a01b0316036110105781868580600101965081518110611003576110036128d6565b6020026020010181815250505b505b600101610f55565b509295945050505050565b3233146110445760405162461bcd60e51b81526004016109c6906127ed565b6000601054610100900460ff166002811115611062576110626124ea565b0361108057604051634323091d60e11b815260040160405180910390fd5b7f000000000000000000000000000000000000000000000000000000000000000061ffff166110ad61098e565b6110b890600161283a565b11156110d757604051632df8063760e21b815260040160405180910390fd5b6040516331a9108f60e11b81526004810183905233906001600160a01b037f00000000000000000000000000000000000000000000000000000000000000001690636352211e90602401602060405180830381865afa15801561113e573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061116291906128ec565b6001600160a01b0316146111895760405163130213c560e21b815260040160405180910390fd5b60008281526011602052604090205460ff16156111b9576040516348ffa2e960e11b815260040160405180910390fd5b60006111c483611da9565b6040516020016111d49190612925565b6040516020818303038152906040528051906020012090506111f982600f5483611eb1565b6112165760405163358d936560e21b815260040160405180910390fd5b611221336002611c16565b60008381526011602052604090819020805460ff19166001179055517f75f8858658713d4d1cfab820ca9e4087fd386e292a16c42108befcfef52ebe0a9061126c9085815260200190565b60405180910390a1505050565b6008546001600160a01b031633146112a35760405162461bcd60e51b81526004016109c690612852565b8051610b5990600b9060208401906121ff565b60606003805461083a906127b3565b6008546001600160a01b031633146112ef5760405162461bcd60e51b81526004016109c690612852565b600e91909155600f55565b6008546001600160a01b031633146113245760405162461bcd60e51b81526004016109c690612852565b6000816002811115611338576113386124ea565b0361134d57600d805461ffff191690556113a3565b6001816002811115611361576113616124ea565b0361137a57600d805461ffff1916610a0a1790556113a3565b600281600281111561138e5761138e6124ea565b036113a357600d805461ffff1916611e0a1790555b6010805482919061ff0019166101008360028111156113c4576113c46124ea565b02179055507ff20e5f51c40ecd792e74bf9d0bb09ce7ba6f2191e53df39f6173aacd3c9cd703816040516113f89190612500565b60405180910390a150565b336001600160a01b0383160361142c5760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6008546001600160a01b031633146114c25760405162461bcd60e51b81526004016109c690612852565b6010805460ff191660011790556040517fcac6e2aaaf564852172624502fe16bee5369a581f840e46b84a49cf4626abb1490600090a1565b600061150461098e565b61152e907f0000000000000000000000000000000000000000000000000000000000000000612941565b905090565b61153e848484611a28565b6001600160a01b0383163b15158015611560575061155e84848484611ec7565b155b1561157e576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b3233146115a35760405162461bcd60e51b81526004016109c6906127ed565b6001601054610100900460ff1660028111156115c1576115c16124ea565b146115df57604051634323091d60e11b815260040160405180910390fd5b600e546040516bffffffffffffffffffffffff193360601b16602082015261162191839160340160405160208183030381529060405280519060200120611eb1565b61163e576040516360cea48b60e01b815260040160405180910390fd5b600d5460ff1661ffff831611801561166157506008546001600160a01b03163314155b1561167f57604051630df3c0a760e21b815260040160405180910390fd5b7f000000000000000000000000000000000000000000000000000000000000000061ffff168261ffff166116b161098e565b6116bb919061283a565b11156116da57604051632df8063760e21b815260040160405180910390fd5b600d543360009081526005602052604090205461010090910460ff169061ffff841690600160401b90046001600160401b0316611717919061283a565b11801561172f57506008546001600160a01b03163314155b1561174d57604051638d5e761360e01b815260040160405180910390fd5b600061175883610cab565b90508034101561177e5760405163bd4f29e360e01b8152600481018290526024016109c6565b610989338461ffff16611c16565b606061179782611993565b6117b457604051630a14c4b560e41b815260040160405180910390fd5b60105460ff161561181b57600a80546117cc906127b3565b90506000036117ea5760405180602001604052806000815250610825565b600a6117f583611da9565b604051602001611806929190612964565b60405160208183030381529060405292915050565b600c8054611828906127b3565b90506000036118465760405180602001604052806000815250610825565b600c8054611853906127b3565b80601f016020809104026020016040519081016040528092919081815260200182805461187f906127b3565b80156118cc5780601f106118a1576101008083540402835291602001916118cc565b820191906000526020600020905b8154815290600101906020018083116118af57829003601f168201915b505050505092915050565b919050565b600b8054610deb906127b3565b6008546001600160a01b031633146119135760405162461bcd60e51b81526004016109c690612852565b6001600160a01b0381166119785760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016109c6565b61198181611d57565b50565b6001600160a01b03163b151590565b6000816001111580156119a7575060005482105b8015610825575050600090815260046020526040902054600160e01b900460ff161590565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6000611a3382611c30565b9050836001600160a01b031681600001516001600160a01b031614611a6a5760405162a1148160e81b815260040160405180910390fd5b6000336001600160a01b0386161480611a885750611a88853361078b565b80611aa3575033611a98846108bd565b6001600160a01b0316145b905080611ac357604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b038416611aea57604051633a954ecd60e21b815260040160405180910390fd5b611af6600084876119cc565b6001600160a01b038581166000908152600560209081526040808320805467ffffffffffffffff198082166001600160401b0392831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600490945282852080546001600160e01b031916909417600160a01b42909216919091021783558701808452922080549193909116611bca576000548214611bca57805460208601516001600160401b0316600160a01b026001600160e01b03199091166001600160a01b038a16171781555b50505082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b610b59828260405180602001604052806000815250611fb2565b60408051606081018252600080825260208201819052918101919091528180600111158015611c60575060005481105b15611d3e57600081815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff16151591810182905290611d3c5780516001600160a01b031615611cd3579392505050565b5060001901600081815260046020908152604091829020825160608101845290546001600160a01b038116808352600160a01b82046001600160401b031693830193909352600160e01b900460ff1615159281019290925215611d37579392505050565b611cd3565b505b604051636f96cda160e11b815260040160405180910390fd5b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b606081600003611dd05750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611dfa5780611de481612a1e565b9150611df39050600a83612a4d565b9150611dd4565b6000816001600160401b03811115611e1457611e14612405565b6040519080825280601f01601f191660200182016040528015611e3e576020820181803683370190505b5090505b8415611ea957611e536001836128a0565b9150611e60600a86612a61565b611e6b90603061283a565b60f81b818381518110611e8057611e806128d6565b60200101906001600160f81b031916908160001a905350611ea2600a86612a4d565b9450611e42565b949350505050565b600082611ebe8584611fbf565b14949350505050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a0290611efc903390899088908890600401612a75565b6020604051808303816000875af1925050508015611f37575060408051601f3d908101601f19168201909252611f3491810190612ab2565b60015b611f95573d808015611f65576040519150601f19603f3d011682016040523d82523d6000602084013e611f6a565b606091505b508051600003611f8d576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050949350505050565b6109898383836001612033565b600081815b845181101561202b576000858281518110611fe157611fe16128d6565b602002602001015190508083116120075760008381526020829052604090209250612018565b600081815260208490526040902092505b508061202381612a1e565b915050611fc4565b509392505050565b6000546001600160a01b03851661205c57604051622e076360e81b815260040160405180910390fd5b8360000361207d5760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038516600081815260056020908152604080832080546fffffffffffffffffffffffffffffffff1981166001600160401b038083168c018116918217600160401b67ffffffffffffffff1990941690921783900481168c01811690920217909155858452600490925290912080546001600160e01b031916909217600160a01b42909216919091021790558080850183801561212957506001600160a01b0387163b15155b156121b1575b60405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a461217a6000888480600101955088611ec7565b612197576040516368d2bf6b60e11b815260040160405180910390fd5b80820361212f5782600054146121ac57600080fd5b6121f6565b5b6040516001830192906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a48082036121b2575b50600055611c0f565b82805461220b906127b3565b90600052602060002090601f01602090048101928261222d5760008555612273565b82601f1061224657805160ff1916838001178555612273565b82800160010185558215612273579182015b82811115612273578251825591602001919060010190612258565b5061227f929150612283565b5090565b5b8082111561227f5760008155600101612284565b6001600160e01b03198116811461198157600080fd5b6000602082840312156122c057600080fd5b81356122cb81612298565b9392505050565b60005b838110156122ed5781810151838201526020016122d5565b8381111561157e5750506000910152565b600081518084526123168160208601602086016122d2565b601f01601f19169290920160200192915050565b6020815260006122cb60208301846122fe565b60006020828403121561234f57600080fd5b5035919050565b6001600160a01b038116811461198157600080fd5b6000806040838503121561237e57600080fd5b823561238981612356565b946020939093013593505050565b6000806000606084860312156123ac57600080fd5b83356123b781612356565b925060208401356123c781612356565b929592945050506040919091013590565b803561ffff811681146118d757600080fd5b6000602082840312156123fc57600080fd5b6122cb826123d8565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f191681016001600160401b038111828210171561244357612443612405565b604052919050565b60006001600160401b0383111561246457612464612405565b612477601f8401601f191660200161241b565b905082815283838301111561248b57600080fd5b828260208301376000602084830101529392505050565b6000602082840312156124b457600080fd5b81356001600160401b038111156124ca57600080fd5b8201601f810184136124db57600080fd5b611ea98482356020840161244b565b634e487b7160e01b600052602160045260246000fd5b602081016003831061252257634e487b7160e01b600052602160045260246000fd5b91905290565b60006020828403121561253a57600080fd5b81356122cb81612356565b6020808252825182820181905260009190848201906040850190845b8181101561257d57835183529284019291840191600101612561565b50909695505050505050565b600082601f83011261259a57600080fd5b813560206001600160401b038211156125b5576125b5612405565b8160051b6125c482820161241b565b92835284810182019282810190878511156125de57600080fd5b83870192505b848310156125fd578235825291830191908301906125e4565b979650505050505050565b6000806040838503121561261b57600080fd5b8235915060208301356001600160401b0381111561263857600080fd5b61264485828601612589565b9150509250929050565b6000806040838503121561266157600080fd5b50508035926020909101359150565b60006020828403121561268257600080fd5b8135600381106122cb57600080fd5b600080604083850312156126a457600080fd5b82356126af81612356565b9150602083013580151581146126c457600080fd5b809150509250929050565b600080600080608085870312156126e557600080fd5b84356126f081612356565b9350602085013561270081612356565b92506040850135915060608501356001600160401b0381111561272257600080fd5b8501601f8101871361273357600080fd5b6127428782356020840161244b565b91505092959194509250565b6000806040838503121561276157600080fd5b61276a836123d8565b915060208301356001600160401b0381111561263857600080fd5b6000806040838503121561279857600080fd5b82356127a381612356565b915060208301356126c481612356565b600181811c908216806127c757607f821691505b6020821081036127e757634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252601e908201527f4f6e6c7920612077616c6c657420616464726573732063616e206d696e740000604082015260600190565b634e487b7160e01b600052601160045260246000fd5b6000821982111561284d5761284d612824565b500190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60006020828403121561289957600080fd5b5051919050565b6000828210156128b2576128b2612824565b500390565b60008160001904831182151516156128d1576128d1612824565b500290565b634e487b7160e01b600052603260045260246000fd5b6000602082840312156128fe57600080fd5b81516122cb81612356565b6000815161291b8185602086016122d2565b9290920192915050565b600082516129378184602087016122d2565b9190910192915050565b600061ffff8381169083168181101561295c5761295c612824565b039392505050565b600080845481600182811c91508083168061298057607f831692505b6020808410820361299f57634e487b7160e01b86526022600452602486fd5b8180156129b357600181146129c4576129f1565b60ff198616895284890196506129f1565b60008b81526020902060005b868110156129e95781548b8201529085019083016129d0565b505084890196505b505050505050612a15612a048286612909565b64173539b7b760d91b815260050190565b95945050505050565b600060018201612a3057612a30612824565b5060010190565b634e487b7160e01b600052601260045260246000fd5b600082612a5c57612a5c612a37565b500490565b600082612a7057612a70612a37565b500690565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612aa8908301846122fe565b9695505050505050565b600060208284031215612ac457600080fd5b81516122cb8161229856fea2646970667358221220519994e2a562a58a6ed6644ae781b589b3a7e794598f6872683dc900802fc30764736f6c634300080d00334f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef0000000000000000000000000000000000000000000000000000000000000140000000000000000000000000000000000000000000000000000000000000018000000000000000000000000000000000000000000000000000000000000001c00000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000028000000000000000000000000000000000000000000000000000b1a2bc2ec500000000000000000000000000000000000000000000000000000000000000001b58000000000000000000000000ff58403b9b011659f45d12744a0be5f01c9fb607b6cc5c11046d817fc38576129892bb99c3c114b951c791f00a0cc56d1825e52cc89753659183877dd9f8cc49861c30125b7279e8903538b371c987f63ca1e8de000000000000000000000000000000000000000000000000000000000000000e44696769446f7261626c6573433100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000086362446967694331000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001f697066733a2f2f706c616365686f6c6465725f756e74696c5f72657665616c000000000000000000000000000000000000000000000000000000000000000043697066733a2f2f516d646a575935744754336e39644e4e384e6f684e6b6d3250427847425a4a74684c57624d77476b70724244695a2f636f6e74726163742e6a736f6e00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000046697066733a2f2f516d646a575935744754336e39644e4e384e6f684e6b6d3250427847425a4a74684c57624d77476b70724244695a2f706c616365686f6c6465722e6a736f6e0000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106102515760003560e01c80638462151c11610139578063a475b5dd116100b6578063d5abeb011161007a578063d5abeb01146106fb578063e0a389881461072f578063e0ae8dd714610745578063e8a3d4851461075b578063e985e9c514610770578063f2fde38b146107b957600080fd5b8063a475b5dd1461066b578063b31f8f9314610680578063b88d4fde146106a8578063b95f62fa146106c8578063c87b56dd146106db57600080fd5b80639a48eb51116100fd5780639a48eb51146105a25780639d5c3f40146105c2578063a035b1fe146105e2578063a22cb46514610616578063a36609841461063657600080fd5b80638462151c1461050257806388470ef01461052f5780638da5cb5b1461054f578063938e3d7b1461056d57806395d89b411461058d57600080fd5b80633ccfd60b116101d257806357a678171161019657806357a67817146104635780636352211e146104835780636c0360eb146104a357806370a08231146104b8578063715018a6146104d85780637313cba9146104ed57600080fd5b80633ccfd60b146103c857806342842e0e146103dd5780634c498203146103fd578063518302271461042957806355f804b31461044357600080fd5b806318160ddd1161021957806318160ddd1461033857806323b872dd1461035b57806323cf0a221461037b5780632913daa01461038e5780633574a2dd146103a857600080fd5b806301ffc9a71461025657806306d586bb1461028b57806306fdde03146102bc578063081812fc146102de578063095ea7b314610316575b600080fd5b34801561026257600080fd5b506102766102713660046122ae565b6107d9565b60405190151581526020015b60405180910390f35b34801561029757600080fd5b50600d546102aa90610100900460ff1681565b60405160ff9091168152602001610282565b3480156102c857600080fd5b506102d161082b565b604051610282919061232a565b3480156102ea57600080fd5b506102fe6102f936600461233d565b6108bd565b6040516001600160a01b039091168152602001610282565b34801561032257600080fd5b5061033661033136600461236b565b610901565b005b34801561034457600080fd5b5061034d61098e565b604051908152602001610282565b34801561036757600080fd5b50610336610376366004612397565b61099c565b6103366103893660046123ea565b6109a7565b34801561039a57600080fd5b50600d546102aa9060ff1681565b3480156103b457600080fd5b506103366103c33660046124a2565b610b5d565b3480156103d457600080fd5b50610336610b9a565b3480156103e957600080fd5b506103366103f8366004612397565b610c53565b34801561040957600080fd5b5060105461041c90610100900460ff1681565b6040516102829190612500565b34801561043557600080fd5b506010546102769060ff1681565b34801561044f57600080fd5b5061033661045e3660046124a2565b610c6e565b34801561046f57600080fd5b5061034d61047e3660046123ea565b610cab565b34801561048f57600080fd5b506102fe61049e36600461233d565b610dcc565b3480156104af57600080fd5b506102d1610dde565b3480156104c457600080fd5b5061034d6104d3366004612528565b610e6c565b3480156104e457600080fd5b50610336610eba565b3480156104f957600080fd5b506102d1610ef0565b34801561050e57600080fd5b5061052261051d366004612528565b610efd565b6040516102829190612545565b34801561053b57600080fd5b5061033661054a366004612608565b611025565b34801561055b57600080fd5b506008546001600160a01b03166102fe565b34801561057957600080fd5b506103366105883660046124a2565b611279565b34801561059957600080fd5b506102d16112b6565b3480156105ae57600080fd5b506103366105bd36600461264e565b6112c5565b3480156105ce57600080fd5b506103366105dd366004612670565b6112fa565b3480156105ee57600080fd5b5061034d7f00000000000000000000000000000000000000000000000000b1a2bc2ec5000081565b34801561062257600080fd5b50610336610631366004612691565b611403565b34801561064257600080fd5b5061027661065136600461233d565b60009081526011602052604090205460ff16151560011490565b34801561067757600080fd5b50610336611498565b34801561068c57600080fd5b506106956114fa565b60405161ffff9091168152602001610282565b3480156106b457600080fd5b506103366106c33660046126cf565b611533565b6103366106d636600461274e565b611584565b3480156106e757600080fd5b506102d16106f636600461233d565b61178c565b34801561070757600080fd5b506106957f0000000000000000000000000000000000000000000000000000000000001b5881565b34801561073b57600080fd5b5061034d600e5481565b34801561075157600080fd5b5061034d600f5481565b34801561076757600080fd5b506102d16118dc565b34801561077c57600080fd5b5061027661078b366004612785565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b3480156107c557600080fd5b506103366107d4366004612528565b6118e9565b60006001600160e01b031982166380ac58cd60e01b148061080a57506001600160e01b03198216635b5e139f60e01b145b8061082557506301ffc9a760e01b6001600160e01b03198316145b92915050565b60606002805461083a906127b3565b80601f0160208091040260200160405190810160405280929190818152602001828054610866906127b3565b80156108b35780601f10610888576101008083540402835291602001916108b3565b820191906000526020600020905b81548152906001019060200180831161089657829003601f168201915b5050505050905090565b60006108c882611993565b6108e5576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b600061090c82610dcc565b9050806001600160a01b0316836001600160a01b0316036109405760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b03821614801590610960575061095e813361078b565b155b1561097e576040516367d9dca160e11b815260040160405180910390fd5b6109898383836119cc565b505050565b600154600054036000190190565b610989838383611a28565b3233146109cf5760405162461bcd60e51b81526004016109c6906127ed565b60405180910390fd5b6002601054610100900460ff1660028111156109ed576109ed6124ea565b14610a0b57604051634323091d60e11b815260040160405180910390fd5b600d5460ff1661ffff8216118015610a2e57506008546001600160a01b03163314155b15610a4c57604051630df3c0a760e21b815260040160405180910390fd5b7f0000000000000000000000000000000000000000000000000000000000001b5861ffff168161ffff16610a7e61098e565b610a88919061283a565b1115610aa757604051632df8063760e21b815260040160405180910390fd5b600d543360009081526005602052604090205461010090910460ff169061ffff831690600160401b90046001600160401b0316610ae4919061283a565b118015610afc57506008546001600160a01b03163314155b15610b1a57604051638d5e761360e01b815260040160405180910390fd5b6000610b2582610cab565b905080341015610b4b5760405163bd4f29e360e01b8152600481018290526024016109c6565b610b59338361ffff16611c16565b5050565b6008546001600160a01b03163314610b875760405162461bcd60e51b81526004016109c690612852565b8051610b5990600c9060208401906121ff565b600260095403610bec5760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0060448201526064016109c6565b60026009556008546001600160a01b03163314610c1b5760405162461bcd60e51b81526004016109c690612852565b6040514790339082156108fc029083906000818181858888f19350505050158015610c4a573d6000803e3d6000fd5b50506001600955565b61098983838360405180602001604052806000815250611533565b6008546001600160a01b03163314610c985760405162461bcd60e51b81526004016109c690612852565b8051610b5990600a9060208401906121ff565b60003315610d9e576008546001600160a01b03163303610ccd57506000919050565b6040516370a0823160e01b81523360048201526000907f000000000000000000000000ff58403b9b011659f45d12744a0be5f01c9fb6076001600160a01b0316906370a0823190602401602060405180830381865afa158015610d34573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d589190612887565b1115610d9e5761ffff8216610d94662386f26fc100007f00000000000000000000000000000000000000000000000000b1a2bc2ec500006128a0565b61082591906128b7565b61082561ffff83167f00000000000000000000000000000000000000000000000000b1a2bc2ec500006128b7565b6000610dd782611c30565b5192915050565b600a8054610deb906127b3565b80601f0160208091040260200160405190810160405280929190818152602001828054610e17906127b3565b8015610e645780601f10610e3957610100808354040283529160200191610e64565b820191906000526020600020905b815481529060010190602001808311610e4757829003601f168201915b505050505081565b60006001600160a01b038216610e95576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b03166000908152600560205260409020546001600160401b031690565b6008546001600160a01b03163314610ee45760405162461bcd60e51b81526004016109c690612852565b610eee6000611d57565b565b600c8054610deb906127b3565b60606000610f0a83610e6c565b6001600160401b03811115610f2157610f21612405565b604051908082528060200260200182016040528015610f4a578160200160208202803683370190505b506000805491925080805b8381101561101a57600081815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff161580159282019290925290610fbc5750611012565b80516001600160a01b031615610fd157805192505b876001600160a01b0316836001600160a01b0316036110105781868580600101965081518110611003576110036128d6565b6020026020010181815250505b505b600101610f55565b509295945050505050565b3233146110445760405162461bcd60e51b81526004016109c6906127ed565b6000601054610100900460ff166002811115611062576110626124ea565b0361108057604051634323091d60e11b815260040160405180910390fd5b7f0000000000000000000000000000000000000000000000000000000000001b5861ffff166110ad61098e565b6110b890600161283a565b11156110d757604051632df8063760e21b815260040160405180910390fd5b6040516331a9108f60e11b81526004810183905233906001600160a01b037f000000000000000000000000ff58403b9b011659f45d12744a0be5f01c9fb6071690636352211e90602401602060405180830381865afa15801561113e573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061116291906128ec565b6001600160a01b0316146111895760405163130213c560e21b815260040160405180910390fd5b60008281526011602052604090205460ff16156111b9576040516348ffa2e960e11b815260040160405180910390fd5b60006111c483611da9565b6040516020016111d49190612925565b6040516020818303038152906040528051906020012090506111f982600f5483611eb1565b6112165760405163358d936560e21b815260040160405180910390fd5b611221336002611c16565b60008381526011602052604090819020805460ff19166001179055517f75f8858658713d4d1cfab820ca9e4087fd386e292a16c42108befcfef52ebe0a9061126c9085815260200190565b60405180910390a1505050565b6008546001600160a01b031633146112a35760405162461bcd60e51b81526004016109c690612852565b8051610b5990600b9060208401906121ff565b60606003805461083a906127b3565b6008546001600160a01b031633146112ef5760405162461bcd60e51b81526004016109c690612852565b600e91909155600f55565b6008546001600160a01b031633146113245760405162461bcd60e51b81526004016109c690612852565b6000816002811115611338576113386124ea565b0361134d57600d805461ffff191690556113a3565b6001816002811115611361576113616124ea565b0361137a57600d805461ffff1916610a0a1790556113a3565b600281600281111561138e5761138e6124ea565b036113a357600d805461ffff1916611e0a1790555b6010805482919061ff0019166101008360028111156113c4576113c46124ea565b02179055507ff20e5f51c40ecd792e74bf9d0bb09ce7ba6f2191e53df39f6173aacd3c9cd703816040516113f89190612500565b60405180910390a150565b336001600160a01b0383160361142c5760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6008546001600160a01b031633146114c25760405162461bcd60e51b81526004016109c690612852565b6010805460ff191660011790556040517fcac6e2aaaf564852172624502fe16bee5369a581f840e46b84a49cf4626abb1490600090a1565b600061150461098e565b61152e907f0000000000000000000000000000000000000000000000000000000000001b58612941565b905090565b61153e848484611a28565b6001600160a01b0383163b15158015611560575061155e84848484611ec7565b155b1561157e576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b3233146115a35760405162461bcd60e51b81526004016109c6906127ed565b6001601054610100900460ff1660028111156115c1576115c16124ea565b146115df57604051634323091d60e11b815260040160405180910390fd5b600e546040516bffffffffffffffffffffffff193360601b16602082015261162191839160340160405160208183030381529060405280519060200120611eb1565b61163e576040516360cea48b60e01b815260040160405180910390fd5b600d5460ff1661ffff831611801561166157506008546001600160a01b03163314155b1561167f57604051630df3c0a760e21b815260040160405180910390fd5b7f0000000000000000000000000000000000000000000000000000000000001b5861ffff168261ffff166116b161098e565b6116bb919061283a565b11156116da57604051632df8063760e21b815260040160405180910390fd5b600d543360009081526005602052604090205461010090910460ff169061ffff841690600160401b90046001600160401b0316611717919061283a565b11801561172f57506008546001600160a01b03163314155b1561174d57604051638d5e761360e01b815260040160405180910390fd5b600061175883610cab565b90508034101561177e5760405163bd4f29e360e01b8152600481018290526024016109c6565b610989338461ffff16611c16565b606061179782611993565b6117b457604051630a14c4b560e41b815260040160405180910390fd5b60105460ff161561181b57600a80546117cc906127b3565b90506000036117ea5760405180602001604052806000815250610825565b600a6117f583611da9565b604051602001611806929190612964565b60405160208183030381529060405292915050565b600c8054611828906127b3565b90506000036118465760405180602001604052806000815250610825565b600c8054611853906127b3565b80601f016020809104026020016040519081016040528092919081815260200182805461187f906127b3565b80156118cc5780601f106118a1576101008083540402835291602001916118cc565b820191906000526020600020905b8154815290600101906020018083116118af57829003601f168201915b505050505092915050565b919050565b600b8054610deb906127b3565b6008546001600160a01b031633146119135760405162461bcd60e51b81526004016109c690612852565b6001600160a01b0381166119785760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016109c6565b61198181611d57565b50565b6001600160a01b03163b151590565b6000816001111580156119a7575060005482105b8015610825575050600090815260046020526040902054600160e01b900460ff161590565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6000611a3382611c30565b9050836001600160a01b031681600001516001600160a01b031614611a6a5760405162a1148160e81b815260040160405180910390fd5b6000336001600160a01b0386161480611a885750611a88853361078b565b80611aa3575033611a98846108bd565b6001600160a01b0316145b905080611ac357604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b038416611aea57604051633a954ecd60e21b815260040160405180910390fd5b611af6600084876119cc565b6001600160a01b038581166000908152600560209081526040808320805467ffffffffffffffff198082166001600160401b0392831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600490945282852080546001600160e01b031916909417600160a01b42909216919091021783558701808452922080549193909116611bca576000548214611bca57805460208601516001600160401b0316600160a01b026001600160e01b03199091166001600160a01b038a16171781555b50505082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b610b59828260405180602001604052806000815250611fb2565b60408051606081018252600080825260208201819052918101919091528180600111158015611c60575060005481105b15611d3e57600081815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff16151591810182905290611d3c5780516001600160a01b031615611cd3579392505050565b5060001901600081815260046020908152604091829020825160608101845290546001600160a01b038116808352600160a01b82046001600160401b031693830193909352600160e01b900460ff1615159281019290925215611d37579392505050565b611cd3565b505b604051636f96cda160e11b815260040160405180910390fd5b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b606081600003611dd05750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611dfa5780611de481612a1e565b9150611df39050600a83612a4d565b9150611dd4565b6000816001600160401b03811115611e1457611e14612405565b6040519080825280601f01601f191660200182016040528015611e3e576020820181803683370190505b5090505b8415611ea957611e536001836128a0565b9150611e60600a86612a61565b611e6b90603061283a565b60f81b818381518110611e8057611e806128d6565b60200101906001600160f81b031916908160001a905350611ea2600a86612a4d565b9450611e42565b949350505050565b600082611ebe8584611fbf565b14949350505050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a0290611efc903390899088908890600401612a75565b6020604051808303816000875af1925050508015611f37575060408051601f3d908101601f19168201909252611f3491810190612ab2565b60015b611f95573d808015611f65576040519150601f19603f3d011682016040523d82523d6000602084013e611f6a565b606091505b508051600003611f8d576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050949350505050565b6109898383836001612033565b600081815b845181101561202b576000858281518110611fe157611fe16128d6565b602002602001015190508083116120075760008381526020829052604090209250612018565b600081815260208490526040902092505b508061202381612a1e565b915050611fc4565b509392505050565b6000546001600160a01b03851661205c57604051622e076360e81b815260040160405180910390fd5b8360000361207d5760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038516600081815260056020908152604080832080546fffffffffffffffffffffffffffffffff1981166001600160401b038083168c018116918217600160401b67ffffffffffffffff1990941690921783900481168c01811690920217909155858452600490925290912080546001600160e01b031916909217600160a01b42909216919091021790558080850183801561212957506001600160a01b0387163b15155b156121b1575b60405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a461217a6000888480600101955088611ec7565b612197576040516368d2bf6b60e11b815260040160405180910390fd5b80820361212f5782600054146121ac57600080fd5b6121f6565b5b6040516001830192906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a48082036121b2575b50600055611c0f565b82805461220b906127b3565b90600052602060002090601f01602090048101928261222d5760008555612273565b82601f1061224657805160ff1916838001178555612273565b82800160010185558215612273579182015b82811115612273578251825591602001919060010190612258565b5061227f929150612283565b5090565b5b8082111561227f5760008155600101612284565b6001600160e01b03198116811461198157600080fd5b6000602082840312156122c057600080fd5b81356122cb81612298565b9392505050565b60005b838110156122ed5781810151838201526020016122d5565b8381111561157e5750506000910152565b600081518084526123168160208601602086016122d2565b601f01601f19169290920160200192915050565b6020815260006122cb60208301846122fe565b60006020828403121561234f57600080fd5b5035919050565b6001600160a01b038116811461198157600080fd5b6000806040838503121561237e57600080fd5b823561238981612356565b946020939093013593505050565b6000806000606084860312156123ac57600080fd5b83356123b781612356565b925060208401356123c781612356565b929592945050506040919091013590565b803561ffff811681146118d757600080fd5b6000602082840312156123fc57600080fd5b6122cb826123d8565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f191681016001600160401b038111828210171561244357612443612405565b604052919050565b60006001600160401b0383111561246457612464612405565b612477601f8401601f191660200161241b565b905082815283838301111561248b57600080fd5b828260208301376000602084830101529392505050565b6000602082840312156124b457600080fd5b81356001600160401b038111156124ca57600080fd5b8201601f810184136124db57600080fd5b611ea98482356020840161244b565b634e487b7160e01b600052602160045260246000fd5b602081016003831061252257634e487b7160e01b600052602160045260246000fd5b91905290565b60006020828403121561253a57600080fd5b81356122cb81612356565b6020808252825182820181905260009190848201906040850190845b8181101561257d57835183529284019291840191600101612561565b50909695505050505050565b600082601f83011261259a57600080fd5b813560206001600160401b038211156125b5576125b5612405565b8160051b6125c482820161241b565b92835284810182019282810190878511156125de57600080fd5b83870192505b848310156125fd578235825291830191908301906125e4565b979650505050505050565b6000806040838503121561261b57600080fd5b8235915060208301356001600160401b0381111561263857600080fd5b61264485828601612589565b9150509250929050565b6000806040838503121561266157600080fd5b50508035926020909101359150565b60006020828403121561268257600080fd5b8135600381106122cb57600080fd5b600080604083850312156126a457600080fd5b82356126af81612356565b9150602083013580151581146126c457600080fd5b809150509250929050565b600080600080608085870312156126e557600080fd5b84356126f081612356565b9350602085013561270081612356565b92506040850135915060608501356001600160401b0381111561272257600080fd5b8501601f8101871361273357600080fd5b6127428782356020840161244b565b91505092959194509250565b6000806040838503121561276157600080fd5b61276a836123d8565b915060208301356001600160401b0381111561263857600080fd5b6000806040838503121561279857600080fd5b82356127a381612356565b915060208301356126c481612356565b600181811c908216806127c757607f821691505b6020821081036127e757634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252601e908201527f4f6e6c7920612077616c6c657420616464726573732063616e206d696e740000604082015260600190565b634e487b7160e01b600052601160045260246000fd5b6000821982111561284d5761284d612824565b500190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60006020828403121561289957600080fd5b5051919050565b6000828210156128b2576128b2612824565b500390565b60008160001904831182151516156128d1576128d1612824565b500290565b634e487b7160e01b600052603260045260246000fd5b6000602082840312156128fe57600080fd5b81516122cb81612356565b6000815161291b8185602086016122d2565b9290920192915050565b600082516129378184602087016122d2565b9190910192915050565b600061ffff8381169083168181101561295c5761295c612824565b039392505050565b600080845481600182811c91508083168061298057607f831692505b6020808410820361299f57634e487b7160e01b86526022600452602486fd5b8180156129b357600181146129c4576129f1565b60ff198616895284890196506129f1565b60008b81526020902060005b868110156129e95781548b8201529085019083016129d0565b505084890196505b505050505050612a15612a048286612909565b64173539b7b760d91b815260050190565b95945050505050565b600060018201612a3057612a30612824565b5060010190565b634e487b7160e01b600052601260045260246000fd5b600082612a5c57612a5c612a37565b500490565b600082612a7057612a70612a37565b500690565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612aa8908301846122fe565b9695505050505050565b600060208284031215612ac457600080fd5b81516122cb8161229856fea2646970667358221220519994e2a562a58a6ed6644ae781b589b3a7e794598f6872683dc900802fc30764736f6c634300080d0033

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

0000000000000000000000000000000000000000000000000000000000000140000000000000000000000000000000000000000000000000000000000000018000000000000000000000000000000000000000000000000000000000000001c00000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000028000000000000000000000000000000000000000000000000000b1a2bc2ec500000000000000000000000000000000000000000000000000000000000000001b58000000000000000000000000ff58403b9b011659f45d12744a0be5f01c9fb607b6cc5c11046d817fc38576129892bb99c3c114b951c791f00a0cc56d1825e52cc89753659183877dd9f8cc49861c30125b7279e8903538b371c987f63ca1e8de000000000000000000000000000000000000000000000000000000000000000e44696769446f7261626c6573433100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000086362446967694331000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001f697066733a2f2f706c616365686f6c6465725f756e74696c5f72657665616c000000000000000000000000000000000000000000000000000000000000000043697066733a2f2f516d646a575935744754336e39644e4e384e6f684e6b6d3250427847425a4a74684c57624d77476b70724244695a2f636f6e74726163742e6a736f6e00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000046697066733a2f2f516d646a575935744754336e39644e4e384e6f684e6b6d3250427847425a4a74684c57624d77476b70724244695a2f706c616365686f6c6465722e6a736f6e0000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : name_ (string): DigiDorablesC1
Arg [1] : symbol_ (string): cbDigiC1
Arg [2] : baseURI_ (string): ipfs://placeholder_until_reveal
Arg [3] : contractURI_ (string): ipfs://QmdjWY5tGT3n9dNN8NohNkm2PBxGBZJthLWbMwGkprBDiZ/contract.json
Arg [4] : placeholderURI_ (string): ipfs://QmdjWY5tGT3n9dNN8NohNkm2PBxGBZJthLWbMwGkprBDiZ/placeholder.json
Arg [5] : price_ (uint256): 50000000000000000
Arg [6] : maxSupply_ (uint16): 7000
Arg [7] : boxelContract_ (address): 0xfF58403B9b011659f45d12744a0bE5F01c9FB607
Arg [8] : rootAllowList_ (bytes32): 0xb6cc5c11046d817fc38576129892bb99c3c114b951c791f00a0cc56d1825e52c
Arg [9] : rootRedeemableTokens_ (bytes32): 0xc89753659183877dd9f8cc49861c30125b7279e8903538b371c987f63ca1e8de

-----Encoded View---------------
24 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000140
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000180
Arg [2] : 00000000000000000000000000000000000000000000000000000000000001c0
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000200
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000280
Arg [5] : 00000000000000000000000000000000000000000000000000b1a2bc2ec50000
Arg [6] : 0000000000000000000000000000000000000000000000000000000000001b58
Arg [7] : 000000000000000000000000ff58403b9b011659f45d12744a0be5f01c9fb607
Arg [8] : b6cc5c11046d817fc38576129892bb99c3c114b951c791f00a0cc56d1825e52c
Arg [9] : c89753659183877dd9f8cc49861c30125b7279e8903538b371c987f63ca1e8de
Arg [10] : 000000000000000000000000000000000000000000000000000000000000000e
Arg [11] : 44696769446f7261626c65734331000000000000000000000000000000000000
Arg [12] : 0000000000000000000000000000000000000000000000000000000000000008
Arg [13] : 6362446967694331000000000000000000000000000000000000000000000000
Arg [14] : 000000000000000000000000000000000000000000000000000000000000001f
Arg [15] : 697066733a2f2f706c616365686f6c6465725f756e74696c5f72657665616c00
Arg [16] : 0000000000000000000000000000000000000000000000000000000000000043
Arg [17] : 697066733a2f2f516d646a575935744754336e39644e4e384e6f684e6b6d3250
Arg [18] : 427847425a4a74684c57624d77476b70724244695a2f636f6e74726163742e6a
Arg [19] : 736f6e0000000000000000000000000000000000000000000000000000000000
Arg [20] : 0000000000000000000000000000000000000000000000000000000000000046
Arg [21] : 697066733a2f2f516d646a575935744754336e39644e4e384e6f684e6b6d3250
Arg [22] : 427847425a4a74684c57624d77476b70724244695a2f706c616365686f6c6465
Arg [23] : 722e6a736f6e0000000000000000000000000000000000000000000000000000


Loading...
Loading
Loading...
Loading
[ Download: CSV Export  ]
[ Download: CSV Export  ]

A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.