ETH Price: $3,375.34 (-2.00%)
Gas: 2 Gwei

Token

Okay00ts (Okay00ts)
 

Overview

Max Total Supply

10,001 Okay00ts

Holders

3,109

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
inthearenatryingthings.eth
Balance
3 Okay00ts
0xb6d19afe6de6c1ab49b964e202ebbf6b8e590a33
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:
Okay00ts

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, None license
File 1 of 13 : Okay00ts.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/security/ReentrancyGuard.sol";
import "./ERC721A.sol";

contract Okay00ts is ERC721A, Ownable, ReentrancyGuard {

    mapping (address => uint256) public WalletMint;
    bool public mintStatus  = false;
    uint public MintPrice = 0.003 ether; 
    string public baseURI;  
    uint public freeMint = 1;
    uint public maxPerTx = 15;  
    uint public maxSupply = 10000;

    constructor() ERC721A("Okay00ts", "Okay00ts",100,10000){}

    function mint(uint256 qty) external payable
    {
        require(mintStatus , "Okay00ts: Minting Public Pause");
        require(qty <= maxPerTx, "Okay00ts: Limit Per Transaction");
        require(totalSupply() + qty <= maxSupply,"Okay00ts: Soldout");
        _safemint(qty);
    }

    function _safemint(uint256 qty) internal
    {
        if(WalletMint[msg.sender] < freeMint) 
        {
            if(qty < freeMint) qty = freeMint;
           require(msg.value >= (qty - freeMint) * MintPrice,"Okay00ts: Fund not enough");
            WalletMint[msg.sender] += qty;
           _safeMint(msg.sender, qty);
        }
        else
        {
           require(msg.value >= qty * MintPrice,"Okay00ts: Fund not enough");
            WalletMint[msg.sender] += qty;
           _safeMint(msg.sender, qty);
        }
    }

    function numberMinted(address owner) public view returns (uint256) {
        return _numberMinted(owner);
    }

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

    function airdrop(address to ,uint256 qty) external onlyOwner
    {
        _safeMint(to, qty);
    }

    function airdropBatch(address[] calldata listedAirdrop ,uint256 qty) external onlyOwner {
        for (uint256 i = 0; i < listedAirdrop.length; i++) {
           _safeMint(listedAirdrop[i], qty);
        }
    }

    function developerMint(uint256 qty) external onlyOwner
    {
        _safeMint(msg.sender, qty);
    }

    function setPublicMinting() external onlyOwner {
        mintStatus  = !mintStatus ;
    }
    
    function setBaseURI(string calldata baseURI_) external onlyOwner {
        baseURI = baseURI_;
    }

    function setPrice(uint256 price_) external onlyOwner {
        MintPrice = price_;
    }

    function setmaxMintPerTx(uint256 maxPerTx_) external onlyOwner {
        maxPerTx = maxPerTx_;
    }

    function setMaxFreeMint(uint256 qty_) external onlyOwner {
        freeMint = qty_;
    }

    function setmaxMint(uint256 maxMint_) external onlyOwner {
        maxSupply = maxMint_;
    }

    function withdraw() public onlyOwner {
        payable(msg.sender).transfer(payable(address(this)).balance);
    }

}

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

pragma solidity ^0.8.0;

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

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

  struct TokenOwnership {
    address addr;
    uint64 startTimestamp;
  }

  struct AddressData {
    uint128 balance;
    uint128 numberMinted;
  }

  uint256 private currentIndex = 0;

  uint256 internal immutable collectionSize;
  uint256 internal immutable maxBatchSize;

  // Token name
  string private _name;

  // Token symbol
  string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    _approve(to, tokenId, owner);
  }

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

    return _tokenApprovals[tokenId];
  }

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

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

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

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

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

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

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

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

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

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

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

    uint256 updatedIndex = startTokenId;

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

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

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

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

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

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

    _beforeTokenTransfers(from, to, tokenId, 1);

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

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

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

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

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

  uint256 public nextOwnerToExplicitlySet = 0;

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

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

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

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

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

pragma solidity ^0.8.0;

/**
 * @dev Contract module that helps prevent reentrant calls to a function.
 *
 * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier
 * available, which can be applied to functions to make sure there are no nested
 * (reentrant) calls to them.
 *
 * Note that because there is a single `nonReentrant` guard, functions marked as
 * `nonReentrant` may not call one another. This can be worked around by making
 * those functions `private`, and then adding `external` `nonReentrant` entry
 * points to them.
 *
 * TIP: If you would like to learn more about reentrancy and alternative ways
 * to protect against it, check out our blog post
 * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul].
 */
abstract contract ReentrancyGuard {
    // Booleans are more expensive than uint256 or any type that takes up a full
    // word because each write operation emits an extra SLOAD to first read the
    // slot's contents, replace the bits taken up by the boolean, and then write
    // back. This is the compiler's defense against contract upgrades and
    // pointer aliasing, and it cannot be disabled.

    // The values being non-zero value makes deployment a bit more expensive,
    // but in exchange the refund on every call to nonReentrant will be lower in
    // amount. Since refunds are capped to a percentage of the total
    // transaction's gas, it is best to keep them low in cases like this one, to
    // increase the likelihood of the full refund coming into effect.
    uint256 private constant _NOT_ENTERED = 1;
    uint256 private constant _ENTERED = 2;

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

    /**
     * @dev Prevents a contract from calling itself, directly or indirectly.
     * Calling a `nonReentrant` function from another `nonReentrant`
     * function is not supported. It is possible to prevent this from happening
     * by making the `nonReentrant` function external, and making it call a
     * `private` function that does the actual work.
     */
    modifier nonReentrant() {
        // On the first call to nonReentrant, _notEntered will be true
        require(_status != _ENTERED, "ReentrancyGuard: reentrant call");

        // Any calls to nonReentrant after this point will fail
        _status = _ENTERED;

        _;

        // By storing the original value once again, a refund is triggered (see
        // https://eips.ethereum.org/EIPS/eip-2200)
        _status = _NOT_ENTERED;
    }
}

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

import "./IERC165.sol";

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

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

pragma solidity ^0.8.0;

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

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

File 8 of 13 : Address.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (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 9 of 13 : 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 10 of 13 : IERC721Metadata.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol)

pragma solidity ^0.8.0;

import "../IERC721.sol";

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

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

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

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

pragma solidity ^0.8.0;

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

Settings
{
  "optimizer": {
    "enabled": false,
    "runs": 200
  },
  "outputSelection": {
    "*": {
      "*": [
        "evm.bytecode",
        "evm.deployedBytecode",
        "abi"
      ]
    }
  }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"MintPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"WalletMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"qty","type":"uint256"}],"name":"airdrop","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"listedAirdrop","type":"address[]"},{"internalType":"uint256","name":"qty","type":"uint256"}],"name":"airdropBatch","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"qty","type":"uint256"}],"name":"developerMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"freeMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPerTx","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"qty","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"mintStatus","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"nextOwnerToExplicitlySet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"numberMinted","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":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI_","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"qty_","type":"uint256"}],"name":"setMaxFreeMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"price_","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"setPublicMinting","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"maxMint_","type":"uint256"}],"name":"setmaxMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"maxPerTx_","type":"uint256"}],"name":"setmaxMintPerTx","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60c06040526000805560006007556000600b60006101000a81548160ff021916908315150217905550660aa87bee538000600c556001600e55600f80556127106010553480156200004f57600080fd5b506040518060400160405280600881526020017f4f6b6179303074730000000000000000000000000000000000000000000000008152506040518060400160405280600881526020017f4f6b61793030747300000000000000000000000000000000000000000000000081525060646127106000811162000107576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620000fe90620003af565b60405180910390fd5b600082116200014d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000144906200038d565b60405180910390fd5b8360019080519060200190620001659291906200028f565b5082600290805190602001906200017e9291906200028f565b508160a08181525050806080818152505050505050620001b3620001a7620001c160201b60201c565b620001c960201b60201c565b6001600981905550620004e5565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8280546200029d90620003e2565b90600052602060002090601f016020900481019282620002c157600085556200030d565b82601f10620002dc57805160ff19168380011785556200030d565b828001600101855582156200030d579182015b828111156200030c578251825591602001919060010190620002ef565b5b5090506200031c919062000320565b5090565b5b808211156200033b57600081600090555060010162000321565b5090565b60006200034e602783620003d1565b91506200035b8262000447565b604082019050919050565b600062000375602e83620003d1565b9150620003828262000496565b604082019050919050565b60006020820190508181036000830152620003a8816200033f565b9050919050565b60006020820190508181036000830152620003ca8162000366565b9050919050565b600082825260208201905092915050565b60006002820490506001821680620003fb57607f821691505b6020821081141562000412576200041162000418565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f455243373231413a206d61782062617463682073697a65206d7573742062652060008201527f6e6f6e7a65726f00000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a20636f6c6c656374696f6e206d757374206861766520612060008201527f6e6f6e7a65726f20737570706c79000000000000000000000000000000000000602082015250565b60805160a05161477b6200051660003960008181611fa701528181611fd0015261294901526000505061477b6000f3fe6080604052600436106102305760003560e01c806379f34a101161012e578063c87b56dd116100ab578063e985e9c51161006f578063e985e9c51461082a578063f2fde38b14610867578063f76fa7c114610890578063f968adbe146108b9578063fdbf9ef2146108e457610230565b8063c87b56dd1461071d578063d5abeb011461075a578063d7224ba014610785578063dc33e681146107b0578063e645f708146107ed57610230565b80639da3f8fd116100f25780639da3f8fd1461066d578063a0712d6814610698578063a22cb465146106b4578063ac915c06146106dd578063b88d4fde146106f457610230565b806379f34a101461059c5780638ba4cc3c146105c55780638da5cb5b146105ee57806391b7f5ed1461061957806395d89b411461064257610230565b806342842e0e116101bc578063671c3e4f11610180578063671c3e4f146104cb5780636c0360eb146104f457806370a082311461051f578063715018a61461055c578063742a4c9b1461057357610230565b806342842e0e146103d45780634f6ccce7146103fd57806355f804b31461043a5780635b70ea9f146104635780636352211e1461048e57610230565b806318160ddd1161020357806318160ddd1461030357806323b872dd1461032e5780632f745c59146103575780632fc2e29c146103945780633ccfd60b146103bd57610230565b806301ffc9a71461023557806306fdde0314610272578063081812fc1461029d578063095ea7b3146102da575b600080fd5b34801561024157600080fd5b5061025c6004803603810190610257919061320f565b61090f565b60405161026991906137a9565b60405180910390f35b34801561027e57600080fd5b50610287610a59565b60405161029491906137c4565b60405180910390f35b3480156102a957600080fd5b506102c460048036038101906102bf91906132b6565b610aeb565b6040516102d19190613742565b60405180910390f35b3480156102e657600080fd5b5061030160048036038101906102fc919061316f565b610b70565b005b34801561030f57600080fd5b50610318610c89565b6040516103259190613b06565b60405180910390f35b34801561033a57600080fd5b5061035560048036038101906103509190613059565b610c92565b005b34801561036357600080fd5b5061037e6004803603810190610379919061316f565b610ca2565b60405161038b9190613b06565b60405180910390f35b3480156103a057600080fd5b506103bb60048036038101906103b691906132b6565b610ea0565b005b3480156103c957600080fd5b506103d2610eb2565b005b3480156103e057600080fd5b506103fb60048036038101906103f69190613059565b610f1a565b005b34801561040957600080fd5b50610424600480360381019061041f91906132b6565b610f3a565b6040516104319190613b06565b60405180910390f35b34801561044657600080fd5b50610461600480360381019061045c9190613269565b610f8d565b005b34801561046f57600080fd5b50610478610fab565b6040516104859190613b06565b60405180910390f35b34801561049a57600080fd5b506104b560048036038101906104b091906132b6565b610fb1565b6040516104c29190613742565b60405180910390f35b3480156104d757600080fd5b506104f260048036038101906104ed91906131af565b610fc7565b005b34801561050057600080fd5b50610509611027565b60405161051691906137c4565b60405180910390f35b34801561052b57600080fd5b5061054660048036038101906105419190612fec565b6110b5565b6040516105539190613b06565b60405180910390f35b34801561056857600080fd5b5061057161119e565b005b34801561057f57600080fd5b5061059a600480360381019061059591906132b6565b6111b2565b005b3480156105a857600080fd5b506105c360048036038101906105be91906132b6565b6111c4565b005b3480156105d157600080fd5b506105ec60048036038101906105e7919061316f565b6111d6565b005b3480156105fa57600080fd5b506106036111ec565b6040516106109190613742565b60405180910390f35b34801561062557600080fd5b50610640600480360381019061063b91906132b6565b611216565b005b34801561064e57600080fd5b50610657611228565b60405161066491906137c4565b60405180910390f35b34801561067957600080fd5b506106826112ba565b60405161068f91906137a9565b60405180910390f35b6106b260048036038101906106ad91906132b6565b6112cd565b005b3480156106c057600080fd5b506106db60048036038101906106d6919061312f565b6113c4565b005b3480156106e957600080fd5b506106f2611545565b005b34801561070057600080fd5b5061071b600480360381019061071691906130ac565b611579565b005b34801561072957600080fd5b50610744600480360381019061073f91906132b6565b6115d5565b60405161075191906137c4565b60405180910390f35b34801561076657600080fd5b5061076f61167c565b60405161077c9190613b06565b60405180910390f35b34801561079157600080fd5b5061079a611682565b6040516107a79190613b06565b60405180910390f35b3480156107bc57600080fd5b506107d760048036038101906107d29190612fec565b611688565b6040516107e49190613b06565b60405180910390f35b3480156107f957600080fd5b50610814600480360381019061080f9190612fec565b61169a565b6040516108219190613b06565b60405180910390f35b34801561083657600080fd5b50610851600480360381019061084c9190613019565b6116b2565b60405161085e91906137a9565b60405180910390f35b34801561087357600080fd5b5061088e60048036038101906108899190612fec565b611746565b005b34801561089c57600080fd5b506108b760048036038101906108b291906132b6565b6117ca565b005b3480156108c557600080fd5b506108ce6117df565b6040516108db9190613b06565b60405180910390f35b3480156108f057600080fd5b506108f96117e5565b6040516109069190613b06565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806109da57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610a4257507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610a525750610a51826117eb565b5b9050919050565b606060018054610a6890613e45565b80601f0160208091040260200160405190810160405280929190818152602001828054610a9490613e45565b8015610ae15780601f10610ab657610100808354040283529160200191610ae1565b820191906000526020600020905b815481529060010190602001808311610ac457829003601f168201915b5050505050905090565b6000610af682611855565b610b35576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b2c90613ac6565b60405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610b7b82610fb1565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610bec576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610be3906139c6565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610c0b611862565b73ffffffffffffffffffffffffffffffffffffffff161480610c3a5750610c3981610c34611862565b6116b2565b5b610c79576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c70906138e6565b60405180910390fd5b610c8483838361186a565b505050565b60008054905090565b610c9d83838361191c565b505050565b6000610cad836110b5565b8210610cee576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ce5906137e6565b60405180910390fd5b6000610cf8610c89565b905060008060005b83811015610e5e576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614610df257806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610e4a5786841415610e3b578195505050505050610e9a565b8380610e4690613ea8565b9450505b508080610e5690613ea8565b915050610d00565b506040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e9190613a66565b60405180910390fd5b92915050565b610ea8611ed5565b8060108190555050565b610eba611ed5565b3373ffffffffffffffffffffffffffffffffffffffff166108fc3073ffffffffffffffffffffffffffffffffffffffff16319081150290604051600060405180830381858888f19350505050158015610f17573d6000803e3d6000fd5b50565b610f3583838360405180602001604052806000815250611579565b505050565b6000610f44610c89565b8210610f85576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f7c90613866565b60405180910390fd5b819050919050565b610f95611ed5565b8181600d9190610fa6929190612d8a565b505050565b600e5481565b6000610fbc82611f53565b600001519050919050565b610fcf611ed5565b60005b838390508110156110215761100e848483818110610ff357610ff2613faf565b5b90506020020160208101906110089190612fec565b83612156565b808061101990613ea8565b915050610fd2565b50505050565b600d805461103490613e45565b80601f016020809104026020016040519081016040528092919081815260200182805461106090613e45565b80156110ad5780601f10611082576101008083540402835291602001916110ad565b820191906000526020600020905b81548152906001019060200180831161109057829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611126576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161111d90613906565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b6111a6611ed5565b6111b06000612174565b565b6111ba611ed5565b80600e8190555050565b6111cc611ed5565b80600f8190555050565b6111de611ed5565b6111e88282612156565b5050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b61121e611ed5565b80600c8190555050565b60606002805461123790613e45565b80601f016020809104026020016040519081016040528092919081815260200182805461126390613e45565b80156112b05780601f10611285576101008083540402835291602001916112b0565b820191906000526020600020905b81548152906001019060200180831161129357829003601f168201915b5050505050905090565b600b60009054906101000a900460ff1681565b600b60009054906101000a900460ff1661131c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161131390613aa6565b60405180910390fd5b600f54811115611361576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611358906138a6565b60405180910390fd5b6010548161136d610c89565b6113779190613c00565b11156113b8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113af90613846565b60405180910390fd5b6113c18161223a565b50565b6113cc611862565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561143a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161143190613986565b60405180910390fd5b8060066000611447611862565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166114f4611862565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161153991906137a9565b60405180910390a35050565b61154d611ed5565b600b60009054906101000a900460ff1615600b60006101000a81548160ff021916908315150217905550565b61158484848461191c565b61159084848484612409565b6115cf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115c690613a06565b60405180910390fd5b50505050565b60606115e082611855565b61161f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161161690613966565b60405180910390fd5b60006116296125a0565b905060008151116116495760405180602001604052806000815250611674565b8061165384612632565b60405160200161166492919061371e565b6040516020818303038152906040525b915050919050565b60105481565b60075481565b600061169382612793565b9050919050565b600a6020528060005260406000206000915090505481565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61174e611ed5565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156117be576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117b590613806565b60405180910390fd5b6117c781612174565b50565b6117d2611ed5565b6117dc3382612156565b50565b600f5481565b600c5481565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6000805482109050919050565b600033905090565b826005600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600061192782611f53565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff1661194e611862565b73ffffffffffffffffffffffffffffffffffffffff1614806119aa5750611973611862565b73ffffffffffffffffffffffffffffffffffffffff1661199284610aeb565b73ffffffffffffffffffffffffffffffffffffffff16145b806119c657506119c582600001516119c0611862565b6116b2565b5b905080611a08576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119ff906139a6565b60405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff1614611a7a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a7190613926565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611aea576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ae190613886565b60405180910390fd5b611af7858585600161287c565b611b07600084846000015161186a565b6001600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff16611b759190613ce1565b92506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff1602179055506001600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff16611c199190613bba565b92506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060405180604001604052808573ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506003600085815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055509050506000600184611d1f9190613c00565b9050600073ffffffffffffffffffffffffffffffffffffffff166003600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415611e6557611d9581611855565b15611e64576040518060400160405280846000015173ffffffffffffffffffffffffffffffffffffffff168152602001846020015167ffffffffffffffff168152506003600083815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055509050505b5b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611ecd8686866001612882565b505050505050565b611edd611862565b73ffffffffffffffffffffffffffffffffffffffff16611efb6111ec565b73ffffffffffffffffffffffffffffffffffffffff1614611f51576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f4890613946565b60405180910390fd5b565b611f5b612e10565b611f6482611855565b611fa3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f9a90613826565b60405180910390fd5b60007f000000000000000000000000000000000000000000000000000000000000000083106120075760017f000000000000000000000000000000000000000000000000000000000000000084611ffa9190613d15565b6120049190613c00565b90505b60008390505b818110612115576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461210157809350505050612151565b50808061210d90613e1b565b91505061200d565b506040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161214890613a86565b60405180910390fd5b919050565b612170828260405180602001604052806000815250612888565b5050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600e54600a60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054101561235557600e5481101561229357600e5490505b600c54600e54826122a49190613d15565b6122ae9190613c87565b3410156122f0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122e7906139e6565b60405180910390fd5b80600a60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461233f9190613c00565b925050819055506123503382612156565b612406565b600c54816123639190613c87565b3410156123a5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161239c906139e6565b60405180910390fd5b80600a60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546123f49190613c00565b925050819055506124053382612156565b5b50565b600061242a8473ffffffffffffffffffffffffffffffffffffffff16612d67565b15612593578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612453611862565b8786866040518563ffffffff1660e01b8152600401612475949392919061375d565b602060405180830381600087803b15801561248f57600080fd5b505af19250505080156124c057506040513d601f19601f820116820180604052508101906124bd919061323c565b60015b612543573d80600081146124f0576040519150601f19603f3d011682016040523d82523d6000602084013e6124f5565b606091505b5060008151141561253b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161253290613a06565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612598565b600190505b949350505050565b6060600d80546125af90613e45565b80601f01602080910402602001604051908101604052809291908181526020018280546125db90613e45565b80156126285780601f106125fd57610100808354040283529160200191612628565b820191906000526020600020905b81548152906001019060200180831161260b57829003601f168201915b5050505050905090565b6060600082141561267a576040518060400160405280600181526020017f3000000000000000000000000000000000000000000000000000000000000000815250905061278e565b600082905060005b600082146126ac57808061269590613ea8565b915050600a826126a59190613c56565b9150612682565b60008167ffffffffffffffff8111156126c8576126c7613fde565b5b6040519080825280601f01601f1916602001820160405280156126fa5781602001600182028036833780820191505090505b5090505b60008514612787576001826127139190613d15565b9150600a856127229190613ef1565b603061272e9190613c00565b60f81b81838151811061274457612743613faf565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856127809190613c56565b94506126fe565b8093505050505b919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612804576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127fb906138c6565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160109054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b50505050565b50505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156128fe576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128f590613a46565b60405180910390fd5b61290781611855565b15612947576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161293e90613a26565b60405180910390fd5b7f00000000000000000000000000000000000000000000000000000000000000008311156129aa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129a190613ae6565b60405180910390fd5b6129b7600085838661287c565b6000600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206040518060400160405290816000820160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff1681526020016000820160109054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff168152505090506040518060400160405280858360000151612ab49190613bba565b6fffffffffffffffffffffffffffffffff168152602001858360200151612adb9190613bba565b6fffffffffffffffffffffffffffffffff16815250600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008201518160000160006101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060208201518160000160106101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555090505060405180604001604052808673ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506003600084815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550905050600082905060005b85811015612d4a57818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612cea6000888488612409565b612d29576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d2090613a06565b60405180910390fd5b8180612d3490613ea8565b9250508080612d4290613ea8565b915050612c79565b5080600081905550612d5f6000878588612882565b505050505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b828054612d9690613e45565b90600052602060002090601f016020900481019282612db85760008555612dff565b82601f10612dd157803560ff1916838001178555612dff565b82800160010185558215612dff579182015b82811115612dfe578235825591602001919060010190612de3565b5b509050612e0c9190612e4a565b5090565b6040518060400160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681525090565b5b80821115612e63576000816000905550600101612e4b565b5090565b6000612e7a612e7584613b46565b613b21565b905082815260208101848484011115612e9657612e9561401c565b5b612ea1848285613dd9565b509392505050565b600081359050612eb8816146e9565b92915050565b60008083601f840112612ed457612ed3614012565b5b8235905067ffffffffffffffff811115612ef157612ef061400d565b5b602083019150836020820283011115612f0d57612f0c614017565b5b9250929050565b600081359050612f2381614700565b92915050565b600081359050612f3881614717565b92915050565b600081519050612f4d81614717565b92915050565b600082601f830112612f6857612f67614012565b5b8135612f78848260208601612e67565b91505092915050565b60008083601f840112612f9757612f96614012565b5b8235905067ffffffffffffffff811115612fb457612fb361400d565b5b602083019150836001820283011115612fd057612fcf614017565b5b9250929050565b600081359050612fe68161472e565b92915050565b60006020828403121561300257613001614026565b5b600061301084828501612ea9565b91505092915050565b600080604083850312156130305761302f614026565b5b600061303e85828601612ea9565b925050602061304f85828601612ea9565b9150509250929050565b60008060006060848603121561307257613071614026565b5b600061308086828701612ea9565b935050602061309186828701612ea9565b92505060406130a286828701612fd7565b9150509250925092565b600080600080608085870312156130c6576130c5614026565b5b60006130d487828801612ea9565b94505060206130e587828801612ea9565b93505060406130f687828801612fd7565b925050606085013567ffffffffffffffff81111561311757613116614021565b5b61312387828801612f53565b91505092959194509250565b6000806040838503121561314657613145614026565b5b600061315485828601612ea9565b925050602061316585828601612f14565b9150509250929050565b6000806040838503121561318657613185614026565b5b600061319485828601612ea9565b92505060206131a585828601612fd7565b9150509250929050565b6000806000604084860312156131c8576131c7614026565b5b600084013567ffffffffffffffff8111156131e6576131e5614021565b5b6131f286828701612ebe565b9350935050602061320586828701612fd7565b9150509250925092565b60006020828403121561322557613224614026565b5b600061323384828501612f29565b91505092915050565b60006020828403121561325257613251614026565b5b600061326084828501612f3e565b91505092915050565b600080602083850312156132805761327f614026565b5b600083013567ffffffffffffffff81111561329e5761329d614021565b5b6132aa85828601612f81565b92509250509250929050565b6000602082840312156132cc576132cb614026565b5b60006132da84828501612fd7565b91505092915050565b6132ec81613d49565b82525050565b6132fb81613d5b565b82525050565b600061330c82613b77565b6133168185613b8d565b9350613326818560208601613de8565b61332f8161402b565b840191505092915050565b600061334582613b82565b61334f8185613b9e565b935061335f818560208601613de8565b6133688161402b565b840191505092915050565b600061337e82613b82565b6133888185613baf565b9350613398818560208601613de8565b80840191505092915050565b60006133b1602283613b9e565b91506133bc8261403c565b604082019050919050565b60006133d4602683613b9e565b91506133df8261408b565b604082019050919050565b60006133f7602a83613b9e565b9150613402826140da565b604082019050919050565b600061341a601183613b9e565b915061342582614129565b602082019050919050565b600061343d602383613b9e565b915061344882614152565b604082019050919050565b6000613460602583613b9e565b915061346b826141a1565b604082019050919050565b6000613483601f83613b9e565b915061348e826141f0565b602082019050919050565b60006134a6603183613b9e565b91506134b182614219565b604082019050919050565b60006134c9603983613b9e565b91506134d482614268565b604082019050919050565b60006134ec602b83613b9e565b91506134f7826142b7565b604082019050919050565b600061350f602683613b9e565b915061351a82614306565b604082019050919050565b6000613532602083613b9e565b915061353d82614355565b602082019050919050565b6000613555602f83613b9e565b91506135608261437e565b604082019050919050565b6000613578601a83613b9e565b9150613583826143cd565b602082019050919050565b600061359b603283613b9e565b91506135a6826143f6565b604082019050919050565b60006135be602283613b9e565b91506135c982614445565b604082019050919050565b60006135e1601983613b9e565b91506135ec82614494565b602082019050919050565b6000613604603383613b9e565b915061360f826144bd565b604082019050919050565b6000613627601d83613b9e565b91506136328261450c565b602082019050919050565b600061364a602183613b9e565b915061365582614535565b604082019050919050565b600061366d602e83613b9e565b915061367882614584565b604082019050919050565b6000613690602f83613b9e565b915061369b826145d3565b604082019050919050565b60006136b3601e83613b9e565b91506136be82614622565b602082019050919050565b60006136d6602d83613b9e565b91506136e18261464b565b604082019050919050565b60006136f9602283613b9e565b91506137048261469a565b604082019050919050565b61371881613dcf565b82525050565b600061372a8285613373565b91506137368284613373565b91508190509392505050565b600060208201905061375760008301846132e3565b92915050565b600060808201905061377260008301876132e3565b61377f60208301866132e3565b61378c604083018561370f565b818103606083015261379e8184613301565b905095945050505050565b60006020820190506137be60008301846132f2565b92915050565b600060208201905081810360008301526137de818461333a565b905092915050565b600060208201905081810360008301526137ff816133a4565b9050919050565b6000602082019050818103600083015261381f816133c7565b9050919050565b6000602082019050818103600083015261383f816133ea565b9050919050565b6000602082019050818103600083015261385f8161340d565b9050919050565b6000602082019050818103600083015261387f81613430565b9050919050565b6000602082019050818103600083015261389f81613453565b9050919050565b600060208201905081810360008301526138bf81613476565b9050919050565b600060208201905081810360008301526138df81613499565b9050919050565b600060208201905081810360008301526138ff816134bc565b9050919050565b6000602082019050818103600083015261391f816134df565b9050919050565b6000602082019050818103600083015261393f81613502565b9050919050565b6000602082019050818103600083015261395f81613525565b9050919050565b6000602082019050818103600083015261397f81613548565b9050919050565b6000602082019050818103600083015261399f8161356b565b9050919050565b600060208201905081810360008301526139bf8161358e565b9050919050565b600060208201905081810360008301526139df816135b1565b9050919050565b600060208201905081810360008301526139ff816135d4565b9050919050565b60006020820190508181036000830152613a1f816135f7565b9050919050565b60006020820190508181036000830152613a3f8161361a565b9050919050565b60006020820190508181036000830152613a5f8161363d565b9050919050565b60006020820190508181036000830152613a7f81613660565b9050919050565b60006020820190508181036000830152613a9f81613683565b9050919050565b60006020820190508181036000830152613abf816136a6565b9050919050565b60006020820190508181036000830152613adf816136c9565b9050919050565b60006020820190508181036000830152613aff816136ec565b9050919050565b6000602082019050613b1b600083018461370f565b92915050565b6000613b2b613b3c565b9050613b378282613e77565b919050565b6000604051905090565b600067ffffffffffffffff821115613b6157613b60613fde565b5b613b6a8261402b565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000613bc582613d93565b9150613bd083613d93565b9250826fffffffffffffffffffffffffffffffff03821115613bf557613bf4613f22565b5b828201905092915050565b6000613c0b82613dcf565b9150613c1683613dcf565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613c4b57613c4a613f22565b5b828201905092915050565b6000613c6182613dcf565b9150613c6c83613dcf565b925082613c7c57613c7b613f51565b5b828204905092915050565b6000613c9282613dcf565b9150613c9d83613dcf565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613cd657613cd5613f22565b5b828202905092915050565b6000613cec82613d93565b9150613cf783613d93565b925082821015613d0a57613d09613f22565b5b828203905092915050565b6000613d2082613dcf565b9150613d2b83613dcf565b925082821015613d3e57613d3d613f22565b5b828203905092915050565b6000613d5482613daf565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b60006fffffffffffffffffffffffffffffffff82169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015613e06578082015181840152602081019050613deb565b83811115613e15576000848401525b50505050565b6000613e2682613dcf565b91506000821415613e3a57613e39613f22565b5b600182039050919050565b60006002820490506001821680613e5d57607f821691505b60208210811415613e7157613e70613f80565b5b50919050565b613e808261402b565b810181811067ffffffffffffffff82111715613e9f57613e9e613fde565b5b80604052505050565b6000613eb382613dcf565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613ee657613ee5613f22565b5b600182019050919050565b6000613efc82613dcf565b9150613f0783613dcf565b925082613f1757613f16613f51565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f455243373231413a206f776e657220696e646578206f7574206f6620626f756e60008201527f6473000000000000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a206f776e657220717565727920666f72206e6f6e6578697360008201527f74656e7420746f6b656e00000000000000000000000000000000000000000000602082015250565b7f4f6b6179303074733a20536f6c646f7574000000000000000000000000000000600082015250565b7f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f7560008201527f6e64730000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f4f6b6179303074733a204c696d697420506572205472616e73616374696f6e00600082015250565b7f455243373231413a206e756d626572206d696e74656420717565727920666f7260008201527f20746865207a65726f2061646472657373000000000000000000000000000000602082015250565b7f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000602082015250565b7f455243373231413a2062616c616e636520717565727920666f7220746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e736665722066726f6d20696e636f727265637460008201527f206f776e65720000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f455243373231413a20617070726f766520746f2063616c6c6572000000000000600082015250565b7f455243373231413a207472616e736665722063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b7f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60008201527f6572000000000000000000000000000000000000000000000000000000000000602082015250565b7f4f6b6179303074733a2046756e64206e6f7420656e6f75676800000000000000600082015250565b7f455243373231413a207472616e7366657220746f206e6f6e204552433732315260008201527f6563656976657220696d706c656d656e74657200000000000000000000000000602082015250565b7f455243373231413a20746f6b656e20616c7265616479206d696e746564000000600082015250565b7f455243373231413a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060008201527f6f776e657220627920696e646578000000000000000000000000000000000000602082015250565b7f455243373231413a20756e61626c6520746f2064657465726d696e652074686560008201527f206f776e6572206f6620746f6b656e0000000000000000000000000000000000602082015250565b7f4f6b6179303074733a204d696e74696e67205075626c69632050617573650000600082015250565b7f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560008201527f78697374656e7420746f6b656e00000000000000000000000000000000000000602082015250565b7f455243373231413a207175616e7469747920746f206d696e7420746f6f20686960008201527f6768000000000000000000000000000000000000000000000000000000000000602082015250565b6146f281613d49565b81146146fd57600080fd5b50565b61470981613d5b565b811461471457600080fd5b50565b61472081613d67565b811461472b57600080fd5b50565b61473781613dcf565b811461474257600080fd5b5056fea26469706673582212203dd0fa565fb4a061643588d1086347a302c092e3bdca2105fc26bcf8861f11c364736f6c63430008070033

Deployed Bytecode

0x6080604052600436106102305760003560e01c806379f34a101161012e578063c87b56dd116100ab578063e985e9c51161006f578063e985e9c51461082a578063f2fde38b14610867578063f76fa7c114610890578063f968adbe146108b9578063fdbf9ef2146108e457610230565b8063c87b56dd1461071d578063d5abeb011461075a578063d7224ba014610785578063dc33e681146107b0578063e645f708146107ed57610230565b80639da3f8fd116100f25780639da3f8fd1461066d578063a0712d6814610698578063a22cb465146106b4578063ac915c06146106dd578063b88d4fde146106f457610230565b806379f34a101461059c5780638ba4cc3c146105c55780638da5cb5b146105ee57806391b7f5ed1461061957806395d89b411461064257610230565b806342842e0e116101bc578063671c3e4f11610180578063671c3e4f146104cb5780636c0360eb146104f457806370a082311461051f578063715018a61461055c578063742a4c9b1461057357610230565b806342842e0e146103d45780634f6ccce7146103fd57806355f804b31461043a5780635b70ea9f146104635780636352211e1461048e57610230565b806318160ddd1161020357806318160ddd1461030357806323b872dd1461032e5780632f745c59146103575780632fc2e29c146103945780633ccfd60b146103bd57610230565b806301ffc9a71461023557806306fdde0314610272578063081812fc1461029d578063095ea7b3146102da575b600080fd5b34801561024157600080fd5b5061025c6004803603810190610257919061320f565b61090f565b60405161026991906137a9565b60405180910390f35b34801561027e57600080fd5b50610287610a59565b60405161029491906137c4565b60405180910390f35b3480156102a957600080fd5b506102c460048036038101906102bf91906132b6565b610aeb565b6040516102d19190613742565b60405180910390f35b3480156102e657600080fd5b5061030160048036038101906102fc919061316f565b610b70565b005b34801561030f57600080fd5b50610318610c89565b6040516103259190613b06565b60405180910390f35b34801561033a57600080fd5b5061035560048036038101906103509190613059565b610c92565b005b34801561036357600080fd5b5061037e6004803603810190610379919061316f565b610ca2565b60405161038b9190613b06565b60405180910390f35b3480156103a057600080fd5b506103bb60048036038101906103b691906132b6565b610ea0565b005b3480156103c957600080fd5b506103d2610eb2565b005b3480156103e057600080fd5b506103fb60048036038101906103f69190613059565b610f1a565b005b34801561040957600080fd5b50610424600480360381019061041f91906132b6565b610f3a565b6040516104319190613b06565b60405180910390f35b34801561044657600080fd5b50610461600480360381019061045c9190613269565b610f8d565b005b34801561046f57600080fd5b50610478610fab565b6040516104859190613b06565b60405180910390f35b34801561049a57600080fd5b506104b560048036038101906104b091906132b6565b610fb1565b6040516104c29190613742565b60405180910390f35b3480156104d757600080fd5b506104f260048036038101906104ed91906131af565b610fc7565b005b34801561050057600080fd5b50610509611027565b60405161051691906137c4565b60405180910390f35b34801561052b57600080fd5b5061054660048036038101906105419190612fec565b6110b5565b6040516105539190613b06565b60405180910390f35b34801561056857600080fd5b5061057161119e565b005b34801561057f57600080fd5b5061059a600480360381019061059591906132b6565b6111b2565b005b3480156105a857600080fd5b506105c360048036038101906105be91906132b6565b6111c4565b005b3480156105d157600080fd5b506105ec60048036038101906105e7919061316f565b6111d6565b005b3480156105fa57600080fd5b506106036111ec565b6040516106109190613742565b60405180910390f35b34801561062557600080fd5b50610640600480360381019061063b91906132b6565b611216565b005b34801561064e57600080fd5b50610657611228565b60405161066491906137c4565b60405180910390f35b34801561067957600080fd5b506106826112ba565b60405161068f91906137a9565b60405180910390f35b6106b260048036038101906106ad91906132b6565b6112cd565b005b3480156106c057600080fd5b506106db60048036038101906106d6919061312f565b6113c4565b005b3480156106e957600080fd5b506106f2611545565b005b34801561070057600080fd5b5061071b600480360381019061071691906130ac565b611579565b005b34801561072957600080fd5b50610744600480360381019061073f91906132b6565b6115d5565b60405161075191906137c4565b60405180910390f35b34801561076657600080fd5b5061076f61167c565b60405161077c9190613b06565b60405180910390f35b34801561079157600080fd5b5061079a611682565b6040516107a79190613b06565b60405180910390f35b3480156107bc57600080fd5b506107d760048036038101906107d29190612fec565b611688565b6040516107e49190613b06565b60405180910390f35b3480156107f957600080fd5b50610814600480360381019061080f9190612fec565b61169a565b6040516108219190613b06565b60405180910390f35b34801561083657600080fd5b50610851600480360381019061084c9190613019565b6116b2565b60405161085e91906137a9565b60405180910390f35b34801561087357600080fd5b5061088e60048036038101906108899190612fec565b611746565b005b34801561089c57600080fd5b506108b760048036038101906108b291906132b6565b6117ca565b005b3480156108c557600080fd5b506108ce6117df565b6040516108db9190613b06565b60405180910390f35b3480156108f057600080fd5b506108f96117e5565b6040516109069190613b06565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806109da57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610a4257507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610a525750610a51826117eb565b5b9050919050565b606060018054610a6890613e45565b80601f0160208091040260200160405190810160405280929190818152602001828054610a9490613e45565b8015610ae15780601f10610ab657610100808354040283529160200191610ae1565b820191906000526020600020905b815481529060010190602001808311610ac457829003601f168201915b5050505050905090565b6000610af682611855565b610b35576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b2c90613ac6565b60405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610b7b82610fb1565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610bec576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610be3906139c6565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610c0b611862565b73ffffffffffffffffffffffffffffffffffffffff161480610c3a5750610c3981610c34611862565b6116b2565b5b610c79576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c70906138e6565b60405180910390fd5b610c8483838361186a565b505050565b60008054905090565b610c9d83838361191c565b505050565b6000610cad836110b5565b8210610cee576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ce5906137e6565b60405180910390fd5b6000610cf8610c89565b905060008060005b83811015610e5e576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614610df257806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610e4a5786841415610e3b578195505050505050610e9a565b8380610e4690613ea8565b9450505b508080610e5690613ea8565b915050610d00565b506040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e9190613a66565b60405180910390fd5b92915050565b610ea8611ed5565b8060108190555050565b610eba611ed5565b3373ffffffffffffffffffffffffffffffffffffffff166108fc3073ffffffffffffffffffffffffffffffffffffffff16319081150290604051600060405180830381858888f19350505050158015610f17573d6000803e3d6000fd5b50565b610f3583838360405180602001604052806000815250611579565b505050565b6000610f44610c89565b8210610f85576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f7c90613866565b60405180910390fd5b819050919050565b610f95611ed5565b8181600d9190610fa6929190612d8a565b505050565b600e5481565b6000610fbc82611f53565b600001519050919050565b610fcf611ed5565b60005b838390508110156110215761100e848483818110610ff357610ff2613faf565b5b90506020020160208101906110089190612fec565b83612156565b808061101990613ea8565b915050610fd2565b50505050565b600d805461103490613e45565b80601f016020809104026020016040519081016040528092919081815260200182805461106090613e45565b80156110ad5780601f10611082576101008083540402835291602001916110ad565b820191906000526020600020905b81548152906001019060200180831161109057829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611126576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161111d90613906565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b6111a6611ed5565b6111b06000612174565b565b6111ba611ed5565b80600e8190555050565b6111cc611ed5565b80600f8190555050565b6111de611ed5565b6111e88282612156565b5050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b61121e611ed5565b80600c8190555050565b60606002805461123790613e45565b80601f016020809104026020016040519081016040528092919081815260200182805461126390613e45565b80156112b05780601f10611285576101008083540402835291602001916112b0565b820191906000526020600020905b81548152906001019060200180831161129357829003601f168201915b5050505050905090565b600b60009054906101000a900460ff1681565b600b60009054906101000a900460ff1661131c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161131390613aa6565b60405180910390fd5b600f54811115611361576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611358906138a6565b60405180910390fd5b6010548161136d610c89565b6113779190613c00565b11156113b8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113af90613846565b60405180910390fd5b6113c18161223a565b50565b6113cc611862565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561143a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161143190613986565b60405180910390fd5b8060066000611447611862565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166114f4611862565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161153991906137a9565b60405180910390a35050565b61154d611ed5565b600b60009054906101000a900460ff1615600b60006101000a81548160ff021916908315150217905550565b61158484848461191c565b61159084848484612409565b6115cf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115c690613a06565b60405180910390fd5b50505050565b60606115e082611855565b61161f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161161690613966565b60405180910390fd5b60006116296125a0565b905060008151116116495760405180602001604052806000815250611674565b8061165384612632565b60405160200161166492919061371e565b6040516020818303038152906040525b915050919050565b60105481565b60075481565b600061169382612793565b9050919050565b600a6020528060005260406000206000915090505481565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61174e611ed5565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156117be576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117b590613806565b60405180910390fd5b6117c781612174565b50565b6117d2611ed5565b6117dc3382612156565b50565b600f5481565b600c5481565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6000805482109050919050565b600033905090565b826005600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600061192782611f53565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff1661194e611862565b73ffffffffffffffffffffffffffffffffffffffff1614806119aa5750611973611862565b73ffffffffffffffffffffffffffffffffffffffff1661199284610aeb565b73ffffffffffffffffffffffffffffffffffffffff16145b806119c657506119c582600001516119c0611862565b6116b2565b5b905080611a08576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119ff906139a6565b60405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff1614611a7a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a7190613926565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611aea576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ae190613886565b60405180910390fd5b611af7858585600161287c565b611b07600084846000015161186a565b6001600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff16611b759190613ce1565b92506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff1602179055506001600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff16611c199190613bba565b92506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060405180604001604052808573ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506003600085815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055509050506000600184611d1f9190613c00565b9050600073ffffffffffffffffffffffffffffffffffffffff166003600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415611e6557611d9581611855565b15611e64576040518060400160405280846000015173ffffffffffffffffffffffffffffffffffffffff168152602001846020015167ffffffffffffffff168152506003600083815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055509050505b5b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611ecd8686866001612882565b505050505050565b611edd611862565b73ffffffffffffffffffffffffffffffffffffffff16611efb6111ec565b73ffffffffffffffffffffffffffffffffffffffff1614611f51576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f4890613946565b60405180910390fd5b565b611f5b612e10565b611f6482611855565b611fa3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f9a90613826565b60405180910390fd5b60007f000000000000000000000000000000000000000000000000000000000000006483106120075760017f000000000000000000000000000000000000000000000000000000000000006484611ffa9190613d15565b6120049190613c00565b90505b60008390505b818110612115576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461210157809350505050612151565b50808061210d90613e1b565b91505061200d565b506040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161214890613a86565b60405180910390fd5b919050565b612170828260405180602001604052806000815250612888565b5050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600e54600a60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054101561235557600e5481101561229357600e5490505b600c54600e54826122a49190613d15565b6122ae9190613c87565b3410156122f0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122e7906139e6565b60405180910390fd5b80600a60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461233f9190613c00565b925050819055506123503382612156565b612406565b600c54816123639190613c87565b3410156123a5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161239c906139e6565b60405180910390fd5b80600a60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546123f49190613c00565b925050819055506124053382612156565b5b50565b600061242a8473ffffffffffffffffffffffffffffffffffffffff16612d67565b15612593578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612453611862565b8786866040518563ffffffff1660e01b8152600401612475949392919061375d565b602060405180830381600087803b15801561248f57600080fd5b505af19250505080156124c057506040513d601f19601f820116820180604052508101906124bd919061323c565b60015b612543573d80600081146124f0576040519150601f19603f3d011682016040523d82523d6000602084013e6124f5565b606091505b5060008151141561253b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161253290613a06565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612598565b600190505b949350505050565b6060600d80546125af90613e45565b80601f01602080910402602001604051908101604052809291908181526020018280546125db90613e45565b80156126285780601f106125fd57610100808354040283529160200191612628565b820191906000526020600020905b81548152906001019060200180831161260b57829003601f168201915b5050505050905090565b6060600082141561267a576040518060400160405280600181526020017f3000000000000000000000000000000000000000000000000000000000000000815250905061278e565b600082905060005b600082146126ac57808061269590613ea8565b915050600a826126a59190613c56565b9150612682565b60008167ffffffffffffffff8111156126c8576126c7613fde565b5b6040519080825280601f01601f1916602001820160405280156126fa5781602001600182028036833780820191505090505b5090505b60008514612787576001826127139190613d15565b9150600a856127229190613ef1565b603061272e9190613c00565b60f81b81838151811061274457612743613faf565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856127809190613c56565b94506126fe565b8093505050505b919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612804576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127fb906138c6565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160109054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b50505050565b50505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156128fe576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128f590613a46565b60405180910390fd5b61290781611855565b15612947576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161293e90613a26565b60405180910390fd5b7f00000000000000000000000000000000000000000000000000000000000000648311156129aa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129a190613ae6565b60405180910390fd5b6129b7600085838661287c565b6000600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206040518060400160405290816000820160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff1681526020016000820160109054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff168152505090506040518060400160405280858360000151612ab49190613bba565b6fffffffffffffffffffffffffffffffff168152602001858360200151612adb9190613bba565b6fffffffffffffffffffffffffffffffff16815250600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008201518160000160006101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060208201518160000160106101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555090505060405180604001604052808673ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506003600084815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550905050600082905060005b85811015612d4a57818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612cea6000888488612409565b612d29576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d2090613a06565b60405180910390fd5b8180612d3490613ea8565b9250508080612d4290613ea8565b915050612c79565b5080600081905550612d5f6000878588612882565b505050505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b828054612d9690613e45565b90600052602060002090601f016020900481019282612db85760008555612dff565b82601f10612dd157803560ff1916838001178555612dff565b82800160010185558215612dff579182015b82811115612dfe578235825591602001919060010190612de3565b5b509050612e0c9190612e4a565b5090565b6040518060400160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681525090565b5b80821115612e63576000816000905550600101612e4b565b5090565b6000612e7a612e7584613b46565b613b21565b905082815260208101848484011115612e9657612e9561401c565b5b612ea1848285613dd9565b509392505050565b600081359050612eb8816146e9565b92915050565b60008083601f840112612ed457612ed3614012565b5b8235905067ffffffffffffffff811115612ef157612ef061400d565b5b602083019150836020820283011115612f0d57612f0c614017565b5b9250929050565b600081359050612f2381614700565b92915050565b600081359050612f3881614717565b92915050565b600081519050612f4d81614717565b92915050565b600082601f830112612f6857612f67614012565b5b8135612f78848260208601612e67565b91505092915050565b60008083601f840112612f9757612f96614012565b5b8235905067ffffffffffffffff811115612fb457612fb361400d565b5b602083019150836001820283011115612fd057612fcf614017565b5b9250929050565b600081359050612fe68161472e565b92915050565b60006020828403121561300257613001614026565b5b600061301084828501612ea9565b91505092915050565b600080604083850312156130305761302f614026565b5b600061303e85828601612ea9565b925050602061304f85828601612ea9565b9150509250929050565b60008060006060848603121561307257613071614026565b5b600061308086828701612ea9565b935050602061309186828701612ea9565b92505060406130a286828701612fd7565b9150509250925092565b600080600080608085870312156130c6576130c5614026565b5b60006130d487828801612ea9565b94505060206130e587828801612ea9565b93505060406130f687828801612fd7565b925050606085013567ffffffffffffffff81111561311757613116614021565b5b61312387828801612f53565b91505092959194509250565b6000806040838503121561314657613145614026565b5b600061315485828601612ea9565b925050602061316585828601612f14565b9150509250929050565b6000806040838503121561318657613185614026565b5b600061319485828601612ea9565b92505060206131a585828601612fd7565b9150509250929050565b6000806000604084860312156131c8576131c7614026565b5b600084013567ffffffffffffffff8111156131e6576131e5614021565b5b6131f286828701612ebe565b9350935050602061320586828701612fd7565b9150509250925092565b60006020828403121561322557613224614026565b5b600061323384828501612f29565b91505092915050565b60006020828403121561325257613251614026565b5b600061326084828501612f3e565b91505092915050565b600080602083850312156132805761327f614026565b5b600083013567ffffffffffffffff81111561329e5761329d614021565b5b6132aa85828601612f81565b92509250509250929050565b6000602082840312156132cc576132cb614026565b5b60006132da84828501612fd7565b91505092915050565b6132ec81613d49565b82525050565b6132fb81613d5b565b82525050565b600061330c82613b77565b6133168185613b8d565b9350613326818560208601613de8565b61332f8161402b565b840191505092915050565b600061334582613b82565b61334f8185613b9e565b935061335f818560208601613de8565b6133688161402b565b840191505092915050565b600061337e82613b82565b6133888185613baf565b9350613398818560208601613de8565b80840191505092915050565b60006133b1602283613b9e565b91506133bc8261403c565b604082019050919050565b60006133d4602683613b9e565b91506133df8261408b565b604082019050919050565b60006133f7602a83613b9e565b9150613402826140da565b604082019050919050565b600061341a601183613b9e565b915061342582614129565b602082019050919050565b600061343d602383613b9e565b915061344882614152565b604082019050919050565b6000613460602583613b9e565b915061346b826141a1565b604082019050919050565b6000613483601f83613b9e565b915061348e826141f0565b602082019050919050565b60006134a6603183613b9e565b91506134b182614219565b604082019050919050565b60006134c9603983613b9e565b91506134d482614268565b604082019050919050565b60006134ec602b83613b9e565b91506134f7826142b7565b604082019050919050565b600061350f602683613b9e565b915061351a82614306565b604082019050919050565b6000613532602083613b9e565b915061353d82614355565b602082019050919050565b6000613555602f83613b9e565b91506135608261437e565b604082019050919050565b6000613578601a83613b9e565b9150613583826143cd565b602082019050919050565b600061359b603283613b9e565b91506135a6826143f6565b604082019050919050565b60006135be602283613b9e565b91506135c982614445565b604082019050919050565b60006135e1601983613b9e565b91506135ec82614494565b602082019050919050565b6000613604603383613b9e565b915061360f826144bd565b604082019050919050565b6000613627601d83613b9e565b91506136328261450c565b602082019050919050565b600061364a602183613b9e565b915061365582614535565b604082019050919050565b600061366d602e83613b9e565b915061367882614584565b604082019050919050565b6000613690602f83613b9e565b915061369b826145d3565b604082019050919050565b60006136b3601e83613b9e565b91506136be82614622565b602082019050919050565b60006136d6602d83613b9e565b91506136e18261464b565b604082019050919050565b60006136f9602283613b9e565b91506137048261469a565b604082019050919050565b61371881613dcf565b82525050565b600061372a8285613373565b91506137368284613373565b91508190509392505050565b600060208201905061375760008301846132e3565b92915050565b600060808201905061377260008301876132e3565b61377f60208301866132e3565b61378c604083018561370f565b818103606083015261379e8184613301565b905095945050505050565b60006020820190506137be60008301846132f2565b92915050565b600060208201905081810360008301526137de818461333a565b905092915050565b600060208201905081810360008301526137ff816133a4565b9050919050565b6000602082019050818103600083015261381f816133c7565b9050919050565b6000602082019050818103600083015261383f816133ea565b9050919050565b6000602082019050818103600083015261385f8161340d565b9050919050565b6000602082019050818103600083015261387f81613430565b9050919050565b6000602082019050818103600083015261389f81613453565b9050919050565b600060208201905081810360008301526138bf81613476565b9050919050565b600060208201905081810360008301526138df81613499565b9050919050565b600060208201905081810360008301526138ff816134bc565b9050919050565b6000602082019050818103600083015261391f816134df565b9050919050565b6000602082019050818103600083015261393f81613502565b9050919050565b6000602082019050818103600083015261395f81613525565b9050919050565b6000602082019050818103600083015261397f81613548565b9050919050565b6000602082019050818103600083015261399f8161356b565b9050919050565b600060208201905081810360008301526139bf8161358e565b9050919050565b600060208201905081810360008301526139df816135b1565b9050919050565b600060208201905081810360008301526139ff816135d4565b9050919050565b60006020820190508181036000830152613a1f816135f7565b9050919050565b60006020820190508181036000830152613a3f8161361a565b9050919050565b60006020820190508181036000830152613a5f8161363d565b9050919050565b60006020820190508181036000830152613a7f81613660565b9050919050565b60006020820190508181036000830152613a9f81613683565b9050919050565b60006020820190508181036000830152613abf816136a6565b9050919050565b60006020820190508181036000830152613adf816136c9565b9050919050565b60006020820190508181036000830152613aff816136ec565b9050919050565b6000602082019050613b1b600083018461370f565b92915050565b6000613b2b613b3c565b9050613b378282613e77565b919050565b6000604051905090565b600067ffffffffffffffff821115613b6157613b60613fde565b5b613b6a8261402b565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000613bc582613d93565b9150613bd083613d93565b9250826fffffffffffffffffffffffffffffffff03821115613bf557613bf4613f22565b5b828201905092915050565b6000613c0b82613dcf565b9150613c1683613dcf565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613c4b57613c4a613f22565b5b828201905092915050565b6000613c6182613dcf565b9150613c6c83613dcf565b925082613c7c57613c7b613f51565b5b828204905092915050565b6000613c9282613dcf565b9150613c9d83613dcf565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613cd657613cd5613f22565b5b828202905092915050565b6000613cec82613d93565b9150613cf783613d93565b925082821015613d0a57613d09613f22565b5b828203905092915050565b6000613d2082613dcf565b9150613d2b83613dcf565b925082821015613d3e57613d3d613f22565b5b828203905092915050565b6000613d5482613daf565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b60006fffffffffffffffffffffffffffffffff82169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015613e06578082015181840152602081019050613deb565b83811115613e15576000848401525b50505050565b6000613e2682613dcf565b91506000821415613e3a57613e39613f22565b5b600182039050919050565b60006002820490506001821680613e5d57607f821691505b60208210811415613e7157613e70613f80565b5b50919050565b613e808261402b565b810181811067ffffffffffffffff82111715613e9f57613e9e613fde565b5b80604052505050565b6000613eb382613dcf565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613ee657613ee5613f22565b5b600182019050919050565b6000613efc82613dcf565b9150613f0783613dcf565b925082613f1757613f16613f51565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f455243373231413a206f776e657220696e646578206f7574206f6620626f756e60008201527f6473000000000000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a206f776e657220717565727920666f72206e6f6e6578697360008201527f74656e7420746f6b656e00000000000000000000000000000000000000000000602082015250565b7f4f6b6179303074733a20536f6c646f7574000000000000000000000000000000600082015250565b7f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f7560008201527f6e64730000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f4f6b6179303074733a204c696d697420506572205472616e73616374696f6e00600082015250565b7f455243373231413a206e756d626572206d696e74656420717565727920666f7260008201527f20746865207a65726f2061646472657373000000000000000000000000000000602082015250565b7f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000602082015250565b7f455243373231413a2062616c616e636520717565727920666f7220746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e736665722066726f6d20696e636f727265637460008201527f206f776e65720000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f455243373231413a20617070726f766520746f2063616c6c6572000000000000600082015250565b7f455243373231413a207472616e736665722063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b7f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60008201527f6572000000000000000000000000000000000000000000000000000000000000602082015250565b7f4f6b6179303074733a2046756e64206e6f7420656e6f75676800000000000000600082015250565b7f455243373231413a207472616e7366657220746f206e6f6e204552433732315260008201527f6563656976657220696d706c656d656e74657200000000000000000000000000602082015250565b7f455243373231413a20746f6b656e20616c7265616479206d696e746564000000600082015250565b7f455243373231413a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060008201527f6f776e657220627920696e646578000000000000000000000000000000000000602082015250565b7f455243373231413a20756e61626c6520746f2064657465726d696e652074686560008201527f206f776e6572206f6620746f6b656e0000000000000000000000000000000000602082015250565b7f4f6b6179303074733a204d696e74696e67205075626c69632050617573650000600082015250565b7f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560008201527f78697374656e7420746f6b656e00000000000000000000000000000000000000602082015250565b7f455243373231413a207175616e7469747920746f206d696e7420746f6f20686960008201527f6768000000000000000000000000000000000000000000000000000000000000602082015250565b6146f281613d49565b81146146fd57600080fd5b50565b61470981613d5b565b811461471457600080fd5b50565b61472081613d67565b811461472b57600080fd5b50565b61473781613dcf565b811461474257600080fd5b5056fea26469706673582212203dd0fa565fb4a061643588d1086347a302c092e3bdca2105fc26bcf8861f11c364736f6c63430008070033

Deployed Bytecode Sourcemap

207:2678:12:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4251:370:11;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5977:94;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7502:204;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7065:379;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;2812:94;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8352:142;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;3443:744;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2660:96:12;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;2764:116;;;;;;;;;;;;;:::i;:::-;;8557:157:11;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;2975:177;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2243:102:12;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;435:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5800:118:11;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1803:215:12;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;405:21;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4677:211:11;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1831:101:0;;;;;;;;;;;;;:::i;:::-;;2561:91:12;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;2451:102;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1692:103;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1201:85:0;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2353:90:12;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;6132:98:11;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;324:31:12;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;603:289;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;7770:274:11;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;2139:92:12;;;;;;;;;;;;;:::i;:::-;;8777:311:11;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;6293:394;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;500:29:12;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13192:43:11;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1455:113:12;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;271:46;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8107:186:11;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2081:198:0;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;2026:105:12;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;466:25;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;362:35;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4251:370:11;4378:4;4423:25;4408:40;;;:11;:40;;;;:99;;;;4474:33;4459:48;;;:11;:48;;;;4408:99;:160;;;;4533:35;4518:50;;;:11;:50;;;;4408:160;:207;;;;4579:36;4603:11;4579:23;:36::i;:::-;4408:207;4394:221;;4251:370;;;:::o;5977:94::-;6031:13;6060:5;6053:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5977:94;:::o;7502:204::-;7570:7;7594:16;7602:7;7594;:16::i;:::-;7586:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;7676:15;:24;7692:7;7676:24;;;;;;;;;;;;;;;;;;;;;7669:31;;7502:204;;;:::o;7065:379::-;7134:13;7150:24;7166:7;7150:15;:24::i;:::-;7134:40;;7195:5;7189:11;;:2;:11;;;;7181:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;7280:5;7264:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;7289:37;7306:5;7313:12;:10;:12::i;:::-;7289:16;:37::i;:::-;7264:62;7248:153;;;;;;;;;;;;:::i;:::-;;;;;;;;;7410:28;7419:2;7423:7;7432:5;7410:8;:28::i;:::-;7127:317;7065:379;;:::o;2812:94::-;2865:7;2888:12;;2881:19;;2812:94;:::o;8352:142::-;8460:28;8470:4;8476:2;8480:7;8460:9;:28::i;:::-;8352:142;;;:::o;3443:744::-;3552:7;3587:16;3597:5;3587:9;:16::i;:::-;3579:5;:24;3571:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;3649:22;3674:13;:11;:13::i;:::-;3649:38;;3694:19;3724:25;3774:9;3769:350;3793:14;3789:1;:18;3769:350;;;3823:31;3857:11;:14;3869:1;3857:14;;;;;;;;;;;3823:48;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3910:1;3884:28;;:9;:14;;;:28;;;3880:89;;3945:9;:14;;;3925:34;;3880:89;4002:5;3981:26;;:17;:26;;;3977:135;;;4039:5;4024:11;:20;4020:59;;;4066:1;4059:8;;;;;;;;;4020:59;4089:13;;;;;:::i;:::-;;;;3977:135;3814:305;3809:3;;;;;:::i;:::-;;;;3769:350;;;;4125:56;;;;;;;;;;:::i;:::-;;;;;;;;3443:744;;;;;:::o;2660:96:12:-;1094:13:0;:11;:13::i;:::-;2740:8:12::1;2728:9;:20;;;;2660:96:::0;:::o;2764:116::-;1094:13:0;:11;:13::i;:::-;2820:10:12::1;2812:28;;:60;2857:4;2841:30;;;2812:60;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;2764:116::o:0;8557:157:11:-;8669:39;8686:4;8692:2;8696:7;8669:39;;;;;;;;;;;;:16;:39::i;:::-;8557:157;;;:::o;2975:177::-;3042:7;3074:13;:11;:13::i;:::-;3066:5;:21;3058:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;3141:5;3134:12;;2975:177;;;:::o;2243:102:12:-;1094:13:0;:11;:13::i;:::-;2329:8:12::1;;2319:7;:18;;;;;;;:::i;:::-;;2243:102:::0;;:::o;435:24::-;;;;:::o;5800:118:11:-;5864:7;5887:20;5899:7;5887:11;:20::i;:::-;:25;;;5880:32;;5800:118;;;:::o;1803:215:12:-;1094:13:0;:11;:13::i;:::-;1907:9:12::1;1902:109;1926:13;;:20;;1922:1;:24;1902:109;;;1967:32;1977:13;;1991:1;1977:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;1995:3;1967:9;:32::i;:::-;1948:3;;;;;:::i;:::-;;;;1902:109;;;;1803:215:::0;;;:::o;405:21::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;4677:211:11:-;4741:7;4782:1;4765:19;;:5;:19;;;;4757:75;;;;;;;;;;;;:::i;:::-;;;;;;;;;4854:12;:19;4867:5;4854:19;;;;;;;;;;;;;;;:27;;;;;;;;;;;;4846:36;;4839:43;;4677:211;;;:::o;1831:101:0:-;1094:13;:11;:13::i;:::-;1895:30:::1;1922:1;1895:18;:30::i;:::-;1831:101::o:0;2561:91:12:-;1094:13:0;:11;:13::i;:::-;2640:4:12::1;2629:8;:15;;;;2561:91:::0;:::o;2451:102::-;1094:13:0;:11;:13::i;:::-;2536:9:12::1;2525:8;:20;;;;2451:102:::0;:::o;1692:103::-;1094:13:0;:11;:13::i;:::-;1769:18:12::1;1779:2;1783:3;1769:9;:18::i;:::-;1692:103:::0;;:::o;1201:85:0:-;1247:7;1273:6;;;;;;;;;;;1266:13;;1201:85;:::o;2353:90:12:-;1094:13:0;:11;:13::i;:::-;2429:6:12::1;2417:9;:18;;;;2353:90:::0;:::o;6132:98:11:-;6188:13;6217:7;6210:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6132:98;:::o;324:31:12:-;;;;;;;;;;;;;:::o;603:289::-;671:10;;;;;;;;;;;663:54;;;;;;;;;;;;:::i;:::-;;;;;;;;;743:8;;736:3;:15;;728:59;;;;;;;;;;;;:::i;:::-;;;;;;;;;829:9;;822:3;806:13;:11;:13::i;:::-;:19;;;;:::i;:::-;:32;;798:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;870:14;880:3;870:9;:14::i;:::-;603:289;:::o;7770:274:11:-;7873:12;:10;:12::i;:::-;7861:24;;:8;:24;;;;7853:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;7970:8;7925:18;:32;7944:12;:10;:12::i;:::-;7925:32;;;;;;;;;;;;;;;:42;7958:8;7925:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;8019:8;7990:48;;8005:12;:10;:12::i;:::-;7990:48;;;8029:8;7990:48;;;;;;:::i;:::-;;;;;;;;7770:274;;:::o;2139:92:12:-;1094:13:0;:11;:13::i;:::-;2212:10:12::1;;;;;;;;;;;2211:11;2197:10;;:25;;;;;;;;;;;;;;;;;;2139:92::o:0;8777:311:11:-;8914:28;8924:4;8930:2;8934:7;8914:9;:28::i;:::-;8965:48;8988:4;8994:2;8998:7;9007:5;8965:22;:48::i;:::-;8949:133;;;;;;;;;;;;:::i;:::-;;;;;;;;;8777:311;;;;:::o;6293:394::-;6391:13;6432:16;6440:7;6432;:16::i;:::-;6416:97;;;;;;;;;;;;:::i;:::-;;;;;;;;;6522:21;6546:10;:8;:10::i;:::-;6522:34;;6601:1;6583:7;6577:21;:25;:104;;;;;;;;;;;;;;;;;6638:7;6647:18;:7;:16;:18::i;:::-;6621:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;6577:104;6563:118;;;6293:394;;;:::o;500:29:12:-;;;;:::o;13192:43:11:-;;;;:::o;1455:113:12:-;1513:7;1540:20;1554:5;1540:13;:20::i;:::-;1533:27;;1455:113;;;:::o;271:46::-;;;;;;;;;;;;;;;;;:::o;8107:186:11:-;8229:4;8252:18;:25;8271:5;8252:25;;;;;;;;;;;;;;;:35;8278:8;8252:35;;;;;;;;;;;;;;;;;;;;;;;;;8245:42;;8107:186;;;;:::o;2081:198:0:-;1094:13;:11;:13::i;:::-;2189:1:::1;2169:22;;:8;:22;;;;2161:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;2244:28;2263:8;2244:18;:28::i;:::-;2081:198:::0;:::o;2026:105:12:-;1094:13:0;:11;:13::i;:::-;2097:26:12::1;2107:10;2119:3;2097:9;:26::i;:::-;2026:105:::0;:::o;466:25::-;;;;:::o;362:35::-;;;;:::o;829:155:9:-;914:4;952:25;937:40;;;:11;:40;;;;930:47;;829:155;;;:::o;9327:105:11:-;9384:4;9414:12;;9404:7;:22;9397:29;;9327:105;;;:::o;640:96:7:-;693:7;719:10;712:17;;640:96;:::o;13014:172:11:-;13138:2;13111:15;:24;13127:7;13111:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;13172:7;13168:2;13152:28;;13161:5;13152:28;;;;;;;;;;;;13014:172;;;:::o;11379:1529::-;11476:35;11514:20;11526:7;11514:11;:20::i;:::-;11476:58;;11543:22;11585:13;:18;;;11569:34;;:12;:10;:12::i;:::-;:34;;;:81;;;;11638:12;:10;:12::i;:::-;11614:36;;:20;11626:7;11614:11;:20::i;:::-;:36;;;11569:81;:142;;;;11661:50;11678:13;:18;;;11698:12;:10;:12::i;:::-;11661:16;:50::i;:::-;11569:142;11543:169;;11737:17;11721:101;;;;;;;;;;;;:::i;:::-;;;;;;;;;11869:4;11847:26;;:13;:18;;;:26;;;11831:98;;;;;;;;;;;;:::i;:::-;;;;;;;;;11958:1;11944:16;;:2;:16;;;;11936:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;12011:43;12033:4;12039:2;12043:7;12052:1;12011:21;:43::i;:::-;12111:49;12128:1;12132:7;12141:13;:18;;;12111:8;:49::i;:::-;12199:1;12169:12;:18;12182:4;12169:18;;;;;;;;;;;;;;;:26;;;:31;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;12235:1;12207:12;:16;12220:2;12207:16;;;;;;;;;;;;;;;:24;;;:29;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;12266:43;;;;;;;;12281:2;12266:43;;;;;;12292:15;12266:43;;;;;12243:11;:20;12255:7;12243:20;;;;;;;;;;;:66;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12537:19;12569:1;12559:7;:11;;;;:::i;:::-;12537:33;;12622:1;12581:43;;:11;:24;12593:11;12581:24;;;;;;;;;;;:29;;;;;;;;;;;;:43;;;12577:236;;;12639:20;12647:11;12639:7;:20::i;:::-;12635:171;;;12699:97;;;;;;;;12726:13;:18;;;12699:97;;;;;;12757:13;:28;;;12699:97;;;;;12672:11;:24;12684:11;12672:24;;;;;;;;;;;:124;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12635:171;12577:236;12845:7;12841:2;12826:27;;12835:4;12826:27;;;;;;;;;;;;12860:42;12881:4;12887:2;12891:7;12900:1;12860:20;:42::i;:::-;11469:1439;;;11379:1529;;;:::o;1359:130:0:-;1433:12;:10;:12::i;:::-;1422:23;;:7;:5;:7::i;:::-;:23;;;1414:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;1359:130::o;5140:606:11:-;5216:21;;:::i;:::-;5257:16;5265:7;5257;:16::i;:::-;5249:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;5329:26;5377:12;5366:7;:23;5362:93;;5446:1;5431:12;5421:7;:22;;;;:::i;:::-;:26;;;;:::i;:::-;5400:47;;5362:93;5468:12;5483:7;5468:22;;5463:212;5500:18;5492:4;:26;5463:212;;5537:31;5571:11;:17;5583:4;5571:17;;;;;;;;;;;5537:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5627:1;5601:28;;:9;:14;;;:28;;;5597:71;;5649:9;5642:16;;;;;;;5597:71;5528:147;5520:6;;;;;:::i;:::-;;;;5463:212;;;;5683:57;;;;;;;;;;:::i;:::-;;;;;;;;5140:606;;;;:::o;9438:98::-;9503:27;9513:2;9517:8;9503:27;;;;;;;;;;;;:9;:27::i;:::-;9438:98;;:::o;2433:187:0:-;2506:16;2525:6;;;;;;;;;;;2506:25;;2550:8;2541:6;;:17;;;;;;;;;;;;;;;;;;2604:8;2573:40;;2594:8;2573:40;;;;;;;;;;;;2496:124;2433:187;:::o;900:547:12:-;985:8;;960:10;:22;971:10;960:22;;;;;;;;;;;;;;;;:33;957:483;;;1029:8;;1023:3;:14;1020:33;;;1045:8;;1039:14;;1020:33;1107:9;;1095:8;;1089:3;:14;;;;:::i;:::-;1088:28;;;;:::i;:::-;1075:9;:41;;1067:78;;;;;;;;;;;;:::i;:::-;;;;;;;;;1186:3;1160:10;:22;1171:10;1160:22;;;;;;;;;;;;;;;;:29;;;;;;;:::i;:::-;;;;;;;;1203:26;1213:10;1225:3;1203:9;:26::i;:::-;957:483;;;1306:9;;1300:3;:15;;;;:::i;:::-;1287:9;:28;;1279:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;1385:3;1359:10;:22;1370:10;1359:22;;;;;;;;;;;;;;;;:29;;;;;;;:::i;:::-;;;;;;;;1402:26;1412:10;1424:3;1402:9;:26::i;:::-;957:483;900:547;:::o;14729:690:11:-;14866:4;14883:15;:2;:13;;;:15::i;:::-;14879:535;;;14938:2;14922:36;;;14959:12;:10;:12::i;:::-;14973:4;14979:7;14988:5;14922:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;14909:464;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15170:1;15153:6;:13;:18;15149:215;;;15186:61;;;;;;;;;;:::i;:::-;;;;;;;;15149:215;15332:6;15326:13;15317:6;15313:2;15309:15;15302:38;14909:464;15054:45;;;15044:55;;;:6;:55;;;;15037:62;;;;;14879:535;15402:4;15395:11;;14729:690;;;;;;;:::o;1576:108:12:-;1636:13;1669:7;1662:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1576:108;:::o;392:703:8:-;448:13;674:1;665:5;:10;661:51;;;691:10;;;;;;;;;;;;;;;;;;;;;661:51;721:12;736:5;721:20;;751:14;775:75;790:1;782:4;:9;775:75;;807:8;;;;;:::i;:::-;;;;837:2;829:10;;;;;:::i;:::-;;;775:75;;;859:19;891:6;881:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;859:39;;908:150;924:1;915:5;:10;908:150;;951:1;941:11;;;;;:::i;:::-;;;1017:2;1009:5;:10;;;;:::i;:::-;996:2;:24;;;;:::i;:::-;983:39;;966:6;973;966:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;1045:2;1036:11;;;;;:::i;:::-;;;908:150;;;1081:6;1067:21;;;;;392:703;;;;:::o;4894:240:11:-;4955:7;5004:1;4987:19;;:5;:19;;;;4971:102;;;;;;;;;;;;:::i;:::-;;;;;;;;;5095:12;:19;5108:5;5095:19;;;;;;;;;;;;;;;:32;;;;;;;;;;;;5087:41;;5080:48;;4894:240;;;:::o;15881:141::-;;;;;:::o;16408:140::-;;;;;:::o;9875:1272::-;9980:20;10003:12;;9980:35;;10044:1;10030:16;;:2;:16;;;;10022:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;10221:21;10229:12;10221:7;:21::i;:::-;10220:22;10212:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;10303:12;10291:8;:24;;10283:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;10363:61;10393:1;10397:2;10401:12;10415:8;10363:21;:61::i;:::-;10433:30;10466:12;:16;10479:2;10466:16;;;;;;;;;;;;;;;10433:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10508:119;;;;;;;;10558:8;10528:11;:19;;;:39;;;;:::i;:::-;10508:119;;;;;;10611:8;10576:11;:24;;;:44;;;;:::i;:::-;10508:119;;;;;10489:12;:16;10502:2;10489:16;;;;;;;;;;;;;;;:138;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10662:43;;;;;;;;10677:2;10662:43;;;;;;10688:15;10662:43;;;;;10634:11;:25;10646:12;10634:25;;;;;;;;;;;:71;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10714:20;10737:12;10714:35;;10763:9;10758:281;10782:8;10778:1;:12;10758:281;;;10836:12;10832:2;10811:38;;10828:1;10811:38;;;;;;;;;;;;10876:59;10907:1;10911:2;10915:12;10929:5;10876:22;:59::i;:::-;10858:150;;;;;;;;;;;;:::i;:::-;;;;;;;;;11017:14;;;;;:::i;:::-;;;;10792:3;;;;;:::i;:::-;;;;10758:281;;;;11062:12;11047;:27;;;;11081:60;11110:1;11114:2;11118:12;11132:8;11081:20;:60::i;:::-;9973:1174;;;9875:1272;;;:::o;1175:320:6:-;1235:4;1487:1;1465:7;:19;;;:23;1458:30;;1175:320;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:410:13:-;84:5;109:65;125:48;166:6;125:48;:::i;:::-;109:65;:::i;:::-;100:74;;197:6;190:5;183:21;235:4;228:5;224:16;273:3;264:6;259:3;255:16;252:25;249:112;;;280:79;;:::i;:::-;249:112;370:41;404:6;399:3;394;370:41;:::i;:::-;90:327;7:410;;;;;:::o;423:139::-;469:5;507:6;494:20;485:29;;523:33;550:5;523:33;:::i;:::-;423:139;;;;:::o;585:568::-;658:8;668:6;718:3;711:4;703:6;699:17;695:27;685:122;;726:79;;:::i;:::-;685:122;839:6;826:20;816:30;;869:18;861:6;858:30;855:117;;;891:79;;:::i;:::-;855:117;1005:4;997:6;993:17;981:29;;1059:3;1051:4;1043:6;1039:17;1029:8;1025:32;1022:41;1019:128;;;1066:79;;:::i;:::-;1019:128;585:568;;;;;:::o;1159:133::-;1202:5;1240:6;1227:20;1218:29;;1256:30;1280:5;1256:30;:::i;:::-;1159:133;;;;:::o;1298:137::-;1343:5;1381:6;1368:20;1359:29;;1397:32;1423:5;1397:32;:::i;:::-;1298:137;;;;:::o;1441:141::-;1497:5;1528:6;1522:13;1513:22;;1544:32;1570:5;1544:32;:::i;:::-;1441:141;;;;:::o;1601:338::-;1656:5;1705:3;1698:4;1690:6;1686:17;1682:27;1672:122;;1713:79;;:::i;:::-;1672:122;1830:6;1817:20;1855:78;1929:3;1921:6;1914:4;1906:6;1902:17;1855:78;:::i;:::-;1846:87;;1662:277;1601:338;;;;:::o;1959:553::-;2017:8;2027:6;2077:3;2070:4;2062:6;2058:17;2054:27;2044:122;;2085:79;;:::i;:::-;2044:122;2198:6;2185:20;2175:30;;2228:18;2220:6;2217:30;2214:117;;;2250:79;;:::i;:::-;2214:117;2364:4;2356:6;2352:17;2340:29;;2418:3;2410:4;2402:6;2398:17;2388:8;2384:32;2381:41;2378:128;;;2425:79;;:::i;:::-;2378:128;1959:553;;;;;:::o;2518:139::-;2564:5;2602:6;2589:20;2580:29;;2618:33;2645:5;2618:33;:::i;:::-;2518:139;;;;:::o;2663:329::-;2722:6;2771:2;2759:9;2750:7;2746:23;2742:32;2739:119;;;2777:79;;:::i;:::-;2739:119;2897:1;2922:53;2967:7;2958:6;2947:9;2943:22;2922:53;:::i;:::-;2912:63;;2868:117;2663:329;;;;:::o;2998:474::-;3066:6;3074;3123:2;3111:9;3102:7;3098:23;3094:32;3091:119;;;3129:79;;:::i;:::-;3091:119;3249:1;3274:53;3319:7;3310:6;3299:9;3295:22;3274:53;:::i;:::-;3264:63;;3220:117;3376:2;3402:53;3447:7;3438:6;3427:9;3423:22;3402:53;:::i;:::-;3392:63;;3347:118;2998:474;;;;;:::o;3478:619::-;3555:6;3563;3571;3620:2;3608:9;3599:7;3595:23;3591:32;3588:119;;;3626:79;;:::i;:::-;3588:119;3746:1;3771:53;3816:7;3807:6;3796:9;3792:22;3771:53;:::i;:::-;3761:63;;3717:117;3873:2;3899:53;3944:7;3935:6;3924:9;3920:22;3899:53;:::i;:::-;3889:63;;3844:118;4001:2;4027:53;4072:7;4063:6;4052:9;4048:22;4027:53;:::i;:::-;4017:63;;3972:118;3478:619;;;;;:::o;4103:943::-;4198:6;4206;4214;4222;4271:3;4259:9;4250:7;4246:23;4242:33;4239:120;;;4278:79;;:::i;:::-;4239:120;4398:1;4423:53;4468:7;4459:6;4448:9;4444:22;4423:53;:::i;:::-;4413:63;;4369:117;4525:2;4551:53;4596:7;4587:6;4576:9;4572:22;4551:53;:::i;:::-;4541:63;;4496:118;4653:2;4679:53;4724:7;4715:6;4704:9;4700:22;4679:53;:::i;:::-;4669:63;;4624:118;4809:2;4798:9;4794:18;4781:32;4840:18;4832:6;4829:30;4826:117;;;4862:79;;:::i;:::-;4826:117;4967:62;5021:7;5012:6;5001:9;4997:22;4967:62;:::i;:::-;4957:72;;4752:287;4103:943;;;;;;;:::o;5052:468::-;5117:6;5125;5174:2;5162:9;5153:7;5149:23;5145:32;5142:119;;;5180:79;;:::i;:::-;5142:119;5300:1;5325:53;5370:7;5361:6;5350:9;5346:22;5325:53;:::i;:::-;5315:63;;5271:117;5427:2;5453:50;5495:7;5486:6;5475:9;5471:22;5453:50;:::i;:::-;5443:60;;5398:115;5052:468;;;;;:::o;5526:474::-;5594:6;5602;5651:2;5639:9;5630:7;5626:23;5622:32;5619:119;;;5657:79;;:::i;:::-;5619:119;5777:1;5802:53;5847:7;5838:6;5827:9;5823:22;5802:53;:::i;:::-;5792:63;;5748:117;5904:2;5930:53;5975:7;5966:6;5955:9;5951:22;5930:53;:::i;:::-;5920:63;;5875:118;5526:474;;;;;:::o;6006:704::-;6101:6;6109;6117;6166:2;6154:9;6145:7;6141:23;6137:32;6134:119;;;6172:79;;:::i;:::-;6134:119;6320:1;6309:9;6305:17;6292:31;6350:18;6342:6;6339:30;6336:117;;;6372:79;;:::i;:::-;6336:117;6485:80;6557:7;6548:6;6537:9;6533:22;6485:80;:::i;:::-;6467:98;;;;6263:312;6614:2;6640:53;6685:7;6676:6;6665:9;6661:22;6640:53;:::i;:::-;6630:63;;6585:118;6006:704;;;;;:::o;6716:327::-;6774:6;6823:2;6811:9;6802:7;6798:23;6794:32;6791:119;;;6829:79;;:::i;:::-;6791:119;6949:1;6974:52;7018:7;7009:6;6998:9;6994:22;6974:52;:::i;:::-;6964:62;;6920:116;6716:327;;;;:::o;7049:349::-;7118:6;7167:2;7155:9;7146:7;7142:23;7138:32;7135:119;;;7173:79;;:::i;:::-;7135:119;7293:1;7318:63;7373:7;7364:6;7353:9;7349:22;7318:63;:::i;:::-;7308:73;;7264:127;7049:349;;;;:::o;7404:529::-;7475:6;7483;7532:2;7520:9;7511:7;7507:23;7503:32;7500:119;;;7538:79;;:::i;:::-;7500:119;7686:1;7675:9;7671:17;7658:31;7716:18;7708:6;7705:30;7702:117;;;7738:79;;:::i;:::-;7702:117;7851:65;7908:7;7899:6;7888:9;7884:22;7851:65;:::i;:::-;7833:83;;;;7629:297;7404:529;;;;;:::o;7939:329::-;7998:6;8047:2;8035:9;8026:7;8022:23;8018:32;8015:119;;;8053:79;;:::i;:::-;8015:119;8173:1;8198:53;8243:7;8234:6;8223:9;8219:22;8198:53;:::i;:::-;8188:63;;8144:117;7939:329;;;;:::o;8274:118::-;8361:24;8379:5;8361:24;:::i;:::-;8356:3;8349:37;8274:118;;:::o;8398:109::-;8479:21;8494:5;8479:21;:::i;:::-;8474:3;8467:34;8398:109;;:::o;8513:360::-;8599:3;8627:38;8659:5;8627:38;:::i;:::-;8681:70;8744:6;8739:3;8681:70;:::i;:::-;8674:77;;8760:52;8805:6;8800:3;8793:4;8786:5;8782:16;8760:52;:::i;:::-;8837:29;8859:6;8837:29;:::i;:::-;8832:3;8828:39;8821:46;;8603:270;8513:360;;;;:::o;8879:364::-;8967:3;8995:39;9028:5;8995:39;:::i;:::-;9050:71;9114:6;9109:3;9050:71;:::i;:::-;9043:78;;9130:52;9175:6;9170:3;9163:4;9156:5;9152:16;9130:52;:::i;:::-;9207:29;9229:6;9207:29;:::i;:::-;9202:3;9198:39;9191:46;;8971:272;8879:364;;;;:::o;9249:377::-;9355:3;9383:39;9416:5;9383:39;:::i;:::-;9438:89;9520:6;9515:3;9438:89;:::i;:::-;9431:96;;9536:52;9581:6;9576:3;9569:4;9562:5;9558:16;9536:52;:::i;:::-;9613:6;9608:3;9604:16;9597:23;;9359:267;9249:377;;;;:::o;9632:366::-;9774:3;9795:67;9859:2;9854:3;9795:67;:::i;:::-;9788:74;;9871:93;9960:3;9871:93;:::i;:::-;9989:2;9984:3;9980:12;9973:19;;9632:366;;;:::o;10004:::-;10146:3;10167:67;10231:2;10226:3;10167:67;:::i;:::-;10160:74;;10243:93;10332:3;10243:93;:::i;:::-;10361:2;10356:3;10352:12;10345:19;;10004:366;;;:::o;10376:::-;10518:3;10539:67;10603:2;10598:3;10539:67;:::i;:::-;10532:74;;10615:93;10704:3;10615:93;:::i;:::-;10733:2;10728:3;10724:12;10717:19;;10376:366;;;:::o;10748:::-;10890:3;10911:67;10975:2;10970:3;10911:67;:::i;:::-;10904:74;;10987:93;11076:3;10987:93;:::i;:::-;11105:2;11100:3;11096:12;11089:19;;10748:366;;;:::o;11120:::-;11262:3;11283:67;11347:2;11342:3;11283:67;:::i;:::-;11276:74;;11359:93;11448:3;11359:93;:::i;:::-;11477:2;11472:3;11468:12;11461:19;;11120:366;;;:::o;11492:::-;11634:3;11655:67;11719:2;11714:3;11655:67;:::i;:::-;11648:74;;11731:93;11820:3;11731:93;:::i;:::-;11849:2;11844:3;11840:12;11833:19;;11492:366;;;:::o;11864:::-;12006:3;12027:67;12091:2;12086:3;12027:67;:::i;:::-;12020:74;;12103:93;12192:3;12103:93;:::i;:::-;12221:2;12216:3;12212:12;12205:19;;11864:366;;;:::o;12236:::-;12378:3;12399:67;12463:2;12458:3;12399:67;:::i;:::-;12392:74;;12475:93;12564:3;12475:93;:::i;:::-;12593:2;12588:3;12584:12;12577:19;;12236:366;;;:::o;12608:::-;12750:3;12771:67;12835:2;12830:3;12771:67;:::i;:::-;12764:74;;12847:93;12936:3;12847:93;:::i;:::-;12965:2;12960:3;12956:12;12949:19;;12608:366;;;:::o;12980:::-;13122:3;13143:67;13207:2;13202:3;13143:67;:::i;:::-;13136:74;;13219:93;13308:3;13219:93;:::i;:::-;13337:2;13332:3;13328:12;13321:19;;12980:366;;;:::o;13352:::-;13494:3;13515:67;13579:2;13574:3;13515:67;:::i;:::-;13508:74;;13591:93;13680:3;13591:93;:::i;:::-;13709:2;13704:3;13700:12;13693:19;;13352:366;;;:::o;13724:::-;13866:3;13887:67;13951:2;13946:3;13887:67;:::i;:::-;13880:74;;13963:93;14052:3;13963:93;:::i;:::-;14081:2;14076:3;14072:12;14065:19;;13724:366;;;:::o;14096:::-;14238:3;14259:67;14323:2;14318:3;14259:67;:::i;:::-;14252:74;;14335:93;14424:3;14335:93;:::i;:::-;14453:2;14448:3;14444:12;14437:19;;14096:366;;;:::o;14468:::-;14610:3;14631:67;14695:2;14690:3;14631:67;:::i;:::-;14624:74;;14707:93;14796:3;14707:93;:::i;:::-;14825:2;14820:3;14816:12;14809:19;;14468:366;;;:::o;14840:::-;14982:3;15003:67;15067:2;15062:3;15003:67;:::i;:::-;14996:74;;15079:93;15168:3;15079:93;:::i;:::-;15197:2;15192:3;15188:12;15181:19;;14840:366;;;:::o;15212:::-;15354:3;15375:67;15439:2;15434:3;15375:67;:::i;:::-;15368:74;;15451:93;15540:3;15451:93;:::i;:::-;15569:2;15564:3;15560:12;15553:19;;15212:366;;;:::o;15584:::-;15726:3;15747:67;15811:2;15806:3;15747:67;:::i;:::-;15740:74;;15823:93;15912:3;15823:93;:::i;:::-;15941:2;15936:3;15932:12;15925:19;;15584:366;;;:::o;15956:::-;16098:3;16119:67;16183:2;16178:3;16119:67;:::i;:::-;16112:74;;16195:93;16284:3;16195:93;:::i;:::-;16313:2;16308:3;16304:12;16297:19;;15956:366;;;:::o;16328:::-;16470:3;16491:67;16555:2;16550:3;16491:67;:::i;:::-;16484:74;;16567:93;16656:3;16567:93;:::i;:::-;16685:2;16680:3;16676:12;16669:19;;16328:366;;;:::o;16700:::-;16842:3;16863:67;16927:2;16922:3;16863:67;:::i;:::-;16856:74;;16939:93;17028:3;16939:93;:::i;:::-;17057:2;17052:3;17048:12;17041:19;;16700:366;;;:::o;17072:::-;17214:3;17235:67;17299:2;17294:3;17235:67;:::i;:::-;17228:74;;17311:93;17400:3;17311:93;:::i;:::-;17429:2;17424:3;17420:12;17413:19;;17072:366;;;:::o;17444:::-;17586:3;17607:67;17671:2;17666:3;17607:67;:::i;:::-;17600:74;;17683:93;17772:3;17683:93;:::i;:::-;17801:2;17796:3;17792:12;17785:19;;17444:366;;;:::o;17816:::-;17958:3;17979:67;18043:2;18038:3;17979:67;:::i;:::-;17972:74;;18055:93;18144:3;18055:93;:::i;:::-;18173:2;18168:3;18164:12;18157:19;;17816:366;;;:::o;18188:::-;18330:3;18351:67;18415:2;18410:3;18351:67;:::i;:::-;18344:74;;18427:93;18516:3;18427:93;:::i;:::-;18545:2;18540:3;18536:12;18529:19;;18188:366;;;:::o;18560:::-;18702:3;18723:67;18787:2;18782:3;18723:67;:::i;:::-;18716:74;;18799:93;18888:3;18799:93;:::i;:::-;18917:2;18912:3;18908:12;18901:19;;18560:366;;;:::o;18932:118::-;19019:24;19037:5;19019:24;:::i;:::-;19014:3;19007:37;18932:118;;:::o;19056:435::-;19236:3;19258:95;19349:3;19340:6;19258:95;:::i;:::-;19251:102;;19370:95;19461:3;19452:6;19370:95;:::i;:::-;19363:102;;19482:3;19475:10;;19056:435;;;;;:::o;19497:222::-;19590:4;19628:2;19617:9;19613:18;19605:26;;19641:71;19709:1;19698:9;19694:17;19685:6;19641:71;:::i;:::-;19497:222;;;;:::o;19725:640::-;19920:4;19958:3;19947:9;19943:19;19935:27;;19972:71;20040:1;20029:9;20025:17;20016:6;19972:71;:::i;:::-;20053:72;20121:2;20110:9;20106:18;20097:6;20053:72;:::i;:::-;20135;20203:2;20192:9;20188:18;20179:6;20135:72;:::i;:::-;20254:9;20248:4;20244:20;20239:2;20228:9;20224:18;20217:48;20282:76;20353:4;20344:6;20282:76;:::i;:::-;20274:84;;19725:640;;;;;;;:::o;20371:210::-;20458:4;20496:2;20485:9;20481:18;20473:26;;20509:65;20571:1;20560:9;20556:17;20547:6;20509:65;:::i;:::-;20371:210;;;;:::o;20587:313::-;20700:4;20738:2;20727:9;20723:18;20715:26;;20787:9;20781:4;20777:20;20773:1;20762:9;20758:17;20751:47;20815:78;20888:4;20879:6;20815:78;:::i;:::-;20807:86;;20587:313;;;;:::o;20906:419::-;21072:4;21110:2;21099:9;21095:18;21087:26;;21159:9;21153:4;21149:20;21145:1;21134:9;21130:17;21123:47;21187:131;21313:4;21187:131;:::i;:::-;21179:139;;20906:419;;;:::o;21331:::-;21497:4;21535:2;21524:9;21520:18;21512:26;;21584:9;21578:4;21574:20;21570:1;21559:9;21555:17;21548:47;21612:131;21738:4;21612:131;:::i;:::-;21604:139;;21331:419;;;:::o;21756:::-;21922:4;21960:2;21949:9;21945:18;21937:26;;22009:9;22003:4;21999:20;21995:1;21984:9;21980:17;21973:47;22037:131;22163:4;22037:131;:::i;:::-;22029:139;;21756:419;;;:::o;22181:::-;22347:4;22385:2;22374:9;22370:18;22362:26;;22434:9;22428:4;22424:20;22420:1;22409:9;22405:17;22398:47;22462:131;22588:4;22462:131;:::i;:::-;22454:139;;22181:419;;;:::o;22606:::-;22772:4;22810:2;22799:9;22795:18;22787:26;;22859:9;22853:4;22849:20;22845:1;22834:9;22830:17;22823:47;22887:131;23013:4;22887:131;:::i;:::-;22879:139;;22606:419;;;:::o;23031:::-;23197:4;23235:2;23224:9;23220:18;23212:26;;23284:9;23278:4;23274:20;23270:1;23259:9;23255:17;23248:47;23312:131;23438:4;23312:131;:::i;:::-;23304:139;;23031:419;;;:::o;23456:::-;23622:4;23660:2;23649:9;23645:18;23637:26;;23709:9;23703:4;23699:20;23695:1;23684:9;23680:17;23673:47;23737:131;23863:4;23737:131;:::i;:::-;23729:139;;23456:419;;;:::o;23881:::-;24047:4;24085:2;24074:9;24070:18;24062:26;;24134:9;24128:4;24124:20;24120:1;24109:9;24105:17;24098:47;24162:131;24288:4;24162:131;:::i;:::-;24154:139;;23881:419;;;:::o;24306:::-;24472:4;24510:2;24499:9;24495:18;24487:26;;24559:9;24553:4;24549:20;24545:1;24534:9;24530:17;24523:47;24587:131;24713:4;24587:131;:::i;:::-;24579:139;;24306:419;;;:::o;24731:::-;24897:4;24935:2;24924:9;24920:18;24912:26;;24984:9;24978:4;24974:20;24970:1;24959:9;24955:17;24948:47;25012:131;25138:4;25012:131;:::i;:::-;25004:139;;24731:419;;;:::o;25156:::-;25322:4;25360:2;25349:9;25345:18;25337:26;;25409:9;25403:4;25399:20;25395:1;25384:9;25380:17;25373:47;25437:131;25563:4;25437:131;:::i;:::-;25429:139;;25156:419;;;:::o;25581:::-;25747:4;25785:2;25774:9;25770:18;25762:26;;25834:9;25828:4;25824:20;25820:1;25809:9;25805:17;25798:47;25862:131;25988:4;25862:131;:::i;:::-;25854:139;;25581:419;;;:::o;26006:::-;26172:4;26210:2;26199:9;26195:18;26187:26;;26259:9;26253:4;26249:20;26245:1;26234:9;26230:17;26223:47;26287:131;26413:4;26287:131;:::i;:::-;26279:139;;26006:419;;;:::o;26431:::-;26597:4;26635:2;26624:9;26620:18;26612:26;;26684:9;26678:4;26674:20;26670:1;26659:9;26655:17;26648:47;26712:131;26838:4;26712:131;:::i;:::-;26704:139;;26431:419;;;:::o;26856:::-;27022:4;27060:2;27049:9;27045:18;27037:26;;27109:9;27103:4;27099:20;27095:1;27084:9;27080:17;27073:47;27137:131;27263:4;27137:131;:::i;:::-;27129:139;;26856:419;;;:::o;27281:::-;27447:4;27485:2;27474:9;27470:18;27462:26;;27534:9;27528:4;27524:20;27520:1;27509:9;27505:17;27498:47;27562:131;27688:4;27562:131;:::i;:::-;27554:139;;27281:419;;;:::o;27706:::-;27872:4;27910:2;27899:9;27895:18;27887:26;;27959:9;27953:4;27949:20;27945:1;27934:9;27930:17;27923:47;27987:131;28113:4;27987:131;:::i;:::-;27979:139;;27706:419;;;:::o;28131:::-;28297:4;28335:2;28324:9;28320:18;28312:26;;28384:9;28378:4;28374:20;28370:1;28359:9;28355:17;28348:47;28412:131;28538:4;28412:131;:::i;:::-;28404:139;;28131:419;;;:::o;28556:::-;28722:4;28760:2;28749:9;28745:18;28737:26;;28809:9;28803:4;28799:20;28795:1;28784:9;28780:17;28773:47;28837:131;28963:4;28837:131;:::i;:::-;28829:139;;28556:419;;;:::o;28981:::-;29147:4;29185:2;29174:9;29170:18;29162:26;;29234:9;29228:4;29224:20;29220:1;29209:9;29205:17;29198:47;29262:131;29388:4;29262:131;:::i;:::-;29254:139;;28981:419;;;:::o;29406:::-;29572:4;29610:2;29599:9;29595:18;29587:26;;29659:9;29653:4;29649:20;29645:1;29634:9;29630:17;29623:47;29687:131;29813:4;29687:131;:::i;:::-;29679:139;;29406:419;;;:::o;29831:::-;29997:4;30035:2;30024:9;30020:18;30012:26;;30084:9;30078:4;30074:20;30070:1;30059:9;30055:17;30048:47;30112:131;30238:4;30112:131;:::i;:::-;30104:139;;29831:419;;;:::o;30256:::-;30422:4;30460:2;30449:9;30445:18;30437:26;;30509:9;30503:4;30499:20;30495:1;30484:9;30480:17;30473:47;30537:131;30663:4;30537:131;:::i;:::-;30529:139;;30256:419;;;:::o;30681:::-;30847:4;30885:2;30874:9;30870:18;30862:26;;30934:9;30928:4;30924:20;30920:1;30909:9;30905:17;30898:47;30962:131;31088:4;30962:131;:::i;:::-;30954:139;;30681:419;;;:::o;31106:::-;31272:4;31310:2;31299:9;31295:18;31287:26;;31359:9;31353:4;31349:20;31345:1;31334:9;31330:17;31323:47;31387:131;31513:4;31387:131;:::i;:::-;31379:139;;31106:419;;;:::o;31531:222::-;31624:4;31662:2;31651:9;31647:18;31639:26;;31675:71;31743:1;31732:9;31728:17;31719:6;31675:71;:::i;:::-;31531:222;;;;:::o;31759:129::-;31793:6;31820:20;;:::i;:::-;31810:30;;31849:33;31877:4;31869:6;31849:33;:::i;:::-;31759:129;;;:::o;31894:75::-;31927:6;31960:2;31954:9;31944:19;;31894:75;:::o;31975:307::-;32036:4;32126:18;32118:6;32115:30;32112:56;;;32148:18;;:::i;:::-;32112:56;32186:29;32208:6;32186:29;:::i;:::-;32178:37;;32270:4;32264;32260:15;32252:23;;31975:307;;;:::o;32288:98::-;32339:6;32373:5;32367:12;32357:22;;32288:98;;;:::o;32392:99::-;32444:6;32478:5;32472:12;32462:22;;32392:99;;;:::o;32497:168::-;32580:11;32614:6;32609:3;32602:19;32654:4;32649:3;32645:14;32630:29;;32497:168;;;;:::o;32671:169::-;32755:11;32789:6;32784:3;32777:19;32829:4;32824:3;32820:14;32805:29;;32671:169;;;;:::o;32846:148::-;32948:11;32985:3;32970:18;;32846:148;;;;:::o;33000:273::-;33040:3;33059:20;33077:1;33059:20;:::i;:::-;33054:25;;33093:20;33111:1;33093:20;:::i;:::-;33088:25;;33215:1;33179:34;33175:42;33172:1;33169:49;33166:75;;;33221:18;;:::i;:::-;33166:75;33265:1;33262;33258:9;33251:16;;33000:273;;;;:::o;33279:305::-;33319:3;33338:20;33356:1;33338:20;:::i;:::-;33333:25;;33372:20;33390:1;33372:20;:::i;:::-;33367:25;;33526:1;33458:66;33454:74;33451:1;33448:81;33445:107;;;33532:18;;:::i;:::-;33445:107;33576:1;33573;33569:9;33562:16;;33279:305;;;;:::o;33590:185::-;33630:1;33647:20;33665:1;33647:20;:::i;:::-;33642:25;;33681:20;33699:1;33681:20;:::i;:::-;33676:25;;33720:1;33710:35;;33725:18;;:::i;:::-;33710:35;33767:1;33764;33760:9;33755:14;;33590:185;;;;:::o;33781:348::-;33821:7;33844:20;33862:1;33844:20;:::i;:::-;33839:25;;33878:20;33896:1;33878:20;:::i;:::-;33873:25;;34066:1;33998:66;33994:74;33991:1;33988:81;33983:1;33976:9;33969:17;33965:105;33962:131;;;34073:18;;:::i;:::-;33962:131;34121:1;34118;34114:9;34103:20;;33781:348;;;;:::o;34135:191::-;34175:4;34195:20;34213:1;34195:20;:::i;:::-;34190:25;;34229:20;34247:1;34229:20;:::i;:::-;34224:25;;34268:1;34265;34262:8;34259:34;;;34273:18;;:::i;:::-;34259:34;34318:1;34315;34311:9;34303:17;;34135:191;;;;:::o;34332:::-;34372:4;34392:20;34410:1;34392:20;:::i;:::-;34387:25;;34426:20;34444:1;34426:20;:::i;:::-;34421:25;;34465:1;34462;34459:8;34456:34;;;34470:18;;:::i;:::-;34456:34;34515:1;34512;34508:9;34500:17;;34332:191;;;;:::o;34529:96::-;34566:7;34595:24;34613:5;34595:24;:::i;:::-;34584:35;;34529:96;;;:::o;34631:90::-;34665:7;34708:5;34701:13;34694:21;34683:32;;34631:90;;;:::o;34727:149::-;34763:7;34803:66;34796:5;34792:78;34781:89;;34727:149;;;:::o;34882:118::-;34919:7;34959:34;34952:5;34948:46;34937:57;;34882:118;;;:::o;35006:126::-;35043:7;35083:42;35076:5;35072:54;35061:65;;35006:126;;;:::o;35138:77::-;35175:7;35204:5;35193:16;;35138:77;;;:::o;35221:154::-;35305:6;35300:3;35295;35282:30;35367:1;35358:6;35353:3;35349:16;35342:27;35221:154;;;:::o;35381:307::-;35449:1;35459:113;35473:6;35470:1;35467:13;35459:113;;;35558:1;35553:3;35549:11;35543:18;35539:1;35534:3;35530:11;35523:39;35495:2;35492:1;35488:10;35483:15;;35459:113;;;35590:6;35587:1;35584:13;35581:101;;;35670:1;35661:6;35656:3;35652:16;35645:27;35581:101;35430:258;35381:307;;;:::o;35694:171::-;35733:3;35756:24;35774:5;35756:24;:::i;:::-;35747:33;;35802:4;35795:5;35792:15;35789:41;;;35810:18;;:::i;:::-;35789:41;35857:1;35850:5;35846:13;35839:20;;35694:171;;;:::o;35871:320::-;35915:6;35952:1;35946:4;35942:12;35932:22;;35999:1;35993:4;35989:12;36020:18;36010:81;;36076:4;36068:6;36064:17;36054:27;;36010:81;36138:2;36130:6;36127:14;36107:18;36104:38;36101:84;;;36157:18;;:::i;:::-;36101:84;35922:269;35871:320;;;:::o;36197:281::-;36280:27;36302:4;36280:27;:::i;:::-;36272:6;36268:40;36410:6;36398:10;36395:22;36374:18;36362:10;36359:34;36356:62;36353:88;;;36421:18;;:::i;:::-;36353:88;36461:10;36457:2;36450:22;36240:238;36197:281;;:::o;36484:233::-;36523:3;36546:24;36564:5;36546:24;:::i;:::-;36537:33;;36592:66;36585:5;36582:77;36579:103;;;36662:18;;:::i;:::-;36579:103;36709:1;36702:5;36698:13;36691:20;;36484:233;;;:::o;36723:176::-;36755:1;36772:20;36790:1;36772:20;:::i;:::-;36767:25;;36806:20;36824:1;36806:20;:::i;:::-;36801:25;;36845:1;36835:35;;36850:18;;:::i;:::-;36835:35;36891:1;36888;36884:9;36879:14;;36723:176;;;;:::o;36905:180::-;36953:77;36950:1;36943:88;37050:4;37047:1;37040:15;37074:4;37071:1;37064:15;37091:180;37139:77;37136:1;37129:88;37236:4;37233:1;37226:15;37260:4;37257:1;37250:15;37277:180;37325:77;37322:1;37315:88;37422:4;37419:1;37412:15;37446:4;37443:1;37436:15;37463:180;37511:77;37508:1;37501:88;37608:4;37605:1;37598:15;37632:4;37629:1;37622:15;37649:180;37697:77;37694:1;37687:88;37794:4;37791:1;37784:15;37818:4;37815:1;37808:15;37835:117;37944:1;37941;37934:12;37958:117;38067:1;38064;38057:12;38081:117;38190:1;38187;38180:12;38204:117;38313:1;38310;38303:12;38327:117;38436:1;38433;38426:12;38450:117;38559:1;38556;38549:12;38573:102;38614:6;38665:2;38661:7;38656:2;38649:5;38645:14;38641:28;38631:38;;38573:102;;;:::o;38681:221::-;38821:34;38817:1;38809:6;38805:14;38798:58;38890:4;38885:2;38877:6;38873:15;38866:29;38681:221;:::o;38908:225::-;39048:34;39044:1;39036:6;39032:14;39025:58;39117:8;39112:2;39104:6;39100:15;39093:33;38908:225;:::o;39139:229::-;39279:34;39275:1;39267:6;39263:14;39256:58;39348:12;39343:2;39335:6;39331:15;39324:37;39139:229;:::o;39374:167::-;39514:19;39510:1;39502:6;39498:14;39491:43;39374:167;:::o;39547:222::-;39687:34;39683:1;39675:6;39671:14;39664:58;39756:5;39751:2;39743:6;39739:15;39732:30;39547:222;:::o;39775:224::-;39915:34;39911:1;39903:6;39899:14;39892:58;39984:7;39979:2;39971:6;39967:15;39960:32;39775:224;:::o;40005:181::-;40145:33;40141:1;40133:6;40129:14;40122:57;40005:181;:::o;40192:236::-;40332:34;40328:1;40320:6;40316:14;40309:58;40401:19;40396:2;40388:6;40384:15;40377:44;40192:236;:::o;40434:244::-;40574:34;40570:1;40562:6;40558:14;40551:58;40643:27;40638:2;40630:6;40626:15;40619:52;40434:244;:::o;40684:230::-;40824:34;40820:1;40812:6;40808:14;40801:58;40893:13;40888:2;40880:6;40876:15;40869:38;40684:230;:::o;40920:225::-;41060:34;41056:1;41048:6;41044:14;41037:58;41129:8;41124:2;41116:6;41112:15;41105:33;40920:225;:::o;41151:182::-;41291:34;41287:1;41279:6;41275:14;41268:58;41151:182;:::o;41339:234::-;41479:34;41475:1;41467:6;41463:14;41456:58;41548:17;41543:2;41535:6;41531:15;41524:42;41339:234;:::o;41579:176::-;41719:28;41715:1;41707:6;41703:14;41696:52;41579:176;:::o;41761:237::-;41901:34;41897:1;41889:6;41885:14;41878:58;41970:20;41965:2;41957:6;41953:15;41946:45;41761:237;:::o;42004:221::-;42144:34;42140:1;42132:6;42128:14;42121:58;42213:4;42208:2;42200:6;42196:15;42189:29;42004:221;:::o;42231:175::-;42371:27;42367:1;42359:6;42355:14;42348:51;42231:175;:::o;42412:238::-;42552:34;42548:1;42540:6;42536:14;42529:58;42621:21;42616:2;42608:6;42604:15;42597:46;42412:238;:::o;42656:179::-;42796:31;42792:1;42784:6;42780:14;42773:55;42656:179;:::o;42841:220::-;42981:34;42977:1;42969:6;42965:14;42958:58;43050:3;43045:2;43037:6;43033:15;43026:28;42841:220;:::o;43067:233::-;43207:34;43203:1;43195:6;43191:14;43184:58;43276:16;43271:2;43263:6;43259:15;43252:41;43067:233;:::o;43306:234::-;43446:34;43442:1;43434:6;43430:14;43423:58;43515:17;43510:2;43502:6;43498:15;43491:42;43306:234;:::o;43546:180::-;43686:32;43682:1;43674:6;43670:14;43663:56;43546:180;:::o;43732:232::-;43872:34;43868:1;43860:6;43856:14;43849:58;43941:15;43936:2;43928:6;43924:15;43917:40;43732:232;:::o;43970:221::-;44110:34;44106:1;44098:6;44094:14;44087:58;44179:4;44174:2;44166:6;44162:15;44155:29;43970:221;:::o;44197:122::-;44270:24;44288:5;44270:24;:::i;:::-;44263:5;44260:35;44250:63;;44309:1;44306;44299:12;44250:63;44197:122;:::o;44325:116::-;44395:21;44410:5;44395:21;:::i;:::-;44388:5;44385:32;44375:60;;44431:1;44428;44421:12;44375:60;44325:116;:::o;44447:120::-;44519:23;44536:5;44519:23;:::i;:::-;44512:5;44509:34;44499:62;;44557:1;44554;44547:12;44499:62;44447:120;:::o;44573:122::-;44646:24;44664:5;44646:24;:::i;:::-;44639:5;44636:35;44626:63;;44685:1;44682;44675:12;44626:63;44573:122;:::o

Swarm Source

ipfs://3dd0fa565fb4a061643588d1086347a302c092e3bdca2105fc26bcf8861f11c3
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.