ETH Price: $2,987.51 (+3.63%)
Gas: 3 Gwei

Token

Women of Crypto (WOC)
 

Overview

Max Total Supply

8,888 WOC

Holders

4,894

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
2 WOC
0x0c375da33507197f318e0f92acac6f45b53f2629
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

3D Women avatars invested in bridging the gender gap, aiming to inspire more women to participate in the world of crypto.

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
WomenOfCrypto

Compiler Version
v0.8.0+commit.c7dfd78e

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion
File 1 of 13 : WomenOfCrypto.sol
//SPDX-License-Identifier: Unlicense
/*
$$\      $$\ $$$$$$\ $$\      $$\$$$$$$$$\$$\   $$\        $$$$$$\ $$$$$$$$\        $$$$$$\ $$$$$$$\$$\     $$\$$$$$$$\$$$$$$$$\ $$$$$$\
$$ | $\  $$ $$  __$$\$$$\    $$$ $$  _____$$$\  $$ |      $$  __$$\$$  _____|      $$  __$$\$$  __$$\$$\   $$  $$  __$$\__$$  __$$  __$$\
$$ |$$$\ $$ $$ /  $$ $$$$\  $$$$ $$ |     $$$$\ $$ |      $$ /  $$ $$ |            $$ /  \__$$ |  $$ \$$\ $$  /$$ |  $$ | $$ |  $$ /  $$ |
$$ $$ $$\$$ $$ |  $$ $$\$$\$$ $$ $$$$$\   $$ $$\$$ |      $$ |  $$ $$$$$\          $$ |     $$$$$$$  |\$$$$  / $$$$$$$  | $$ |  $$ |  $$ |
$$$$  _$$$$ $$ |  $$ $$ \$$$  $$ $$  __|  $$ \$$$$ |      $$ |  $$ $$  __|         $$ |     $$  __$$<  \$$  /  $$  ____/  $$ |  $$ |  $$ |
$$$  / \$$$ $$ |  $$ $$ |\$  /$$ $$ |     $$ |\$$$ |      $$ |  $$ $$ |            $$ |  $$\$$ |  $$ |  $$ |   $$ |       $$ |  $$ |  $$ |
$$  /   \$$ |$$$$$$  $$ | \_/ $$ $$$$$$$$\$$ | \$$ |       $$$$$$  $$ |            \$$$$$$  $$ |  $$ |  $$ |   $$ |       $$ |   $$$$$$  |
\__/     \__|\______/\__|     \__\________\__|  \__|       \______/\__|             \______/\__|  \__|  \__|   \__|       \__|   \______/
*/

pragma solidity ^0.8.0;

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

contract WomenOfCrypto is ERC721A, Ownable {
  uint256 public constant MAX_SUPPLY = 8888;
  uint256 public constant MAX_MINTS = 2;
  uint256 public constant PUBLIC_PRICE = 0.25 ether;
  uint256 public constant PRESALE_PRICE = 0.2 ether;

  bool public isPresaleActive = false;
  bool public isPublicSaleActive = false;

  bytes32 public merkleRoot;
  mapping(address => uint256) public purchaseTxs;
  mapping(address => uint256) private _allowed;

  string private _baseURIextended;

  address[] private mintPayees = [
    0x1F5688d6CFb24DC0aF7927f4cB59c3e1AC712c78,
    0x6d11A1B72b5ae0baEAA335F047c353e01c3DA2cA,
    0xCe736092A43b1864380bdadb0c39D78296a84017,
    0x5c1E3841e3CBE62a185c83D054f3f6eD21616CdC
  ];

  constructor() ERC721A("Women of Crypto", "WOC") {}

  function preSaleMint(bytes32[] calldata _proof, uint256 nMints)
    external
    payable
  {
    require(msg.sender == tx.origin, "Can't mint through another contract");
    require(isPresaleActive, "Presale not active");

    bytes32 node = keccak256(abi.encodePacked(msg.sender));
    require(MerkleProof.verify(_proof, merkleRoot, node), "Not on allow list");
    require(nMints <= MAX_MINTS, "Exceeds max token purchase");
    require(totalSupply() + nMints <= MAX_SUPPLY, "Mint exceeds total supply");
    require(PRESALE_PRICE * nMints <= msg.value, "Sent incorrect ETH value");
    require(_allowed[msg.sender] + nMints <= MAX_MINTS, "Exceeds mint limit");

    // Keep track of mints for each address
    if (_allowed[msg.sender] > 0) {
      _allowed[msg.sender] = _allowed[msg.sender] + nMints;
    } else {
      _allowed[msg.sender] = nMints;
    }

    _safeMint(msg.sender, nMints);
  }

  function mint(uint256 nMints) external payable {
    require(msg.sender == tx.origin, "Can't mint through another contract");
    require(isPublicSaleActive, "Public sale not active");
    require(nMints <= MAX_MINTS, "Exceeds max token purchase");
    require(totalSupply() + nMints <= MAX_SUPPLY, "Mint exceeds total supply");
    require(PUBLIC_PRICE * nMints <= msg.value, "Sent incorrect ETH value");

    _safeMint(msg.sender, nMints);
  }

  function withdrawAll() external onlyOwner {
    require(address(this).balance > 0, "No funds to withdraw");
    uint256 contractBalance = address(this).balance;

    _withdraw(mintPayees[0], (contractBalance * 15) / 100);
    _withdraw(mintPayees[1], (contractBalance * 23) / 100);
    _withdraw(mintPayees[2], (contractBalance * 10) / 100);
    _withdraw(mintPayees[3], address(this).balance);
  }

  function reserveMint(uint256 nMints, uint256 batchSize) external onlyOwner {
    require(totalSupply() + nMints <= MAX_SUPPLY, "Mint exceeds total supply");
    require(nMints % batchSize == 0, "Can only mint a multiple of batchSize");

    for (uint256 i = 0; i < nMints / batchSize; i++) {
      _safeMint(msg.sender, batchSize);
    }
  }

  function setBaseURI(string calldata baseURI_) external onlyOwner {
    _baseURIextended = baseURI_;
  }

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

  function setMerkleRoot(bytes32 _merkleRoot) external onlyOwner {
    merkleRoot = _merkleRoot;
  }

  function togglePresale() external onlyOwner {
    isPresaleActive = !isPresaleActive;
  }

  function togglePublicSale() external onlyOwner {
    isPublicSaleActive = !isPublicSaleActive;
  }

  function _withdraw(address _address, uint256 _amount) private {
    (bool success, ) = _address.call{value: _amount}("");
    require(success, "Transfer failed.");
  }

  receive() external payable {}
}

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

File 3 of 13 : MerkleProof.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/cryptography/MerkleProof.sol)

pragma solidity ^0.8.0;

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

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

File 4 of 13 : ERC721A.sol
// SPDX-License-Identifier: MIT
// Creator: Chiru Labs

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..).
 *
 * Does not support burning tokens to address(0).
 *
 * Assumes that an owner cannot have more than the 2**128 (max value of uint128) of supply
 */
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 internal currentIndex = 0;

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

    /**
     * @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(totalSupply). 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');

        for (uint256 curr = tokenId; ; 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:
     *
     * - `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 > 0, 'ERC721A: quantity must be greater 0');

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

        // Underflow of the sender's balance is impossible because we check for
        // ownership above and the recipient's balance can't realistically overflow.
        unchecked {
            _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);
    }

    /**
     * @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 5 of 13 : Context.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)

pragma solidity ^0.8.0;

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

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

File 6 of 13 : IERC721.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

File 7 of 13 : IERC721Receiver.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721Receiver.sol)

pragma solidity ^0.8.0;

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

File 8 of 13 : IERC721Metadata.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol)

pragma solidity ^0.8.0;

import "../IERC721.sol";

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

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

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

File 9 of 13 : IERC721Enumerable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (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 10 of 13 : Address.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (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 11 of 13 : Strings.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Strings.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

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

pragma solidity ^0.8.0;

import "./IERC165.sol";

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

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

pragma solidity ^0.8.0;

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

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

Contract Security Audit

Contract ABI

[{"inputs":[],"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":"MAX_MINTS","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":"PRESALE_PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PUBLIC_PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isPresaleActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isPublicSaleActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"merkleRoot","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"nMints","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32[]","name":"_proof","type":"bytes32[]"},{"internalType":"uint256","name":"nMints","type":"uint256"}],"name":"preSaleMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"purchaseTxs","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"nMints","type":"uint256"},{"internalType":"uint256","name":"batchSize","type":"uint256"}],"name":"reserveMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI_","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_merkleRoot","type":"bytes32"}],"name":"setMerkleRoot","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":"togglePresale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"togglePublicSale","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":"withdrawAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

600080556007805461ffff60a01b19169055610100604052731f5688d6cfb24dc0af7927f4cb59c3e1ac712c786080908152736d11a1b72b5ae0baeaa335f047c353e01c3da2ca60a05273ce736092a43b1864380bdadb0c39d78296a8401760c052735c1e3841e3cbe62a185c83d054f3f6ed21616cdc60e0526200008990600c90600462000179565b503480156200009757600080fd5b50604080518082018252600f81526e576f6d656e206f662043727970746f60881b602080830191825283518085019094526003845262574f4360e81b908401528151919291620000ea91600191620001e3565b50805162000100906002906020840190620001e3565b5050506200011d620001176200012360201b60201c565b62000127565b620002b4565b3390565b600780546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b828054828255906000526020600020908101928215620001d1579160200282015b82811115620001d157825182546001600160a01b0319166001600160a01b039091161782556020909201916001909101906200019a565b50620001df92915062000260565b5090565b828054620001f19062000277565b90600052602060002090601f016020900481019282620002155760008555620001d1565b82601f106200023057805160ff1916838001178555620001d1565b82800160010185558215620001d1579182015b82811115620001d157825182559160200191906001019062000243565b5b80821115620001df576000815560010162000261565b6002810460018216806200028c57607f821691505b60208210811415620002ae57634e487b7160e01b600052602260045260246000fd5b50919050565b612b0980620002c46000396000f3fe6080604052600436106102085760003560e01c80636352211e11610118578063a0712d68116100a0578063cce132d11161006f578063cce132d11461056a578063e222c7f91461057f578063e985e9c514610594578063f2fde38b146105b4578063f8685030146105d45761020f565b8063a0712d68146104f7578063a22cb4651461050a578063b88d4fde1461052a578063c87b56dd1461054a5761020f565b80637cb64759116100e75780637cb6475914610478578063853828b6146104985780638da5cb5b146104ad5780639525002f146104c257806395d89b41146104e25761020f565b80636352211e1461041057806370a0823114610430578063715018a61461045057806378179976146104655761020f565b80632f745c591161019b5780634f6ccce71161016a5780634f6ccce71461039157806355f804b3146103b157806360d938dc146103d1578063611f3f10146103e657806362dc6e21146103fb5761020f565b80632f745c591461032757806332cb6b0c14610347578063343937431461035c57806342842e0e146103715761020f565b806318160ddd116101d757806318160ddd146102bb5780631e84c413146102dd57806323b872dd146102f25780632eb4a7ab146103125761020f565b806301ffc9a71461021457806306fdde031461024a578063081812fc1461026c578063095ea7b3146102995761020f565b3661020f57005b600080fd5b34801561022057600080fd5b5061023461022f36600461200b565b6105f4565b60405161024191906121ab565b60405180910390f35b34801561025657600080fd5b5061025f610657565b60405161024191906121bf565b34801561027857600080fd5b5061028c610287366004611ff3565b6106e9565b604051610241919061215a565b3480156102a557600080fd5b506102b96102b4366004611f55565b610735565b005b3480156102c757600080fd5b506102d06107ce565b60405161024191906121b6565b3480156102e957600080fd5b506102346107d4565b3480156102fe57600080fd5b506102b961030d366004611e14565b6107e4565b34801561031e57600080fd5b506102d06107ef565b34801561033357600080fd5b506102d0610342366004611f55565b6107f5565b34801561035357600080fd5b506102d06108f1565b34801561036857600080fd5b506102b96108f7565b34801561037d57600080fd5b506102b961038c366004611e14565b610957565b34801561039d57600080fd5b506102d06103ac366004611ff3565b610972565b3480156103bd57600080fd5b506102b96103cc366004612043565b61099e565b3480156103dd57600080fd5b506102346109e9565b3480156103f257600080fd5b506102d06109f9565b34801561040757600080fd5b506102d0610a05565b34801561041c57600080fd5b5061028c61042b366004611ff3565b610a11565b34801561043c57600080fd5b506102d061044b366004611dc8565b610a23565b34801561045c57600080fd5b506102b9610a70565b6102b9610473366004611f7e565b610abb565b34801561048457600080fd5b506102b9610493366004611ff3565b610cb5565b3480156104a457600080fd5b506102b9610cf9565b3480156104b957600080fd5b5061028c610e84565b3480156104ce57600080fd5b506102b96104dd3660046120b0565b610e93565b3480156104ee57600080fd5b5061025f610f5d565b6102b9610505366004611ff3565b610f6c565b34801561051657600080fd5b506102b9610525366004611f1b565b611044565b34801561053657600080fd5b506102b9610545366004611e4f565b611112565b34801561055657600080fd5b5061025f610565366004611ff3565b611145565b34801561057657600080fd5b506102d06111c8565b34801561058b57600080fd5b506102b96111cd565b3480156105a057600080fd5b506102346105af366004611de2565b61122d565b3480156105c057600080fd5b506102b96105cf366004611dc8565b61125b565b3480156105e057600080fd5b506102d06105ef366004611dc8565b6112c9565b60006001600160e01b031982166380ac58cd60e01b148061062557506001600160e01b03198216635b5e139f60e01b145b8061064057506001600160e01b0319821663780e9d6360e01b145b8061064f575061064f826112db565b90505b919050565b60606001805461066690612a11565b80601f016020809104026020016040519081016040528092919081815260200182805461069290612a11565b80156106df5780601f106106b4576101008083540402835291602001916106df565b820191906000526020600020905b8154815290600101906020018083116106c257829003601f168201915b5050505050905090565b60006106f4826112f4565b6107195760405162461bcd60e51b8152600401610710906128ba565b60405180910390fd5b506000908152600560205260409020546001600160a01b031690565b600061074082610a11565b9050806001600160a01b0316836001600160a01b031614156107745760405162461bcd60e51b8152600401610710906126ad565b806001600160a01b03166107866112fb565b6001600160a01b031614806107a257506107a2816105af6112fb565b6107be5760405162461bcd60e51b81526004016107109061244b565b6107c98383836112ff565b505050565b60005490565b600754600160a81b900460ff1681565b6107c983838361135b565b60085481565b600061080083610a23565b821061081e5760405162461bcd60e51b8152600401610710906121d2565b60006108286107ce565b905060008060005b838110156108d2576000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff16918301919091521561088357805192505b876001600160a01b0316836001600160a01b031614156108bf57868414156108b1575093506108eb92505050565b836108bb81612a4c565b9450505b50806108ca81612a4c565b915050610830565b5060405162461bcd60e51b81526004016107109061286c565b92915050565b6122b881565b6108ff6112fb565b6001600160a01b0316610910610e84565b6001600160a01b0316146109365760405162461bcd60e51b8152600401610710906125a0565b6007805460ff60a01b198116600160a01b9182900460ff1615909102179055565b6107c983838360405180602001604052806000815250611112565b600061097c6107ce565b821061099a5760405162461bcd60e51b815260040161071090612332565b5090565b6109a66112fb565b6001600160a01b03166109b7610e84565b6001600160a01b0316146109dd5760405162461bcd60e51b8152600401610710906125a0565b6107c9600b8383611d05565b600754600160a01b900460ff1681565b6703782dace9d9000081565b6702c68af0bb14000081565b6000610a1c82611624565b5192915050565b60006001600160a01b038216610a4b5760405162461bcd60e51b8152600401610710906124a8565b506001600160a01b03166000908152600460205260409020546001600160801b031690565b610a786112fb565b6001600160a01b0316610a89610e84565b6001600160a01b031614610aaf5760405162461bcd60e51b8152600401610710906125a0565b610ab960006116b5565b565b333214610ada5760405162461bcd60e51b815260040161071090612907565b600754600160a01b900460ff16610b035760405162461bcd60e51b8152600401610710906123f1565b600033604051602001610b1691906120fd565b604051602081830303815290604052805190602001209050610b6f848480806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250506008549150849050611707565b610b8b5760405162461bcd60e51b815260040161071090612240565b6002821115610bac5760405162461bcd60e51b8152600401610710906122fb565b6122b882610bb86107ce565b610bc2919061296c565b1115610be05760405162461bcd60e51b8152600401610710906124f3565b34610bf3836702c68af0bb140000612998565b1115610c115760405162461bcd60e51b8152600401610710906123ba565b336000908152600a6020526040902054600290610c2f90849061296c565b1115610c4d5760405162461bcd60e51b815260040161071090612214565b336000908152600a602052604090205415610c9257336000908152600a6020526040902054610c7d90839061296c565b336000908152600a6020526040902055610ca5565b336000908152600a602052604090208290555b610caf338361171d565b50505050565b610cbd6112fb565b6001600160a01b0316610cce610e84565b6001600160a01b031614610cf45760405162461bcd60e51b8152600401610710906125a0565b600855565b610d016112fb565b6001600160a01b0316610d12610e84565b6001600160a01b031614610d385760405162461bcd60e51b8152600401610710906125a0565b60004711610d585760405162461bcd60e51b81526004016107109061241d565b6000479050610db3600c600081548110610d8257634e487b7160e01b600052603260045260246000fd5b6000918252602090912001546001600160a01b03166064610da484600f612998565b610dae9190612984565b61173b565b610dfa600c600181548110610dd857634e487b7160e01b600052603260045260246000fd5b6000918252602090912001546001600160a01b03166064610da4846017612998565b610e41600c600281548110610e1f57634e487b7160e01b600052603260045260246000fd5b6000918252602090912001546001600160a01b03166064610da484600a612998565b610e81600c600381548110610e6657634e487b7160e01b600052603260045260246000fd5b6000918252602090912001546001600160a01b03164761173b565b50565b6007546001600160a01b031690565b610e9b6112fb565b6001600160a01b0316610eac610e84565b6001600160a01b031614610ed25760405162461bcd60e51b8152600401610710906125a0565b6122b882610ede6107ce565b610ee8919061296c565b1115610f065760405162461bcd60e51b8152600401610710906124f3565b610f108183612a67565b15610f2d5760405162461bcd60e51b815260040161071090612827565b60005b610f3a8284612984565b8110156107c957610f4b338361171d565b80610f5581612a4c565b915050610f30565b60606002805461066690612a11565b333214610f8b5760405162461bcd60e51b815260040161071090612907565b600754600160a81b900460ff16610fb45760405162461bcd60e51b815260040161071090612570565b6002811115610fd55760405162461bcd60e51b8152600401610710906122fb565b6122b881610fe16107ce565b610feb919061296c565b11156110095760405162461bcd60e51b8152600401610710906124f3565b3461101c826703782dace9d90000612998565b111561103a5760405162461bcd60e51b8152600401610710906123ba565b610e81338261171d565b61104c6112fb565b6001600160a01b0316826001600160a01b0316141561107d5760405162461bcd60e51b815260040161071090612624565b806006600061108a6112fb565b6001600160a01b03908116825260208083019390935260409182016000908120918716808252919093529120805460ff1916921515929092179091556110ce6112fb565b6001600160a01b03167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161110691906121ab565b60405180910390a35050565b61111d84848461135b565b611129848484846117b7565b610caf5760405162461bcd60e51b81526004016107109061275c565b6060611150826112f4565b61116c5760405162461bcd60e51b8152600401610710906125d5565b60006111766118d3565b9050600081511161119657604051806020016040528060008152506111c1565b806111a0846118e2565b6040516020016111b1929190612128565b6040516020818303038152906040525b9392505050565b600281565b6111d56112fb565b6001600160a01b03166111e6610e84565b6001600160a01b03161461120c5760405162461bcd60e51b8152600401610710906125a0565b6007805460ff60a81b198116600160a81b9182900460ff1615909102179055565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b6112636112fb565b6001600160a01b0316611274610e84565b6001600160a01b03161461129a5760405162461bcd60e51b8152600401610710906125a0565b6001600160a01b0381166112c05760405162461bcd60e51b81526004016107109061226b565b610e81816116b5565b60096020526000908152604090205481565b6001600160e01b031981166301ffc9a760e01b14919050565b6000541190565b3390565b60008281526005602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b600061136682611624565b9050600081600001516001600160a01b03166113806112fb565b6001600160a01b031614806113b557506113986112fb565b6001600160a01b03166113aa846106e9565b6001600160a01b0316145b806113c9575081516113c9906105af6112fb565b9050806113e85760405162461bcd60e51b81526004016107109061265b565b846001600160a01b031682600001516001600160a01b03161461141d5760405162461bcd60e51b81526004016107109061252a565b6001600160a01b0384166114435760405162461bcd60e51b815260040161071090612375565b6114508585856001610caf565b61146060008484600001516112ff565b6001600160a01b03858116600090815260046020908152604080832080546001600160801b03198082166001600160801b03928316600019018316179092558986168086528386208054938416938316600190810190931693909317909255825180840184529182524267ffffffffffffffff9081168386019081528a875260039095529285209151825494516001600160a01b031990951696169590951767ffffffffffffffff60a01b1916600160a01b93909216929092021790559061152990859061296c565b6000818152600360205260409020549091506001600160a01b03166115ce57611551816112f4565b156115ce5760408051808201825284516001600160a01b03908116825260208087015167ffffffffffffffff90811682850190815260008781526003909352949091209251835494516001600160a01b031990951692169190911767ffffffffffffffff60a01b1916600160a01b93909116929092029190911790555b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461161c8686866001610caf565b505050505050565b61162c611d85565b611635826112f4565b6116515760405162461bcd60e51b8152600401610710906122b1565b815b6000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff1691830191909152156116a25791506106529050565b50806116ad816129fa565b915050611653565b600780546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b60008261171485846119fd565b14949350505050565b611737828260405180602001604052806000815250611ab5565b5050565b6000826001600160a01b03168260405161175490612157565b60006040518083038185875af1925050503d8060008114611791576040519150601f19603f3d011682016040523d82523d6000602084013e611796565b606091505b50509050806107c95760405162461bcd60e51b815260040161071090612732565b60006117cb846001600160a01b0316611cff565b156118c757836001600160a01b031663150b7a026117e76112fb565b8786866040518563ffffffff1660e01b8152600401611809949392919061216e565b602060405180830381600087803b15801561182357600080fd5b505af1925050508015611853575060408051601f3d908101601f1916820190925261185091810190612027565b60015b6118ad573d808015611881576040519150601f19603f3d011682016040523d82523d6000602084013e611886565b606091505b5080516118a55760405162461bcd60e51b81526004016107109061275c565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506118cb565b5060015b949350505050565b6060600b805461066690612a11565b60608161190757506040805180820190915260018152600360fc1b6020820152610652565b8160005b8115611931578061191b81612a4c565b915061192a9050600a83612984565b915061190b565b60008167ffffffffffffffff81111561195a57634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015611984576020820181803683370190505b5090505b84156118cb576119996001836129b7565b91506119a6600a86612a67565b6119b190603061296c565b60f81b8183815181106119d457634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a9053506119f6600a86612984565b9450611988565b600081815b8451811015611aad576000858281518110611a2d57634e487b7160e01b600052603260045260246000fd5b60200260200101519050808311611a6e578281604051602001611a5192919061211a565b604051602081830303815290604052805190602001209250611a9a565b8083604051602001611a8192919061211a565b6040516020818303038152906040528051906020012092505b5080611aa581612a4c565b915050611a02565b509392505050565b6000546001600160a01b038416611ade5760405162461bcd60e51b8152600401610710906127e6565b611ae7816112f4565b15611b045760405162461bcd60e51b8152600401610710906127af565b60008311611b245760405162461bcd60e51b8152600401610710906126ef565b611b316000858386610caf565b6001600160a01b0384166000908152600460209081526040918290208251808401845290546001600160801b038082168352600160801b9091041691810191909152815180830190925280519091908190611b8d90879061294a565b6001600160801b03168152602001858360200151611bab919061294a565b6001600160801b039081169091526001600160a01b03808816600081815260046020908152604080832087518154988401518816600160801b029088166001600160801b031990991698909817909616969096179094558451808601865291825267ffffffffffffffff4281168386019081528883526003909552948120915182549451909516600160a01b0267ffffffffffffffff60a01b19959093166001600160a01b031990941693909317939093161790915582905b85811015611ced5760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4611cb160008884886117b7565b611ccd5760405162461bcd60e51b81526004016107109061275c565b81611cd781612a4c565b9250508080611ce590612a4c565b915050611c64565b50600081815561161c90878588610caf565b3b151590565b828054611d1190612a11565b90600052602060002090601f016020900481019282611d335760008555611d79565b82601f10611d4c5782800160ff19823516178555611d79565b82800160010185558215611d79579182015b82811115611d79578235825591602001919060010190611d5e565b5061099a929150611d9c565b604080518082019091526000808252602082015290565b5b8082111561099a5760008155600101611d9d565b80356001600160a01b038116811461065257600080fd5b600060208284031215611dd9578081fd5b6111c182611db1565b60008060408385031215611df4578081fd5b611dfd83611db1565b9150611e0b60208401611db1565b90509250929050565b600080600060608486031215611e28578081fd5b611e3184611db1565b9250611e3f60208501611db1565b9150604084013590509250925092565b60008060008060808587031215611e64578081fd5b611e6d85611db1565b93506020611e7c818701611db1565b935060408601359250606086013567ffffffffffffffff80821115611e9f578384fd5b818801915088601f830112611eb2578384fd5b813581811115611ec457611ec4612aa7565b604051601f8201601f1916810185018381118282101715611ee757611ee7612aa7565b60405281815283820185018b1015611efd578586fd5b81858501868301379081019093019390935250939692955090935050565b60008060408385031215611f2d578182fd5b611f3683611db1565b915060208301358015158114611f4a578182fd5b809150509250929050565b60008060408385031215611f67578182fd5b611f7083611db1565b946020939093013593505050565b600080600060408486031215611f92578283fd5b833567ffffffffffffffff80821115611fa9578485fd5b818601915086601f830112611fbc578485fd5b813581811115611fca578586fd5b8760208083028501011115611fdd578586fd5b6020928301989097509590910135949350505050565b600060208284031215612004578081fd5b5035919050565b60006020828403121561201c578081fd5b81356111c181612abd565b600060208284031215612038578081fd5b81516111c181612abd565b60008060208385031215612055578182fd5b823567ffffffffffffffff8082111561206c578384fd5b818501915085601f83011261207f578384fd5b81358181111561208d578485fd5b86602082850101111561209e578485fd5b60209290920196919550909350505050565b600080604083850312156120c2578182fd5b50508035926020909101359150565b600081518084526120e98160208601602086016129ce565b601f01601f19169290920160200192915050565b60609190911b6bffffffffffffffffffffffff1916815260140190565b918252602082015260400190565b6000835161213a8184602088016129ce565b83519083019061214e8183602088016129ce565b01949350505050565b90565b6001600160a01b0391909116815260200190565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906121a1908301846120d1565b9695505050505050565b901515815260200190565b90815260200190565b6000602082526111c160208301846120d1565b60208082526022908201527f455243373231413a206f776e657220696e646578206f7574206f6620626f756e604082015261647360f01b606082015260800190565b602080825260129082015271115e18d959591cc81b5a5b9d081b1a5b5a5d60721b604082015260600190565b602080825260119082015270139bdd081bdb88185b1b1bddc81b1a5cdd607a1b604082015260600190565b60208082526026908201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160408201526564647265737360d01b606082015260800190565b6020808252602a908201527f455243373231413a206f776e657220717565727920666f72206e6f6e657869736040820152693a32b73a103a37b5b2b760b11b606082015260800190565b6020808252601a908201527f45786365656473206d617820746f6b656e207075726368617365000000000000604082015260600190565b60208082526023908201527f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f756040820152626e647360e81b606082015260800190565b60208082526025908201527f455243373231413a207472616e7366657220746f20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526018908201527f53656e7420696e636f7272656374204554482076616c75650000000000000000604082015260600190565b60208082526012908201527150726573616c65206e6f742061637469766560701b604082015260600190565b6020808252601490820152734e6f2066756e647320746f20776974686472617760601b604082015260600190565b60208082526039908201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60408201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000606082015260800190565b6020808252602b908201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60408201526a65726f206164647265737360a81b606082015260800190565b60208082526019908201527f4d696e74206578636565647320746f74616c20737570706c7900000000000000604082015260600190565b60208082526026908201527f455243373231413a207472616e736665722066726f6d20696e636f72726563746040820152651037bbb732b960d11b606082015260800190565b6020808252601690820152755075626c69632073616c65206e6f742061637469766560501b604082015260600190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b6020808252602f908201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60408201526e3732bc34b9ba32b73a103a37b5b2b760891b606082015260800190565b6020808252601a908201527f455243373231413a20617070726f766520746f2063616c6c6572000000000000604082015260600190565b60208082526032908201527f455243373231413a207472616e736665722063616c6c6572206973206e6f74206040820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b606082015260800190565b60208082526022908201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60408201526132b960f11b606082015260800190565b60208082526023908201527f455243373231413a207175616e74697479206d7573742062652067726561746560408201526207220360ec1b606082015260800190565b60208082526010908201526f2a3930b739b332b9103330b4b632b21760811b604082015260600190565b60208082526033908201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260408201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b606082015260800190565b6020808252601d908201527f455243373231413a20746f6b656e20616c7265616479206d696e746564000000604082015260600190565b60208082526021908201527f455243373231413a206d696e7420746f20746865207a65726f206164647265736040820152607360f81b606082015260800190565b60208082526025908201527f43616e206f6e6c79206d696e742061206d756c7469706c65206f6620626174636040820152646853697a6560d81b606082015260800190565b6020808252602e908201527f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060408201526d0deeedccae440c4f240d2dcc8caf60931b606082015260800190565b6020808252602d908201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560408201526c3c34b9ba32b73a103a37b5b2b760991b606082015260800190565b60208082526023908201527f43616e2774206d696e74207468726f75676820616e6f7468657220636f6e74726040820152621858dd60ea1b606082015260800190565b60006001600160801b0380831681851680830382111561214e5761214e612a7b565b6000821982111561297f5761297f612a7b565b500190565b60008261299357612993612a91565b500490565b60008160001904831182151516156129b2576129b2612a7b565b500290565b6000828210156129c9576129c9612a7b565b500390565b60005b838110156129e95781810151838201526020016129d1565b83811115610caf5750506000910152565b600081612a0957612a09612a7b565b506000190190565b600281046001821680612a2557607f821691505b60208210811415612a4657634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415612a6057612a60612a7b565b5060010190565b600082612a7657612a76612a91565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610e8157600080fdfea26469706673582212209bd21d158b35e9c0137dc0ecc273f488945bd70db4f510f5982ab16ee7754aa164736f6c63430008000033

Deployed Bytecode

0x6080604052600436106102085760003560e01c80636352211e11610118578063a0712d68116100a0578063cce132d11161006f578063cce132d11461056a578063e222c7f91461057f578063e985e9c514610594578063f2fde38b146105b4578063f8685030146105d45761020f565b8063a0712d68146104f7578063a22cb4651461050a578063b88d4fde1461052a578063c87b56dd1461054a5761020f565b80637cb64759116100e75780637cb6475914610478578063853828b6146104985780638da5cb5b146104ad5780639525002f146104c257806395d89b41146104e25761020f565b80636352211e1461041057806370a0823114610430578063715018a61461045057806378179976146104655761020f565b80632f745c591161019b5780634f6ccce71161016a5780634f6ccce71461039157806355f804b3146103b157806360d938dc146103d1578063611f3f10146103e657806362dc6e21146103fb5761020f565b80632f745c591461032757806332cb6b0c14610347578063343937431461035c57806342842e0e146103715761020f565b806318160ddd116101d757806318160ddd146102bb5780631e84c413146102dd57806323b872dd146102f25780632eb4a7ab146103125761020f565b806301ffc9a71461021457806306fdde031461024a578063081812fc1461026c578063095ea7b3146102995761020f565b3661020f57005b600080fd5b34801561022057600080fd5b5061023461022f36600461200b565b6105f4565b60405161024191906121ab565b60405180910390f35b34801561025657600080fd5b5061025f610657565b60405161024191906121bf565b34801561027857600080fd5b5061028c610287366004611ff3565b6106e9565b604051610241919061215a565b3480156102a557600080fd5b506102b96102b4366004611f55565b610735565b005b3480156102c757600080fd5b506102d06107ce565b60405161024191906121b6565b3480156102e957600080fd5b506102346107d4565b3480156102fe57600080fd5b506102b961030d366004611e14565b6107e4565b34801561031e57600080fd5b506102d06107ef565b34801561033357600080fd5b506102d0610342366004611f55565b6107f5565b34801561035357600080fd5b506102d06108f1565b34801561036857600080fd5b506102b96108f7565b34801561037d57600080fd5b506102b961038c366004611e14565b610957565b34801561039d57600080fd5b506102d06103ac366004611ff3565b610972565b3480156103bd57600080fd5b506102b96103cc366004612043565b61099e565b3480156103dd57600080fd5b506102346109e9565b3480156103f257600080fd5b506102d06109f9565b34801561040757600080fd5b506102d0610a05565b34801561041c57600080fd5b5061028c61042b366004611ff3565b610a11565b34801561043c57600080fd5b506102d061044b366004611dc8565b610a23565b34801561045c57600080fd5b506102b9610a70565b6102b9610473366004611f7e565b610abb565b34801561048457600080fd5b506102b9610493366004611ff3565b610cb5565b3480156104a457600080fd5b506102b9610cf9565b3480156104b957600080fd5b5061028c610e84565b3480156104ce57600080fd5b506102b96104dd3660046120b0565b610e93565b3480156104ee57600080fd5b5061025f610f5d565b6102b9610505366004611ff3565b610f6c565b34801561051657600080fd5b506102b9610525366004611f1b565b611044565b34801561053657600080fd5b506102b9610545366004611e4f565b611112565b34801561055657600080fd5b5061025f610565366004611ff3565b611145565b34801561057657600080fd5b506102d06111c8565b34801561058b57600080fd5b506102b96111cd565b3480156105a057600080fd5b506102346105af366004611de2565b61122d565b3480156105c057600080fd5b506102b96105cf366004611dc8565b61125b565b3480156105e057600080fd5b506102d06105ef366004611dc8565b6112c9565b60006001600160e01b031982166380ac58cd60e01b148061062557506001600160e01b03198216635b5e139f60e01b145b8061064057506001600160e01b0319821663780e9d6360e01b145b8061064f575061064f826112db565b90505b919050565b60606001805461066690612a11565b80601f016020809104026020016040519081016040528092919081815260200182805461069290612a11565b80156106df5780601f106106b4576101008083540402835291602001916106df565b820191906000526020600020905b8154815290600101906020018083116106c257829003601f168201915b5050505050905090565b60006106f4826112f4565b6107195760405162461bcd60e51b8152600401610710906128ba565b60405180910390fd5b506000908152600560205260409020546001600160a01b031690565b600061074082610a11565b9050806001600160a01b0316836001600160a01b031614156107745760405162461bcd60e51b8152600401610710906126ad565b806001600160a01b03166107866112fb565b6001600160a01b031614806107a257506107a2816105af6112fb565b6107be5760405162461bcd60e51b81526004016107109061244b565b6107c98383836112ff565b505050565b60005490565b600754600160a81b900460ff1681565b6107c983838361135b565b60085481565b600061080083610a23565b821061081e5760405162461bcd60e51b8152600401610710906121d2565b60006108286107ce565b905060008060005b838110156108d2576000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff16918301919091521561088357805192505b876001600160a01b0316836001600160a01b031614156108bf57868414156108b1575093506108eb92505050565b836108bb81612a4c565b9450505b50806108ca81612a4c565b915050610830565b5060405162461bcd60e51b81526004016107109061286c565b92915050565b6122b881565b6108ff6112fb565b6001600160a01b0316610910610e84565b6001600160a01b0316146109365760405162461bcd60e51b8152600401610710906125a0565b6007805460ff60a01b198116600160a01b9182900460ff1615909102179055565b6107c983838360405180602001604052806000815250611112565b600061097c6107ce565b821061099a5760405162461bcd60e51b815260040161071090612332565b5090565b6109a66112fb565b6001600160a01b03166109b7610e84565b6001600160a01b0316146109dd5760405162461bcd60e51b8152600401610710906125a0565b6107c9600b8383611d05565b600754600160a01b900460ff1681565b6703782dace9d9000081565b6702c68af0bb14000081565b6000610a1c82611624565b5192915050565b60006001600160a01b038216610a4b5760405162461bcd60e51b8152600401610710906124a8565b506001600160a01b03166000908152600460205260409020546001600160801b031690565b610a786112fb565b6001600160a01b0316610a89610e84565b6001600160a01b031614610aaf5760405162461bcd60e51b8152600401610710906125a0565b610ab960006116b5565b565b333214610ada5760405162461bcd60e51b815260040161071090612907565b600754600160a01b900460ff16610b035760405162461bcd60e51b8152600401610710906123f1565b600033604051602001610b1691906120fd565b604051602081830303815290604052805190602001209050610b6f848480806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250506008549150849050611707565b610b8b5760405162461bcd60e51b815260040161071090612240565b6002821115610bac5760405162461bcd60e51b8152600401610710906122fb565b6122b882610bb86107ce565b610bc2919061296c565b1115610be05760405162461bcd60e51b8152600401610710906124f3565b34610bf3836702c68af0bb140000612998565b1115610c115760405162461bcd60e51b8152600401610710906123ba565b336000908152600a6020526040902054600290610c2f90849061296c565b1115610c4d5760405162461bcd60e51b815260040161071090612214565b336000908152600a602052604090205415610c9257336000908152600a6020526040902054610c7d90839061296c565b336000908152600a6020526040902055610ca5565b336000908152600a602052604090208290555b610caf338361171d565b50505050565b610cbd6112fb565b6001600160a01b0316610cce610e84565b6001600160a01b031614610cf45760405162461bcd60e51b8152600401610710906125a0565b600855565b610d016112fb565b6001600160a01b0316610d12610e84565b6001600160a01b031614610d385760405162461bcd60e51b8152600401610710906125a0565b60004711610d585760405162461bcd60e51b81526004016107109061241d565b6000479050610db3600c600081548110610d8257634e487b7160e01b600052603260045260246000fd5b6000918252602090912001546001600160a01b03166064610da484600f612998565b610dae9190612984565b61173b565b610dfa600c600181548110610dd857634e487b7160e01b600052603260045260246000fd5b6000918252602090912001546001600160a01b03166064610da4846017612998565b610e41600c600281548110610e1f57634e487b7160e01b600052603260045260246000fd5b6000918252602090912001546001600160a01b03166064610da484600a612998565b610e81600c600381548110610e6657634e487b7160e01b600052603260045260246000fd5b6000918252602090912001546001600160a01b03164761173b565b50565b6007546001600160a01b031690565b610e9b6112fb565b6001600160a01b0316610eac610e84565b6001600160a01b031614610ed25760405162461bcd60e51b8152600401610710906125a0565b6122b882610ede6107ce565b610ee8919061296c565b1115610f065760405162461bcd60e51b8152600401610710906124f3565b610f108183612a67565b15610f2d5760405162461bcd60e51b815260040161071090612827565b60005b610f3a8284612984565b8110156107c957610f4b338361171d565b80610f5581612a4c565b915050610f30565b60606002805461066690612a11565b333214610f8b5760405162461bcd60e51b815260040161071090612907565b600754600160a81b900460ff16610fb45760405162461bcd60e51b815260040161071090612570565b6002811115610fd55760405162461bcd60e51b8152600401610710906122fb565b6122b881610fe16107ce565b610feb919061296c565b11156110095760405162461bcd60e51b8152600401610710906124f3565b3461101c826703782dace9d90000612998565b111561103a5760405162461bcd60e51b8152600401610710906123ba565b610e81338261171d565b61104c6112fb565b6001600160a01b0316826001600160a01b0316141561107d5760405162461bcd60e51b815260040161071090612624565b806006600061108a6112fb565b6001600160a01b03908116825260208083019390935260409182016000908120918716808252919093529120805460ff1916921515929092179091556110ce6112fb565b6001600160a01b03167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161110691906121ab565b60405180910390a35050565b61111d84848461135b565b611129848484846117b7565b610caf5760405162461bcd60e51b81526004016107109061275c565b6060611150826112f4565b61116c5760405162461bcd60e51b8152600401610710906125d5565b60006111766118d3565b9050600081511161119657604051806020016040528060008152506111c1565b806111a0846118e2565b6040516020016111b1929190612128565b6040516020818303038152906040525b9392505050565b600281565b6111d56112fb565b6001600160a01b03166111e6610e84565b6001600160a01b03161461120c5760405162461bcd60e51b8152600401610710906125a0565b6007805460ff60a81b198116600160a81b9182900460ff1615909102179055565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b6112636112fb565b6001600160a01b0316611274610e84565b6001600160a01b03161461129a5760405162461bcd60e51b8152600401610710906125a0565b6001600160a01b0381166112c05760405162461bcd60e51b81526004016107109061226b565b610e81816116b5565b60096020526000908152604090205481565b6001600160e01b031981166301ffc9a760e01b14919050565b6000541190565b3390565b60008281526005602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b600061136682611624565b9050600081600001516001600160a01b03166113806112fb565b6001600160a01b031614806113b557506113986112fb565b6001600160a01b03166113aa846106e9565b6001600160a01b0316145b806113c9575081516113c9906105af6112fb565b9050806113e85760405162461bcd60e51b81526004016107109061265b565b846001600160a01b031682600001516001600160a01b03161461141d5760405162461bcd60e51b81526004016107109061252a565b6001600160a01b0384166114435760405162461bcd60e51b815260040161071090612375565b6114508585856001610caf565b61146060008484600001516112ff565b6001600160a01b03858116600090815260046020908152604080832080546001600160801b03198082166001600160801b03928316600019018316179092558986168086528386208054938416938316600190810190931693909317909255825180840184529182524267ffffffffffffffff9081168386019081528a875260039095529285209151825494516001600160a01b031990951696169590951767ffffffffffffffff60a01b1916600160a01b93909216929092021790559061152990859061296c565b6000818152600360205260409020549091506001600160a01b03166115ce57611551816112f4565b156115ce5760408051808201825284516001600160a01b03908116825260208087015167ffffffffffffffff90811682850190815260008781526003909352949091209251835494516001600160a01b031990951692169190911767ffffffffffffffff60a01b1916600160a01b93909116929092029190911790555b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461161c8686866001610caf565b505050505050565b61162c611d85565b611635826112f4565b6116515760405162461bcd60e51b8152600401610710906122b1565b815b6000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff1691830191909152156116a25791506106529050565b50806116ad816129fa565b915050611653565b600780546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b60008261171485846119fd565b14949350505050565b611737828260405180602001604052806000815250611ab5565b5050565b6000826001600160a01b03168260405161175490612157565b60006040518083038185875af1925050503d8060008114611791576040519150601f19603f3d011682016040523d82523d6000602084013e611796565b606091505b50509050806107c95760405162461bcd60e51b815260040161071090612732565b60006117cb846001600160a01b0316611cff565b156118c757836001600160a01b031663150b7a026117e76112fb565b8786866040518563ffffffff1660e01b8152600401611809949392919061216e565b602060405180830381600087803b15801561182357600080fd5b505af1925050508015611853575060408051601f3d908101601f1916820190925261185091810190612027565b60015b6118ad573d808015611881576040519150601f19603f3d011682016040523d82523d6000602084013e611886565b606091505b5080516118a55760405162461bcd60e51b81526004016107109061275c565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506118cb565b5060015b949350505050565b6060600b805461066690612a11565b60608161190757506040805180820190915260018152600360fc1b6020820152610652565b8160005b8115611931578061191b81612a4c565b915061192a9050600a83612984565b915061190b565b60008167ffffffffffffffff81111561195a57634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015611984576020820181803683370190505b5090505b84156118cb576119996001836129b7565b91506119a6600a86612a67565b6119b190603061296c565b60f81b8183815181106119d457634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a9053506119f6600a86612984565b9450611988565b600081815b8451811015611aad576000858281518110611a2d57634e487b7160e01b600052603260045260246000fd5b60200260200101519050808311611a6e578281604051602001611a5192919061211a565b604051602081830303815290604052805190602001209250611a9a565b8083604051602001611a8192919061211a565b6040516020818303038152906040528051906020012092505b5080611aa581612a4c565b915050611a02565b509392505050565b6000546001600160a01b038416611ade5760405162461bcd60e51b8152600401610710906127e6565b611ae7816112f4565b15611b045760405162461bcd60e51b8152600401610710906127af565b60008311611b245760405162461bcd60e51b8152600401610710906126ef565b611b316000858386610caf565b6001600160a01b0384166000908152600460209081526040918290208251808401845290546001600160801b038082168352600160801b9091041691810191909152815180830190925280519091908190611b8d90879061294a565b6001600160801b03168152602001858360200151611bab919061294a565b6001600160801b039081169091526001600160a01b03808816600081815260046020908152604080832087518154988401518816600160801b029088166001600160801b031990991698909817909616969096179094558451808601865291825267ffffffffffffffff4281168386019081528883526003909552948120915182549451909516600160a01b0267ffffffffffffffff60a01b19959093166001600160a01b031990941693909317939093161790915582905b85811015611ced5760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4611cb160008884886117b7565b611ccd5760405162461bcd60e51b81526004016107109061275c565b81611cd781612a4c565b9250508080611ce590612a4c565b915050611c64565b50600081815561161c90878588610caf565b3b151590565b828054611d1190612a11565b90600052602060002090601f016020900481019282611d335760008555611d79565b82601f10611d4c5782800160ff19823516178555611d79565b82800160010185558215611d79579182015b82811115611d79578235825591602001919060010190611d5e565b5061099a929150611d9c565b604080518082019091526000808252602082015290565b5b8082111561099a5760008155600101611d9d565b80356001600160a01b038116811461065257600080fd5b600060208284031215611dd9578081fd5b6111c182611db1565b60008060408385031215611df4578081fd5b611dfd83611db1565b9150611e0b60208401611db1565b90509250929050565b600080600060608486031215611e28578081fd5b611e3184611db1565b9250611e3f60208501611db1565b9150604084013590509250925092565b60008060008060808587031215611e64578081fd5b611e6d85611db1565b93506020611e7c818701611db1565b935060408601359250606086013567ffffffffffffffff80821115611e9f578384fd5b818801915088601f830112611eb2578384fd5b813581811115611ec457611ec4612aa7565b604051601f8201601f1916810185018381118282101715611ee757611ee7612aa7565b60405281815283820185018b1015611efd578586fd5b81858501868301379081019093019390935250939692955090935050565b60008060408385031215611f2d578182fd5b611f3683611db1565b915060208301358015158114611f4a578182fd5b809150509250929050565b60008060408385031215611f67578182fd5b611f7083611db1565b946020939093013593505050565b600080600060408486031215611f92578283fd5b833567ffffffffffffffff80821115611fa9578485fd5b818601915086601f830112611fbc578485fd5b813581811115611fca578586fd5b8760208083028501011115611fdd578586fd5b6020928301989097509590910135949350505050565b600060208284031215612004578081fd5b5035919050565b60006020828403121561201c578081fd5b81356111c181612abd565b600060208284031215612038578081fd5b81516111c181612abd565b60008060208385031215612055578182fd5b823567ffffffffffffffff8082111561206c578384fd5b818501915085601f83011261207f578384fd5b81358181111561208d578485fd5b86602082850101111561209e578485fd5b60209290920196919550909350505050565b600080604083850312156120c2578182fd5b50508035926020909101359150565b600081518084526120e98160208601602086016129ce565b601f01601f19169290920160200192915050565b60609190911b6bffffffffffffffffffffffff1916815260140190565b918252602082015260400190565b6000835161213a8184602088016129ce565b83519083019061214e8183602088016129ce565b01949350505050565b90565b6001600160a01b0391909116815260200190565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906121a1908301846120d1565b9695505050505050565b901515815260200190565b90815260200190565b6000602082526111c160208301846120d1565b60208082526022908201527f455243373231413a206f776e657220696e646578206f7574206f6620626f756e604082015261647360f01b606082015260800190565b602080825260129082015271115e18d959591cc81b5a5b9d081b1a5b5a5d60721b604082015260600190565b602080825260119082015270139bdd081bdb88185b1b1bddc81b1a5cdd607a1b604082015260600190565b60208082526026908201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160408201526564647265737360d01b606082015260800190565b6020808252602a908201527f455243373231413a206f776e657220717565727920666f72206e6f6e657869736040820152693a32b73a103a37b5b2b760b11b606082015260800190565b6020808252601a908201527f45786365656473206d617820746f6b656e207075726368617365000000000000604082015260600190565b60208082526023908201527f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f756040820152626e647360e81b606082015260800190565b60208082526025908201527f455243373231413a207472616e7366657220746f20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526018908201527f53656e7420696e636f7272656374204554482076616c75650000000000000000604082015260600190565b60208082526012908201527150726573616c65206e6f742061637469766560701b604082015260600190565b6020808252601490820152734e6f2066756e647320746f20776974686472617760601b604082015260600190565b60208082526039908201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60408201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000606082015260800190565b6020808252602b908201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60408201526a65726f206164647265737360a81b606082015260800190565b60208082526019908201527f4d696e74206578636565647320746f74616c20737570706c7900000000000000604082015260600190565b60208082526026908201527f455243373231413a207472616e736665722066726f6d20696e636f72726563746040820152651037bbb732b960d11b606082015260800190565b6020808252601690820152755075626c69632073616c65206e6f742061637469766560501b604082015260600190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b6020808252602f908201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60408201526e3732bc34b9ba32b73a103a37b5b2b760891b606082015260800190565b6020808252601a908201527f455243373231413a20617070726f766520746f2063616c6c6572000000000000604082015260600190565b60208082526032908201527f455243373231413a207472616e736665722063616c6c6572206973206e6f74206040820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b606082015260800190565b60208082526022908201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60408201526132b960f11b606082015260800190565b60208082526023908201527f455243373231413a207175616e74697479206d7573742062652067726561746560408201526207220360ec1b606082015260800190565b60208082526010908201526f2a3930b739b332b9103330b4b632b21760811b604082015260600190565b60208082526033908201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260408201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b606082015260800190565b6020808252601d908201527f455243373231413a20746f6b656e20616c7265616479206d696e746564000000604082015260600190565b60208082526021908201527f455243373231413a206d696e7420746f20746865207a65726f206164647265736040820152607360f81b606082015260800190565b60208082526025908201527f43616e206f6e6c79206d696e742061206d756c7469706c65206f6620626174636040820152646853697a6560d81b606082015260800190565b6020808252602e908201527f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060408201526d0deeedccae440c4f240d2dcc8caf60931b606082015260800190565b6020808252602d908201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560408201526c3c34b9ba32b73a103a37b5b2b760991b606082015260800190565b60208082526023908201527f43616e2774206d696e74207468726f75676820616e6f7468657220636f6e74726040820152621858dd60ea1b606082015260800190565b60006001600160801b0380831681851680830382111561214e5761214e612a7b565b6000821982111561297f5761297f612a7b565b500190565b60008261299357612993612a91565b500490565b60008160001904831182151516156129b2576129b2612a7b565b500290565b6000828210156129c9576129c9612a7b565b500390565b60005b838110156129e95781810151838201526020016129d1565b83811115610caf5750506000910152565b600081612a0957612a09612a7b565b506000190190565b600281046001821680612a2557607f821691505b60208210811415612a4657634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415612a6057612a60612a7b565b5060010190565b600082612a7657612a76612a91565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610e8157600080fdfea26469706673582212209bd21d158b35e9c0137dc0ecc273f488945bd70db4f510f5982ab16ee7754aa164736f6c63430008000033

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.