ETH Price: $3,324.61 (+2.30%)
Gas: 3 Gwei

Token

Fantazya NFT (FNFT)
 

Overview

Max Total Supply

3,333 FNFT

Holders

782

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Filtered by Token Holder
888king.eth
Balance
3 FNFT
0xf1317609b61138592f9bbfc54483eee9a9ace0c4
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:
Fantazya

Compiler Version
v0.8.1+commit.df193b15

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion
File 1 of 13 : Fantazya.sol
// SPDX-License-Identifier: GPL-3.0
// Fantazya NFT Contract v1
// @author twitter: _syndk8

pragma solidity >=0.7.0 <0.9.0;

import "./ERC721A.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/utils/cryptography/ECDSA.sol";

contract Fantazya is ERC721A, Ownable {
    using Strings for uint256;
    using ECDSA for bytes32;
    using ECDSA for bytes;

    uint256 public MAX_SUPPLY = 3333;
    uint256 public MAX_OG = 300;
    uint256 public MAX_BATCH = 5;
    uint256 public MAX_WL = 3;
    uint256 public GIVEAWAYS = 100;
    uint256 public SALE_PRICE = 0.06 ether;
    uint16 public sale_state;
    bool public paused;
    bool public revealed;
    string public BASE_URL;
    string public PROVENANCE = "";
    bytes32 public EXTENSION = ".json";
    mapping(address => bool) private freemints;
    mapping(address => bool) private devs;
    address public PRIMARY = 0x88b01C2bB126de410b4b102F78214153B22e3cD0;
    address public PUB_KEY;

    constructor() ERC721A("Fantazya NFT", "FNFT", MAX_BATCH, MAX_SUPPLY) {
        devs[msg.sender] = true;
        devs[PRIMARY] = true;
    }

    modifier devOnly {
        require(devs[msg.sender]);
        _;
    }

    /* PUBLIC METHODS */

    function pubMint(uint256 quantity) public payable
    {
        require(!paused);
        require(totalSupply() + quantity <= MAX_SUPPLY, "All tokens have been minted");
        require(sale_state == 3, "Public sale is currently inactive");
        require(tx.origin == msg.sender, "Contracts are not allowed to mint");
        require(msg.value == SALE_PRICE * quantity, "Incorrect amount of ether");
        require(_numberMinted(msg.sender) + quantity <= MAX_BATCH, "Address is not allowed to mint more than MAX_BATCH");

        _safeMint(msg.sender, quantity);
    }

    function preMint(uint256 quantity) public onlyOwner {   // address must not be the genesis safe
        require(!paused);
        require(quantity % MAX_BATCH == 0, "Can only mint a multiple of MAX_BATCH");
        require(totalSupply() + quantity <= GIVEAWAYS, "Quantity exceeds number of reserved tokens");
         
        uint256 numBatch = quantity / MAX_BATCH;
        for(uint256 i = 0; i < numBatch; i++){
            _safeMint(msg.sender, MAX_BATCH);
        }
    }

    function presale(bytes calldata _signature, uint256 quantity) public payable { // add bytes calldata _signature
        require(!paused);
        require(totalSupply() + quantity <= MAX_SUPPLY, "All tokens have been minted");
        require(sale_state == 2, "Presale is currently inactive");
        require(isWhitelisted(_signature, msg.sender), "Address is not whitelisted");
        require(tx.origin == msg.sender, "Contracts are not allowed to mint");
        require(msg.value == SALE_PRICE * quantity, "Incorrect amount of ether");
        require(_numberMinted(msg.sender) + quantity <= MAX_WL, "Address is not allowed to mint more than MAX_WL"); // if max batch > 1, need to check uint instead of bool
        
        _safeMint(msg.sender, quantity);
    }

    function ogMint(bytes calldata _signature, uint256 quantity) public payable {  // add bytes calldata _signature
        require(!paused);
        require(totalSupply() + quantity <= MAX_OG + GIVEAWAYS, "All OG tokens have been minted");
        require(sale_state == 1, "Presale is currently inactive");
        require(isWhitelisted(_signature, msg.sender), "Address is not whitelisted");
        require(tx.origin == msg.sender, "Contracts are not allowed to mint");
        if(!freemints[msg.sender]){ // non freemint addresses must pay to mint
            require(msg.value == SALE_PRICE * quantity, "Incorrect amount of ether");
        }
        require(_numberMinted(msg.sender) + quantity <= MAX_WL, "Address is not allowed to mint more than MAX_WL"); // if max batch > 1, need to check uint instead of bool
        
        _safeMint(msg.sender, quantity);
    }

    /* OVERRIDES */

    /*
    *   @dev Returns the tokenURI to the tokens Metadata
    * Requirements:
    * - `_tokenId` Must be a valid token
    * - `BASE_URL` Must be set
    */
    function tokenURI(uint256 _tokenId) public view virtual override returns(string memory){
        return !revealed ? BASE_URL : string(abi.encodePacked(BASE_URL, _tokenId.toString(), EXTENSION));
    }

    /* PRIVATE METHODS */

    /**
    *   @dev function to verify address is whitelisted
    *   @param _signature - used to verify address
    *   @param _user - address of connected user
    *   @return bool verification
    */
    function isWhitelisted(bytes calldata _signature, address _user) private view returns(bool) {
        return abi.encode(_user,MAX_SUPPLY).toEthSignedMessageHash().recover(_signature) == PUB_KEY;
    }

    function setFreemints(address[] calldata wallets) public devOnly {
        for(uint256 i = 0; i < wallets.length; i++){
            freemints[wallets[i]] = true;
        }
    }

    /* ADMIN ONLY METHODS */

    function addDev(address _account) public onlyOwner {
        require(!devs[_account],"Developer already exists");
        devs[_account] = true;
    }

    function removeDev(address _account) public onlyOwner {
        require(devs[_account], "Developer doesn't exist");
        devs[_account] = false;
    }

    function setMaxSupply(uint256 _supply) public onlyOwner {
        MAX_SUPPLY = _supply;
    }

    function setProvenance(string memory _provenance) public devOnly {
        PROVENANCE = _provenance;
    }

    function setSalePrice(uint256 _salePrice) public onlyOwner {
        SALE_PRICE = _salePrice;
    }

    function setPubkey(address _key) public devOnly {
        PUB_KEY = _key;
    }

    function setPrimaryAddress(address _primary) public onlyOwner {
        PRIMARY = _primary;
    }

    /*
    *   @dev Sets the state of the public sale
    * Requirements:
    * - `_sale_state` Must be an integer
    */
    function setSaleState(uint16 _sale_state) public devOnly {
        sale_state = _sale_state;
    }

    /*
    *   @dev Toggles paused state in case of emergency
    */
    function togglePaused() public devOnly {
        paused = !paused;
    }

    /*
    *   @dev Sets the BASE_URL for tokenURI
    * Requirements:
    * - `_url` Must be in the form: ipfs://${CID}/
    */
    function setBaseURL(string memory _url) public devOnly {
        BASE_URL = _url;
    }

    function setRevealed(string memory _url, bool _revealed) public devOnly {
        BASE_URL = _url;
        revealed = _revealed;
    }

    function withdraw() public payable onlyOwner {
        (bool os,)= payable(PRIMARY).call{value:address(this).balance}("");
        require(os);
    }
}

File 2 of 13 : ERC721A.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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/token/ERC721/extensions/IERC721Enumerable.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";

/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
 * the Metadata and Enumerable extension. Built to optimize for lower gas during batch mints.
 *
 * Assumes serials are sequentially minted starting at 0 (e.g. 0, 1, 2, 3..).
 *
 * Assumes the number of issuable tokens (collection size) is capped and fits in a uint128.
 *
 * Does not support burning tokens to address(0).
 */
contract ERC721A is
  Context,
  ERC165,
  IERC721,
  IERC721Metadata,
  IERC721Enumerable
{
  using Address for address;
  using Strings for uint256;

  struct TokenOwnership {
    address addr;
    uint64 startTimestamp;
  }

  struct AddressData {
    uint128 balance;
    uint128 numberMinted;
  }

  uint256 private currentIndex = 0;

  uint256 internal immutable collectionSize;
  uint256 internal immutable maxBatchSize;

  // 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) private _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;

  /**
   * @dev
   * `maxBatchSize` refers to how much a minter can mint at a time.
   * `collectionSize_` refers to how many tokens are in the collection.
   */
  constructor(
    string memory name_,
    string memory symbol_,
    uint256 maxBatchSize_,
    uint256 collectionSize_
  ) {
    require(
      collectionSize_ > 0,
      "ERC721A: collection must have a nonzero supply"
    );
    require(maxBatchSize_ > 0, "ERC721A: max batch size must be nonzero");
    _name = name_;
    _symbol = symbol_;
    maxBatchSize = maxBatchSize_;
    collectionSize = collectionSize_;
  }

  /**
   * @dev See {IERC721Enumerable-totalSupply}.
   */
  function totalSupply() public view override returns (uint256) {
    return currentIndex;
  }

  /**
   * @dev See {IERC721Enumerable-tokenByIndex}.
   */
  function tokenByIndex(uint256 index) public view override returns (uint256) {
    require(index < totalSupply(), "ERC721A: global index out of bounds");
    return index;
  }

  /**
   * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}.
   * This read function is O(collectionSize). If calling from a separate contract, be sure to test gas first.
   * It may also degrade with extremely large collection sizes (e.g >> 10000), test for your use case.
   */
  function tokenOfOwnerByIndex(address owner, uint256 index)
    public
    view
    override
    returns (uint256)
  {
    require(index < balanceOf(owner), "ERC721A: owner index out of bounds");
    uint256 numMintedSoFar = totalSupply();
    uint256 tokenIdsIdx = 0;
    address currOwnershipAddr = address(0);
    for (uint256 i = 0; i < numMintedSoFar; i++) {
      TokenOwnership memory ownership = _ownerships[i];
      if (ownership.addr != address(0)) {
        currOwnershipAddr = ownership.addr;
      }
      if (currOwnershipAddr == owner) {
        if (tokenIdsIdx == index) {
          return i;
        }
        tokenIdsIdx++;
      }
    }
    revert("ERC721A: unable to get token of owner by index");
  }

  /**
   * @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 ||
      interfaceId == type(IERC721Enumerable).interfaceId ||
      super.supportsInterface(interfaceId);
  }

  /**
   * @dev See {IERC721-balanceOf}.
   */
  function balanceOf(address owner) public view override returns (uint256) {
    require(owner != address(0), "ERC721A: balance query for the zero address");
    return uint256(_addressData[owner].balance);
  }

  function _numberMinted(address owner) internal view returns (uint256) {
    require(
      owner != address(0),
      "ERC721A: number minted query for the zero address"
    );
    return uint256(_addressData[owner].numberMinted);
  }

  function ownershipOf(uint256 tokenId)
    internal
    view
    returns (TokenOwnership memory)
  {
    require(_exists(tokenId), "ERC721A: owner query for nonexistent token");

    uint256 lowestTokenToCheck;
    if (tokenId >= maxBatchSize) {
      lowestTokenToCheck = tokenId - maxBatchSize + 1;
    }

    for (uint256 curr = tokenId; curr >= lowestTokenToCheck; curr--) {
      TokenOwnership memory ownership = _ownerships[curr];
      if (ownership.addr != address(0)) {
        return ownership;
      }
    }

    revert("ERC721A: unable to determine the owner of token");
  }

  /**
   * @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)
  {
    require(
      _exists(tokenId),
      "ERC721Metadata: URI query for nonexistent token"
    );

    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);
    require(to != owner, "ERC721A: approval to current owner");

    require(
      _msgSender() == owner || isApprovedForAll(owner, _msgSender()),
      "ERC721A: approve caller is not owner nor approved for all"
    );

    _approve(to, tokenId, owner);
  }

  /**
   * @dev See {IERC721-getApproved}.
   */
  function getApproved(uint256 tokenId) public view override returns (address) {
    require(_exists(tokenId), "ERC721A: approved query for nonexistent token");

    return _tokenApprovals[tokenId];
  }

  /**
   * @dev See {IERC721-setApprovalForAll}.
   */
  function setApprovalForAll(address operator, bool approved) public override {
    require(operator != _msgSender(), "ERC721A: approve to caller");

    _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 override {
    _transfer(from, to, tokenId);
  }

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

  /**
   * @dev See {IERC721-safeTransferFrom}.
   */
  function safeTransferFrom(
    address from,
    address to,
    uint256 tokenId,
    bytes memory _data
  ) public override {
    _transfer(from, to, tokenId);
    require(
      _checkOnERC721Received(from, to, tokenId, _data),
      "ERC721A: transfer to non ERC721Receiver implementer"
    );
  }

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

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

  /**
   * @dev Mints `quantity` tokens and transfers them to `to`.
   *
   * Requirements:
   *
   * - there must be `quantity` tokens remaining unminted in the total collection.
   * - `to` cannot be the zero address.
   * - `quantity` cannot be larger than the max batch size.
   *
   * Emits a {Transfer} event.
   */
  function _safeMint(
    address to,
    uint256 quantity,
    bytes memory _data
  ) internal {
    uint256 startTokenId = currentIndex;
    require(to != address(0), "ERC721A: mint to the zero address");
    // We know if the first token in the batch doesn't exist, the other ones don't as well, because of serial ordering.
    require(!_exists(startTokenId), "ERC721A: token already minted");
    require(quantity <= maxBatchSize, "ERC721A: quantity to mint too high");

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

    AddressData memory addressData = _addressData[to];
    _addressData[to] = AddressData(
      addressData.balance + uint128(quantity),
      addressData.numberMinted + uint128(quantity)
    );
    _ownerships[startTokenId] = TokenOwnership(to, uint64(block.timestamp));

    uint256 updatedIndex = startTokenId;

    for (uint256 i = 0; i < quantity; i++) {
      emit Transfer(address(0), to, updatedIndex);
      require(
        _checkOnERC721Received(address(0), to, updatedIndex, _data),
        "ERC721A: transfer to non ERC721Receiver implementer"
      );
      updatedIndex++;
    }

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

    bool isApprovedOrOwner = (_msgSender() == prevOwnership.addr ||
      getApproved(tokenId) == _msgSender() ||
      isApprovedForAll(prevOwnership.addr, _msgSender()));

    require(
      isApprovedOrOwner,
      "ERC721A: transfer caller is not owner nor approved"
    );

    require(
      prevOwnership.addr == from,
      "ERC721A: transfer from incorrect owner"
    );
    require(to != address(0), "ERC721A: transfer to the zero address");

    _beforeTokenTransfers(from, to, tokenId, 1);

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

    _addressData[from].balance -= 1;
    _addressData[to].balance += 1;
    _ownerships[tokenId] = TokenOwnership(to, 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;
    if (_ownerships[nextTokenId].addr == address(0)) {
      if (_exists(nextTokenId)) {
        _ownerships[nextTokenId] = TokenOwnership(
          prevOwnership.addr,
          prevOwnership.startTimestamp
        );
      }
    }

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

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

  uint256 public nextOwnerToExplicitlySet = 0;

  /**
   * @dev Explicitly set `owners` to eliminate loops in future calls of ownerOf().
   */
  function _setOwnersExplicit(uint256 quantity) internal {
    uint256 oldNextOwnerToSet = nextOwnerToExplicitlySet;
    require(quantity > 0, "quantity must be nonzero");
    uint256 endIndex = oldNextOwnerToSet + quantity - 1;
    if (endIndex > collectionSize - 1) {
      endIndex = collectionSize - 1;
    }
    // We know if the last one in the group exists, all in the group exist, due to serial ordering.
    require(_exists(endIndex), "not enough minted yet for this cleanup");
    for (uint256 i = oldNextOwnerToSet; i <= endIndex; i++) {
      if (_ownerships[i].addr == address(0)) {
        TokenOwnership memory ownership = ownershipOf(i);
        _ownerships[i] = TokenOwnership(
          ownership.addr,
          ownership.startTimestamp
        );
      }
    }
    nextOwnerToExplicitlySet = endIndex + 1;
  }

  /**
   * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address.
   * The call is not executed if the target address is not a 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 _checkOnERC721Received(
    address from,
    address to,
    uint256 tokenId,
    bytes memory _data
  ) private returns (bool) {
    if (to.isContract()) {
      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("ERC721A: transfer to non ERC721Receiver implementer");
        } else {
          assembly {
            revert(add(32, reason), mload(reason))
          }
        }
      }
    } else {
      return true;
    }
  }

  /**
   * @dev Hook that is called before a set of serially-ordered token ids are about to be transferred. This includes minting.
   *
   * 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`.
   */
  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.
   *
   * 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` and `to` are never both zero.
   */
  function _afterTokenTransfers(
    address from,
    address to,
    uint256 startTokenId,
    uint256 quantity
  ) internal virtual {}
}

File 3 of 13 : Ownable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.0 (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 4 of 13 : ECDSA.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.0 (utils/cryptography/ECDSA.sol)

pragma solidity ^0.8.0;

import "../Strings.sol";

/**
 * @dev Elliptic Curve Digital Signature Algorithm (ECDSA) operations.
 *
 * These functions can be used to verify that a message was signed by the holder
 * of the private keys of a given address.
 */
library ECDSA {
    enum RecoverError {
        NoError,
        InvalidSignature,
        InvalidSignatureLength,
        InvalidSignatureS,
        InvalidSignatureV
    }

    function _throwError(RecoverError error) private pure {
        if (error == RecoverError.NoError) {
            return; // no error: do nothing
        } else if (error == RecoverError.InvalidSignature) {
            revert("ECDSA: invalid signature");
        } else if (error == RecoverError.InvalidSignatureLength) {
            revert("ECDSA: invalid signature length");
        } else if (error == RecoverError.InvalidSignatureS) {
            revert("ECDSA: invalid signature 's' value");
        } else if (error == RecoverError.InvalidSignatureV) {
            revert("ECDSA: invalid signature 'v' value");
        }
    }

    /**
     * @dev Returns the address that signed a hashed message (`hash`) with
     * `signature` or error string. This address can then be used for verification purposes.
     *
     * The `ecrecover` EVM opcode allows for malleable (non-unique) signatures:
     * this function rejects them by requiring the `s` value to be in the lower
     * half order, and the `v` value to be either 27 or 28.
     *
     * IMPORTANT: `hash` _must_ be the result of a hash operation for the
     * verification to be secure: it is possible to craft signatures that
     * recover to arbitrary addresses for non-hashed data. A safe way to ensure
     * this is by receiving a hash of the original message (which may otherwise
     * be too long), and then calling {toEthSignedMessageHash} on it.
     *
     * Documentation for signature generation:
     * - with https://web3js.readthedocs.io/en/v1.3.4/web3-eth-accounts.html#sign[Web3.js]
     * - with https://docs.ethers.io/v5/api/signer/#Signer-signMessage[ethers]
     *
     * _Available since v4.3._
     */
    function tryRecover(bytes32 hash, bytes memory signature) internal pure returns (address, RecoverError) {
        // Check the signature length
        // - case 65: r,s,v signature (standard)
        // - case 64: r,vs signature (cf https://eips.ethereum.org/EIPS/eip-2098) _Available since v4.1._
        if (signature.length == 65) {
            bytes32 r;
            bytes32 s;
            uint8 v;
            // ecrecover takes the signature parameters, and the only way to get them
            // currently is to use assembly.
            assembly {
                r := mload(add(signature, 0x20))
                s := mload(add(signature, 0x40))
                v := byte(0, mload(add(signature, 0x60)))
            }
            return tryRecover(hash, v, r, s);
        } else if (signature.length == 64) {
            bytes32 r;
            bytes32 vs;
            // ecrecover takes the signature parameters, and the only way to get them
            // currently is to use assembly.
            assembly {
                r := mload(add(signature, 0x20))
                vs := mload(add(signature, 0x40))
            }
            return tryRecover(hash, r, vs);
        } else {
            return (address(0), RecoverError.InvalidSignatureLength);
        }
    }

    /**
     * @dev Returns the address that signed a hashed message (`hash`) with
     * `signature`. This address can then be used for verification purposes.
     *
     * The `ecrecover` EVM opcode allows for malleable (non-unique) signatures:
     * this function rejects them by requiring the `s` value to be in the lower
     * half order, and the `v` value to be either 27 or 28.
     *
     * IMPORTANT: `hash` _must_ be the result of a hash operation for the
     * verification to be secure: it is possible to craft signatures that
     * recover to arbitrary addresses for non-hashed data. A safe way to ensure
     * this is by receiving a hash of the original message (which may otherwise
     * be too long), and then calling {toEthSignedMessageHash} on it.
     */
    function recover(bytes32 hash, bytes memory signature) internal pure returns (address) {
        (address recovered, RecoverError error) = tryRecover(hash, signature);
        _throwError(error);
        return recovered;
    }

    /**
     * @dev Overload of {ECDSA-tryRecover} that receives the `r` and `vs` short-signature fields separately.
     *
     * See https://eips.ethereum.org/EIPS/eip-2098[EIP-2098 short signatures]
     *
     * _Available since v4.3._
     */
    function tryRecover(
        bytes32 hash,
        bytes32 r,
        bytes32 vs
    ) internal pure returns (address, RecoverError) {
        bytes32 s;
        uint8 v;
        assembly {
            s := and(vs, 0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff)
            v := add(shr(255, vs), 27)
        }
        return tryRecover(hash, v, r, s);
    }

    /**
     * @dev Overload of {ECDSA-recover} that receives the `r and `vs` short-signature fields separately.
     *
     * _Available since v4.2._
     */
    function recover(
        bytes32 hash,
        bytes32 r,
        bytes32 vs
    ) internal pure returns (address) {
        (address recovered, RecoverError error) = tryRecover(hash, r, vs);
        _throwError(error);
        return recovered;
    }

    /**
     * @dev Overload of {ECDSA-tryRecover} that receives the `v`,
     * `r` and `s` signature fields separately.
     *
     * _Available since v4.3._
     */
    function tryRecover(
        bytes32 hash,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) internal pure returns (address, RecoverError) {
        // EIP-2 still allows signature malleability for ecrecover(). Remove this possibility and make the signature
        // unique. Appendix F in the Ethereum Yellow paper (https://ethereum.github.io/yellowpaper/paper.pdf), defines
        // the valid range for s in (301): 0 < s < secp256k1n ÷ 2 + 1, and for v in (302): v ∈ {27, 28}. Most
        // signatures from current libraries generate a unique signature with an s-value in the lower half order.
        //
        // If your library generates malleable signatures, such as s-values in the upper range, calculate a new s-value
        // with 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEBAAEDCE6AF48A03BBFD25E8CD0364141 - s1 and flip v from 27 to 28 or
        // vice versa. If your library also generates signatures with 0/1 for v instead 27/28, add 27 to v to accept
        // these malleable signatures as well.
        if (uint256(s) > 0x7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF5D576E7357A4501DDFE92F46681B20A0) {
            return (address(0), RecoverError.InvalidSignatureS);
        }
        if (v != 27 && v != 28) {
            return (address(0), RecoverError.InvalidSignatureV);
        }

        // If the signature is valid (and not malleable), return the signer address
        address signer = ecrecover(hash, v, r, s);
        if (signer == address(0)) {
            return (address(0), RecoverError.InvalidSignature);
        }

        return (signer, RecoverError.NoError);
    }

    /**
     * @dev Overload of {ECDSA-recover} that receives the `v`,
     * `r` and `s` signature fields separately.
     */
    function recover(
        bytes32 hash,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) internal pure returns (address) {
        (address recovered, RecoverError error) = tryRecover(hash, v, r, s);
        _throwError(error);
        return recovered;
    }

    /**
     * @dev Returns an Ethereum Signed Message, created from a `hash`. This
     * produces hash corresponding to the one signed with the
     * https://eth.wiki/json-rpc/API#eth_sign[`eth_sign`]
     * JSON-RPC method as part of EIP-191.
     *
     * See {recover}.
     */
    function toEthSignedMessageHash(bytes32 hash) internal pure returns (bytes32) {
        // 32 is the length in bytes of hash,
        // enforced by the type signature above
        return keccak256(abi.encodePacked("\x19Ethereum Signed Message:\n32", hash));
    }

    /**
     * @dev Returns an Ethereum Signed Message, created from `s`. This
     * produces hash corresponding to the one signed with the
     * https://eth.wiki/json-rpc/API#eth_sign[`eth_sign`]
     * JSON-RPC method as part of EIP-191.
     *
     * See {recover}.
     */
    function toEthSignedMessageHash(bytes memory s) internal pure returns (bytes32) {
        return keccak256(abi.encodePacked("\x19Ethereum Signed Message:\n", Strings.toString(s.length), s));
    }

    /**
     * @dev Returns an Ethereum Signed Typed Data, created from a
     * `domainSeparator` and a `structHash`. This produces hash corresponding
     * to the one signed with the
     * https://eips.ethereum.org/EIPS/eip-712[`eth_signTypedData`]
     * JSON-RPC method as part of EIP-712.
     *
     * See {recover}.
     */
    function toTypedDataHash(bytes32 domainSeparator, bytes32 structHash) internal pure returns (bytes32) {
        return keccak256(abi.encodePacked("\x19\x01", domainSeparator, structHash));
    }
}

File 5 of 13 : IERC721.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.0 (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 6 of 13 : IERC721Receiver.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.0 (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 7 of 13 : IERC721Metadata.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.0 (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 8 of 13 : IERC721Enumerable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.0 (token/ERC721/extensions/IERC721Enumerable.sol)

pragma solidity ^0.8.0;

import "../IERC721.sol";

/**
 * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721Enumerable is IERC721 {
    /**
     * @dev Returns the total amount of tokens stored by the contract.
     */
    function totalSupply() external view returns (uint256);

    /**
     * @dev Returns a token ID owned by `owner` at a given `index` of its token list.
     * Use along with {balanceOf} to enumerate all of ``owner``'s tokens.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256 tokenId);

    /**
     * @dev Returns a token ID at a given `index` of all the tokens stored by the contract.
     * Use along with {totalSupply} to enumerate all tokens.
     */
    function tokenByIndex(uint256 index) external view returns (uint256);
}

File 9 of 13 : Address.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.0 (utils/Address.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

File 10 of 13 : Context.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.0 (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 11 of 13 : Strings.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.0 (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 12 of 13 : ERC165.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.0 (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.0 (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":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"BASE_URL","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"EXTENSION","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"GIVEAWAYS","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_BATCH","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_OG","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_WL","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PRIMARY","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PROVENANCE","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PUB_KEY","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"SALE_PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_account","type":"address"}],"name":"addDev","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"nextOwnerToExplicitlySet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes","name":"_signature","type":"bytes"},{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"ogMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"preMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes","name":"_signature","type":"bytes"},{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"presale","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"pubMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"_account","type":"address"}],"name":"removeDev","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":[],"name":"sale_state","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"view","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":"_url","type":"string"}],"name":"setBaseURL","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"wallets","type":"address[]"}],"name":"setFreemints","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_supply","type":"uint256"}],"name":"setMaxSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_primary","type":"address"}],"name":"setPrimaryAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_provenance","type":"string"}],"name":"setProvenance","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_key","type":"address"}],"name":"setPubkey","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_url","type":"string"},{"internalType":"bool","name":"_revealed","type":"bool"}],"name":"setRevealed","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_salePrice","type":"uint256"}],"name":"setSalePrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint16","name":"_sale_state","type":"uint16"}],"name":"setSaleState","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":[],"name":"togglePaused","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"payable","type":"function"}]

60008080556007819055610d0560095561012c600a556005600b556003600c556064600d5566d529ae9e860000600e5560e0604081905260c08290526200004a916011919062000205565b5064173539b7b760d91b601255601580546001600160a01b0319167388b01c2bb126de410b4b102f78214153b22e3cd01790553480156200008a57600080fd5b506040518060400160405280600c81526020016b11985b9d185e9e584813919560a21b815250604051806040016040528060048152602001631193919560e21b815250600b5460095460008111620000ff5760405162461bcd60e51b8152600401620000f690620002f2565b60405180910390fd5b60008211620001225760405162461bcd60e51b8152600401620000f690620002ab565b83516200013790600190602087019062000205565b5082516200014d90600290602086019062000205565b5060a091909152608052506200016e905062000168620001af565b620001b3565b336000908152601460205260408082208054600160ff1991821681179092556015546001600160a01b0316845291909220805490911690911790556200037d565b3390565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b828054620002139062000340565b90600052602060002090601f01602090048101928262000237576000855562000282565b82601f106200025257805160ff191683800117855562000282565b8280016001018555821562000282579182015b828111156200028257825182559160200191906001019062000265565b506200029092915062000294565b5090565b5b8082111562000290576000815560010162000295565b60208082526027908201527f455243373231413a206d61782062617463682073697a65206d757374206265206040820152666e6f6e7a65726f60c81b606082015260800190565b6020808252602e908201527f455243373231413a20636f6c6c656374696f6e206d757374206861766520612060408201526d6e6f6e7a65726f20737570706c7960901b606082015260800190565b6002810460018216806200035557607f821691505b602082108114156200037757634e487b7160e01b600052602260045260246000fd5b50919050565b60805160a0516138a7620003ae60003960008181611d6d01528181611d9701526121880152600050506138a76000f3fe6080604052600436106102e45760003560e01c8063715018a611610190578063c4026d7b116100dc578063d701dbee11610095578063f2fde38b1161006f578063f2fde38b146107ed578063f5e1713e1461080d578063faaaf6531461082f578063ffe630b51461084f576102e4565b8063d701dbee14610798578063d7224ba0146107b8578063e985e9c5146107cd576102e4565b8063c4026d7b146106ee578063c87b56dd1461070e578063c91d5f971461072e578063ce2a86f014610743578063d31a221614610758578063d51eeafd14610778576102e4565b80638da5cb5b11610149578063a22cb46511610123578063a22cb4651461067b578063b88d4fde1461069b578063b91d3ace146106bb578063c1d9df8d146106db576102e4565b80638da5cb5b1461063c578063950bff9f1461065157806395d89b4114610666576102e4565b8063715018a6146105b557806377cfe82b146105ca5780637f205a74146105dd5780637f78636a146105f2578063814a4c1e146106075780638ad433ac1461061c576102e4565b806336566f061161024f57806351830227116102085780636352211e116101e25780636352211e146105405780636373a6b1146105605780636f8b44b01461057557806370a0823114610595576102e4565b806351830227146105035780635c975abb14610518578063607019b91461052d576102e4565b806336566f06146104715780633ccfd60b1461048657806342842e0e1461048e57806346f13619146104ae57806349f2553a146104c35780634f6ccce7146104e3576102e4565b806318160ddd116102a157806318160ddd146103c55780631919fed7146103e757806323b872dd14610407578063283d26ca146104275780632f745c591461043c57806332cb6b0c1461045c576102e4565b806301ffc9a7146102e9578063062fa1f81461031f57806306fdde0314610341578063081812fc14610363578063095ea7b3146103835780631438ddee146103a5575b600080fd5b3480156102f557600080fd5b5061030961030436600461298c565b61086f565b6040516103169190612ca2565b60405180910390f35b34801561032b57600080fd5b506103346108d2565b6040516103169190612c38565b34801561034d57600080fd5b506103566108e1565b6040516103169190612cd4565b34801561036f57600080fd5b5061033461037e366004612acf565b610973565b34801561038f57600080fd5b506103a361039e3660046128f4565b6109bf565b005b3480156103b157600080fd5b506103a36103c0366004612aad565b610a58565b3480156103d157600080fd5b506103da610a8c565b6040516103169190612cad565b3480156103f357600080fd5b506103a3610402366004612acf565b610a92565b34801561041357600080fd5b506103a3610422366004612817565b610ad6565b34801561043357600080fd5b50610334610ae1565b34801561044857600080fd5b506103da6104573660046128f4565b610af0565b34801561046857600080fd5b506103da610bec565b34801561047d57600080fd5b506103a3610bf2565b6103a3610c2d565b34801561049a57600080fd5b506103a36104a9366004612817565b610cdd565b3480156104ba57600080fd5b506103da610cf8565b3480156104cf57600080fd5b506103a36104de366004612a37565b610cfe565b3480156104ef57600080fd5b506103da6104fe366004612acf565b610d31565b34801561050f57600080fd5b50610309610d5d565b34801561052457600080fd5b50610309610d6d565b6103a361053b3660046129c4565b610d7c565b34801561054c57600080fd5b5061033461055b366004612acf565b610ec1565b34801561056c57600080fd5b50610356610ed3565b34801561058157600080fd5b506103a3610590366004612acf565b610f61565b3480156105a157600080fd5b506103da6105b03660046127cb565b610fa5565b3480156105c157600080fd5b506103a3610ff2565b6103a36105d83660046129c4565b61103d565b3480156105e957600080fd5b506103da611101565b3480156105fe57600080fd5b50610356611107565b34801561061357600080fd5b506103da611114565b34801561062857600080fd5b506103a3610637366004612acf565b61111a565b34801561064857600080fd5b50610334611208565b34801561065d57600080fd5b506103da611217565b34801561067257600080fd5b5061035661121d565b34801561068757600080fd5b506103a36106963660046128cb565b61122c565b3480156106a757600080fd5b506103a36106b6366004612852565b6112fa565b3480156106c757600080fd5b506103a36106d63660046127cb565b611333565b6103a36106e9366004612acf565b6113cf565b3480156106fa57600080fd5b506103a36107093660046127cb565b6114c9565b34801561071a57600080fd5b50610356610729366004612acf565b611561565b34801561073a57600080fd5b506103da61163c565b34801561074f57600080fd5b506103da611642565b34801561076457600080fd5b506103a361077336600461291d565b611648565b34801561078457600080fd5b506103a36107933660046127cb565b6116e4565b3480156107a457600080fd5b506103a36107b33660046127cb565b611745565b3480156107c457600080fd5b506103da611783565b3480156107d957600080fd5b506103096107e83660046127e5565b611789565b3480156107f957600080fd5b506103a36108083660046127cb565b6117b7565b34801561081957600080fd5b50610822611825565b604051610316919061369c565b34801561083b57600080fd5b506103a361084a366004612a6a565b61182f565b34801561085b57600080fd5b506103a361086a366004612a37565b61187e565b60006001600160e01b031982166380ac58cd60e01b14806108a057506001600160e01b03198216635b5e139f60e01b145b806108bb57506001600160e01b0319821663780e9d6360e01b145b806108ca57506108ca826118ad565b90505b919050565b6015546001600160a01b031681565b6060600180546108f0906137af565b80601f016020809104026020016040519081016040528092919081815260200182805461091c906137af565b80156109695780601f1061093e57610100808354040283529160200191610969565b820191906000526020600020905b81548152906001019060200180831161094c57829003601f168201915b5050505050905090565b600061097e826118c6565b6109a35760405162461bcd60e51b815260040161099a906135cc565b60405180910390fd5b506000908152600560205260409020546001600160a01b031690565b60006109ca82610ec1565b9050806001600160a01b0316836001600160a01b031614156109fe5760405162461bcd60e51b815260040161099a90613346565b806001600160a01b0316610a106118cd565b6001600160a01b03161480610a2c5750610a2c816107e86118cd565b610a485760405162461bcd60e51b815260040161099a9061309b565b610a538383836118d1565b505050565b3360009081526014602052604090205460ff16610a7457600080fd5b600f805461ffff191661ffff92909216919091179055565b60005490565b610a9a6118cd565b6001600160a01b0316610aab611208565b6001600160a01b031614610ad15760405162461bcd60e51b815260040161099a90613202565b600e55565b610a5383838361192d565b6016546001600160a01b031681565b6000610afb83610fa5565b8210610b195760405162461bcd60e51b815260040161099a90612d1e565b6000610b23610a8c565b905060008060005b83811015610bcd576000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff169183019190915215610b7e57805192505b876001600160a01b0316836001600160a01b03161415610bba5786841415610bac57509350610be692505050565b83610bb6816137ea565b9450505b5080610bc5816137ea565b915050610b2b565b5060405162461bcd60e51b815260040161099a906134f8565b92915050565b60095481565b3360009081526014602052604090205460ff16610c0e57600080fd5b600f805462ff0000198116620100009182900460ff1615909102179055565b610c356118cd565b6001600160a01b0316610c46611208565b6001600160a01b031614610c6c5760405162461bcd60e51b815260040161099a90613202565b6015546040516000916001600160a01b0316904790610c8a90612c35565b60006040518083038185875af1925050503d8060008114610cc7576040519150601f19603f3d011682016040523d82523d6000602084013e610ccc565b606091505b5050905080610cda57600080fd5b50565b610a53838383604051806020016040528060008152506112fa565b60125481565b3360009081526014602052604090205460ff16610d1a57600080fd5b8051610d2d90601090602084019061265c565b5050565b6000610d3b610a8c565b8210610d595760405162461bcd60e51b815260040161099a90612e71565b5090565b600f546301000000900460ff1681565b600f5462010000900460ff1681565b600f5462010000900460ff1615610d9257600080fd5b600d54600a54610da291906136e2565b81610dab610a8c565b610db591906136e2565b1115610dd35760405162461bcd60e51b815260040161099a906134c1565b600f5461ffff16600114610df95760405162461bcd60e51b815260040161099a9061348a565b610e04838333611c41565b610e205760405162461bcd60e51b815260040161099a90612ef9565b323314610e3f5760405162461bcd60e51b815260040161099a9061365b565b3360009081526013602052604090205460ff16610e825780600e54610e64919061370e565b3414610e825760405162461bcd60e51b815260040161099a90613412565b600c5481610e8f33611cce565b610e9991906136e2565b1115610eb75760405162461bcd60e51b815260040161099a906132f7565b610a533382611d22565b6000610ecc82611d3c565b5192915050565b60118054610ee0906137af565b80601f0160208091040260200160405190810160405280929190818152602001828054610f0c906137af565b8015610f595780601f10610f2e57610100808354040283529160200191610f59565b820191906000526020600020905b815481529060010190602001808311610f3c57829003601f168201915b505050505081565b610f696118cd565b6001600160a01b0316610f7a611208565b6001600160a01b031614610fa05760405162461bcd60e51b815260040161099a90613202565b600955565b60006001600160a01b038216610fcd5760405162461bcd60e51b815260040161099a9061312f565b506001600160a01b03166000908152600460205260409020546001600160801b031690565b610ffa6118cd565b6001600160a01b031661100b611208565b6001600160a01b0316146110315760405162461bcd60e51b815260040161099a90613202565b61103b6000611e4f565b565b600f5462010000900460ff161561105357600080fd5b6009548161105f610a8c565b61106991906136e2565b11156110875760405162461bcd60e51b815260040161099a90613595565b600f5461ffff166002146110ad5760405162461bcd60e51b815260040161099a9061348a565b6110b8838333611c41565b6110d45760405162461bcd60e51b815260040161099a90612ef9565b3233146110f35760405162461bcd60e51b815260040161099a9061365b565b80600e54610e64919061370e565b600e5481565b60108054610ee0906137af565b600a5481565b6111226118cd565b6001600160a01b0316611133611208565b6001600160a01b0316146111595760405162461bcd60e51b815260040161099a90613202565b600f5462010000900460ff161561116f57600080fd5b600b5461117c9082613805565b156111995760405162461bcd60e51b815260040161099a90613015565b600d54816111a5610a8c565b6111af91906136e2565b11156111cd5760405162461bcd60e51b815260040161099a90612e27565b6000600b54826111dd91906136fa565b905060005b81811015610a53576111f633600b54611d22565b80611200816137ea565b9150506111e2565b6008546001600160a01b031690565b600b5481565b6060600280546108f0906137af565b6112346118cd565b6001600160a01b0316826001600160a01b031614156112655760405162461bcd60e51b815260040161099a90613237565b80600660006112726118cd565b6001600160a01b03908116825260208083019390935260409182016000908120918716808252919093529120805460ff1916921515929092179091556112b66118cd565b6001600160a01b03167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516112ee9190612ca2565b60405180910390a35050565b61130584848461192d565b61131184848484611ea1565b61132d5760405162461bcd60e51b815260040161099a90613388565b50505050565b61133b6118cd565b6001600160a01b031661134c611208565b6001600160a01b0316146113725760405162461bcd60e51b815260040161099a90613202565b6001600160a01b03811660009081526014602052604090205460ff16156113ab5760405162461bcd60e51b815260040161099a906130f8565b6001600160a01b03166000908152601460205260409020805460ff19166001179055565b600f5462010000900460ff16156113e557600080fd5b600954816113f1610a8c565b6113fb91906136e2565b11156114195760405162461bcd60e51b815260040161099a90613595565b600f5461ffff1660031461143f5760405162461bcd60e51b815260040161099a9061305a565b32331461145e5760405162461bcd60e51b815260040161099a9061365b565b80600e5461146c919061370e565b341461148a5760405162461bcd60e51b815260040161099a90613412565b600b548161149733611cce565b6114a191906136e2565b11156114bf5760405162461bcd60e51b815260040161099a90612f81565b610cda3382611d22565b6114d16118cd565b6001600160a01b03166114e2611208565b6001600160a01b0316146115085760405162461bcd60e51b815260040161099a90613202565b6001600160a01b03811660009081526014602052604090205460ff166115405760405162461bcd60e51b815260040161099a906132c0565b6001600160a01b03166000908152601460205260409020805460ff19169055565b600f546060906301000000900460ff16156115aa57601061158183611fbd565b60125460405160200161159693929190612b2f565b6040516020818303038152906040526108ca565b601080546115b7906137af565b80601f01602080910402602001604051908101604052809291908181526020018280546115e3906137af565b80156116305780601f1061160557610100808354040283529160200191611630565b820191906000526020600020905b81548152906001019060200180831161161357829003601f168201915b50505050509050919050565b600c5481565b600d5481565b3360009081526014602052604090205460ff1661166457600080fd5b60005b81811015610a535760016013600085858581811061169557634e487b7160e01b600052603260045260246000fd5b90506020020160208101906116aa91906127cb565b6001600160a01b031681526020810191909152604001600020805460ff1916911515919091179055806116dc816137ea565b915050611667565b6116ec6118cd565b6001600160a01b03166116fd611208565b6001600160a01b0316146117235760405162461bcd60e51b815260040161099a90613202565b601580546001600160a01b0319166001600160a01b0392909216919091179055565b3360009081526014602052604090205460ff1661176157600080fd5b601680546001600160a01b0319166001600160a01b0392909216919091179055565b60075481565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b6117bf6118cd565b6001600160a01b03166117d0611208565b6001600160a01b0316146117f65760405162461bcd60e51b815260040161099a90613202565b6001600160a01b03811661181c5760405162461bcd60e51b815260040161099a90612d97565b610cda81611e4f565b600f5461ffff1681565b3360009081526014602052604090205460ff1661184b57600080fd5b815161185e90601090602085019061265c565b50600f805491151563010000000263ff0000001990921691909117905550565b3360009081526014602052604090205460ff1661189a57600080fd5b8051610d2d90601190602084019061265c565b6001600160e01b031981166301ffc9a760e01b14919050565b6000541190565b3390565b60008281526005602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b600061193882611d3c565b9050600081600001516001600160a01b03166119526118cd565b6001600160a01b03161480611987575061196a6118cd565b6001600160a01b031661197c84610973565b6001600160a01b0316145b8061199b5750815161199b906107e86118cd565b9050806119ba5760405162461bcd60e51b815260040161099a9061326e565b846001600160a01b031682600001516001600160a01b0316146119ef5760405162461bcd60e51b815260040161099a906131bc565b6001600160a01b038416611a155760405162461bcd60e51b815260040161099a90612eb4565b611a22858585600161132d565b611a3260008484600001516118d1565b6001600160a01b0385166000908152600460205260408120805460019290611a649084906001600160801b031661372d565b82546101009290920a6001600160801b038181021990931691831602179091556001600160a01b03861660009081526004602052604081208054600194509092611ab0918591166136b7565b82546001600160801b039182166101009390930a9283029190920219909116179055506040805180820182526001600160a01b03808716825267ffffffffffffffff428116602080850191825260008981526003909152948520935184549151909216600160a01b0267ffffffffffffffff60a01b19929093166001600160a01b03199091161716179055611b468460016136e2565b6000818152600360205260409020549091506001600160a01b0316611beb57611b6e816118c6565b15611beb5760408051808201825284516001600160a01b03908116825260208087015167ffffffffffffffff90811682850190815260008781526003909352949091209251835494516001600160a01b031990951692169190911767ffffffffffffffff60a01b1916600160a01b93909116929092029190911790555b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611c39868686600161132d565b505050505050565b601654604080516020601f86018190048102820181019092528481526000926001600160a01b031691611cbc9190879087908190840183828082843760009201919091525050600954604051611cb69350611ca29250889190602001612c89565b6040516020818303038152906040526120d8565b90612113565b6001600160a01b031614949350505050565b60006001600160a01b038216611cf65760405162461bcd60e51b815260040161099a90612f30565b506001600160a01b0316600090815260046020526040902054600160801b90046001600160801b031690565b610d2d828260405180602001604052806000815250612137565b611d446126dc565b611d4d826118c6565b611d695760405162461bcd60e51b815260040161099a90612ddd565b60007f00000000000000000000000000000000000000000000000000000000000000008310611dca57611dbc7f000000000000000000000000000000000000000000000000000000000000000084613755565b611dc79060016136e2565b90505b825b818110611e36576000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff169183019190915215611e235792506108cd915050565b5080611e2e81613798565b915050611dcc565b5060405162461bcd60e51b815260040161099a90613546565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6000611eb5846001600160a01b03166123aa565b15611fb157836001600160a01b031663150b7a02611ed16118cd565b8786866040518563ffffffff1660e01b8152600401611ef39493929190612c4c565b602060405180830381600087803b158015611f0d57600080fd5b505af1925050508015611f3d575060408051601f3d908101601f19168201909252611f3a918101906129a8565b60015b611f97573d808015611f6b576040519150601f19603f3d011682016040523d82523d6000602084013e611f70565b606091505b508051611f8f5760405162461bcd60e51b815260040161099a90613388565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611fb5565b5060015b949350505050565b606081611fe257506040805180820190915260018152600360fc1b60208201526108cd565b8160005b811561200c5780611ff6816137ea565b91506120059050600a836136fa565b9150611fe6565b60008167ffffffffffffffff81111561203557634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f19166020018201604052801561205f576020820181803683370190505b5090505b8415611fb557612074600183613755565b9150612081600a86613805565b61208c9060306136e2565b60f81b8183815181106120af57634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a9053506120d1600a866136fa565b9450612063565b60006120e48251611fbd565b826040516020016120f6929190612bda565b604051602081830303815290604052805190602001209050919050565b600080600061212285856123b0565b9150915061212f81612420565b509392505050565b6000546001600160a01b0384166121605760405162461bcd60e51b815260040161099a90613449565b612169816118c6565b156121865760405162461bcd60e51b815260040161099a906133db565b7f00000000000000000000000000000000000000000000000000000000000000008311156121c65760405162461bcd60e51b815260040161099a90613619565b6121d3600085838661132d565b6001600160a01b0384166000908152600460209081526040918290208251808401845290546001600160801b038082168352600160801b909104169181019190915281518083019092528051909190819061222f9087906136b7565b6001600160801b0316815260200185836020015161224d91906136b7565b6001600160801b039081169091526001600160a01b03808816600081815260046020908152604080832087518154988401518816600160801b029088166fffffffffffffffffffffffffffffffff1990991698909817909616969096179094558451808601865291825267ffffffffffffffff4281168386019081528883526003909552948120915182549451909516600160a01b0267ffffffffffffffff60a01b19959093166001600160a01b031990941693909317939093161790915582905b858110156123985760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a461235c6000888488611ea1565b6123785760405162461bcd60e51b815260040161099a90613388565b81612382816137ea565b9250508080612390906137ea565b91505061230f565b506000818155611c399087858861132d565b3b151590565b6000808251604114156123e75760208301516040840151606085015160001a6123db8782858561254d565b94509450505050612419565b825160401415612411576020830151604084015161240686838361262d565b935093505050612419565b506000905060025b9250929050565b600081600481111561244257634e487b7160e01b600052602160045260246000fd5b141561244d57610cda565b600181600481111561246f57634e487b7160e01b600052602160045260246000fd5b141561248d5760405162461bcd60e51b815260040161099a90612ce7565b60028160048111156124af57634e487b7160e01b600052602160045260246000fd5b14156124cd5760405162461bcd60e51b815260040161099a90612d60565b60038160048111156124ef57634e487b7160e01b600052602160045260246000fd5b141561250d5760405162461bcd60e51b815260040161099a90612fd3565b600481600481111561252f57634e487b7160e01b600052602160045260246000fd5b1415610cda5760405162461bcd60e51b815260040161099a9061317a565b6000807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a08311156125845750600090506003612624565b8460ff16601b1415801561259c57508460ff16601c14155b156125ad5750600090506004612624565b6000600187878787604051600081526020016040526040516125d29493929190612cb6565b6020604051602081039080840390855afa1580156125f4573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b03811661261d57600060019250925050612624565b9150600090505b94509492505050565b6000806001600160ff1b03831660ff84901c601b0161264e8782888561254d565b935093505050935093915050565b828054612668906137af565b90600052602060002090601f01602090048101928261268a57600085556126d0565b82601f106126a357805160ff19168380011785556126d0565b828001600101855582156126d0579182015b828111156126d05782518255916020019190600101906126b5565b50610d599291506126f3565b604080518082019091526000808252602082015290565b5b80821115610d5957600081556001016126f4565b600067ffffffffffffffff8084111561272357612723613845565b604051601f8501601f19908116603f0116810190828211818310171561274b5761274b613845565b8160405280935085815286868601111561276457600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b03811681146108cd57600080fd5b803580151581146108cd57600080fd5b600082601f8301126127b5578081fd5b6127c483833560208501612708565b9392505050565b6000602082840312156127dc578081fd5b6127c48261277e565b600080604083850312156127f7578081fd5b6128008361277e565b915061280e6020840161277e565b90509250929050565b60008060006060848603121561282b578081fd5b6128348461277e565b92506128426020850161277e565b9150604084013590509250925092565b60008060008060808587031215612867578081fd5b6128708561277e565b935061287e6020860161277e565b925060408501359150606085013567ffffffffffffffff8111156128a0578182fd5b8501601f810187136128b0578182fd5b6128bf87823560208401612708565b91505092959194509250565b600080604083850312156128dd578182fd5b6128e68361277e565b915061280e60208401612795565b60008060408385031215612906578182fd5b61290f8361277e565b946020939093013593505050565b6000806020838503121561292f578182fd5b823567ffffffffffffffff80821115612946578384fd5b818501915085601f830112612959578384fd5b813581811115612967578485fd5b866020808302850101111561297a578485fd5b60209290920196919550909350505050565b60006020828403121561299d578081fd5b81356127c48161385b565b6000602082840312156129b9578081fd5b81516127c48161385b565b6000806000604084860312156129d8578283fd5b833567ffffffffffffffff808211156129ef578485fd5b818601915086601f830112612a02578485fd5b813581811115612a10578586fd5b876020828501011115612a21578586fd5b6020928301989097509590910135949350505050565b600060208284031215612a48578081fd5b813567ffffffffffffffff811115612a5e578182fd5b611fb5848285016127a5565b60008060408385031215612a7c578182fd5b823567ffffffffffffffff811115612a92578283fd5b612a9e858286016127a5565b92505061280e60208401612795565b600060208284031215612abe578081fd5b813561ffff811681146127c4578182fd5b600060208284031215612ae0578081fd5b5035919050565b60008151808452612aff81602086016020860161376c565b601f01601f19169290920160200192915050565b60008151612b2581856020860161376c565b9290920192915050565b8354600090819060028104600180831680612b4b57607f831692505b6020808410821415612b6b57634e487b7160e01b87526022600452602487fd5b818015612b7f5760018114612b9057612bbc565b60ff19861689528489019650612bbc565b612b998c6136ab565b885b86811015612bb45781548b820152908501908301612b9b565b505084890196505b50612bc7868b612b13565b9889529097019998505050505050505050565b60007f19457468657265756d205369676e6564204d6573736167653a0a00000000000082528351612c1281601a85016020880161376c565b835190830190612c2981601a84016020880161376c565b01601a01949350505050565b90565b6001600160a01b0391909116815260200190565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612c7f90830184612ae7565b9695505050505050565b6001600160a01b03929092168252602082015260400190565b901515815260200190565b90815260200190565b93845260ff9290921660208401526040830152606082015260800190565b6000602082526127c46020830184612ae7565b60208082526018908201527f45434453413a20696e76616c6964207369676e61747572650000000000000000604082015260600190565b60208082526022908201527f455243373231413a206f776e657220696e646578206f7574206f6620626f756e604082015261647360f01b606082015260800190565b6020808252601f908201527f45434453413a20696e76616c6964207369676e6174757265206c656e67746800604082015260600190565b60208082526026908201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160408201526564647265737360d01b606082015260800190565b6020808252602a908201527f455243373231413a206f776e657220717565727920666f72206e6f6e657869736040820152693a32b73a103a37b5b2b760b11b606082015260800190565b6020808252602a908201527f5175616e746974792065786365656473206e756d626572206f6620726573657260408201526976656420746f6b656e7360b01b606082015260800190565b60208082526023908201527f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f756040820152626e647360e81b606082015260800190565b60208082526025908201527f455243373231413a207472616e7366657220746f20746865207a65726f206164604082015264647265737360d81b606082015260800190565b6020808252601a908201527f41646472657373206973206e6f742077686974656c6973746564000000000000604082015260600190565b60208082526031908201527f455243373231413a206e756d626572206d696e74656420717565727920666f7260408201527020746865207a65726f206164647265737360781b606082015260800190565b60208082526032908201527f41646472657373206973206e6f7420616c6c6f77656420746f206d696e74206d6040820152710dee4ca40e8d0c2dc409a82b0be8482a886960731b606082015260800190565b60208082526022908201527f45434453413a20696e76616c6964207369676e6174757265202773272076616c604082015261756560f01b606082015260800190565b60208082526025908201527f43616e206f6e6c79206d696e742061206d756c7469706c65206f66204d41585f60408201526408482a886960db1b606082015260800190565b60208082526021908201527f5075626c69632073616c652069732063757272656e746c7920696e61637469766040820152606560f81b606082015260800190565b60208082526039908201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60408201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000606082015260800190565b60208082526018908201527f446576656c6f70657220616c7265616479206578697374730000000000000000604082015260600190565b6020808252602b908201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60408201526a65726f206164647265737360a81b606082015260800190565b60208082526022908201527f45434453413a20696e76616c6964207369676e6174757265202776272076616c604082015261756560f01b606082015260800190565b60208082526026908201527f455243373231413a207472616e736665722066726f6d20696e636f72726563746040820152651037bbb732b960d11b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b6020808252601a908201527f455243373231413a20617070726f766520746f2063616c6c6572000000000000604082015260600190565b60208082526032908201527f455243373231413a207472616e736665722063616c6c6572206973206e6f74206040820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b606082015260800190565b60208082526017908201527f446576656c6f70657220646f65736e2774206578697374000000000000000000604082015260600190565b6020808252602f908201527f41646472657373206973206e6f7420616c6c6f77656420746f206d696e74206d60408201526e1bdc99481d1a185b8813505617d5d3608a1b606082015260800190565b60208082526022908201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60408201526132b960f11b606082015260800190565b60208082526033908201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260408201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b606082015260800190565b6020808252601d908201527f455243373231413a20746f6b656e20616c7265616479206d696e746564000000604082015260600190565b60208082526019908201527f496e636f727265637420616d6f756e74206f6620657468657200000000000000604082015260600190565b60208082526021908201527f455243373231413a206d696e7420746f20746865207a65726f206164647265736040820152607360f81b606082015260800190565b6020808252601d908201527f50726573616c652069732063757272656e746c7920696e616374697665000000604082015260600190565b6020808252601e908201527f416c6c204f4720746f6b656e732068617665206265656e206d696e7465640000604082015260600190565b6020808252602e908201527f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060408201526d0deeedccae440c4f240d2dcc8caf60931b606082015260800190565b6020808252602f908201527f455243373231413a20756e61626c6520746f2064657465726d696e652074686560408201526e1037bbb732b91037b3103a37b5b2b760891b606082015260800190565b6020808252601b908201527f416c6c20746f6b656e732068617665206265656e206d696e7465640000000000604082015260600190565b6020808252602d908201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560408201526c3c34b9ba32b73a103a37b5b2b760991b606082015260800190565b60208082526022908201527f455243373231413a207175616e7469747920746f206d696e7420746f6f2068696040820152610ced60f31b606082015260800190565b60208082526021908201527f436f6e74726163747320617265206e6f7420616c6c6f77656420746f206d696e6040820152601d60fa1b606082015260800190565b61ffff91909116815260200190565b60009081526020902090565b60006001600160801b038083168185168083038211156136d9576136d9613819565b01949350505050565b600082198211156136f5576136f5613819565b500190565b6000826137095761370961382f565b500490565b600081600019048311821515161561372857613728613819565b500290565b60006001600160801b038381169083168181101561374d5761374d613819565b039392505050565b60008282101561376757613767613819565b500390565b60005b8381101561378757818101518382015260200161376f565b8381111561132d5750506000910152565b6000816137a7576137a7613819565b506000190190565b6002810460018216806137c357607f821691505b602082108114156137e457634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156137fe576137fe613819565b5060010190565b6000826138145761381461382f565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610cda57600080fdfea264697066735822122040450e6bfc1445fb8e46d7d324ac82d59004021e32610f159f370a7586c8723964736f6c63430008010033

Deployed Bytecode

0x6080604052600436106102e45760003560e01c8063715018a611610190578063c4026d7b116100dc578063d701dbee11610095578063f2fde38b1161006f578063f2fde38b146107ed578063f5e1713e1461080d578063faaaf6531461082f578063ffe630b51461084f576102e4565b8063d701dbee14610798578063d7224ba0146107b8578063e985e9c5146107cd576102e4565b8063c4026d7b146106ee578063c87b56dd1461070e578063c91d5f971461072e578063ce2a86f014610743578063d31a221614610758578063d51eeafd14610778576102e4565b80638da5cb5b11610149578063a22cb46511610123578063a22cb4651461067b578063b88d4fde1461069b578063b91d3ace146106bb578063c1d9df8d146106db576102e4565b80638da5cb5b1461063c578063950bff9f1461065157806395d89b4114610666576102e4565b8063715018a6146105b557806377cfe82b146105ca5780637f205a74146105dd5780637f78636a146105f2578063814a4c1e146106075780638ad433ac1461061c576102e4565b806336566f061161024f57806351830227116102085780636352211e116101e25780636352211e146105405780636373a6b1146105605780636f8b44b01461057557806370a0823114610595576102e4565b806351830227146105035780635c975abb14610518578063607019b91461052d576102e4565b806336566f06146104715780633ccfd60b1461048657806342842e0e1461048e57806346f13619146104ae57806349f2553a146104c35780634f6ccce7146104e3576102e4565b806318160ddd116102a157806318160ddd146103c55780631919fed7146103e757806323b872dd14610407578063283d26ca146104275780632f745c591461043c57806332cb6b0c1461045c576102e4565b806301ffc9a7146102e9578063062fa1f81461031f57806306fdde0314610341578063081812fc14610363578063095ea7b3146103835780631438ddee146103a5575b600080fd5b3480156102f557600080fd5b5061030961030436600461298c565b61086f565b6040516103169190612ca2565b60405180910390f35b34801561032b57600080fd5b506103346108d2565b6040516103169190612c38565b34801561034d57600080fd5b506103566108e1565b6040516103169190612cd4565b34801561036f57600080fd5b5061033461037e366004612acf565b610973565b34801561038f57600080fd5b506103a361039e3660046128f4565b6109bf565b005b3480156103b157600080fd5b506103a36103c0366004612aad565b610a58565b3480156103d157600080fd5b506103da610a8c565b6040516103169190612cad565b3480156103f357600080fd5b506103a3610402366004612acf565b610a92565b34801561041357600080fd5b506103a3610422366004612817565b610ad6565b34801561043357600080fd5b50610334610ae1565b34801561044857600080fd5b506103da6104573660046128f4565b610af0565b34801561046857600080fd5b506103da610bec565b34801561047d57600080fd5b506103a3610bf2565b6103a3610c2d565b34801561049a57600080fd5b506103a36104a9366004612817565b610cdd565b3480156104ba57600080fd5b506103da610cf8565b3480156104cf57600080fd5b506103a36104de366004612a37565b610cfe565b3480156104ef57600080fd5b506103da6104fe366004612acf565b610d31565b34801561050f57600080fd5b50610309610d5d565b34801561052457600080fd5b50610309610d6d565b6103a361053b3660046129c4565b610d7c565b34801561054c57600080fd5b5061033461055b366004612acf565b610ec1565b34801561056c57600080fd5b50610356610ed3565b34801561058157600080fd5b506103a3610590366004612acf565b610f61565b3480156105a157600080fd5b506103da6105b03660046127cb565b610fa5565b3480156105c157600080fd5b506103a3610ff2565b6103a36105d83660046129c4565b61103d565b3480156105e957600080fd5b506103da611101565b3480156105fe57600080fd5b50610356611107565b34801561061357600080fd5b506103da611114565b34801561062857600080fd5b506103a3610637366004612acf565b61111a565b34801561064857600080fd5b50610334611208565b34801561065d57600080fd5b506103da611217565b34801561067257600080fd5b5061035661121d565b34801561068757600080fd5b506103a36106963660046128cb565b61122c565b3480156106a757600080fd5b506103a36106b6366004612852565b6112fa565b3480156106c757600080fd5b506103a36106d63660046127cb565b611333565b6103a36106e9366004612acf565b6113cf565b3480156106fa57600080fd5b506103a36107093660046127cb565b6114c9565b34801561071a57600080fd5b50610356610729366004612acf565b611561565b34801561073a57600080fd5b506103da61163c565b34801561074f57600080fd5b506103da611642565b34801561076457600080fd5b506103a361077336600461291d565b611648565b34801561078457600080fd5b506103a36107933660046127cb565b6116e4565b3480156107a457600080fd5b506103a36107b33660046127cb565b611745565b3480156107c457600080fd5b506103da611783565b3480156107d957600080fd5b506103096107e83660046127e5565b611789565b3480156107f957600080fd5b506103a36108083660046127cb565b6117b7565b34801561081957600080fd5b50610822611825565b604051610316919061369c565b34801561083b57600080fd5b506103a361084a366004612a6a565b61182f565b34801561085b57600080fd5b506103a361086a366004612a37565b61187e565b60006001600160e01b031982166380ac58cd60e01b14806108a057506001600160e01b03198216635b5e139f60e01b145b806108bb57506001600160e01b0319821663780e9d6360e01b145b806108ca57506108ca826118ad565b90505b919050565b6015546001600160a01b031681565b6060600180546108f0906137af565b80601f016020809104026020016040519081016040528092919081815260200182805461091c906137af565b80156109695780601f1061093e57610100808354040283529160200191610969565b820191906000526020600020905b81548152906001019060200180831161094c57829003601f168201915b5050505050905090565b600061097e826118c6565b6109a35760405162461bcd60e51b815260040161099a906135cc565b60405180910390fd5b506000908152600560205260409020546001600160a01b031690565b60006109ca82610ec1565b9050806001600160a01b0316836001600160a01b031614156109fe5760405162461bcd60e51b815260040161099a90613346565b806001600160a01b0316610a106118cd565b6001600160a01b03161480610a2c5750610a2c816107e86118cd565b610a485760405162461bcd60e51b815260040161099a9061309b565b610a538383836118d1565b505050565b3360009081526014602052604090205460ff16610a7457600080fd5b600f805461ffff191661ffff92909216919091179055565b60005490565b610a9a6118cd565b6001600160a01b0316610aab611208565b6001600160a01b031614610ad15760405162461bcd60e51b815260040161099a90613202565b600e55565b610a5383838361192d565b6016546001600160a01b031681565b6000610afb83610fa5565b8210610b195760405162461bcd60e51b815260040161099a90612d1e565b6000610b23610a8c565b905060008060005b83811015610bcd576000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff169183019190915215610b7e57805192505b876001600160a01b0316836001600160a01b03161415610bba5786841415610bac57509350610be692505050565b83610bb6816137ea565b9450505b5080610bc5816137ea565b915050610b2b565b5060405162461bcd60e51b815260040161099a906134f8565b92915050565b60095481565b3360009081526014602052604090205460ff16610c0e57600080fd5b600f805462ff0000198116620100009182900460ff1615909102179055565b610c356118cd565b6001600160a01b0316610c46611208565b6001600160a01b031614610c6c5760405162461bcd60e51b815260040161099a90613202565b6015546040516000916001600160a01b0316904790610c8a90612c35565b60006040518083038185875af1925050503d8060008114610cc7576040519150601f19603f3d011682016040523d82523d6000602084013e610ccc565b606091505b5050905080610cda57600080fd5b50565b610a53838383604051806020016040528060008152506112fa565b60125481565b3360009081526014602052604090205460ff16610d1a57600080fd5b8051610d2d90601090602084019061265c565b5050565b6000610d3b610a8c565b8210610d595760405162461bcd60e51b815260040161099a90612e71565b5090565b600f546301000000900460ff1681565b600f5462010000900460ff1681565b600f5462010000900460ff1615610d9257600080fd5b600d54600a54610da291906136e2565b81610dab610a8c565b610db591906136e2565b1115610dd35760405162461bcd60e51b815260040161099a906134c1565b600f5461ffff16600114610df95760405162461bcd60e51b815260040161099a9061348a565b610e04838333611c41565b610e205760405162461bcd60e51b815260040161099a90612ef9565b323314610e3f5760405162461bcd60e51b815260040161099a9061365b565b3360009081526013602052604090205460ff16610e825780600e54610e64919061370e565b3414610e825760405162461bcd60e51b815260040161099a90613412565b600c5481610e8f33611cce565b610e9991906136e2565b1115610eb75760405162461bcd60e51b815260040161099a906132f7565b610a533382611d22565b6000610ecc82611d3c565b5192915050565b60118054610ee0906137af565b80601f0160208091040260200160405190810160405280929190818152602001828054610f0c906137af565b8015610f595780601f10610f2e57610100808354040283529160200191610f59565b820191906000526020600020905b815481529060010190602001808311610f3c57829003601f168201915b505050505081565b610f696118cd565b6001600160a01b0316610f7a611208565b6001600160a01b031614610fa05760405162461bcd60e51b815260040161099a90613202565b600955565b60006001600160a01b038216610fcd5760405162461bcd60e51b815260040161099a9061312f565b506001600160a01b03166000908152600460205260409020546001600160801b031690565b610ffa6118cd565b6001600160a01b031661100b611208565b6001600160a01b0316146110315760405162461bcd60e51b815260040161099a90613202565b61103b6000611e4f565b565b600f5462010000900460ff161561105357600080fd5b6009548161105f610a8c565b61106991906136e2565b11156110875760405162461bcd60e51b815260040161099a90613595565b600f5461ffff166002146110ad5760405162461bcd60e51b815260040161099a9061348a565b6110b8838333611c41565b6110d45760405162461bcd60e51b815260040161099a90612ef9565b3233146110f35760405162461bcd60e51b815260040161099a9061365b565b80600e54610e64919061370e565b600e5481565b60108054610ee0906137af565b600a5481565b6111226118cd565b6001600160a01b0316611133611208565b6001600160a01b0316146111595760405162461bcd60e51b815260040161099a90613202565b600f5462010000900460ff161561116f57600080fd5b600b5461117c9082613805565b156111995760405162461bcd60e51b815260040161099a90613015565b600d54816111a5610a8c565b6111af91906136e2565b11156111cd5760405162461bcd60e51b815260040161099a90612e27565b6000600b54826111dd91906136fa565b905060005b81811015610a53576111f633600b54611d22565b80611200816137ea565b9150506111e2565b6008546001600160a01b031690565b600b5481565b6060600280546108f0906137af565b6112346118cd565b6001600160a01b0316826001600160a01b031614156112655760405162461bcd60e51b815260040161099a90613237565b80600660006112726118cd565b6001600160a01b03908116825260208083019390935260409182016000908120918716808252919093529120805460ff1916921515929092179091556112b66118cd565b6001600160a01b03167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516112ee9190612ca2565b60405180910390a35050565b61130584848461192d565b61131184848484611ea1565b61132d5760405162461bcd60e51b815260040161099a90613388565b50505050565b61133b6118cd565b6001600160a01b031661134c611208565b6001600160a01b0316146113725760405162461bcd60e51b815260040161099a90613202565b6001600160a01b03811660009081526014602052604090205460ff16156113ab5760405162461bcd60e51b815260040161099a906130f8565b6001600160a01b03166000908152601460205260409020805460ff19166001179055565b600f5462010000900460ff16156113e557600080fd5b600954816113f1610a8c565b6113fb91906136e2565b11156114195760405162461bcd60e51b815260040161099a90613595565b600f5461ffff1660031461143f5760405162461bcd60e51b815260040161099a9061305a565b32331461145e5760405162461bcd60e51b815260040161099a9061365b565b80600e5461146c919061370e565b341461148a5760405162461bcd60e51b815260040161099a90613412565b600b548161149733611cce565b6114a191906136e2565b11156114bf5760405162461bcd60e51b815260040161099a90612f81565b610cda3382611d22565b6114d16118cd565b6001600160a01b03166114e2611208565b6001600160a01b0316146115085760405162461bcd60e51b815260040161099a90613202565b6001600160a01b03811660009081526014602052604090205460ff166115405760405162461bcd60e51b815260040161099a906132c0565b6001600160a01b03166000908152601460205260409020805460ff19169055565b600f546060906301000000900460ff16156115aa57601061158183611fbd565b60125460405160200161159693929190612b2f565b6040516020818303038152906040526108ca565b601080546115b7906137af565b80601f01602080910402602001604051908101604052809291908181526020018280546115e3906137af565b80156116305780601f1061160557610100808354040283529160200191611630565b820191906000526020600020905b81548152906001019060200180831161161357829003601f168201915b50505050509050919050565b600c5481565b600d5481565b3360009081526014602052604090205460ff1661166457600080fd5b60005b81811015610a535760016013600085858581811061169557634e487b7160e01b600052603260045260246000fd5b90506020020160208101906116aa91906127cb565b6001600160a01b031681526020810191909152604001600020805460ff1916911515919091179055806116dc816137ea565b915050611667565b6116ec6118cd565b6001600160a01b03166116fd611208565b6001600160a01b0316146117235760405162461bcd60e51b815260040161099a90613202565b601580546001600160a01b0319166001600160a01b0392909216919091179055565b3360009081526014602052604090205460ff1661176157600080fd5b601680546001600160a01b0319166001600160a01b0392909216919091179055565b60075481565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b6117bf6118cd565b6001600160a01b03166117d0611208565b6001600160a01b0316146117f65760405162461bcd60e51b815260040161099a90613202565b6001600160a01b03811661181c5760405162461bcd60e51b815260040161099a90612d97565b610cda81611e4f565b600f5461ffff1681565b3360009081526014602052604090205460ff1661184b57600080fd5b815161185e90601090602085019061265c565b50600f805491151563010000000263ff0000001990921691909117905550565b3360009081526014602052604090205460ff1661189a57600080fd5b8051610d2d90601190602084019061265c565b6001600160e01b031981166301ffc9a760e01b14919050565b6000541190565b3390565b60008281526005602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b600061193882611d3c565b9050600081600001516001600160a01b03166119526118cd565b6001600160a01b03161480611987575061196a6118cd565b6001600160a01b031661197c84610973565b6001600160a01b0316145b8061199b5750815161199b906107e86118cd565b9050806119ba5760405162461bcd60e51b815260040161099a9061326e565b846001600160a01b031682600001516001600160a01b0316146119ef5760405162461bcd60e51b815260040161099a906131bc565b6001600160a01b038416611a155760405162461bcd60e51b815260040161099a90612eb4565b611a22858585600161132d565b611a3260008484600001516118d1565b6001600160a01b0385166000908152600460205260408120805460019290611a649084906001600160801b031661372d565b82546101009290920a6001600160801b038181021990931691831602179091556001600160a01b03861660009081526004602052604081208054600194509092611ab0918591166136b7565b82546001600160801b039182166101009390930a9283029190920219909116179055506040805180820182526001600160a01b03808716825267ffffffffffffffff428116602080850191825260008981526003909152948520935184549151909216600160a01b0267ffffffffffffffff60a01b19929093166001600160a01b03199091161716179055611b468460016136e2565b6000818152600360205260409020549091506001600160a01b0316611beb57611b6e816118c6565b15611beb5760408051808201825284516001600160a01b03908116825260208087015167ffffffffffffffff90811682850190815260008781526003909352949091209251835494516001600160a01b031990951692169190911767ffffffffffffffff60a01b1916600160a01b93909116929092029190911790555b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611c39868686600161132d565b505050505050565b601654604080516020601f86018190048102820181019092528481526000926001600160a01b031691611cbc9190879087908190840183828082843760009201919091525050600954604051611cb69350611ca29250889190602001612c89565b6040516020818303038152906040526120d8565b90612113565b6001600160a01b031614949350505050565b60006001600160a01b038216611cf65760405162461bcd60e51b815260040161099a90612f30565b506001600160a01b0316600090815260046020526040902054600160801b90046001600160801b031690565b610d2d828260405180602001604052806000815250612137565b611d446126dc565b611d4d826118c6565b611d695760405162461bcd60e51b815260040161099a90612ddd565b60007f00000000000000000000000000000000000000000000000000000000000000058310611dca57611dbc7f000000000000000000000000000000000000000000000000000000000000000584613755565b611dc79060016136e2565b90505b825b818110611e36576000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff169183019190915215611e235792506108cd915050565b5080611e2e81613798565b915050611dcc565b5060405162461bcd60e51b815260040161099a90613546565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6000611eb5846001600160a01b03166123aa565b15611fb157836001600160a01b031663150b7a02611ed16118cd565b8786866040518563ffffffff1660e01b8152600401611ef39493929190612c4c565b602060405180830381600087803b158015611f0d57600080fd5b505af1925050508015611f3d575060408051601f3d908101601f19168201909252611f3a918101906129a8565b60015b611f97573d808015611f6b576040519150601f19603f3d011682016040523d82523d6000602084013e611f70565b606091505b508051611f8f5760405162461bcd60e51b815260040161099a90613388565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611fb5565b5060015b949350505050565b606081611fe257506040805180820190915260018152600360fc1b60208201526108cd565b8160005b811561200c5780611ff6816137ea565b91506120059050600a836136fa565b9150611fe6565b60008167ffffffffffffffff81111561203557634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f19166020018201604052801561205f576020820181803683370190505b5090505b8415611fb557612074600183613755565b9150612081600a86613805565b61208c9060306136e2565b60f81b8183815181106120af57634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a9053506120d1600a866136fa565b9450612063565b60006120e48251611fbd565b826040516020016120f6929190612bda565b604051602081830303815290604052805190602001209050919050565b600080600061212285856123b0565b9150915061212f81612420565b509392505050565b6000546001600160a01b0384166121605760405162461bcd60e51b815260040161099a90613449565b612169816118c6565b156121865760405162461bcd60e51b815260040161099a906133db565b7f00000000000000000000000000000000000000000000000000000000000000058311156121c65760405162461bcd60e51b815260040161099a90613619565b6121d3600085838661132d565b6001600160a01b0384166000908152600460209081526040918290208251808401845290546001600160801b038082168352600160801b909104169181019190915281518083019092528051909190819061222f9087906136b7565b6001600160801b0316815260200185836020015161224d91906136b7565b6001600160801b039081169091526001600160a01b03808816600081815260046020908152604080832087518154988401518816600160801b029088166fffffffffffffffffffffffffffffffff1990991698909817909616969096179094558451808601865291825267ffffffffffffffff4281168386019081528883526003909552948120915182549451909516600160a01b0267ffffffffffffffff60a01b19959093166001600160a01b031990941693909317939093161790915582905b858110156123985760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a461235c6000888488611ea1565b6123785760405162461bcd60e51b815260040161099a90613388565b81612382816137ea565b9250508080612390906137ea565b91505061230f565b506000818155611c399087858861132d565b3b151590565b6000808251604114156123e75760208301516040840151606085015160001a6123db8782858561254d565b94509450505050612419565b825160401415612411576020830151604084015161240686838361262d565b935093505050612419565b506000905060025b9250929050565b600081600481111561244257634e487b7160e01b600052602160045260246000fd5b141561244d57610cda565b600181600481111561246f57634e487b7160e01b600052602160045260246000fd5b141561248d5760405162461bcd60e51b815260040161099a90612ce7565b60028160048111156124af57634e487b7160e01b600052602160045260246000fd5b14156124cd5760405162461bcd60e51b815260040161099a90612d60565b60038160048111156124ef57634e487b7160e01b600052602160045260246000fd5b141561250d5760405162461bcd60e51b815260040161099a90612fd3565b600481600481111561252f57634e487b7160e01b600052602160045260246000fd5b1415610cda5760405162461bcd60e51b815260040161099a9061317a565b6000807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a08311156125845750600090506003612624565b8460ff16601b1415801561259c57508460ff16601c14155b156125ad5750600090506004612624565b6000600187878787604051600081526020016040526040516125d29493929190612cb6565b6020604051602081039080840390855afa1580156125f4573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b03811661261d57600060019250925050612624565b9150600090505b94509492505050565b6000806001600160ff1b03831660ff84901c601b0161264e8782888561254d565b935093505050935093915050565b828054612668906137af565b90600052602060002090601f01602090048101928261268a57600085556126d0565b82601f106126a357805160ff19168380011785556126d0565b828001600101855582156126d0579182015b828111156126d05782518255916020019190600101906126b5565b50610d599291506126f3565b604080518082019091526000808252602082015290565b5b80821115610d5957600081556001016126f4565b600067ffffffffffffffff8084111561272357612723613845565b604051601f8501601f19908116603f0116810190828211818310171561274b5761274b613845565b8160405280935085815286868601111561276457600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b03811681146108cd57600080fd5b803580151581146108cd57600080fd5b600082601f8301126127b5578081fd5b6127c483833560208501612708565b9392505050565b6000602082840312156127dc578081fd5b6127c48261277e565b600080604083850312156127f7578081fd5b6128008361277e565b915061280e6020840161277e565b90509250929050565b60008060006060848603121561282b578081fd5b6128348461277e565b92506128426020850161277e565b9150604084013590509250925092565b60008060008060808587031215612867578081fd5b6128708561277e565b935061287e6020860161277e565b925060408501359150606085013567ffffffffffffffff8111156128a0578182fd5b8501601f810187136128b0578182fd5b6128bf87823560208401612708565b91505092959194509250565b600080604083850312156128dd578182fd5b6128e68361277e565b915061280e60208401612795565b60008060408385031215612906578182fd5b61290f8361277e565b946020939093013593505050565b6000806020838503121561292f578182fd5b823567ffffffffffffffff80821115612946578384fd5b818501915085601f830112612959578384fd5b813581811115612967578485fd5b866020808302850101111561297a578485fd5b60209290920196919550909350505050565b60006020828403121561299d578081fd5b81356127c48161385b565b6000602082840312156129b9578081fd5b81516127c48161385b565b6000806000604084860312156129d8578283fd5b833567ffffffffffffffff808211156129ef578485fd5b818601915086601f830112612a02578485fd5b813581811115612a10578586fd5b876020828501011115612a21578586fd5b6020928301989097509590910135949350505050565b600060208284031215612a48578081fd5b813567ffffffffffffffff811115612a5e578182fd5b611fb5848285016127a5565b60008060408385031215612a7c578182fd5b823567ffffffffffffffff811115612a92578283fd5b612a9e858286016127a5565b92505061280e60208401612795565b600060208284031215612abe578081fd5b813561ffff811681146127c4578182fd5b600060208284031215612ae0578081fd5b5035919050565b60008151808452612aff81602086016020860161376c565b601f01601f19169290920160200192915050565b60008151612b2581856020860161376c565b9290920192915050565b8354600090819060028104600180831680612b4b57607f831692505b6020808410821415612b6b57634e487b7160e01b87526022600452602487fd5b818015612b7f5760018114612b9057612bbc565b60ff19861689528489019650612bbc565b612b998c6136ab565b885b86811015612bb45781548b820152908501908301612b9b565b505084890196505b50612bc7868b612b13565b9889529097019998505050505050505050565b60007f19457468657265756d205369676e6564204d6573736167653a0a00000000000082528351612c1281601a85016020880161376c565b835190830190612c2981601a84016020880161376c565b01601a01949350505050565b90565b6001600160a01b0391909116815260200190565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612c7f90830184612ae7565b9695505050505050565b6001600160a01b03929092168252602082015260400190565b901515815260200190565b90815260200190565b93845260ff9290921660208401526040830152606082015260800190565b6000602082526127c46020830184612ae7565b60208082526018908201527f45434453413a20696e76616c6964207369676e61747572650000000000000000604082015260600190565b60208082526022908201527f455243373231413a206f776e657220696e646578206f7574206f6620626f756e604082015261647360f01b606082015260800190565b6020808252601f908201527f45434453413a20696e76616c6964207369676e6174757265206c656e67746800604082015260600190565b60208082526026908201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160408201526564647265737360d01b606082015260800190565b6020808252602a908201527f455243373231413a206f776e657220717565727920666f72206e6f6e657869736040820152693a32b73a103a37b5b2b760b11b606082015260800190565b6020808252602a908201527f5175616e746974792065786365656473206e756d626572206f6620726573657260408201526976656420746f6b656e7360b01b606082015260800190565b60208082526023908201527f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f756040820152626e647360e81b606082015260800190565b60208082526025908201527f455243373231413a207472616e7366657220746f20746865207a65726f206164604082015264647265737360d81b606082015260800190565b6020808252601a908201527f41646472657373206973206e6f742077686974656c6973746564000000000000604082015260600190565b60208082526031908201527f455243373231413a206e756d626572206d696e74656420717565727920666f7260408201527020746865207a65726f206164647265737360781b606082015260800190565b60208082526032908201527f41646472657373206973206e6f7420616c6c6f77656420746f206d696e74206d6040820152710dee4ca40e8d0c2dc409a82b0be8482a886960731b606082015260800190565b60208082526022908201527f45434453413a20696e76616c6964207369676e6174757265202773272076616c604082015261756560f01b606082015260800190565b60208082526025908201527f43616e206f6e6c79206d696e742061206d756c7469706c65206f66204d41585f60408201526408482a886960db1b606082015260800190565b60208082526021908201527f5075626c69632073616c652069732063757272656e746c7920696e61637469766040820152606560f81b606082015260800190565b60208082526039908201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60408201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000606082015260800190565b60208082526018908201527f446576656c6f70657220616c7265616479206578697374730000000000000000604082015260600190565b6020808252602b908201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60408201526a65726f206164647265737360a81b606082015260800190565b60208082526022908201527f45434453413a20696e76616c6964207369676e6174757265202776272076616c604082015261756560f01b606082015260800190565b60208082526026908201527f455243373231413a207472616e736665722066726f6d20696e636f72726563746040820152651037bbb732b960d11b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b6020808252601a908201527f455243373231413a20617070726f766520746f2063616c6c6572000000000000604082015260600190565b60208082526032908201527f455243373231413a207472616e736665722063616c6c6572206973206e6f74206040820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b606082015260800190565b60208082526017908201527f446576656c6f70657220646f65736e2774206578697374000000000000000000604082015260600190565b6020808252602f908201527f41646472657373206973206e6f7420616c6c6f77656420746f206d696e74206d60408201526e1bdc99481d1a185b8813505617d5d3608a1b606082015260800190565b60208082526022908201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60408201526132b960f11b606082015260800190565b60208082526033908201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260408201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b606082015260800190565b6020808252601d908201527f455243373231413a20746f6b656e20616c7265616479206d696e746564000000604082015260600190565b60208082526019908201527f496e636f727265637420616d6f756e74206f6620657468657200000000000000604082015260600190565b60208082526021908201527f455243373231413a206d696e7420746f20746865207a65726f206164647265736040820152607360f81b606082015260800190565b6020808252601d908201527f50726573616c652069732063757272656e746c7920696e616374697665000000604082015260600190565b6020808252601e908201527f416c6c204f4720746f6b656e732068617665206265656e206d696e7465640000604082015260600190565b6020808252602e908201527f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060408201526d0deeedccae440c4f240d2dcc8caf60931b606082015260800190565b6020808252602f908201527f455243373231413a20756e61626c6520746f2064657465726d696e652074686560408201526e1037bbb732b91037b3103a37b5b2b760891b606082015260800190565b6020808252601b908201527f416c6c20746f6b656e732068617665206265656e206d696e7465640000000000604082015260600190565b6020808252602d908201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560408201526c3c34b9ba32b73a103a37b5b2b760991b606082015260800190565b60208082526022908201527f455243373231413a207175616e7469747920746f206d696e7420746f6f2068696040820152610ced60f31b606082015260800190565b60208082526021908201527f436f6e74726163747320617265206e6f7420616c6c6f77656420746f206d696e6040820152601d60fa1b606082015260800190565b61ffff91909116815260200190565b60009081526020902090565b60006001600160801b038083168185168083038211156136d9576136d9613819565b01949350505050565b600082198211156136f5576136f5613819565b500190565b6000826137095761370961382f565b500490565b600081600019048311821515161561372857613728613819565b500290565b60006001600160801b038381169083168181101561374d5761374d613819565b039392505050565b60008282101561376757613767613819565b500390565b60005b8381101561378757818101518382015260200161376f565b8381111561132d5750506000910152565b6000816137a7576137a7613819565b506000190190565b6002810460018216806137c357607f821691505b602082108114156137e457634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156137fe576137fe613819565b5060010190565b6000826138145761381461382f565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610cda57600080fdfea264697066735822122040450e6bfc1445fb8e46d7d324ac82d59004021e32610f159f370a7586c8723964736f6c63430008010033

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.