ETH Price: $2,973.16 (+2.50%)
Gas: 1 Gwei

PunkX (PUNKX)
 

Overview

TokenID

1117

Total Transfers

-

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-
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:
PunkX

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 13 : PunkXA.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.2;

// @title:      PunkX
// @twitter:    https://twitter.com/PunkXnft
// @team:       https://twitter.com/hollywood777eth
// @partner:    https://twitter.com/ChibiLabs
// @url:        https://punkxnft.com/

/*
 *██████╗░██╗░░░██╗███╗░░██╗██╗░░██╗██╗░░██╗
 *██╔══██╗██║░░░██║████╗░██║██║░██╔╝╚██╗██╔╝
 *██████╔╝██║░░░██║██╔██╗██║█████═╝░░╚███╔╝░
 *██╔═══╝░██║░░░██║██║╚████║██╔═██╗░░██╔██╗░
 *██║░░░░░╚██████╔╝██║░╚███║██║░╚██╗██╔╝╚██╗
 *╚═╝░░░░░░╚═════╝░╚═╝░░╚══╝╚═╝░░╚═╝╚═╝░░╚═╝
 */

import "./ERC721A.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import {MerkleProof} from "@openzeppelin/contracts/utils/cryptography/MerkleProof.sol";

contract PunkX is ERC721A, Ownable {
    using Address for address;
    using MerkleProof for bytes32[];

    // variables
    string public baseTokenURI;
    uint256 public mintPrice = 0.25 ether;
    uint256 public collectionSize = 8888;
    uint256 public publicMintMaxSupply = 1000;
    uint256 public whitelistMintMaxSupply = 6400;
    uint256 public reservedSize = 250;
    uint256 public maxItemsPerTx = 2;
    uint256 public maxItemsPerTxForXlist = 3;

    bool public whitelistMintPaused = true;
    bool public publicMintPaused = true;

    bytes32 whitelistMerkleRoot;
    bytes32 XlistMerkleRoot;

    mapping(address => uint256) public whitelistMintedAmount;

    // events
    event Mint(address indexed owner, uint256 tokenId);

    // constructor
    constructor() ERC721A("PunkX", "PUNKX", 300) {}

    // dev mint
    function ownerMintFromReserved(address to, uint256 amount)
        public
        onlyOwner
    {
        require(amount <= reservedSize, "Minting amount exceed reserved size");
        reservedSize = reservedSize - amount;
        _mintWithoutValidation(to, amount);
    }

    // whitelist mint
    function whitelistMint(bytes32[] memory proof) external payable {
        require(!whitelistMintPaused, "Whitelist mint paused");
        require(
            isAddressWhitelisted(proof, msg.sender) || isAddressXlisted(proof, msg.sender),
            "Not eligible"
        );

        uint256 limit = maxItemsPerTx;
        if (isAddressXlisted(proof, msg.sender)) {
            limit = maxItemsPerTxForXlist;
        }

        uint256 remainder = msg.value % mintPrice;
        require(remainder == 0, "Send a divisible amount of eth");

        uint256 amount = msg.value / mintPrice;
        require(amount > 0, "Amount to mint is 0");
        require(
            whitelistMintedAmount[msg.sender] + amount <= limit,
            "Exceed allowance per wallet"
        );

        require(whitelistMintMaxSupply >= amount, "Whitelist mint sold out");
        require((totalSupply() + amount) <= collectionSize - reservedSize, "Sold out");
        whitelistMintMaxSupply = whitelistMintMaxSupply - amount;

        whitelistMintedAmount[msg.sender] += amount;

        _mintWithoutValidation(msg.sender, amount);
    }

    // public mint
    function publicMint() external payable {
        require(!publicMintPaused, "Public mint paused");

        uint256 remainder = msg.value % mintPrice;
        require(remainder == 0, "Send a divisible amount of eth");

        uint256 amount = msg.value / mintPrice;

        require(amount > 0, "Amount to mint is 0");
        require(amount <= maxItemsPerTx, "Exceed allowance per tx");

        require(publicMintMaxSupply >= amount, "Public mint sold out");
        require((totalSupply() + amount) <= collectionSize - reservedSize, "Sold out");
        publicMintMaxSupply = publicMintMaxSupply - amount;

        _mintWithoutValidation(msg.sender, amount);
    }

    // helper
    function _mintWithoutValidation(address to, uint256 amount) internal {
        require((totalSupply() + amount) <= collectionSize, "Sold out");
        _safeMint(to, amount);
        emit Mint(to, amount);
    }

    function isAddressWhitelisted(bytes32[] memory proof, address _address)
        public
        view
        returns (bool)
    {
        return isAddressInMerkleRoot(whitelistMerkleRoot, proof, _address);
    }

    function isAddressXlisted(bytes32[] memory proof, address _address)
        public
        view
        returns (bool)
    {
        return isAddressInMerkleRoot(XlistMerkleRoot, proof, _address);
    }

    function isAddressInMerkleRoot(
        bytes32 merkleRoot,
        bytes32[] memory proof,
        address _address
    ) internal pure returns (bool) {
        return proof.verify(merkleRoot, keccak256(abi.encodePacked(_address)));
    }

    // setter
    function setReservedSize(uint256 _reservedSize) public onlyOwner {
        reservedSize = _reservedSize;
    }

    function setPublicMintMaxSupply(uint256 _publicMintMaxSupply)
        public
        onlyOwner
    {
        publicMintMaxSupply = _publicMintMaxSupply;
    }

    function setPublicMintPaused(bool _publicMintPaused) public onlyOwner {
        publicMintPaused = _publicMintPaused;
    }

    function setWhitelistMintMaxSupply(uint256 _whitelistMintMaxSupply)
        public
        onlyOwner
    {
        whitelistMintMaxSupply = _whitelistMintMaxSupply;
    }

    function setWhitelistMintPaused(bool _whitelistMintPaused)
        public
        onlyOwner
    {
        whitelistMintPaused = _whitelistMintPaused;
    }

    function setWhitelistMintInfo(
        bytes32 _whitelistMerkleRoot,
        bytes32 _XlistMerkleRoot
    ) public onlyOwner {
        whitelistMerkleRoot = _whitelistMerkleRoot;
        XlistMerkleRoot = _XlistMerkleRoot;
    }

    function setMintInfo(uint256 _mintPrice) public onlyOwner {
        mintPrice = _mintPrice;
    }

    function setMaxItemsPerTx(uint256 _maxItemsPerTx) public onlyOwner {
        maxItemsPerTx = _maxItemsPerTx;
    }

    function setBaseTokenURI(string memory _baseTokenURI) external onlyOwner {
        baseTokenURI = _baseTokenURI;
    }

    // withdraws
    function withdraw(address to, uint256 amount) external onlyOwner {
        require(amount <= address(this).balance, "Exceed balance");
        (bool success, ) = to.call{value: amount}("");
        require(success, "Failed to send ether");
    }

    function withdrawAll(address to) external onlyOwner {
        uint256 amount = address(this).balance;
        (bool success, ) = to.call{value: amount}("");
        require(success, "Failed to send ether");
    }

    // view
    function tokenURI(uint256 tokenId)
        public
        view
        override(ERC721A)
        returns (string memory)
    {
        return
            string(abi.encodePacked(baseTokenURI, Strings.toString(tokenId)));
    }
}

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

pragma solidity ^0.8.0;

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

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

File 4 of 13 : ERC721A.sol
// SPDX-License-Identifier: MIT
// Creators: locationtba.eth, 2pmflow.eth

pragma solidity ^0.8.0;

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

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

  struct TokenOwnership {
    address addr;
    uint64 startTimestamp;
  }

  struct AddressData {
    uint128 balance;
    uint128 numberMinted;
  }

  uint256 private currentIndex = 0;

  uint256 internal immutable maxBatchSize;

  // Token name
  string private _name;

  // Token symbol
  string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  /**
   * @dev See {IERC721Metadata-tokenURI}.
   */
  function tokenURI(uint256 tokenId)
    public
    view
    virtual
    override
    returns (string memory)
  {
    require(
      _exists(tokenId),
      "ERC721Metadata: URI query for nonexistent token"
    );

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

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

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

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

    _approve(to, tokenId, owner);
  }

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

    return _tokenApprovals[tokenId];
  }

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

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

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

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

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

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

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

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

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

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

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

    uint256 updatedIndex = startTokenId;

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

    currentIndex = updatedIndex;
    _afterTokenTransfers(address(0), to, startTokenId, quantity);
  }

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

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

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

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

    _beforeTokenTransfers(from, to, tokenId, 1);

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

    _addressData[from].balance -= 1;
    _addressData[to].balance += 1;
    _ownerships[tokenId] = TokenOwnership(to, uint64(block.timestamp));

    // If the ownership slot of tokenId+1 is not explicitly set, that means the transfer initiator owns it.
    // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls.
    uint256 nextTokenId = tokenId + 1;
    if (_ownerships[nextTokenId].addr == address(0)) {
      if (_exists(nextTokenId)) {
        _ownerships[nextTokenId] = TokenOwnership(
          prevOwnership.addr,
          prevOwnership.startTimestamp
        );
      }
    }

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

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

  uint256 public nextOwnerToExplicitlySet = 0;

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

import "../IERC721.sol";

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

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

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

File 10 of 13 : 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 v4.4.1 (token/ERC721/IERC721Receiver.sol)

pragma solidity ^0.8.0;

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

File 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":"owner","type":"address"},{"indexed":false,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Mint","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseTokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"collectionSize","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":"bytes32[]","name":"proof","type":"bytes32[]"},{"internalType":"address","name":"_address","type":"address"}],"name":"isAddressWhitelisted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32[]","name":"proof","type":"bytes32[]"},{"internalType":"address","name":"_address","type":"address"}],"name":"isAddressXlisted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"maxItemsPerTx","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxItemsPerTxForXlist","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mintPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"nextOwnerToExplicitlySet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"ownerMintFromReserved","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"publicMintMaxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicMintPaused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"reservedSize","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":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_baseTokenURI","type":"string"}],"name":"setBaseTokenURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxItemsPerTx","type":"uint256"}],"name":"setMaxItemsPerTx","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintPrice","type":"uint256"}],"name":"setMintInfo","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_publicMintMaxSupply","type":"uint256"}],"name":"setPublicMintMaxSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_publicMintPaused","type":"bool"}],"name":"setPublicMintPaused","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_reservedSize","type":"uint256"}],"name":"setReservedSize","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_whitelistMerkleRoot","type":"bytes32"},{"internalType":"bytes32","name":"_XlistMerkleRoot","type":"bytes32"}],"name":"setWhitelistMintInfo","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_whitelistMintMaxSupply","type":"uint256"}],"name":"setWhitelistMintMaxSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_whitelistMintPaused","type":"bool"}],"name":"setWhitelistMintPaused","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":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32[]","name":"proof","type":"bytes32[]"}],"name":"whitelistMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"whitelistMintMaxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"whitelistMintPaused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"whitelistMintedAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"}],"name":"withdrawAll","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60a06040526000805560006007556703782dace9d90000600a556122b8600b556103e8600c55611900600d5560fa600e556002600f5560036010556001601160006101000a81548160ff0219169083151502179055506001601160016101000a81548160ff0219169083151502179055503480156200007d57600080fd5b506040518060400160405280600581526020017f50756e6b580000000000000000000000000000000000000000000000000000008152506040518060400160405280600581526020017f50554e4b5800000000000000000000000000000000000000000000000000000081525061012c6000811162000133576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200012a906200033b565b60405180910390fd5b82600190805190602001906200014b92919062000264565b5081600290805190602001906200016492919062000264565b50806080818152505050505062000190620001846200019660201b60201c565b6200019e60201b60201c565b62000422565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b82805462000272906200036e565b90600052602060002090601f016020900481019282620002965760008555620002e2565b82601f10620002b157805160ff1916838001178555620002e2565b82800160010185558215620002e2579182015b82811115620002e1578251825591602001919060010190620002c4565b5b509050620002f19190620002f5565b5090565b5b8082111562000310576000816000905550600101620002f6565b5090565b6000620003236027836200035d565b91506200033082620003d3565b604082019050919050565b60006020820190508181036000830152620003568162000314565b9050919050565b600082825260208201905092915050565b600060028204905060018216806200038757607f821691505b602082108114156200039e576200039d620003a4565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f455243373231413a206d61782062617463682073697a65206d7573742062652060008201527f6e6f6e7a65726f00000000000000000000000000000000000000000000000000602082015250565b6080516158986200044c60003960008181612db801528181612de101526134ed01526158986000f3fe6080604052600436106102885760003560e01c80636817c76c1161015a578063c3a6e47e116100c1578063e985e9c51161007a578063e985e9c5146109c6578063f2fde38b14610a03578063f3fef3a314610a2c578063f8b0791d14610a55578063fa09e63014610a7e578063fc9d0fb514610aa757610288565b8063c3a6e47e146108a2578063c7ccbf5d146108cd578063c87b56dd1461090a578063d547cfb714610947578063d7224ba014610972578063e4ff5acd1461099d57610288565b8063808bba6011610113578063808bba60146107a45780638da5cb5b146107cf57806395d89b41146107fa578063a22cb46514610825578063b74e1f4d1461084e578063b88d4fde1461087957610288565b80636817c76c146106a857806370a08231146106d3578063715018a61461071057806379e1587a146107275780637a4e5715146107525780637deb69ad1461077b57610288565b806330666a4d116101fe57806342842e0e116101b757806342842e0e1461058857806345c0f533146105b15780634f6ccce7146105dc5780635dcfd5d6146106195780636352211e1461064257806365ab7e641461067f57610288565b806330666a4d1461049957806333949348146104c457806333d9d5fd146104ed5780633530023014610518578063372f657c146105435780633c7324641461055f57610288565b806318160ddd1161025057806318160ddd146103985780631fac2a35146103c357806323b872dd1461040057806326092b83146104295780632f745c591461043357806330176e131461047057610288565b806301ffc9a71461028d57806306fdde03146102ca578063081812fc146102f5578063095ea7b3146103325780630996896b1461035b575b600080fd5b34801561029957600080fd5b506102b460048036038101906102af9190613eb9565b610ad0565b6040516102c19190614670565b60405180910390f35b3480156102d657600080fd5b506102df610c1a565b6040516102ec919061468b565b60405180910390f35b34801561030157600080fd5b5061031c60048036038101906103179190613f5c565b610cac565b6040516103299190614609565b60405180910390f35b34801561033e57600080fd5b5061035960048036038101906103549190613d67565b610d31565b005b34801561036757600080fd5b50610382600480360381019061037d9190613df0565b610e4a565b60405161038f9190614670565b60405180910390f35b3480156103a457600080fd5b506103ad610e61565b6040516103ba9190614aad565b60405180910390f35b3480156103cf57600080fd5b506103ea60048036038101906103e59190613be4565b610e6a565b6040516103f79190614aad565b60405180910390f35b34801561040c57600080fd5b5061042760048036038101906104229190613c51565b610e82565b005b610431610e92565b005b34801561043f57600080fd5b5061045a60048036038101906104559190613d67565b61109c565b6040516104679190614aad565b60405180910390f35b34801561047c57600080fd5b5061049760048036038101906104929190613f13565b61129a565b005b3480156104a557600080fd5b506104ae611330565b6040516104bb9190614aad565b60405180910390f35b3480156104d057600080fd5b506104eb60048036038101906104e69190613e4c565b611336565b005b3480156104f957600080fd5b506105026113cf565b60405161050f9190614670565b60405180910390f35b34801561052457600080fd5b5061052d6113e2565b60405161053a9190614aad565b60405180910390f35b61055d60048036038101906105589190613da7565b6113e8565b005b34801561056b57600080fd5b5061058660048036038101906105819190613f5c565b611708565b005b34801561059457600080fd5b506105af60048036038101906105aa9190613c51565b61178e565b005b3480156105bd57600080fd5b506105c66117ae565b6040516105d39190614aad565b60405180910390f35b3480156105e857600080fd5b5061060360048036038101906105fe9190613f5c565b6117b4565b6040516106109190614aad565b60405180910390f35b34801561062557600080fd5b50610640600480360381019061063b9190613f5c565b611807565b005b34801561064e57600080fd5b5061066960048036038101906106649190613f5c565b61188d565b6040516106769190614609565b60405180910390f35b34801561068b57600080fd5b506106a660048036038101906106a19190613f5c565b6118a3565b005b3480156106b457600080fd5b506106bd611929565b6040516106ca9190614aad565b60405180910390f35b3480156106df57600080fd5b506106fa60048036038101906106f59190613be4565b61192f565b6040516107079190614aad565b60405180910390f35b34801561071c57600080fd5b50610725611a18565b005b34801561073357600080fd5b5061073c611aa0565b6040516107499190614aad565b60405180910390f35b34801561075e57600080fd5b5061077960048036038101906107749190613f5c565b611aa6565b005b34801561078757600080fd5b506107a2600480360381019061079d9190613f5c565b611b2c565b005b3480156107b057600080fd5b506107b9611bb2565b6040516107c69190614aad565b60405180910390f35b3480156107db57600080fd5b506107e4611bb8565b6040516107f19190614609565b60405180910390f35b34801561080657600080fd5b5061080f611be2565b60405161081c919061468b565b60405180910390f35b34801561083157600080fd5b5061084c60048036038101906108479190613d27565b611c74565b005b34801561085a57600080fd5b50610863611df5565b6040516108709190614670565b60405180910390f35b34801561088557600080fd5b506108a0600480360381019061089b9190613ca4565b611e08565b005b3480156108ae57600080fd5b506108b7611e64565b6040516108c49190614aad565b60405180910390f35b3480156108d957600080fd5b506108f460048036038101906108ef9190613df0565b611e6a565b6040516109019190614670565b60405180910390f35b34801561091657600080fd5b50610931600480360381019061092c9190613f5c565b611e81565b60405161093e919061468b565b60405180910390f35b34801561095357600080fd5b5061095c611eb5565b604051610969919061468b565b60405180910390f35b34801561097e57600080fd5b50610987611f43565b6040516109949190614aad565b60405180910390f35b3480156109a957600080fd5b506109c460048036038101906109bf9190613d67565b611f49565b005b3480156109d257600080fd5b506109ed60048036038101906109e89190613c11565b61202c565b6040516109fa9190614670565b60405180910390f35b348015610a0f57600080fd5b50610a2a6004803603810190610a259190613be4565b6120c0565b005b348015610a3857600080fd5b50610a536004803603810190610a4e9190613d67565b6121b8565b005b348015610a6157600080fd5b50610a7c6004803603810190610a779190613e79565b612328565b005b348015610a8a57600080fd5b50610aa56004803603810190610aa09190613be4565b6123b6565b005b348015610ab357600080fd5b50610ace6004803603810190610ac99190613e4c565b6124e8565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610b9b57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610c0357507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610c135750610c1282612581565b5b9050919050565b606060018054610c2990614e19565b80601f0160208091040260200160405190810160405280929190818152602001828054610c5590614e19565b8015610ca25780601f10610c7757610100808354040283529160200191610ca2565b820191906000526020600020905b815481529060010190602001808311610c8557829003601f168201915b5050505050905090565b6000610cb7826125eb565b610cf6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ced90614a6d565b60405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610d3c8261188d565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610dad576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610da49061496d565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610dcc6125f8565b73ffffffffffffffffffffffffffffffffffffffff161480610dfb5750610dfa81610df56125f8565b61202c565b5b610e3a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e319061484d565b60405180910390fd5b610e45838383612600565b505050565b6000610e5960125484846126b2565b905092915050565b60008054905090565b60146020528060005260406000206000915090505481565b610e8d8383836126f8565b505050565b601160019054906101000a900460ff1615610ee2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ed9906146cd565b60405180910390fd5b6000600a5434610ef29190614ef3565b905060008114610f37576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f2e906147ad565b60405180910390fd5b6000600a5434610f479190614c7a565b905060008111610f8c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f839061474d565b60405180910390fd5b600f54811115610fd1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fc89061472d565b60405180910390fd5b80600c541015611016576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161100d90614a0d565b60405180910390fd5b600e54600b546110269190614cdf565b8161102f610e61565b6110399190614c24565b111561107a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110719061498d565b60405180910390fd5b80600c546110889190614cdf565b600c819055506110983382612cb1565b5050565b60006110a78361192f565b82106110e8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110df906146ad565b60405180910390fd5b60006110f2610e61565b905060008060005b83811015611258576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146111ec57806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156112445786841415611235578195505050505050611294565b838061124090614e7c565b9450505b50808061125090614e7c565b9150506110fa565b506040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161128b90614a2d565b60405180910390fd5b92915050565b6112a26125f8565b73ffffffffffffffffffffffffffffffffffffffff166112c0611bb8565b73ffffffffffffffffffffffffffffffffffffffff1614611316576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161130d906148cd565b60405180910390fd5b806009908051906020019061132c92919061390b565b5050565b600f5481565b61133e6125f8565b73ffffffffffffffffffffffffffffffffffffffff1661135c611bb8565b73ffffffffffffffffffffffffffffffffffffffff16146113b2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113a9906148cd565b60405180910390fd5b80601160016101000a81548160ff02191690831515021790555050565b601160019054906101000a900460ff1681565b600d5481565b601160009054906101000a900460ff1615611438576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161142f9061488d565b60405180910390fd5b6114428133610e4a565b8061145357506114528133611e6a565b5b611492576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611489906147cd565b60405180910390fd5b6000600f5490506114a38233611e6a565b156114ae5760105490505b6000600a54346114be9190614ef3565b905060008114611503576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114fa906147ad565b60405180910390fd5b6000600a54346115139190614c7a565b905060008111611558576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161154f9061474d565b60405180910390fd5b8281601460003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546115a49190614c24565b11156115e5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115dc9061482d565b60405180910390fd5b80600d54101561162a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611621906147ed565b60405180910390fd5b600e54600b5461163a9190614cdf565b81611643610e61565b61164d9190614c24565b111561168e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116859061498d565b60405180910390fd5b80600d5461169c9190614cdf565b600d8190555080601460003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546116f19190614c24565b925050819055506117023382612cb1565b50505050565b6117106125f8565b73ffffffffffffffffffffffffffffffffffffffff1661172e611bb8565b73ffffffffffffffffffffffffffffffffffffffff1614611784576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161177b906148cd565b60405180910390fd5b80600e8190555050565b6117a983838360405180602001604052806000815250611e08565b505050565b600b5481565b60006117be610e61565b82106117ff576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117f69061476d565b60405180910390fd5b819050919050565b61180f6125f8565b73ffffffffffffffffffffffffffffffffffffffff1661182d611bb8565b73ffffffffffffffffffffffffffffffffffffffff1614611883576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161187a906148cd565b60405180910390fd5b80600a8190555050565b600061189882612d64565b600001519050919050565b6118ab6125f8565b73ffffffffffffffffffffffffffffffffffffffff166118c9611bb8565b73ffffffffffffffffffffffffffffffffffffffff161461191f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611916906148cd565b60405180910390fd5b80600c8190555050565b600a5481565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156119a0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119979061486d565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b611a206125f8565b73ffffffffffffffffffffffffffffffffffffffff16611a3e611bb8565b73ffffffffffffffffffffffffffffffffffffffff1614611a94576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a8b906148cd565b60405180910390fd5b611a9e6000612f67565b565b600e5481565b611aae6125f8565b73ffffffffffffffffffffffffffffffffffffffff16611acc611bb8565b73ffffffffffffffffffffffffffffffffffffffff1614611b22576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b19906148cd565b60405180910390fd5b80600f8190555050565b611b346125f8565b73ffffffffffffffffffffffffffffffffffffffff16611b52611bb8565b73ffffffffffffffffffffffffffffffffffffffff1614611ba8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b9f906148cd565b60405180910390fd5b80600d8190555050565b600c5481565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060028054611bf190614e19565b80601f0160208091040260200160405190810160405280929190818152602001828054611c1d90614e19565b8015611c6a5780601f10611c3f57610100808354040283529160200191611c6a565b820191906000526020600020905b815481529060010190602001808311611c4d57829003601f168201915b5050505050905090565b611c7c6125f8565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611cea576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ce19061492d565b60405180910390fd5b8060066000611cf76125f8565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611da46125f8565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611de99190614670565b60405180910390a35050565b601160009054906101000a900460ff1681565b611e138484846126f8565b611e1f8484848461302d565b611e5e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e55906149ad565b60405180910390fd5b50505050565b60105481565b6000611e7960135484846126b2565b905092915050565b60606009611e8e836131c4565b604051602001611e9f9291906145d0565b6040516020818303038152906040529050919050565b60098054611ec290614e19565b80601f0160208091040260200160405190810160405280929190818152602001828054611eee90614e19565b8015611f3b5780601f10611f1057610100808354040283529160200191611f3b565b820191906000526020600020905b815481529060010190602001808311611f1e57829003601f168201915b505050505081565b60075481565b611f516125f8565b73ffffffffffffffffffffffffffffffffffffffff16611f6f611bb8565b73ffffffffffffffffffffffffffffffffffffffff1614611fc5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fbc906148cd565b60405180910390fd5b600e5481111561200a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120019061480d565b60405180910390fd5b80600e546120189190614cdf565b600e819055506120288282612cb1565b5050565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6120c86125f8565b73ffffffffffffffffffffffffffffffffffffffff166120e6611bb8565b73ffffffffffffffffffffffffffffffffffffffff161461213c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612133906148cd565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156121ac576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121a3906146ed565b60405180910390fd5b6121b581612f67565b50565b6121c06125f8565b73ffffffffffffffffffffffffffffffffffffffff166121de611bb8565b73ffffffffffffffffffffffffffffffffffffffff1614612234576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161222b906148cd565b60405180910390fd5b47811115612277576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161226e9061490d565b60405180910390fd5b60008273ffffffffffffffffffffffffffffffffffffffff168260405161229d906145f4565b60006040518083038185875af1925050503d80600081146122da576040519150601f19603f3d011682016040523d82523d6000602084013e6122df565b606091505b5050905080612323576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161231a906148ed565b60405180910390fd5b505050565b6123306125f8565b73ffffffffffffffffffffffffffffffffffffffff1661234e611bb8565b73ffffffffffffffffffffffffffffffffffffffff16146123a4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161239b906148cd565b60405180910390fd5b81601281905550806013819055505050565b6123be6125f8565b73ffffffffffffffffffffffffffffffffffffffff166123dc611bb8565b73ffffffffffffffffffffffffffffffffffffffff1614612432576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612429906148cd565b60405180910390fd5b600047905060008273ffffffffffffffffffffffffffffffffffffffff168260405161245d906145f4565b60006040518083038185875af1925050503d806000811461249a576040519150601f19603f3d011682016040523d82523d6000602084013e61249f565b606091505b50509050806124e3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124da906148ed565b60405180910390fd5b505050565b6124f06125f8565b73ffffffffffffffffffffffffffffffffffffffff1661250e611bb8565b73ffffffffffffffffffffffffffffffffffffffff1614612564576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161255b906148cd565b60405180910390fd5b80601160006101000a81548160ff02191690831515021790555050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6000805482109050919050565b600033905090565b826005600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60006126ef84836040516020016126c99190614589565b60405160208183030381529060405280519060200120856133259092919063ffffffff16565b90509392505050565b600061270382612d64565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff1661272a6125f8565b73ffffffffffffffffffffffffffffffffffffffff161480612786575061274f6125f8565b73ffffffffffffffffffffffffffffffffffffffff1661276e84610cac565b73ffffffffffffffffffffffffffffffffffffffff16145b806127a257506127a1826000015161279c6125f8565b61202c565b5b9050806127e4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127db9061494d565b60405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff1614612856576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161284d906148ad565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156128c6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128bd9061478d565b60405180910390fd5b6128d3858585600161333c565b6128e36000848460000151612600565b6001600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff166129519190614cab565b92506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff1602179055506001600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff166129f59190614bde565b92506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060405180604001604052808573ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506003600085815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055509050506000600184612afb9190614c24565b9050600073ffffffffffffffffffffffffffffffffffffffff166003600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415612c4157612b71816125eb565b15612c40576040518060400160405280846000015173ffffffffffffffffffffffffffffffffffffffff168152602001846020015167ffffffffffffffff168152506003600083815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055509050505b5b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612ca98686866001613342565b505050505050565b600b5481612cbd610e61565b612cc79190614c24565b1115612d08576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612cff9061498d565b60405180910390fd5b612d128282613348565b8173ffffffffffffffffffffffffffffffffffffffff167f0f6798a560793a54c3bcfe86a93cde1e73087d944c0ea20544137d412139688582604051612d589190614aad565b60405180910390a25050565b612d6c613991565b612d75826125eb565b612db4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612dab9061470d565b60405180910390fd5b60007f00000000000000000000000000000000000000000000000000000000000000008310612e185760017f000000000000000000000000000000000000000000000000000000000000000084612e0b9190614cdf565b612e159190614c24565b90505b60008390505b818110612f26576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612f1257809350505050612f62565b508080612f1e90614def565b915050612e1e565b506040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f5990614a4d565b60405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600061304e8473ffffffffffffffffffffffffffffffffffffffff16613366565b156131b7578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026130776125f8565b8786866040518563ffffffff1660e01b81526004016130999493929190614624565b602060405180830381600087803b1580156130b357600080fd5b505af19250505080156130e457506040513d601f19601f820116820180604052508101906130e19190613ee6565b60015b613167573d8060008114613114576040519150601f19603f3d011682016040523d82523d6000602084013e613119565b606091505b5060008151141561315f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613156906149ad565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506131bc565b600190505b949350505050565b6060600082141561320c576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050613320565b600082905060005b6000821461323e57808061322790614e7c565b915050600a826132379190614c7a565b9150613214565b60008167ffffffffffffffff81111561325a57613259614fe0565b5b6040519080825280601f01601f19166020018201604052801561328c5781602001600182028036833780820191505090505b5090505b60008514613319576001826132a59190614cdf565b9150600a856132b49190614ef3565b60306132c09190614c24565b60f81b8183815181106132d6576132d5614fb1565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856133129190614c7a565b9450613290565b8093505050505b919050565b6000826133328584613379565b1490509392505050565b50505050565b50505050565b61336282826040518060200160405280600081525061342c565b5050565b600080823b905060008111915050919050565b60008082905060005b84518110156134215760008582815181106133a05761339f614fb1565b5b602002602001015190508083116133e15782816040516020016133c49291906145a4565b60405160208183030381529060405280519060200120925061340d565b80836040516020016133f49291906145a4565b6040516020818303038152906040528051906020012092505b50808061341990614e7c565b915050613382565b508091505092915050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156134a2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613499906149ed565b60405180910390fd5b6134ab816125eb565b156134eb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016134e2906149cd565b60405180910390fd5b7f000000000000000000000000000000000000000000000000000000000000000083111561354e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161354590614a8d565b60405180910390fd5b61355b600085838661333c565b6000600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206040518060400160405290816000820160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff1681526020016000820160109054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff1681525050905060405180604001604052808583600001516136589190614bde565b6fffffffffffffffffffffffffffffffff16815260200185836020015161367f9190614bde565b6fffffffffffffffffffffffffffffffff16815250600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008201518160000160006101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060208201518160000160106101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555090505060405180604001604052808673ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506003600084815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550905050600082905060005b858110156138ee57818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461388e600088848861302d565b6138cd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016138c4906149ad565b60405180910390fd5b81806138d890614e7c565b92505080806138e690614e7c565b91505061381d565b50806000819055506139036000878588613342565b505050505050565b82805461391790614e19565b90600052602060002090601f0160209004810192826139395760008555613980565b82601f1061395257805160ff1916838001178555613980565b82800160010185558215613980579182015b8281111561397f578251825591602001919060010190613964565b5b50905061398d91906139cb565b5090565b6040518060400160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681525090565b5b808211156139e45760008160009055506001016139cc565b5090565b60006139fb6139f684614aed565b614ac8565b90508083825260208201905082856020860282011115613a1e57613a1d615014565b5b60005b85811015613a4e5781613a348882613b34565b845260208401935060208301925050600181019050613a21565b5050509392505050565b6000613a6b613a6684614b19565b614ac8565b905082815260208101848484011115613a8757613a86615019565b5b613a92848285614dad565b509392505050565b6000613aad613aa884614b4a565b614ac8565b905082815260208101848484011115613ac957613ac8615019565b5b613ad4848285614dad565b509392505050565b600081359050613aeb816157ef565b92915050565b600082601f830112613b0657613b0561500f565b5b8135613b168482602086016139e8565b91505092915050565b600081359050613b2e81615806565b92915050565b600081359050613b438161581d565b92915050565b600081359050613b5881615834565b92915050565b600081519050613b6d81615834565b92915050565b600082601f830112613b8857613b8761500f565b5b8135613b98848260208601613a58565b91505092915050565b600082601f830112613bb657613bb561500f565b5b8135613bc6848260208601613a9a565b91505092915050565b600081359050613bde8161584b565b92915050565b600060208284031215613bfa57613bf9615023565b5b6000613c0884828501613adc565b91505092915050565b60008060408385031215613c2857613c27615023565b5b6000613c3685828601613adc565b9250506020613c4785828601613adc565b9150509250929050565b600080600060608486031215613c6a57613c69615023565b5b6000613c7886828701613adc565b9350506020613c8986828701613adc565b9250506040613c9a86828701613bcf565b9150509250925092565b60008060008060808587031215613cbe57613cbd615023565b5b6000613ccc87828801613adc565b9450506020613cdd87828801613adc565b9350506040613cee87828801613bcf565b925050606085013567ffffffffffffffff811115613d0f57613d0e61501e565b5b613d1b87828801613b73565b91505092959194509250565b60008060408385031215613d3e57613d3d615023565b5b6000613d4c85828601613adc565b9250506020613d5d85828601613b1f565b9150509250929050565b60008060408385031215613d7e57613d7d615023565b5b6000613d8c85828601613adc565b9250506020613d9d85828601613bcf565b9150509250929050565b600060208284031215613dbd57613dbc615023565b5b600082013567ffffffffffffffff811115613ddb57613dda61501e565b5b613de784828501613af1565b91505092915050565b60008060408385031215613e0757613e06615023565b5b600083013567ffffffffffffffff811115613e2557613e2461501e565b5b613e3185828601613af1565b9250506020613e4285828601613adc565b9150509250929050565b600060208284031215613e6257613e61615023565b5b6000613e7084828501613b1f565b91505092915050565b60008060408385031215613e9057613e8f615023565b5b6000613e9e85828601613b34565b9250506020613eaf85828601613b34565b9150509250929050565b600060208284031215613ecf57613ece615023565b5b6000613edd84828501613b49565b91505092915050565b600060208284031215613efc57613efb615023565b5b6000613f0a84828501613b5e565b91505092915050565b600060208284031215613f2957613f28615023565b5b600082013567ffffffffffffffff811115613f4757613f4661501e565b5b613f5384828501613ba1565b91505092915050565b600060208284031215613f7257613f71615023565b5b6000613f8084828501613bcf565b91505092915050565b613f9281614d13565b82525050565b613fa9613fa482614d13565b614ec5565b82525050565b613fb881614d25565b82525050565b613fcf613fca82614d31565b614ed7565b82525050565b6000613fe082614b90565b613fea8185614ba6565b9350613ffa818560208601614dbc565b61400381615028565b840191505092915050565b600061401982614b9b565b6140238185614bc2565b9350614033818560208601614dbc565b61403c81615028565b840191505092915050565b600061405282614b9b565b61405c8185614bd3565b935061406c818560208601614dbc565b80840191505092915050565b6000815461408581614e19565b61408f8186614bd3565b945060018216600081146140aa57600181146140bb576140ee565b60ff198316865281860193506140ee565b6140c485614b7b565b60005b838110156140e6578154818901526001820191506020810190506140c7565b838801955050505b50505092915050565b6000614104602283614bc2565b915061410f82615046565b604082019050919050565b6000614127601283614bc2565b915061413282615095565b602082019050919050565b600061414a602683614bc2565b9150614155826150be565b604082019050919050565b600061416d602a83614bc2565b91506141788261510d565b604082019050919050565b6000614190601783614bc2565b915061419b8261515c565b602082019050919050565b60006141b3601383614bc2565b91506141be82615185565b602082019050919050565b60006141d6602383614bc2565b91506141e1826151ae565b604082019050919050565b60006141f9602583614bc2565b9150614204826151fd565b604082019050919050565b600061421c601e83614bc2565b91506142278261524c565b602082019050919050565b600061423f600c83614bc2565b915061424a82615275565b602082019050919050565b6000614262601783614bc2565b915061426d8261529e565b602082019050919050565b6000614285602383614bc2565b9150614290826152c7565b604082019050919050565b60006142a8601b83614bc2565b91506142b382615316565b602082019050919050565b60006142cb603983614bc2565b91506142d68261533f565b604082019050919050565b60006142ee602b83614bc2565b91506142f98261538e565b604082019050919050565b6000614311601583614bc2565b915061431c826153dd565b602082019050919050565b6000614334602683614bc2565b915061433f82615406565b604082019050919050565b6000614357602083614bc2565b915061436282615455565b602082019050919050565b600061437a601483614bc2565b91506143858261547e565b602082019050919050565b600061439d600e83614bc2565b91506143a8826154a7565b602082019050919050565b60006143c0601a83614bc2565b91506143cb826154d0565b602082019050919050565b60006143e3603283614bc2565b91506143ee826154f9565b604082019050919050565b6000614406602283614bc2565b915061441182615548565b604082019050919050565b6000614429600083614bb7565b915061443482615597565b600082019050919050565b600061444c600883614bc2565b91506144578261559a565b602082019050919050565b600061446f603383614bc2565b915061447a826155c3565b604082019050919050565b6000614492601d83614bc2565b915061449d82615612565b602082019050919050565b60006144b5602183614bc2565b91506144c08261563b565b604082019050919050565b60006144d8601483614bc2565b91506144e38261568a565b602082019050919050565b60006144fb602e83614bc2565b9150614506826156b3565b604082019050919050565b600061451e602f83614bc2565b915061452982615702565b604082019050919050565b6000614541602d83614bc2565b915061454c82615751565b604082019050919050565b6000614564602283614bc2565b915061456f826157a0565b604082019050919050565b61458381614da3565b82525050565b60006145958284613f98565b60148201915081905092915050565b60006145b08285613fbe565b6020820191506145c08284613fbe565b6020820191508190509392505050565b60006145dc8285614078565b91506145e88284614047565b91508190509392505050565b60006145ff8261441c565b9150819050919050565b600060208201905061461e6000830184613f89565b92915050565b60006080820190506146396000830187613f89565b6146466020830186613f89565b614653604083018561457a565b81810360608301526146658184613fd5565b905095945050505050565b60006020820190506146856000830184613faf565b92915050565b600060208201905081810360008301526146a5818461400e565b905092915050565b600060208201905081810360008301526146c6816140f7565b9050919050565b600060208201905081810360008301526146e68161411a565b9050919050565b600060208201905081810360008301526147068161413d565b9050919050565b6000602082019050818103600083015261472681614160565b9050919050565b6000602082019050818103600083015261474681614183565b9050919050565b60006020820190508181036000830152614766816141a6565b9050919050565b60006020820190508181036000830152614786816141c9565b9050919050565b600060208201905081810360008301526147a6816141ec565b9050919050565b600060208201905081810360008301526147c68161420f565b9050919050565b600060208201905081810360008301526147e681614232565b9050919050565b6000602082019050818103600083015261480681614255565b9050919050565b6000602082019050818103600083015261482681614278565b9050919050565b600060208201905081810360008301526148468161429b565b9050919050565b60006020820190508181036000830152614866816142be565b9050919050565b60006020820190508181036000830152614886816142e1565b9050919050565b600060208201905081810360008301526148a681614304565b9050919050565b600060208201905081810360008301526148c681614327565b9050919050565b600060208201905081810360008301526148e68161434a565b9050919050565b600060208201905081810360008301526149068161436d565b9050919050565b6000602082019050818103600083015261492681614390565b9050919050565b60006020820190508181036000830152614946816143b3565b9050919050565b60006020820190508181036000830152614966816143d6565b9050919050565b60006020820190508181036000830152614986816143f9565b9050919050565b600060208201905081810360008301526149a68161443f565b9050919050565b600060208201905081810360008301526149c681614462565b9050919050565b600060208201905081810360008301526149e681614485565b9050919050565b60006020820190508181036000830152614a06816144a8565b9050919050565b60006020820190508181036000830152614a26816144cb565b9050919050565b60006020820190508181036000830152614a46816144ee565b9050919050565b60006020820190508181036000830152614a6681614511565b9050919050565b60006020820190508181036000830152614a8681614534565b9050919050565b60006020820190508181036000830152614aa681614557565b9050919050565b6000602082019050614ac2600083018461457a565b92915050565b6000614ad2614ae3565b9050614ade8282614e4b565b919050565b6000604051905090565b600067ffffffffffffffff821115614b0857614b07614fe0565b5b602082029050602081019050919050565b600067ffffffffffffffff821115614b3457614b33614fe0565b5b614b3d82615028565b9050602081019050919050565b600067ffffffffffffffff821115614b6557614b64614fe0565b5b614b6e82615028565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000614be982614d67565b9150614bf483614d67565b9250826fffffffffffffffffffffffffffffffff03821115614c1957614c18614f24565b5b828201905092915050565b6000614c2f82614da3565b9150614c3a83614da3565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115614c6f57614c6e614f24565b5b828201905092915050565b6000614c8582614da3565b9150614c9083614da3565b925082614ca057614c9f614f53565b5b828204905092915050565b6000614cb682614d67565b9150614cc183614d67565b925082821015614cd457614cd3614f24565b5b828203905092915050565b6000614cea82614da3565b9150614cf583614da3565b925082821015614d0857614d07614f24565b5b828203905092915050565b6000614d1e82614d83565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b60006fffffffffffffffffffffffffffffffff82169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015614dda578082015181840152602081019050614dbf565b83811115614de9576000848401525b50505050565b6000614dfa82614da3565b91506000821415614e0e57614e0d614f24565b5b600182039050919050565b60006002820490506001821680614e3157607f821691505b60208210811415614e4557614e44614f82565b5b50919050565b614e5482615028565b810181811067ffffffffffffffff82111715614e7357614e72614fe0565b5b80604052505050565b6000614e8782614da3565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415614eba57614eb9614f24565b5b600182019050919050565b6000614ed082614ee1565b9050919050565b6000819050919050565b6000614eec82615039565b9050919050565b6000614efe82614da3565b9150614f0983614da3565b925082614f1957614f18614f53565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b60008160601b9050919050565b7f455243373231413a206f776e657220696e646578206f7574206f6620626f756e60008201527f6473000000000000000000000000000000000000000000000000000000000000602082015250565b7f5075626c6963206d696e74207061757365640000000000000000000000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a206f776e657220717565727920666f72206e6f6e6578697360008201527f74656e7420746f6b656e00000000000000000000000000000000000000000000602082015250565b7f45786365656420616c6c6f77616e636520706572207478000000000000000000600082015250565b7f416d6f756e7420746f206d696e74206973203000000000000000000000000000600082015250565b7f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f7560008201527f6e64730000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f53656e64206120646976697369626c6520616d6f756e74206f66206574680000600082015250565b7f4e6f7420656c696769626c650000000000000000000000000000000000000000600082015250565b7f57686974656c697374206d696e7420736f6c64206f7574000000000000000000600082015250565b7f4d696e74696e6720616d6f756e7420657863656564207265736572766564207360008201527f697a650000000000000000000000000000000000000000000000000000000000602082015250565b7f45786365656420616c6c6f77616e6365207065722077616c6c65740000000000600082015250565b7f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000602082015250565b7f455243373231413a2062616c616e636520717565727920666f7220746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b7f57686974656c697374206d696e74207061757365640000000000000000000000600082015250565b7f455243373231413a207472616e736665722066726f6d20696e636f727265637460008201527f206f776e65720000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4661696c656420746f2073656e64206574686572000000000000000000000000600082015250565b7f4578636565642062616c616e6365000000000000000000000000000000000000600082015250565b7f455243373231413a20617070726f766520746f2063616c6c6572000000000000600082015250565b7f455243373231413a207472616e736665722063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b7f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60008201527f6572000000000000000000000000000000000000000000000000000000000000602082015250565b50565b7f536f6c64206f7574000000000000000000000000000000000000000000000000600082015250565b7f455243373231413a207472616e7366657220746f206e6f6e204552433732315260008201527f6563656976657220696d706c656d656e74657200000000000000000000000000602082015250565b7f455243373231413a20746f6b656e20616c7265616479206d696e746564000000600082015250565b7f455243373231413a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f5075626c6963206d696e7420736f6c64206f7574000000000000000000000000600082015250565b7f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060008201527f6f776e657220627920696e646578000000000000000000000000000000000000602082015250565b7f455243373231413a20756e61626c6520746f2064657465726d696e652074686560008201527f206f776e6572206f6620746f6b656e0000000000000000000000000000000000602082015250565b7f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560008201527f78697374656e7420746f6b656e00000000000000000000000000000000000000602082015250565b7f455243373231413a207175616e7469747920746f206d696e7420746f6f20686960008201527f6768000000000000000000000000000000000000000000000000000000000000602082015250565b6157f881614d13565b811461580357600080fd5b50565b61580f81614d25565b811461581a57600080fd5b50565b61582681614d31565b811461583157600080fd5b50565b61583d81614d3b565b811461584857600080fd5b50565b61585481614da3565b811461585f57600080fd5b5056fea26469706673582212203611e40af596d2ca25c3758b74cc46e369a348084d14b4bed1cd8d238efc451b64736f6c63430008070033

Deployed Bytecode

0x6080604052600436106102885760003560e01c80636817c76c1161015a578063c3a6e47e116100c1578063e985e9c51161007a578063e985e9c5146109c6578063f2fde38b14610a03578063f3fef3a314610a2c578063f8b0791d14610a55578063fa09e63014610a7e578063fc9d0fb514610aa757610288565b8063c3a6e47e146108a2578063c7ccbf5d146108cd578063c87b56dd1461090a578063d547cfb714610947578063d7224ba014610972578063e4ff5acd1461099d57610288565b8063808bba6011610113578063808bba60146107a45780638da5cb5b146107cf57806395d89b41146107fa578063a22cb46514610825578063b74e1f4d1461084e578063b88d4fde1461087957610288565b80636817c76c146106a857806370a08231146106d3578063715018a61461071057806379e1587a146107275780637a4e5715146107525780637deb69ad1461077b57610288565b806330666a4d116101fe57806342842e0e116101b757806342842e0e1461058857806345c0f533146105b15780634f6ccce7146105dc5780635dcfd5d6146106195780636352211e1461064257806365ab7e641461067f57610288565b806330666a4d1461049957806333949348146104c457806333d9d5fd146104ed5780633530023014610518578063372f657c146105435780633c7324641461055f57610288565b806318160ddd1161025057806318160ddd146103985780631fac2a35146103c357806323b872dd1461040057806326092b83146104295780632f745c591461043357806330176e131461047057610288565b806301ffc9a71461028d57806306fdde03146102ca578063081812fc146102f5578063095ea7b3146103325780630996896b1461035b575b600080fd5b34801561029957600080fd5b506102b460048036038101906102af9190613eb9565b610ad0565b6040516102c19190614670565b60405180910390f35b3480156102d657600080fd5b506102df610c1a565b6040516102ec919061468b565b60405180910390f35b34801561030157600080fd5b5061031c60048036038101906103179190613f5c565b610cac565b6040516103299190614609565b60405180910390f35b34801561033e57600080fd5b5061035960048036038101906103549190613d67565b610d31565b005b34801561036757600080fd5b50610382600480360381019061037d9190613df0565b610e4a565b60405161038f9190614670565b60405180910390f35b3480156103a457600080fd5b506103ad610e61565b6040516103ba9190614aad565b60405180910390f35b3480156103cf57600080fd5b506103ea60048036038101906103e59190613be4565b610e6a565b6040516103f79190614aad565b60405180910390f35b34801561040c57600080fd5b5061042760048036038101906104229190613c51565b610e82565b005b610431610e92565b005b34801561043f57600080fd5b5061045a60048036038101906104559190613d67565b61109c565b6040516104679190614aad565b60405180910390f35b34801561047c57600080fd5b5061049760048036038101906104929190613f13565b61129a565b005b3480156104a557600080fd5b506104ae611330565b6040516104bb9190614aad565b60405180910390f35b3480156104d057600080fd5b506104eb60048036038101906104e69190613e4c565b611336565b005b3480156104f957600080fd5b506105026113cf565b60405161050f9190614670565b60405180910390f35b34801561052457600080fd5b5061052d6113e2565b60405161053a9190614aad565b60405180910390f35b61055d60048036038101906105589190613da7565b6113e8565b005b34801561056b57600080fd5b5061058660048036038101906105819190613f5c565b611708565b005b34801561059457600080fd5b506105af60048036038101906105aa9190613c51565b61178e565b005b3480156105bd57600080fd5b506105c66117ae565b6040516105d39190614aad565b60405180910390f35b3480156105e857600080fd5b5061060360048036038101906105fe9190613f5c565b6117b4565b6040516106109190614aad565b60405180910390f35b34801561062557600080fd5b50610640600480360381019061063b9190613f5c565b611807565b005b34801561064e57600080fd5b5061066960048036038101906106649190613f5c565b61188d565b6040516106769190614609565b60405180910390f35b34801561068b57600080fd5b506106a660048036038101906106a19190613f5c565b6118a3565b005b3480156106b457600080fd5b506106bd611929565b6040516106ca9190614aad565b60405180910390f35b3480156106df57600080fd5b506106fa60048036038101906106f59190613be4565b61192f565b6040516107079190614aad565b60405180910390f35b34801561071c57600080fd5b50610725611a18565b005b34801561073357600080fd5b5061073c611aa0565b6040516107499190614aad565b60405180910390f35b34801561075e57600080fd5b5061077960048036038101906107749190613f5c565b611aa6565b005b34801561078757600080fd5b506107a2600480360381019061079d9190613f5c565b611b2c565b005b3480156107b057600080fd5b506107b9611bb2565b6040516107c69190614aad565b60405180910390f35b3480156107db57600080fd5b506107e4611bb8565b6040516107f19190614609565b60405180910390f35b34801561080657600080fd5b5061080f611be2565b60405161081c919061468b565b60405180910390f35b34801561083157600080fd5b5061084c60048036038101906108479190613d27565b611c74565b005b34801561085a57600080fd5b50610863611df5565b6040516108709190614670565b60405180910390f35b34801561088557600080fd5b506108a0600480360381019061089b9190613ca4565b611e08565b005b3480156108ae57600080fd5b506108b7611e64565b6040516108c49190614aad565b60405180910390f35b3480156108d957600080fd5b506108f460048036038101906108ef9190613df0565b611e6a565b6040516109019190614670565b60405180910390f35b34801561091657600080fd5b50610931600480360381019061092c9190613f5c565b611e81565b60405161093e919061468b565b60405180910390f35b34801561095357600080fd5b5061095c611eb5565b604051610969919061468b565b60405180910390f35b34801561097e57600080fd5b50610987611f43565b6040516109949190614aad565b60405180910390f35b3480156109a957600080fd5b506109c460048036038101906109bf9190613d67565b611f49565b005b3480156109d257600080fd5b506109ed60048036038101906109e89190613c11565b61202c565b6040516109fa9190614670565b60405180910390f35b348015610a0f57600080fd5b50610a2a6004803603810190610a259190613be4565b6120c0565b005b348015610a3857600080fd5b50610a536004803603810190610a4e9190613d67565b6121b8565b005b348015610a6157600080fd5b50610a7c6004803603810190610a779190613e79565b612328565b005b348015610a8a57600080fd5b50610aa56004803603810190610aa09190613be4565b6123b6565b005b348015610ab357600080fd5b50610ace6004803603810190610ac99190613e4c565b6124e8565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610b9b57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610c0357507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610c135750610c1282612581565b5b9050919050565b606060018054610c2990614e19565b80601f0160208091040260200160405190810160405280929190818152602001828054610c5590614e19565b8015610ca25780601f10610c7757610100808354040283529160200191610ca2565b820191906000526020600020905b815481529060010190602001808311610c8557829003601f168201915b5050505050905090565b6000610cb7826125eb565b610cf6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ced90614a6d565b60405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610d3c8261188d565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610dad576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610da49061496d565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610dcc6125f8565b73ffffffffffffffffffffffffffffffffffffffff161480610dfb5750610dfa81610df56125f8565b61202c565b5b610e3a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e319061484d565b60405180910390fd5b610e45838383612600565b505050565b6000610e5960125484846126b2565b905092915050565b60008054905090565b60146020528060005260406000206000915090505481565b610e8d8383836126f8565b505050565b601160019054906101000a900460ff1615610ee2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ed9906146cd565b60405180910390fd5b6000600a5434610ef29190614ef3565b905060008114610f37576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f2e906147ad565b60405180910390fd5b6000600a5434610f479190614c7a565b905060008111610f8c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f839061474d565b60405180910390fd5b600f54811115610fd1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fc89061472d565b60405180910390fd5b80600c541015611016576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161100d90614a0d565b60405180910390fd5b600e54600b546110269190614cdf565b8161102f610e61565b6110399190614c24565b111561107a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110719061498d565b60405180910390fd5b80600c546110889190614cdf565b600c819055506110983382612cb1565b5050565b60006110a78361192f565b82106110e8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110df906146ad565b60405180910390fd5b60006110f2610e61565b905060008060005b83811015611258576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146111ec57806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156112445786841415611235578195505050505050611294565b838061124090614e7c565b9450505b50808061125090614e7c565b9150506110fa565b506040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161128b90614a2d565b60405180910390fd5b92915050565b6112a26125f8565b73ffffffffffffffffffffffffffffffffffffffff166112c0611bb8565b73ffffffffffffffffffffffffffffffffffffffff1614611316576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161130d906148cd565b60405180910390fd5b806009908051906020019061132c92919061390b565b5050565b600f5481565b61133e6125f8565b73ffffffffffffffffffffffffffffffffffffffff1661135c611bb8565b73ffffffffffffffffffffffffffffffffffffffff16146113b2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113a9906148cd565b60405180910390fd5b80601160016101000a81548160ff02191690831515021790555050565b601160019054906101000a900460ff1681565b600d5481565b601160009054906101000a900460ff1615611438576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161142f9061488d565b60405180910390fd5b6114428133610e4a565b8061145357506114528133611e6a565b5b611492576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611489906147cd565b60405180910390fd5b6000600f5490506114a38233611e6a565b156114ae5760105490505b6000600a54346114be9190614ef3565b905060008114611503576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114fa906147ad565b60405180910390fd5b6000600a54346115139190614c7a565b905060008111611558576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161154f9061474d565b60405180910390fd5b8281601460003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546115a49190614c24565b11156115e5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115dc9061482d565b60405180910390fd5b80600d54101561162a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611621906147ed565b60405180910390fd5b600e54600b5461163a9190614cdf565b81611643610e61565b61164d9190614c24565b111561168e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116859061498d565b60405180910390fd5b80600d5461169c9190614cdf565b600d8190555080601460003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546116f19190614c24565b925050819055506117023382612cb1565b50505050565b6117106125f8565b73ffffffffffffffffffffffffffffffffffffffff1661172e611bb8565b73ffffffffffffffffffffffffffffffffffffffff1614611784576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161177b906148cd565b60405180910390fd5b80600e8190555050565b6117a983838360405180602001604052806000815250611e08565b505050565b600b5481565b60006117be610e61565b82106117ff576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117f69061476d565b60405180910390fd5b819050919050565b61180f6125f8565b73ffffffffffffffffffffffffffffffffffffffff1661182d611bb8565b73ffffffffffffffffffffffffffffffffffffffff1614611883576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161187a906148cd565b60405180910390fd5b80600a8190555050565b600061189882612d64565b600001519050919050565b6118ab6125f8565b73ffffffffffffffffffffffffffffffffffffffff166118c9611bb8565b73ffffffffffffffffffffffffffffffffffffffff161461191f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611916906148cd565b60405180910390fd5b80600c8190555050565b600a5481565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156119a0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119979061486d565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b611a206125f8565b73ffffffffffffffffffffffffffffffffffffffff16611a3e611bb8565b73ffffffffffffffffffffffffffffffffffffffff1614611a94576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a8b906148cd565b60405180910390fd5b611a9e6000612f67565b565b600e5481565b611aae6125f8565b73ffffffffffffffffffffffffffffffffffffffff16611acc611bb8565b73ffffffffffffffffffffffffffffffffffffffff1614611b22576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b19906148cd565b60405180910390fd5b80600f8190555050565b611b346125f8565b73ffffffffffffffffffffffffffffffffffffffff16611b52611bb8565b73ffffffffffffffffffffffffffffffffffffffff1614611ba8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b9f906148cd565b60405180910390fd5b80600d8190555050565b600c5481565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060028054611bf190614e19565b80601f0160208091040260200160405190810160405280929190818152602001828054611c1d90614e19565b8015611c6a5780601f10611c3f57610100808354040283529160200191611c6a565b820191906000526020600020905b815481529060010190602001808311611c4d57829003601f168201915b5050505050905090565b611c7c6125f8565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611cea576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ce19061492d565b60405180910390fd5b8060066000611cf76125f8565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611da46125f8565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611de99190614670565b60405180910390a35050565b601160009054906101000a900460ff1681565b611e138484846126f8565b611e1f8484848461302d565b611e5e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e55906149ad565b60405180910390fd5b50505050565b60105481565b6000611e7960135484846126b2565b905092915050565b60606009611e8e836131c4565b604051602001611e9f9291906145d0565b6040516020818303038152906040529050919050565b60098054611ec290614e19565b80601f0160208091040260200160405190810160405280929190818152602001828054611eee90614e19565b8015611f3b5780601f10611f1057610100808354040283529160200191611f3b565b820191906000526020600020905b815481529060010190602001808311611f1e57829003601f168201915b505050505081565b60075481565b611f516125f8565b73ffffffffffffffffffffffffffffffffffffffff16611f6f611bb8565b73ffffffffffffffffffffffffffffffffffffffff1614611fc5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fbc906148cd565b60405180910390fd5b600e5481111561200a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120019061480d565b60405180910390fd5b80600e546120189190614cdf565b600e819055506120288282612cb1565b5050565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6120c86125f8565b73ffffffffffffffffffffffffffffffffffffffff166120e6611bb8565b73ffffffffffffffffffffffffffffffffffffffff161461213c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612133906148cd565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156121ac576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121a3906146ed565b60405180910390fd5b6121b581612f67565b50565b6121c06125f8565b73ffffffffffffffffffffffffffffffffffffffff166121de611bb8565b73ffffffffffffffffffffffffffffffffffffffff1614612234576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161222b906148cd565b60405180910390fd5b47811115612277576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161226e9061490d565b60405180910390fd5b60008273ffffffffffffffffffffffffffffffffffffffff168260405161229d906145f4565b60006040518083038185875af1925050503d80600081146122da576040519150601f19603f3d011682016040523d82523d6000602084013e6122df565b606091505b5050905080612323576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161231a906148ed565b60405180910390fd5b505050565b6123306125f8565b73ffffffffffffffffffffffffffffffffffffffff1661234e611bb8565b73ffffffffffffffffffffffffffffffffffffffff16146123a4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161239b906148cd565b60405180910390fd5b81601281905550806013819055505050565b6123be6125f8565b73ffffffffffffffffffffffffffffffffffffffff166123dc611bb8565b73ffffffffffffffffffffffffffffffffffffffff1614612432576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612429906148cd565b60405180910390fd5b600047905060008273ffffffffffffffffffffffffffffffffffffffff168260405161245d906145f4565b60006040518083038185875af1925050503d806000811461249a576040519150601f19603f3d011682016040523d82523d6000602084013e61249f565b606091505b50509050806124e3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124da906148ed565b60405180910390fd5b505050565b6124f06125f8565b73ffffffffffffffffffffffffffffffffffffffff1661250e611bb8565b73ffffffffffffffffffffffffffffffffffffffff1614612564576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161255b906148cd565b60405180910390fd5b80601160006101000a81548160ff02191690831515021790555050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6000805482109050919050565b600033905090565b826005600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60006126ef84836040516020016126c99190614589565b60405160208183030381529060405280519060200120856133259092919063ffffffff16565b90509392505050565b600061270382612d64565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff1661272a6125f8565b73ffffffffffffffffffffffffffffffffffffffff161480612786575061274f6125f8565b73ffffffffffffffffffffffffffffffffffffffff1661276e84610cac565b73ffffffffffffffffffffffffffffffffffffffff16145b806127a257506127a1826000015161279c6125f8565b61202c565b5b9050806127e4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127db9061494d565b60405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff1614612856576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161284d906148ad565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156128c6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128bd9061478d565b60405180910390fd5b6128d3858585600161333c565b6128e36000848460000151612600565b6001600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff166129519190614cab565b92506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff1602179055506001600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff166129f59190614bde565b92506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060405180604001604052808573ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506003600085815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055509050506000600184612afb9190614c24565b9050600073ffffffffffffffffffffffffffffffffffffffff166003600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415612c4157612b71816125eb565b15612c40576040518060400160405280846000015173ffffffffffffffffffffffffffffffffffffffff168152602001846020015167ffffffffffffffff168152506003600083815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055509050505b5b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612ca98686866001613342565b505050505050565b600b5481612cbd610e61565b612cc79190614c24565b1115612d08576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612cff9061498d565b60405180910390fd5b612d128282613348565b8173ffffffffffffffffffffffffffffffffffffffff167f0f6798a560793a54c3bcfe86a93cde1e73087d944c0ea20544137d412139688582604051612d589190614aad565b60405180910390a25050565b612d6c613991565b612d75826125eb565b612db4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612dab9061470d565b60405180910390fd5b60007f000000000000000000000000000000000000000000000000000000000000012c8310612e185760017f000000000000000000000000000000000000000000000000000000000000012c84612e0b9190614cdf565b612e159190614c24565b90505b60008390505b818110612f26576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612f1257809350505050612f62565b508080612f1e90614def565b915050612e1e565b506040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f5990614a4d565b60405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600061304e8473ffffffffffffffffffffffffffffffffffffffff16613366565b156131b7578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026130776125f8565b8786866040518563ffffffff1660e01b81526004016130999493929190614624565b602060405180830381600087803b1580156130b357600080fd5b505af19250505080156130e457506040513d601f19601f820116820180604052508101906130e19190613ee6565b60015b613167573d8060008114613114576040519150601f19603f3d011682016040523d82523d6000602084013e613119565b606091505b5060008151141561315f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613156906149ad565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506131bc565b600190505b949350505050565b6060600082141561320c576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050613320565b600082905060005b6000821461323e57808061322790614e7c565b915050600a826132379190614c7a565b9150613214565b60008167ffffffffffffffff81111561325a57613259614fe0565b5b6040519080825280601f01601f19166020018201604052801561328c5781602001600182028036833780820191505090505b5090505b60008514613319576001826132a59190614cdf565b9150600a856132b49190614ef3565b60306132c09190614c24565b60f81b8183815181106132d6576132d5614fb1565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856133129190614c7a565b9450613290565b8093505050505b919050565b6000826133328584613379565b1490509392505050565b50505050565b50505050565b61336282826040518060200160405280600081525061342c565b5050565b600080823b905060008111915050919050565b60008082905060005b84518110156134215760008582815181106133a05761339f614fb1565b5b602002602001015190508083116133e15782816040516020016133c49291906145a4565b60405160208183030381529060405280519060200120925061340d565b80836040516020016133f49291906145a4565b6040516020818303038152906040528051906020012092505b50808061341990614e7c565b915050613382565b508091505092915050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156134a2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613499906149ed565b60405180910390fd5b6134ab816125eb565b156134eb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016134e2906149cd565b60405180910390fd5b7f000000000000000000000000000000000000000000000000000000000000012c83111561354e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161354590614a8d565b60405180910390fd5b61355b600085838661333c565b6000600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206040518060400160405290816000820160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff1681526020016000820160109054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff1681525050905060405180604001604052808583600001516136589190614bde565b6fffffffffffffffffffffffffffffffff16815260200185836020015161367f9190614bde565b6fffffffffffffffffffffffffffffffff16815250600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008201518160000160006101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060208201518160000160106101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555090505060405180604001604052808673ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506003600084815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550905050600082905060005b858110156138ee57818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461388e600088848861302d565b6138cd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016138c4906149ad565b60405180910390fd5b81806138d890614e7c565b92505080806138e690614e7c565b91505061381d565b50806000819055506139036000878588613342565b505050505050565b82805461391790614e19565b90600052602060002090601f0160209004810192826139395760008555613980565b82601f1061395257805160ff1916838001178555613980565b82800160010185558215613980579182015b8281111561397f578251825591602001919060010190613964565b5b50905061398d91906139cb565b5090565b6040518060400160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681525090565b5b808211156139e45760008160009055506001016139cc565b5090565b60006139fb6139f684614aed565b614ac8565b90508083825260208201905082856020860282011115613a1e57613a1d615014565b5b60005b85811015613a4e5781613a348882613b34565b845260208401935060208301925050600181019050613a21565b5050509392505050565b6000613a6b613a6684614b19565b614ac8565b905082815260208101848484011115613a8757613a86615019565b5b613a92848285614dad565b509392505050565b6000613aad613aa884614b4a565b614ac8565b905082815260208101848484011115613ac957613ac8615019565b5b613ad4848285614dad565b509392505050565b600081359050613aeb816157ef565b92915050565b600082601f830112613b0657613b0561500f565b5b8135613b168482602086016139e8565b91505092915050565b600081359050613b2e81615806565b92915050565b600081359050613b438161581d565b92915050565b600081359050613b5881615834565b92915050565b600081519050613b6d81615834565b92915050565b600082601f830112613b8857613b8761500f565b5b8135613b98848260208601613a58565b91505092915050565b600082601f830112613bb657613bb561500f565b5b8135613bc6848260208601613a9a565b91505092915050565b600081359050613bde8161584b565b92915050565b600060208284031215613bfa57613bf9615023565b5b6000613c0884828501613adc565b91505092915050565b60008060408385031215613c2857613c27615023565b5b6000613c3685828601613adc565b9250506020613c4785828601613adc565b9150509250929050565b600080600060608486031215613c6a57613c69615023565b5b6000613c7886828701613adc565b9350506020613c8986828701613adc565b9250506040613c9a86828701613bcf565b9150509250925092565b60008060008060808587031215613cbe57613cbd615023565b5b6000613ccc87828801613adc565b9450506020613cdd87828801613adc565b9350506040613cee87828801613bcf565b925050606085013567ffffffffffffffff811115613d0f57613d0e61501e565b5b613d1b87828801613b73565b91505092959194509250565b60008060408385031215613d3e57613d3d615023565b5b6000613d4c85828601613adc565b9250506020613d5d85828601613b1f565b9150509250929050565b60008060408385031215613d7e57613d7d615023565b5b6000613d8c85828601613adc565b9250506020613d9d85828601613bcf565b9150509250929050565b600060208284031215613dbd57613dbc615023565b5b600082013567ffffffffffffffff811115613ddb57613dda61501e565b5b613de784828501613af1565b91505092915050565b60008060408385031215613e0757613e06615023565b5b600083013567ffffffffffffffff811115613e2557613e2461501e565b5b613e3185828601613af1565b9250506020613e4285828601613adc565b9150509250929050565b600060208284031215613e6257613e61615023565b5b6000613e7084828501613b1f565b91505092915050565b60008060408385031215613e9057613e8f615023565b5b6000613e9e85828601613b34565b9250506020613eaf85828601613b34565b9150509250929050565b600060208284031215613ecf57613ece615023565b5b6000613edd84828501613b49565b91505092915050565b600060208284031215613efc57613efb615023565b5b6000613f0a84828501613b5e565b91505092915050565b600060208284031215613f2957613f28615023565b5b600082013567ffffffffffffffff811115613f4757613f4661501e565b5b613f5384828501613ba1565b91505092915050565b600060208284031215613f7257613f71615023565b5b6000613f8084828501613bcf565b91505092915050565b613f9281614d13565b82525050565b613fa9613fa482614d13565b614ec5565b82525050565b613fb881614d25565b82525050565b613fcf613fca82614d31565b614ed7565b82525050565b6000613fe082614b90565b613fea8185614ba6565b9350613ffa818560208601614dbc565b61400381615028565b840191505092915050565b600061401982614b9b565b6140238185614bc2565b9350614033818560208601614dbc565b61403c81615028565b840191505092915050565b600061405282614b9b565b61405c8185614bd3565b935061406c818560208601614dbc565b80840191505092915050565b6000815461408581614e19565b61408f8186614bd3565b945060018216600081146140aa57600181146140bb576140ee565b60ff198316865281860193506140ee565b6140c485614b7b565b60005b838110156140e6578154818901526001820191506020810190506140c7565b838801955050505b50505092915050565b6000614104602283614bc2565b915061410f82615046565b604082019050919050565b6000614127601283614bc2565b915061413282615095565b602082019050919050565b600061414a602683614bc2565b9150614155826150be565b604082019050919050565b600061416d602a83614bc2565b91506141788261510d565b604082019050919050565b6000614190601783614bc2565b915061419b8261515c565b602082019050919050565b60006141b3601383614bc2565b91506141be82615185565b602082019050919050565b60006141d6602383614bc2565b91506141e1826151ae565b604082019050919050565b60006141f9602583614bc2565b9150614204826151fd565b604082019050919050565b600061421c601e83614bc2565b91506142278261524c565b602082019050919050565b600061423f600c83614bc2565b915061424a82615275565b602082019050919050565b6000614262601783614bc2565b915061426d8261529e565b602082019050919050565b6000614285602383614bc2565b9150614290826152c7565b604082019050919050565b60006142a8601b83614bc2565b91506142b382615316565b602082019050919050565b60006142cb603983614bc2565b91506142d68261533f565b604082019050919050565b60006142ee602b83614bc2565b91506142f98261538e565b604082019050919050565b6000614311601583614bc2565b915061431c826153dd565b602082019050919050565b6000614334602683614bc2565b915061433f82615406565b604082019050919050565b6000614357602083614bc2565b915061436282615455565b602082019050919050565b600061437a601483614bc2565b91506143858261547e565b602082019050919050565b600061439d600e83614bc2565b91506143a8826154a7565b602082019050919050565b60006143c0601a83614bc2565b91506143cb826154d0565b602082019050919050565b60006143e3603283614bc2565b91506143ee826154f9565b604082019050919050565b6000614406602283614bc2565b915061441182615548565b604082019050919050565b6000614429600083614bb7565b915061443482615597565b600082019050919050565b600061444c600883614bc2565b91506144578261559a565b602082019050919050565b600061446f603383614bc2565b915061447a826155c3565b604082019050919050565b6000614492601d83614bc2565b915061449d82615612565b602082019050919050565b60006144b5602183614bc2565b91506144c08261563b565b604082019050919050565b60006144d8601483614bc2565b91506144e38261568a565b602082019050919050565b60006144fb602e83614bc2565b9150614506826156b3565b604082019050919050565b600061451e602f83614bc2565b915061452982615702565b604082019050919050565b6000614541602d83614bc2565b915061454c82615751565b604082019050919050565b6000614564602283614bc2565b915061456f826157a0565b604082019050919050565b61458381614da3565b82525050565b60006145958284613f98565b60148201915081905092915050565b60006145b08285613fbe565b6020820191506145c08284613fbe565b6020820191508190509392505050565b60006145dc8285614078565b91506145e88284614047565b91508190509392505050565b60006145ff8261441c565b9150819050919050565b600060208201905061461e6000830184613f89565b92915050565b60006080820190506146396000830187613f89565b6146466020830186613f89565b614653604083018561457a565b81810360608301526146658184613fd5565b905095945050505050565b60006020820190506146856000830184613faf565b92915050565b600060208201905081810360008301526146a5818461400e565b905092915050565b600060208201905081810360008301526146c6816140f7565b9050919050565b600060208201905081810360008301526146e68161411a565b9050919050565b600060208201905081810360008301526147068161413d565b9050919050565b6000602082019050818103600083015261472681614160565b9050919050565b6000602082019050818103600083015261474681614183565b9050919050565b60006020820190508181036000830152614766816141a6565b9050919050565b60006020820190508181036000830152614786816141c9565b9050919050565b600060208201905081810360008301526147a6816141ec565b9050919050565b600060208201905081810360008301526147c68161420f565b9050919050565b600060208201905081810360008301526147e681614232565b9050919050565b6000602082019050818103600083015261480681614255565b9050919050565b6000602082019050818103600083015261482681614278565b9050919050565b600060208201905081810360008301526148468161429b565b9050919050565b60006020820190508181036000830152614866816142be565b9050919050565b60006020820190508181036000830152614886816142e1565b9050919050565b600060208201905081810360008301526148a681614304565b9050919050565b600060208201905081810360008301526148c681614327565b9050919050565b600060208201905081810360008301526148e68161434a565b9050919050565b600060208201905081810360008301526149068161436d565b9050919050565b6000602082019050818103600083015261492681614390565b9050919050565b60006020820190508181036000830152614946816143b3565b9050919050565b60006020820190508181036000830152614966816143d6565b9050919050565b60006020820190508181036000830152614986816143f9565b9050919050565b600060208201905081810360008301526149a68161443f565b9050919050565b600060208201905081810360008301526149c681614462565b9050919050565b600060208201905081810360008301526149e681614485565b9050919050565b60006020820190508181036000830152614a06816144a8565b9050919050565b60006020820190508181036000830152614a26816144cb565b9050919050565b60006020820190508181036000830152614a46816144ee565b9050919050565b60006020820190508181036000830152614a6681614511565b9050919050565b60006020820190508181036000830152614a8681614534565b9050919050565b60006020820190508181036000830152614aa681614557565b9050919050565b6000602082019050614ac2600083018461457a565b92915050565b6000614ad2614ae3565b9050614ade8282614e4b565b919050565b6000604051905090565b600067ffffffffffffffff821115614b0857614b07614fe0565b5b602082029050602081019050919050565b600067ffffffffffffffff821115614b3457614b33614fe0565b5b614b3d82615028565b9050602081019050919050565b600067ffffffffffffffff821115614b6557614b64614fe0565b5b614b6e82615028565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000614be982614d67565b9150614bf483614d67565b9250826fffffffffffffffffffffffffffffffff03821115614c1957614c18614f24565b5b828201905092915050565b6000614c2f82614da3565b9150614c3a83614da3565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115614c6f57614c6e614f24565b5b828201905092915050565b6000614c8582614da3565b9150614c9083614da3565b925082614ca057614c9f614f53565b5b828204905092915050565b6000614cb682614d67565b9150614cc183614d67565b925082821015614cd457614cd3614f24565b5b828203905092915050565b6000614cea82614da3565b9150614cf583614da3565b925082821015614d0857614d07614f24565b5b828203905092915050565b6000614d1e82614d83565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b60006fffffffffffffffffffffffffffffffff82169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015614dda578082015181840152602081019050614dbf565b83811115614de9576000848401525b50505050565b6000614dfa82614da3565b91506000821415614e0e57614e0d614f24565b5b600182039050919050565b60006002820490506001821680614e3157607f821691505b60208210811415614e4557614e44614f82565b5b50919050565b614e5482615028565b810181811067ffffffffffffffff82111715614e7357614e72614fe0565b5b80604052505050565b6000614e8782614da3565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415614eba57614eb9614f24565b5b600182019050919050565b6000614ed082614ee1565b9050919050565b6000819050919050565b6000614eec82615039565b9050919050565b6000614efe82614da3565b9150614f0983614da3565b925082614f1957614f18614f53565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b60008160601b9050919050565b7f455243373231413a206f776e657220696e646578206f7574206f6620626f756e60008201527f6473000000000000000000000000000000000000000000000000000000000000602082015250565b7f5075626c6963206d696e74207061757365640000000000000000000000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a206f776e657220717565727920666f72206e6f6e6578697360008201527f74656e7420746f6b656e00000000000000000000000000000000000000000000602082015250565b7f45786365656420616c6c6f77616e636520706572207478000000000000000000600082015250565b7f416d6f756e7420746f206d696e74206973203000000000000000000000000000600082015250565b7f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f7560008201527f6e64730000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f53656e64206120646976697369626c6520616d6f756e74206f66206574680000600082015250565b7f4e6f7420656c696769626c650000000000000000000000000000000000000000600082015250565b7f57686974656c697374206d696e7420736f6c64206f7574000000000000000000600082015250565b7f4d696e74696e6720616d6f756e7420657863656564207265736572766564207360008201527f697a650000000000000000000000000000000000000000000000000000000000602082015250565b7f45786365656420616c6c6f77616e6365207065722077616c6c65740000000000600082015250565b7f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000602082015250565b7f455243373231413a2062616c616e636520717565727920666f7220746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b7f57686974656c697374206d696e74207061757365640000000000000000000000600082015250565b7f455243373231413a207472616e736665722066726f6d20696e636f727265637460008201527f206f776e65720000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4661696c656420746f2073656e64206574686572000000000000000000000000600082015250565b7f4578636565642062616c616e6365000000000000000000000000000000000000600082015250565b7f455243373231413a20617070726f766520746f2063616c6c6572000000000000600082015250565b7f455243373231413a207472616e736665722063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b7f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60008201527f6572000000000000000000000000000000000000000000000000000000000000602082015250565b50565b7f536f6c64206f7574000000000000000000000000000000000000000000000000600082015250565b7f455243373231413a207472616e7366657220746f206e6f6e204552433732315260008201527f6563656976657220696d706c656d656e74657200000000000000000000000000602082015250565b7f455243373231413a20746f6b656e20616c7265616479206d696e746564000000600082015250565b7f455243373231413a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f5075626c6963206d696e7420736f6c64206f7574000000000000000000000000600082015250565b7f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060008201527f6f776e657220627920696e646578000000000000000000000000000000000000602082015250565b7f455243373231413a20756e61626c6520746f2064657465726d696e652074686560008201527f206f776e6572206f6620746f6b656e0000000000000000000000000000000000602082015250565b7f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560008201527f78697374656e7420746f6b656e00000000000000000000000000000000000000602082015250565b7f455243373231413a207175616e7469747920746f206d696e7420746f6f20686960008201527f6768000000000000000000000000000000000000000000000000000000000000602082015250565b6157f881614d13565b811461580357600080fd5b50565b61580f81614d25565b811461581a57600080fd5b50565b61582681614d31565b811461583157600080fd5b50565b61583d81614d3b565b811461584857600080fd5b50565b61585481614da3565b811461585f57600080fd5b5056fea26469706673582212203611e40af596d2ca25c3758b74cc46e369a348084d14b4bed1cd8d238efc451b64736f6c63430008070033

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

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