ETH Price: $3,407.73 (-1.60%)
Gas: 8 Gwei

Token

Doobeanz (Doobeanz)
 

Overview

Max Total Supply

777 Doobeanz

Holders

354

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 Doobeanz
0x3c03f4ca78c7ccc5622a07ed7a56f5d44a3c4e6a
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:
Doobeanz

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, None license
File 1 of 14 : Doobeanz.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;

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

contract Doobeanz is ERC721A, Ownable, ReentrancyGuard {

    mapping (address => uint256) public walletPublic;
    mapping (address => uint256) public walletWhitelist;
    string public baseURI;  
    bool public mintWhitelistEnabled = false;
    bool public mintPublicEnabled = false;
    bytes32 public merkleRoot;
    uint public freeNFTWL = 1;
    uint public freeNFTPublic = 0;
    uint public maxPerTxWL = 3;  
    uint public maxPerWalletWL = 3;
    uint public maxPerTxPublic = 5;  
    uint public maxPerWalletPublic = 30;
    uint public maxSupply = 3333;
    uint public pricePublic = 6000000000000000; //0.006 ETH
    uint public priceWhitelist = 3000000000000000; //0.003 ETH

    constructor() ERC721A("Doobeanz", "Doobeanz",333,3333){}

    function whitelistMint(uint256 qty, bytes32[] calldata _merkleProof) external payable
    { 
        require(mintWhitelistEnabled, "Doobeanz: Minting Whitelist Pause");
        if(walletWhitelist[msg.sender] < freeNFTWL) 
        {
           uint restFreeMint = freeNFTWL - walletWhitelist[msg.sender];
           uint _qty = qty >= restFreeMint ? qty - restFreeMint : 0;
           require(msg.value >= priceWhitelist * _qty,"Doobeanz: Insufficient Eth Claim Free");
        }
        else
        {
           require(msg.value >= qty * priceWhitelist,"Doobeanz: Insufficient Eth Whitelist");
        }
        require(walletWhitelist[msg.sender] + qty <= maxPerWalletWL,"Doobeanz: Max Per Wallet");
        require(qty <= maxPerTxWL, "Doobeanz: Limit Per Transaction");
        bytes32 leaf = keccak256(abi.encodePacked(msg.sender));
        require(MerkleProof.verify(_merkleProof, merkleRoot, leaf), "Doobeanz: Not whitelisted");
        require(totalSupply() + qty <= maxSupply,"Doobeanz: Soldout");
        walletWhitelist[msg.sender] += qty;
        _safeMint(msg.sender, qty);
    }

    function publicMint(uint256 qty) external payable
    {
        require(mintPublicEnabled, "Doobeanz: Minting Public Pause");
        if(walletPublic[msg.sender] < freeNFTPublic) 
        {
           uint restFreeMint = freeNFTPublic - walletPublic[msg.sender];
           uint _qty = qty >= restFreeMint ? qty - restFreeMint : 0;
           require(msg.value >= pricePublic * _qty,"Doobeanz: Insufficient Eth Claim Free");
        }
        else
        {
           require(msg.value >= qty * pricePublic,"Doobeanz: Insufficient Eth Public");
        }
        require(walletPublic[msg.sender] + qty <= maxPerWalletPublic,"Doobeanz: Max Per Wallet");
        require(qty <= maxPerTxPublic, "Doobeanz: Limit Per Transaction");
        require(totalSupply() + qty <= maxSupply,"Doobeanz: Soldout");
        walletPublic[msg.sender] += qty;
        _safeMint(msg.sender, qty);
    }

    function isPublicWallet(address _address) public view returns (uint256){
        return walletPublic[_address];
    }

    function isWhitelistWallet(address _address) public view returns (uint256){
        return walletWhitelist[_address];
    }

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

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

    function setMerkleRoot(bytes32 root) public onlyOwner {
        merkleRoot = root;
    }

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

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

    function isPublicMinting() external onlyOwner {
        mintPublicEnabled = !mintPublicEnabled;
    }
    
    function isWhitelistMinting() external onlyOwner {
        mintWhitelistEnabled = !mintWhitelistEnabled;
    }

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

    function setWLPrice(uint256 price_) external onlyOwner {
        priceWhitelist = price_;
    }

    function setPublicPrice(uint256 price_) external onlyOwner {
        pricePublic = price_;
    }

    function setMaxPerTxWL(uint256 maxPerTx_) external onlyOwner {
        maxPerTxWL = maxPerTx_;
    }

    function setMaxPerWalletWL(uint256 maxPerWallet_) external onlyOwner {
        maxPerWalletWL = maxPerWallet_;
    }
    function setMaxPerTxPublic(uint256 maxPerTx_) external onlyOwner {
        maxPerTxPublic = maxPerTx_;
    }

    function setMaxPerWalletPublic(uint256 maxPerWallet_) external onlyOwner {
        maxPerWalletPublic = maxPerWallet_;
    }

    function setMaxPerFreeNFTWL(uint256 freeNFT_) external onlyOwner {
        freeNFTWL = freeNFT_;
    }

    function setMaxPerFreeNFTPublic(uint256 freeNFT_) external onlyOwner {
        freeNFTPublic = freeNFT_;
    }

    function setmaxSupply(uint256 maxSupply_) external onlyOwner {
        maxSupply = maxSupply_;
    }

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

File 2 of 14 : 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 14 : 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 14 : Ownable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (access/Ownable.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

/**
 * @dev These functions deal with verification of Merkle Tree proofs.
 *
 * The proofs can be generated using the JavaScript library
 * https://github.com/miguelmota/merkletreejs[merkletreejs].
 * Note: the hashing algorithm should be keccak256 and pair sorting should be enabled.
 *
 * See `test/utils/cryptography/MerkleProof.test.js` for some examples.
 *
 * WARNING: You should avoid using leaf values that are 64 bytes long prior to
 * hashing, or use a hash function other than keccak256 for hashing leaves.
 * This is because the concatenation of a sorted pair of internal nodes in
 * the merkle tree could be reinterpreted as a leaf value.
 */
library MerkleProof {
    /**
     * @dev Returns true if a `leaf` can be proved to be a part of a Merkle tree
     * defined by `root`. For this, a `proof` must be provided, containing
     * sibling hashes on the branch from the leaf to the root of the tree. Each
     * pair of leaves and each pair of pre-images are assumed to be sorted.
     */
    function verify(
        bytes32[] memory proof,
        bytes32 root,
        bytes32 leaf
    ) internal pure returns (bool) {
        return processProof(proof, leaf) == root;
    }

    /**
     * @dev Calldata version of {verify}
     *
     * _Available since v4.7._
     */
    function verifyCalldata(
        bytes32[] calldata proof,
        bytes32 root,
        bytes32 leaf
    ) internal pure returns (bool) {
        return processProofCalldata(proof, leaf) == root;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

import "./IERC165.sol";

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

File 7 of 14 : Strings.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (utils/Strings.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

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

File 8 of 14 : Context.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)

pragma solidity ^0.8.0;

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

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

File 9 of 14 : Address.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (utils/Address.sol)

pragma solidity ^0.8.1;

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

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

File 10 of 14 : 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 11 of 14 : 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 12 of 14 : 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 13 of 14 : 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 14 of 14 : 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":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"qty","type":"uint256"}],"name":"airdrop","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":[],"name":"freeNFTPublic","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"freeNFTWL","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":"isPublicMinting","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"}],"name":"isPublicWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isWhitelistMinting","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"}],"name":"isWhitelistWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPerTxPublic","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPerTxWL","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPerWalletPublic","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPerWalletWL","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"merkleRoot","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mintPublicEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mintWhitelistEnabled","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":"qty","type":"uint256"}],"name":"ownerMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pricePublic","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"priceWhitelist","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"qty","type":"uint256"}],"name":"publicMint","outputs":[],"stateMutability":"payable","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":"freeNFT_","type":"uint256"}],"name":"setMaxPerFreeNFTPublic","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"freeNFT_","type":"uint256"}],"name":"setMaxPerFreeNFTWL","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"maxPerTx_","type":"uint256"}],"name":"setMaxPerTxPublic","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"maxPerTx_","type":"uint256"}],"name":"setMaxPerTxWL","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"maxPerWallet_","type":"uint256"}],"name":"setMaxPerWalletPublic","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"maxPerWallet_","type":"uint256"}],"name":"setMaxPerWalletWL","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"root","type":"bytes32"}],"name":"setMerkleRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"price_","type":"uint256"}],"name":"setPublicPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"price_","type":"uint256"}],"name":"setWLPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"maxSupply_","type":"uint256"}],"name":"setmaxSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"walletPublic","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"walletWhitelist","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"qty","type":"uint256"},{"internalType":"bytes32[]","name":"_merkleProof","type":"bytes32[]"}],"name":"whitelistMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60c06040526000805560006007556000600d60006101000a81548160ff0219169083151502179055506000600d60016101000a81548160ff0219169083151502179055506001600f556000601055600360115560036012556005601355601e601455610d05601555661550f7dca70000601655660aa87bee5380006017553480156200008a57600080fd5b506040518060400160405280600881526020017f446f6f6265616e7a0000000000000000000000000000000000000000000000008152506040518060400160405280600881526020017f446f6f6265616e7a00000000000000000000000000000000000000000000000081525061014d610d056000811162000143576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200013a90620003eb565b60405180910390fd5b6000821162000189576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200018090620003c9565b60405180910390fd5b8360019080519060200190620001a1929190620002cb565b508260029080519060200190620001ba929190620002cb565b508160a08181525050806080818152505050505050620001ef620001e3620001fd60201b60201c565b6200020560201b60201c565b600160098190555062000521565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b828054620002d9906200041e565b90600052602060002090601f016020900481019282620002fd576000855562000349565b82601f106200031857805160ff191683800117855562000349565b8280016001018555821562000349579182015b82811115620003485782518255916020019190600101906200032b565b5b5090506200035891906200035c565b5090565b5b80821115620003775760008160009055506001016200035d565b5090565b60006200038a6027836200040d565b9150620003978262000483565b604082019050919050565b6000620003b1602e836200040d565b9150620003be82620004d2565b604082019050919050565b60006020820190508181036000830152620003e4816200037b565b9050919050565b600060208201905081810360008301526200040681620003a2565b9050919050565b600082825260208201905092915050565b600060028204905060018216806200043757607f821691505b602082108114156200044e576200044d62000454565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f455243373231413a206d61782062617463682073697a65206d7573742062652060008201527f6e6f6e7a65726f00000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a20636f6c6c656374696f6e206d757374206861766520612060008201527f6e6f6e7a65726f20737570706c79000000000000000000000000000000000000602082015250565b60805160a051615d2b62000552600039600081816132f10152818161331a0152613abd015260005050615d2b6000f3fe60806040526004361061036b5760003560e01c8063715018a6116101c6578063ba662ece116100f7578063d7224ba011610095578063f19e75d41161006f578063f19e75d414610c8a578063f2fde38b14610cb3578063f452472e14610cdc578063f6a5b8e614610d055761036b565b8063d7224ba014610be5578063dc33e68114610c10578063e985e9c514610c4d5761036b565b8063c6275255116100d1578063c627525514610b38578063c87b56dd14610b61578063d2cab05614610b9e578063d5abeb0114610bba5761036b565b8063ba662ece14610ab9578063bf85369014610ae4578063c1612d4114610b0f5761036b565b80639943770d11610164578063a46a18da1161013e578063a46a18da14610a23578063a6c0bd4214610a4e578063b029a51414610a65578063b88d4fde14610a905761036b565b80639943770d146109a4578063a22cb465146109cf578063a402c6d2146109f85761036b565b80638b533ea4116101a05780638b533ea4146108fc5780638ba4cc3c146109255780638da5cb5b1461094e57806395d89b41146109795761036b565b8063715018a6146108935780637ad68afa146108aa5780637cb64759146108d35761036b565b80632fff1796116102a057806355f804b31161023e57806364fc37d81161021857806364fc37d8146107c35780636c0360eb146108005780636e3fc3f61461082b57806370a08231146108565761036b565b806355f804b314610734578063597804c01461075d5780636352211e146107865761036b565b806342842e0e1161027a57806342842e0e146106685780634a81d9dd146106915780634aec7990146106ce5780634f6ccce7146106f75761036b565b80632fff1796146105e95780633027568b146106145780633ccfd60b146106515761036b565b806323b872dd1161030d5780632c673915116102e75780632c6739151461054e5780632db11544146105655780632eb4a7ab146105815780632f745c59146105ac5761036b565b806323b872dd146104bd57806325ee97e3146104e65780632be905ba146105115761036b565b8063095ea7b311610349578063095ea7b314610415578063102e766d1461043e57806318160ddd14610469578063228025e8146104945761036b565b806301ffc9a71461037057806306fdde03146103ad578063081812fc146103d8575b600080fd5b34801561037c57600080fd5b50610397600480360381019061039291906143fd565b610d2e565b6040516103a49190614ae7565b60405180910390f35b3480156103b957600080fd5b506103c2610e78565b6040516103cf9190614b1d565b60405180910390f35b3480156103e457600080fd5b506103ff60048036038101906103fa91906144a4565b610f0a565b60405161040c9190614a80565b60405180910390f35b34801561042157600080fd5b5061043c60048036038101906104379190614390565b610f8f565b005b34801561044a57600080fd5b506104536110a8565b6040516104609190614eff565b60405180910390f35b34801561047557600080fd5b5061047e6110ae565b60405161048b9190614eff565b60405180910390f35b3480156104a057600080fd5b506104bb60048036038101906104b691906144a4565b6110b7565b005b3480156104c957600080fd5b506104e460048036038101906104df919061427a565b61113d565b005b3480156104f257600080fd5b506104fb61114d565b6040516105089190614eff565b60405180910390f35b34801561051d57600080fd5b506105386004803603810190610533919061420d565b611153565b6040516105459190614eff565b60405180910390f35b34801561055a57600080fd5b5061056361116b565b005b61057f600480360381019061057a91906144a4565b611213565b005b34801561058d57600080fd5b50610596611552565b6040516105a39190614b02565b60405180910390f35b3480156105b857600080fd5b506105d360048036038101906105ce9190614390565b611558565b6040516105e09190614eff565b60405180910390f35b3480156105f557600080fd5b506105fe611756565b60405161060b9190614eff565b60405180910390f35b34801561062057600080fd5b5061063b6004803603810190610636919061420d565b61175c565b6040516106489190614eff565b60405180910390f35b34801561065d57600080fd5b506106666117a5565b005b34801561067457600080fd5b5061068f600480360381019061068a919061427a565b611881565b005b34801561069d57600080fd5b506106b860048036038101906106b3919061420d565b6118a1565b6040516106c59190614eff565b60405180910390f35b3480156106da57600080fd5b506106f560048036038101906106f091906144a4565b6118b9565b005b34801561070357600080fd5b5061071e600480360381019061071991906144a4565b61193f565b60405161072b9190614eff565b60405180910390f35b34801561074057600080fd5b5061075b60048036038101906107569190614457565b611992565b005b34801561076957600080fd5b50610784600480360381019061077f91906144a4565b611a24565b005b34801561079257600080fd5b506107ad60048036038101906107a891906144a4565b611aaa565b6040516107ba9190614a80565b60405180910390f35b3480156107cf57600080fd5b506107ea60048036038101906107e5919061420d565b611ac0565b6040516107f79190614eff565b60405180910390f35b34801561080c57600080fd5b50610815611b09565b6040516108229190614b1d565b60405180910390f35b34801561083757600080fd5b50610840611b97565b60405161084d9190614ae7565b60405180910390f35b34801561086257600080fd5b5061087d6004803603810190610878919061420d565b611baa565b60405161088a9190614eff565b60405180910390f35b34801561089f57600080fd5b506108a8611c93565b005b3480156108b657600080fd5b506108d160048036038101906108cc91906144a4565b611d1b565b005b3480156108df57600080fd5b506108fa60048036038101906108f591906143d0565b611da1565b005b34801561090857600080fd5b50610923600480360381019061091e91906144a4565b611e27565b005b34801561093157600080fd5b5061094c60048036038101906109479190614390565b611ead565b005b34801561095a57600080fd5b50610963611f37565b6040516109709190614a80565b60405180910390f35b34801561098557600080fd5b5061098e611f61565b60405161099b9190614b1d565b60405180910390f35b3480156109b057600080fd5b506109b9611ff3565b6040516109c69190614eff565b60405180910390f35b3480156109db57600080fd5b506109f660048036038101906109f19190614350565b611ff9565b005b348015610a0457600080fd5b50610a0d61217a565b604051610a1a9190614ae7565b60405180910390f35b348015610a2f57600080fd5b50610a3861218d565b604051610a459190614eff565b60405180910390f35b348015610a5a57600080fd5b50610a63612193565b005b348015610a7157600080fd5b50610a7a61223b565b604051610a879190614eff565b60405180910390f35b348015610a9c57600080fd5b50610ab76004803603810190610ab291906142cd565b612241565b005b348015610ac557600080fd5b50610ace61229d565b604051610adb9190614eff565b60405180910390f35b348015610af057600080fd5b50610af96122a3565b604051610b069190614eff565b60405180910390f35b348015610b1b57600080fd5b50610b366004803603810190610b3191906144a4565b6122a9565b005b348015610b4457600080fd5b50610b5f6004803603810190610b5a91906144a4565b61232f565b005b348015610b6d57600080fd5b50610b886004803603810190610b8391906144a4565b6123b5565b604051610b959190614b1d565b60405180910390f35b610bb86004803603810190610bb391906144d1565b61245c565b005b348015610bc657600080fd5b50610bcf612856565b604051610bdc9190614eff565b60405180910390f35b348015610bf157600080fd5b50610bfa61285c565b604051610c079190614eff565b60405180910390f35b348015610c1c57600080fd5b50610c376004803603810190610c32919061420d565b612862565b604051610c449190614eff565b60405180910390f35b348015610c5957600080fd5b50610c746004803603810190610c6f919061423a565b612874565b604051610c819190614ae7565b60405180910390f35b348015610c9657600080fd5b50610cb16004803603810190610cac91906144a4565b612908565b005b348015610cbf57600080fd5b50610cda6004803603810190610cd5919061420d565b612991565b005b348015610ce857600080fd5b50610d036004803603810190610cfe91906144a4565b612a89565b005b348015610d1157600080fd5b50610d2c6004803603810190610d2791906144a4565b612b0f565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610df957507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610e6157507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610e715750610e7082612b95565b5b9050919050565b606060018054610e8790615248565b80601f0160208091040260200160405190810160405280929190818152602001828054610eb390615248565b8015610f005780601f10610ed557610100808354040283529160200191610f00565b820191906000526020600020905b815481529060010190602001808311610ee357829003601f168201915b5050505050905090565b6000610f1582612bff565b610f54576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f4b90614ebf565b60405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610f9a82611aaa565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561100b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161100290614dbf565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1661102a612c0c565b73ffffffffffffffffffffffffffffffffffffffff161480611059575061105881611053612c0c565b612874565b5b611098576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161108f90614c9f565b60405180910390fd5b6110a3838383612c14565b505050565b60165481565b60008054905090565b6110bf612c0c565b73ffffffffffffffffffffffffffffffffffffffff166110dd611f37565b73ffffffffffffffffffffffffffffffffffffffff1614611133576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161112a90614d3f565b60405180910390fd5b8060158190555050565b611148838383612cc6565b505050565b60125481565b600a6020528060005260406000206000915090505481565b611173612c0c565b73ffffffffffffffffffffffffffffffffffffffff16611191611f37565b73ffffffffffffffffffffffffffffffffffffffff16146111e7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111de90614d3f565b60405180910390fd5b600d60019054906101000a900460ff1615600d60016101000a81548160ff021916908315150217905550565b600d60019054906101000a900460ff16611262576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161125990614b5f565b60405180910390fd5b601054600a60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020541015611373576000600a60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546010546112fa919061510e565b905060008183101561130d57600061131a565b8183611319919061510e565b5b90508060165461132a9190615080565b34101561136c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161136390614bbf565b60405180910390fd5b50506113c4565b601654816113819190615080565b3410156113c3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113ba90614bff565b60405180910390fd5b5b60145481600a60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546114129190614ff9565b1115611453576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161144a90614cdf565b60405180910390fd5b601354811115611498576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161148f90614c5f565b60405180910390fd5b601554816114a46110ae565b6114ae9190614ff9565b11156114ef576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114e690614d1f565b60405180910390fd5b80600a60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461153e9190614ff9565b9250508190555061154f338261327f565b50565b600e5481565b600061156383611baa565b82106115a4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161159b90614b3f565b60405180910390fd5b60006115ae6110ae565b905060008060005b83811015611714576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146116a857806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561170057868414156116f1578195505050505050611750565b83806116fc906152ab565b9450505b50808061170c906152ab565b9150506115b6565b506040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161174790614e5f565b60405180910390fd5b92915050565b60175481565b6000600a60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6117ad612c0c565b73ffffffffffffffffffffffffffffffffffffffff166117cb611f37565b73ffffffffffffffffffffffffffffffffffffffff1614611821576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161181890614d3f565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff166108fc3073ffffffffffffffffffffffffffffffffffffffff16319081150290604051600060405180830381858888f1935050505015801561187e573d6000803e3d6000fd5b50565b61189c83838360405180602001604052806000815250612241565b505050565b600b6020528060005260406000206000915090505481565b6118c1612c0c565b73ffffffffffffffffffffffffffffffffffffffff166118df611f37565b73ffffffffffffffffffffffffffffffffffffffff1614611935576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161192c90614d3f565b60405180910390fd5b80600f8190555050565b60006119496110ae565b821061198a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161198190614c1f565b60405180910390fd5b819050919050565b61199a612c0c565b73ffffffffffffffffffffffffffffffffffffffff166119b8611f37565b73ffffffffffffffffffffffffffffffffffffffff1614611a0e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a0590614d3f565b60405180910390fd5b8181600c9190611a1f929190613f96565b505050565b611a2c612c0c565b73ffffffffffffffffffffffffffffffffffffffff16611a4a611f37565b73ffffffffffffffffffffffffffffffffffffffff1614611aa0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a9790614d3f565b60405180910390fd5b8060118190555050565b6000611ab58261329d565b600001519050919050565b6000600b60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b600c8054611b1690615248565b80601f0160208091040260200160405190810160405280929190818152602001828054611b4290615248565b8015611b8f5780601f10611b6457610100808354040283529160200191611b8f565b820191906000526020600020905b815481529060010190602001808311611b7257829003601f168201915b505050505081565b600d60019054906101000a900460ff1681565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611c1b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c1290614cbf565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b611c9b612c0c565b73ffffffffffffffffffffffffffffffffffffffff16611cb9611f37565b73ffffffffffffffffffffffffffffffffffffffff1614611d0f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d0690614d3f565b60405180910390fd5b611d1960006134a0565b565b611d23612c0c565b73ffffffffffffffffffffffffffffffffffffffff16611d41611f37565b73ffffffffffffffffffffffffffffffffffffffff1614611d97576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d8e90614d3f565b60405180910390fd5b8060108190555050565b611da9612c0c565b73ffffffffffffffffffffffffffffffffffffffff16611dc7611f37565b73ffffffffffffffffffffffffffffffffffffffff1614611e1d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e1490614d3f565b60405180910390fd5b80600e8190555050565b611e2f612c0c565b73ffffffffffffffffffffffffffffffffffffffff16611e4d611f37565b73ffffffffffffffffffffffffffffffffffffffff1614611ea3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e9a90614d3f565b60405180910390fd5b8060148190555050565b611eb5612c0c565b73ffffffffffffffffffffffffffffffffffffffff16611ed3611f37565b73ffffffffffffffffffffffffffffffffffffffff1614611f29576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f2090614d3f565b60405180910390fd5b611f33828261327f565b5050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060028054611f7090615248565b80601f0160208091040260200160405190810160405280929190818152602001828054611f9c90615248565b8015611fe95780601f10611fbe57610100808354040283529160200191611fe9565b820191906000526020600020905b815481529060010190602001808311611fcc57829003601f168201915b5050505050905090565b60135481565b612001612c0c565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561206f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161206690614d7f565b60405180910390fd5b806006600061207c612c0c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16612129612c0c565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161216e9190614ae7565b60405180910390a35050565b600d60009054906101000a900460ff1681565b600f5481565b61219b612c0c565b73ffffffffffffffffffffffffffffffffffffffff166121b9611f37565b73ffffffffffffffffffffffffffffffffffffffff161461220f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161220690614d3f565b60405180910390fd5b600d60009054906101000a900460ff1615600d60006101000a81548160ff021916908315150217905550565b60145481565b61224c848484612cc6565b61225884848484613566565b612297576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161228e90614ddf565b60405180910390fd5b50505050565b60115481565b60105481565b6122b1612c0c565b73ffffffffffffffffffffffffffffffffffffffff166122cf611f37565b73ffffffffffffffffffffffffffffffffffffffff1614612325576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161231c90614d3f565b60405180910390fd5b8060128190555050565b612337612c0c565b73ffffffffffffffffffffffffffffffffffffffff16612355611f37565b73ffffffffffffffffffffffffffffffffffffffff16146123ab576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123a290614d3f565b60405180910390fd5b8060168190555050565b60606123c082612bff565b6123ff576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123f690614d5f565b60405180910390fd5b60006124096136fd565b905060008151116124295760405180602001604052806000815250612454565b806124338461378f565b604051602001612444929190614a5c565b6040516020818303038152906040525b915050919050565b600d60009054906101000a900460ff166124ab576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124a290614e3f565b60405180910390fd5b600f54600b60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205410156125bc576000600b60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054600f54612543919061510e565b9050600081851015612556576000612563565b8185612562919061510e565b5b9050806017546125739190615080565b3410156125b5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125ac90614bbf565b60405180910390fd5b505061260d565b601754836125ca9190615080565b34101561260c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161260390614e9f565b60405180910390fd5b5b60125483600b60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461265b9190614ff9565b111561269c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161269390614cdf565b60405180910390fd5b6011548311156126e1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126d890614c5f565b60405180910390fd5b6000336040516020016126f49190614a41565b60405160208183030381529060405280519060200120905061275a838380806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f82011690508083019250505050505050600e54836138f0565b612799576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161279090614bdf565b60405180910390fd5b601554846127a56110ae565b6127af9190614ff9565b11156127f0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127e790614d1f565b60405180910390fd5b83600b60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461283f9190614ff9565b92505081905550612850338561327f565b50505050565b60155481565b60075481565b600061286d82613907565b9050919050565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b612910612c0c565b73ffffffffffffffffffffffffffffffffffffffff1661292e611f37565b73ffffffffffffffffffffffffffffffffffffffff1614612984576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161297b90614d3f565b60405180910390fd5b61298e338261327f565b50565b612999612c0c565b73ffffffffffffffffffffffffffffffffffffffff166129b7611f37565b73ffffffffffffffffffffffffffffffffffffffff1614612a0d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a0490614d3f565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612a7d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a7490614b7f565b60405180910390fd5b612a86816134a0565b50565b612a91612c0c565b73ffffffffffffffffffffffffffffffffffffffff16612aaf611f37565b73ffffffffffffffffffffffffffffffffffffffff1614612b05576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612afc90614d3f565b60405180910390fd5b8060138190555050565b612b17612c0c565b73ffffffffffffffffffffffffffffffffffffffff16612b35611f37565b73ffffffffffffffffffffffffffffffffffffffff1614612b8b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b8290614d3f565b60405180910390fd5b8060178190555050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6000805482109050919050565b600033905090565b826005600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b6000612cd18261329d565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff16612cf8612c0c565b73ffffffffffffffffffffffffffffffffffffffff161480612d545750612d1d612c0c565b73ffffffffffffffffffffffffffffffffffffffff16612d3c84610f0a565b73ffffffffffffffffffffffffffffffffffffffff16145b80612d705750612d6f8260000151612d6a612c0c565b612874565b5b905080612db2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612da990614d9f565b60405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff1614612e24576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e1b90614cff565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612e94576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e8b90614c3f565b60405180910390fd5b612ea185858560016139f0565b612eb16000848460000151612c14565b6001600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff16612f1f91906150da565b92506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff1602179055506001600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff16612fc39190614fb3565b92506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060405180604001604052808573ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506003600085815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555090505060006001846130c99190614ff9565b9050600073ffffffffffffffffffffffffffffffffffffffff166003600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16141561320f5761313f81612bff565b1561320e576040518060400160405280846000015173ffffffffffffffffffffffffffffffffffffffff168152602001846020015167ffffffffffffffff168152506003600083815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055509050505b5b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461327786868660016139f6565b505050505050565b6132998282604051806020016040528060008152506139fc565b5050565b6132a561401c565b6132ae82612bff565b6132ed576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016132e490614b9f565b60405180910390fd5b60007f000000000000000000000000000000000000000000000000000000000000000083106133515760017f000000000000000000000000000000000000000000000000000000000000000084613344919061510e565b61334e9190614ff9565b90505b60008390505b81811061345f576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461344b5780935050505061349b565b5080806134579061521e565b915050613357565b506040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161349290614e7f565b60405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60006135878473ffffffffffffffffffffffffffffffffffffffff16613edb565b156136f0578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026135b0612c0c565b8786866040518563ffffffff1660e01b81526004016135d29493929190614a9b565b602060405180830381600087803b1580156135ec57600080fd5b505af192505050801561361d57506040513d601f19601f8201168201806040525081019061361a919061442a565b60015b6136a0573d806000811461364d576040519150601f19603f3d011682016040523d82523d6000602084013e613652565b606091505b50600081511415613698576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161368f90614ddf565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506136f5565b600190505b949350505050565b6060600c805461370c90615248565b80601f016020809104026020016040519081016040528092919081815260200182805461373890615248565b80156137855780601f1061375a57610100808354040283529160200191613785565b820191906000526020600020905b81548152906001019060200180831161376857829003601f168201915b5050505050905090565b606060008214156137d7576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506138eb565b600082905060005b600082146138095780806137f2906152ab565b915050600a82613802919061504f565b91506137df565b60008167ffffffffffffffff81111561382557613824615405565b5b6040519080825280601f01601f1916602001820160405280156138575781602001600182028036833780820191505090505b5090505b600085146138e457600182613870919061510e565b9150600a8561387f9190615318565b603061388b9190614ff9565b60f81b8183815181106138a1576138a06153d6565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856138dd919061504f565b945061385b565b8093505050505b919050565b6000826138fd8584613efe565b1490509392505050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613978576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161396f90614c7f565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160109054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b50505050565b50505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415613a72576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613a6990614e1f565b60405180910390fd5b613a7b81612bff565b15613abb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613ab290614dff565b60405180910390fd5b7f0000000000000000000000000000000000000000000000000000000000000000831115613b1e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613b1590614edf565b60405180910390fd5b613b2b60008583866139f0565b6000600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206040518060400160405290816000820160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff1681526020016000820160109054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff168152505090506040518060400160405280858360000151613c289190614fb3565b6fffffffffffffffffffffffffffffffff168152602001858360200151613c4f9190614fb3565b6fffffffffffffffffffffffffffffffff16815250600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008201518160000160006101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060208201518160000160106101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555090505060405180604001604052808673ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506003600084815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550905050600082905060005b85811015613ebe57818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4613e5e6000888488613566565b613e9d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613e9490614ddf565b60405180910390fd5b8180613ea8906152ab565b9250508080613eb6906152ab565b915050613ded565b5080600081905550613ed360008785886139f6565b505050505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008082905060005b8451811015613f4957613f3482868381518110613f2757613f266153d6565b5b6020026020010151613f54565b91508080613f41906152ab565b915050613f07565b508091505092915050565b6000818310613f6c57613f678284613f7f565b613f77565b613f768383613f7f565b5b905092915050565b600082600052816020526040600020905092915050565b828054613fa290615248565b90600052602060002090601f016020900481019282613fc4576000855561400b565b82601f10613fdd57803560ff191683800117855561400b565b8280016001018555821561400b579182015b8281111561400a578235825591602001919060010190613fef565b5b5090506140189190614056565b5090565b6040518060400160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681525090565b5b8082111561406f576000816000905550600101614057565b5090565b600061408661408184614f3f565b614f1a565b9050828152602081018484840111156140a2576140a1615443565b5b6140ad8482856151dc565b509392505050565b6000813590506140c481615c82565b92915050565b60008083601f8401126140e0576140df615439565b5b8235905067ffffffffffffffff8111156140fd576140fc615434565b5b6020830191508360208202830111156141195761411861543e565b5b9250929050565b60008135905061412f81615c99565b92915050565b60008135905061414481615cb0565b92915050565b60008135905061415981615cc7565b92915050565b60008151905061416e81615cc7565b92915050565b600082601f83011261418957614188615439565b5b8135614199848260208601614073565b91505092915050565b60008083601f8401126141b8576141b7615439565b5b8235905067ffffffffffffffff8111156141d5576141d4615434565b5b6020830191508360018202830111156141f1576141f061543e565b5b9250929050565b60008135905061420781615cde565b92915050565b6000602082840312156142235761422261544d565b5b6000614231848285016140b5565b91505092915050565b600080604083850312156142515761425061544d565b5b600061425f858286016140b5565b9250506020614270858286016140b5565b9150509250929050565b6000806000606084860312156142935761429261544d565b5b60006142a1868287016140b5565b93505060206142b2868287016140b5565b92505060406142c3868287016141f8565b9150509250925092565b600080600080608085870312156142e7576142e661544d565b5b60006142f5878288016140b5565b9450506020614306878288016140b5565b9350506040614317878288016141f8565b925050606085013567ffffffffffffffff81111561433857614337615448565b5b61434487828801614174565b91505092959194509250565b600080604083850312156143675761436661544d565b5b6000614375858286016140b5565b925050602061438685828601614120565b9150509250929050565b600080604083850312156143a7576143a661544d565b5b60006143b5858286016140b5565b92505060206143c6858286016141f8565b9150509250929050565b6000602082840312156143e6576143e561544d565b5b60006143f484828501614135565b91505092915050565b6000602082840312156144135761441261544d565b5b60006144218482850161414a565b91505092915050565b6000602082840312156144405761443f61544d565b5b600061444e8482850161415f565b91505092915050565b6000806020838503121561446e5761446d61544d565b5b600083013567ffffffffffffffff81111561448c5761448b615448565b5b614498858286016141a2565b92509250509250929050565b6000602082840312156144ba576144b961544d565b5b60006144c8848285016141f8565b91505092915050565b6000806000604084860312156144ea576144e961544d565b5b60006144f8868287016141f8565b935050602084013567ffffffffffffffff81111561451957614518615448565b5b614525868287016140ca565b92509250509250925092565b61453a81615142565b82525050565b61455161454c82615142565b6152f4565b82525050565b61456081615154565b82525050565b61456f81615160565b82525050565b600061458082614f70565b61458a8185614f86565b935061459a8185602086016151eb565b6145a381615452565b840191505092915050565b60006145b982614f7b565b6145c38185614f97565b93506145d38185602086016151eb565b6145dc81615452565b840191505092915050565b60006145f282614f7b565b6145fc8185614fa8565b935061460c8185602086016151eb565b80840191505092915050565b6000614625602283614f97565b915061463082615470565b604082019050919050565b6000614648601e83614f97565b9150614653826154bf565b602082019050919050565b600061466b602683614f97565b9150614676826154e8565b604082019050919050565b600061468e602a83614f97565b915061469982615537565b604082019050919050565b60006146b1602583614f97565b91506146bc82615586565b604082019050919050565b60006146d4601983614f97565b91506146df826155d5565b602082019050919050565b60006146f7602183614f97565b9150614702826155fe565b604082019050919050565b600061471a602383614f97565b91506147258261564d565b604082019050919050565b600061473d602583614f97565b91506147488261569c565b604082019050919050565b6000614760601f83614f97565b915061476b826156eb565b602082019050919050565b6000614783603183614f97565b915061478e82615714565b604082019050919050565b60006147a6603983614f97565b91506147b182615763565b604082019050919050565b60006147c9602b83614f97565b91506147d4826157b2565b604082019050919050565b60006147ec601883614f97565b91506147f782615801565b602082019050919050565b600061480f602683614f97565b915061481a8261582a565b604082019050919050565b6000614832601183614f97565b915061483d82615879565b602082019050919050565b6000614855602083614f97565b9150614860826158a2565b602082019050919050565b6000614878602f83614f97565b9150614883826158cb565b604082019050919050565b600061489b601a83614f97565b91506148a68261591a565b602082019050919050565b60006148be603283614f97565b91506148c982615943565b604082019050919050565b60006148e1602283614f97565b91506148ec82615992565b604082019050919050565b6000614904603383614f97565b915061490f826159e1565b604082019050919050565b6000614927601d83614f97565b915061493282615a30565b602082019050919050565b600061494a602183614f97565b915061495582615a59565b604082019050919050565b600061496d602183614f97565b915061497882615aa8565b604082019050919050565b6000614990602e83614f97565b915061499b82615af7565b604082019050919050565b60006149b3602f83614f97565b91506149be82615b46565b604082019050919050565b60006149d6602483614f97565b91506149e182615b95565b604082019050919050565b60006149f9602d83614f97565b9150614a0482615be4565b604082019050919050565b6000614a1c602283614f97565b9150614a2782615c33565b604082019050919050565b614a3b816151d2565b82525050565b6000614a4d8284614540565b60148201915081905092915050565b6000614a6882856145e7565b9150614a7482846145e7565b91508190509392505050565b6000602082019050614a956000830184614531565b92915050565b6000608082019050614ab06000830187614531565b614abd6020830186614531565b614aca6040830185614a32565b8181036060830152614adc8184614575565b905095945050505050565b6000602082019050614afc6000830184614557565b92915050565b6000602082019050614b176000830184614566565b92915050565b60006020820190508181036000830152614b3781846145ae565b905092915050565b60006020820190508181036000830152614b5881614618565b9050919050565b60006020820190508181036000830152614b788161463b565b9050919050565b60006020820190508181036000830152614b988161465e565b9050919050565b60006020820190508181036000830152614bb881614681565b9050919050565b60006020820190508181036000830152614bd8816146a4565b9050919050565b60006020820190508181036000830152614bf8816146c7565b9050919050565b60006020820190508181036000830152614c18816146ea565b9050919050565b60006020820190508181036000830152614c388161470d565b9050919050565b60006020820190508181036000830152614c5881614730565b9050919050565b60006020820190508181036000830152614c7881614753565b9050919050565b60006020820190508181036000830152614c9881614776565b9050919050565b60006020820190508181036000830152614cb881614799565b9050919050565b60006020820190508181036000830152614cd8816147bc565b9050919050565b60006020820190508181036000830152614cf8816147df565b9050919050565b60006020820190508181036000830152614d1881614802565b9050919050565b60006020820190508181036000830152614d3881614825565b9050919050565b60006020820190508181036000830152614d5881614848565b9050919050565b60006020820190508181036000830152614d788161486b565b9050919050565b60006020820190508181036000830152614d988161488e565b9050919050565b60006020820190508181036000830152614db8816148b1565b9050919050565b60006020820190508181036000830152614dd8816148d4565b9050919050565b60006020820190508181036000830152614df8816148f7565b9050919050565b60006020820190508181036000830152614e188161491a565b9050919050565b60006020820190508181036000830152614e388161493d565b9050919050565b60006020820190508181036000830152614e5881614960565b9050919050565b60006020820190508181036000830152614e7881614983565b9050919050565b60006020820190508181036000830152614e98816149a6565b9050919050565b60006020820190508181036000830152614eb8816149c9565b9050919050565b60006020820190508181036000830152614ed8816149ec565b9050919050565b60006020820190508181036000830152614ef881614a0f565b9050919050565b6000602082019050614f146000830184614a32565b92915050565b6000614f24614f35565b9050614f30828261527a565b919050565b6000604051905090565b600067ffffffffffffffff821115614f5a57614f59615405565b5b614f6382615452565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000614fbe82615196565b9150614fc983615196565b9250826fffffffffffffffffffffffffffffffff03821115614fee57614fed615349565b5b828201905092915050565b6000615004826151d2565b915061500f836151d2565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561504457615043615349565b5b828201905092915050565b600061505a826151d2565b9150615065836151d2565b92508261507557615074615378565b5b828204905092915050565b600061508b826151d2565b9150615096836151d2565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156150cf576150ce615349565b5b828202905092915050565b60006150e582615196565b91506150f083615196565b92508282101561510357615102615349565b5b828203905092915050565b6000615119826151d2565b9150615124836151d2565b92508282101561513757615136615349565b5b828203905092915050565b600061514d826151b2565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b60006fffffffffffffffffffffffffffffffff82169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b838110156152095780820151818401526020810190506151ee565b83811115615218576000848401525b50505050565b6000615229826151d2565b9150600082141561523d5761523c615349565b5b600182039050919050565b6000600282049050600182168061526057607f821691505b60208210811415615274576152736153a7565b5b50919050565b61528382615452565b810181811067ffffffffffffffff821117156152a2576152a1615405565b5b80604052505050565b60006152b6826151d2565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156152e9576152e8615349565b5b600182019050919050565b60006152ff82615306565b9050919050565b600061531182615463565b9050919050565b6000615323826151d2565b915061532e836151d2565b92508261533e5761533d615378565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b60008160601b9050919050565b7f455243373231413a206f776e657220696e646578206f7574206f6620626f756e60008201527f6473000000000000000000000000000000000000000000000000000000000000602082015250565b7f446f6f6265616e7a3a204d696e74696e67205075626c69632050617573650000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a206f776e657220717565727920666f72206e6f6e6578697360008201527f74656e7420746f6b656e00000000000000000000000000000000000000000000602082015250565b7f446f6f6265616e7a3a20496e73756666696369656e742045746820436c61696d60008201527f2046726565000000000000000000000000000000000000000000000000000000602082015250565b7f446f6f6265616e7a3a204e6f742077686974656c697374656400000000000000600082015250565b7f446f6f6265616e7a3a20496e73756666696369656e7420457468205075626c6960008201527f6300000000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f7560008201527f6e64730000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f446f6f6265616e7a3a204c696d697420506572205472616e73616374696f6e00600082015250565b7f455243373231413a206e756d626572206d696e74656420717565727920666f7260008201527f20746865207a65726f2061646472657373000000000000000000000000000000602082015250565b7f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000602082015250565b7f455243373231413a2062616c616e636520717565727920666f7220746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b7f446f6f6265616e7a3a204d6178205065722057616c6c65740000000000000000600082015250565b7f455243373231413a207472616e736665722066726f6d20696e636f727265637460008201527f206f776e65720000000000000000000000000000000000000000000000000000602082015250565b7f446f6f6265616e7a3a20536f6c646f7574000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f455243373231413a20617070726f766520746f2063616c6c6572000000000000600082015250565b7f455243373231413a207472616e736665722063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b7f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60008201527f6572000000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e7366657220746f206e6f6e204552433732315260008201527f6563656976657220696d706c656d656e74657200000000000000000000000000602082015250565b7f455243373231413a20746f6b656e20616c7265616479206d696e746564000000600082015250565b7f455243373231413a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f446f6f6265616e7a3a204d696e74696e672057686974656c697374205061757360008201527f6500000000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060008201527f6f776e657220627920696e646578000000000000000000000000000000000000602082015250565b7f455243373231413a20756e61626c6520746f2064657465726d696e652074686560008201527f206f776e6572206f6620746f6b656e0000000000000000000000000000000000602082015250565b7f446f6f6265616e7a3a20496e73756666696369656e742045746820576869746560008201527f6c69737400000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560008201527f78697374656e7420746f6b656e00000000000000000000000000000000000000602082015250565b7f455243373231413a207175616e7469747920746f206d696e7420746f6f20686960008201527f6768000000000000000000000000000000000000000000000000000000000000602082015250565b615c8b81615142565b8114615c9657600080fd5b50565b615ca281615154565b8114615cad57600080fd5b50565b615cb981615160565b8114615cc457600080fd5b50565b615cd08161516a565b8114615cdb57600080fd5b50565b615ce7816151d2565b8114615cf257600080fd5b5056fea2646970667358221220f45cf3ae0c7df3b21c674ec3f213b6868d8ad05adb80243fa6c624fc51dc298c64736f6c63430008070033

Deployed Bytecode

0x60806040526004361061036b5760003560e01c8063715018a6116101c6578063ba662ece116100f7578063d7224ba011610095578063f19e75d41161006f578063f19e75d414610c8a578063f2fde38b14610cb3578063f452472e14610cdc578063f6a5b8e614610d055761036b565b8063d7224ba014610be5578063dc33e68114610c10578063e985e9c514610c4d5761036b565b8063c6275255116100d1578063c627525514610b38578063c87b56dd14610b61578063d2cab05614610b9e578063d5abeb0114610bba5761036b565b8063ba662ece14610ab9578063bf85369014610ae4578063c1612d4114610b0f5761036b565b80639943770d11610164578063a46a18da1161013e578063a46a18da14610a23578063a6c0bd4214610a4e578063b029a51414610a65578063b88d4fde14610a905761036b565b80639943770d146109a4578063a22cb465146109cf578063a402c6d2146109f85761036b565b80638b533ea4116101a05780638b533ea4146108fc5780638ba4cc3c146109255780638da5cb5b1461094e57806395d89b41146109795761036b565b8063715018a6146108935780637ad68afa146108aa5780637cb64759146108d35761036b565b80632fff1796116102a057806355f804b31161023e57806364fc37d81161021857806364fc37d8146107c35780636c0360eb146108005780636e3fc3f61461082b57806370a08231146108565761036b565b806355f804b314610734578063597804c01461075d5780636352211e146107865761036b565b806342842e0e1161027a57806342842e0e146106685780634a81d9dd146106915780634aec7990146106ce5780634f6ccce7146106f75761036b565b80632fff1796146105e95780633027568b146106145780633ccfd60b146106515761036b565b806323b872dd1161030d5780632c673915116102e75780632c6739151461054e5780632db11544146105655780632eb4a7ab146105815780632f745c59146105ac5761036b565b806323b872dd146104bd57806325ee97e3146104e65780632be905ba146105115761036b565b8063095ea7b311610349578063095ea7b314610415578063102e766d1461043e57806318160ddd14610469578063228025e8146104945761036b565b806301ffc9a71461037057806306fdde03146103ad578063081812fc146103d8575b600080fd5b34801561037c57600080fd5b50610397600480360381019061039291906143fd565b610d2e565b6040516103a49190614ae7565b60405180910390f35b3480156103b957600080fd5b506103c2610e78565b6040516103cf9190614b1d565b60405180910390f35b3480156103e457600080fd5b506103ff60048036038101906103fa91906144a4565b610f0a565b60405161040c9190614a80565b60405180910390f35b34801561042157600080fd5b5061043c60048036038101906104379190614390565b610f8f565b005b34801561044a57600080fd5b506104536110a8565b6040516104609190614eff565b60405180910390f35b34801561047557600080fd5b5061047e6110ae565b60405161048b9190614eff565b60405180910390f35b3480156104a057600080fd5b506104bb60048036038101906104b691906144a4565b6110b7565b005b3480156104c957600080fd5b506104e460048036038101906104df919061427a565b61113d565b005b3480156104f257600080fd5b506104fb61114d565b6040516105089190614eff565b60405180910390f35b34801561051d57600080fd5b506105386004803603810190610533919061420d565b611153565b6040516105459190614eff565b60405180910390f35b34801561055a57600080fd5b5061056361116b565b005b61057f600480360381019061057a91906144a4565b611213565b005b34801561058d57600080fd5b50610596611552565b6040516105a39190614b02565b60405180910390f35b3480156105b857600080fd5b506105d360048036038101906105ce9190614390565b611558565b6040516105e09190614eff565b60405180910390f35b3480156105f557600080fd5b506105fe611756565b60405161060b9190614eff565b60405180910390f35b34801561062057600080fd5b5061063b6004803603810190610636919061420d565b61175c565b6040516106489190614eff565b60405180910390f35b34801561065d57600080fd5b506106666117a5565b005b34801561067457600080fd5b5061068f600480360381019061068a919061427a565b611881565b005b34801561069d57600080fd5b506106b860048036038101906106b3919061420d565b6118a1565b6040516106c59190614eff565b60405180910390f35b3480156106da57600080fd5b506106f560048036038101906106f091906144a4565b6118b9565b005b34801561070357600080fd5b5061071e600480360381019061071991906144a4565b61193f565b60405161072b9190614eff565b60405180910390f35b34801561074057600080fd5b5061075b60048036038101906107569190614457565b611992565b005b34801561076957600080fd5b50610784600480360381019061077f91906144a4565b611a24565b005b34801561079257600080fd5b506107ad60048036038101906107a891906144a4565b611aaa565b6040516107ba9190614a80565b60405180910390f35b3480156107cf57600080fd5b506107ea60048036038101906107e5919061420d565b611ac0565b6040516107f79190614eff565b60405180910390f35b34801561080c57600080fd5b50610815611b09565b6040516108229190614b1d565b60405180910390f35b34801561083757600080fd5b50610840611b97565b60405161084d9190614ae7565b60405180910390f35b34801561086257600080fd5b5061087d6004803603810190610878919061420d565b611baa565b60405161088a9190614eff565b60405180910390f35b34801561089f57600080fd5b506108a8611c93565b005b3480156108b657600080fd5b506108d160048036038101906108cc91906144a4565b611d1b565b005b3480156108df57600080fd5b506108fa60048036038101906108f591906143d0565b611da1565b005b34801561090857600080fd5b50610923600480360381019061091e91906144a4565b611e27565b005b34801561093157600080fd5b5061094c60048036038101906109479190614390565b611ead565b005b34801561095a57600080fd5b50610963611f37565b6040516109709190614a80565b60405180910390f35b34801561098557600080fd5b5061098e611f61565b60405161099b9190614b1d565b60405180910390f35b3480156109b057600080fd5b506109b9611ff3565b6040516109c69190614eff565b60405180910390f35b3480156109db57600080fd5b506109f660048036038101906109f19190614350565b611ff9565b005b348015610a0457600080fd5b50610a0d61217a565b604051610a1a9190614ae7565b60405180910390f35b348015610a2f57600080fd5b50610a3861218d565b604051610a459190614eff565b60405180910390f35b348015610a5a57600080fd5b50610a63612193565b005b348015610a7157600080fd5b50610a7a61223b565b604051610a879190614eff565b60405180910390f35b348015610a9c57600080fd5b50610ab76004803603810190610ab291906142cd565b612241565b005b348015610ac557600080fd5b50610ace61229d565b604051610adb9190614eff565b60405180910390f35b348015610af057600080fd5b50610af96122a3565b604051610b069190614eff565b60405180910390f35b348015610b1b57600080fd5b50610b366004803603810190610b3191906144a4565b6122a9565b005b348015610b4457600080fd5b50610b5f6004803603810190610b5a91906144a4565b61232f565b005b348015610b6d57600080fd5b50610b886004803603810190610b8391906144a4565b6123b5565b604051610b959190614b1d565b60405180910390f35b610bb86004803603810190610bb391906144d1565b61245c565b005b348015610bc657600080fd5b50610bcf612856565b604051610bdc9190614eff565b60405180910390f35b348015610bf157600080fd5b50610bfa61285c565b604051610c079190614eff565b60405180910390f35b348015610c1c57600080fd5b50610c376004803603810190610c32919061420d565b612862565b604051610c449190614eff565b60405180910390f35b348015610c5957600080fd5b50610c746004803603810190610c6f919061423a565b612874565b604051610c819190614ae7565b60405180910390f35b348015610c9657600080fd5b50610cb16004803603810190610cac91906144a4565b612908565b005b348015610cbf57600080fd5b50610cda6004803603810190610cd5919061420d565b612991565b005b348015610ce857600080fd5b50610d036004803603810190610cfe91906144a4565b612a89565b005b348015610d1157600080fd5b50610d2c6004803603810190610d2791906144a4565b612b0f565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610df957507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610e6157507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610e715750610e7082612b95565b5b9050919050565b606060018054610e8790615248565b80601f0160208091040260200160405190810160405280929190818152602001828054610eb390615248565b8015610f005780601f10610ed557610100808354040283529160200191610f00565b820191906000526020600020905b815481529060010190602001808311610ee357829003601f168201915b5050505050905090565b6000610f1582612bff565b610f54576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f4b90614ebf565b60405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610f9a82611aaa565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561100b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161100290614dbf565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1661102a612c0c565b73ffffffffffffffffffffffffffffffffffffffff161480611059575061105881611053612c0c565b612874565b5b611098576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161108f90614c9f565b60405180910390fd5b6110a3838383612c14565b505050565b60165481565b60008054905090565b6110bf612c0c565b73ffffffffffffffffffffffffffffffffffffffff166110dd611f37565b73ffffffffffffffffffffffffffffffffffffffff1614611133576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161112a90614d3f565b60405180910390fd5b8060158190555050565b611148838383612cc6565b505050565b60125481565b600a6020528060005260406000206000915090505481565b611173612c0c565b73ffffffffffffffffffffffffffffffffffffffff16611191611f37565b73ffffffffffffffffffffffffffffffffffffffff16146111e7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111de90614d3f565b60405180910390fd5b600d60019054906101000a900460ff1615600d60016101000a81548160ff021916908315150217905550565b600d60019054906101000a900460ff16611262576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161125990614b5f565b60405180910390fd5b601054600a60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020541015611373576000600a60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546010546112fa919061510e565b905060008183101561130d57600061131a565b8183611319919061510e565b5b90508060165461132a9190615080565b34101561136c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161136390614bbf565b60405180910390fd5b50506113c4565b601654816113819190615080565b3410156113c3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113ba90614bff565b60405180910390fd5b5b60145481600a60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546114129190614ff9565b1115611453576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161144a90614cdf565b60405180910390fd5b601354811115611498576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161148f90614c5f565b60405180910390fd5b601554816114a46110ae565b6114ae9190614ff9565b11156114ef576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114e690614d1f565b60405180910390fd5b80600a60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461153e9190614ff9565b9250508190555061154f338261327f565b50565b600e5481565b600061156383611baa565b82106115a4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161159b90614b3f565b60405180910390fd5b60006115ae6110ae565b905060008060005b83811015611714576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146116a857806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561170057868414156116f1578195505050505050611750565b83806116fc906152ab565b9450505b50808061170c906152ab565b9150506115b6565b506040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161174790614e5f565b60405180910390fd5b92915050565b60175481565b6000600a60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6117ad612c0c565b73ffffffffffffffffffffffffffffffffffffffff166117cb611f37565b73ffffffffffffffffffffffffffffffffffffffff1614611821576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161181890614d3f565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff166108fc3073ffffffffffffffffffffffffffffffffffffffff16319081150290604051600060405180830381858888f1935050505015801561187e573d6000803e3d6000fd5b50565b61189c83838360405180602001604052806000815250612241565b505050565b600b6020528060005260406000206000915090505481565b6118c1612c0c565b73ffffffffffffffffffffffffffffffffffffffff166118df611f37565b73ffffffffffffffffffffffffffffffffffffffff1614611935576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161192c90614d3f565b60405180910390fd5b80600f8190555050565b60006119496110ae565b821061198a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161198190614c1f565b60405180910390fd5b819050919050565b61199a612c0c565b73ffffffffffffffffffffffffffffffffffffffff166119b8611f37565b73ffffffffffffffffffffffffffffffffffffffff1614611a0e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a0590614d3f565b60405180910390fd5b8181600c9190611a1f929190613f96565b505050565b611a2c612c0c565b73ffffffffffffffffffffffffffffffffffffffff16611a4a611f37565b73ffffffffffffffffffffffffffffffffffffffff1614611aa0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a9790614d3f565b60405180910390fd5b8060118190555050565b6000611ab58261329d565b600001519050919050565b6000600b60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b600c8054611b1690615248565b80601f0160208091040260200160405190810160405280929190818152602001828054611b4290615248565b8015611b8f5780601f10611b6457610100808354040283529160200191611b8f565b820191906000526020600020905b815481529060010190602001808311611b7257829003601f168201915b505050505081565b600d60019054906101000a900460ff1681565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611c1b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c1290614cbf565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b611c9b612c0c565b73ffffffffffffffffffffffffffffffffffffffff16611cb9611f37565b73ffffffffffffffffffffffffffffffffffffffff1614611d0f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d0690614d3f565b60405180910390fd5b611d1960006134a0565b565b611d23612c0c565b73ffffffffffffffffffffffffffffffffffffffff16611d41611f37565b73ffffffffffffffffffffffffffffffffffffffff1614611d97576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d8e90614d3f565b60405180910390fd5b8060108190555050565b611da9612c0c565b73ffffffffffffffffffffffffffffffffffffffff16611dc7611f37565b73ffffffffffffffffffffffffffffffffffffffff1614611e1d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e1490614d3f565b60405180910390fd5b80600e8190555050565b611e2f612c0c565b73ffffffffffffffffffffffffffffffffffffffff16611e4d611f37565b73ffffffffffffffffffffffffffffffffffffffff1614611ea3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e9a90614d3f565b60405180910390fd5b8060148190555050565b611eb5612c0c565b73ffffffffffffffffffffffffffffffffffffffff16611ed3611f37565b73ffffffffffffffffffffffffffffffffffffffff1614611f29576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f2090614d3f565b60405180910390fd5b611f33828261327f565b5050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060028054611f7090615248565b80601f0160208091040260200160405190810160405280929190818152602001828054611f9c90615248565b8015611fe95780601f10611fbe57610100808354040283529160200191611fe9565b820191906000526020600020905b815481529060010190602001808311611fcc57829003601f168201915b5050505050905090565b60135481565b612001612c0c565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561206f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161206690614d7f565b60405180910390fd5b806006600061207c612c0c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16612129612c0c565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161216e9190614ae7565b60405180910390a35050565b600d60009054906101000a900460ff1681565b600f5481565b61219b612c0c565b73ffffffffffffffffffffffffffffffffffffffff166121b9611f37565b73ffffffffffffffffffffffffffffffffffffffff161461220f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161220690614d3f565b60405180910390fd5b600d60009054906101000a900460ff1615600d60006101000a81548160ff021916908315150217905550565b60145481565b61224c848484612cc6565b61225884848484613566565b612297576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161228e90614ddf565b60405180910390fd5b50505050565b60115481565b60105481565b6122b1612c0c565b73ffffffffffffffffffffffffffffffffffffffff166122cf611f37565b73ffffffffffffffffffffffffffffffffffffffff1614612325576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161231c90614d3f565b60405180910390fd5b8060128190555050565b612337612c0c565b73ffffffffffffffffffffffffffffffffffffffff16612355611f37565b73ffffffffffffffffffffffffffffffffffffffff16146123ab576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123a290614d3f565b60405180910390fd5b8060168190555050565b60606123c082612bff565b6123ff576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123f690614d5f565b60405180910390fd5b60006124096136fd565b905060008151116124295760405180602001604052806000815250612454565b806124338461378f565b604051602001612444929190614a5c565b6040516020818303038152906040525b915050919050565b600d60009054906101000a900460ff166124ab576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124a290614e3f565b60405180910390fd5b600f54600b60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205410156125bc576000600b60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054600f54612543919061510e565b9050600081851015612556576000612563565b8185612562919061510e565b5b9050806017546125739190615080565b3410156125b5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125ac90614bbf565b60405180910390fd5b505061260d565b601754836125ca9190615080565b34101561260c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161260390614e9f565b60405180910390fd5b5b60125483600b60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461265b9190614ff9565b111561269c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161269390614cdf565b60405180910390fd5b6011548311156126e1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126d890614c5f565b60405180910390fd5b6000336040516020016126f49190614a41565b60405160208183030381529060405280519060200120905061275a838380806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f82011690508083019250505050505050600e54836138f0565b612799576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161279090614bdf565b60405180910390fd5b601554846127a56110ae565b6127af9190614ff9565b11156127f0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127e790614d1f565b60405180910390fd5b83600b60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461283f9190614ff9565b92505081905550612850338561327f565b50505050565b60155481565b60075481565b600061286d82613907565b9050919050565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b612910612c0c565b73ffffffffffffffffffffffffffffffffffffffff1661292e611f37565b73ffffffffffffffffffffffffffffffffffffffff1614612984576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161297b90614d3f565b60405180910390fd5b61298e338261327f565b50565b612999612c0c565b73ffffffffffffffffffffffffffffffffffffffff166129b7611f37565b73ffffffffffffffffffffffffffffffffffffffff1614612a0d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a0490614d3f565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612a7d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a7490614b7f565b60405180910390fd5b612a86816134a0565b50565b612a91612c0c565b73ffffffffffffffffffffffffffffffffffffffff16612aaf611f37565b73ffffffffffffffffffffffffffffffffffffffff1614612b05576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612afc90614d3f565b60405180910390fd5b8060138190555050565b612b17612c0c565b73ffffffffffffffffffffffffffffffffffffffff16612b35611f37565b73ffffffffffffffffffffffffffffffffffffffff1614612b8b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b8290614d3f565b60405180910390fd5b8060178190555050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6000805482109050919050565b600033905090565b826005600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b6000612cd18261329d565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff16612cf8612c0c565b73ffffffffffffffffffffffffffffffffffffffff161480612d545750612d1d612c0c565b73ffffffffffffffffffffffffffffffffffffffff16612d3c84610f0a565b73ffffffffffffffffffffffffffffffffffffffff16145b80612d705750612d6f8260000151612d6a612c0c565b612874565b5b905080612db2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612da990614d9f565b60405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff1614612e24576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e1b90614cff565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612e94576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e8b90614c3f565b60405180910390fd5b612ea185858560016139f0565b612eb16000848460000151612c14565b6001600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff16612f1f91906150da565b92506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff1602179055506001600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff16612fc39190614fb3565b92506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060405180604001604052808573ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506003600085815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555090505060006001846130c99190614ff9565b9050600073ffffffffffffffffffffffffffffffffffffffff166003600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16141561320f5761313f81612bff565b1561320e576040518060400160405280846000015173ffffffffffffffffffffffffffffffffffffffff168152602001846020015167ffffffffffffffff168152506003600083815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055509050505b5b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461327786868660016139f6565b505050505050565b6132998282604051806020016040528060008152506139fc565b5050565b6132a561401c565b6132ae82612bff565b6132ed576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016132e490614b9f565b60405180910390fd5b60007f000000000000000000000000000000000000000000000000000000000000014d83106133515760017f000000000000000000000000000000000000000000000000000000000000014d84613344919061510e565b61334e9190614ff9565b90505b60008390505b81811061345f576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461344b5780935050505061349b565b5080806134579061521e565b915050613357565b506040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161349290614e7f565b60405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60006135878473ffffffffffffffffffffffffffffffffffffffff16613edb565b156136f0578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026135b0612c0c565b8786866040518563ffffffff1660e01b81526004016135d29493929190614a9b565b602060405180830381600087803b1580156135ec57600080fd5b505af192505050801561361d57506040513d601f19601f8201168201806040525081019061361a919061442a565b60015b6136a0573d806000811461364d576040519150601f19603f3d011682016040523d82523d6000602084013e613652565b606091505b50600081511415613698576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161368f90614ddf565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506136f5565b600190505b949350505050565b6060600c805461370c90615248565b80601f016020809104026020016040519081016040528092919081815260200182805461373890615248565b80156137855780601f1061375a57610100808354040283529160200191613785565b820191906000526020600020905b81548152906001019060200180831161376857829003601f168201915b5050505050905090565b606060008214156137d7576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506138eb565b600082905060005b600082146138095780806137f2906152ab565b915050600a82613802919061504f565b91506137df565b60008167ffffffffffffffff81111561382557613824615405565b5b6040519080825280601f01601f1916602001820160405280156138575781602001600182028036833780820191505090505b5090505b600085146138e457600182613870919061510e565b9150600a8561387f9190615318565b603061388b9190614ff9565b60f81b8183815181106138a1576138a06153d6565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856138dd919061504f565b945061385b565b8093505050505b919050565b6000826138fd8584613efe565b1490509392505050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613978576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161396f90614c7f565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160109054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b50505050565b50505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415613a72576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613a6990614e1f565b60405180910390fd5b613a7b81612bff565b15613abb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613ab290614dff565b60405180910390fd5b7f000000000000000000000000000000000000000000000000000000000000014d831115613b1e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613b1590614edf565b60405180910390fd5b613b2b60008583866139f0565b6000600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206040518060400160405290816000820160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff1681526020016000820160109054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff168152505090506040518060400160405280858360000151613c289190614fb3565b6fffffffffffffffffffffffffffffffff168152602001858360200151613c4f9190614fb3565b6fffffffffffffffffffffffffffffffff16815250600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008201518160000160006101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060208201518160000160106101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555090505060405180604001604052808673ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506003600084815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550905050600082905060005b85811015613ebe57818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4613e5e6000888488613566565b613e9d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613e9490614ddf565b60405180910390fd5b8180613ea8906152ab565b9250508080613eb6906152ab565b915050613ded565b5080600081905550613ed360008785886139f6565b505050505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008082905060005b8451811015613f4957613f3482868381518110613f2757613f266153d6565b5b6020026020010151613f54565b91508080613f41906152ab565b915050613f07565b508091505092915050565b6000818310613f6c57613f678284613f7f565b613f77565b613f768383613f7f565b5b905092915050565b600082600052816020526040600020905092915050565b828054613fa290615248565b90600052602060002090601f016020900481019282613fc4576000855561400b565b82601f10613fdd57803560ff191683800117855561400b565b8280016001018555821561400b579182015b8281111561400a578235825591602001919060010190613fef565b5b5090506140189190614056565b5090565b6040518060400160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681525090565b5b8082111561406f576000816000905550600101614057565b5090565b600061408661408184614f3f565b614f1a565b9050828152602081018484840111156140a2576140a1615443565b5b6140ad8482856151dc565b509392505050565b6000813590506140c481615c82565b92915050565b60008083601f8401126140e0576140df615439565b5b8235905067ffffffffffffffff8111156140fd576140fc615434565b5b6020830191508360208202830111156141195761411861543e565b5b9250929050565b60008135905061412f81615c99565b92915050565b60008135905061414481615cb0565b92915050565b60008135905061415981615cc7565b92915050565b60008151905061416e81615cc7565b92915050565b600082601f83011261418957614188615439565b5b8135614199848260208601614073565b91505092915050565b60008083601f8401126141b8576141b7615439565b5b8235905067ffffffffffffffff8111156141d5576141d4615434565b5b6020830191508360018202830111156141f1576141f061543e565b5b9250929050565b60008135905061420781615cde565b92915050565b6000602082840312156142235761422261544d565b5b6000614231848285016140b5565b91505092915050565b600080604083850312156142515761425061544d565b5b600061425f858286016140b5565b9250506020614270858286016140b5565b9150509250929050565b6000806000606084860312156142935761429261544d565b5b60006142a1868287016140b5565b93505060206142b2868287016140b5565b92505060406142c3868287016141f8565b9150509250925092565b600080600080608085870312156142e7576142e661544d565b5b60006142f5878288016140b5565b9450506020614306878288016140b5565b9350506040614317878288016141f8565b925050606085013567ffffffffffffffff81111561433857614337615448565b5b61434487828801614174565b91505092959194509250565b600080604083850312156143675761436661544d565b5b6000614375858286016140b5565b925050602061438685828601614120565b9150509250929050565b600080604083850312156143a7576143a661544d565b5b60006143b5858286016140b5565b92505060206143c6858286016141f8565b9150509250929050565b6000602082840312156143e6576143e561544d565b5b60006143f484828501614135565b91505092915050565b6000602082840312156144135761441261544d565b5b60006144218482850161414a565b91505092915050565b6000602082840312156144405761443f61544d565b5b600061444e8482850161415f565b91505092915050565b6000806020838503121561446e5761446d61544d565b5b600083013567ffffffffffffffff81111561448c5761448b615448565b5b614498858286016141a2565b92509250509250929050565b6000602082840312156144ba576144b961544d565b5b60006144c8848285016141f8565b91505092915050565b6000806000604084860312156144ea576144e961544d565b5b60006144f8868287016141f8565b935050602084013567ffffffffffffffff81111561451957614518615448565b5b614525868287016140ca565b92509250509250925092565b61453a81615142565b82525050565b61455161454c82615142565b6152f4565b82525050565b61456081615154565b82525050565b61456f81615160565b82525050565b600061458082614f70565b61458a8185614f86565b935061459a8185602086016151eb565b6145a381615452565b840191505092915050565b60006145b982614f7b565b6145c38185614f97565b93506145d38185602086016151eb565b6145dc81615452565b840191505092915050565b60006145f282614f7b565b6145fc8185614fa8565b935061460c8185602086016151eb565b80840191505092915050565b6000614625602283614f97565b915061463082615470565b604082019050919050565b6000614648601e83614f97565b9150614653826154bf565b602082019050919050565b600061466b602683614f97565b9150614676826154e8565b604082019050919050565b600061468e602a83614f97565b915061469982615537565b604082019050919050565b60006146b1602583614f97565b91506146bc82615586565b604082019050919050565b60006146d4601983614f97565b91506146df826155d5565b602082019050919050565b60006146f7602183614f97565b9150614702826155fe565b604082019050919050565b600061471a602383614f97565b91506147258261564d565b604082019050919050565b600061473d602583614f97565b91506147488261569c565b604082019050919050565b6000614760601f83614f97565b915061476b826156eb565b602082019050919050565b6000614783603183614f97565b915061478e82615714565b604082019050919050565b60006147a6603983614f97565b91506147b182615763565b604082019050919050565b60006147c9602b83614f97565b91506147d4826157b2565b604082019050919050565b60006147ec601883614f97565b91506147f782615801565b602082019050919050565b600061480f602683614f97565b915061481a8261582a565b604082019050919050565b6000614832601183614f97565b915061483d82615879565b602082019050919050565b6000614855602083614f97565b9150614860826158a2565b602082019050919050565b6000614878602f83614f97565b9150614883826158cb565b604082019050919050565b600061489b601a83614f97565b91506148a68261591a565b602082019050919050565b60006148be603283614f97565b91506148c982615943565b604082019050919050565b60006148e1602283614f97565b91506148ec82615992565b604082019050919050565b6000614904603383614f97565b915061490f826159e1565b604082019050919050565b6000614927601d83614f97565b915061493282615a30565b602082019050919050565b600061494a602183614f97565b915061495582615a59565b604082019050919050565b600061496d602183614f97565b915061497882615aa8565b604082019050919050565b6000614990602e83614f97565b915061499b82615af7565b604082019050919050565b60006149b3602f83614f97565b91506149be82615b46565b604082019050919050565b60006149d6602483614f97565b91506149e182615b95565b604082019050919050565b60006149f9602d83614f97565b9150614a0482615be4565b604082019050919050565b6000614a1c602283614f97565b9150614a2782615c33565b604082019050919050565b614a3b816151d2565b82525050565b6000614a4d8284614540565b60148201915081905092915050565b6000614a6882856145e7565b9150614a7482846145e7565b91508190509392505050565b6000602082019050614a956000830184614531565b92915050565b6000608082019050614ab06000830187614531565b614abd6020830186614531565b614aca6040830185614a32565b8181036060830152614adc8184614575565b905095945050505050565b6000602082019050614afc6000830184614557565b92915050565b6000602082019050614b176000830184614566565b92915050565b60006020820190508181036000830152614b3781846145ae565b905092915050565b60006020820190508181036000830152614b5881614618565b9050919050565b60006020820190508181036000830152614b788161463b565b9050919050565b60006020820190508181036000830152614b988161465e565b9050919050565b60006020820190508181036000830152614bb881614681565b9050919050565b60006020820190508181036000830152614bd8816146a4565b9050919050565b60006020820190508181036000830152614bf8816146c7565b9050919050565b60006020820190508181036000830152614c18816146ea565b9050919050565b60006020820190508181036000830152614c388161470d565b9050919050565b60006020820190508181036000830152614c5881614730565b9050919050565b60006020820190508181036000830152614c7881614753565b9050919050565b60006020820190508181036000830152614c9881614776565b9050919050565b60006020820190508181036000830152614cb881614799565b9050919050565b60006020820190508181036000830152614cd8816147bc565b9050919050565b60006020820190508181036000830152614cf8816147df565b9050919050565b60006020820190508181036000830152614d1881614802565b9050919050565b60006020820190508181036000830152614d3881614825565b9050919050565b60006020820190508181036000830152614d5881614848565b9050919050565b60006020820190508181036000830152614d788161486b565b9050919050565b60006020820190508181036000830152614d988161488e565b9050919050565b60006020820190508181036000830152614db8816148b1565b9050919050565b60006020820190508181036000830152614dd8816148d4565b9050919050565b60006020820190508181036000830152614df8816148f7565b9050919050565b60006020820190508181036000830152614e188161491a565b9050919050565b60006020820190508181036000830152614e388161493d565b9050919050565b60006020820190508181036000830152614e5881614960565b9050919050565b60006020820190508181036000830152614e7881614983565b9050919050565b60006020820190508181036000830152614e98816149a6565b9050919050565b60006020820190508181036000830152614eb8816149c9565b9050919050565b60006020820190508181036000830152614ed8816149ec565b9050919050565b60006020820190508181036000830152614ef881614a0f565b9050919050565b6000602082019050614f146000830184614a32565b92915050565b6000614f24614f35565b9050614f30828261527a565b919050565b6000604051905090565b600067ffffffffffffffff821115614f5a57614f59615405565b5b614f6382615452565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000614fbe82615196565b9150614fc983615196565b9250826fffffffffffffffffffffffffffffffff03821115614fee57614fed615349565b5b828201905092915050565b6000615004826151d2565b915061500f836151d2565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561504457615043615349565b5b828201905092915050565b600061505a826151d2565b9150615065836151d2565b92508261507557615074615378565b5b828204905092915050565b600061508b826151d2565b9150615096836151d2565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156150cf576150ce615349565b5b828202905092915050565b60006150e582615196565b91506150f083615196565b92508282101561510357615102615349565b5b828203905092915050565b6000615119826151d2565b9150615124836151d2565b92508282101561513757615136615349565b5b828203905092915050565b600061514d826151b2565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b60006fffffffffffffffffffffffffffffffff82169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b838110156152095780820151818401526020810190506151ee565b83811115615218576000848401525b50505050565b6000615229826151d2565b9150600082141561523d5761523c615349565b5b600182039050919050565b6000600282049050600182168061526057607f821691505b60208210811415615274576152736153a7565b5b50919050565b61528382615452565b810181811067ffffffffffffffff821117156152a2576152a1615405565b5b80604052505050565b60006152b6826151d2565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156152e9576152e8615349565b5b600182019050919050565b60006152ff82615306565b9050919050565b600061531182615463565b9050919050565b6000615323826151d2565b915061532e836151d2565b92508261533e5761533d615378565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b60008160601b9050919050565b7f455243373231413a206f776e657220696e646578206f7574206f6620626f756e60008201527f6473000000000000000000000000000000000000000000000000000000000000602082015250565b7f446f6f6265616e7a3a204d696e74696e67205075626c69632050617573650000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a206f776e657220717565727920666f72206e6f6e6578697360008201527f74656e7420746f6b656e00000000000000000000000000000000000000000000602082015250565b7f446f6f6265616e7a3a20496e73756666696369656e742045746820436c61696d60008201527f2046726565000000000000000000000000000000000000000000000000000000602082015250565b7f446f6f6265616e7a3a204e6f742077686974656c697374656400000000000000600082015250565b7f446f6f6265616e7a3a20496e73756666696369656e7420457468205075626c6960008201527f6300000000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f7560008201527f6e64730000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f446f6f6265616e7a3a204c696d697420506572205472616e73616374696f6e00600082015250565b7f455243373231413a206e756d626572206d696e74656420717565727920666f7260008201527f20746865207a65726f2061646472657373000000000000000000000000000000602082015250565b7f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000602082015250565b7f455243373231413a2062616c616e636520717565727920666f7220746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b7f446f6f6265616e7a3a204d6178205065722057616c6c65740000000000000000600082015250565b7f455243373231413a207472616e736665722066726f6d20696e636f727265637460008201527f206f776e65720000000000000000000000000000000000000000000000000000602082015250565b7f446f6f6265616e7a3a20536f6c646f7574000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f455243373231413a20617070726f766520746f2063616c6c6572000000000000600082015250565b7f455243373231413a207472616e736665722063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b7f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60008201527f6572000000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e7366657220746f206e6f6e204552433732315260008201527f6563656976657220696d706c656d656e74657200000000000000000000000000602082015250565b7f455243373231413a20746f6b656e20616c7265616479206d696e746564000000600082015250565b7f455243373231413a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f446f6f6265616e7a3a204d696e74696e672057686974656c697374205061757360008201527f6500000000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060008201527f6f776e657220627920696e646578000000000000000000000000000000000000602082015250565b7f455243373231413a20756e61626c6520746f2064657465726d696e652074686560008201527f206f776e6572206f6620746f6b656e0000000000000000000000000000000000602082015250565b7f446f6f6265616e7a3a20496e73756666696369656e742045746820576869746560008201527f6c69737400000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560008201527f78697374656e7420746f6b656e00000000000000000000000000000000000000602082015250565b7f455243373231413a207175616e7469747920746f206d696e7420746f6f20686960008201527f6768000000000000000000000000000000000000000000000000000000000000602082015250565b615c8b81615142565b8114615c9657600080fd5b50565b615ca281615154565b8114615cad57600080fd5b50565b615cb981615160565b8114615cc457600080fd5b50565b615cd08161516a565b8114615cdb57600080fd5b50565b615ce7816151d2565b8114615cf257600080fd5b5056fea2646970667358221220f45cf3ae0c7df3b21c674ec3f213b6868d8ad05adb80243fa6c624fc51dc298c64736f6c63430008070033

Deployed Bytecode Sourcemap

275:5123:12:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4251:370:13;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5977:94;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7502:204;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7065:379;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;861:42:12;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2812:94:13;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5169:102:12;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;8352:142:13;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;708:30:12;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;339:48;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3895:103;;;;;;;;;;;;;:::i;:::-;;2172:900;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;573:25;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3443:744:13;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;922:45:12;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3080:119;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5279:116;;;;;;;;;;;;;:::i;:::-;;8557:157:13;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;394:51:12;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4937:104;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;2975:177:13;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4130:102:12;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;4451;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;5800:118:13;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3207:125:12;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;452:21;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;529:37;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4677:211:13;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1668:101:0;;;;;;;;;;;;;:::i;:::-;;5049:112:12;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;3577:90;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;4803:126;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;3675:103;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1036:85:0;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6132:98:13;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;745:30:12;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7770:274:13;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;482:40:12;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;605:25;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4010:112;;;;;;;;;;;;;:::i;:::-;;784:35;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8777:311:13;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;673:26:12;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;637:29;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4561:118;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;4345:98;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;6293:394:13;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1052:1112:12;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;826:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13192:43:13;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3340:113:12;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8107:186:13;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3786:101:12;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1918:198:0;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;4685:110:12;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;4240:97;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;4251:370:13;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;861:42:12:-;;;;:::o;2812:94:13:-;2865:7;2888:12;;2881:19;;2812:94;:::o;5169:102:12:-;1259:12:0;:10;:12::i;:::-;1248:23;;:7;:5;:7::i;:::-;:23;;;1240:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;5253:10:12::1;5241:9;:22;;;;5169:102:::0;:::o;8352:142:13:-;8460:28;8470:4;8476:2;8480:7;8460:9;:28::i;:::-;8352:142;;;:::o;708:30:12:-;;;;:::o;339:48::-;;;;;;;;;;;;;;;;;:::o;3895:103::-;1259:12:0;:10;:12::i;:::-;1248:23;;:7;:5;:7::i;:::-;:23;;;1240:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;3973:17:12::1;;;;;;;;;;;3972:18;3952:17;;:38;;;;;;;;;;;;;;;;;;3895:103::o:0;2172:900::-;2246:17;;;;;;;;;;;2238:60;;;;;;;;;;;;:::i;:::-;;;;;;;;;2339:13;;2312:12;:24;2325:10;2312:24;;;;;;;;;;;;;;;;:40;2309:430;;;2378:17;2414:12;:24;2427:10;2414:24;;;;;;;;;;;;;;;;2398:13;;:40;;;;:::i;:::-;2378:60;;2452:9;2471:12;2464:3;:19;;:44;;2507:1;2464:44;;;2492:12;2486:3;:18;;;;:::i;:::-;2464:44;2452:56;;2557:4;2543:11;;:18;;;;:::i;:::-;2530:9;:31;;2522:80;;;;;;;;;;;;:::i;:::-;;;;;;;;;2364:250;;2309:430;;;2679:11;;2673:3;:17;;;;:::i;:::-;2660:9;:30;;2652:75;;;;;;;;;;;;:::i;:::-;;;;;;;;;2309:430;2791:18;;2784:3;2757:12;:24;2770:10;2757:24;;;;;;;;;;;;;;;;:30;;;;:::i;:::-;:52;;2749:88;;;;;;;;;;;;:::i;:::-;;;;;;;;;2863:14;;2856:3;:21;;2848:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;2955:9;;2948:3;2932:13;:11;:13::i;:::-;:19;;;;:::i;:::-;:32;;2924:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;3024:3;2996:12;:24;3009:10;2996:24;;;;;;;;;;;;;;;;:31;;;;;;;:::i;:::-;;;;;;;;3038:26;3048:10;3060:3;3038:9;:26::i;:::-;2172:900;:::o;573:25::-;;;;:::o;3443:744:13:-;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;922:45:12:-;;;;:::o;3080:119::-;3143:7;3169:12;:22;3182:8;3169:22;;;;;;;;;;;;;;;;3162:29;;3080:119;;;:::o;5279:116::-;1259:12:0;:10;:12::i;:::-;1248:23;;:7;:5;:7::i;:::-;:23;;;1240:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;5335:10:12::1;5327:28;;:60;5372:4;5356:30;;;5327:60;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;5279:116::o:0;8557:157:13:-;8669:39;8686:4;8692:2;8696:7;8669:39;;;;;;;;;;;;:16;:39::i;:::-;8557:157;;;:::o;394:51:12:-;;;;;;;;;;;;;;;;;:::o;4937:104::-;1259:12:0;:10;:12::i;:::-;1248:23;;:7;:5;:7::i;:::-;:23;;;1240:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;5025:8:12::1;5013:9;:20;;;;4937:104:::0;:::o;2975:177:13:-;3042:7;3074:13;:11;:13::i;:::-;3066:5;:21;3058:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;3141:5;3134:12;;2975:177;;;:::o;4130:102:12:-;1259:12:0;:10;:12::i;:::-;1248:23;;:7;:5;:7::i;:::-;:23;;;1240:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;4216:8:12::1;;4206:7;:18;;;;;;;:::i;:::-;;4130:102:::0;;:::o;4451:::-;1259:12:0;:10;:12::i;:::-;1248:23;;:7;:5;:7::i;:::-;:23;;;1240:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;4536:9:12::1;4523:10;:22;;;;4451:102:::0;:::o;5800:118:13:-;5864:7;5887:20;5899:7;5887:11;:20::i;:::-;:25;;;5880:32;;5800:118;;;:::o;3207:125:12:-;3273:7;3299:15;:25;3315:8;3299:25;;;;;;;;;;;;;;;;3292:32;;3207:125;;;:::o;452:21::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;529:37::-;;;;;;;;;;;;;:::o;4677:211:13:-;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;1668:101:0:-;1259:12;:10;:12::i;:::-;1248:23;;:7;:5;:7::i;:::-;:23;;;1240:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;1732:30:::1;1759:1;1732:18;:30::i;:::-;1668:101::o:0;5049:112:12:-;1259:12:0;:10;:12::i;:::-;1248:23;;:7;:5;:7::i;:::-;:23;;;1240:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;5145:8:12::1;5129:13;:24;;;;5049:112:::0;:::o;3577:90::-;1259:12:0;:10;:12::i;:::-;1248:23;;:7;:5;:7::i;:::-;:23;;;1240:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;3655:4:12::1;3642:10;:17;;;;3577:90:::0;:::o;4803:126::-;1259:12:0;:10;:12::i;:::-;1248:23;;:7;:5;:7::i;:::-;:23;;;1240:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;4908:13:12::1;4887:18;:34;;;;4803:126:::0;:::o;3675:103::-;1259:12:0;:10;:12::i;:::-;1248:23;;:7;:5;:7::i;:::-;:23;;;1240:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;3752:18:12::1;3762:2;3766:3;3752:9;:18::i;:::-;3675:103:::0;;:::o;1036:85:0:-;1082:7;1108:6;;;;;;;;;;;1101:13;;1036:85;:::o;6132:98:13:-;6188:13;6217:7;6210:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6132:98;:::o;745:30:12:-;;;;:::o;7770:274:13:-;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;482:40:12:-;;;;;;;;;;;;;:::o;605:25::-;;;;:::o;4010:112::-;1259:12:0;:10;:12::i;:::-;1248:23;;:7;:5;:7::i;:::-;:23;;;1240:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;4094:20:12::1;;;;;;;;;;;4093:21;4070:20;;:44;;;;;;;;;;;;;;;;;;4010:112::o:0;784:35::-;;;;:::o;8777:311:13:-;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;673:26:12:-;;;;:::o;637:29::-;;;;:::o;4561:118::-;1259:12:0;:10;:12::i;:::-;1248:23;;:7;:5;:7::i;:::-;:23;;;1240:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;4658:13:12::1;4641:14;:30;;;;4561:118:::0;:::o;4345:98::-;1259:12:0;:10;:12::i;:::-;1248:23;;:7;:5;:7::i;:::-;:23;;;1240:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;4429:6:12::1;4415:11;:20;;;;4345:98:::0;:::o;6293:394:13:-;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;1052:1112:12:-;1163:20;;;;;;;;;;;1155:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;1265:9;;1235:15;:27;1251:10;1235:27;;;;;;;;;;;;;;;;:39;1232:437;;;1300:17;1332:15;:27;1348:10;1332:27;;;;;;;;;;;;;;;;1320:9;;:39;;;;:::i;:::-;1300:59;;1373:9;1392:12;1385:3;:19;;:44;;1428:1;1385:44;;;1413:12;1407:3;:18;;;;:::i;:::-;1385:44;1373:56;;1481:4;1464:14;;:21;;;;:::i;:::-;1451:9;:34;;1443:83;;;;;;;;;;;;:::i;:::-;;;;;;;;;1286:252;;1232:437;;;1603:14;;1597:3;:20;;;;:::i;:::-;1584:9;:33;;1576:81;;;;;;;;;;;;:::i;:::-;;;;;;;;;1232:437;1724:14;;1717:3;1687:15;:27;1703:10;1687:27;;;;;;;;;;;;;;;;:33;;;;:::i;:::-;:51;;1679:87;;;;;;;;;;;;:::i;:::-;;;;;;;;;1792:10;;1785:3;:17;;1777:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;1849:12;1891:10;1874:28;;;;;;;;:::i;:::-;;;;;;;;;;;;;1864:39;;;;;;1849:54;;1922:50;1941:12;;1922:50;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1955:10;;1967:4;1922:18;:50::i;:::-;1914:88;;;;;;;;;;;;:::i;:::-;;;;;;;;;2044:9;;2037:3;2021:13;:11;:13::i;:::-;:19;;;;:::i;:::-;:32;;2013:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;2116:3;2085:15;:27;2101:10;2085:27;;;;;;;;;;;;;;;;:34;;;;;;;:::i;:::-;;;;;;;;2130:26;2140:10;2152:3;2130:9;:26::i;:::-;1143:1021;1052:1112;;;:::o;826:28::-;;;;:::o;13192:43:13:-;;;;:::o;3340:113:12:-;3398:7;3425:20;3439:5;3425:13;:20::i;:::-;3418:27;;3340:113;;;:::o;8107:186:13:-;8229:4;8252:18;:25;8271:5;8252:25;;;;;;;;;;;;;;;:35;8278:8;8252:35;;;;;;;;;;;;;;;;;;;;;;;;;8245:42;;8107:186;;;;:::o;3786:101:12:-;1259:12:0;:10;:12::i;:::-;1248:23;;:7;:5;:7::i;:::-;:23;;;1240:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;3853:26:12::1;3863:10;3875:3;3853:9;:26::i;:::-;3786:101:::0;:::o;1918:198:0:-;1259:12;:10;:12::i;:::-;1248:23;;:7;:5;:7::i;:::-;:23;;;1240:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2026:1:::1;2006:22;;:8;:22;;;;1998:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;2081:28;2100:8;2081:18;:28::i;:::-;1918:198:::0;:::o;4685:110:12:-;1259:12:0;:10;:12::i;:::-;1248:23;;:7;:5;:7::i;:::-;:23;;;1240:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;4778:9:12::1;4761:14;:26;;;;4685:110:::0;:::o;4240:97::-;1259:12:0;:10;:12::i;:::-;1248:23;;:7;:5;:7::i;:::-;:23;;;1240:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;4323:6:12::1;4306:14;:23;;;;4240:97:::0;:::o;829:155:10:-;914:4;952:25;937:40;;;:11;:40;;;;930:47;;829:155;;;:::o;9327:105:13:-;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:13:-;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;9438:98::-;9503:27;9513:2;9517:8;9503:27;;;;;;;;;;;;:9;:27::i;:::-;9438:98;;:::o;5140:606::-;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;2270:187:0:-;2343:16;2362:6;;;;;;;;;;;2343:25;;2387:8;2378:6;;:17;;;;;;;;;;;;;;;;;;2441:8;2410:40;;2431:8;2410:40;;;;;;;;;;;;2333:124;2270:187;:::o;14729:690:13:-;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;3461:108:12:-;3521:13;3554:7;3547:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3461: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;1153:184:9:-;1274:4;1326;1297:25;1310:5;1317:4;1297:12;:25::i;:::-;:33;1290:40;;1153:184;;;;;:::o;4894:240:13:-;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;1991:290:9:-;2074:7;2093:20;2116:4;2093:27;;2135:9;2130:116;2154:5;:12;2150:1;:16;2130:116;;;2202:33;2212:12;2226:5;2232:1;2226:8;;;;;;;;:::i;:::-;;;;;;;;2202:9;:33::i;:::-;2187:48;;2168:3;;;;;:::i;:::-;;;;2130:116;;;;2262:12;2255:19;;;1991:290;;;;:::o;8054:147::-;8117:7;8147:1;8143;:5;:51;;8174:20;8189:1;8192;8174:14;:20::i;:::-;8143:51;;;8151:20;8166:1;8169;8151:14;:20::i;:::-;8143:51;8136:58;;8054:147;;;;:::o;8207:261::-;8275:13;8379:1;8373:4;8366:15;8407:1;8401:4;8394:15;8447:4;8441;8431:21;8422:30;;8207:261;;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:410:14:-;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:139::-;1344:5;1382:6;1369:20;1360:29;;1398:33;1425:5;1398:33;:::i;:::-;1298:139;;;;:::o;1443:137::-;1488:5;1526:6;1513:20;1504:29;;1542:32;1568:5;1542:32;:::i;:::-;1443:137;;;;:::o;1586:141::-;1642:5;1673:6;1667:13;1658:22;;1689:32;1715:5;1689:32;:::i;:::-;1586:141;;;;:::o;1746:338::-;1801:5;1850:3;1843:4;1835:6;1831:17;1827:27;1817:122;;1858:79;;:::i;:::-;1817:122;1975:6;1962:20;2000:78;2074:3;2066:6;2059:4;2051:6;2047:17;2000:78;:::i;:::-;1991:87;;1807:277;1746:338;;;;:::o;2104:553::-;2162:8;2172:6;2222:3;2215:4;2207:6;2203:17;2199:27;2189:122;;2230:79;;:::i;:::-;2189:122;2343:6;2330:20;2320:30;;2373:18;2365:6;2362:30;2359:117;;;2395:79;;:::i;:::-;2359:117;2509:4;2501:6;2497:17;2485:29;;2563:3;2555:4;2547:6;2543:17;2533:8;2529:32;2526:41;2523:128;;;2570:79;;:::i;:::-;2523:128;2104:553;;;;;:::o;2663:139::-;2709:5;2747:6;2734:20;2725:29;;2763:33;2790:5;2763:33;:::i;:::-;2663:139;;;;:::o;2808:329::-;2867:6;2916:2;2904:9;2895:7;2891:23;2887:32;2884:119;;;2922:79;;:::i;:::-;2884:119;3042:1;3067:53;3112:7;3103:6;3092:9;3088:22;3067:53;:::i;:::-;3057:63;;3013:117;2808:329;;;;:::o;3143:474::-;3211:6;3219;3268:2;3256:9;3247:7;3243:23;3239:32;3236:119;;;3274:79;;:::i;:::-;3236:119;3394:1;3419:53;3464:7;3455:6;3444:9;3440:22;3419:53;:::i;:::-;3409:63;;3365:117;3521:2;3547:53;3592:7;3583:6;3572:9;3568:22;3547:53;:::i;:::-;3537:63;;3492:118;3143:474;;;;;:::o;3623:619::-;3700:6;3708;3716;3765:2;3753:9;3744:7;3740:23;3736:32;3733:119;;;3771:79;;:::i;:::-;3733:119;3891:1;3916:53;3961:7;3952:6;3941:9;3937:22;3916:53;:::i;:::-;3906:63;;3862:117;4018:2;4044:53;4089:7;4080:6;4069:9;4065:22;4044:53;:::i;:::-;4034:63;;3989:118;4146:2;4172:53;4217:7;4208:6;4197:9;4193:22;4172:53;:::i;:::-;4162:63;;4117:118;3623:619;;;;;:::o;4248:943::-;4343:6;4351;4359;4367;4416:3;4404:9;4395:7;4391:23;4387:33;4384:120;;;4423:79;;:::i;:::-;4384:120;4543:1;4568:53;4613:7;4604:6;4593:9;4589:22;4568:53;:::i;:::-;4558:63;;4514:117;4670:2;4696:53;4741:7;4732:6;4721:9;4717:22;4696:53;:::i;:::-;4686:63;;4641:118;4798:2;4824:53;4869:7;4860:6;4849:9;4845:22;4824:53;:::i;:::-;4814:63;;4769:118;4954:2;4943:9;4939:18;4926:32;4985:18;4977:6;4974:30;4971:117;;;5007:79;;:::i;:::-;4971:117;5112:62;5166:7;5157:6;5146:9;5142:22;5112:62;:::i;:::-;5102:72;;4897:287;4248:943;;;;;;;:::o;5197:468::-;5262:6;5270;5319:2;5307:9;5298:7;5294:23;5290:32;5287:119;;;5325:79;;:::i;:::-;5287:119;5445:1;5470:53;5515:7;5506:6;5495:9;5491:22;5470:53;:::i;:::-;5460:63;;5416:117;5572:2;5598:50;5640:7;5631:6;5620:9;5616:22;5598:50;:::i;:::-;5588:60;;5543:115;5197:468;;;;;:::o;5671:474::-;5739:6;5747;5796:2;5784:9;5775:7;5771:23;5767:32;5764:119;;;5802:79;;:::i;:::-;5764:119;5922:1;5947:53;5992:7;5983:6;5972:9;5968:22;5947:53;:::i;:::-;5937:63;;5893:117;6049:2;6075:53;6120:7;6111:6;6100:9;6096:22;6075:53;:::i;:::-;6065:63;;6020:118;5671:474;;;;;:::o;6151:329::-;6210:6;6259:2;6247:9;6238:7;6234:23;6230:32;6227:119;;;6265:79;;:::i;:::-;6227:119;6385:1;6410:53;6455:7;6446:6;6435:9;6431:22;6410:53;:::i;:::-;6400:63;;6356:117;6151:329;;;;:::o;6486:327::-;6544:6;6593:2;6581:9;6572:7;6568:23;6564:32;6561:119;;;6599:79;;:::i;:::-;6561:119;6719:1;6744:52;6788:7;6779:6;6768:9;6764:22;6744:52;:::i;:::-;6734:62;;6690:116;6486:327;;;;:::o;6819:349::-;6888:6;6937:2;6925:9;6916:7;6912:23;6908:32;6905:119;;;6943:79;;:::i;:::-;6905:119;7063:1;7088:63;7143:7;7134:6;7123:9;7119:22;7088:63;:::i;:::-;7078:73;;7034:127;6819:349;;;;:::o;7174:529::-;7245:6;7253;7302:2;7290:9;7281:7;7277:23;7273:32;7270:119;;;7308:79;;:::i;:::-;7270:119;7456:1;7445:9;7441:17;7428:31;7486:18;7478:6;7475:30;7472:117;;;7508:79;;:::i;:::-;7472:117;7621:65;7678:7;7669:6;7658:9;7654:22;7621:65;:::i;:::-;7603:83;;;;7399:297;7174:529;;;;;:::o;7709:329::-;7768:6;7817:2;7805:9;7796:7;7792:23;7788:32;7785:119;;;7823:79;;:::i;:::-;7785:119;7943:1;7968:53;8013:7;8004:6;7993:9;7989:22;7968:53;:::i;:::-;7958:63;;7914:117;7709:329;;;;:::o;8044:704::-;8139:6;8147;8155;8204:2;8192:9;8183:7;8179:23;8175:32;8172:119;;;8210:79;;:::i;:::-;8172:119;8330:1;8355:53;8400:7;8391:6;8380:9;8376:22;8355:53;:::i;:::-;8345:63;;8301:117;8485:2;8474:9;8470:18;8457:32;8516:18;8508:6;8505:30;8502:117;;;8538:79;;:::i;:::-;8502:117;8651:80;8723:7;8714:6;8703:9;8699:22;8651:80;:::i;:::-;8633:98;;;;8428:313;8044:704;;;;;:::o;8754:118::-;8841:24;8859:5;8841:24;:::i;:::-;8836:3;8829:37;8754:118;;:::o;8878:157::-;8983:45;9003:24;9021:5;9003:24;:::i;:::-;8983:45;:::i;:::-;8978:3;8971:58;8878:157;;:::o;9041:109::-;9122:21;9137:5;9122:21;:::i;:::-;9117:3;9110:34;9041:109;;:::o;9156:118::-;9243:24;9261:5;9243:24;:::i;:::-;9238:3;9231:37;9156:118;;:::o;9280:360::-;9366:3;9394:38;9426:5;9394:38;:::i;:::-;9448:70;9511:6;9506:3;9448:70;:::i;:::-;9441:77;;9527:52;9572:6;9567:3;9560:4;9553:5;9549:16;9527:52;:::i;:::-;9604:29;9626:6;9604:29;:::i;:::-;9599:3;9595:39;9588:46;;9370:270;9280:360;;;;:::o;9646:364::-;9734:3;9762:39;9795:5;9762:39;:::i;:::-;9817:71;9881:6;9876:3;9817:71;:::i;:::-;9810:78;;9897:52;9942:6;9937:3;9930:4;9923:5;9919:16;9897:52;:::i;:::-;9974:29;9996:6;9974:29;:::i;:::-;9969:3;9965:39;9958:46;;9738:272;9646:364;;;;:::o;10016:377::-;10122:3;10150:39;10183:5;10150:39;:::i;:::-;10205:89;10287:6;10282:3;10205:89;:::i;:::-;10198:96;;10303:52;10348:6;10343:3;10336:4;10329:5;10325:16;10303:52;:::i;:::-;10380:6;10375:3;10371:16;10364:23;;10126:267;10016:377;;;;:::o;10399:366::-;10541:3;10562:67;10626:2;10621:3;10562:67;:::i;:::-;10555:74;;10638:93;10727:3;10638:93;:::i;:::-;10756:2;10751:3;10747:12;10740:19;;10399:366;;;:::o;10771:::-;10913:3;10934:67;10998:2;10993:3;10934:67;:::i;:::-;10927:74;;11010:93;11099:3;11010:93;:::i;:::-;11128:2;11123:3;11119:12;11112:19;;10771:366;;;:::o;11143:::-;11285:3;11306:67;11370:2;11365:3;11306:67;:::i;:::-;11299:74;;11382:93;11471:3;11382:93;:::i;:::-;11500:2;11495:3;11491:12;11484:19;;11143:366;;;:::o;11515:::-;11657:3;11678:67;11742:2;11737:3;11678:67;:::i;:::-;11671:74;;11754:93;11843:3;11754:93;:::i;:::-;11872:2;11867:3;11863:12;11856:19;;11515:366;;;:::o;11887:::-;12029:3;12050:67;12114:2;12109:3;12050:67;:::i;:::-;12043:74;;12126:93;12215:3;12126:93;:::i;:::-;12244:2;12239:3;12235:12;12228:19;;11887:366;;;:::o;12259:::-;12401:3;12422:67;12486:2;12481:3;12422:67;:::i;:::-;12415:74;;12498:93;12587:3;12498:93;:::i;:::-;12616:2;12611:3;12607:12;12600:19;;12259:366;;;:::o;12631:::-;12773:3;12794:67;12858:2;12853:3;12794:67;:::i;:::-;12787:74;;12870:93;12959:3;12870:93;:::i;:::-;12988:2;12983:3;12979:12;12972:19;;12631:366;;;:::o;13003:::-;13145:3;13166:67;13230:2;13225:3;13166:67;:::i;:::-;13159:74;;13242:93;13331:3;13242:93;:::i;:::-;13360:2;13355:3;13351:12;13344:19;;13003:366;;;:::o;13375:::-;13517:3;13538:67;13602:2;13597:3;13538:67;:::i;:::-;13531:74;;13614:93;13703:3;13614:93;:::i;:::-;13732:2;13727:3;13723:12;13716:19;;13375:366;;;:::o;13747:::-;13889:3;13910:67;13974:2;13969:3;13910:67;:::i;:::-;13903:74;;13986:93;14075:3;13986:93;:::i;:::-;14104:2;14099:3;14095:12;14088:19;;13747:366;;;:::o;14119:::-;14261:3;14282:67;14346:2;14341:3;14282:67;:::i;:::-;14275:74;;14358:93;14447:3;14358:93;:::i;:::-;14476:2;14471:3;14467:12;14460:19;;14119:366;;;:::o;14491:::-;14633:3;14654:67;14718:2;14713:3;14654:67;:::i;:::-;14647:74;;14730:93;14819:3;14730:93;:::i;:::-;14848:2;14843:3;14839:12;14832:19;;14491:366;;;:::o;14863:::-;15005:3;15026:67;15090:2;15085:3;15026:67;:::i;:::-;15019:74;;15102:93;15191:3;15102:93;:::i;:::-;15220:2;15215:3;15211:12;15204:19;;14863:366;;;:::o;15235:::-;15377:3;15398:67;15462:2;15457:3;15398:67;:::i;:::-;15391:74;;15474:93;15563:3;15474:93;:::i;:::-;15592:2;15587:3;15583:12;15576:19;;15235:366;;;:::o;15607:::-;15749:3;15770:67;15834:2;15829:3;15770:67;:::i;:::-;15763:74;;15846:93;15935:3;15846:93;:::i;:::-;15964:2;15959:3;15955:12;15948:19;;15607:366;;;:::o;15979:::-;16121:3;16142:67;16206:2;16201:3;16142:67;:::i;:::-;16135:74;;16218:93;16307:3;16218:93;:::i;:::-;16336:2;16331:3;16327:12;16320:19;;15979:366;;;:::o;16351:::-;16493:3;16514:67;16578:2;16573:3;16514:67;:::i;:::-;16507:74;;16590:93;16679:3;16590:93;:::i;:::-;16708:2;16703:3;16699:12;16692:19;;16351:366;;;:::o;16723:::-;16865:3;16886:67;16950:2;16945:3;16886:67;:::i;:::-;16879:74;;16962:93;17051:3;16962:93;:::i;:::-;17080:2;17075:3;17071:12;17064:19;;16723:366;;;:::o;17095:::-;17237:3;17258:67;17322:2;17317:3;17258:67;:::i;:::-;17251:74;;17334:93;17423:3;17334:93;:::i;:::-;17452:2;17447:3;17443:12;17436:19;;17095:366;;;:::o;17467:::-;17609:3;17630:67;17694:2;17689:3;17630:67;:::i;:::-;17623:74;;17706:93;17795:3;17706:93;:::i;:::-;17824:2;17819:3;17815:12;17808:19;;17467:366;;;:::o;17839:::-;17981:3;18002:67;18066:2;18061:3;18002:67;:::i;:::-;17995:74;;18078:93;18167:3;18078:93;:::i;:::-;18196:2;18191:3;18187:12;18180:19;;17839:366;;;:::o;18211:::-;18353:3;18374:67;18438:2;18433:3;18374:67;:::i;:::-;18367:74;;18450:93;18539:3;18450:93;:::i;:::-;18568:2;18563:3;18559:12;18552:19;;18211:366;;;:::o;18583:::-;18725:3;18746:67;18810:2;18805:3;18746:67;:::i;:::-;18739:74;;18822:93;18911:3;18822:93;:::i;:::-;18940:2;18935:3;18931:12;18924:19;;18583:366;;;:::o;18955:::-;19097:3;19118:67;19182:2;19177:3;19118:67;:::i;:::-;19111:74;;19194:93;19283:3;19194:93;:::i;:::-;19312:2;19307:3;19303:12;19296:19;;18955:366;;;:::o;19327:::-;19469:3;19490:67;19554:2;19549:3;19490:67;:::i;:::-;19483:74;;19566:93;19655:3;19566:93;:::i;:::-;19684:2;19679:3;19675:12;19668:19;;19327:366;;;:::o;19699:::-;19841:3;19862:67;19926:2;19921:3;19862:67;:::i;:::-;19855:74;;19938:93;20027:3;19938:93;:::i;:::-;20056:2;20051:3;20047:12;20040:19;;19699:366;;;:::o;20071:::-;20213:3;20234:67;20298:2;20293:3;20234:67;:::i;:::-;20227:74;;20310:93;20399:3;20310:93;:::i;:::-;20428:2;20423:3;20419:12;20412:19;;20071:366;;;:::o;20443:::-;20585:3;20606:67;20670:2;20665:3;20606:67;:::i;:::-;20599:74;;20682:93;20771:3;20682:93;:::i;:::-;20800:2;20795:3;20791:12;20784:19;;20443:366;;;:::o;20815:::-;20957:3;20978:67;21042:2;21037:3;20978:67;:::i;:::-;20971:74;;21054:93;21143:3;21054:93;:::i;:::-;21172:2;21167:3;21163:12;21156:19;;20815:366;;;:::o;21187:::-;21329:3;21350:67;21414:2;21409:3;21350:67;:::i;:::-;21343:74;;21426:93;21515:3;21426:93;:::i;:::-;21544:2;21539:3;21535:12;21528:19;;21187:366;;;:::o;21559:118::-;21646:24;21664:5;21646:24;:::i;:::-;21641:3;21634:37;21559:118;;:::o;21683:256::-;21795:3;21810:75;21881:3;21872:6;21810:75;:::i;:::-;21910:2;21905:3;21901:12;21894:19;;21930:3;21923:10;;21683:256;;;;:::o;21945:435::-;22125:3;22147:95;22238:3;22229:6;22147:95;:::i;:::-;22140:102;;22259:95;22350:3;22341:6;22259:95;:::i;:::-;22252:102;;22371:3;22364:10;;21945:435;;;;;:::o;22386:222::-;22479:4;22517:2;22506:9;22502:18;22494:26;;22530:71;22598:1;22587:9;22583:17;22574:6;22530:71;:::i;:::-;22386:222;;;;:::o;22614:640::-;22809:4;22847:3;22836:9;22832:19;22824:27;;22861:71;22929:1;22918:9;22914:17;22905:6;22861:71;:::i;:::-;22942:72;23010:2;22999:9;22995:18;22986:6;22942:72;:::i;:::-;23024;23092:2;23081:9;23077:18;23068:6;23024:72;:::i;:::-;23143:9;23137:4;23133:20;23128:2;23117:9;23113:18;23106:48;23171:76;23242:4;23233:6;23171:76;:::i;:::-;23163:84;;22614:640;;;;;;;:::o;23260:210::-;23347:4;23385:2;23374:9;23370:18;23362:26;;23398:65;23460:1;23449:9;23445:17;23436:6;23398:65;:::i;:::-;23260:210;;;;:::o;23476:222::-;23569:4;23607:2;23596:9;23592:18;23584:26;;23620:71;23688:1;23677:9;23673:17;23664:6;23620:71;:::i;:::-;23476:222;;;;:::o;23704:313::-;23817:4;23855:2;23844:9;23840:18;23832:26;;23904:9;23898:4;23894:20;23890:1;23879:9;23875:17;23868:47;23932:78;24005:4;23996:6;23932:78;:::i;:::-;23924:86;;23704:313;;;;:::o;24023:419::-;24189:4;24227:2;24216:9;24212:18;24204:26;;24276:9;24270:4;24266:20;24262:1;24251:9;24247:17;24240:47;24304:131;24430:4;24304:131;:::i;:::-;24296:139;;24023:419;;;:::o;24448:::-;24614:4;24652:2;24641:9;24637:18;24629:26;;24701:9;24695:4;24691:20;24687:1;24676:9;24672:17;24665:47;24729:131;24855:4;24729:131;:::i;:::-;24721:139;;24448:419;;;:::o;24873:::-;25039:4;25077:2;25066:9;25062:18;25054:26;;25126:9;25120:4;25116:20;25112:1;25101:9;25097:17;25090:47;25154:131;25280:4;25154:131;:::i;:::-;25146:139;;24873:419;;;:::o;25298:::-;25464:4;25502:2;25491:9;25487:18;25479:26;;25551:9;25545:4;25541:20;25537:1;25526:9;25522:17;25515:47;25579:131;25705:4;25579:131;:::i;:::-;25571:139;;25298:419;;;:::o;25723:::-;25889:4;25927:2;25916:9;25912:18;25904:26;;25976:9;25970:4;25966:20;25962:1;25951:9;25947:17;25940:47;26004:131;26130:4;26004:131;:::i;:::-;25996:139;;25723:419;;;:::o;26148:::-;26314:4;26352:2;26341:9;26337:18;26329:26;;26401:9;26395:4;26391:20;26387:1;26376:9;26372:17;26365:47;26429:131;26555:4;26429:131;:::i;:::-;26421:139;;26148:419;;;:::o;26573:::-;26739:4;26777:2;26766:9;26762:18;26754:26;;26826:9;26820:4;26816:20;26812:1;26801:9;26797:17;26790:47;26854:131;26980:4;26854:131;:::i;:::-;26846:139;;26573:419;;;:::o;26998:::-;27164:4;27202:2;27191:9;27187:18;27179:26;;27251:9;27245:4;27241:20;27237:1;27226:9;27222:17;27215:47;27279:131;27405:4;27279:131;:::i;:::-;27271:139;;26998:419;;;:::o;27423:::-;27589:4;27627:2;27616:9;27612:18;27604:26;;27676:9;27670:4;27666:20;27662:1;27651:9;27647:17;27640:47;27704:131;27830:4;27704:131;:::i;:::-;27696:139;;27423:419;;;:::o;27848:::-;28014:4;28052:2;28041:9;28037:18;28029:26;;28101:9;28095:4;28091:20;28087:1;28076:9;28072:17;28065:47;28129:131;28255:4;28129:131;:::i;:::-;28121:139;;27848:419;;;:::o;28273:::-;28439:4;28477:2;28466:9;28462:18;28454:26;;28526:9;28520:4;28516:20;28512:1;28501:9;28497:17;28490:47;28554:131;28680:4;28554:131;:::i;:::-;28546:139;;28273:419;;;:::o;28698:::-;28864:4;28902:2;28891:9;28887:18;28879:26;;28951:9;28945:4;28941:20;28937:1;28926:9;28922:17;28915:47;28979:131;29105:4;28979:131;:::i;:::-;28971:139;;28698:419;;;:::o;29123:::-;29289:4;29327:2;29316:9;29312:18;29304:26;;29376:9;29370:4;29366:20;29362:1;29351:9;29347:17;29340:47;29404:131;29530:4;29404:131;:::i;:::-;29396:139;;29123:419;;;:::o;29548:::-;29714:4;29752:2;29741:9;29737:18;29729:26;;29801:9;29795:4;29791:20;29787:1;29776:9;29772:17;29765:47;29829:131;29955:4;29829:131;:::i;:::-;29821:139;;29548:419;;;:::o;29973:::-;30139:4;30177:2;30166:9;30162:18;30154:26;;30226:9;30220:4;30216:20;30212:1;30201:9;30197:17;30190:47;30254:131;30380:4;30254:131;:::i;:::-;30246:139;;29973:419;;;:::o;30398:::-;30564:4;30602:2;30591:9;30587:18;30579:26;;30651:9;30645:4;30641:20;30637:1;30626:9;30622:17;30615:47;30679:131;30805:4;30679:131;:::i;:::-;30671:139;;30398:419;;;:::o;30823:::-;30989:4;31027:2;31016:9;31012:18;31004:26;;31076:9;31070:4;31066:20;31062:1;31051:9;31047:17;31040:47;31104:131;31230:4;31104:131;:::i;:::-;31096:139;;30823:419;;;:::o;31248:::-;31414:4;31452:2;31441:9;31437:18;31429:26;;31501:9;31495:4;31491:20;31487:1;31476:9;31472:17;31465:47;31529:131;31655:4;31529:131;:::i;:::-;31521:139;;31248:419;;;:::o;31673:::-;31839:4;31877:2;31866:9;31862:18;31854:26;;31926:9;31920:4;31916:20;31912:1;31901:9;31897:17;31890:47;31954:131;32080:4;31954:131;:::i;:::-;31946:139;;31673:419;;;:::o;32098:::-;32264:4;32302:2;32291:9;32287:18;32279:26;;32351:9;32345:4;32341:20;32337:1;32326:9;32322:17;32315:47;32379:131;32505:4;32379:131;:::i;:::-;32371:139;;32098:419;;;:::o;32523:::-;32689:4;32727:2;32716:9;32712:18;32704:26;;32776:9;32770:4;32766:20;32762:1;32751:9;32747:17;32740:47;32804:131;32930:4;32804:131;:::i;:::-;32796:139;;32523:419;;;:::o;32948:::-;33114:4;33152:2;33141:9;33137:18;33129:26;;33201:9;33195:4;33191:20;33187:1;33176:9;33172:17;33165:47;33229:131;33355:4;33229:131;:::i;:::-;33221:139;;32948:419;;;:::o;33373:::-;33539:4;33577:2;33566:9;33562:18;33554:26;;33626:9;33620:4;33616:20;33612:1;33601:9;33597:17;33590:47;33654:131;33780:4;33654:131;:::i;:::-;33646:139;;33373:419;;;:::o;33798:::-;33964:4;34002:2;33991:9;33987:18;33979:26;;34051:9;34045:4;34041:20;34037:1;34026:9;34022:17;34015:47;34079:131;34205:4;34079:131;:::i;:::-;34071:139;;33798:419;;;:::o;34223:::-;34389:4;34427:2;34416:9;34412:18;34404:26;;34476:9;34470:4;34466:20;34462:1;34451:9;34447:17;34440:47;34504:131;34630:4;34504:131;:::i;:::-;34496:139;;34223:419;;;:::o;34648:::-;34814:4;34852:2;34841:9;34837:18;34829:26;;34901:9;34895:4;34891:20;34887:1;34876:9;34872:17;34865:47;34929:131;35055:4;34929:131;:::i;:::-;34921:139;;34648:419;;;:::o;35073:::-;35239:4;35277:2;35266:9;35262:18;35254:26;;35326:9;35320:4;35316:20;35312:1;35301:9;35297:17;35290:47;35354:131;35480:4;35354:131;:::i;:::-;35346:139;;35073:419;;;:::o;35498:::-;35664:4;35702:2;35691:9;35687:18;35679:26;;35751:9;35745:4;35741:20;35737:1;35726:9;35722:17;35715:47;35779:131;35905:4;35779:131;:::i;:::-;35771:139;;35498:419;;;:::o;35923:::-;36089:4;36127:2;36116:9;36112:18;36104:26;;36176:9;36170:4;36166:20;36162:1;36151:9;36147:17;36140:47;36204:131;36330:4;36204:131;:::i;:::-;36196:139;;35923:419;;;:::o;36348:::-;36514:4;36552:2;36541:9;36537:18;36529:26;;36601:9;36595:4;36591:20;36587:1;36576:9;36572:17;36565:47;36629:131;36755:4;36629:131;:::i;:::-;36621:139;;36348:419;;;:::o;36773:222::-;36866:4;36904:2;36893:9;36889:18;36881:26;;36917:71;36985:1;36974:9;36970:17;36961:6;36917:71;:::i;:::-;36773:222;;;;:::o;37001:129::-;37035:6;37062:20;;:::i;:::-;37052:30;;37091:33;37119:4;37111:6;37091:33;:::i;:::-;37001:129;;;:::o;37136:75::-;37169:6;37202:2;37196:9;37186:19;;37136:75;:::o;37217:307::-;37278:4;37368:18;37360:6;37357:30;37354:56;;;37390:18;;:::i;:::-;37354:56;37428:29;37450:6;37428:29;:::i;:::-;37420:37;;37512:4;37506;37502:15;37494:23;;37217:307;;;:::o;37530:98::-;37581:6;37615:5;37609:12;37599:22;;37530:98;;;:::o;37634:99::-;37686:6;37720:5;37714:12;37704:22;;37634:99;;;:::o;37739:168::-;37822:11;37856:6;37851:3;37844:19;37896:4;37891:3;37887:14;37872:29;;37739:168;;;;:::o;37913:169::-;37997:11;38031:6;38026:3;38019:19;38071:4;38066:3;38062:14;38047:29;;37913:169;;;;:::o;38088:148::-;38190:11;38227:3;38212:18;;38088:148;;;;:::o;38242:273::-;38282:3;38301:20;38319:1;38301:20;:::i;:::-;38296:25;;38335:20;38353:1;38335:20;:::i;:::-;38330:25;;38457:1;38421:34;38417:42;38414:1;38411:49;38408:75;;;38463:18;;:::i;:::-;38408:75;38507:1;38504;38500:9;38493:16;;38242:273;;;;:::o;38521:305::-;38561:3;38580:20;38598:1;38580:20;:::i;:::-;38575:25;;38614:20;38632:1;38614:20;:::i;:::-;38609:25;;38768:1;38700:66;38696:74;38693:1;38690:81;38687:107;;;38774:18;;:::i;:::-;38687:107;38818:1;38815;38811:9;38804:16;;38521:305;;;;:::o;38832:185::-;38872:1;38889:20;38907:1;38889:20;:::i;:::-;38884:25;;38923:20;38941:1;38923:20;:::i;:::-;38918:25;;38962:1;38952:35;;38967:18;;:::i;:::-;38952:35;39009:1;39006;39002:9;38997:14;;38832:185;;;;:::o;39023:348::-;39063:7;39086:20;39104:1;39086:20;:::i;:::-;39081:25;;39120:20;39138:1;39120:20;:::i;:::-;39115:25;;39308:1;39240:66;39236:74;39233:1;39230:81;39225:1;39218:9;39211:17;39207:105;39204:131;;;39315:18;;:::i;:::-;39204:131;39363:1;39360;39356:9;39345:20;;39023:348;;;;:::o;39377:191::-;39417:4;39437:20;39455:1;39437:20;:::i;:::-;39432:25;;39471:20;39489:1;39471:20;:::i;:::-;39466:25;;39510:1;39507;39504:8;39501:34;;;39515:18;;:::i;:::-;39501:34;39560:1;39557;39553:9;39545:17;;39377:191;;;;:::o;39574:::-;39614:4;39634:20;39652:1;39634:20;:::i;:::-;39629:25;;39668:20;39686:1;39668:20;:::i;:::-;39663:25;;39707:1;39704;39701:8;39698:34;;;39712:18;;:::i;:::-;39698:34;39757:1;39754;39750:9;39742:17;;39574:191;;;;:::o;39771:96::-;39808:7;39837:24;39855:5;39837:24;:::i;:::-;39826:35;;39771:96;;;:::o;39873:90::-;39907:7;39950:5;39943:13;39936:21;39925:32;;39873:90;;;:::o;39969:77::-;40006:7;40035:5;40024:16;;39969:77;;;:::o;40052:149::-;40088:7;40128:66;40121:5;40117:78;40106:89;;40052:149;;;:::o;40207:118::-;40244:7;40284:34;40277:5;40273:46;40262:57;;40207:118;;;:::o;40331:126::-;40368:7;40408:42;40401:5;40397:54;40386:65;;40331:126;;;:::o;40463:77::-;40500:7;40529:5;40518:16;;40463:77;;;:::o;40546:154::-;40630:6;40625:3;40620;40607:30;40692:1;40683:6;40678:3;40674:16;40667:27;40546:154;;;:::o;40706:307::-;40774:1;40784:113;40798:6;40795:1;40792:13;40784:113;;;40883:1;40878:3;40874:11;40868:18;40864:1;40859:3;40855:11;40848:39;40820:2;40817:1;40813:10;40808:15;;40784:113;;;40915:6;40912:1;40909:13;40906:101;;;40995:1;40986:6;40981:3;40977:16;40970:27;40906:101;40755:258;40706:307;;;:::o;41019:171::-;41058:3;41081:24;41099:5;41081:24;:::i;:::-;41072:33;;41127:4;41120:5;41117:15;41114:41;;;41135:18;;:::i;:::-;41114:41;41182:1;41175:5;41171:13;41164:20;;41019:171;;;:::o;41196:320::-;41240:6;41277:1;41271:4;41267:12;41257:22;;41324:1;41318:4;41314:12;41345:18;41335:81;;41401:4;41393:6;41389:17;41379:27;;41335:81;41463:2;41455:6;41452:14;41432:18;41429:38;41426:84;;;41482:18;;:::i;:::-;41426:84;41247:269;41196:320;;;:::o;41522:281::-;41605:27;41627:4;41605:27;:::i;:::-;41597:6;41593:40;41735:6;41723:10;41720:22;41699:18;41687:10;41684:34;41681:62;41678:88;;;41746:18;;:::i;:::-;41678:88;41786:10;41782:2;41775:22;41565:238;41522:281;;:::o;41809:233::-;41848:3;41871:24;41889:5;41871:24;:::i;:::-;41862:33;;41917:66;41910:5;41907:77;41904:103;;;41987:18;;:::i;:::-;41904:103;42034:1;42027:5;42023:13;42016:20;;41809:233;;;:::o;42048:100::-;42087:7;42116:26;42136:5;42116:26;:::i;:::-;42105:37;;42048:100;;;:::o;42154:94::-;42193:7;42222:20;42236:5;42222:20;:::i;:::-;42211:31;;42154:94;;;:::o;42254:176::-;42286:1;42303:20;42321:1;42303:20;:::i;:::-;42298:25;;42337:20;42355:1;42337:20;:::i;:::-;42332:25;;42376:1;42366:35;;42381:18;;:::i;:::-;42366:35;42422:1;42419;42415:9;42410:14;;42254:176;;;;:::o;42436:180::-;42484:77;42481:1;42474:88;42581:4;42578:1;42571:15;42605:4;42602:1;42595:15;42622:180;42670:77;42667:1;42660:88;42767:4;42764:1;42757:15;42791:4;42788:1;42781:15;42808:180;42856:77;42853:1;42846:88;42953:4;42950:1;42943:15;42977:4;42974:1;42967:15;42994:180;43042:77;43039:1;43032:88;43139:4;43136:1;43129:15;43163:4;43160:1;43153:15;43180:180;43228:77;43225:1;43218:88;43325:4;43322:1;43315:15;43349:4;43346:1;43339:15;43366:117;43475:1;43472;43465:12;43489:117;43598:1;43595;43588:12;43612:117;43721:1;43718;43711:12;43735:117;43844:1;43841;43834:12;43858:117;43967:1;43964;43957:12;43981:117;44090:1;44087;44080:12;44104:102;44145:6;44196:2;44192:7;44187:2;44180:5;44176:14;44172:28;44162:38;;44104:102;;;:::o;44212:94::-;44245:8;44293:5;44289:2;44285:14;44264:35;;44212:94;;;:::o;44312:221::-;44452:34;44448:1;44440:6;44436:14;44429:58;44521:4;44516:2;44508:6;44504:15;44497:29;44312:221;:::o;44539:180::-;44679:32;44675:1;44667:6;44663:14;44656:56;44539:180;:::o;44725:225::-;44865:34;44861:1;44853:6;44849:14;44842:58;44934:8;44929:2;44921:6;44917:15;44910:33;44725:225;:::o;44956:229::-;45096:34;45092:1;45084:6;45080:14;45073:58;45165:12;45160:2;45152:6;45148:15;45141:37;44956:229;:::o;45191:224::-;45331:34;45327:1;45319:6;45315:14;45308:58;45400:7;45395:2;45387:6;45383:15;45376:32;45191:224;:::o;45421:175::-;45561:27;45557:1;45549:6;45545:14;45538:51;45421:175;:::o;45602:220::-;45742:34;45738:1;45730:6;45726:14;45719:58;45811:3;45806:2;45798:6;45794:15;45787:28;45602:220;:::o;45828:222::-;45968:34;45964:1;45956:6;45952:14;45945:58;46037:5;46032:2;46024:6;46020:15;46013:30;45828:222;:::o;46056:224::-;46196:34;46192:1;46184:6;46180:14;46173:58;46265:7;46260:2;46252:6;46248:15;46241:32;46056:224;:::o;46286:181::-;46426:33;46422:1;46414:6;46410:14;46403:57;46286:181;:::o;46473:236::-;46613:34;46609:1;46601:6;46597:14;46590:58;46682:19;46677:2;46669:6;46665:15;46658:44;46473:236;:::o;46715:244::-;46855:34;46851:1;46843:6;46839:14;46832:58;46924:27;46919:2;46911:6;46907:15;46900:52;46715:244;:::o;46965:230::-;47105:34;47101:1;47093:6;47089:14;47082:58;47174:13;47169:2;47161:6;47157:15;47150:38;46965:230;:::o;47201:174::-;47341:26;47337:1;47329:6;47325:14;47318:50;47201:174;:::o;47381:225::-;47521:34;47517:1;47509:6;47505:14;47498:58;47590:8;47585:2;47577:6;47573:15;47566:33;47381:225;:::o;47612:167::-;47752:19;47748:1;47740:6;47736:14;47729:43;47612:167;:::o;47785:182::-;47925:34;47921:1;47913:6;47909:14;47902:58;47785:182;:::o;47973:234::-;48113:34;48109:1;48101:6;48097:14;48090:58;48182:17;48177:2;48169:6;48165:15;48158:42;47973:234;:::o;48213:176::-;48353:28;48349:1;48341:6;48337:14;48330:52;48213:176;:::o;48395:237::-;48535:34;48531:1;48523:6;48519:14;48512:58;48604:20;48599:2;48591:6;48587:15;48580:45;48395:237;:::o;48638:221::-;48778:34;48774:1;48766:6;48762:14;48755:58;48847:4;48842:2;48834:6;48830:15;48823:29;48638:221;:::o;48865:238::-;49005:34;49001:1;48993:6;48989:14;48982:58;49074:21;49069:2;49061:6;49057:15;49050:46;48865:238;:::o;49109:179::-;49249:31;49245:1;49237:6;49233:14;49226:55;49109:179;:::o;49294:220::-;49434:34;49430:1;49422:6;49418:14;49411:58;49503:3;49498:2;49490:6;49486:15;49479:28;49294:220;:::o;49520:::-;49660:34;49656:1;49648:6;49644:14;49637:58;49729:3;49724:2;49716:6;49712:15;49705:28;49520:220;:::o;49746:233::-;49886:34;49882:1;49874:6;49870:14;49863:58;49955:16;49950:2;49942:6;49938:15;49931:41;49746:233;:::o;49985:234::-;50125:34;50121:1;50113:6;50109:14;50102:58;50194:17;50189:2;50181:6;50177:15;50170:42;49985:234;:::o;50225:223::-;50365:34;50361:1;50353:6;50349:14;50342:58;50434:6;50429:2;50421:6;50417:15;50410:31;50225:223;:::o;50454:232::-;50594:34;50590:1;50582:6;50578:14;50571:58;50663:15;50658:2;50650:6;50646:15;50639:40;50454:232;:::o;50692:221::-;50832:34;50828:1;50820:6;50816:14;50809:58;50901:4;50896:2;50888:6;50884:15;50877:29;50692:221;:::o;50919:122::-;50992:24;51010:5;50992:24;:::i;:::-;50985:5;50982:35;50972:63;;51031:1;51028;51021:12;50972:63;50919:122;:::o;51047:116::-;51117:21;51132:5;51117:21;:::i;:::-;51110:5;51107:32;51097:60;;51153:1;51150;51143:12;51097:60;51047:116;:::o;51169:122::-;51242:24;51260:5;51242:24;:::i;:::-;51235:5;51232:35;51222:63;;51281:1;51278;51271:12;51222:63;51169:122;:::o;51297:120::-;51369:23;51386:5;51369:23;:::i;:::-;51362:5;51359:34;51349:62;;51407:1;51404;51397:12;51349:62;51297:120;:::o;51423:122::-;51496:24;51514:5;51496:24;:::i;:::-;51489:5;51486:35;51476:63;;51535:1;51532;51525:12;51476:63;51423:122;:::o

Swarm Source

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