ETH Price: $3,476.60 (+2.01%)
Gas: 8 Gwei

Token

M4 LAND NFT (M4LAND)
 

Overview

Max Total Supply

8,000 M4LAND

Holders

532

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
mdrfkr.eth
Balance
4 M4LAND
0x60314c86b99a2a108e5097fc2688aa1e3c30be30
Loading...
Loading
Loading...
Loading
Loading...
Loading

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

Contract Source Code Verified (Exact Match)

Contract Name:
M4Lands

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 13 : lands.sol
//SPDX-License-Identifier: MIT
pragma solidity >=0.7.0 <0.9.0;

import "@openzeppelin/contracts/token/ERC721/ERC721.sol";
import "@openzeppelin/contracts/utils/Counters.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/utils/cryptography/MerkleProof.sol";

contract M4Lands is ERC721, Ownable {
  using Strings for uint256;
  using Counters for Counters.Counter;
  Counters.Counter private supply;
  string public uriPrefix = "https://ipfs.m4rabbit.io/lands/";
  uint256 public cost = 0 ether;
  uint256 public maxSupply = 8000;
  uint256 public maxMintAmountPerTx = 10;
  bytes32 public WLMerkleRoot;
  bool public paused = true;
  bool public wl = true;

  constructor() ERC721("M4 LAND NFT", "M4LAND") {
    _mintLoop(0x65DB3fFCf5F4Da01095302b5418A6F12173658F2, 100);//reserve a bunch to the m4rabbit.eth wallet since this is a free mint we want to have some for holders who miss out
  }

  modifier mintCompliance(uint256 _mintAmount) {
    require(_mintAmount > 0 && _mintAmount <= maxMintAmountPerTx, "Invalid mint amount!");
    require(supply.current() + _mintAmount <= maxSupply, "Max supply exceeded!");
    _;
  }

  function setWl() public {
    wl = !wl;
  }

  function totalSupply() public view returns (uint256) {
    return supply.current();
  }

  function mint(uint256 _mintAmount, bytes32[] memory _proof) public payable mintCompliance(_mintAmount) {
    require(!paused, "The contract is paused!");
    bytes32 leaf = keccak256(abi.encodePacked(msg.sender));
    if (wl){
     require(MerkleProof.verify(_proof, WLMerkleRoot, leaf), "Not whitelisted");
     _mintLoop(msg.sender, _mintAmount);
    } else {
     _mintLoop(msg.sender, _mintAmount);
    }
  }

  function setSaleRoot(bytes32 _root) public onlyOwner {
    WLMerkleRoot = _root;
  }

  function mintForAddress(uint256 _mintAmount, address _receiver) public onlyOwner mintCompliance(_mintAmount) {
    _mintLoop(_receiver, _mintAmount);
  }

  function walletOfOwner(address _owner)
    public
    view
    returns (uint256[] memory)
  {
    uint256 ownerTokenCount = balanceOf(_owner);
    uint256[] memory ownedTokenIds = new uint256[](ownerTokenCount);
    uint256 currentTokenId = 1;
    uint256 ownedTokenIndex = 0;

    while (ownedTokenIndex < ownerTokenCount && currentTokenId <= maxSupply) {
      address currentTokenOwner = ownerOf(currentTokenId);
      if (currentTokenOwner == _owner) {
        ownedTokenIds[ownedTokenIndex] = currentTokenId;
        ownedTokenIndex++;
      }
      currentTokenId++;
    }
    return ownedTokenIds;
  }

  function tokenURI(uint256 _tokenId)
    public
    view
    virtual
    override
    returns (string memory)
  {
    require(
      _exists(_tokenId),
      "ERC721Metadata: URI query for nonexistent token"
    );

    string memory currentBaseURI = _baseURI();
    return bytes(currentBaseURI).length > 0
        ? string(abi.encodePacked(currentBaseURI, _tokenId.toString(), ".json"))        : "";
  }

  function setUriPrefix(string memory _uriPrefix) public onlyOwner {
    uriPrefix = _uriPrefix;
  }

  function Paused() public onlyOwner {
    paused = !paused;
  }

  function _mintLoop(address _receiver, uint256 _mintAmount) internal {
    for (uint256 i = 0; i < _mintAmount; i++) {
      supply.increment();
      _safeMint(_receiver, supply.current());
    }
  }

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

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

pragma solidity ^0.8.0;

/**
 * @dev These functions deal with verification of Merkle Tree 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.
 *
 * WARNING: You should avoid using leaf values that are 64 bytes long prior to
 * hashing, or use a hash function other than keccak256 for hashing leaves.
 * This is because the concatenation of a sorted pair of internal nodes in
 * the merkle tree could be reinterpreted as a leaf value.
 */
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 Calldata version of {verify}
     *
     * _Available since v4.7._
     */
    function verifyCalldata(
        bytes32[] calldata proof,
        bytes32 root,
        bytes32 leaf
    ) internal pure returns (bool) {
        return processProofCalldata(proof, leaf) == root;
    }

    /**
     * @dev Returns the rebuilt hash obtained by traversing a Merkle 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++) {
            computedHash = _hashPair(computedHash, proof[i]);
        }
        return computedHash;
    }

    /**
     * @dev Calldata version of {processProof}
     *
     * _Available since v4.7._
     */
    function processProofCalldata(bytes32[] calldata proof, bytes32 leaf) internal pure returns (bytes32) {
        bytes32 computedHash = leaf;
        for (uint256 i = 0; i < proof.length; i++) {
            computedHash = _hashPair(computedHash, proof[i]);
        }
        return computedHash;
    }

    /**
     * @dev Returns true if the `leaves` can be proved to be a part of a Merkle tree defined by
     * `root`, according to `proof` and `proofFlags` as described in {processMultiProof}.
     *
     * _Available since v4.7._
     */
    function multiProofVerify(
        bytes32[] memory proof,
        bool[] memory proofFlags,
        bytes32 root,
        bytes32[] memory leaves
    ) internal pure returns (bool) {
        return processMultiProof(proof, proofFlags, leaves) == root;
    }

    /**
     * @dev Calldata version of {multiProofVerify}
     *
     * _Available since v4.7._
     */
    function multiProofVerifyCalldata(
        bytes32[] calldata proof,
        bool[] calldata proofFlags,
        bytes32 root,
        bytes32[] memory leaves
    ) internal pure returns (bool) {
        return processMultiProofCalldata(proof, proofFlags, leaves) == root;
    }

    /**
     * @dev Returns the root of a tree reconstructed from `leaves` and the sibling nodes in `proof`,
     * consuming from one or the other at each step according to the instructions given by
     * `proofFlags`.
     *
     * _Available since v4.7._
     */
    function processMultiProof(
        bytes32[] memory proof,
        bool[] memory proofFlags,
        bytes32[] memory leaves
    ) internal pure returns (bytes32 merkleRoot) {
        // This function rebuild the root hash by traversing the tree up from the leaves. The root is rebuilt by
        // consuming and producing values on a queue. The queue starts with the `leaves` array, then goes onto the
        // `hashes` array. At the end of the process, the last hash in the `hashes` array should contain the root of
        // the merkle tree.
        uint256 leavesLen = leaves.length;
        uint256 totalHashes = proofFlags.length;

        // Check proof validity.
        require(leavesLen + proof.length - 1 == totalHashes, "MerkleProof: invalid multiproof");

        // The xxxPos values are "pointers" to the next value to consume in each array. All accesses are done using
        // `xxx[xxxPos++]`, which return the current value and increment the pointer, thus mimicking a queue's "pop".
        bytes32[] memory hashes = new bytes32[](totalHashes);
        uint256 leafPos = 0;
        uint256 hashPos = 0;
        uint256 proofPos = 0;
        // At each step, we compute the next hash using two values:
        // - a value from the "main queue". If not all leaves have been consumed, we get the next leaf, otherwise we
        //   get the next hash.
        // - depending on the flag, either another value for the "main queue" (merging branches) or an element from the
        //   `proof` array.
        for (uint256 i = 0; i < totalHashes; i++) {
            bytes32 a = leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++];
            bytes32 b = proofFlags[i] ? leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++] : proof[proofPos++];
            hashes[i] = _hashPair(a, b);
        }

        if (totalHashes > 0) {
            return hashes[totalHashes - 1];
        } else if (leavesLen > 0) {
            return leaves[0];
        } else {
            return proof[0];
        }
    }

    /**
     * @dev Calldata version of {processMultiProof}
     *
     * _Available since v4.7._
     */
    function processMultiProofCalldata(
        bytes32[] calldata proof,
        bool[] calldata proofFlags,
        bytes32[] memory leaves
    ) internal pure returns (bytes32 merkleRoot) {
        // This function rebuild the root hash by traversing the tree up from the leaves. The root is rebuilt by
        // consuming and producing values on a queue. The queue starts with the `leaves` array, then goes onto the
        // `hashes` array. At the end of the process, the last hash in the `hashes` array should contain the root of
        // the merkle tree.
        uint256 leavesLen = leaves.length;
        uint256 totalHashes = proofFlags.length;

        // Check proof validity.
        require(leavesLen + proof.length - 1 == totalHashes, "MerkleProof: invalid multiproof");

        // The xxxPos values are "pointers" to the next value to consume in each array. All accesses are done using
        // `xxx[xxxPos++]`, which return the current value and increment the pointer, thus mimicking a queue's "pop".
        bytes32[] memory hashes = new bytes32[](totalHashes);
        uint256 leafPos = 0;
        uint256 hashPos = 0;
        uint256 proofPos = 0;
        // At each step, we compute the next hash using two values:
        // - a value from the "main queue". If not all leaves have been consumed, we get the next leaf, otherwise we
        //   get the next hash.
        // - depending on the flag, either another value for the "main queue" (merging branches) or an element from the
        //   `proof` array.
        for (uint256 i = 0; i < totalHashes; i++) {
            bytes32 a = leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++];
            bytes32 b = proofFlags[i] ? leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++] : proof[proofPos++];
            hashes[i] = _hashPair(a, b);
        }

        if (totalHashes > 0) {
            return hashes[totalHashes - 1];
        } else if (leavesLen > 0) {
            return leaves[0];
        } else {
            return proof[0];
        }
    }

    function _hashPair(bytes32 a, bytes32 b) private pure returns (bytes32) {
        return a < b ? _efficientHash(a, b) : _efficientHash(b, a);
    }

    function _efficientHash(bytes32 a, bytes32 b) private pure returns (bytes32 value) {
        /// @solidity memory-safe-assembly
        assembly {
            mstore(0x00, a)
            mstore(0x20, b)
            value := keccak256(0x00, 0x40)
        }
    }
}

File 3 of 13 : Ownable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol)

pragma solidity ^0.8.0;

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

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

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

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

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        _checkOwner();
        _;
    }

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

    /**
     * @dev Throws if the sender is not the owner.
     */
    function _checkOwner() internal view virtual {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
    }

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

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

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

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

pragma solidity ^0.8.0;

/**
 * @title Counters
 * @author Matt Condon (@shrugs)
 * @dev Provides counters that can only be incremented, decremented or reset. This can be used e.g. to track the number
 * of elements in a mapping, issuing ERC721 ids, or counting request ids.
 *
 * Include with `using Counters for Counters.Counter;`
 */
library Counters {
    struct Counter {
        // This variable should never be directly accessed by users of the library: interactions must be restricted to
        // the library's function. As of Solidity v0.5.2, this cannot be enforced, though there is a proposal to add
        // this feature: see https://github.com/ethereum/solidity/issues/4637
        uint256 _value; // default: 0
    }

    function current(Counter storage counter) internal view returns (uint256) {
        return counter._value;
    }

    function increment(Counter storage counter) internal {
        unchecked {
            counter._value += 1;
        }
    }

    function decrement(Counter storage counter) internal {
        uint256 value = counter._value;
        require(value > 0, "Counter: decrement overflow");
        unchecked {
            counter._value = value - 1;
        }
    }

    function reset(Counter storage counter) internal {
        counter._value = 0;
    }
}

File 5 of 13 : ERC721.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (token/ERC721/ERC721.sol)

pragma solidity ^0.8.0;

import "./IERC721.sol";
import "./IERC721Receiver.sol";
import "./extensions/IERC721Metadata.sol";
import "../../utils/Address.sol";
import "../../utils/Context.sol";
import "../../utils/Strings.sol";
import "../../utils/introspection/ERC165.sol";

/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
 * the Metadata extension, but not including the Enumerable extension, which is available separately as
 * {ERC721Enumerable}.
 */
contract ERC721 is Context, ERC165, IERC721, IERC721Metadata {
    using Address for address;
    using Strings for uint256;

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

    // Mapping from token ID to owner address
    mapping(uint256 => address) private _owners;

    // Mapping owner address to token count
    mapping(address => uint256) private _balances;

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

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

    /**
     * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection.
     */
    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

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

    /**
     * @dev See {IERC721-balanceOf}.
     */
    function balanceOf(address owner) public view virtual override returns (uint256) {
        require(owner != address(0), "ERC721: address zero is not a valid owner");
        return _balances[owner];
    }

    /**
     * @dev See {IERC721-ownerOf}.
     */
    function ownerOf(uint256 tokenId) public view virtual override returns (address) {
        address owner = _owners[tokenId];
        require(owner != address(0), "ERC721: invalid token ID");
        return owner;
    }

    /**
     * @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) {
        _requireMinted(tokenId);

        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 overridden in child contracts.
     */
    function _baseURI() internal view virtual returns (string memory) {
        return "";
    }

    /**
     * @dev See {IERC721-approve}.
     */
    function approve(address to, uint256 tokenId) public virtual override {
        address owner = ERC721.ownerOf(tokenId);
        require(to != owner, "ERC721: approval to current owner");

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

        _approve(to, tokenId);
    }

    /**
     * @dev See {IERC721-getApproved}.
     */
    function getApproved(uint256 tokenId) public view virtual override returns (address) {
        _requireMinted(tokenId);

        return _tokenApprovals[tokenId];
    }

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

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

    /**
     * @dev See {IERC721-transferFrom}.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        //solhint-disable-next-line max-line-length
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: caller is not token owner nor approved");

        _transfer(from, to, tokenId);
    }

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

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes memory data
    ) public virtual override {
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: caller is not token owner nor approved");
        _safeTransfer(from, to, tokenId, data);
    }

    /**
     * @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.
     *
     * `data` is additional data, it has no specified format and it is sent in call to `to`.
     *
     * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g.
     * implement alternative mechanisms to perform token transfer, such as signature-based.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function _safeTransfer(
        address from,
        address to,
        uint256 tokenId,
        bytes memory data
    ) internal virtual {
        _transfer(from, to, tokenId);
        require(_checkOnERC721Received(from, to, tokenId, data), "ERC721: 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`),
     * and stop existing when they are burned (`_burn`).
     */
    function _exists(uint256 tokenId) internal view virtual returns (bool) {
        return _owners[tokenId] != address(0);
    }

    /**
     * @dev Returns whether `spender` is allowed to manage `tokenId`.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) {
        address owner = ERC721.ownerOf(tokenId);
        return (spender == owner || isApprovedForAll(owner, spender) || getApproved(tokenId) == spender);
    }

    /**
     * @dev Safely mints `tokenId` and transfers it to `to`.
     *
     * Requirements:
     *
     * - `tokenId` must not exist.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function _safeMint(address to, uint256 tokenId) internal virtual {
        _safeMint(to, tokenId, "");
    }

    /**
     * @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is
     * forwarded in {IERC721Receiver-onERC721Received} to contract recipients.
     */
    function _safeMint(
        address to,
        uint256 tokenId,
        bytes memory data
    ) internal virtual {
        _mint(to, tokenId);
        require(
            _checkOnERC721Received(address(0), to, tokenId, data),
            "ERC721: transfer to non ERC721Receiver implementer"
        );
    }

    /**
     * @dev Mints `tokenId` and transfers it to `to`.
     *
     * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible
     *
     * Requirements:
     *
     * - `tokenId` must not exist.
     * - `to` cannot be the zero address.
     *
     * Emits a {Transfer} event.
     */
    function _mint(address to, uint256 tokenId) internal virtual {
        require(to != address(0), "ERC721: mint to the zero address");
        require(!_exists(tokenId), "ERC721: token already minted");

        _beforeTokenTransfer(address(0), to, tokenId);

        _balances[to] += 1;
        _owners[tokenId] = to;

        emit Transfer(address(0), to, tokenId);

        _afterTokenTransfer(address(0), to, tokenId);
    }

    /**
     * @dev Destroys `tokenId`.
     * The approval is cleared when the token is burned.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     *
     * Emits a {Transfer} event.
     */
    function _burn(uint256 tokenId) internal virtual {
        address owner = ERC721.ownerOf(tokenId);

        _beforeTokenTransfer(owner, address(0), tokenId);

        // Clear approvals
        _approve(address(0), tokenId);

        _balances[owner] -= 1;
        delete _owners[tokenId];

        emit Transfer(owner, address(0), tokenId);

        _afterTokenTransfer(owner, address(0), tokenId);
    }

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *  As opposed to {transferFrom}, this imposes no restrictions on msg.sender.
     *
     * 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
    ) internal virtual {
        require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer from incorrect owner");
        require(to != address(0), "ERC721: transfer to the zero address");

        _beforeTokenTransfer(from, to, tokenId);

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

        _balances[from] -= 1;
        _balances[to] += 1;
        _owners[tokenId] = to;

        emit Transfer(from, to, tokenId);

        _afterTokenTransfer(from, to, tokenId);
    }

    /**
     * @dev Approve `to` to operate on `tokenId`
     *
     * Emits an {Approval} event.
     */
    function _approve(address to, uint256 tokenId) internal virtual {
        _tokenApprovals[tokenId] = to;
        emit Approval(ERC721.ownerOf(tokenId), to, tokenId);
    }

    /**
     * @dev Approve `operator` to operate on all of `owner` tokens
     *
     * Emits an {ApprovalForAll} event.
     */
    function _setApprovalForAll(
        address owner,
        address operator,
        bool approved
    ) internal virtual {
        require(owner != operator, "ERC721: approve to caller");
        _operatorApprovals[owner][operator] = approved;
        emit ApprovalForAll(owner, operator, approved);
    }

    /**
     * @dev Reverts if the `tokenId` has not been minted yet.
     */
    function _requireMinted(uint256 tokenId) internal view virtual {
        require(_exists(tokenId), "ERC721: invalid token ID");
    }

    /**
     * @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.onERC721Received.selector;
            } catch (bytes memory reason) {
                if (reason.length == 0) {
                    revert("ERC721: transfer to non ERC721Receiver implementer");
                } else {
                    /// @solidity memory-safe-assembly
                    assembly {
                        revert(add(32, reason), mload(reason))
                    }
                }
            }
        } else {
            return true;
        }
    }

    /**
     * @dev Hook that is called before any token transfer. This includes minting
     * and burning.
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be
     * transferred to `to`.
     * - When `from` is zero, `tokenId` will be minted for `to`.
     * - When `to` is zero, ``from``'s `tokenId` will be burned.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {}

    /**
     * @dev Hook that is called after any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _afterTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {}
}

File 6 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 7 of 13 : Strings.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (utils/Strings.sol)

pragma solidity ^0.8.0;

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

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

    /**
     * @dev Converts an `address` with fixed length of 20 bytes to its not checksummed ASCII `string` hexadecimal representation.
     */
    function toHexString(address addr) internal pure returns (string memory) {
        return toHexString(uint256(uint160(addr)), _ADDRESS_LENGTH);
    }
}

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

pragma solidity ^0.8.1;

/**
 * @dev Collection of functions related to the address type
 */
library Address {
    /**
     * @dev Returns true if `account` is a contract.
     *
     * [IMPORTANT]
     * ====
     * It is unsafe to assume that an address for which this function returns
     * false is an externally-owned account (EOA) and not a contract.
     *
     * Among others, `isContract` will return false for the following
     * types of addresses:
     *
     *  - an externally-owned account
     *  - a contract in construction
     *  - an address where a contract will be created
     *  - an address where a contract lived, but was destroyed
     * ====
     *
     * [IMPORTANT]
     * ====
     * You shouldn't rely on `isContract` to protect against flash loan attacks!
     *
     * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets
     * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract
     * constructor.
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize/address.code.length, which returns 0
        // for contracts in construction, since the code is only stored at the end
        // of the constructor execution.

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

File 10 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 11 of 13 : IERC721Receiver.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC721/IERC721Receiver.sol)

pragma solidity ^0.8.0;

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

File 12 of 13 : IERC721.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (token/ERC721/IERC721.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

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

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`.
     *
     * 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;

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

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

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

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": false,
    "runs": 200
  },
  "outputSelection": {
    "*": {
      "*": [
        "evm.bytecode",
        "evm.deployedBytecode",
        "devdoc",
        "userdoc",
        "metadata",
        "abi"
      ]
    }
  }
}

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":"Paused","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"WLMerkleRoot","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"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":[],"name":"cost","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":"maxMintAmountPerTx","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"},{"internalType":"bytes32[]","name":"_proof","type":"bytes32[]"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"},{"internalType":"address","name":"_receiver","type":"address"}],"name":"mintForAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_root","type":"bytes32"}],"name":"setSaleRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uriPrefix","type":"string"}],"name":"setUriPrefix","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"setWl","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uriPrefix","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"walletOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"wl","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"}]

60806040526040518060400160405280601f81526020017f68747470733a2f2f697066732e6d347261626269742e696f2f6c616e64732f008152506008908051906020019062000051929190620007cc565b506000600955611f40600a55600a600b556001600d60006101000a81548160ff0219169083151502179055506001600d60016101000a81548160ff021916908315150217905550348015620000a557600080fd5b506040518060400160405280600b81526020017f4d34204c414e44204e46540000000000000000000000000000000000000000008152506040518060400160405280600681526020017f4d344c414e44000000000000000000000000000000000000000000000000000081525081600090805190602001906200012a929190620007cc565b50806001908051906020019062000143929190620007cc565b505050620001666200015a6200019360201b60201c565b6200019b60201b60201c565b6200018d7365db3ffcf5f4da01095302b5418a6f12173658f260646200026160201b60201c565b62000d34565b600033905090565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60005b81811015620002c257620002846007620002c760201b620013db1760201c565b620002ac83620002a06007620002dd60201b620013f11760201c565b620002eb60201b60201c565b8080620002b99062000bb7565b91505062000264565b505050565b6001816000016000828254019250508190555050565b600081600001549050919050565b6200030d8282604051806020016040528060008152506200031160201b60201c565b5050565b6200032383836200037f60201b60201c565b6200033860008484846200057960201b60201c565b6200037a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200037190620009f1565b60405180910390fd5b505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415620003f2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620003e99062000a35565b60405180910390fd5b62000403816200073360201b60201c565b1562000446576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200043d9062000a13565b60405180910390fd5b6200045a600083836200079f60201b60201c565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254620004ac919062000a84565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46200057560008383620007a460201b60201c565b5050565b6000620005a78473ffffffffffffffffffffffffffffffffffffffff16620007a960201b620013ff1760201c565b1562000726578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02620005d96200019360201b60201c565b8786866040518563ffffffff1660e01b8152600401620005fd94939291906200099d565b602060405180830381600087803b1580156200061857600080fd5b505af19250505080156200064c57506040513d601f19601f8201168201806040525081019062000649919062000893565b60015b620006d5573d80600081146200067f576040519150601f19603f3d011682016040523d82523d6000602084013e62000684565b606091505b50600081511415620006cd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620006c490620009f1565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506200072b565b600190505b949350505050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b505050565b505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b828054620007da9062000b81565b90600052602060002090601f016020900481019282620007fe57600085556200084a565b82601f106200081957805160ff19168380011785556200084a565b828001600101855582156200084a579182015b82811115620008495782518255916020019190600101906200082c565b5b5090506200085991906200085d565b5090565b5b80821115620008785760008160009055506001016200085e565b5090565b6000815190506200088d8162000d1a565b92915050565b600060208284031215620008ac57620008ab62000c63565b5b6000620008bc848285016200087c565b91505092915050565b620008d08162000ae1565b82525050565b6000620008e38262000a57565b620008ef818562000a62565b93506200090181856020860162000b4b565b6200090c8162000c68565b840191505092915050565b60006200092660328362000a73565b9150620009338262000c79565b604082019050919050565b60006200094d601c8362000a73565b91506200095a8262000cc8565b602082019050919050565b60006200097460208362000a73565b9150620009818262000cf1565b602082019050919050565b620009978162000b41565b82525050565b6000608082019050620009b46000830187620008c5565b620009c36020830186620008c5565b620009d260408301856200098c565b8181036060830152620009e68184620008d6565b905095945050505050565b6000602082019050818103600083015262000a0c8162000917565b9050919050565b6000602082019050818103600083015262000a2e816200093e565b9050919050565b6000602082019050818103600083015262000a508162000965565b9050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600062000a918262000b41565b915062000a9e8362000b41565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111562000ad65762000ad562000c05565b5b828201905092915050565b600062000aee8262000b21565b9050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b60005b8381101562000b6b57808201518184015260208101905062000b4e565b8381111562000b7b576000848401525b50505050565b6000600282049050600182168062000b9a57607f821691505b6020821081141562000bb15762000bb062000c34565b5b50919050565b600062000bc48262000b41565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141562000bfa5762000bf962000c05565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600080fd5b6000601f19601f8301169050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b62000d258162000af5565b811462000d3157600080fd5b50565b613a4f8062000d446000396000f3fe6080604052600436106101d85760003560e01c80638cb4a26711610102578063ba41b0c611610095578063df8b57fc11610064578063df8b57fc1461068d578063e985e9c5146106a4578063efbd73f4146106e1578063f2fde38b1461070a576101d8565b8063ba41b0c6146105de578063c87b56dd146105fa578063c8eb66b214610637578063d5abeb0114610662576101d8565b80639e87fac8116100d15780639e87fac81461054a578063a22cb46514610561578063aea483281461058a578063b88d4fde146105b5576101d8565b80638cb4a267146104a05780638da5cb5b146104c957806394354fd0146104f457806395d89b411461051f576101d8565b806342842e0e1161017a5780636352211e116101495780636352211e146103e657806370a0823114610423578063715018a6146104605780637ec4a65914610477576101d8565b806342842e0e1461032a578063438b6300146103535780635c975abb1461039057806362b99ad4146103bb576101d8565b8063095ea7b3116101b6578063095ea7b31461028257806313faede6146102ab57806318160ddd146102d657806323b872dd14610301576101d8565b806301ffc9a7146101dd57806306fdde031461021a578063081812fc14610245575b600080fd5b3480156101e957600080fd5b5061020460048036038101906101ff9190612772565b610733565b6040516102119190612dc5565b60405180910390f35b34801561022657600080fd5b5061022f610815565b60405161023c9190612dfb565b60405180910390f35b34801561025157600080fd5b5061026c60048036038101906102679190612815565b6108a7565b6040516102799190612d3c565b60405180910390f35b34801561028e57600080fd5b506102a960048036038101906102a49190612705565b6108ed565b005b3480156102b757600080fd5b506102c0610a05565b6040516102cd919061305d565b60405180910390f35b3480156102e257600080fd5b506102eb610a0b565b6040516102f8919061305d565b60405180910390f35b34801561030d57600080fd5b50610328600480360381019061032391906125ef565b610a1c565b005b34801561033657600080fd5b50610351600480360381019061034c91906125ef565b610a7c565b005b34801561035f57600080fd5b5061037a60048036038101906103759190612582565b610a9c565b6040516103879190612da3565b60405180910390f35b34801561039c57600080fd5b506103a5610ba7565b6040516103b29190612dc5565b60405180910390f35b3480156103c757600080fd5b506103d0610bba565b6040516103dd9190612dfb565b60405180910390f35b3480156103f257600080fd5b5061040d60048036038101906104089190612815565b610c48565b60405161041a9190612d3c565b60405180910390f35b34801561042f57600080fd5b5061044a60048036038101906104459190612582565b610cfa565b604051610457919061305d565b60405180910390f35b34801561046c57600080fd5b50610475610db2565b005b34801561048357600080fd5b5061049e600480360381019061049991906127cc565b610dc6565b005b3480156104ac57600080fd5b506104c760048036038101906104c29190612745565b610de8565b005b3480156104d557600080fd5b506104de610dfa565b6040516104eb9190612d3c565b60405180910390f35b34801561050057600080fd5b50610509610e24565b604051610516919061305d565b60405180910390f35b34801561052b57600080fd5b50610534610e2a565b6040516105419190612dfb565b60405180910390f35b34801561055657600080fd5b5061055f610ebc565b005b34801561056d57600080fd5b50610588600480360381019061058391906126c5565b610ef0565b005b34801561059657600080fd5b5061059f610f06565b6040516105ac9190612de0565b60405180910390f35b3480156105c157600080fd5b506105dc60048036038101906105d79190612642565b610f0c565b005b6105f860048036038101906105f39190612882565b610f6e565b005b34801561060657600080fd5b50610621600480360381019061061c9190612815565b611115565b60405161062e9190612dfb565b60405180910390f35b34801561064357600080fd5b5061064c6111bc565b6040516106599190612dc5565b60405180910390f35b34801561066e57600080fd5b506106776111cf565b604051610684919061305d565b60405180910390f35b34801561069957600080fd5b506106a26111d5565b005b3480156106b057600080fd5b506106cb60048036038101906106c691906125af565b611201565b6040516106d89190612dc5565b60405180910390f35b3480156106ed57600080fd5b5061070860048036038101906107039190612842565b611295565b005b34801561071657600080fd5b50610731600480360381019061072c9190612582565b611357565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806107fe57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061080e575061080d82611422565b5b9050919050565b60606000805461082490613322565b80601f016020809104026020016040519081016040528092919081815260200182805461085090613322565b801561089d5780601f106108725761010080835404028352916020019161089d565b820191906000526020600020905b81548152906001019060200180831161088057829003601f168201915b5050505050905090565b60006108b28261148c565b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006108f882610c48565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610969576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161096090612ffd565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166109886114d7565b73ffffffffffffffffffffffffffffffffffffffff1614806109b757506109b6816109b16114d7565b611201565b5b6109f6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109ed90612f3d565b60405180910390fd5b610a0083836114df565b505050565b60095481565b6000610a1760076113f1565b905090565b610a2d610a276114d7565b82611598565b610a6c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a639061303d565b60405180910390fd5b610a7783838361162d565b505050565b610a9783838360405180602001604052806000815250610f0c565b505050565b60606000610aa983610cfa565b905060008167ffffffffffffffff811115610ac757610ac66134df565b5b604051908082528060200260200182016040528015610af55781602001602082028036833780820191505090505b50905060006001905060005b8381108015610b125750600a548211155b15610b9b576000610b2283610c48565b90508673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610b875782848381518110610b6c57610b6b6134b0565b5b6020026020010181815250508180610b8390613385565b9250505b8280610b9290613385565b93505050610b01565b82945050505050919050565b600d60009054906101000a900460ff1681565b60088054610bc790613322565b80601f0160208091040260200160405190810160405280929190818152602001828054610bf390613322565b8015610c405780601f10610c1557610100808354040283529160200191610c40565b820191906000526020600020905b815481529060010190602001808311610c2357829003601f168201915b505050505081565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610cf1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ce890612fdd565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610d6b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d6290612efd565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610dba611894565b610dc46000611912565b565b610dce611894565b8060089080519060200190610de49291906122e3565b5050565b610df0611894565b80600c8190555050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600b5481565b606060018054610e3990613322565b80601f0160208091040260200160405190810160405280929190818152602001828054610e6590613322565b8015610eb25780601f10610e8757610100808354040283529160200191610eb2565b820191906000526020600020905b815481529060010190602001808311610e9557829003601f168201915b5050505050905090565b610ec4611894565b600d60009054906101000a900460ff1615600d60006101000a81548160ff021916908315150217905550565b610f02610efb6114d7565b83836119d8565b5050565b600c5481565b610f1d610f176114d7565b83611598565b610f5c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f539061303d565b60405180910390fd5b610f6884848484611b45565b50505050565b81600081118015610f815750600b548111155b610fc0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fb790612e9d565b60405180910390fd5b600a5481610fce60076113f1565b610fd891906131a7565b1115611019576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110109061301d565b60405180910390fd5b600d60009054906101000a900460ff1615611069576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161106090612f9d565b60405180910390fd5b60003360405160200161107c9190612cf2565b604051602081830303815290604052805190602001209050600d60019054906101000a900460ff1615611104576110b683600c5483611ba1565b6110f5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110ec90612f1d565b60405180910390fd5b6110ff3385611bb8565b61110f565b61110e3385611bb8565b5b50505050565b606061112082611bf8565b61115f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161115690612fbd565b60405180910390fd5b6000611169611c64565b9050600081511161118957604051806020016040528060008152506111b4565b8061119384611cf6565b6040516020016111a4929190612d0d565b6040516020818303038152906040525b915050919050565b600d60019054906101000a900460ff1681565b600a5481565b600d60019054906101000a900460ff1615600d60016101000a81548160ff021916908315150217905550565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61129d611894565b816000811180156112b05750600b548111155b6112ef576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112e690612e9d565b60405180910390fd5b600a54816112fd60076113f1565b61130791906131a7565b1115611348576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161133f9061301d565b60405180910390fd5b6113528284611bb8565b505050565b61135f611894565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156113cf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113c690612e3d565b60405180910390fd5b6113d881611912565b50565b6001816000016000828254019250508190555050565b600081600001549050919050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b61149581611bf8565b6114d4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114cb90612fdd565b60405180910390fd5b50565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff1661155283610c48565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000806115a483610c48565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614806115e657506115e58185611201565b5b8061162457508373ffffffffffffffffffffffffffffffffffffffff1661160c846108a7565b73ffffffffffffffffffffffffffffffffffffffff16145b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff1661164d82610c48565b73ffffffffffffffffffffffffffffffffffffffff16146116a3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161169a90612e5d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611713576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161170a90612ebd565b60405180910390fd5b61171e838383611e57565b6117296000826114df565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611779919061322e565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546117d091906131a7565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461188f838383611e5c565b505050565b61189c6114d7565b73ffffffffffffffffffffffffffffffffffffffff166118ba610dfa565b73ffffffffffffffffffffffffffffffffffffffff1614611910576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161190790612f7d565b60405180910390fd5b565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611a47576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a3e90612edd565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611b389190612dc5565b60405180910390a3505050565b611b5084848461162d565b611b5c84848484611e61565b611b9b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b9290612e1d565b60405180910390fd5b50505050565b600082611bae8584611ff8565b1490509392505050565b60005b81811015611bf357611bcd60076113db565b611be083611bdb60076113f1565b61204e565b8080611beb90613385565b915050611bbb565b505050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b606060088054611c7390613322565b80601f0160208091040260200160405190810160405280929190818152602001828054611c9f90613322565b8015611cec5780601f10611cc157610100808354040283529160200191611cec565b820191906000526020600020905b815481529060010190602001808311611ccf57829003601f168201915b5050505050905090565b60606000821415611d3e576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050611e52565b600082905060005b60008214611d70578080611d5990613385565b915050600a82611d6991906131fd565b9150611d46565b60008167ffffffffffffffff811115611d8c57611d8b6134df565b5b6040519080825280601f01601f191660200182016040528015611dbe5781602001600182028036833780820191505090505b5090505b60008514611e4b57600182611dd7919061322e565b9150600a85611de691906133f2565b6030611df291906131a7565b60f81b818381518110611e0857611e076134b0565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85611e4491906131fd565b9450611dc2565b8093505050505b919050565b505050565b505050565b6000611e828473ffffffffffffffffffffffffffffffffffffffff166113ff565b15611feb578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611eab6114d7565b8786866040518563ffffffff1660e01b8152600401611ecd9493929190612d57565b602060405180830381600087803b158015611ee757600080fd5b505af1925050508015611f1857506040513d601f19601f82011682018060405250810190611f15919061279f565b60015b611f9b573d8060008114611f48576040519150601f19603f3d011682016040523d82523d6000602084013e611f4d565b606091505b50600081511415611f93576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f8a90612e1d565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050611ff0565b600190505b949350505050565b60008082905060005b84518110156120435761202e82868381518110612021576120206134b0565b5b602002602001015161206c565b9150808061203b90613385565b915050612001565b508091505092915050565b612068828260405180602001604052806000815250612097565b5050565b60008183106120845761207f82846120f2565b61208f565b61208e83836120f2565b5b905092915050565b6120a18383612109565b6120ae6000848484611e61565b6120ed576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120e490612e1d565b60405180910390fd5b505050565b600082600052816020526040600020905092915050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612179576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161217090612f5d565b60405180910390fd5b61218281611bf8565b156121c2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121b990612e7d565b60405180910390fd5b6121ce60008383611e57565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461221e91906131a7565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46122df60008383611e5c565b5050565b8280546122ef90613322565b90600052602060002090601f0160209004810192826123115760008555612358565b82601f1061232a57805160ff1916838001178555612358565b82800160010185558215612358579182015b8281111561235757825182559160200191906001019061233c565b5b5090506123659190612369565b5090565b5b8082111561238257600081600090555060010161236a565b5090565b60006123996123948461309d565b613078565b905080838252602082019050828560208602820111156123bc576123bb613513565b5b60005b858110156123ec57816123d288826124d2565b8452602084019350602083019250506001810190506123bf565b5050509392505050565b6000612409612404846130c9565b613078565b90508281526020810184848401111561242557612424613518565b5b6124308482856132e0565b509392505050565b600061244b612446846130fa565b613078565b90508281526020810184848401111561246757612466613518565b5b6124728482856132e0565b509392505050565b600081359050612489816139a6565b92915050565b600082601f8301126124a4576124a361350e565b5b81356124b4848260208601612386565b91505092915050565b6000813590506124cc816139bd565b92915050565b6000813590506124e1816139d4565b92915050565b6000813590506124f6816139eb565b92915050565b60008151905061250b816139eb565b92915050565b600082601f8301126125265761252561350e565b5b81356125368482602086016123f6565b91505092915050565b600082601f8301126125545761255361350e565b5b8135612564848260208601612438565b91505092915050565b60008135905061257c81613a02565b92915050565b60006020828403121561259857612597613522565b5b60006125a68482850161247a565b91505092915050565b600080604083850312156125c6576125c5613522565b5b60006125d48582860161247a565b92505060206125e58582860161247a565b9150509250929050565b60008060006060848603121561260857612607613522565b5b60006126168682870161247a565b93505060206126278682870161247a565b92505060406126388682870161256d565b9150509250925092565b6000806000806080858703121561265c5761265b613522565b5b600061266a8782880161247a565b945050602061267b8782880161247a565b935050604061268c8782880161256d565b925050606085013567ffffffffffffffff8111156126ad576126ac61351d565b5b6126b987828801612511565b91505092959194509250565b600080604083850312156126dc576126db613522565b5b60006126ea8582860161247a565b92505060206126fb858286016124bd565b9150509250929050565b6000806040838503121561271c5761271b613522565b5b600061272a8582860161247a565b925050602061273b8582860161256d565b9150509250929050565b60006020828403121561275b5761275a613522565b5b6000612769848285016124d2565b91505092915050565b60006020828403121561278857612787613522565b5b6000612796848285016124e7565b91505092915050565b6000602082840312156127b5576127b4613522565b5b60006127c3848285016124fc565b91505092915050565b6000602082840312156127e2576127e1613522565b5b600082013567ffffffffffffffff811115612800576127ff61351d565b5b61280c8482850161253f565b91505092915050565b60006020828403121561282b5761282a613522565b5b60006128398482850161256d565b91505092915050565b6000806040838503121561285957612858613522565b5b60006128678582860161256d565b92505060206128788582860161247a565b9150509250929050565b6000806040838503121561289957612898613522565b5b60006128a78582860161256d565b925050602083013567ffffffffffffffff8111156128c8576128c761351d565b5b6128d48582860161248f565b9150509250929050565b60006128ea8383612cd4565b60208301905092915050565b6128ff81613262565b82525050565b61291661291182613262565b6133ce565b82525050565b60006129278261313b565b6129318185613169565b935061293c8361312b565b8060005b8381101561296d57815161295488826128de565b975061295f8361315c565b925050600181019050612940565b5085935050505092915050565b61298381613274565b82525050565b61299281613280565b82525050565b60006129a382613146565b6129ad818561317a565b93506129bd8185602086016132ef565b6129c681613527565b840191505092915050565b60006129dc82613151565b6129e6818561318b565b93506129f68185602086016132ef565b6129ff81613527565b840191505092915050565b6000612a1582613151565b612a1f818561319c565b9350612a2f8185602086016132ef565b80840191505092915050565b6000612a4860328361318b565b9150612a5382613545565b604082019050919050565b6000612a6b60268361318b565b9150612a7682613594565b604082019050919050565b6000612a8e60258361318b565b9150612a99826135e3565b604082019050919050565b6000612ab1601c8361318b565b9150612abc82613632565b602082019050919050565b6000612ad460148361318b565b9150612adf8261365b565b602082019050919050565b6000612af760248361318b565b9150612b0282613684565b604082019050919050565b6000612b1a60198361318b565b9150612b25826136d3565b602082019050919050565b6000612b3d60298361318b565b9150612b48826136fc565b604082019050919050565b6000612b60600f8361318b565b9150612b6b8261374b565b602082019050919050565b6000612b83603e8361318b565b9150612b8e82613774565b604082019050919050565b6000612ba660208361318b565b9150612bb1826137c3565b602082019050919050565b6000612bc960058361319c565b9150612bd4826137ec565b600582019050919050565b6000612bec60208361318b565b9150612bf782613815565b602082019050919050565b6000612c0f60178361318b565b9150612c1a8261383e565b602082019050919050565b6000612c32602f8361318b565b9150612c3d82613867565b604082019050919050565b6000612c5560188361318b565b9150612c60826138b6565b602082019050919050565b6000612c7860218361318b565b9150612c83826138df565b604082019050919050565b6000612c9b60148361318b565b9150612ca68261392e565b602082019050919050565b6000612cbe602e8361318b565b9150612cc982613957565b604082019050919050565b612cdd816132d6565b82525050565b612cec816132d6565b82525050565b6000612cfe8284612905565b60148201915081905092915050565b6000612d198285612a0a565b9150612d258284612a0a565b9150612d3082612bbc565b91508190509392505050565b6000602082019050612d5160008301846128f6565b92915050565b6000608082019050612d6c60008301876128f6565b612d7960208301866128f6565b612d866040830185612ce3565b8181036060830152612d988184612998565b905095945050505050565b60006020820190508181036000830152612dbd818461291c565b905092915050565b6000602082019050612dda600083018461297a565b92915050565b6000602082019050612df56000830184612989565b92915050565b60006020820190508181036000830152612e1581846129d1565b905092915050565b60006020820190508181036000830152612e3681612a3b565b9050919050565b60006020820190508181036000830152612e5681612a5e565b9050919050565b60006020820190508181036000830152612e7681612a81565b9050919050565b60006020820190508181036000830152612e9681612aa4565b9050919050565b60006020820190508181036000830152612eb681612ac7565b9050919050565b60006020820190508181036000830152612ed681612aea565b9050919050565b60006020820190508181036000830152612ef681612b0d565b9050919050565b60006020820190508181036000830152612f1681612b30565b9050919050565b60006020820190508181036000830152612f3681612b53565b9050919050565b60006020820190508181036000830152612f5681612b76565b9050919050565b60006020820190508181036000830152612f7681612b99565b9050919050565b60006020820190508181036000830152612f9681612bdf565b9050919050565b60006020820190508181036000830152612fb681612c02565b9050919050565b60006020820190508181036000830152612fd681612c25565b9050919050565b60006020820190508181036000830152612ff681612c48565b9050919050565b6000602082019050818103600083015261301681612c6b565b9050919050565b6000602082019050818103600083015261303681612c8e565b9050919050565b6000602082019050818103600083015261305681612cb1565b9050919050565b60006020820190506130726000830184612ce3565b92915050565b6000613082613093565b905061308e8282613354565b919050565b6000604051905090565b600067ffffffffffffffff8211156130b8576130b76134df565b5b602082029050602081019050919050565b600067ffffffffffffffff8211156130e4576130e36134df565b5b6130ed82613527565b9050602081019050919050565b600067ffffffffffffffff821115613115576131146134df565b5b61311e82613527565b9050602081019050919050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b60006131b2826132d6565b91506131bd836132d6565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156131f2576131f1613423565b5b828201905092915050565b6000613208826132d6565b9150613213836132d6565b92508261322357613222613452565b5b828204905092915050565b6000613239826132d6565b9150613244836132d6565b92508282101561325757613256613423565b5b828203905092915050565b600061326d826132b6565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b8381101561330d5780820151818401526020810190506132f2565b8381111561331c576000848401525b50505050565b6000600282049050600182168061333a57607f821691505b6020821081141561334e5761334d613481565b5b50919050565b61335d82613527565b810181811067ffffffffffffffff8211171561337c5761337b6134df565b5b80604052505050565b6000613390826132d6565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156133c3576133c2613423565b5b600182019050919050565b60006133d9826133e0565b9050919050565b60006133eb82613538565b9050919050565b60006133fd826132d6565b9150613408836132d6565b92508261341857613417613452565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b60008160601b9050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f496e76616c6964206d696e7420616d6f756e7421000000000000000000000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a2061646472657373207a65726f206973206e6f74206120766160008201527f6c6964206f776e65720000000000000000000000000000000000000000000000602082015250565b7f4e6f742077686974656c69737465640000000000000000000000000000000000600082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60008201527f6b656e206f776e6572206e6f7220617070726f76656420666f7220616c6c0000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f54686520636f6e74726163742069732070617573656421000000000000000000600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4552433732313a20696e76616c696420746f6b656e2049440000000000000000600082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f4d617820737570706c7920657863656564656421000000000000000000000000600082015250565b7f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560008201527f72206e6f7220617070726f766564000000000000000000000000000000000000602082015250565b6139af81613262565b81146139ba57600080fd5b50565b6139c681613274565b81146139d157600080fd5b50565b6139dd81613280565b81146139e857600080fd5b50565b6139f48161328a565b81146139ff57600080fd5b50565b613a0b816132d6565b8114613a1657600080fd5b5056fea26469706673582212200abeafb9c15300e54d4d835df48aebc7218e4c81ce36a0935b0bf19bb5e8b03f64736f6c63430008070033

Deployed Bytecode

0x6080604052600436106101d85760003560e01c80638cb4a26711610102578063ba41b0c611610095578063df8b57fc11610064578063df8b57fc1461068d578063e985e9c5146106a4578063efbd73f4146106e1578063f2fde38b1461070a576101d8565b8063ba41b0c6146105de578063c87b56dd146105fa578063c8eb66b214610637578063d5abeb0114610662576101d8565b80639e87fac8116100d15780639e87fac81461054a578063a22cb46514610561578063aea483281461058a578063b88d4fde146105b5576101d8565b80638cb4a267146104a05780638da5cb5b146104c957806394354fd0146104f457806395d89b411461051f576101d8565b806342842e0e1161017a5780636352211e116101495780636352211e146103e657806370a0823114610423578063715018a6146104605780637ec4a65914610477576101d8565b806342842e0e1461032a578063438b6300146103535780635c975abb1461039057806362b99ad4146103bb576101d8565b8063095ea7b3116101b6578063095ea7b31461028257806313faede6146102ab57806318160ddd146102d657806323b872dd14610301576101d8565b806301ffc9a7146101dd57806306fdde031461021a578063081812fc14610245575b600080fd5b3480156101e957600080fd5b5061020460048036038101906101ff9190612772565b610733565b6040516102119190612dc5565b60405180910390f35b34801561022657600080fd5b5061022f610815565b60405161023c9190612dfb565b60405180910390f35b34801561025157600080fd5b5061026c60048036038101906102679190612815565b6108a7565b6040516102799190612d3c565b60405180910390f35b34801561028e57600080fd5b506102a960048036038101906102a49190612705565b6108ed565b005b3480156102b757600080fd5b506102c0610a05565b6040516102cd919061305d565b60405180910390f35b3480156102e257600080fd5b506102eb610a0b565b6040516102f8919061305d565b60405180910390f35b34801561030d57600080fd5b50610328600480360381019061032391906125ef565b610a1c565b005b34801561033657600080fd5b50610351600480360381019061034c91906125ef565b610a7c565b005b34801561035f57600080fd5b5061037a60048036038101906103759190612582565b610a9c565b6040516103879190612da3565b60405180910390f35b34801561039c57600080fd5b506103a5610ba7565b6040516103b29190612dc5565b60405180910390f35b3480156103c757600080fd5b506103d0610bba565b6040516103dd9190612dfb565b60405180910390f35b3480156103f257600080fd5b5061040d60048036038101906104089190612815565b610c48565b60405161041a9190612d3c565b60405180910390f35b34801561042f57600080fd5b5061044a60048036038101906104459190612582565b610cfa565b604051610457919061305d565b60405180910390f35b34801561046c57600080fd5b50610475610db2565b005b34801561048357600080fd5b5061049e600480360381019061049991906127cc565b610dc6565b005b3480156104ac57600080fd5b506104c760048036038101906104c29190612745565b610de8565b005b3480156104d557600080fd5b506104de610dfa565b6040516104eb9190612d3c565b60405180910390f35b34801561050057600080fd5b50610509610e24565b604051610516919061305d565b60405180910390f35b34801561052b57600080fd5b50610534610e2a565b6040516105419190612dfb565b60405180910390f35b34801561055657600080fd5b5061055f610ebc565b005b34801561056d57600080fd5b50610588600480360381019061058391906126c5565b610ef0565b005b34801561059657600080fd5b5061059f610f06565b6040516105ac9190612de0565b60405180910390f35b3480156105c157600080fd5b506105dc60048036038101906105d79190612642565b610f0c565b005b6105f860048036038101906105f39190612882565b610f6e565b005b34801561060657600080fd5b50610621600480360381019061061c9190612815565b611115565b60405161062e9190612dfb565b60405180910390f35b34801561064357600080fd5b5061064c6111bc565b6040516106599190612dc5565b60405180910390f35b34801561066e57600080fd5b506106776111cf565b604051610684919061305d565b60405180910390f35b34801561069957600080fd5b506106a26111d5565b005b3480156106b057600080fd5b506106cb60048036038101906106c691906125af565b611201565b6040516106d89190612dc5565b60405180910390f35b3480156106ed57600080fd5b5061070860048036038101906107039190612842565b611295565b005b34801561071657600080fd5b50610731600480360381019061072c9190612582565b611357565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806107fe57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061080e575061080d82611422565b5b9050919050565b60606000805461082490613322565b80601f016020809104026020016040519081016040528092919081815260200182805461085090613322565b801561089d5780601f106108725761010080835404028352916020019161089d565b820191906000526020600020905b81548152906001019060200180831161088057829003601f168201915b5050505050905090565b60006108b28261148c565b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006108f882610c48565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610969576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161096090612ffd565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166109886114d7565b73ffffffffffffffffffffffffffffffffffffffff1614806109b757506109b6816109b16114d7565b611201565b5b6109f6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109ed90612f3d565b60405180910390fd5b610a0083836114df565b505050565b60095481565b6000610a1760076113f1565b905090565b610a2d610a276114d7565b82611598565b610a6c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a639061303d565b60405180910390fd5b610a7783838361162d565b505050565b610a9783838360405180602001604052806000815250610f0c565b505050565b60606000610aa983610cfa565b905060008167ffffffffffffffff811115610ac757610ac66134df565b5b604051908082528060200260200182016040528015610af55781602001602082028036833780820191505090505b50905060006001905060005b8381108015610b125750600a548211155b15610b9b576000610b2283610c48565b90508673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610b875782848381518110610b6c57610b6b6134b0565b5b6020026020010181815250508180610b8390613385565b9250505b8280610b9290613385565b93505050610b01565b82945050505050919050565b600d60009054906101000a900460ff1681565b60088054610bc790613322565b80601f0160208091040260200160405190810160405280929190818152602001828054610bf390613322565b8015610c405780601f10610c1557610100808354040283529160200191610c40565b820191906000526020600020905b815481529060010190602001808311610c2357829003601f168201915b505050505081565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610cf1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ce890612fdd565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610d6b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d6290612efd565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610dba611894565b610dc46000611912565b565b610dce611894565b8060089080519060200190610de49291906122e3565b5050565b610df0611894565b80600c8190555050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600b5481565b606060018054610e3990613322565b80601f0160208091040260200160405190810160405280929190818152602001828054610e6590613322565b8015610eb25780601f10610e8757610100808354040283529160200191610eb2565b820191906000526020600020905b815481529060010190602001808311610e9557829003601f168201915b5050505050905090565b610ec4611894565b600d60009054906101000a900460ff1615600d60006101000a81548160ff021916908315150217905550565b610f02610efb6114d7565b83836119d8565b5050565b600c5481565b610f1d610f176114d7565b83611598565b610f5c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f539061303d565b60405180910390fd5b610f6884848484611b45565b50505050565b81600081118015610f815750600b548111155b610fc0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fb790612e9d565b60405180910390fd5b600a5481610fce60076113f1565b610fd891906131a7565b1115611019576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110109061301d565b60405180910390fd5b600d60009054906101000a900460ff1615611069576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161106090612f9d565b60405180910390fd5b60003360405160200161107c9190612cf2565b604051602081830303815290604052805190602001209050600d60019054906101000a900460ff1615611104576110b683600c5483611ba1565b6110f5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110ec90612f1d565b60405180910390fd5b6110ff3385611bb8565b61110f565b61110e3385611bb8565b5b50505050565b606061112082611bf8565b61115f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161115690612fbd565b60405180910390fd5b6000611169611c64565b9050600081511161118957604051806020016040528060008152506111b4565b8061119384611cf6565b6040516020016111a4929190612d0d565b6040516020818303038152906040525b915050919050565b600d60019054906101000a900460ff1681565b600a5481565b600d60019054906101000a900460ff1615600d60016101000a81548160ff021916908315150217905550565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61129d611894565b816000811180156112b05750600b548111155b6112ef576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112e690612e9d565b60405180910390fd5b600a54816112fd60076113f1565b61130791906131a7565b1115611348576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161133f9061301d565b60405180910390fd5b6113528284611bb8565b505050565b61135f611894565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156113cf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113c690612e3d565b60405180910390fd5b6113d881611912565b50565b6001816000016000828254019250508190555050565b600081600001549050919050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b61149581611bf8565b6114d4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114cb90612fdd565b60405180910390fd5b50565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff1661155283610c48565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000806115a483610c48565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614806115e657506115e58185611201565b5b8061162457508373ffffffffffffffffffffffffffffffffffffffff1661160c846108a7565b73ffffffffffffffffffffffffffffffffffffffff16145b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff1661164d82610c48565b73ffffffffffffffffffffffffffffffffffffffff16146116a3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161169a90612e5d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611713576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161170a90612ebd565b60405180910390fd5b61171e838383611e57565b6117296000826114df565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611779919061322e565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546117d091906131a7565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461188f838383611e5c565b505050565b61189c6114d7565b73ffffffffffffffffffffffffffffffffffffffff166118ba610dfa565b73ffffffffffffffffffffffffffffffffffffffff1614611910576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161190790612f7d565b60405180910390fd5b565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611a47576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a3e90612edd565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611b389190612dc5565b60405180910390a3505050565b611b5084848461162d565b611b5c84848484611e61565b611b9b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b9290612e1d565b60405180910390fd5b50505050565b600082611bae8584611ff8565b1490509392505050565b60005b81811015611bf357611bcd60076113db565b611be083611bdb60076113f1565b61204e565b8080611beb90613385565b915050611bbb565b505050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b606060088054611c7390613322565b80601f0160208091040260200160405190810160405280929190818152602001828054611c9f90613322565b8015611cec5780601f10611cc157610100808354040283529160200191611cec565b820191906000526020600020905b815481529060010190602001808311611ccf57829003601f168201915b5050505050905090565b60606000821415611d3e576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050611e52565b600082905060005b60008214611d70578080611d5990613385565b915050600a82611d6991906131fd565b9150611d46565b60008167ffffffffffffffff811115611d8c57611d8b6134df565b5b6040519080825280601f01601f191660200182016040528015611dbe5781602001600182028036833780820191505090505b5090505b60008514611e4b57600182611dd7919061322e565b9150600a85611de691906133f2565b6030611df291906131a7565b60f81b818381518110611e0857611e076134b0565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85611e4491906131fd565b9450611dc2565b8093505050505b919050565b505050565b505050565b6000611e828473ffffffffffffffffffffffffffffffffffffffff166113ff565b15611feb578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611eab6114d7565b8786866040518563ffffffff1660e01b8152600401611ecd9493929190612d57565b602060405180830381600087803b158015611ee757600080fd5b505af1925050508015611f1857506040513d601f19601f82011682018060405250810190611f15919061279f565b60015b611f9b573d8060008114611f48576040519150601f19603f3d011682016040523d82523d6000602084013e611f4d565b606091505b50600081511415611f93576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f8a90612e1d565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050611ff0565b600190505b949350505050565b60008082905060005b84518110156120435761202e82868381518110612021576120206134b0565b5b602002602001015161206c565b9150808061203b90613385565b915050612001565b508091505092915050565b612068828260405180602001604052806000815250612097565b5050565b60008183106120845761207f82846120f2565b61208f565b61208e83836120f2565b5b905092915050565b6120a18383612109565b6120ae6000848484611e61565b6120ed576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120e490612e1d565b60405180910390fd5b505050565b600082600052816020526040600020905092915050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612179576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161217090612f5d565b60405180910390fd5b61218281611bf8565b156121c2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121b990612e7d565b60405180910390fd5b6121ce60008383611e57565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461221e91906131a7565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46122df60008383611e5c565b5050565b8280546122ef90613322565b90600052602060002090601f0160209004810192826123115760008555612358565b82601f1061232a57805160ff1916838001178555612358565b82800160010185558215612358579182015b8281111561235757825182559160200191906001019061233c565b5b5090506123659190612369565b5090565b5b8082111561238257600081600090555060010161236a565b5090565b60006123996123948461309d565b613078565b905080838252602082019050828560208602820111156123bc576123bb613513565b5b60005b858110156123ec57816123d288826124d2565b8452602084019350602083019250506001810190506123bf565b5050509392505050565b6000612409612404846130c9565b613078565b90508281526020810184848401111561242557612424613518565b5b6124308482856132e0565b509392505050565b600061244b612446846130fa565b613078565b90508281526020810184848401111561246757612466613518565b5b6124728482856132e0565b509392505050565b600081359050612489816139a6565b92915050565b600082601f8301126124a4576124a361350e565b5b81356124b4848260208601612386565b91505092915050565b6000813590506124cc816139bd565b92915050565b6000813590506124e1816139d4565b92915050565b6000813590506124f6816139eb565b92915050565b60008151905061250b816139eb565b92915050565b600082601f8301126125265761252561350e565b5b81356125368482602086016123f6565b91505092915050565b600082601f8301126125545761255361350e565b5b8135612564848260208601612438565b91505092915050565b60008135905061257c81613a02565b92915050565b60006020828403121561259857612597613522565b5b60006125a68482850161247a565b91505092915050565b600080604083850312156125c6576125c5613522565b5b60006125d48582860161247a565b92505060206125e58582860161247a565b9150509250929050565b60008060006060848603121561260857612607613522565b5b60006126168682870161247a565b93505060206126278682870161247a565b92505060406126388682870161256d565b9150509250925092565b6000806000806080858703121561265c5761265b613522565b5b600061266a8782880161247a565b945050602061267b8782880161247a565b935050604061268c8782880161256d565b925050606085013567ffffffffffffffff8111156126ad576126ac61351d565b5b6126b987828801612511565b91505092959194509250565b600080604083850312156126dc576126db613522565b5b60006126ea8582860161247a565b92505060206126fb858286016124bd565b9150509250929050565b6000806040838503121561271c5761271b613522565b5b600061272a8582860161247a565b925050602061273b8582860161256d565b9150509250929050565b60006020828403121561275b5761275a613522565b5b6000612769848285016124d2565b91505092915050565b60006020828403121561278857612787613522565b5b6000612796848285016124e7565b91505092915050565b6000602082840312156127b5576127b4613522565b5b60006127c3848285016124fc565b91505092915050565b6000602082840312156127e2576127e1613522565b5b600082013567ffffffffffffffff811115612800576127ff61351d565b5b61280c8482850161253f565b91505092915050565b60006020828403121561282b5761282a613522565b5b60006128398482850161256d565b91505092915050565b6000806040838503121561285957612858613522565b5b60006128678582860161256d565b92505060206128788582860161247a565b9150509250929050565b6000806040838503121561289957612898613522565b5b60006128a78582860161256d565b925050602083013567ffffffffffffffff8111156128c8576128c761351d565b5b6128d48582860161248f565b9150509250929050565b60006128ea8383612cd4565b60208301905092915050565b6128ff81613262565b82525050565b61291661291182613262565b6133ce565b82525050565b60006129278261313b565b6129318185613169565b935061293c8361312b565b8060005b8381101561296d57815161295488826128de565b975061295f8361315c565b925050600181019050612940565b5085935050505092915050565b61298381613274565b82525050565b61299281613280565b82525050565b60006129a382613146565b6129ad818561317a565b93506129bd8185602086016132ef565b6129c681613527565b840191505092915050565b60006129dc82613151565b6129e6818561318b565b93506129f68185602086016132ef565b6129ff81613527565b840191505092915050565b6000612a1582613151565b612a1f818561319c565b9350612a2f8185602086016132ef565b80840191505092915050565b6000612a4860328361318b565b9150612a5382613545565b604082019050919050565b6000612a6b60268361318b565b9150612a7682613594565b604082019050919050565b6000612a8e60258361318b565b9150612a99826135e3565b604082019050919050565b6000612ab1601c8361318b565b9150612abc82613632565b602082019050919050565b6000612ad460148361318b565b9150612adf8261365b565b602082019050919050565b6000612af760248361318b565b9150612b0282613684565b604082019050919050565b6000612b1a60198361318b565b9150612b25826136d3565b602082019050919050565b6000612b3d60298361318b565b9150612b48826136fc565b604082019050919050565b6000612b60600f8361318b565b9150612b6b8261374b565b602082019050919050565b6000612b83603e8361318b565b9150612b8e82613774565b604082019050919050565b6000612ba660208361318b565b9150612bb1826137c3565b602082019050919050565b6000612bc960058361319c565b9150612bd4826137ec565b600582019050919050565b6000612bec60208361318b565b9150612bf782613815565b602082019050919050565b6000612c0f60178361318b565b9150612c1a8261383e565b602082019050919050565b6000612c32602f8361318b565b9150612c3d82613867565b604082019050919050565b6000612c5560188361318b565b9150612c60826138b6565b602082019050919050565b6000612c7860218361318b565b9150612c83826138df565b604082019050919050565b6000612c9b60148361318b565b9150612ca68261392e565b602082019050919050565b6000612cbe602e8361318b565b9150612cc982613957565b604082019050919050565b612cdd816132d6565b82525050565b612cec816132d6565b82525050565b6000612cfe8284612905565b60148201915081905092915050565b6000612d198285612a0a565b9150612d258284612a0a565b9150612d3082612bbc565b91508190509392505050565b6000602082019050612d5160008301846128f6565b92915050565b6000608082019050612d6c60008301876128f6565b612d7960208301866128f6565b612d866040830185612ce3565b8181036060830152612d988184612998565b905095945050505050565b60006020820190508181036000830152612dbd818461291c565b905092915050565b6000602082019050612dda600083018461297a565b92915050565b6000602082019050612df56000830184612989565b92915050565b60006020820190508181036000830152612e1581846129d1565b905092915050565b60006020820190508181036000830152612e3681612a3b565b9050919050565b60006020820190508181036000830152612e5681612a5e565b9050919050565b60006020820190508181036000830152612e7681612a81565b9050919050565b60006020820190508181036000830152612e9681612aa4565b9050919050565b60006020820190508181036000830152612eb681612ac7565b9050919050565b60006020820190508181036000830152612ed681612aea565b9050919050565b60006020820190508181036000830152612ef681612b0d565b9050919050565b60006020820190508181036000830152612f1681612b30565b9050919050565b60006020820190508181036000830152612f3681612b53565b9050919050565b60006020820190508181036000830152612f5681612b76565b9050919050565b60006020820190508181036000830152612f7681612b99565b9050919050565b60006020820190508181036000830152612f9681612bdf565b9050919050565b60006020820190508181036000830152612fb681612c02565b9050919050565b60006020820190508181036000830152612fd681612c25565b9050919050565b60006020820190508181036000830152612ff681612c48565b9050919050565b6000602082019050818103600083015261301681612c6b565b9050919050565b6000602082019050818103600083015261303681612c8e565b9050919050565b6000602082019050818103600083015261305681612cb1565b9050919050565b60006020820190506130726000830184612ce3565b92915050565b6000613082613093565b905061308e8282613354565b919050565b6000604051905090565b600067ffffffffffffffff8211156130b8576130b76134df565b5b602082029050602081019050919050565b600067ffffffffffffffff8211156130e4576130e36134df565b5b6130ed82613527565b9050602081019050919050565b600067ffffffffffffffff821115613115576131146134df565b5b61311e82613527565b9050602081019050919050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b60006131b2826132d6565b91506131bd836132d6565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156131f2576131f1613423565b5b828201905092915050565b6000613208826132d6565b9150613213836132d6565b92508261322357613222613452565b5b828204905092915050565b6000613239826132d6565b9150613244836132d6565b92508282101561325757613256613423565b5b828203905092915050565b600061326d826132b6565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b8381101561330d5780820151818401526020810190506132f2565b8381111561331c576000848401525b50505050565b6000600282049050600182168061333a57607f821691505b6020821081141561334e5761334d613481565b5b50919050565b61335d82613527565b810181811067ffffffffffffffff8211171561337c5761337b6134df565b5b80604052505050565b6000613390826132d6565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156133c3576133c2613423565b5b600182019050919050565b60006133d9826133e0565b9050919050565b60006133eb82613538565b9050919050565b60006133fd826132d6565b9150613408836132d6565b92508261341857613417613452565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b60008160601b9050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f496e76616c6964206d696e7420616d6f756e7421000000000000000000000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a2061646472657373207a65726f206973206e6f74206120766160008201527f6c6964206f776e65720000000000000000000000000000000000000000000000602082015250565b7f4e6f742077686974656c69737465640000000000000000000000000000000000600082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60008201527f6b656e206f776e6572206e6f7220617070726f76656420666f7220616c6c0000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f54686520636f6e74726163742069732070617573656421000000000000000000600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4552433732313a20696e76616c696420746f6b656e2049440000000000000000600082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f4d617820737570706c7920657863656564656421000000000000000000000000600082015250565b7f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560008201527f72206e6f7220617070726f766564000000000000000000000000000000000000602082015250565b6139af81613262565b81146139ba57600080fd5b50565b6139c681613274565b81146139d157600080fd5b50565b6139dd81613280565b81146139e857600080fd5b50565b6139f48161328a565b81146139ff57600080fd5b50565b613a0b816132d6565b8114613a1657600080fd5b5056fea26469706673582212200abeafb9c15300e54d4d835df48aebc7218e4c81ce36a0935b0bf19bb5e8b03f64736f6c63430008070033

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.