ETH Price: $3,381.47 (-0.77%)
Gas: 4 Gwei

Token

ARSTCRT (ARSTCRT)
 

Overview

Max Total Supply

3,000 ARSTCRT

Holders

1,696

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Balance
1 ARSTCRT
0x6b29695f1b401972fa5f30a667fc3a1d99d1c409
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:
ARSTCRT

Compiler Version
v0.8.15+commit.e14f2714

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 15 : ARSTCRT.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.10;

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

contract ARSTCRT is Ownable, ERC721A {
    using ECDSA for bytes32;

    address private signerAddress = 0xAc41f41Fb962C8164967355E53cf287BA39489B3;
    uint256 public immutable maxMint;
    uint256 public immutable ringSupply;
    string private _baseTokenURI;
    bool public presaleLive = false;
    bool public publicLive = false;
    bool public shareLive = false;
    uint256 public shareValue;

    mapping(uint256 => bool) public isClaimed;

    event SignerAddress(address indexed _from, address _to);

    constructor(
        uint256 maxMint_,
        uint256 ringSupply_,
        string memory baseTokenURI_
    ) ERC721A("ARSTCRT", "ARSTCRT", maxMint_) {
        maxMint = maxMint_;
        _baseTokenURI = baseTokenURI_;
        ringSupply = ringSupply_;
    }

    function toggleSale(
        bool _presale,
        bool _public,
        bool _share
    ) external onlyOwner {
        presaleLive = _presale;
        publicLive = _public;
        shareLive = _share;
    }

    function setShareValue() external onlyOwner {
        for (uint256 i = 0; i < totalSupply(); i++) {
            isClaimed[i] = false;
        }
        shareValue = (address(this).balance * 4) / 10;
    }

    function getShare() external {
        require(shareLive, "Share session not open yet");
        uint256 _share = shareValue / totalSupply();
        uint256 _validToken = 0;
        for (uint256 i = 0; i < balanceOf(msg.sender); i++) {
            uint256 _tokenId = tokenOfOwnerByIndex(msg.sender, i);
            if (!isClaimed[_tokenId]) {
                isClaimed[_tokenId] = true;
                _validToken++;
            }
        }
        uint256 _val = _share * _validToken;
        payable(msg.sender).transfer(_val);
    }

    function pubMint() payable external {
        require(publicLive, "Public sale not open yet");
        require(_numberMinted(msg.sender) < 1, "Supply Runs Out");
        require(totalSupply() < ringSupply, "Sold out");
        _safeMint(msg.sender, 1);
    }

    function presaleMint(
        uint256 _nonce,
        bytes32 _msgHash,
        bytes memory _signature
    ) external {
        isValidWhitelist(msg.sender, _nonce, _msgHash, _signature);
        require(presaleLive, "Presale not open yet");
        require(_numberMinted(msg.sender) + 2 <= maxMint, "Supply Runs Out");
        require(totalSupply() + 2 <= ringSupply, "Sold out");
        _safeMint(msg.sender, 2);
    }

    function setSignerAddress(address _newSigner) external onlyOwner {
        signerAddress = _newSigner;
        emit SignerAddress(msg.sender, signerAddress);
    }

    function isValidWhitelist(
        address _whitelistAddress,
        uint256 _nonce,
        bytes32 _messageHash,
        bytes memory _signature
    ) private view returns (bool) {
        require(
            _messageHash ==
                ECDSA.toEthSignedMessageHash(
                    hashWhitelist(_whitelistAddress, _nonce)
                ),
            "Invalid message hash"
        );
        require(
            signerAddress == ECDSA.recover(_messageHash, _signature),
            "Invalid signature"
        );
        return true;
    }

    function setBaseURI(string calldata baseURI) external onlyOwner {
        _baseTokenURI = baseURI;
    }

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

    function hashWhitelist(address _whitelistAddress, uint256 _nonce)
        private
        pure
        returns (bytes32)
    {
        bytes memory hashData = abi.encodePacked(_whitelistAddress, _nonce);
        bytes32 hashStructz = keccak256(hashData);
        return hashStructz;
    }
}

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

pragma solidity ^0.8.0;

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

/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
 * the Metadata and Enumerable extension. Built to optimize for lower gas during batch mints.
 *
 * Assumes serials are sequentially minted starting at 0 (e.g. 0, 1, 2, 3..).
 *
 * 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 3 of 15 : ECDSA.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (utils/cryptography/ECDSA.sol)

pragma solidity ^0.8.0;

import "../Strings.sol";

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

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

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

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

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

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

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

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

        return (signer, RecoverError.NoError);
    }

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

File 5 of 15 : Base64.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (utils/Base64.sol)

pragma solidity ^0.8.0;

/**
 * @dev Provides a set of functions to operate with Base64 strings.
 *
 * _Available since v4.5._
 */
library Base64 {
    /**
     * @dev Base64 Encoding/Decoding Table
     */
    string internal constant _TABLE = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/";

    /**
     * @dev Converts a `bytes` to its Bytes64 `string` representation.
     */
    function encode(bytes memory data) internal pure returns (string memory) {
        /**
         * Inspired by Brecht Devos (Brechtpd) implementation - MIT licence
         * https://github.com/Brechtpd/base64/blob/e78d9fd951e7b0977ddca77d92dc85183770daf4/base64.sol
         */
        if (data.length == 0) return "";

        // Loads the table into memory
        string memory table = _TABLE;

        // Encoding takes 3 bytes chunks of binary data from `bytes` data parameter
        // and split into 4 numbers of 6 bits.
        // The final Base64 length should be `bytes` data length multiplied by 4/3 rounded up
        // - `data.length + 2`  -> Round up
        // - `/ 3`              -> Number of 3-bytes chunks
        // - `4 *`              -> 4 characters for each chunk
        string memory result = new string(4 * ((data.length + 2) / 3));

        /// @solidity memory-safe-assembly
        assembly {
            // Prepare the lookup table (skip the first "length" byte)
            let tablePtr := add(table, 1)

            // Prepare result pointer, jump over length
            let resultPtr := add(result, 32)

            // Run over the input, 3 bytes at a time
            for {
                let dataPtr := data
                let endPtr := add(data, mload(data))
            } lt(dataPtr, endPtr) {

            } {
                // Advance 3 bytes
                dataPtr := add(dataPtr, 3)
                let input := mload(dataPtr)

                // To write each character, shift the 3 bytes (18 bits) chunk
                // 4 times in blocks of 6 bits for each character (18, 12, 6, 0)
                // and apply logical AND with 0x3F which is the number of
                // the previous character in the ASCII table prior to the Base64 Table
                // The result is then added to the table to get the character to write,
                // and finally write it in the result pointer but with a left shift
                // of 256 (1 byte) - 8 (1 ASCII char) = 248 bits

                mstore8(resultPtr, mload(add(tablePtr, and(shr(18, input), 0x3F))))
                resultPtr := add(resultPtr, 1) // Advance

                mstore8(resultPtr, mload(add(tablePtr, and(shr(12, input), 0x3F))))
                resultPtr := add(resultPtr, 1) // Advance

                mstore8(resultPtr, mload(add(tablePtr, and(shr(6, input), 0x3F))))
                resultPtr := add(resultPtr, 1) // Advance

                mstore8(resultPtr, mload(add(tablePtr, and(input, 0x3F))))
                resultPtr := add(resultPtr, 1) // Advance
            }

            // When data `bytes` is not exactly 3 bytes long
            // it is padded with `=` characters at the end
            switch mod(mload(data), 3)
            case 1 {
                mstore8(sub(resultPtr, 1), 0x3d)
                mstore8(sub(resultPtr, 2), 0x3d)
            }
            case 2 {
                mstore8(sub(resultPtr, 1), 0x3d)
            }
        }

        return result;
    }
}

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

pragma solidity ^0.8.1;

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

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

File 11 of 15 : IERC721Enumerable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC721/extensions/IERC721Enumerable.sol)

pragma solidity ^0.8.0;

import "../IERC721.sol";

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

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

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

pragma solidity ^0.8.0;

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

File 15 of 15 : 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":[{"internalType":"uint256","name":"maxMint_","type":"uint256"},{"internalType":"uint256","name":"ringSupply_","type":"uint256"},{"internalType":"string","name":"baseTokenURI_","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"_from","type":"address"},{"indexed":false,"internalType":"address","name":"_to","type":"address"}],"name":"SignerAddress","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":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getShare","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"isClaimed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMint","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":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"presaleLive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_nonce","type":"uint256"},{"internalType":"bytes32","name":"_msgHash","type":"bytes32"},{"internalType":"bytes","name":"_signature","type":"bytes"}],"name":"presaleMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"pubMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"publicLive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"ringSupply","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":"baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"setShareValue","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_newSigner","type":"address"}],"name":"setSignerAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"shareLive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"shareValue","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","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":"bool","name":"_presale","type":"bool"},{"internalType":"bool","name":"_public","type":"bool"},{"internalType":"bool","name":"_share","type":"bool"}],"name":"toggleSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60e06040526000600155600060085573ac41f41fb962c8164967355e53cf287ba39489b3600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506000600b60006101000a81548160ff0219169083151502179055506000600b60016101000a81548160ff0219169083151502179055506000600b60026101000a81548160ff021916908315150217905550348015620000c157600080fd5b5060405162005ce338038062005ce38339818101604052810190620000e79190620004b8565b6040518060400160405280600781526020017f41525354435254000000000000000000000000000000000000000000000000008152506040518060400160405280600781526020017f41525354435254000000000000000000000000000000000000000000000000008152508462000174620001686200021460201b60201c565b6200021c60201b60201c565b60008111620001ba576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620001b190620005ba565b60405180910390fd5b8260029081620001cb91906200081d565b508160039081620001dd91906200081d565b5080608081815250505050508260a0818152505080600a90816200020291906200081d565b508160c0818152505050505062000904565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000604051905090565b600080fd5b600080fd5b6000819050919050565b6200030981620002f4565b81146200031557600080fd5b50565b6000815190506200032981620002fe565b92915050565b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b620003848262000339565b810181811067ffffffffffffffff82111715620003a657620003a56200034a565b5b80604052505050565b6000620003bb620002e0565b9050620003c9828262000379565b919050565b600067ffffffffffffffff821115620003ec57620003eb6200034a565b5b620003f78262000339565b9050602081019050919050565b60005b838110156200042457808201518184015260208101905062000407565b8381111562000434576000848401525b50505050565b6000620004516200044b84620003ce565b620003af565b90508281526020810184848401111562000470576200046f62000334565b5b6200047d84828562000404565b509392505050565b600082601f8301126200049d576200049c6200032f565b5b8151620004af8482602086016200043a565b91505092915050565b600080600060608486031215620004d457620004d3620002ea565b5b6000620004e48682870162000318565b9350506020620004f78682870162000318565b925050604084015167ffffffffffffffff8111156200051b576200051a620002ef565b5b620005298682870162000485565b9150509250925092565b600082825260208201905092915050565b7f455243373231413a206d61782062617463682073697a65206d7573742062652060008201527f6e6f6e7a65726f00000000000000000000000000000000000000000000000000602082015250565b6000620005a260278362000533565b9150620005af8262000544565b604082019050919050565b60006020820190508181036000830152620005d58162000593565b9050919050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200062f57607f821691505b602082108103620006455762000644620005e7565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302620006af7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000670565b620006bb868362000670565b95508019841693508086168417925050509392505050565b6000819050919050565b6000620006fe620006f8620006f284620002f4565b620006d3565b620002f4565b9050919050565b6000819050919050565b6200071a83620006dd565b62000732620007298262000705565b8484546200067d565b825550505050565b600090565b620007496200073a565b620007568184846200070f565b505050565b5b818110156200077e57620007726000826200073f565b6001810190506200075c565b5050565b601f821115620007cd5762000797816200064b565b620007a28462000660565b81016020851015620007b2578190505b620007ca620007c18562000660565b8301826200075b565b50505b505050565b600082821c905092915050565b6000620007f260001984600802620007d2565b1980831691505092915050565b60006200080d8383620007df565b9150826002028217905092915050565b6200082882620005dc565b67ffffffffffffffff8111156200084457620008436200034a565b5b62000850825462000616565b6200085d82828562000782565b600060209050601f83116001811462000895576000841562000880578287015190505b6200088c8582620007ff565b865550620008fc565b601f198416620008a5866200064b565b60005b82811015620008cf57848901518255600182019150602085019450602081019050620008a8565b86831015620008ef5784890151620008eb601f891682620007df565b8355505b6001600288020188555050505b505050505050565b60805160a05160c05161538c6200095760003960008181610c1c01528181610ef0015261169901526000818161116a01526116220152600081816122300152818161225901526129e3015261538c6000f3fe6080604052600436106101f95760003560e01c8063715018a61161010d578063b7f751d8116100a0578063c87b56dd1161006f578063c87b56dd146106ec578063d7224ba014610729578063e85931c814610754578063e985e9c51461077f578063f2fde38b146107bc576101f9565b8063b7f751d814610658578063b88d4fde14610683578063bf9b7c8d146106ac578063c2cc785f146106d5576101f9565b80638da5cb5b116100dc5780638da5cb5b1461059c57806395d89b41146105c75780639e34070f146105f2578063a22cb4651461062f576101f9565b8063715018a6146105185780637501f7411461052f578063752987341461055a57806383a9e04914610571576101f9565b80632f745c59116101905780634f6ccce71161015f5780634f6ccce71461040f57806355f804b31461044c5780635901d38c146104755780636352211e1461049e57806370a08231146104db576101f9565b80632f745c59146103745780633fc55f6e146103b157806342842e0e146103bb578063447b15f4146103e4576101f9565b8063095ea7b3116101cc578063095ea7b3146102cc5780630ad8d2e1146102f557806318160ddd1461032057806323b872dd1461034b576101f9565b806301ffc9a7146101fe578063046dc1661461023b57806306fdde0314610264578063081812fc1461028f575b600080fd5b34801561020a57600080fd5b5061022560048036038101906102209190613317565b6107e5565b604051610232919061335f565b60405180910390f35b34801561024757600080fd5b50610262600480360381019061025d91906133d8565b61092f565b005b34801561027057600080fd5b506102796109eb565b604051610286919061349e565b60405180910390f35b34801561029b57600080fd5b506102b660048036038101906102b191906134f6565b610a7d565b6040516102c39190613532565b60405180910390f35b3480156102d857600080fd5b506102f360048036038101906102ee919061354d565b610b02565b005b34801561030157600080fd5b5061030a610c1a565b604051610317919061359c565b60405180910390f35b34801561032c57600080fd5b50610335610c3e565b604051610342919061359c565b60405180910390f35b34801561035757600080fd5b50610372600480360381019061036d91906135b7565b610c48565b005b34801561038057600080fd5b5061039b6004803603810190610396919061354d565b610c58565b6040516103a8919061359c565b60405180910390f35b6103b9610e54565b005b3480156103c757600080fd5b506103e260048036038101906103dd91906135b7565b610f64565b005b3480156103f057600080fd5b506103f9610f84565b604051610406919061359c565b60405180910390f35b34801561041b57600080fd5b50610436600480360381019061043191906134f6565b610f8a565b604051610443919061359c565b60405180910390f35b34801561045857600080fd5b50610473600480360381019061046e919061366f565b610fdd565b005b34801561048157600080fd5b5061049c600480360381019061049791906136e8565b610ffb565b005b3480156104aa57600080fd5b506104c560048036038101906104c091906134f6565b611056565b6040516104d29190613532565b60405180910390f35b3480156104e757600080fd5b5061050260048036038101906104fd91906133d8565b61106c565b60405161050f919061359c565b60405180910390f35b34801561052457600080fd5b5061052d611154565b005b34801561053b57600080fd5b50610544611168565b604051610551919061359c565b60405180910390f35b34801561056657600080fd5b5061056f61118c565b005b34801561057d57600080fd5b506105866112e7565b604051610593919061335f565b60405180910390f35b3480156105a857600080fd5b506105b16112fa565b6040516105be9190613532565b60405180910390f35b3480156105d357600080fd5b506105dc611323565b6040516105e9919061349e565b60405180910390f35b3480156105fe57600080fd5b50610619600480360381019061061491906134f6565b6113b5565b604051610626919061335f565b60405180910390f35b34801561063b57600080fd5b506106566004803603810190610651919061373b565b6113d5565b005b34801561066457600080fd5b5061066d611555565b60405161067a919061335f565b60405180910390f35b34801561068f57600080fd5b506106aa60048036038101906106a591906138ab565b611568565b005b3480156106b857600080fd5b506106d360048036038101906106ce9190613964565b6115c4565b005b3480156106e157600080fd5b506106ea61171d565b005b3480156106f857600080fd5b50610713600480360381019061070e91906134f6565b611798565b604051610720919061349e565b60405180910390f35b34801561073557600080fd5b5061073e61183f565b60405161074b919061359c565b60405180910390f35b34801561076057600080fd5b50610769611845565b604051610776919061335f565b60405180910390f35b34801561078b57600080fd5b506107a660048036038101906107a191906139d3565b611858565b6040516107b3919061335f565b60405180910390f35b3480156107c857600080fd5b506107e360048036038101906107de91906133d8565b6118ec565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806108b057507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061091857507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061092857506109278261196f565b5b9050919050565b6109376119d9565b80600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055503373ffffffffffffffffffffffffffffffffffffffff167fda606973a27c538cc3b13f4f1fa65d68ab766b50b42a2ad9cb4757d3e16ac5fa600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166040516109e09190613532565b60405180910390a250565b6060600280546109fa90613a42565b80601f0160208091040260200160405190810160405280929190818152602001828054610a2690613a42565b8015610a735780601f10610a4857610100808354040283529160200191610a73565b820191906000526020600020905b815481529060010190602001808311610a5657829003601f168201915b5050505050905090565b6000610a8882611a57565b610ac7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610abe90613ae5565b60405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610b0d82611056565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610b7d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b7490613b77565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610b9c611a65565b73ffffffffffffffffffffffffffffffffffffffff161480610bcb5750610bca81610bc5611a65565b611858565b5b610c0a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c0190613c09565b60405180910390fd5b610c15838383611a6d565b505050565b7f000000000000000000000000000000000000000000000000000000000000000081565b6000600154905090565b610c53838383611b1f565b505050565b6000610c638361106c565b8210610ca4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c9b90613c9b565b60405180910390fd5b6000610cae610c3e565b905060008060005b83811015610e12576000600460008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614610da857806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610dfe57868403610def578195505050505050610e4e565b8380610dfa90613cea565b9450505b508080610e0a90613cea565b915050610cb6565b506040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e4590613da4565b60405180910390fd5b92915050565b600b60019054906101000a900460ff16610ea3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e9a90613e10565b60405180910390fd5b6001610eae336120d6565b10610eee576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ee590613e7c565b60405180910390fd5b7f0000000000000000000000000000000000000000000000000000000000000000610f17610c3e565b10610f57576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f4e90613ee8565b60405180910390fd5b610f623360016121be565b565b610f7f83838360405180602001604052806000815250611568565b505050565b600c5481565b6000610f94610c3e565b8210610fd5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fcc90613f7a565b60405180910390fd5b819050919050565b610fe56119d9565b8181600a9182610ff6929190614151565b505050565b6110036119d9565b82600b60006101000a81548160ff02191690831515021790555081600b60016101000a81548160ff02191690831515021790555080600b60026101000a81548160ff021916908315150217905550505050565b6000611061826121dc565b600001519050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036110dc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110d390614293565b60405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b61115c6119d9565b61116660006123df565b565b7f000000000000000000000000000000000000000000000000000000000000000081565b600b60029054906101000a900460ff166111db576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111d2906142ff565b60405180910390fd5b60006111e5610c3e565b600c546111f2919061434e565b90506000805b6112013361106c565b81101561128a5760006112143383610c58565b9050600d600082815260200190815260200160002060009054906101000a900460ff16611276576001600d600083815260200190815260200160002060006101000a81548160ff021916908315150217905550828061127290613cea565b9350505b50808061128290613cea565b9150506111f8565b5060008183611299919061437f565b90503373ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f193505050501580156112e1573d6000803e3d6000fd5b50505050565b600b60009054906101000a900460ff1681565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606003805461133290613a42565b80601f016020809104026020016040519081016040528092919081815260200182805461135e90613a42565b80156113ab5780601f10611380576101008083540402835291602001916113ab565b820191906000526020600020905b81548152906001019060200180831161138e57829003601f168201915b5050505050905090565b600d6020528060005260406000206000915054906101000a900460ff1681565b6113dd611a65565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361144a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161144190614425565b60405180910390fd5b8060076000611457611a65565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611504611a65565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611549919061335f565b60405180910390a35050565b600b60019054906101000a900460ff1681565b611573848484611b1f565b61157f848484846124a3565b6115be576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115b5906144b7565b60405180910390fd5b50505050565b6115d03384848461262a565b50600b60009054906101000a900460ff16611620576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161161790614523565b60405180910390fd5b7f0000000000000000000000000000000000000000000000000000000000000000600261164c336120d6565b6116569190614543565b1115611697576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161168e90613e7c565b60405180910390fd5b7f000000000000000000000000000000000000000000000000000000000000000060026116c2610c3e565b6116cc9190614543565b111561170d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161170490613ee8565b60405180910390fd5b6117183360026121be565b505050565b6117256119d9565b60005b611730610c3e565b811015611776576000600d600083815260200190815260200160002060006101000a81548160ff021916908315150217905550808061176e90613cea565b915050611728565b50600a600447611786919061437f565b611790919061434e565b600c81905550565b60606117a382611a57565b6117e2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117d99061460b565b60405180910390fd5b60006117ec612724565b9050600081511161180c5760405180602001604052806000815250611837565b80611816846127b6565b604051602001611827929190614667565b6040516020818303038152906040525b915050919050565b60085481565b600b60029054906101000a900460ff1681565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6118f46119d9565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611963576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161195a906146fd565b60405180910390fd5b61196c816123df565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6119e1611a65565b73ffffffffffffffffffffffffffffffffffffffff166119ff6112fa565b73ffffffffffffffffffffffffffffffffffffffff1614611a55576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a4c90614769565b60405180910390fd5b565b600060015482109050919050565b600033905090565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b6000611b2a826121dc565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff16611b51611a65565b73ffffffffffffffffffffffffffffffffffffffff161480611bad5750611b76611a65565b73ffffffffffffffffffffffffffffffffffffffff16611b9584610a7d565b73ffffffffffffffffffffffffffffffffffffffff16145b80611bc95750611bc88260000151611bc3611a65565b611858565b5b905080611c0b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c02906147fb565b60405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff1614611c7d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c749061488d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603611cec576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ce39061491f565b60405180910390fd5b611cf98585856001612916565b611d096000848460000151611a6d565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff16611d77919061495b565b92506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff16611e1b919061498f565b92506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060405180604001604052808573ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506004600085815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055509050506000600184611f219190614543565b9050600073ffffffffffffffffffffffffffffffffffffffff166004600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff160361206657611f9681611a57565b15612065576040518060400160405280846000015173ffffffffffffffffffffffffffffffffffffffff168152602001846020015167ffffffffffffffff168152506004600083815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055509050505b5b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46120ce868686600161291c565b505050505050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612146576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161213d90614a47565b60405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160109054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b6121d8828260405180602001604052806000815250612922565b5050565b6121e4613271565b6121ed82611a57565b61222c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161222390614ad9565b60405180910390fd5b60007f000000000000000000000000000000000000000000000000000000000000000083106122905760017f0000000000000000000000000000000000000000000000000000000000000000846122839190614af9565b61228d9190614543565b90505b60008390505b81811061239e576000600460008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461238a578093505050506123da565b50808061239690614b2d565b915050612296565b506040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123d190614bc8565b60405180910390fd5b919050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60006124c48473ffffffffffffffffffffffffffffffffffffffff16612e01565b1561261d578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026124ed611a65565b8786866040518563ffffffff1660e01b815260040161250f9493929190614c3d565b6020604051808303816000875af192505050801561254b57506040513d601f19601f820116820180604052508101906125489190614c9e565b60015b6125cd573d806000811461257b576040519150601f19603f3d011682016040523d82523d6000602084013e612580565b606091505b5060008151036125c5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125bc906144b7565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612622565b600190505b949350505050565b600061263e6126398686612e24565b612e62565b831461267f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161267690614d17565b60405180910390fd5b6126898383612e92565b73ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612718576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161270f90614d83565b60405180910390fd5b60019050949350505050565b6060600a805461273390613a42565b80601f016020809104026020016040519081016040528092919081815260200182805461275f90613a42565b80156127ac5780601f10612781576101008083540402835291602001916127ac565b820191906000526020600020905b81548152906001019060200180831161278f57829003601f168201915b5050505050905090565b6060600082036127fd576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612911565b600082905060005b6000821461282f57808061281890613cea565b915050600a82612828919061434e565b9150612805565b60008167ffffffffffffffff81111561284b5761284a613780565b5b6040519080825280601f01601f19166020018201604052801561287d5781602001600182028036833780820191505090505b5090505b6000851461290a576001826128969190614af9565b9150600a856128a59190614da3565b60306128b19190614543565b60f81b8183815181106128c7576128c6614dd4565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612903919061434e565b9450612881565b8093505050505b919050565b50505050565b50505050565b60006001549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603612998576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161298f90614e75565b60405180910390fd5b6129a181611a57565b156129e1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129d890614ee1565b60405180910390fd5b7f0000000000000000000000000000000000000000000000000000000000000000831115612a44576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a3b90614f73565b60405180910390fd5b612a516000858386612916565b6000600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206040518060400160405290816000820160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff1681526020016000820160109054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff168152505090506040518060400160405280858360000151612b4e919061498f565b6fffffffffffffffffffffffffffffffff168152602001858360200151612b75919061498f565b6fffffffffffffffffffffffffffffffff16815250600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008201518160000160006101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060208201518160000160106101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555090505060405180604001604052808673ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506004600084815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550905050600082905060005b85811015612de457818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612d8460008884886124a3565b612dc3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612dba906144b7565b60405180910390fd5b8180612dce90613cea565b9250508080612ddc90613cea565b915050612d13565b5080600181905550612df9600087858861291c565b505050505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b6000808383604051602001612e3a929190614ffc565b6040516020818303038152906040529050600081805190602001209050809250505092915050565b600081604051602001612e759190615095565b604051602081830303815290604052805190602001209050919050565b6000806000612ea18585612eb9565b91509150612eae81612f3a565b819250505092915050565b6000806041835103612efa5760008060006020860151925060408601519150606086015160001a9050612eee87828585613106565b94509450505050612f33565b6040835103612f2a576000806020850151915060408501519050612f1f868383613212565b935093505050612f33565b60006002915091505b9250929050565b60006004811115612f4e57612f4d6150bb565b5b816004811115612f6157612f606150bb565b5b03156131035760016004811115612f7b57612f7a6150bb565b5b816004811115612f8e57612f8d6150bb565b5b03612fce576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612fc590615136565b60405180910390fd5b60026004811115612fe257612fe16150bb565b5b816004811115612ff557612ff46150bb565b5b03613035576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161302c906151a2565b60405180910390fd5b60036004811115613049576130486150bb565b5b81600481111561305c5761305b6150bb565b5b0361309c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161309390615234565b60405180910390fd5b6004808111156130af576130ae6150bb565b5b8160048111156130c2576130c16150bb565b5b03613102576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016130f9906152c6565b60405180910390fd5b5b50565b6000807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a08360001c1115613141576000600391509150613209565b601b8560ff16141580156131595750601c8560ff1614155b1561316b576000600491509150613209565b6000600187878787604051600081526020016040526040516131909493929190615311565b6020604051602081039080840390855afa1580156131b2573d6000803e3d6000fd5b505050602060405103519050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361320057600060019250925050613209565b80600092509250505b94509492505050565b60008060007f7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff60001b841690506000601b60ff8660001c901c6132559190614543565b905061326387828885613106565b935093505050935093915050565b6040518060400160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681525090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6132f4816132bf565b81146132ff57600080fd5b50565b600081359050613311816132eb565b92915050565b60006020828403121561332d5761332c6132b5565b5b600061333b84828501613302565b91505092915050565b60008115159050919050565b61335981613344565b82525050565b60006020820190506133746000830184613350565b92915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006133a58261337a565b9050919050565b6133b58161339a565b81146133c057600080fd5b50565b6000813590506133d2816133ac565b92915050565b6000602082840312156133ee576133ed6132b5565b5b60006133fc848285016133c3565b91505092915050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561343f578082015181840152602081019050613424565b8381111561344e576000848401525b50505050565b6000601f19601f8301169050919050565b600061347082613405565b61347a8185613410565b935061348a818560208601613421565b61349381613454565b840191505092915050565b600060208201905081810360008301526134b88184613465565b905092915050565b6000819050919050565b6134d3816134c0565b81146134de57600080fd5b50565b6000813590506134f0816134ca565b92915050565b60006020828403121561350c5761350b6132b5565b5b600061351a848285016134e1565b91505092915050565b61352c8161339a565b82525050565b60006020820190506135476000830184613523565b92915050565b60008060408385031215613564576135636132b5565b5b6000613572858286016133c3565b9250506020613583858286016134e1565b9150509250929050565b613596816134c0565b82525050565b60006020820190506135b1600083018461358d565b92915050565b6000806000606084860312156135d0576135cf6132b5565b5b60006135de868287016133c3565b93505060206135ef868287016133c3565b9250506040613600868287016134e1565b9150509250925092565b600080fd5b600080fd5b600080fd5b60008083601f84011261362f5761362e61360a565b5b8235905067ffffffffffffffff81111561364c5761364b61360f565b5b60208301915083600182028301111561366857613667613614565b5b9250929050565b60008060208385031215613686576136856132b5565b5b600083013567ffffffffffffffff8111156136a4576136a36132ba565b5b6136b085828601613619565b92509250509250929050565b6136c581613344565b81146136d057600080fd5b50565b6000813590506136e2816136bc565b92915050565b600080600060608486031215613701576137006132b5565b5b600061370f868287016136d3565b9350506020613720868287016136d3565b9250506040613731868287016136d3565b9150509250925092565b60008060408385031215613752576137516132b5565b5b6000613760858286016133c3565b9250506020613771858286016136d3565b9150509250929050565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6137b882613454565b810181811067ffffffffffffffff821117156137d7576137d6613780565b5b80604052505050565b60006137ea6132ab565b90506137f682826137af565b919050565b600067ffffffffffffffff82111561381657613815613780565b5b61381f82613454565b9050602081019050919050565b82818337600083830152505050565b600061384e613849846137fb565b6137e0565b90508281526020810184848401111561386a5761386961377b565b5b61387584828561382c565b509392505050565b600082601f8301126138925761389161360a565b5b81356138a284826020860161383b565b91505092915050565b600080600080608085870312156138c5576138c46132b5565b5b60006138d3878288016133c3565b94505060206138e4878288016133c3565b93505060406138f5878288016134e1565b925050606085013567ffffffffffffffff811115613916576139156132ba565b5b6139228782880161387d565b91505092959194509250565b6000819050919050565b6139418161392e565b811461394c57600080fd5b50565b60008135905061395e81613938565b92915050565b60008060006060848603121561397d5761397c6132b5565b5b600061398b868287016134e1565b935050602061399c8682870161394f565b925050604084013567ffffffffffffffff8111156139bd576139bc6132ba565b5b6139c98682870161387d565b9150509250925092565b600080604083850312156139ea576139e96132b5565b5b60006139f8858286016133c3565b9250506020613a09858286016133c3565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680613a5a57607f821691505b602082108103613a6d57613a6c613a13565b5b50919050565b7f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560008201527f78697374656e7420746f6b656e00000000000000000000000000000000000000602082015250565b6000613acf602d83613410565b9150613ada82613a73565b604082019050919050565b60006020820190508181036000830152613afe81613ac2565b9050919050565b7f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60008201527f6572000000000000000000000000000000000000000000000000000000000000602082015250565b6000613b61602283613410565b9150613b6c82613b05565b604082019050919050565b60006020820190508181036000830152613b9081613b54565b9050919050565b7f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000602082015250565b6000613bf3603983613410565b9150613bfe82613b97565b604082019050919050565b60006020820190508181036000830152613c2281613be6565b9050919050565b7f455243373231413a206f776e657220696e646578206f7574206f6620626f756e60008201527f6473000000000000000000000000000000000000000000000000000000000000602082015250565b6000613c85602283613410565b9150613c9082613c29565b604082019050919050565b60006020820190508181036000830152613cb481613c78565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000613cf5826134c0565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203613d2757613d26613cbb565b5b600182019050919050565b7f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060008201527f6f776e657220627920696e646578000000000000000000000000000000000000602082015250565b6000613d8e602e83613410565b9150613d9982613d32565b604082019050919050565b60006020820190508181036000830152613dbd81613d81565b9050919050565b7f5075626c69632073616c65206e6f74206f70656e207965740000000000000000600082015250565b6000613dfa601883613410565b9150613e0582613dc4565b602082019050919050565b60006020820190508181036000830152613e2981613ded565b9050919050565b7f537570706c792052756e73204f75740000000000000000000000000000000000600082015250565b6000613e66600f83613410565b9150613e7182613e30565b602082019050919050565b60006020820190508181036000830152613e9581613e59565b9050919050565b7f536f6c64206f7574000000000000000000000000000000000000000000000000600082015250565b6000613ed2600883613410565b9150613edd82613e9c565b602082019050919050565b60006020820190508181036000830152613f0181613ec5565b9050919050565b7f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f7560008201527f6e64730000000000000000000000000000000000000000000000000000000000602082015250565b6000613f64602383613410565b9150613f6f82613f08565b604082019050919050565b60006020820190508181036000830152613f9381613f57565b9050919050565b600082905092915050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b6000600883026140077fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82613fca565b6140118683613fca565b95508019841693508086168417925050509392505050565b6000819050919050565b600061404e614049614044846134c0565b614029565b6134c0565b9050919050565b6000819050919050565b61406883614033565b61407c61407482614055565b848454613fd7565b825550505050565b600090565b614091614084565b61409c81848461405f565b505050565b5b818110156140c0576140b5600082614089565b6001810190506140a2565b5050565b601f821115614105576140d681613fa5565b6140df84613fba565b810160208510156140ee578190505b6141026140fa85613fba565b8301826140a1565b50505b505050565b600082821c905092915050565b60006141286000198460080261410a565b1980831691505092915050565b60006141418383614117565b9150826002028217905092915050565b61415b8383613f9a565b67ffffffffffffffff81111561417457614173613780565b5b61417e8254613a42565b6141898282856140c4565b6000601f8311600181146141b857600084156141a6578287013590505b6141b08582614135565b865550614218565b601f1984166141c686613fa5565b60005b828110156141ee578489013582556001820191506020850194506020810190506141c9565b8683101561420b5784890135614207601f891682614117565b8355505b6001600288020188555050505b50505050505050565b7f455243373231413a2062616c616e636520717565727920666f7220746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b600061427d602b83613410565b915061428882614221565b604082019050919050565b600060208201905081810360008301526142ac81614270565b9050919050565b7f53686172652073657373696f6e206e6f74206f70656e20796574000000000000600082015250565b60006142e9601a83613410565b91506142f4826142b3565b602082019050919050565b60006020820190508181036000830152614318816142dc565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000614359826134c0565b9150614364836134c0565b9250826143745761437361431f565b5b828204905092915050565b600061438a826134c0565b9150614395836134c0565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156143ce576143cd613cbb565b5b828202905092915050565b7f455243373231413a20617070726f766520746f2063616c6c6572000000000000600082015250565b600061440f601a83613410565b915061441a826143d9565b602082019050919050565b6000602082019050818103600083015261443e81614402565b9050919050565b7f455243373231413a207472616e7366657220746f206e6f6e204552433732315260008201527f6563656976657220696d706c656d656e74657200000000000000000000000000602082015250565b60006144a1603383613410565b91506144ac82614445565b604082019050919050565b600060208201905081810360008301526144d081614494565b9050919050565b7f50726573616c65206e6f74206f70656e20796574000000000000000000000000600082015250565b600061450d601483613410565b9150614518826144d7565b602082019050919050565b6000602082019050818103600083015261453c81614500565b9050919050565b600061454e826134c0565b9150614559836134c0565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561458e5761458d613cbb565b5b828201905092915050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b60006145f5602f83613410565b915061460082614599565b604082019050919050565b60006020820190508181036000830152614624816145e8565b9050919050565b600081905092915050565b600061464182613405565b61464b818561462b565b935061465b818560208601613421565b80840191505092915050565b60006146738285614636565b915061467f8284614636565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006146e7602683613410565b91506146f28261468b565b604082019050919050565b60006020820190508181036000830152614716816146da565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000614753602083613410565b915061475e8261471d565b602082019050919050565b6000602082019050818103600083015261478281614746565b9050919050565b7f455243373231413a207472616e736665722063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b60006147e5603283613410565b91506147f082614789565b604082019050919050565b60006020820190508181036000830152614814816147d8565b9050919050565b7f455243373231413a207472616e736665722066726f6d20696e636f727265637460008201527f206f776e65720000000000000000000000000000000000000000000000000000602082015250565b6000614877602683613410565b91506148828261481b565b604082019050919050565b600060208201905081810360008301526148a68161486a565b9050919050565b7f455243373231413a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000614909602583613410565b9150614914826148ad565b604082019050919050565b60006020820190508181036000830152614938816148fc565b9050919050565b60006fffffffffffffffffffffffffffffffff82169050919050565b60006149668261493f565b91506149718361493f565b92508282101561498457614983613cbb565b5b828203905092915050565b600061499a8261493f565b91506149a58361493f565b9250826fffffffffffffffffffffffffffffffff038211156149ca576149c9613cbb565b5b828201905092915050565b7f455243373231413a206e756d626572206d696e74656420717565727920666f7260008201527f20746865207a65726f2061646472657373000000000000000000000000000000602082015250565b6000614a31603183613410565b9150614a3c826149d5565b604082019050919050565b60006020820190508181036000830152614a6081614a24565b9050919050565b7f455243373231413a206f776e657220717565727920666f72206e6f6e6578697360008201527f74656e7420746f6b656e00000000000000000000000000000000000000000000602082015250565b6000614ac3602a83613410565b9150614ace82614a67565b604082019050919050565b60006020820190508181036000830152614af281614ab6565b9050919050565b6000614b04826134c0565b9150614b0f836134c0565b925082821015614b2257614b21613cbb565b5b828203905092915050565b6000614b38826134c0565b915060008203614b4b57614b4a613cbb565b5b600182039050919050565b7f455243373231413a20756e61626c6520746f2064657465726d696e652074686560008201527f206f776e6572206f6620746f6b656e0000000000000000000000000000000000602082015250565b6000614bb2602f83613410565b9150614bbd82614b56565b604082019050919050565b60006020820190508181036000830152614be181614ba5565b9050919050565b600081519050919050565b600082825260208201905092915050565b6000614c0f82614be8565b614c198185614bf3565b9350614c29818560208601613421565b614c3281613454565b840191505092915050565b6000608082019050614c526000830187613523565b614c5f6020830186613523565b614c6c604083018561358d565b8181036060830152614c7e8184614c04565b905095945050505050565b600081519050614c98816132eb565b92915050565b600060208284031215614cb457614cb36132b5565b5b6000614cc284828501614c89565b91505092915050565b7f496e76616c6964206d6573736167652068617368000000000000000000000000600082015250565b6000614d01601483613410565b9150614d0c82614ccb565b602082019050919050565b60006020820190508181036000830152614d3081614cf4565b9050919050565b7f496e76616c6964207369676e6174757265000000000000000000000000000000600082015250565b6000614d6d601183613410565b9150614d7882614d37565b602082019050919050565b60006020820190508181036000830152614d9c81614d60565b9050919050565b6000614dae826134c0565b9150614db9836134c0565b925082614dc957614dc861431f565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f455243373231413a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b6000614e5f602183613410565b9150614e6a82614e03565b604082019050919050565b60006020820190508181036000830152614e8e81614e52565b9050919050565b7f455243373231413a20746f6b656e20616c7265616479206d696e746564000000600082015250565b6000614ecb601d83613410565b9150614ed682614e95565b602082019050919050565b60006020820190508181036000830152614efa81614ebe565b9050919050565b7f455243373231413a207175616e7469747920746f206d696e7420746f6f20686960008201527f6768000000000000000000000000000000000000000000000000000000000000602082015250565b6000614f5d602283613410565b9150614f6882614f01565b604082019050919050565b60006020820190508181036000830152614f8c81614f50565b9050919050565b60008160601b9050919050565b6000614fab82614f93565b9050919050565b6000614fbd82614fa0565b9050919050565b614fd5614fd08261339a565b614fb2565b82525050565b6000819050919050565b614ff6614ff1826134c0565b614fdb565b82525050565b60006150088285614fc4565b6014820191506150188284614fe5565b6020820191508190509392505050565b7f19457468657265756d205369676e6564204d6573736167653a0a333200000000600082015250565b600061505e601c8361462b565b915061506982615028565b601c82019050919050565b6000819050919050565b61508f61508a8261392e565b615074565b82525050565b60006150a082615051565b91506150ac828461507e565b60208201915081905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b7f45434453413a20696e76616c6964207369676e61747572650000000000000000600082015250565b6000615120601883613410565b915061512b826150ea565b602082019050919050565b6000602082019050818103600083015261514f81615113565b9050919050565b7f45434453413a20696e76616c6964207369676e6174757265206c656e67746800600082015250565b600061518c601f83613410565b915061519782615156565b602082019050919050565b600060208201905081810360008301526151bb8161517f565b9050919050565b7f45434453413a20696e76616c6964207369676e6174757265202773272076616c60008201527f7565000000000000000000000000000000000000000000000000000000000000602082015250565b600061521e602283613410565b9150615229826151c2565b604082019050919050565b6000602082019050818103600083015261524d81615211565b9050919050565b7f45434453413a20696e76616c6964207369676e6174757265202776272076616c60008201527f7565000000000000000000000000000000000000000000000000000000000000602082015250565b60006152b0602283613410565b91506152bb82615254565b604082019050919050565b600060208201905081810360008301526152df816152a3565b9050919050565b6152ef8161392e565b82525050565b600060ff82169050919050565b61530b816152f5565b82525050565b600060808201905061532660008301876152e6565b6153336020830186615302565b61534060408301856152e6565b61534d60608301846152e6565b9594505050505056fea2646970667358221220d48ddaa9fcf9b804bb4253e45feb0a288531f1b7877f4ed9cd72b943f26f71b664736f6c634300080f003300000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000bb800000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106101f95760003560e01c8063715018a61161010d578063b7f751d8116100a0578063c87b56dd1161006f578063c87b56dd146106ec578063d7224ba014610729578063e85931c814610754578063e985e9c51461077f578063f2fde38b146107bc576101f9565b8063b7f751d814610658578063b88d4fde14610683578063bf9b7c8d146106ac578063c2cc785f146106d5576101f9565b80638da5cb5b116100dc5780638da5cb5b1461059c57806395d89b41146105c75780639e34070f146105f2578063a22cb4651461062f576101f9565b8063715018a6146105185780637501f7411461052f578063752987341461055a57806383a9e04914610571576101f9565b80632f745c59116101905780634f6ccce71161015f5780634f6ccce71461040f57806355f804b31461044c5780635901d38c146104755780636352211e1461049e57806370a08231146104db576101f9565b80632f745c59146103745780633fc55f6e146103b157806342842e0e146103bb578063447b15f4146103e4576101f9565b8063095ea7b3116101cc578063095ea7b3146102cc5780630ad8d2e1146102f557806318160ddd1461032057806323b872dd1461034b576101f9565b806301ffc9a7146101fe578063046dc1661461023b57806306fdde0314610264578063081812fc1461028f575b600080fd5b34801561020a57600080fd5b5061022560048036038101906102209190613317565b6107e5565b604051610232919061335f565b60405180910390f35b34801561024757600080fd5b50610262600480360381019061025d91906133d8565b61092f565b005b34801561027057600080fd5b506102796109eb565b604051610286919061349e565b60405180910390f35b34801561029b57600080fd5b506102b660048036038101906102b191906134f6565b610a7d565b6040516102c39190613532565b60405180910390f35b3480156102d857600080fd5b506102f360048036038101906102ee919061354d565b610b02565b005b34801561030157600080fd5b5061030a610c1a565b604051610317919061359c565b60405180910390f35b34801561032c57600080fd5b50610335610c3e565b604051610342919061359c565b60405180910390f35b34801561035757600080fd5b50610372600480360381019061036d91906135b7565b610c48565b005b34801561038057600080fd5b5061039b6004803603810190610396919061354d565b610c58565b6040516103a8919061359c565b60405180910390f35b6103b9610e54565b005b3480156103c757600080fd5b506103e260048036038101906103dd91906135b7565b610f64565b005b3480156103f057600080fd5b506103f9610f84565b604051610406919061359c565b60405180910390f35b34801561041b57600080fd5b50610436600480360381019061043191906134f6565b610f8a565b604051610443919061359c565b60405180910390f35b34801561045857600080fd5b50610473600480360381019061046e919061366f565b610fdd565b005b34801561048157600080fd5b5061049c600480360381019061049791906136e8565b610ffb565b005b3480156104aa57600080fd5b506104c560048036038101906104c091906134f6565b611056565b6040516104d29190613532565b60405180910390f35b3480156104e757600080fd5b5061050260048036038101906104fd91906133d8565b61106c565b60405161050f919061359c565b60405180910390f35b34801561052457600080fd5b5061052d611154565b005b34801561053b57600080fd5b50610544611168565b604051610551919061359c565b60405180910390f35b34801561056657600080fd5b5061056f61118c565b005b34801561057d57600080fd5b506105866112e7565b604051610593919061335f565b60405180910390f35b3480156105a857600080fd5b506105b16112fa565b6040516105be9190613532565b60405180910390f35b3480156105d357600080fd5b506105dc611323565b6040516105e9919061349e565b60405180910390f35b3480156105fe57600080fd5b50610619600480360381019061061491906134f6565b6113b5565b604051610626919061335f565b60405180910390f35b34801561063b57600080fd5b506106566004803603810190610651919061373b565b6113d5565b005b34801561066457600080fd5b5061066d611555565b60405161067a919061335f565b60405180910390f35b34801561068f57600080fd5b506106aa60048036038101906106a591906138ab565b611568565b005b3480156106b857600080fd5b506106d360048036038101906106ce9190613964565b6115c4565b005b3480156106e157600080fd5b506106ea61171d565b005b3480156106f857600080fd5b50610713600480360381019061070e91906134f6565b611798565b604051610720919061349e565b60405180910390f35b34801561073557600080fd5b5061073e61183f565b60405161074b919061359c565b60405180910390f35b34801561076057600080fd5b50610769611845565b604051610776919061335f565b60405180910390f35b34801561078b57600080fd5b506107a660048036038101906107a191906139d3565b611858565b6040516107b3919061335f565b60405180910390f35b3480156107c857600080fd5b506107e360048036038101906107de91906133d8565b6118ec565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806108b057507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061091857507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061092857506109278261196f565b5b9050919050565b6109376119d9565b80600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055503373ffffffffffffffffffffffffffffffffffffffff167fda606973a27c538cc3b13f4f1fa65d68ab766b50b42a2ad9cb4757d3e16ac5fa600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166040516109e09190613532565b60405180910390a250565b6060600280546109fa90613a42565b80601f0160208091040260200160405190810160405280929190818152602001828054610a2690613a42565b8015610a735780601f10610a4857610100808354040283529160200191610a73565b820191906000526020600020905b815481529060010190602001808311610a5657829003601f168201915b5050505050905090565b6000610a8882611a57565b610ac7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610abe90613ae5565b60405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610b0d82611056565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610b7d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b7490613b77565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610b9c611a65565b73ffffffffffffffffffffffffffffffffffffffff161480610bcb5750610bca81610bc5611a65565b611858565b5b610c0a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c0190613c09565b60405180910390fd5b610c15838383611a6d565b505050565b7f0000000000000000000000000000000000000000000000000000000000000bb881565b6000600154905090565b610c53838383611b1f565b505050565b6000610c638361106c565b8210610ca4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c9b90613c9b565b60405180910390fd5b6000610cae610c3e565b905060008060005b83811015610e12576000600460008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614610da857806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610dfe57868403610def578195505050505050610e4e565b8380610dfa90613cea565b9450505b508080610e0a90613cea565b915050610cb6565b506040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e4590613da4565b60405180910390fd5b92915050565b600b60019054906101000a900460ff16610ea3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e9a90613e10565b60405180910390fd5b6001610eae336120d6565b10610eee576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ee590613e7c565b60405180910390fd5b7f0000000000000000000000000000000000000000000000000000000000000bb8610f17610c3e565b10610f57576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f4e90613ee8565b60405180910390fd5b610f623360016121be565b565b610f7f83838360405180602001604052806000815250611568565b505050565b600c5481565b6000610f94610c3e565b8210610fd5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fcc90613f7a565b60405180910390fd5b819050919050565b610fe56119d9565b8181600a9182610ff6929190614151565b505050565b6110036119d9565b82600b60006101000a81548160ff02191690831515021790555081600b60016101000a81548160ff02191690831515021790555080600b60026101000a81548160ff021916908315150217905550505050565b6000611061826121dc565b600001519050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036110dc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110d390614293565b60405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b61115c6119d9565b61116660006123df565b565b7f000000000000000000000000000000000000000000000000000000000000000281565b600b60029054906101000a900460ff166111db576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111d2906142ff565b60405180910390fd5b60006111e5610c3e565b600c546111f2919061434e565b90506000805b6112013361106c565b81101561128a5760006112143383610c58565b9050600d600082815260200190815260200160002060009054906101000a900460ff16611276576001600d600083815260200190815260200160002060006101000a81548160ff021916908315150217905550828061127290613cea565b9350505b50808061128290613cea565b9150506111f8565b5060008183611299919061437f565b90503373ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f193505050501580156112e1573d6000803e3d6000fd5b50505050565b600b60009054906101000a900460ff1681565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606003805461133290613a42565b80601f016020809104026020016040519081016040528092919081815260200182805461135e90613a42565b80156113ab5780601f10611380576101008083540402835291602001916113ab565b820191906000526020600020905b81548152906001019060200180831161138e57829003601f168201915b5050505050905090565b600d6020528060005260406000206000915054906101000a900460ff1681565b6113dd611a65565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361144a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161144190614425565b60405180910390fd5b8060076000611457611a65565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611504611a65565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611549919061335f565b60405180910390a35050565b600b60019054906101000a900460ff1681565b611573848484611b1f565b61157f848484846124a3565b6115be576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115b5906144b7565b60405180910390fd5b50505050565b6115d03384848461262a565b50600b60009054906101000a900460ff16611620576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161161790614523565b60405180910390fd5b7f0000000000000000000000000000000000000000000000000000000000000002600261164c336120d6565b6116569190614543565b1115611697576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161168e90613e7c565b60405180910390fd5b7f0000000000000000000000000000000000000000000000000000000000000bb860026116c2610c3e565b6116cc9190614543565b111561170d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161170490613ee8565b60405180910390fd5b6117183360026121be565b505050565b6117256119d9565b60005b611730610c3e565b811015611776576000600d600083815260200190815260200160002060006101000a81548160ff021916908315150217905550808061176e90613cea565b915050611728565b50600a600447611786919061437f565b611790919061434e565b600c81905550565b60606117a382611a57565b6117e2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117d99061460b565b60405180910390fd5b60006117ec612724565b9050600081511161180c5760405180602001604052806000815250611837565b80611816846127b6565b604051602001611827929190614667565b6040516020818303038152906040525b915050919050565b60085481565b600b60029054906101000a900460ff1681565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6118f46119d9565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611963576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161195a906146fd565b60405180910390fd5b61196c816123df565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6119e1611a65565b73ffffffffffffffffffffffffffffffffffffffff166119ff6112fa565b73ffffffffffffffffffffffffffffffffffffffff1614611a55576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a4c90614769565b60405180910390fd5b565b600060015482109050919050565b600033905090565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b6000611b2a826121dc565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff16611b51611a65565b73ffffffffffffffffffffffffffffffffffffffff161480611bad5750611b76611a65565b73ffffffffffffffffffffffffffffffffffffffff16611b9584610a7d565b73ffffffffffffffffffffffffffffffffffffffff16145b80611bc95750611bc88260000151611bc3611a65565b611858565b5b905080611c0b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c02906147fb565b60405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff1614611c7d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c749061488d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603611cec576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ce39061491f565b60405180910390fd5b611cf98585856001612916565b611d096000848460000151611a6d565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff16611d77919061495b565b92506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff16611e1b919061498f565b92506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060405180604001604052808573ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506004600085815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055509050506000600184611f219190614543565b9050600073ffffffffffffffffffffffffffffffffffffffff166004600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff160361206657611f9681611a57565b15612065576040518060400160405280846000015173ffffffffffffffffffffffffffffffffffffffff168152602001846020015167ffffffffffffffff168152506004600083815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055509050505b5b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46120ce868686600161291c565b505050505050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612146576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161213d90614a47565b60405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160109054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b6121d8828260405180602001604052806000815250612922565b5050565b6121e4613271565b6121ed82611a57565b61222c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161222390614ad9565b60405180910390fd5b60007f000000000000000000000000000000000000000000000000000000000000000283106122905760017f0000000000000000000000000000000000000000000000000000000000000002846122839190614af9565b61228d9190614543565b90505b60008390505b81811061239e576000600460008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461238a578093505050506123da565b50808061239690614b2d565b915050612296565b506040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123d190614bc8565b60405180910390fd5b919050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60006124c48473ffffffffffffffffffffffffffffffffffffffff16612e01565b1561261d578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026124ed611a65565b8786866040518563ffffffff1660e01b815260040161250f9493929190614c3d565b6020604051808303816000875af192505050801561254b57506040513d601f19601f820116820180604052508101906125489190614c9e565b60015b6125cd573d806000811461257b576040519150601f19603f3d011682016040523d82523d6000602084013e612580565b606091505b5060008151036125c5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125bc906144b7565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612622565b600190505b949350505050565b600061263e6126398686612e24565b612e62565b831461267f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161267690614d17565b60405180910390fd5b6126898383612e92565b73ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612718576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161270f90614d83565b60405180910390fd5b60019050949350505050565b6060600a805461273390613a42565b80601f016020809104026020016040519081016040528092919081815260200182805461275f90613a42565b80156127ac5780601f10612781576101008083540402835291602001916127ac565b820191906000526020600020905b81548152906001019060200180831161278f57829003601f168201915b5050505050905090565b6060600082036127fd576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612911565b600082905060005b6000821461282f57808061281890613cea565b915050600a82612828919061434e565b9150612805565b60008167ffffffffffffffff81111561284b5761284a613780565b5b6040519080825280601f01601f19166020018201604052801561287d5781602001600182028036833780820191505090505b5090505b6000851461290a576001826128969190614af9565b9150600a856128a59190614da3565b60306128b19190614543565b60f81b8183815181106128c7576128c6614dd4565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612903919061434e565b9450612881565b8093505050505b919050565b50505050565b50505050565b60006001549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603612998576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161298f90614e75565b60405180910390fd5b6129a181611a57565b156129e1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129d890614ee1565b60405180910390fd5b7f0000000000000000000000000000000000000000000000000000000000000002831115612a44576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a3b90614f73565b60405180910390fd5b612a516000858386612916565b6000600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206040518060400160405290816000820160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff1681526020016000820160109054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff168152505090506040518060400160405280858360000151612b4e919061498f565b6fffffffffffffffffffffffffffffffff168152602001858360200151612b75919061498f565b6fffffffffffffffffffffffffffffffff16815250600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008201518160000160006101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060208201518160000160106101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555090505060405180604001604052808673ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506004600084815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550905050600082905060005b85811015612de457818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612d8460008884886124a3565b612dc3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612dba906144b7565b60405180910390fd5b8180612dce90613cea565b9250508080612ddc90613cea565b915050612d13565b5080600181905550612df9600087858861291c565b505050505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b6000808383604051602001612e3a929190614ffc565b6040516020818303038152906040529050600081805190602001209050809250505092915050565b600081604051602001612e759190615095565b604051602081830303815290604052805190602001209050919050565b6000806000612ea18585612eb9565b91509150612eae81612f3a565b819250505092915050565b6000806041835103612efa5760008060006020860151925060408601519150606086015160001a9050612eee87828585613106565b94509450505050612f33565b6040835103612f2a576000806020850151915060408501519050612f1f868383613212565b935093505050612f33565b60006002915091505b9250929050565b60006004811115612f4e57612f4d6150bb565b5b816004811115612f6157612f606150bb565b5b03156131035760016004811115612f7b57612f7a6150bb565b5b816004811115612f8e57612f8d6150bb565b5b03612fce576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612fc590615136565b60405180910390fd5b60026004811115612fe257612fe16150bb565b5b816004811115612ff557612ff46150bb565b5b03613035576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161302c906151a2565b60405180910390fd5b60036004811115613049576130486150bb565b5b81600481111561305c5761305b6150bb565b5b0361309c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161309390615234565b60405180910390fd5b6004808111156130af576130ae6150bb565b5b8160048111156130c2576130c16150bb565b5b03613102576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016130f9906152c6565b60405180910390fd5b5b50565b6000807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a08360001c1115613141576000600391509150613209565b601b8560ff16141580156131595750601c8560ff1614155b1561316b576000600491509150613209565b6000600187878787604051600081526020016040526040516131909493929190615311565b6020604051602081039080840390855afa1580156131b2573d6000803e3d6000fd5b505050602060405103519050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361320057600060019250925050613209565b80600092509250505b94509492505050565b60008060007f7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff60001b841690506000601b60ff8660001c901c6132559190614543565b905061326387828885613106565b935093505050935093915050565b6040518060400160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681525090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6132f4816132bf565b81146132ff57600080fd5b50565b600081359050613311816132eb565b92915050565b60006020828403121561332d5761332c6132b5565b5b600061333b84828501613302565b91505092915050565b60008115159050919050565b61335981613344565b82525050565b60006020820190506133746000830184613350565b92915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006133a58261337a565b9050919050565b6133b58161339a565b81146133c057600080fd5b50565b6000813590506133d2816133ac565b92915050565b6000602082840312156133ee576133ed6132b5565b5b60006133fc848285016133c3565b91505092915050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561343f578082015181840152602081019050613424565b8381111561344e576000848401525b50505050565b6000601f19601f8301169050919050565b600061347082613405565b61347a8185613410565b935061348a818560208601613421565b61349381613454565b840191505092915050565b600060208201905081810360008301526134b88184613465565b905092915050565b6000819050919050565b6134d3816134c0565b81146134de57600080fd5b50565b6000813590506134f0816134ca565b92915050565b60006020828403121561350c5761350b6132b5565b5b600061351a848285016134e1565b91505092915050565b61352c8161339a565b82525050565b60006020820190506135476000830184613523565b92915050565b60008060408385031215613564576135636132b5565b5b6000613572858286016133c3565b9250506020613583858286016134e1565b9150509250929050565b613596816134c0565b82525050565b60006020820190506135b1600083018461358d565b92915050565b6000806000606084860312156135d0576135cf6132b5565b5b60006135de868287016133c3565b93505060206135ef868287016133c3565b9250506040613600868287016134e1565b9150509250925092565b600080fd5b600080fd5b600080fd5b60008083601f84011261362f5761362e61360a565b5b8235905067ffffffffffffffff81111561364c5761364b61360f565b5b60208301915083600182028301111561366857613667613614565b5b9250929050565b60008060208385031215613686576136856132b5565b5b600083013567ffffffffffffffff8111156136a4576136a36132ba565b5b6136b085828601613619565b92509250509250929050565b6136c581613344565b81146136d057600080fd5b50565b6000813590506136e2816136bc565b92915050565b600080600060608486031215613701576137006132b5565b5b600061370f868287016136d3565b9350506020613720868287016136d3565b9250506040613731868287016136d3565b9150509250925092565b60008060408385031215613752576137516132b5565b5b6000613760858286016133c3565b9250506020613771858286016136d3565b9150509250929050565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6137b882613454565b810181811067ffffffffffffffff821117156137d7576137d6613780565b5b80604052505050565b60006137ea6132ab565b90506137f682826137af565b919050565b600067ffffffffffffffff82111561381657613815613780565b5b61381f82613454565b9050602081019050919050565b82818337600083830152505050565b600061384e613849846137fb565b6137e0565b90508281526020810184848401111561386a5761386961377b565b5b61387584828561382c565b509392505050565b600082601f8301126138925761389161360a565b5b81356138a284826020860161383b565b91505092915050565b600080600080608085870312156138c5576138c46132b5565b5b60006138d3878288016133c3565b94505060206138e4878288016133c3565b93505060406138f5878288016134e1565b925050606085013567ffffffffffffffff811115613916576139156132ba565b5b6139228782880161387d565b91505092959194509250565b6000819050919050565b6139418161392e565b811461394c57600080fd5b50565b60008135905061395e81613938565b92915050565b60008060006060848603121561397d5761397c6132b5565b5b600061398b868287016134e1565b935050602061399c8682870161394f565b925050604084013567ffffffffffffffff8111156139bd576139bc6132ba565b5b6139c98682870161387d565b9150509250925092565b600080604083850312156139ea576139e96132b5565b5b60006139f8858286016133c3565b9250506020613a09858286016133c3565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680613a5a57607f821691505b602082108103613a6d57613a6c613a13565b5b50919050565b7f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560008201527f78697374656e7420746f6b656e00000000000000000000000000000000000000602082015250565b6000613acf602d83613410565b9150613ada82613a73565b604082019050919050565b60006020820190508181036000830152613afe81613ac2565b9050919050565b7f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60008201527f6572000000000000000000000000000000000000000000000000000000000000602082015250565b6000613b61602283613410565b9150613b6c82613b05565b604082019050919050565b60006020820190508181036000830152613b9081613b54565b9050919050565b7f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000602082015250565b6000613bf3603983613410565b9150613bfe82613b97565b604082019050919050565b60006020820190508181036000830152613c2281613be6565b9050919050565b7f455243373231413a206f776e657220696e646578206f7574206f6620626f756e60008201527f6473000000000000000000000000000000000000000000000000000000000000602082015250565b6000613c85602283613410565b9150613c9082613c29565b604082019050919050565b60006020820190508181036000830152613cb481613c78565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000613cf5826134c0565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203613d2757613d26613cbb565b5b600182019050919050565b7f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060008201527f6f776e657220627920696e646578000000000000000000000000000000000000602082015250565b6000613d8e602e83613410565b9150613d9982613d32565b604082019050919050565b60006020820190508181036000830152613dbd81613d81565b9050919050565b7f5075626c69632073616c65206e6f74206f70656e207965740000000000000000600082015250565b6000613dfa601883613410565b9150613e0582613dc4565b602082019050919050565b60006020820190508181036000830152613e2981613ded565b9050919050565b7f537570706c792052756e73204f75740000000000000000000000000000000000600082015250565b6000613e66600f83613410565b9150613e7182613e30565b602082019050919050565b60006020820190508181036000830152613e9581613e59565b9050919050565b7f536f6c64206f7574000000000000000000000000000000000000000000000000600082015250565b6000613ed2600883613410565b9150613edd82613e9c565b602082019050919050565b60006020820190508181036000830152613f0181613ec5565b9050919050565b7f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f7560008201527f6e64730000000000000000000000000000000000000000000000000000000000602082015250565b6000613f64602383613410565b9150613f6f82613f08565b604082019050919050565b60006020820190508181036000830152613f9381613f57565b9050919050565b600082905092915050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b6000600883026140077fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82613fca565b6140118683613fca565b95508019841693508086168417925050509392505050565b6000819050919050565b600061404e614049614044846134c0565b614029565b6134c0565b9050919050565b6000819050919050565b61406883614033565b61407c61407482614055565b848454613fd7565b825550505050565b600090565b614091614084565b61409c81848461405f565b505050565b5b818110156140c0576140b5600082614089565b6001810190506140a2565b5050565b601f821115614105576140d681613fa5565b6140df84613fba565b810160208510156140ee578190505b6141026140fa85613fba565b8301826140a1565b50505b505050565b600082821c905092915050565b60006141286000198460080261410a565b1980831691505092915050565b60006141418383614117565b9150826002028217905092915050565b61415b8383613f9a565b67ffffffffffffffff81111561417457614173613780565b5b61417e8254613a42565b6141898282856140c4565b6000601f8311600181146141b857600084156141a6578287013590505b6141b08582614135565b865550614218565b601f1984166141c686613fa5565b60005b828110156141ee578489013582556001820191506020850194506020810190506141c9565b8683101561420b5784890135614207601f891682614117565b8355505b6001600288020188555050505b50505050505050565b7f455243373231413a2062616c616e636520717565727920666f7220746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b600061427d602b83613410565b915061428882614221565b604082019050919050565b600060208201905081810360008301526142ac81614270565b9050919050565b7f53686172652073657373696f6e206e6f74206f70656e20796574000000000000600082015250565b60006142e9601a83613410565b91506142f4826142b3565b602082019050919050565b60006020820190508181036000830152614318816142dc565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000614359826134c0565b9150614364836134c0565b9250826143745761437361431f565b5b828204905092915050565b600061438a826134c0565b9150614395836134c0565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156143ce576143cd613cbb565b5b828202905092915050565b7f455243373231413a20617070726f766520746f2063616c6c6572000000000000600082015250565b600061440f601a83613410565b915061441a826143d9565b602082019050919050565b6000602082019050818103600083015261443e81614402565b9050919050565b7f455243373231413a207472616e7366657220746f206e6f6e204552433732315260008201527f6563656976657220696d706c656d656e74657200000000000000000000000000602082015250565b60006144a1603383613410565b91506144ac82614445565b604082019050919050565b600060208201905081810360008301526144d081614494565b9050919050565b7f50726573616c65206e6f74206f70656e20796574000000000000000000000000600082015250565b600061450d601483613410565b9150614518826144d7565b602082019050919050565b6000602082019050818103600083015261453c81614500565b9050919050565b600061454e826134c0565b9150614559836134c0565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561458e5761458d613cbb565b5b828201905092915050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b60006145f5602f83613410565b915061460082614599565b604082019050919050565b60006020820190508181036000830152614624816145e8565b9050919050565b600081905092915050565b600061464182613405565b61464b818561462b565b935061465b818560208601613421565b80840191505092915050565b60006146738285614636565b915061467f8284614636565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006146e7602683613410565b91506146f28261468b565b604082019050919050565b60006020820190508181036000830152614716816146da565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000614753602083613410565b915061475e8261471d565b602082019050919050565b6000602082019050818103600083015261478281614746565b9050919050565b7f455243373231413a207472616e736665722063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b60006147e5603283613410565b91506147f082614789565b604082019050919050565b60006020820190508181036000830152614814816147d8565b9050919050565b7f455243373231413a207472616e736665722066726f6d20696e636f727265637460008201527f206f776e65720000000000000000000000000000000000000000000000000000602082015250565b6000614877602683613410565b91506148828261481b565b604082019050919050565b600060208201905081810360008301526148a68161486a565b9050919050565b7f455243373231413a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000614909602583613410565b9150614914826148ad565b604082019050919050565b60006020820190508181036000830152614938816148fc565b9050919050565b60006fffffffffffffffffffffffffffffffff82169050919050565b60006149668261493f565b91506149718361493f565b92508282101561498457614983613cbb565b5b828203905092915050565b600061499a8261493f565b91506149a58361493f565b9250826fffffffffffffffffffffffffffffffff038211156149ca576149c9613cbb565b5b828201905092915050565b7f455243373231413a206e756d626572206d696e74656420717565727920666f7260008201527f20746865207a65726f2061646472657373000000000000000000000000000000602082015250565b6000614a31603183613410565b9150614a3c826149d5565b604082019050919050565b60006020820190508181036000830152614a6081614a24565b9050919050565b7f455243373231413a206f776e657220717565727920666f72206e6f6e6578697360008201527f74656e7420746f6b656e00000000000000000000000000000000000000000000602082015250565b6000614ac3602a83613410565b9150614ace82614a67565b604082019050919050565b60006020820190508181036000830152614af281614ab6565b9050919050565b6000614b04826134c0565b9150614b0f836134c0565b925082821015614b2257614b21613cbb565b5b828203905092915050565b6000614b38826134c0565b915060008203614b4b57614b4a613cbb565b5b600182039050919050565b7f455243373231413a20756e61626c6520746f2064657465726d696e652074686560008201527f206f776e6572206f6620746f6b656e0000000000000000000000000000000000602082015250565b6000614bb2602f83613410565b9150614bbd82614b56565b604082019050919050565b60006020820190508181036000830152614be181614ba5565b9050919050565b600081519050919050565b600082825260208201905092915050565b6000614c0f82614be8565b614c198185614bf3565b9350614c29818560208601613421565b614c3281613454565b840191505092915050565b6000608082019050614c526000830187613523565b614c5f6020830186613523565b614c6c604083018561358d565b8181036060830152614c7e8184614c04565b905095945050505050565b600081519050614c98816132eb565b92915050565b600060208284031215614cb457614cb36132b5565b5b6000614cc284828501614c89565b91505092915050565b7f496e76616c6964206d6573736167652068617368000000000000000000000000600082015250565b6000614d01601483613410565b9150614d0c82614ccb565b602082019050919050565b60006020820190508181036000830152614d3081614cf4565b9050919050565b7f496e76616c6964207369676e6174757265000000000000000000000000000000600082015250565b6000614d6d601183613410565b9150614d7882614d37565b602082019050919050565b60006020820190508181036000830152614d9c81614d60565b9050919050565b6000614dae826134c0565b9150614db9836134c0565b925082614dc957614dc861431f565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f455243373231413a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b6000614e5f602183613410565b9150614e6a82614e03565b604082019050919050565b60006020820190508181036000830152614e8e81614e52565b9050919050565b7f455243373231413a20746f6b656e20616c7265616479206d696e746564000000600082015250565b6000614ecb601d83613410565b9150614ed682614e95565b602082019050919050565b60006020820190508181036000830152614efa81614ebe565b9050919050565b7f455243373231413a207175616e7469747920746f206d696e7420746f6f20686960008201527f6768000000000000000000000000000000000000000000000000000000000000602082015250565b6000614f5d602283613410565b9150614f6882614f01565b604082019050919050565b60006020820190508181036000830152614f8c81614f50565b9050919050565b60008160601b9050919050565b6000614fab82614f93565b9050919050565b6000614fbd82614fa0565b9050919050565b614fd5614fd08261339a565b614fb2565b82525050565b6000819050919050565b614ff6614ff1826134c0565b614fdb565b82525050565b60006150088285614fc4565b6014820191506150188284614fe5565b6020820191508190509392505050565b7f19457468657265756d205369676e6564204d6573736167653a0a333200000000600082015250565b600061505e601c8361462b565b915061506982615028565b601c82019050919050565b6000819050919050565b61508f61508a8261392e565b615074565b82525050565b60006150a082615051565b91506150ac828461507e565b60208201915081905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b7f45434453413a20696e76616c6964207369676e61747572650000000000000000600082015250565b6000615120601883613410565b915061512b826150ea565b602082019050919050565b6000602082019050818103600083015261514f81615113565b9050919050565b7f45434453413a20696e76616c6964207369676e6174757265206c656e67746800600082015250565b600061518c601f83613410565b915061519782615156565b602082019050919050565b600060208201905081810360008301526151bb8161517f565b9050919050565b7f45434453413a20696e76616c6964207369676e6174757265202773272076616c60008201527f7565000000000000000000000000000000000000000000000000000000000000602082015250565b600061521e602283613410565b9150615229826151c2565b604082019050919050565b6000602082019050818103600083015261524d81615211565b9050919050565b7f45434453413a20696e76616c6964207369676e6174757265202776272076616c60008201527f7565000000000000000000000000000000000000000000000000000000000000602082015250565b60006152b0602283613410565b91506152bb82615254565b604082019050919050565b600060208201905081810360008301526152df816152a3565b9050919050565b6152ef8161392e565b82525050565b600060ff82169050919050565b61530b816152f5565b82525050565b600060808201905061532660008301876152e6565b6153336020830186615302565b61534060408301856152e6565b61534d60608301846152e6565b9594505050505056fea2646970667358221220d48ddaa9fcf9b804bb4253e45feb0a288531f1b7877f4ed9cd72b943f26f71b664736f6c634300080f0033

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

00000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000bb800000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : maxMint_ (uint256): 2
Arg [1] : ringSupply_ (uint256): 3000
Arg [2] : baseTokenURI_ (string):

-----Encoded View---------------
4 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000002
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000bb8
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000000


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

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