ETH Price: $3,381.71 (-1.81%)
Gas: 1 Gwei

Token

Not De Gods (NDG)
 

Overview

Max Total Supply

1,047 NDG

Holders

54

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Filtered by Token Holder
857412.eth
Balance
30 NDG
0xf72002c1316df7d6afe7a7cc126a9de95dab8050
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:
NotDeGods

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
No with 200 runs

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

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

contract NotDeGods is ERC721A, Ownable, ReentrancyGuard {

    string public        baseURI;
    uint public          price             = 0.005 ether;
    uint public          maxPerTx          = 30; 
    uint public          maxPerWallet      = 90;
    uint public          totalFree         = 999;
    uint public          maxSupply         = 9999;
    bool public          mintEnabled;

    constructor() ERC721A("Not De Gods", "NDG",30,9999)
    {
        baseURI = "ipfs://QmapSo4G8vHsn1Wf6jKYuvCFTfeMy6fzCekdPce3EoLveB/";
        mintEnabled = true;
    }

    function mint(uint256 amount) external payable
    {
        uint cost = price;
        if(totalSupply() + amount <= totalFree) {
            cost = 0;
        }
        require(msg.sender == tx.origin,"Be yourself, DeGods.");
        require(msg.value == amount * cost,"Please send the exact amount.");
        require(totalSupply() + amount <= maxSupply,"No more Not DeGods");
        require(mintEnabled, "Minting is not live yet, hold on Not DeGods.");
        require(numberMinted(msg.sender) + amount <= maxPerWallet,"Too many per wallet!");
        require(amount <= maxPerTx, "Max per TX reached.");
        _safeMint(msg.sender, amount);
    }

    function ownerBatchMint(uint256 amount) external onlyOwner
    {
        require(totalSupply() + amount <= maxSupply,"too many!");

        _safeMint(msg.sender, amount);
    }

    function toggleMinting() external onlyOwner {
        mintEnabled = !mintEnabled;
    }

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

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

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

    function setTotalFree(uint256 totalFree_) external onlyOwner {
        totalFree = totalFree_;
    }

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

    function setMaxPerWallet(uint256 maxPerWallet_) external onlyOwner {
        maxPerWallet = maxPerWallet_;
    }

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

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

    function withdraw() external onlyOwner nonReentrant {
        (bool success, ) = msg.sender.call{value: address(this).balance}("");
        require(success, "Transfer failed.");
    }
    function getOwnershipData(uint256 tokenId) external view returns (TokenOwnership memory)
    {
        return ownershipOf(tokenId);
    }

    function setOwnersExplicit(uint256 quantity) external onlyOwner nonReentrant {
        _setOwnersExplicit(quantity);
    }
}

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

pragma solidity ^0.8.0;

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

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

  struct TokenOwnership {
    address addr;
    uint64 startTimestamp;
  }

  struct AddressData {
    uint128 balance;
    uint128 numberMinted;
  }

  uint256 private currentIndex = 0;

  uint256 internal immutable collectionSize;
  uint256 internal immutable maxBatchSize;

  // Token name
  string private _name;

  // Token symbol
  string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    _approve(to, tokenId, owner);
  }

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

    return _tokenApprovals[tokenId];
  }

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

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

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

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

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

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

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

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

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

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

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

    uint256 updatedIndex = startTokenId;

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

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

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

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

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

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

    _beforeTokenTransfers(from, to, tokenId, 1);

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

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

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

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

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

  uint256 public nextOwnerToExplicitlySet = 0;

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

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

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

        _;

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

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

pragma solidity ^0.8.0;

import "./IERC165.sol";

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

pragma solidity ^0.8.0;

import "../IERC721.sol";

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

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

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

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

pragma solidity ^0.8.0;

import "../IERC721.sol";

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

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

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

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

pragma solidity ^0.8.0;

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

File 12 of 13 : IERC721.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.6.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 be have been allowed to move this token by either {approve} or {setApprovalForAll}.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) external;

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getOwnershipData","outputs":[{"components":[{"internalType":"address","name":"addr","type":"address"},{"internalType":"uint64","name":"startTimestamp","type":"uint64"}],"internalType":"struct ERC721A.TokenOwnership","name":"","type":"tuple"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPerTx","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPerWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"mintEnabled","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":"amount","type":"uint256"}],"name":"ownerBatchMint","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":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI_","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"maxPerTx_","type":"uint256"}],"name":"setMaxPerTx","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"maxPerWallet_","type":"uint256"}],"name":"setMaxPerWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"setOwnersExplicit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"price_","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"totalFree_","type":"uint256"}],"name":"setTotalFree","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":[],"name":"toggleMinting","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalFree","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60c06040526000805560006007556611c37937e08000600b55601e600c55605a600d556103e7600e5561270f600f553480156200003b57600080fd5b506040518060400160405280600b81526020017f4e6f7420446520476f64730000000000000000000000000000000000000000008152506040518060400160405280600381526020017f4e44470000000000000000000000000000000000000000000000000000000000815250601e61270f60008111620000f3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620000ea90620003e8565b60405180910390fd5b6000821162000139576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200013090620003c6565b60405180910390fd5b836001908051906020019062000151929190620002c8565b5082600290805190602001906200016a929190620002c8565b508160a081815250508060808181525050505050506200019f62000193620001fa60201b60201c565b6200020260201b60201c565b60016009819055506040518060600160405280603681526020016200584b60369139600a9080519060200190620001d8929190620002c8565b506001601060006101000a81548160ff0219169083151502179055506200051e565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b828054620002d6906200041b565b90600052602060002090601f016020900481019282620002fa576000855562000346565b82601f106200031557805160ff191683800117855562000346565b8280016001018555821562000346579182015b828111156200034557825182559160200191906001019062000328565b5b50905062000355919062000359565b5090565b5b80821115620003745760008160009055506001016200035a565b5090565b6000620003876027836200040a565b9150620003948262000480565b604082019050919050565b6000620003ae602e836200040a565b9150620003bb82620004cf565b604082019050919050565b60006020820190508181036000830152620003e18162000378565b9050919050565b6000602082019050818103600083015262000403816200039f565b9050919050565b600082825260208201905092915050565b600060028204905060018216806200043457607f821691505b602082108114156200044b576200044a62000451565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f455243373231413a206d61782062617463682073697a65206d7573742062652060008201527f6e6f6e7a65726f00000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a20636f6c6c656374696f6e206d757374206861766520612060008201527f6e6f6e7a65726f20737570706c79000000000000000000000000000000000000602082015250565b60805160a0516152f262000559600039600081816129a1015281816129ca0152613174015260008181612729015261275d01526152f26000f3fe60806040526004361061023b5760003560e01c80637d55094d1161012e578063c6f6f216116100ab578063dc33e6811161006f578063dc33e6811461084e578063e268e4d31461088b578063e985e9c5146108b4578063f2fde38b146108f1578063f968adbe1461091a5761023b565b8063c6f6f21614610767578063c87b56dd14610790578063d1239730146107cd578063d5abeb01146107f8578063d7224ba0146108235761023b565b806395d89b41116100f257806395d89b41146106a3578063a035b1fe146106ce578063a0712d68146106f9578063a22cb46514610715578063b88d4fde1461073e5761023b565b80637d55094d146105d25780638da5cb5b146105e95780638db89f071461061457806391b7f5ed1461063d5780639231ab2a146106665761023b565b80633ccfd60b116101bc578063563aaf1111610180578063563aaf11146104ed5780636352211e146105165780636c0360eb1461055357806370a082311461057e578063715018a6146105bb5761023b565b80633ccfd60b1461041c57806342842e0e14610433578063453c23101461045c5780634f6ccce71461048757806355f804b3146104c45761023b565b8063228025e811610203578063228025e81461033957806323b872dd146103625780632d20fb601461038b5780632f745c59146103b4578063333e44e6146103f15761023b565b806301ffc9a71461024057806306fdde031461027d578063081812fc146102a8578063095ea7b3146102e557806318160ddd1461030e575b600080fd5b34801561024c57600080fd5b5061026760048036038101906102629190613984565b610945565b6040516102749190614098565b60405180910390f35b34801561028957600080fd5b50610292610a8f565b60405161029f91906140b3565b60405180910390f35b3480156102b457600080fd5b506102cf60048036038101906102ca9190613a2b565b610b21565b6040516102dc9190614031565b60405180910390f35b3480156102f157600080fd5b5061030c60048036038101906103079190613944565b610ba6565b005b34801561031a57600080fd5b50610323610cbf565b60405161033091906144f0565b60405180910390f35b34801561034557600080fd5b50610360600480360381019061035b9190613a2b565b610cc8565b005b34801561036e57600080fd5b506103896004803603810190610384919061382e565b610d4e565b005b34801561039757600080fd5b506103b260048036038101906103ad9190613a2b565b610d5e565b005b3480156103c057600080fd5b506103db60048036038101906103d69190613944565b610e3c565b6040516103e891906144f0565b60405180910390f35b3480156103fd57600080fd5b5061040661103a565b60405161041391906144f0565b60405180910390f35b34801561042857600080fd5b50610431611040565b005b34801561043f57600080fd5b5061045a6004803603810190610455919061382e565b6111c1565b005b34801561046857600080fd5b506104716111e1565b60405161047e91906144f0565b60405180910390f35b34801561049357600080fd5b506104ae60048036038101906104a99190613a2b565b6111e7565b6040516104bb91906144f0565b60405180910390f35b3480156104d057600080fd5b506104eb60048036038101906104e691906139de565b61123a565b005b3480156104f957600080fd5b50610514600480360381019061050f9190613a2b565b6112cc565b005b34801561052257600080fd5b5061053d60048036038101906105389190613a2b565b611352565b60405161054a9190614031565b60405180910390f35b34801561055f57600080fd5b50610568611368565b60405161057591906140b3565b60405180910390f35b34801561058a57600080fd5b506105a560048036038101906105a091906137c1565b6113f6565b6040516105b291906144f0565b60405180910390f35b3480156105c757600080fd5b506105d06114df565b005b3480156105de57600080fd5b506105e7611567565b005b3480156105f557600080fd5b506105fe61160f565b60405161060b9190614031565b60405180910390f35b34801561062057600080fd5b5061063b60048036038101906106369190613a2b565b611639565b005b34801561064957600080fd5b50610664600480360381019061065f9190613a2b565b611719565b005b34801561067257600080fd5b5061068d60048036038101906106889190613a2b565b61179f565b60405161069a91906144d5565b60405180910390f35b3480156106af57600080fd5b506106b86117b7565b6040516106c591906140b3565b60405180910390f35b3480156106da57600080fd5b506106e3611849565b6040516106f091906144f0565b60405180910390f35b610713600480360381019061070e9190613a2b565b61184f565b005b34801561072157600080fd5b5061073c60048036038101906107379190613904565b611a82565b005b34801561074a57600080fd5b5061076560048036038101906107609190613881565b611c03565b005b34801561077357600080fd5b5061078e60048036038101906107899190613a2b565b611c5f565b005b34801561079c57600080fd5b506107b760048036038101906107b29190613a2b565b611ce5565b6040516107c491906140b3565b60405180910390f35b3480156107d957600080fd5b506107e2611d8c565b6040516107ef9190614098565b60405180910390f35b34801561080457600080fd5b5061080d611d9f565b60405161081a91906144f0565b60405180910390f35b34801561082f57600080fd5b50610838611da5565b60405161084591906144f0565b60405180910390f35b34801561085a57600080fd5b50610875600480360381019061087091906137c1565b611dab565b60405161088291906144f0565b60405180910390f35b34801561089757600080fd5b506108b260048036038101906108ad9190613a2b565b611dbd565b005b3480156108c057600080fd5b506108db60048036038101906108d691906137ee565b611e43565b6040516108e89190614098565b60405180910390f35b3480156108fd57600080fd5b50610918600480360381019061091391906137c1565b611ed7565b005b34801561092657600080fd5b5061092f611fcf565b60405161093c91906144f0565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610a1057507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610a7857507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610a885750610a8782611fd5565b5b9050919050565b606060018054610a9e9061484e565b80601f0160208091040260200160405190810160405280929190818152602001828054610aca9061484e565b8015610b175780601f10610aec57610100808354040283529160200191610b17565b820191906000526020600020905b815481529060010190602001808311610afa57829003601f168201915b5050505050905090565b6000610b2c8261203f565b610b6b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b6290614495565b60405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610bb182611352565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610c22576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c1990614355565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610c4161204c565b73ffffffffffffffffffffffffffffffffffffffff161480610c705750610c6f81610c6a61204c565b611e43565b5b610caf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ca690614235565b60405180910390fd5b610cba838383612054565b505050565b60008054905090565b610cd061204c565b73ffffffffffffffffffffffffffffffffffffffff16610cee61160f565b73ffffffffffffffffffffffffffffffffffffffff1614610d44576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d3b906142b5565b60405180910390fd5b80600f8190555050565b610d59838383612106565b505050565b610d6661204c565b73ffffffffffffffffffffffffffffffffffffffff16610d8461160f565b73ffffffffffffffffffffffffffffffffffffffff1614610dda576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dd1906142b5565b60405180910390fd5b60026009541415610e20576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e1790614455565b60405180910390fd5b6002600981905550610e31816126bf565b600160098190555050565b6000610e47836113f6565b8210610e88576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e7f906140d5565b60405180910390fd5b6000610e92610cbf565b905060008060005b83811015610ff8576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614610f8c57806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610fe45786841415610fd5578195505050505050611034565b8380610fe0906148b1565b9450505b508080610ff0906148b1565b915050610e9a565b506040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161102b90614415565b60405180910390fd5b92915050565b600e5481565b61104861204c565b73ffffffffffffffffffffffffffffffffffffffff1661106661160f565b73ffffffffffffffffffffffffffffffffffffffff16146110bc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110b3906142b5565b60405180910390fd5b60026009541415611102576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110f990614455565b60405180910390fd5b600260098190555060003373ffffffffffffffffffffffffffffffffffffffff16476040516111309061401c565b60006040518083038185875af1925050503d806000811461116d576040519150601f19603f3d011682016040523d82523d6000602084013e611172565b606091505b50509050806111b6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111ad90614375565b60405180910390fd5b506001600981905550565b6111dc83838360405180602001604052806000815250611c03565b505050565b600d5481565b60006111f1610cbf565b8210611232576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161122990614195565b60405180910390fd5b819050919050565b61124261204c565b73ffffffffffffffffffffffffffffffffffffffff1661126061160f565b73ffffffffffffffffffffffffffffffffffffffff16146112b6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112ad906142b5565b60405180910390fd5b8181600a91906112c79291906135b5565b505050565b6112d461204c565b73ffffffffffffffffffffffffffffffffffffffff166112f261160f565b73ffffffffffffffffffffffffffffffffffffffff1614611348576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161133f906142b5565b60405180910390fd5b80600e8190555050565b600061135d8261294d565b600001519050919050565b600a80546113759061484e565b80601f01602080910402602001604051908101604052809291908181526020018280546113a19061484e565b80156113ee5780601f106113c3576101008083540402835291602001916113ee565b820191906000526020600020905b8154815290600101906020018083116113d157829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611467576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161145e90614275565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b6114e761204c565b73ffffffffffffffffffffffffffffffffffffffff1661150561160f565b73ffffffffffffffffffffffffffffffffffffffff161461155b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611552906142b5565b60405180910390fd5b6115656000612b50565b565b61156f61204c565b73ffffffffffffffffffffffffffffffffffffffff1661158d61160f565b73ffffffffffffffffffffffffffffffffffffffff16146115e3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115da906142b5565b60405180910390fd5b601060009054906101000a900460ff1615601060006101000a81548160ff021916908315150217905550565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b61164161204c565b73ffffffffffffffffffffffffffffffffffffffff1661165f61160f565b73ffffffffffffffffffffffffffffffffffffffff16146116b5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116ac906142b5565b60405180910390fd5b600f54816116c1610cbf565b6116cb91906145f5565b111561170c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161170390614215565b60405180910390fd5b6117163382612c16565b50565b61172161204c565b73ffffffffffffffffffffffffffffffffffffffff1661173f61160f565b73ffffffffffffffffffffffffffffffffffffffff1614611795576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161178c906142b5565b60405180910390fd5b80600b8190555050565b6117a761363b565b6117b08261294d565b9050919050565b6060600280546117c69061484e565b80601f01602080910402602001604051908101604052809291908181526020018280546117f29061484e565b801561183f5780601f106118145761010080835404028352916020019161183f565b820191906000526020600020905b81548152906001019060200180831161182257829003601f168201915b5050505050905090565b600b5481565b6000600b549050600e5482611862610cbf565b61186c91906145f5565b1161187657600090505b3273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146118e4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118db90614175565b60405180910390fd5b80826118f0919061467c565b3414611931576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161192890614335565b60405180910390fd5b600f548261193d610cbf565b61194791906145f5565b1115611988576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161197f906141f5565b60405180910390fd5b601060009054906101000a900460ff166119d7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119ce90614115565b60405180910390fd5b600d54826119e433611dab565b6119ee91906145f5565b1115611a2f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a2690614155565b60405180910390fd5b600c54821115611a74576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a6b906143f5565b60405180910390fd5b611a7e3383612c16565b5050565b611a8a61204c565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611af8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611aef906142f5565b60405180910390fd5b8060066000611b0561204c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611bb261204c565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611bf79190614098565b60405180910390a35050565b611c0e848484612106565b611c1a84848484612c34565b611c59576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c5090614395565b60405180910390fd5b50505050565b611c6761204c565b73ffffffffffffffffffffffffffffffffffffffff16611c8561160f565b73ffffffffffffffffffffffffffffffffffffffff1614611cdb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cd2906142b5565b60405180910390fd5b80600c8190555050565b6060611cf08261203f565b611d2f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d26906142d5565b60405180910390fd5b6000611d39612dcb565b90506000815111611d595760405180602001604052806000815250611d84565b80611d6384612e5d565b604051602001611d74929190613ff8565b6040516020818303038152906040525b915050919050565b601060009054906101000a900460ff1681565b600f5481565b60075481565b6000611db682612fbe565b9050919050565b611dc561204c565b73ffffffffffffffffffffffffffffffffffffffff16611de361160f565b73ffffffffffffffffffffffffffffffffffffffff1614611e39576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e30906142b5565b60405180910390fd5b80600d8190555050565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611edf61204c565b73ffffffffffffffffffffffffffffffffffffffff16611efd61160f565b73ffffffffffffffffffffffffffffffffffffffff1614611f53576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f4a906142b5565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611fc3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fba906140f5565b60405180910390fd5b611fcc81612b50565b50565b600c5481565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6000805482109050919050565b600033905090565b826005600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60006121118261294d565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff1661213861204c565b73ffffffffffffffffffffffffffffffffffffffff161480612194575061215d61204c565b73ffffffffffffffffffffffffffffffffffffffff1661217c84610b21565b73ffffffffffffffffffffffffffffffffffffffff16145b806121b057506121af82600001516121aa61204c565b611e43565b5b9050806121f2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121e990614315565b60405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff1614612264576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161225b90614295565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156122d4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122cb906141b5565b60405180910390fd5b6122e185858560016130a7565b6122f16000848460000151612054565b6001600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff1661235f91906146d6565b92506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff1602179055506001600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff1661240391906145af565b92506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060405180604001604052808573ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506003600085815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550905050600060018461250991906145f5565b9050600073ffffffffffffffffffffffffffffffffffffffff166003600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16141561264f5761257f8161203f565b1561264e576040518060400160405280846000015173ffffffffffffffffffffffffffffffffffffffff168152602001846020015167ffffffffffffffff168152506003600083815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055509050505b5b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46126b786868660016130ad565b505050505050565b6000600754905060008211612709576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161270090614255565b60405180910390fd5b60006001838361271991906145f5565b612723919061470a565b905060017f0000000000000000000000000000000000000000000000000000000000000000612752919061470a565b8111156127895760017f0000000000000000000000000000000000000000000000000000000000000000612786919061470a565b90505b6127928161203f565b6127d1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127c890614435565b60405180910390fd5b60008290505b81811161293457600073ffffffffffffffffffffffffffffffffffffffff166003600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614156129215760006128548261294d565b90506040518060400160405280826000015173ffffffffffffffffffffffffffffffffffffffff168152602001826020015167ffffffffffffffff168152506003600084815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550905050505b808061292c906148b1565b9150506127d7565b5060018161294291906145f5565b600781905550505050565b61295561363b565b61295e8261203f565b61299d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161299490614135565b60405180910390fd5b60007f00000000000000000000000000000000000000000000000000000000000000008310612a015760017f0000000000000000000000000000000000000000000000000000000000000000846129f4919061470a565b6129fe91906145f5565b90505b60008390505b818110612b0f576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612afb57809350505050612b4b565b508080612b0790614824565b915050612a07565b506040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b4290614475565b60405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b612c308282604051806020016040528060008152506130b3565b5050565b6000612c558473ffffffffffffffffffffffffffffffffffffffff16613592565b15612dbe578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612c7e61204c565b8786866040518563ffffffff1660e01b8152600401612ca0949392919061404c565b602060405180830381600087803b158015612cba57600080fd5b505af1925050508015612ceb57506040513d601f19601f82011682018060405250810190612ce891906139b1565b60015b612d6e573d8060008114612d1b576040519150601f19603f3d011682016040523d82523d6000602084013e612d20565b606091505b50600081511415612d66576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d5d90614395565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612dc3565b600190505b949350505050565b6060600a8054612dda9061484e565b80601f0160208091040260200160405190810160405280929190818152602001828054612e069061484e565b8015612e535780601f10612e2857610100808354040283529160200191612e53565b820191906000526020600020905b815481529060010190602001808311612e3657829003601f168201915b5050505050905090565b60606000821415612ea5576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612fb9565b600082905060005b60008214612ed7578080612ec0906148b1565b915050600a82612ed0919061464b565b9150612ead565b60008167ffffffffffffffff811115612ef357612ef26149e7565b5b6040519080825280601f01601f191660200182016040528015612f255781602001600182028036833780820191505090505b5090505b60008514612fb257600182612f3e919061470a565b9150600a85612f4d91906148fa565b6030612f5991906145f5565b60f81b818381518110612f6f57612f6e6149b8565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612fab919061464b565b9450612f29565b8093505050505b919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561302f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613026906141d5565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160109054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b50505050565b50505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415613129576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613120906143d5565b60405180910390fd5b6131328161203f565b15613172576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613169906143b5565b60405180910390fd5b7f00000000000000000000000000000000000000000000000000000000000000008311156131d5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016131cc906144b5565b60405180910390fd5b6131e260008583866130a7565b6000600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206040518060400160405290816000820160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff1681526020016000820160109054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff1681525050905060405180604001604052808583600001516132df91906145af565b6fffffffffffffffffffffffffffffffff16815260200185836020015161330691906145af565b6fffffffffffffffffffffffffffffffff16815250600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008201518160000160006101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060208201518160000160106101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555090505060405180604001604052808673ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506003600084815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550905050600082905060005b8581101561357557818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46135156000888488612c34565b613554576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161354b90614395565b60405180910390fd5b818061355f906148b1565b925050808061356d906148b1565b9150506134a4565b508060008190555061358a60008785886130ad565b505050505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b8280546135c19061484e565b90600052602060002090601f0160209004810192826135e3576000855561362a565b82601f106135fc57803560ff191683800117855561362a565b8280016001018555821561362a579182015b8281111561362957823582559160200191906001019061360e565b5b5090506136379190613675565b5090565b6040518060400160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681525090565b5b8082111561368e576000816000905550600101613676565b5090565b60006136a56136a084614530565b61450b565b9050828152602081018484840111156136c1576136c0614a25565b5b6136cc8482856147e2565b509392505050565b6000813590506136e381615260565b92915050565b6000813590506136f881615277565b92915050565b60008135905061370d8161528e565b92915050565b6000815190506137228161528e565b92915050565b600082601f83011261373d5761373c614a1b565b5b813561374d848260208601613692565b91505092915050565b60008083601f84011261376c5761376b614a1b565b5b8235905067ffffffffffffffff81111561378957613788614a16565b5b6020830191508360018202830111156137a5576137a4614a20565b5b9250929050565b6000813590506137bb816152a5565b92915050565b6000602082840312156137d7576137d6614a2f565b5b60006137e5848285016136d4565b91505092915050565b6000806040838503121561380557613804614a2f565b5b6000613813858286016136d4565b9250506020613824858286016136d4565b9150509250929050565b60008060006060848603121561384757613846614a2f565b5b6000613855868287016136d4565b9350506020613866868287016136d4565b9250506040613877868287016137ac565b9150509250925092565b6000806000806080858703121561389b5761389a614a2f565b5b60006138a9878288016136d4565b94505060206138ba878288016136d4565b93505060406138cb878288016137ac565b925050606085013567ffffffffffffffff8111156138ec576138eb614a2a565b5b6138f887828801613728565b91505092959194509250565b6000806040838503121561391b5761391a614a2f565b5b6000613929858286016136d4565b925050602061393a858286016136e9565b9150509250929050565b6000806040838503121561395b5761395a614a2f565b5b6000613969858286016136d4565b925050602061397a858286016137ac565b9150509250929050565b60006020828403121561399a57613999614a2f565b5b60006139a8848285016136fe565b91505092915050565b6000602082840312156139c7576139c6614a2f565b5b60006139d584828501613713565b91505092915050565b600080602083850312156139f5576139f4614a2f565b5b600083013567ffffffffffffffff811115613a1357613a12614a2a565b5b613a1f85828601613756565b92509250509250929050565b600060208284031215613a4157613a40614a2f565b5b6000613a4f848285016137ac565b91505092915050565b613a618161473e565b82525050565b613a708161473e565b82525050565b613a7f81614750565b82525050565b6000613a9082614561565b613a9a8185614577565b9350613aaa8185602086016147f1565b613ab381614a34565b840191505092915050565b6000613ac98261456c565b613ad38185614593565b9350613ae38185602086016147f1565b613aec81614a34565b840191505092915050565b6000613b028261456c565b613b0c81856145a4565b9350613b1c8185602086016147f1565b80840191505092915050565b6000613b35602283614593565b9150613b4082614a45565b604082019050919050565b6000613b58602683614593565b9150613b6382614a94565b604082019050919050565b6000613b7b602c83614593565b9150613b8682614ae3565b604082019050919050565b6000613b9e602a83614593565b9150613ba982614b32565b604082019050919050565b6000613bc1601483614593565b9150613bcc82614b81565b602082019050919050565b6000613be4601483614593565b9150613bef82614baa565b602082019050919050565b6000613c07602383614593565b9150613c1282614bd3565b604082019050919050565b6000613c2a602583614593565b9150613c3582614c22565b604082019050919050565b6000613c4d603183614593565b9150613c5882614c71565b604082019050919050565b6000613c70601283614593565b9150613c7b82614cc0565b602082019050919050565b6000613c93600983614593565b9150613c9e82614ce9565b602082019050919050565b6000613cb6603983614593565b9150613cc182614d12565b604082019050919050565b6000613cd9601883614593565b9150613ce482614d61565b602082019050919050565b6000613cfc602b83614593565b9150613d0782614d8a565b604082019050919050565b6000613d1f602683614593565b9150613d2a82614dd9565b604082019050919050565b6000613d42602083614593565b9150613d4d82614e28565b602082019050919050565b6000613d65602f83614593565b9150613d7082614e51565b604082019050919050565b6000613d88601a83614593565b9150613d9382614ea0565b602082019050919050565b6000613dab603283614593565b9150613db682614ec9565b604082019050919050565b6000613dce601d83614593565b9150613dd982614f18565b602082019050919050565b6000613df1602283614593565b9150613dfc82614f41565b604082019050919050565b6000613e14600083614588565b9150613e1f82614f90565b600082019050919050565b6000613e37601083614593565b9150613e4282614f93565b602082019050919050565b6000613e5a603383614593565b9150613e6582614fbc565b604082019050919050565b6000613e7d601d83614593565b9150613e888261500b565b602082019050919050565b6000613ea0602183614593565b9150613eab82615034565b604082019050919050565b6000613ec3601383614593565b9150613ece82615083565b602082019050919050565b6000613ee6602e83614593565b9150613ef1826150ac565b604082019050919050565b6000613f09602683614593565b9150613f14826150fb565b604082019050919050565b6000613f2c601f83614593565b9150613f378261514a565b602082019050919050565b6000613f4f602f83614593565b9150613f5a82615173565b604082019050919050565b6000613f72602d83614593565b9150613f7d826151c2565b604082019050919050565b6000613f95602283614593565b9150613fa082615211565b604082019050919050565b604082016000820151613fc16000850182613a58565b506020820151613fd46020850182613fe9565b50505050565b613fe3816147c4565b82525050565b613ff2816147ce565b82525050565b60006140048285613af7565b91506140108284613af7565b91508190509392505050565b600061402782613e07565b9150819050919050565b60006020820190506140466000830184613a67565b92915050565b60006080820190506140616000830187613a67565b61406e6020830186613a67565b61407b6040830185613fda565b818103606083015261408d8184613a85565b905095945050505050565b60006020820190506140ad6000830184613a76565b92915050565b600060208201905081810360008301526140cd8184613abe565b905092915050565b600060208201905081810360008301526140ee81613b28565b9050919050565b6000602082019050818103600083015261410e81613b4b565b9050919050565b6000602082019050818103600083015261412e81613b6e565b9050919050565b6000602082019050818103600083015261414e81613b91565b9050919050565b6000602082019050818103600083015261416e81613bb4565b9050919050565b6000602082019050818103600083015261418e81613bd7565b9050919050565b600060208201905081810360008301526141ae81613bfa565b9050919050565b600060208201905081810360008301526141ce81613c1d565b9050919050565b600060208201905081810360008301526141ee81613c40565b9050919050565b6000602082019050818103600083015261420e81613c63565b9050919050565b6000602082019050818103600083015261422e81613c86565b9050919050565b6000602082019050818103600083015261424e81613ca9565b9050919050565b6000602082019050818103600083015261426e81613ccc565b9050919050565b6000602082019050818103600083015261428e81613cef565b9050919050565b600060208201905081810360008301526142ae81613d12565b9050919050565b600060208201905081810360008301526142ce81613d35565b9050919050565b600060208201905081810360008301526142ee81613d58565b9050919050565b6000602082019050818103600083015261430e81613d7b565b9050919050565b6000602082019050818103600083015261432e81613d9e565b9050919050565b6000602082019050818103600083015261434e81613dc1565b9050919050565b6000602082019050818103600083015261436e81613de4565b9050919050565b6000602082019050818103600083015261438e81613e2a565b9050919050565b600060208201905081810360008301526143ae81613e4d565b9050919050565b600060208201905081810360008301526143ce81613e70565b9050919050565b600060208201905081810360008301526143ee81613e93565b9050919050565b6000602082019050818103600083015261440e81613eb6565b9050919050565b6000602082019050818103600083015261442e81613ed9565b9050919050565b6000602082019050818103600083015261444e81613efc565b9050919050565b6000602082019050818103600083015261446e81613f1f565b9050919050565b6000602082019050818103600083015261448e81613f42565b9050919050565b600060208201905081810360008301526144ae81613f65565b9050919050565b600060208201905081810360008301526144ce81613f88565b9050919050565b60006040820190506144ea6000830184613fab565b92915050565b60006020820190506145056000830184613fda565b92915050565b6000614515614526565b90506145218282614880565b919050565b6000604051905090565b600067ffffffffffffffff82111561454b5761454a6149e7565b5b61455482614a34565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b60006145ba82614788565b91506145c583614788565b9250826fffffffffffffffffffffffffffffffff038211156145ea576145e961492b565b5b828201905092915050565b6000614600826147c4565b915061460b836147c4565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156146405761463f61492b565b5b828201905092915050565b6000614656826147c4565b9150614661836147c4565b9250826146715761467061495a565b5b828204905092915050565b6000614687826147c4565b9150614692836147c4565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156146cb576146ca61492b565b5b828202905092915050565b60006146e182614788565b91506146ec83614788565b9250828210156146ff576146fe61492b565b5b828203905092915050565b6000614715826147c4565b9150614720836147c4565b9250828210156147335761473261492b565b5b828203905092915050565b6000614749826147a4565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b60006fffffffffffffffffffffffffffffffff82169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600067ffffffffffffffff82169050919050565b82818337600083830152505050565b60005b8381101561480f5780820151818401526020810190506147f4565b8381111561481e576000848401525b50505050565b600061482f826147c4565b915060008214156148435761484261492b565b5b600182039050919050565b6000600282049050600182168061486657607f821691505b6020821081141561487a57614879614989565b5b50919050565b61488982614a34565b810181811067ffffffffffffffff821117156148a8576148a76149e7565b5b80604052505050565b60006148bc826147c4565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156148ef576148ee61492b565b5b600182019050919050565b6000614905826147c4565b9150614910836147c4565b9250826149205761491f61495a565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f455243373231413a206f776e657220696e646578206f7574206f6620626f756e60008201527f6473000000000000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4d696e74696e67206973206e6f74206c697665207965742c20686f6c64206f6e60008201527f204e6f74204465476f64732e0000000000000000000000000000000000000000602082015250565b7f455243373231413a206f776e657220717565727920666f72206e6f6e6578697360008201527f74656e7420746f6b656e00000000000000000000000000000000000000000000602082015250565b7f546f6f206d616e79207065722077616c6c657421000000000000000000000000600082015250565b7f426520796f757273656c662c204465476f64732e000000000000000000000000600082015250565b7f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f7560008201527f6e64730000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a206e756d626572206d696e74656420717565727920666f7260008201527f20746865207a65726f2061646472657373000000000000000000000000000000602082015250565b7f4e6f206d6f7265204e6f74204465476f64730000000000000000000000000000600082015250565b7f746f6f206d616e79210000000000000000000000000000000000000000000000600082015250565b7f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000602082015250565b7f7175616e74697479206d757374206265206e6f6e7a65726f0000000000000000600082015250565b7f455243373231413a2062616c616e636520717565727920666f7220746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e736665722066726f6d20696e636f727265637460008201527f206f776e65720000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f455243373231413a20617070726f766520746f2063616c6c6572000000000000600082015250565b7f455243373231413a207472616e736665722063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b7f506c656173652073656e642074686520657861637420616d6f756e742e000000600082015250565b7f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60008201527f6572000000000000000000000000000000000000000000000000000000000000602082015250565b50565b7f5472616e73666572206661696c65642e00000000000000000000000000000000600082015250565b7f455243373231413a207472616e7366657220746f206e6f6e204552433732315260008201527f6563656976657220696d706c656d656e74657200000000000000000000000000602082015250565b7f455243373231413a20746f6b656e20616c7265616479206d696e746564000000600082015250565b7f455243373231413a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f4d61782070657220545820726561636865642e00000000000000000000000000600082015250565b7f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060008201527f6f776e657220627920696e646578000000000000000000000000000000000000602082015250565b7f6e6f7420656e6f756768206d696e7465642079657420666f722074686973206360008201527f6c65616e75700000000000000000000000000000000000000000000000000000602082015250565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b7f455243373231413a20756e61626c6520746f2064657465726d696e652074686560008201527f206f776e6572206f6620746f6b656e0000000000000000000000000000000000602082015250565b7f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560008201527f78697374656e7420746f6b656e00000000000000000000000000000000000000602082015250565b7f455243373231413a207175616e7469747920746f206d696e7420746f6f20686960008201527f6768000000000000000000000000000000000000000000000000000000000000602082015250565b6152698161473e565b811461527457600080fd5b50565b61528081614750565b811461528b57600080fd5b50565b6152978161475c565b81146152a257600080fd5b50565b6152ae816147c4565b81146152b957600080fd5b5056fea2646970667358221220f5c4647e675849e8bb9db66260659a51f634ed209402752b75632f7ccb38609d64736f6c63430008070033697066733a2f2f516d6170536f3447387648736e315766366a4b59757643465466654d7936667a43656b6450636533456f4c7665422f

Deployed Bytecode

0x60806040526004361061023b5760003560e01c80637d55094d1161012e578063c6f6f216116100ab578063dc33e6811161006f578063dc33e6811461084e578063e268e4d31461088b578063e985e9c5146108b4578063f2fde38b146108f1578063f968adbe1461091a5761023b565b8063c6f6f21614610767578063c87b56dd14610790578063d1239730146107cd578063d5abeb01146107f8578063d7224ba0146108235761023b565b806395d89b41116100f257806395d89b41146106a3578063a035b1fe146106ce578063a0712d68146106f9578063a22cb46514610715578063b88d4fde1461073e5761023b565b80637d55094d146105d25780638da5cb5b146105e95780638db89f071461061457806391b7f5ed1461063d5780639231ab2a146106665761023b565b80633ccfd60b116101bc578063563aaf1111610180578063563aaf11146104ed5780636352211e146105165780636c0360eb1461055357806370a082311461057e578063715018a6146105bb5761023b565b80633ccfd60b1461041c57806342842e0e14610433578063453c23101461045c5780634f6ccce71461048757806355f804b3146104c45761023b565b8063228025e811610203578063228025e81461033957806323b872dd146103625780632d20fb601461038b5780632f745c59146103b4578063333e44e6146103f15761023b565b806301ffc9a71461024057806306fdde031461027d578063081812fc146102a8578063095ea7b3146102e557806318160ddd1461030e575b600080fd5b34801561024c57600080fd5b5061026760048036038101906102629190613984565b610945565b6040516102749190614098565b60405180910390f35b34801561028957600080fd5b50610292610a8f565b60405161029f91906140b3565b60405180910390f35b3480156102b457600080fd5b506102cf60048036038101906102ca9190613a2b565b610b21565b6040516102dc9190614031565b60405180910390f35b3480156102f157600080fd5b5061030c60048036038101906103079190613944565b610ba6565b005b34801561031a57600080fd5b50610323610cbf565b60405161033091906144f0565b60405180910390f35b34801561034557600080fd5b50610360600480360381019061035b9190613a2b565b610cc8565b005b34801561036e57600080fd5b506103896004803603810190610384919061382e565b610d4e565b005b34801561039757600080fd5b506103b260048036038101906103ad9190613a2b565b610d5e565b005b3480156103c057600080fd5b506103db60048036038101906103d69190613944565b610e3c565b6040516103e891906144f0565b60405180910390f35b3480156103fd57600080fd5b5061040661103a565b60405161041391906144f0565b60405180910390f35b34801561042857600080fd5b50610431611040565b005b34801561043f57600080fd5b5061045a6004803603810190610455919061382e565b6111c1565b005b34801561046857600080fd5b506104716111e1565b60405161047e91906144f0565b60405180910390f35b34801561049357600080fd5b506104ae60048036038101906104a99190613a2b565b6111e7565b6040516104bb91906144f0565b60405180910390f35b3480156104d057600080fd5b506104eb60048036038101906104e691906139de565b61123a565b005b3480156104f957600080fd5b50610514600480360381019061050f9190613a2b565b6112cc565b005b34801561052257600080fd5b5061053d60048036038101906105389190613a2b565b611352565b60405161054a9190614031565b60405180910390f35b34801561055f57600080fd5b50610568611368565b60405161057591906140b3565b60405180910390f35b34801561058a57600080fd5b506105a560048036038101906105a091906137c1565b6113f6565b6040516105b291906144f0565b60405180910390f35b3480156105c757600080fd5b506105d06114df565b005b3480156105de57600080fd5b506105e7611567565b005b3480156105f557600080fd5b506105fe61160f565b60405161060b9190614031565b60405180910390f35b34801561062057600080fd5b5061063b60048036038101906106369190613a2b565b611639565b005b34801561064957600080fd5b50610664600480360381019061065f9190613a2b565b611719565b005b34801561067257600080fd5b5061068d60048036038101906106889190613a2b565b61179f565b60405161069a91906144d5565b60405180910390f35b3480156106af57600080fd5b506106b86117b7565b6040516106c591906140b3565b60405180910390f35b3480156106da57600080fd5b506106e3611849565b6040516106f091906144f0565b60405180910390f35b610713600480360381019061070e9190613a2b565b61184f565b005b34801561072157600080fd5b5061073c60048036038101906107379190613904565b611a82565b005b34801561074a57600080fd5b5061076560048036038101906107609190613881565b611c03565b005b34801561077357600080fd5b5061078e60048036038101906107899190613a2b565b611c5f565b005b34801561079c57600080fd5b506107b760048036038101906107b29190613a2b565b611ce5565b6040516107c491906140b3565b60405180910390f35b3480156107d957600080fd5b506107e2611d8c565b6040516107ef9190614098565b60405180910390f35b34801561080457600080fd5b5061080d611d9f565b60405161081a91906144f0565b60405180910390f35b34801561082f57600080fd5b50610838611da5565b60405161084591906144f0565b60405180910390f35b34801561085a57600080fd5b50610875600480360381019061087091906137c1565b611dab565b60405161088291906144f0565b60405180910390f35b34801561089757600080fd5b506108b260048036038101906108ad9190613a2b565b611dbd565b005b3480156108c057600080fd5b506108db60048036038101906108d691906137ee565b611e43565b6040516108e89190614098565b60405180910390f35b3480156108fd57600080fd5b50610918600480360381019061091391906137c1565b611ed7565b005b34801561092657600080fd5b5061092f611fcf565b60405161093c91906144f0565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610a1057507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610a7857507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610a885750610a8782611fd5565b5b9050919050565b606060018054610a9e9061484e565b80601f0160208091040260200160405190810160405280929190818152602001828054610aca9061484e565b8015610b175780601f10610aec57610100808354040283529160200191610b17565b820191906000526020600020905b815481529060010190602001808311610afa57829003601f168201915b5050505050905090565b6000610b2c8261203f565b610b6b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b6290614495565b60405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610bb182611352565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610c22576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c1990614355565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610c4161204c565b73ffffffffffffffffffffffffffffffffffffffff161480610c705750610c6f81610c6a61204c565b611e43565b5b610caf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ca690614235565b60405180910390fd5b610cba838383612054565b505050565b60008054905090565b610cd061204c565b73ffffffffffffffffffffffffffffffffffffffff16610cee61160f565b73ffffffffffffffffffffffffffffffffffffffff1614610d44576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d3b906142b5565b60405180910390fd5b80600f8190555050565b610d59838383612106565b505050565b610d6661204c565b73ffffffffffffffffffffffffffffffffffffffff16610d8461160f565b73ffffffffffffffffffffffffffffffffffffffff1614610dda576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dd1906142b5565b60405180910390fd5b60026009541415610e20576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e1790614455565b60405180910390fd5b6002600981905550610e31816126bf565b600160098190555050565b6000610e47836113f6565b8210610e88576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e7f906140d5565b60405180910390fd5b6000610e92610cbf565b905060008060005b83811015610ff8576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614610f8c57806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610fe45786841415610fd5578195505050505050611034565b8380610fe0906148b1565b9450505b508080610ff0906148b1565b915050610e9a565b506040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161102b90614415565b60405180910390fd5b92915050565b600e5481565b61104861204c565b73ffffffffffffffffffffffffffffffffffffffff1661106661160f565b73ffffffffffffffffffffffffffffffffffffffff16146110bc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110b3906142b5565b60405180910390fd5b60026009541415611102576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110f990614455565b60405180910390fd5b600260098190555060003373ffffffffffffffffffffffffffffffffffffffff16476040516111309061401c565b60006040518083038185875af1925050503d806000811461116d576040519150601f19603f3d011682016040523d82523d6000602084013e611172565b606091505b50509050806111b6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111ad90614375565b60405180910390fd5b506001600981905550565b6111dc83838360405180602001604052806000815250611c03565b505050565b600d5481565b60006111f1610cbf565b8210611232576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161122990614195565b60405180910390fd5b819050919050565b61124261204c565b73ffffffffffffffffffffffffffffffffffffffff1661126061160f565b73ffffffffffffffffffffffffffffffffffffffff16146112b6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112ad906142b5565b60405180910390fd5b8181600a91906112c79291906135b5565b505050565b6112d461204c565b73ffffffffffffffffffffffffffffffffffffffff166112f261160f565b73ffffffffffffffffffffffffffffffffffffffff1614611348576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161133f906142b5565b60405180910390fd5b80600e8190555050565b600061135d8261294d565b600001519050919050565b600a80546113759061484e565b80601f01602080910402602001604051908101604052809291908181526020018280546113a19061484e565b80156113ee5780601f106113c3576101008083540402835291602001916113ee565b820191906000526020600020905b8154815290600101906020018083116113d157829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611467576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161145e90614275565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b6114e761204c565b73ffffffffffffffffffffffffffffffffffffffff1661150561160f565b73ffffffffffffffffffffffffffffffffffffffff161461155b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611552906142b5565b60405180910390fd5b6115656000612b50565b565b61156f61204c565b73ffffffffffffffffffffffffffffffffffffffff1661158d61160f565b73ffffffffffffffffffffffffffffffffffffffff16146115e3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115da906142b5565b60405180910390fd5b601060009054906101000a900460ff1615601060006101000a81548160ff021916908315150217905550565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b61164161204c565b73ffffffffffffffffffffffffffffffffffffffff1661165f61160f565b73ffffffffffffffffffffffffffffffffffffffff16146116b5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116ac906142b5565b60405180910390fd5b600f54816116c1610cbf565b6116cb91906145f5565b111561170c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161170390614215565b60405180910390fd5b6117163382612c16565b50565b61172161204c565b73ffffffffffffffffffffffffffffffffffffffff1661173f61160f565b73ffffffffffffffffffffffffffffffffffffffff1614611795576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161178c906142b5565b60405180910390fd5b80600b8190555050565b6117a761363b565b6117b08261294d565b9050919050565b6060600280546117c69061484e565b80601f01602080910402602001604051908101604052809291908181526020018280546117f29061484e565b801561183f5780601f106118145761010080835404028352916020019161183f565b820191906000526020600020905b81548152906001019060200180831161182257829003601f168201915b5050505050905090565b600b5481565b6000600b549050600e5482611862610cbf565b61186c91906145f5565b1161187657600090505b3273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146118e4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118db90614175565b60405180910390fd5b80826118f0919061467c565b3414611931576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161192890614335565b60405180910390fd5b600f548261193d610cbf565b61194791906145f5565b1115611988576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161197f906141f5565b60405180910390fd5b601060009054906101000a900460ff166119d7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119ce90614115565b60405180910390fd5b600d54826119e433611dab565b6119ee91906145f5565b1115611a2f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a2690614155565b60405180910390fd5b600c54821115611a74576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a6b906143f5565b60405180910390fd5b611a7e3383612c16565b5050565b611a8a61204c565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611af8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611aef906142f5565b60405180910390fd5b8060066000611b0561204c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611bb261204c565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611bf79190614098565b60405180910390a35050565b611c0e848484612106565b611c1a84848484612c34565b611c59576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c5090614395565b60405180910390fd5b50505050565b611c6761204c565b73ffffffffffffffffffffffffffffffffffffffff16611c8561160f565b73ffffffffffffffffffffffffffffffffffffffff1614611cdb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cd2906142b5565b60405180910390fd5b80600c8190555050565b6060611cf08261203f565b611d2f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d26906142d5565b60405180910390fd5b6000611d39612dcb565b90506000815111611d595760405180602001604052806000815250611d84565b80611d6384612e5d565b604051602001611d74929190613ff8565b6040516020818303038152906040525b915050919050565b601060009054906101000a900460ff1681565b600f5481565b60075481565b6000611db682612fbe565b9050919050565b611dc561204c565b73ffffffffffffffffffffffffffffffffffffffff16611de361160f565b73ffffffffffffffffffffffffffffffffffffffff1614611e39576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e30906142b5565b60405180910390fd5b80600d8190555050565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611edf61204c565b73ffffffffffffffffffffffffffffffffffffffff16611efd61160f565b73ffffffffffffffffffffffffffffffffffffffff1614611f53576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f4a906142b5565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611fc3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fba906140f5565b60405180910390fd5b611fcc81612b50565b50565b600c5481565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6000805482109050919050565b600033905090565b826005600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60006121118261294d565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff1661213861204c565b73ffffffffffffffffffffffffffffffffffffffff161480612194575061215d61204c565b73ffffffffffffffffffffffffffffffffffffffff1661217c84610b21565b73ffffffffffffffffffffffffffffffffffffffff16145b806121b057506121af82600001516121aa61204c565b611e43565b5b9050806121f2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121e990614315565b60405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff1614612264576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161225b90614295565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156122d4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122cb906141b5565b60405180910390fd5b6122e185858560016130a7565b6122f16000848460000151612054565b6001600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff1661235f91906146d6565b92506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff1602179055506001600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff1661240391906145af565b92506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060405180604001604052808573ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506003600085815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550905050600060018461250991906145f5565b9050600073ffffffffffffffffffffffffffffffffffffffff166003600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16141561264f5761257f8161203f565b1561264e576040518060400160405280846000015173ffffffffffffffffffffffffffffffffffffffff168152602001846020015167ffffffffffffffff168152506003600083815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055509050505b5b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46126b786868660016130ad565b505050505050565b6000600754905060008211612709576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161270090614255565b60405180910390fd5b60006001838361271991906145f5565b612723919061470a565b905060017f000000000000000000000000000000000000000000000000000000000000270f612752919061470a565b8111156127895760017f000000000000000000000000000000000000000000000000000000000000270f612786919061470a565b90505b6127928161203f565b6127d1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127c890614435565b60405180910390fd5b60008290505b81811161293457600073ffffffffffffffffffffffffffffffffffffffff166003600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614156129215760006128548261294d565b90506040518060400160405280826000015173ffffffffffffffffffffffffffffffffffffffff168152602001826020015167ffffffffffffffff168152506003600084815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550905050505b808061292c906148b1565b9150506127d7565b5060018161294291906145f5565b600781905550505050565b61295561363b565b61295e8261203f565b61299d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161299490614135565b60405180910390fd5b60007f000000000000000000000000000000000000000000000000000000000000001e8310612a015760017f000000000000000000000000000000000000000000000000000000000000001e846129f4919061470a565b6129fe91906145f5565b90505b60008390505b818110612b0f576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612afb57809350505050612b4b565b508080612b0790614824565b915050612a07565b506040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b4290614475565b60405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b612c308282604051806020016040528060008152506130b3565b5050565b6000612c558473ffffffffffffffffffffffffffffffffffffffff16613592565b15612dbe578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612c7e61204c565b8786866040518563ffffffff1660e01b8152600401612ca0949392919061404c565b602060405180830381600087803b158015612cba57600080fd5b505af1925050508015612ceb57506040513d601f19601f82011682018060405250810190612ce891906139b1565b60015b612d6e573d8060008114612d1b576040519150601f19603f3d011682016040523d82523d6000602084013e612d20565b606091505b50600081511415612d66576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d5d90614395565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612dc3565b600190505b949350505050565b6060600a8054612dda9061484e565b80601f0160208091040260200160405190810160405280929190818152602001828054612e069061484e565b8015612e535780601f10612e2857610100808354040283529160200191612e53565b820191906000526020600020905b815481529060010190602001808311612e3657829003601f168201915b5050505050905090565b60606000821415612ea5576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612fb9565b600082905060005b60008214612ed7578080612ec0906148b1565b915050600a82612ed0919061464b565b9150612ead565b60008167ffffffffffffffff811115612ef357612ef26149e7565b5b6040519080825280601f01601f191660200182016040528015612f255781602001600182028036833780820191505090505b5090505b60008514612fb257600182612f3e919061470a565b9150600a85612f4d91906148fa565b6030612f5991906145f5565b60f81b818381518110612f6f57612f6e6149b8565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612fab919061464b565b9450612f29565b8093505050505b919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561302f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613026906141d5565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160109054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b50505050565b50505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415613129576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613120906143d5565b60405180910390fd5b6131328161203f565b15613172576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613169906143b5565b60405180910390fd5b7f000000000000000000000000000000000000000000000000000000000000001e8311156131d5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016131cc906144b5565b60405180910390fd5b6131e260008583866130a7565b6000600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206040518060400160405290816000820160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff1681526020016000820160109054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff1681525050905060405180604001604052808583600001516132df91906145af565b6fffffffffffffffffffffffffffffffff16815260200185836020015161330691906145af565b6fffffffffffffffffffffffffffffffff16815250600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008201518160000160006101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060208201518160000160106101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555090505060405180604001604052808673ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506003600084815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550905050600082905060005b8581101561357557818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46135156000888488612c34565b613554576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161354b90614395565b60405180910390fd5b818061355f906148b1565b925050808061356d906148b1565b9150506134a4565b508060008190555061358a60008785886130ad565b505050505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b8280546135c19061484e565b90600052602060002090601f0160209004810192826135e3576000855561362a565b82601f106135fc57803560ff191683800117855561362a565b8280016001018555821561362a579182015b8281111561362957823582559160200191906001019061360e565b5b5090506136379190613675565b5090565b6040518060400160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681525090565b5b8082111561368e576000816000905550600101613676565b5090565b60006136a56136a084614530565b61450b565b9050828152602081018484840111156136c1576136c0614a25565b5b6136cc8482856147e2565b509392505050565b6000813590506136e381615260565b92915050565b6000813590506136f881615277565b92915050565b60008135905061370d8161528e565b92915050565b6000815190506137228161528e565b92915050565b600082601f83011261373d5761373c614a1b565b5b813561374d848260208601613692565b91505092915050565b60008083601f84011261376c5761376b614a1b565b5b8235905067ffffffffffffffff81111561378957613788614a16565b5b6020830191508360018202830111156137a5576137a4614a20565b5b9250929050565b6000813590506137bb816152a5565b92915050565b6000602082840312156137d7576137d6614a2f565b5b60006137e5848285016136d4565b91505092915050565b6000806040838503121561380557613804614a2f565b5b6000613813858286016136d4565b9250506020613824858286016136d4565b9150509250929050565b60008060006060848603121561384757613846614a2f565b5b6000613855868287016136d4565b9350506020613866868287016136d4565b9250506040613877868287016137ac565b9150509250925092565b6000806000806080858703121561389b5761389a614a2f565b5b60006138a9878288016136d4565b94505060206138ba878288016136d4565b93505060406138cb878288016137ac565b925050606085013567ffffffffffffffff8111156138ec576138eb614a2a565b5b6138f887828801613728565b91505092959194509250565b6000806040838503121561391b5761391a614a2f565b5b6000613929858286016136d4565b925050602061393a858286016136e9565b9150509250929050565b6000806040838503121561395b5761395a614a2f565b5b6000613969858286016136d4565b925050602061397a858286016137ac565b9150509250929050565b60006020828403121561399a57613999614a2f565b5b60006139a8848285016136fe565b91505092915050565b6000602082840312156139c7576139c6614a2f565b5b60006139d584828501613713565b91505092915050565b600080602083850312156139f5576139f4614a2f565b5b600083013567ffffffffffffffff811115613a1357613a12614a2a565b5b613a1f85828601613756565b92509250509250929050565b600060208284031215613a4157613a40614a2f565b5b6000613a4f848285016137ac565b91505092915050565b613a618161473e565b82525050565b613a708161473e565b82525050565b613a7f81614750565b82525050565b6000613a9082614561565b613a9a8185614577565b9350613aaa8185602086016147f1565b613ab381614a34565b840191505092915050565b6000613ac98261456c565b613ad38185614593565b9350613ae38185602086016147f1565b613aec81614a34565b840191505092915050565b6000613b028261456c565b613b0c81856145a4565b9350613b1c8185602086016147f1565b80840191505092915050565b6000613b35602283614593565b9150613b4082614a45565b604082019050919050565b6000613b58602683614593565b9150613b6382614a94565b604082019050919050565b6000613b7b602c83614593565b9150613b8682614ae3565b604082019050919050565b6000613b9e602a83614593565b9150613ba982614b32565b604082019050919050565b6000613bc1601483614593565b9150613bcc82614b81565b602082019050919050565b6000613be4601483614593565b9150613bef82614baa565b602082019050919050565b6000613c07602383614593565b9150613c1282614bd3565b604082019050919050565b6000613c2a602583614593565b9150613c3582614c22565b604082019050919050565b6000613c4d603183614593565b9150613c5882614c71565b604082019050919050565b6000613c70601283614593565b9150613c7b82614cc0565b602082019050919050565b6000613c93600983614593565b9150613c9e82614ce9565b602082019050919050565b6000613cb6603983614593565b9150613cc182614d12565b604082019050919050565b6000613cd9601883614593565b9150613ce482614d61565b602082019050919050565b6000613cfc602b83614593565b9150613d0782614d8a565b604082019050919050565b6000613d1f602683614593565b9150613d2a82614dd9565b604082019050919050565b6000613d42602083614593565b9150613d4d82614e28565b602082019050919050565b6000613d65602f83614593565b9150613d7082614e51565b604082019050919050565b6000613d88601a83614593565b9150613d9382614ea0565b602082019050919050565b6000613dab603283614593565b9150613db682614ec9565b604082019050919050565b6000613dce601d83614593565b9150613dd982614f18565b602082019050919050565b6000613df1602283614593565b9150613dfc82614f41565b604082019050919050565b6000613e14600083614588565b9150613e1f82614f90565b600082019050919050565b6000613e37601083614593565b9150613e4282614f93565b602082019050919050565b6000613e5a603383614593565b9150613e6582614fbc565b604082019050919050565b6000613e7d601d83614593565b9150613e888261500b565b602082019050919050565b6000613ea0602183614593565b9150613eab82615034565b604082019050919050565b6000613ec3601383614593565b9150613ece82615083565b602082019050919050565b6000613ee6602e83614593565b9150613ef1826150ac565b604082019050919050565b6000613f09602683614593565b9150613f14826150fb565b604082019050919050565b6000613f2c601f83614593565b9150613f378261514a565b602082019050919050565b6000613f4f602f83614593565b9150613f5a82615173565b604082019050919050565b6000613f72602d83614593565b9150613f7d826151c2565b604082019050919050565b6000613f95602283614593565b9150613fa082615211565b604082019050919050565b604082016000820151613fc16000850182613a58565b506020820151613fd46020850182613fe9565b50505050565b613fe3816147c4565b82525050565b613ff2816147ce565b82525050565b60006140048285613af7565b91506140108284613af7565b91508190509392505050565b600061402782613e07565b9150819050919050565b60006020820190506140466000830184613a67565b92915050565b60006080820190506140616000830187613a67565b61406e6020830186613a67565b61407b6040830185613fda565b818103606083015261408d8184613a85565b905095945050505050565b60006020820190506140ad6000830184613a76565b92915050565b600060208201905081810360008301526140cd8184613abe565b905092915050565b600060208201905081810360008301526140ee81613b28565b9050919050565b6000602082019050818103600083015261410e81613b4b565b9050919050565b6000602082019050818103600083015261412e81613b6e565b9050919050565b6000602082019050818103600083015261414e81613b91565b9050919050565b6000602082019050818103600083015261416e81613bb4565b9050919050565b6000602082019050818103600083015261418e81613bd7565b9050919050565b600060208201905081810360008301526141ae81613bfa565b9050919050565b600060208201905081810360008301526141ce81613c1d565b9050919050565b600060208201905081810360008301526141ee81613c40565b9050919050565b6000602082019050818103600083015261420e81613c63565b9050919050565b6000602082019050818103600083015261422e81613c86565b9050919050565b6000602082019050818103600083015261424e81613ca9565b9050919050565b6000602082019050818103600083015261426e81613ccc565b9050919050565b6000602082019050818103600083015261428e81613cef565b9050919050565b600060208201905081810360008301526142ae81613d12565b9050919050565b600060208201905081810360008301526142ce81613d35565b9050919050565b600060208201905081810360008301526142ee81613d58565b9050919050565b6000602082019050818103600083015261430e81613d7b565b9050919050565b6000602082019050818103600083015261432e81613d9e565b9050919050565b6000602082019050818103600083015261434e81613dc1565b9050919050565b6000602082019050818103600083015261436e81613de4565b9050919050565b6000602082019050818103600083015261438e81613e2a565b9050919050565b600060208201905081810360008301526143ae81613e4d565b9050919050565b600060208201905081810360008301526143ce81613e70565b9050919050565b600060208201905081810360008301526143ee81613e93565b9050919050565b6000602082019050818103600083015261440e81613eb6565b9050919050565b6000602082019050818103600083015261442e81613ed9565b9050919050565b6000602082019050818103600083015261444e81613efc565b9050919050565b6000602082019050818103600083015261446e81613f1f565b9050919050565b6000602082019050818103600083015261448e81613f42565b9050919050565b600060208201905081810360008301526144ae81613f65565b9050919050565b600060208201905081810360008301526144ce81613f88565b9050919050565b60006040820190506144ea6000830184613fab565b92915050565b60006020820190506145056000830184613fda565b92915050565b6000614515614526565b90506145218282614880565b919050565b6000604051905090565b600067ffffffffffffffff82111561454b5761454a6149e7565b5b61455482614a34565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b60006145ba82614788565b91506145c583614788565b9250826fffffffffffffffffffffffffffffffff038211156145ea576145e961492b565b5b828201905092915050565b6000614600826147c4565b915061460b836147c4565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156146405761463f61492b565b5b828201905092915050565b6000614656826147c4565b9150614661836147c4565b9250826146715761467061495a565b5b828204905092915050565b6000614687826147c4565b9150614692836147c4565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156146cb576146ca61492b565b5b828202905092915050565b60006146e182614788565b91506146ec83614788565b9250828210156146ff576146fe61492b565b5b828203905092915050565b6000614715826147c4565b9150614720836147c4565b9250828210156147335761473261492b565b5b828203905092915050565b6000614749826147a4565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b60006fffffffffffffffffffffffffffffffff82169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600067ffffffffffffffff82169050919050565b82818337600083830152505050565b60005b8381101561480f5780820151818401526020810190506147f4565b8381111561481e576000848401525b50505050565b600061482f826147c4565b915060008214156148435761484261492b565b5b600182039050919050565b6000600282049050600182168061486657607f821691505b6020821081141561487a57614879614989565b5b50919050565b61488982614a34565b810181811067ffffffffffffffff821117156148a8576148a76149e7565b5b80604052505050565b60006148bc826147c4565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156148ef576148ee61492b565b5b600182019050919050565b6000614905826147c4565b9150614910836147c4565b9250826149205761491f61495a565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f455243373231413a206f776e657220696e646578206f7574206f6620626f756e60008201527f6473000000000000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4d696e74696e67206973206e6f74206c697665207965742c20686f6c64206f6e60008201527f204e6f74204465476f64732e0000000000000000000000000000000000000000602082015250565b7f455243373231413a206f776e657220717565727920666f72206e6f6e6578697360008201527f74656e7420746f6b656e00000000000000000000000000000000000000000000602082015250565b7f546f6f206d616e79207065722077616c6c657421000000000000000000000000600082015250565b7f426520796f757273656c662c204465476f64732e000000000000000000000000600082015250565b7f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f7560008201527f6e64730000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a206e756d626572206d696e74656420717565727920666f7260008201527f20746865207a65726f2061646472657373000000000000000000000000000000602082015250565b7f4e6f206d6f7265204e6f74204465476f64730000000000000000000000000000600082015250565b7f746f6f206d616e79210000000000000000000000000000000000000000000000600082015250565b7f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000602082015250565b7f7175616e74697479206d757374206265206e6f6e7a65726f0000000000000000600082015250565b7f455243373231413a2062616c616e636520717565727920666f7220746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e736665722066726f6d20696e636f727265637460008201527f206f776e65720000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f455243373231413a20617070726f766520746f2063616c6c6572000000000000600082015250565b7f455243373231413a207472616e736665722063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b7f506c656173652073656e642074686520657861637420616d6f756e742e000000600082015250565b7f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60008201527f6572000000000000000000000000000000000000000000000000000000000000602082015250565b50565b7f5472616e73666572206661696c65642e00000000000000000000000000000000600082015250565b7f455243373231413a207472616e7366657220746f206e6f6e204552433732315260008201527f6563656976657220696d706c656d656e74657200000000000000000000000000602082015250565b7f455243373231413a20746f6b656e20616c7265616479206d696e746564000000600082015250565b7f455243373231413a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f4d61782070657220545820726561636865642e00000000000000000000000000600082015250565b7f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060008201527f6f776e657220627920696e646578000000000000000000000000000000000000602082015250565b7f6e6f7420656e6f756768206d696e7465642079657420666f722074686973206360008201527f6c65616e75700000000000000000000000000000000000000000000000000000602082015250565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b7f455243373231413a20756e61626c6520746f2064657465726d696e652074686560008201527f206f776e6572206f6620746f6b656e0000000000000000000000000000000000602082015250565b7f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560008201527f78697374656e7420746f6b656e00000000000000000000000000000000000000602082015250565b7f455243373231413a207175616e7469747920746f206d696e7420746f6f20686960008201527f6768000000000000000000000000000000000000000000000000000000000000602082015250565b6152698161473e565b811461527457600080fd5b50565b61528081614750565b811461528b57600080fd5b50565b6152978161475c565b81146152a257600080fd5b50565b6152ae816147c4565b81146152b957600080fd5b5056fea2646970667358221220f5c4647e675849e8bb9db66260659a51f634ed209402752b75632f7ccb38609d64736f6c63430008070033

Deployed Bytecode Sourcemap

205:2898:11:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4251:370:12;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5977:94;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7502:204;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7065:379;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;2812:94;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2410:102:11;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;8352:142:12;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;2976:124:11;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;3443:744:12;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;465:44:11;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2636:186;;;;;;;;;;;;;:::i;:::-;;8557:157:12;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;415:43:11;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2975:177:12;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1868:102:11;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;2072;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;5800:118:12;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;270:28:11;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4677:211:12;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1668:101:0;;;;;;;;;;;;;:::i;:::-;;1650:89:11;;;;;;;;;;;;;:::i;:::-;;1036:85:0;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1461:181:11;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1978:86;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;2828:140;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6132:98:12;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;305:52:11;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;788:665;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;7770:274:12;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;8777:311;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;2182:98:11;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;6293:394:12;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;568:32:11;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;516:45;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13192:43:12;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1747:113:11;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2288:114;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;8107:186:12;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1918:198:0;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;364:43:11;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4251:370:12;4378:4;4423:25;4408:40;;;:11;:40;;;;:99;;;;4474:33;4459:48;;;:11;:48;;;;4408:99;:160;;;;4533:35;4518:50;;;:11;:50;;;;4408:160;:207;;;;4579:36;4603:11;4579:23;:36::i;:::-;4408:207;4394:221;;4251:370;;;:::o;5977:94::-;6031:13;6060:5;6053:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5977:94;:::o;7502:204::-;7570:7;7594:16;7602:7;7594;:16::i;:::-;7586:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;7676:15;:24;7692:7;7676:24;;;;;;;;;;;;;;;;;;;;;7669:31;;7502:204;;;:::o;7065:379::-;7134:13;7150:24;7166:7;7150:15;:24::i;:::-;7134:40;;7195:5;7189:11;;:2;:11;;;;7181:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;7280:5;7264:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;7289:37;7306:5;7313:12;:10;:12::i;:::-;7289:16;:37::i;:::-;7264:62;7248:153;;;;;;;;;;;;:::i;:::-;;;;;;;;;7410:28;7419:2;7423:7;7432:5;7410:8;:28::i;:::-;7127:317;7065:379;;:::o;2812:94::-;2865:7;2888:12;;2881:19;;2812:94;:::o;2410:102:11:-;1259:12:0;:10;:12::i;:::-;1248:23;;:7;:5;:7::i;:::-;:23;;;1240:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2494:10:11::1;2482:9;:22;;;;2410:102:::0;:::o;8352:142:12:-;8460:28;8470:4;8476:2;8480:7;8460:9;:28::i;:::-;8352:142;;;:::o;2976:124:11:-;1259:12:0;:10;:12::i;:::-;1248:23;;:7;:5;:7::i;:::-;:23;;;1240:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;1744:1:1::1;2325:7;;:19;;2317:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;1744:1;2455:7;:18;;;;3064:28:11::2;3083:8;3064:18;:28::i;:::-;1701:1:1::1;2628:7;:22;;;;2976:124:11::0;:::o;3443:744:12:-;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;465:44:11:-;;;;:::o;2636:186::-;1259:12:0;:10;:12::i;:::-;1248:23;;:7;:5;:7::i;:::-;:23;;;1240:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;1744:1:1::1;2325:7;;:19;;2317:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;1744:1;2455:7;:18;;;;2700:12:11::2;2718:10;:15;;2741:21;2718:49;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2699:68;;;2786:7;2778:36;;;;;;;;;;;;:::i;:::-;;;;;;;;;2688:134;1701:1:1::1;2628:7;:22;;;;2636:186:11:o:0;8557:157:12:-;8669:39;8686:4;8692:2;8696:7;8669:39;;;;;;;;;;;;:16;:39::i;:::-;8557:157;;;:::o;415:43:11:-;;;;:::o;2975:177:12:-;3042:7;3074:13;:11;:13::i;:::-;3066:5;:21;3058:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;3141:5;3134:12;;2975:177;;;:::o;1868:102:11:-;1259:12:0;:10;:12::i;:::-;1248:23;;:7;:5;:7::i;:::-;:23;;;1240:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;1954:8:11::1;;1944:7;:18;;;;;;;:::i;:::-;;1868:102:::0;;:::o;2072:::-;1259:12:0;:10;:12::i;:::-;1248:23;;:7;:5;:7::i;:::-;:23;;;1240:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2156:10:11::1;2144:9;:22;;;;2072:102:::0;:::o;5800:118:12:-;5864:7;5887:20;5899:7;5887:11;:20::i;:::-;:25;;;5880:32;;5800:118;;;:::o;270:28:11:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;4677:211:12:-;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;1650:89:11:-;1259:12:0;:10;:12::i;:::-;1248:23;;:7;:5;:7::i;:::-;:23;;;1240:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;1720:11:11::1;;;;;;;;;;;1719:12;1705:11;;:26;;;;;;;;;;;;;;;;;;1650:89::o:0;1036:85:0:-;1082:7;1108:6;;;;;;;;;;;1101:13;;1036:85;:::o;1461:181:11:-;1259:12:0;:10;:12::i;:::-;1248:23;;:7;:5;:7::i;:::-;:23;;;1240:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;1570:9:11::1;;1560:6;1544:13;:11;:13::i;:::-;:22;;;;:::i;:::-;:35;;1536:56;;;;;;;;;;;;:::i;:::-;;;;;;;;;1605:29;1615:10;1627:6;1605:9;:29::i;:::-;1461:181:::0;:::o;1978:86::-;1259:12:0;:10;:12::i;:::-;1248:23;;:7;:5;:7::i;:::-;:23;;;1240:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2050:6:11::1;2042:5;:14;;;;1978:86:::0;:::o;2828:140::-;2894:21;;:::i;:::-;2940:20;2952:7;2940:11;:20::i;:::-;2933:27;;2828:140;;;:::o;6132:98:12:-;6188:13;6217:7;6210:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6132:98;:::o;305:52:11:-;;;;:::o;788:665::-;851:9;863:5;;851:17;;908:9;;898:6;882:13;:11;:13::i;:::-;:22;;;;:::i;:::-;:35;879:75;;941:1;934:8;;879:75;986:9;972:23;;:10;:23;;;964:55;;;;;;;;;;;;:::i;:::-;;;;;;;;;1060:4;1051:6;:13;;;;:::i;:::-;1038:9;:26;1030:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;1142:9;;1132:6;1116:13;:11;:13::i;:::-;:22;;;;:::i;:::-;:35;;1108:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;1192:11;;;;;;;;;;;1184:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;1308:12;;1298:6;1271:24;1284:10;1271:12;:24::i;:::-;:33;;;;:::i;:::-;:49;;1263:81;;;;;;;;;;;;:::i;:::-;;;;;;;;;1373:8;;1363:6;:18;;1355:50;;;;;;;;;;;;:::i;:::-;;;;;;;;;1416:29;1426:10;1438:6;1416:9;:29::i;:::-;840:613;788:665;:::o;7770:274:12:-;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;8777:311::-;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;2182:98:11:-;1259:12:0;:10;:12::i;:::-;1248:23;;:7;:5;:7::i;:::-;:23;;;1240:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2263:9:11::1;2252:8;:20;;;;2182:98:::0;:::o;6293:394:12:-;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;568:32:11:-;;;;;;;;;;;;;:::o;516:45::-;;;;:::o;13192:43:12:-;;;;:::o;1747:113:11:-;1805:7;1832:20;1846:5;1832:13;:20::i;:::-;1825:27;;1747:113;;;:::o;2288:114::-;1259:12:0;:10;:12::i;:::-;1248:23;;:7;:5;:7::i;:::-;:23;;;1240:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2381:13:11::1;2366:12;:28;;;;2288:114:::0;:::o;8107:186:12:-;8229:4;8252:18;:25;8271:5;8252:25;;;;;;;;;;;;;;;:35;8278:8;8252:35;;;;;;;;;;;;;;;;;;;;;;;;;8245:42;;8107:186;;;;:::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;364:43:11:-;;;;:::o;829:155:9:-;914:4;952:25;937:40;;;:11;:40;;;;930:47;;829:155;;;:::o;9327:105:12:-;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:12:-;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;13340:846::-;13402:25;13430:24;;13402:52;;13480:1;13469:8;:12;13461:49;;;;;;;;;;;;:::i;:::-;;;;;;;;;13517:16;13567:1;13556:8;13536:17;:28;;;;:::i;:::-;:32;;;;:::i;:::-;13517:51;;13607:1;13590:14;:18;;;;:::i;:::-;13579:8;:29;13575:81;;;13647:1;13630:14;:18;;;;:::i;:::-;13619:29;;13575:81;13771:17;13779:8;13771:7;:17::i;:::-;13763:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;13843:9;13855:17;13843:29;;13838:297;13879:8;13874:1;:13;13838:297;;13938:1;13907:33;;:11;:14;13919:1;13907:14;;;;;;;;;;;:19;;;;;;;;;;;;:33;;;13903:225;;;13953:31;13987:14;13999:1;13987:11;:14::i;:::-;13953:48;;14029:89;;;;;;;;14056:9;:14;;;14029:89;;;;;;14083:9;:24;;;14029:89;;;;;14012:11;:14;14024:1;14012:14;;;;;;;;;;;:106;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13942:186;13903:225;13889:3;;;;;:::i;:::-;;;;13838:297;;;;14179:1;14168:8;:12;;;;:::i;:::-;14141:24;:39;;;;13395:791;;13340:846;:::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;9438:98:12:-;9503:27;9513:2;9517:8;9503:27;;;;;;;;;;;;:9;:27::i;:::-;9438:98;;:::o;14729:690::-;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;2520:108:11:-;2580:13;2613:7;2606:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2520:108;:::o;328:703:8:-;384:13;610:1;601:5;:10;597:51;;;627:10;;;;;;;;;;;;;;;;;;;;;597:51;657:12;672:5;657:20;;687:14;711:75;726:1;718:4;:9;711:75;;743:8;;;;;:::i;:::-;;;;773:2;765:10;;;;;:::i;:::-;;;711:75;;;795:19;827:6;817:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;795:39;;844:150;860:1;851:5;:10;844:150;;887:1;877:11;;;;;:::i;:::-;;;953:2;945:5;:10;;;;:::i;:::-;932:2;:24;;;;:::i;:::-;919:39;;902:6;909;902:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;981:2;972:11;;;;;:::i;:::-;;;844:150;;;1017:6;1003:21;;;;;328:703;;;;:::o;4894:240:12:-;4955:7;5004:1;4987:19;;:5;:19;;;;4971:102;;;;;;;;;;;;:::i;:::-;;;;;;;;;5095:12;:19;5108:5;5095:19;;;;;;;;;;;;;;;:32;;;;;;;;;;;;5087:41;;5080:48;;4894:240;;;:::o;15881:141::-;;;;;:::o;16408:140::-;;;;;:::o;9875:1272::-;9980:20;10003:12;;9980:35;;10044:1;10030:16;;:2;:16;;;;10022:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;10221:21;10229:12;10221:7;:21::i;:::-;10220:22;10212:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;10303:12;10291:8;:24;;10283:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;10363:61;10393:1;10397:2;10401:12;10415:8;10363:21;:61::i;:::-;10433:30;10466:12;:16;10479:2;10466:16;;;;;;;;;;;;;;;10433:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10508:119;;;;;;;;10558:8;10528:11;:19;;;:39;;;;:::i;:::-;10508:119;;;;;;10611:8;10576:11;:24;;;:44;;;;:::i;:::-;10508:119;;;;;10489:12;:16;10502:2;10489:16;;;;;;;;;;;;;;;:138;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10662:43;;;;;;;;10677:2;10662:43;;;;;;10688:15;10662:43;;;;;10634:11;:25;10646:12;10634:25;;;;;;;;;;;:71;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10714:20;10737:12;10714:35;;10763:9;10758:281;10782:8;10778:1;:12;10758:281;;;10836:12;10832:2;10811:38;;10828:1;10811:38;;;;;;;;;;;;10876:59;10907:1;10911:2;10915:12;10929:5;10876:22;:59::i;:::-;10858:150;;;;;;;;;;;;:::i;:::-;;;;;;;;;11017:14;;;;;:::i;:::-;;;;10792:3;;;;;:::i;:::-;;;;10758:281;;;;11062:12;11047;:27;;;;11081:60;11110:1;11114:2;11118:12;11132:8;11081:20;:60::i;:::-;9973:1174;;;9875:1272;;;:::o;1175:320:6:-;1235:4;1487:1;1465:7;:19;;;:23;1458:30;;1175:320;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:410:13:-;84:5;109:65;125:48;166:6;125:48;:::i;:::-;109:65;:::i;:::-;100:74;;197:6;190:5;183:21;235:4;228:5;224:16;273:3;264:6;259:3;255:16;252:25;249:112;;;280:79;;:::i;:::-;249:112;370:41;404:6;399:3;394;370:41;:::i;:::-;90:327;7:410;;;;;:::o;423:139::-;469:5;507:6;494:20;485:29;;523:33;550:5;523:33;:::i;:::-;423:139;;;;:::o;568:133::-;611:5;649:6;636:20;627:29;;665:30;689:5;665:30;:::i;:::-;568:133;;;;:::o;707:137::-;752:5;790:6;777:20;768:29;;806:32;832:5;806:32;:::i;:::-;707:137;;;;:::o;850:141::-;906:5;937:6;931:13;922:22;;953:32;979:5;953:32;:::i;:::-;850:141;;;;:::o;1010:338::-;1065:5;1114:3;1107:4;1099:6;1095:17;1091:27;1081:122;;1122:79;;:::i;:::-;1081:122;1239:6;1226:20;1264:78;1338:3;1330:6;1323:4;1315:6;1311:17;1264:78;:::i;:::-;1255:87;;1071:277;1010:338;;;;:::o;1368:553::-;1426:8;1436:6;1486:3;1479:4;1471:6;1467:17;1463:27;1453:122;;1494:79;;:::i;:::-;1453:122;1607:6;1594:20;1584:30;;1637:18;1629:6;1626:30;1623:117;;;1659:79;;:::i;:::-;1623:117;1773:4;1765:6;1761:17;1749:29;;1827:3;1819:4;1811:6;1807:17;1797:8;1793:32;1790:41;1787:128;;;1834:79;;:::i;:::-;1787:128;1368:553;;;;;:::o;1927:139::-;1973:5;2011:6;1998:20;1989:29;;2027:33;2054:5;2027:33;:::i;:::-;1927:139;;;;:::o;2072:329::-;2131:6;2180:2;2168:9;2159:7;2155:23;2151:32;2148:119;;;2186:79;;:::i;:::-;2148:119;2306:1;2331:53;2376:7;2367:6;2356:9;2352:22;2331:53;:::i;:::-;2321:63;;2277:117;2072:329;;;;:::o;2407:474::-;2475:6;2483;2532:2;2520:9;2511:7;2507:23;2503:32;2500:119;;;2538:79;;:::i;:::-;2500:119;2658:1;2683:53;2728:7;2719:6;2708:9;2704:22;2683:53;:::i;:::-;2673:63;;2629:117;2785:2;2811:53;2856:7;2847:6;2836:9;2832:22;2811:53;:::i;:::-;2801:63;;2756:118;2407:474;;;;;:::o;2887:619::-;2964:6;2972;2980;3029:2;3017:9;3008:7;3004:23;3000:32;2997:119;;;3035:79;;:::i;:::-;2997:119;3155:1;3180:53;3225:7;3216:6;3205:9;3201:22;3180:53;:::i;:::-;3170:63;;3126:117;3282:2;3308:53;3353:7;3344:6;3333:9;3329:22;3308:53;:::i;:::-;3298:63;;3253:118;3410:2;3436:53;3481:7;3472:6;3461:9;3457:22;3436:53;:::i;:::-;3426:63;;3381:118;2887:619;;;;;:::o;3512:943::-;3607:6;3615;3623;3631;3680:3;3668:9;3659:7;3655:23;3651:33;3648:120;;;3687:79;;:::i;:::-;3648:120;3807:1;3832:53;3877:7;3868:6;3857:9;3853:22;3832:53;:::i;:::-;3822:63;;3778:117;3934:2;3960:53;4005:7;3996:6;3985:9;3981:22;3960:53;:::i;:::-;3950:63;;3905:118;4062:2;4088:53;4133:7;4124:6;4113:9;4109:22;4088:53;:::i;:::-;4078:63;;4033:118;4218:2;4207:9;4203:18;4190:32;4249:18;4241:6;4238:30;4235:117;;;4271:79;;:::i;:::-;4235:117;4376:62;4430:7;4421:6;4410:9;4406:22;4376:62;:::i;:::-;4366:72;;4161:287;3512:943;;;;;;;:::o;4461:468::-;4526:6;4534;4583:2;4571:9;4562:7;4558:23;4554:32;4551:119;;;4589:79;;:::i;:::-;4551:119;4709:1;4734:53;4779:7;4770:6;4759:9;4755:22;4734:53;:::i;:::-;4724:63;;4680:117;4836:2;4862:50;4904:7;4895:6;4884:9;4880:22;4862:50;:::i;:::-;4852:60;;4807:115;4461:468;;;;;:::o;4935:474::-;5003:6;5011;5060:2;5048:9;5039:7;5035:23;5031:32;5028:119;;;5066:79;;:::i;:::-;5028:119;5186:1;5211:53;5256:7;5247:6;5236:9;5232:22;5211:53;:::i;:::-;5201:63;;5157:117;5313:2;5339:53;5384:7;5375:6;5364:9;5360:22;5339:53;:::i;:::-;5329:63;;5284:118;4935:474;;;;;:::o;5415:327::-;5473:6;5522:2;5510:9;5501:7;5497:23;5493:32;5490:119;;;5528:79;;:::i;:::-;5490:119;5648:1;5673:52;5717:7;5708:6;5697:9;5693:22;5673:52;:::i;:::-;5663:62;;5619:116;5415:327;;;;:::o;5748:349::-;5817:6;5866:2;5854:9;5845:7;5841:23;5837:32;5834:119;;;5872:79;;:::i;:::-;5834:119;5992:1;6017:63;6072:7;6063:6;6052:9;6048:22;6017:63;:::i;:::-;6007:73;;5963:127;5748:349;;;;:::o;6103:529::-;6174:6;6182;6231:2;6219:9;6210:7;6206:23;6202:32;6199:119;;;6237:79;;:::i;:::-;6199:119;6385:1;6374:9;6370:17;6357:31;6415:18;6407:6;6404:30;6401:117;;;6437:79;;:::i;:::-;6401:117;6550:65;6607:7;6598:6;6587:9;6583:22;6550:65;:::i;:::-;6532:83;;;;6328:297;6103:529;;;;;:::o;6638:329::-;6697:6;6746:2;6734:9;6725:7;6721:23;6717:32;6714:119;;;6752:79;;:::i;:::-;6714:119;6872:1;6897:53;6942:7;6933:6;6922:9;6918:22;6897:53;:::i;:::-;6887:63;;6843:117;6638:329;;;;:::o;6973:108::-;7050:24;7068:5;7050:24;:::i;:::-;7045:3;7038:37;6973:108;;:::o;7087:118::-;7174:24;7192:5;7174:24;:::i;:::-;7169:3;7162:37;7087:118;;:::o;7211:109::-;7292:21;7307:5;7292:21;:::i;:::-;7287:3;7280:34;7211:109;;:::o;7326:360::-;7412:3;7440:38;7472:5;7440:38;:::i;:::-;7494:70;7557:6;7552:3;7494:70;:::i;:::-;7487:77;;7573:52;7618:6;7613:3;7606:4;7599:5;7595:16;7573:52;:::i;:::-;7650:29;7672:6;7650:29;:::i;:::-;7645:3;7641:39;7634:46;;7416:270;7326:360;;;;:::o;7692:364::-;7780:3;7808:39;7841:5;7808:39;:::i;:::-;7863:71;7927:6;7922:3;7863:71;:::i;:::-;7856:78;;7943:52;7988:6;7983:3;7976:4;7969:5;7965:16;7943:52;:::i;:::-;8020:29;8042:6;8020:29;:::i;:::-;8015:3;8011:39;8004:46;;7784:272;7692:364;;;;:::o;8062:377::-;8168:3;8196:39;8229:5;8196:39;:::i;:::-;8251:89;8333:6;8328:3;8251:89;:::i;:::-;8244:96;;8349:52;8394:6;8389:3;8382:4;8375:5;8371:16;8349:52;:::i;:::-;8426:6;8421:3;8417:16;8410:23;;8172:267;8062:377;;;;:::o;8445:366::-;8587:3;8608:67;8672:2;8667:3;8608:67;:::i;:::-;8601:74;;8684:93;8773:3;8684:93;:::i;:::-;8802:2;8797:3;8793:12;8786:19;;8445:366;;;:::o;8817:::-;8959:3;8980:67;9044:2;9039:3;8980:67;:::i;:::-;8973:74;;9056:93;9145:3;9056:93;:::i;:::-;9174:2;9169:3;9165:12;9158:19;;8817:366;;;:::o;9189:::-;9331:3;9352:67;9416:2;9411:3;9352:67;:::i;:::-;9345:74;;9428:93;9517:3;9428:93;:::i;:::-;9546:2;9541:3;9537:12;9530:19;;9189:366;;;:::o;9561:::-;9703:3;9724:67;9788:2;9783:3;9724:67;:::i;:::-;9717:74;;9800:93;9889:3;9800:93;:::i;:::-;9918:2;9913:3;9909:12;9902:19;;9561:366;;;:::o;9933:::-;10075:3;10096:67;10160:2;10155:3;10096:67;:::i;:::-;10089:74;;10172:93;10261:3;10172:93;:::i;:::-;10290:2;10285:3;10281:12;10274:19;;9933:366;;;:::o;10305:::-;10447:3;10468:67;10532:2;10527:3;10468:67;:::i;:::-;10461:74;;10544:93;10633:3;10544:93;:::i;:::-;10662:2;10657:3;10653:12;10646:19;;10305:366;;;:::o;10677:::-;10819:3;10840:67;10904:2;10899:3;10840:67;:::i;:::-;10833:74;;10916:93;11005:3;10916:93;:::i;:::-;11034:2;11029:3;11025:12;11018:19;;10677:366;;;:::o;11049:::-;11191:3;11212:67;11276:2;11271:3;11212:67;:::i;:::-;11205:74;;11288:93;11377:3;11288:93;:::i;:::-;11406:2;11401:3;11397:12;11390:19;;11049:366;;;:::o;11421:::-;11563:3;11584:67;11648:2;11643:3;11584:67;:::i;:::-;11577:74;;11660:93;11749:3;11660:93;:::i;:::-;11778:2;11773:3;11769:12;11762:19;;11421:366;;;:::o;11793:::-;11935:3;11956:67;12020:2;12015:3;11956:67;:::i;:::-;11949:74;;12032:93;12121:3;12032:93;:::i;:::-;12150:2;12145:3;12141:12;12134:19;;11793:366;;;:::o;12165:365::-;12307:3;12328:66;12392:1;12387:3;12328:66;:::i;:::-;12321:73;;12403:93;12492:3;12403:93;:::i;:::-;12521:2;12516:3;12512:12;12505:19;;12165:365;;;:::o;12536:366::-;12678:3;12699:67;12763:2;12758:3;12699:67;:::i;:::-;12692:74;;12775:93;12864:3;12775:93;:::i;:::-;12893:2;12888:3;12884:12;12877:19;;12536:366;;;:::o;12908:::-;13050:3;13071:67;13135:2;13130:3;13071:67;:::i;:::-;13064:74;;13147:93;13236:3;13147:93;:::i;:::-;13265:2;13260:3;13256:12;13249:19;;12908:366;;;:::o;13280:::-;13422:3;13443:67;13507:2;13502:3;13443:67;:::i;:::-;13436:74;;13519:93;13608:3;13519:93;:::i;:::-;13637:2;13632:3;13628:12;13621:19;;13280:366;;;:::o;13652:::-;13794:3;13815:67;13879:2;13874:3;13815:67;:::i;:::-;13808:74;;13891:93;13980:3;13891:93;:::i;:::-;14009:2;14004:3;14000:12;13993:19;;13652:366;;;:::o;14024:::-;14166:3;14187:67;14251:2;14246:3;14187:67;:::i;:::-;14180:74;;14263:93;14352:3;14263:93;:::i;:::-;14381:2;14376:3;14372:12;14365:19;;14024:366;;;:::o;14396:::-;14538:3;14559:67;14623:2;14618:3;14559:67;:::i;:::-;14552:74;;14635:93;14724:3;14635:93;:::i;:::-;14753:2;14748:3;14744:12;14737:19;;14396:366;;;:::o;14768:::-;14910:3;14931:67;14995:2;14990:3;14931:67;:::i;:::-;14924:74;;15007:93;15096:3;15007:93;:::i;:::-;15125:2;15120:3;15116:12;15109:19;;14768:366;;;:::o;15140:::-;15282:3;15303:67;15367:2;15362:3;15303:67;:::i;:::-;15296:74;;15379:93;15468:3;15379:93;:::i;:::-;15497:2;15492:3;15488:12;15481:19;;15140:366;;;:::o;15512:::-;15654:3;15675:67;15739:2;15734:3;15675:67;:::i;:::-;15668:74;;15751:93;15840:3;15751:93;:::i;:::-;15869:2;15864:3;15860:12;15853:19;;15512:366;;;:::o;15884:::-;16026:3;16047:67;16111:2;16106:3;16047:67;:::i;:::-;16040:74;;16123:93;16212:3;16123:93;:::i;:::-;16241:2;16236:3;16232:12;16225:19;;15884:366;;;:::o;16256:398::-;16415:3;16436:83;16517:1;16512:3;16436:83;:::i;:::-;16429:90;;16528:93;16617:3;16528:93;:::i;:::-;16646:1;16641:3;16637:11;16630:18;;16256:398;;;:::o;16660:366::-;16802:3;16823:67;16887:2;16882:3;16823:67;:::i;:::-;16816:74;;16899:93;16988:3;16899:93;:::i;:::-;17017:2;17012:3;17008:12;17001:19;;16660:366;;;:::o;17032:::-;17174:3;17195:67;17259:2;17254:3;17195:67;:::i;:::-;17188:74;;17271:93;17360:3;17271:93;:::i;:::-;17389:2;17384:3;17380:12;17373:19;;17032:366;;;:::o;17404:::-;17546:3;17567:67;17631:2;17626:3;17567:67;:::i;:::-;17560:74;;17643:93;17732:3;17643:93;:::i;:::-;17761:2;17756:3;17752:12;17745:19;;17404:366;;;:::o;17776:::-;17918:3;17939:67;18003:2;17998:3;17939:67;:::i;:::-;17932:74;;18015:93;18104:3;18015:93;:::i;:::-;18133:2;18128:3;18124:12;18117:19;;17776:366;;;:::o;18148:::-;18290:3;18311:67;18375:2;18370:3;18311:67;:::i;:::-;18304:74;;18387:93;18476:3;18387:93;:::i;:::-;18505:2;18500:3;18496:12;18489:19;;18148:366;;;:::o;18520:::-;18662:3;18683:67;18747:2;18742:3;18683:67;:::i;:::-;18676:74;;18759:93;18848:3;18759:93;:::i;:::-;18877:2;18872:3;18868:12;18861:19;;18520:366;;;:::o;18892:::-;19034:3;19055:67;19119:2;19114:3;19055:67;:::i;:::-;19048:74;;19131:93;19220:3;19131:93;:::i;:::-;19249:2;19244:3;19240:12;19233:19;;18892:366;;;:::o;19264:::-;19406:3;19427:67;19491:2;19486:3;19427:67;:::i;:::-;19420:74;;19503:93;19592:3;19503:93;:::i;:::-;19621:2;19616:3;19612:12;19605:19;;19264:366;;;:::o;19636:::-;19778:3;19799:67;19863:2;19858:3;19799:67;:::i;:::-;19792:74;;19875:93;19964:3;19875:93;:::i;:::-;19993:2;19988:3;19984:12;19977:19;;19636:366;;;:::o;20008:::-;20150:3;20171:67;20235:2;20230:3;20171:67;:::i;:::-;20164:74;;20247:93;20336:3;20247:93;:::i;:::-;20365:2;20360:3;20356:12;20349:19;;20008:366;;;:::o;20380:::-;20522:3;20543:67;20607:2;20602:3;20543:67;:::i;:::-;20536:74;;20619:93;20708:3;20619:93;:::i;:::-;20737:2;20732:3;20728:12;20721:19;;20380:366;;;:::o;20822:529::-;20983:4;20978:3;20974:14;21070:4;21063:5;21059:16;21053:23;21089:63;21146:4;21141:3;21137:14;21123:12;21089:63;:::i;:::-;20998:164;21254:4;21247:5;21243:16;21237:23;21273:61;21328:4;21323:3;21319:14;21305:12;21273:61;:::i;:::-;21172:172;20952:399;20822:529;;:::o;21357:118::-;21444:24;21462:5;21444:24;:::i;:::-;21439:3;21432:37;21357:118;;:::o;21481:105::-;21556:23;21573:5;21556:23;:::i;:::-;21551:3;21544:36;21481:105;;:::o;21592:435::-;21772:3;21794:95;21885:3;21876:6;21794:95;:::i;:::-;21787:102;;21906:95;21997:3;21988:6;21906:95;:::i;:::-;21899:102;;22018:3;22011:10;;21592:435;;;;;:::o;22033:379::-;22217:3;22239:147;22382:3;22239:147;:::i;:::-;22232:154;;22403:3;22396:10;;22033:379;;;:::o;22418:222::-;22511:4;22549:2;22538:9;22534:18;22526:26;;22562:71;22630:1;22619:9;22615:17;22606:6;22562:71;:::i;:::-;22418:222;;;;:::o;22646:640::-;22841:4;22879:3;22868:9;22864:19;22856:27;;22893:71;22961:1;22950:9;22946:17;22937:6;22893:71;:::i;:::-;22974:72;23042:2;23031:9;23027:18;23018:6;22974:72;:::i;:::-;23056;23124:2;23113:9;23109:18;23100:6;23056:72;:::i;:::-;23175:9;23169:4;23165:20;23160:2;23149:9;23145:18;23138:48;23203:76;23274:4;23265:6;23203:76;:::i;:::-;23195:84;;22646:640;;;;;;;:::o;23292:210::-;23379:4;23417:2;23406:9;23402:18;23394:26;;23430:65;23492:1;23481:9;23477:17;23468:6;23430:65;:::i;:::-;23292:210;;;;:::o;23508:313::-;23621:4;23659:2;23648:9;23644:18;23636:26;;23708:9;23702:4;23698:20;23694:1;23683:9;23679:17;23672:47;23736:78;23809:4;23800:6;23736:78;:::i;:::-;23728:86;;23508:313;;;;:::o;23827:419::-;23993:4;24031:2;24020:9;24016:18;24008:26;;24080:9;24074:4;24070:20;24066:1;24055:9;24051:17;24044:47;24108:131;24234:4;24108:131;:::i;:::-;24100:139;;23827:419;;;:::o;24252:::-;24418:4;24456:2;24445:9;24441:18;24433:26;;24505:9;24499:4;24495:20;24491:1;24480:9;24476:17;24469:47;24533:131;24659:4;24533:131;:::i;:::-;24525:139;;24252:419;;;:::o;24677:::-;24843:4;24881:2;24870:9;24866:18;24858:26;;24930:9;24924:4;24920:20;24916:1;24905:9;24901:17;24894:47;24958:131;25084:4;24958:131;:::i;:::-;24950:139;;24677:419;;;:::o;25102:::-;25268:4;25306:2;25295:9;25291:18;25283:26;;25355:9;25349:4;25345:20;25341:1;25330:9;25326:17;25319:47;25383:131;25509:4;25383:131;:::i;:::-;25375:139;;25102:419;;;:::o;25527:::-;25693:4;25731:2;25720:9;25716:18;25708:26;;25780:9;25774:4;25770:20;25766:1;25755:9;25751:17;25744:47;25808:131;25934:4;25808:131;:::i;:::-;25800:139;;25527:419;;;:::o;25952:::-;26118:4;26156:2;26145:9;26141:18;26133:26;;26205:9;26199:4;26195:20;26191:1;26180:9;26176:17;26169:47;26233:131;26359:4;26233:131;:::i;:::-;26225:139;;25952:419;;;:::o;26377:::-;26543:4;26581:2;26570:9;26566:18;26558:26;;26630:9;26624:4;26620:20;26616:1;26605:9;26601:17;26594:47;26658:131;26784:4;26658:131;:::i;:::-;26650:139;;26377:419;;;:::o;26802:::-;26968:4;27006:2;26995:9;26991:18;26983:26;;27055:9;27049:4;27045:20;27041:1;27030:9;27026:17;27019:47;27083:131;27209:4;27083:131;:::i;:::-;27075:139;;26802:419;;;:::o;27227:::-;27393:4;27431:2;27420:9;27416:18;27408:26;;27480:9;27474:4;27470:20;27466:1;27455:9;27451:17;27444:47;27508:131;27634:4;27508:131;:::i;:::-;27500:139;;27227:419;;;:::o;27652:::-;27818:4;27856:2;27845:9;27841:18;27833:26;;27905:9;27899:4;27895:20;27891:1;27880:9;27876:17;27869:47;27933:131;28059:4;27933:131;:::i;:::-;27925:139;;27652:419;;;:::o;28077:::-;28243:4;28281:2;28270:9;28266:18;28258:26;;28330:9;28324:4;28320:20;28316:1;28305:9;28301:17;28294:47;28358:131;28484:4;28358:131;:::i;:::-;28350:139;;28077:419;;;:::o;28502:::-;28668:4;28706:2;28695:9;28691:18;28683:26;;28755:9;28749:4;28745:20;28741:1;28730:9;28726:17;28719:47;28783:131;28909:4;28783:131;:::i;:::-;28775:139;;28502:419;;;:::o;28927:::-;29093:4;29131:2;29120:9;29116:18;29108:26;;29180:9;29174:4;29170:20;29166:1;29155:9;29151:17;29144:47;29208:131;29334:4;29208:131;:::i;:::-;29200:139;;28927:419;;;:::o;29352:::-;29518:4;29556:2;29545:9;29541:18;29533:26;;29605:9;29599:4;29595:20;29591:1;29580:9;29576:17;29569:47;29633:131;29759:4;29633:131;:::i;:::-;29625:139;;29352:419;;;:::o;29777:::-;29943:4;29981:2;29970:9;29966:18;29958:26;;30030:9;30024:4;30020:20;30016:1;30005:9;30001:17;29994:47;30058:131;30184:4;30058:131;:::i;:::-;30050:139;;29777:419;;;:::o;30202:::-;30368:4;30406:2;30395:9;30391:18;30383:26;;30455:9;30449:4;30445:20;30441:1;30430:9;30426:17;30419:47;30483:131;30609:4;30483:131;:::i;:::-;30475:139;;30202:419;;;:::o;30627:::-;30793:4;30831:2;30820:9;30816:18;30808:26;;30880:9;30874:4;30870:20;30866:1;30855:9;30851:17;30844:47;30908:131;31034:4;30908:131;:::i;:::-;30900:139;;30627:419;;;:::o;31052:::-;31218:4;31256:2;31245:9;31241:18;31233:26;;31305:9;31299:4;31295:20;31291:1;31280:9;31276:17;31269:47;31333:131;31459:4;31333:131;:::i;:::-;31325:139;;31052:419;;;:::o;31477:::-;31643:4;31681:2;31670:9;31666:18;31658:26;;31730:9;31724:4;31720:20;31716:1;31705:9;31701:17;31694:47;31758:131;31884:4;31758:131;:::i;:::-;31750:139;;31477:419;;;:::o;31902:::-;32068:4;32106:2;32095:9;32091:18;32083:26;;32155:9;32149:4;32145:20;32141:1;32130:9;32126:17;32119:47;32183:131;32309:4;32183:131;:::i;:::-;32175:139;;31902:419;;;:::o;32327:::-;32493:4;32531:2;32520:9;32516:18;32508:26;;32580:9;32574:4;32570:20;32566:1;32555:9;32551:17;32544:47;32608:131;32734:4;32608:131;:::i;:::-;32600:139;;32327:419;;;:::o;32752:::-;32918:4;32956:2;32945:9;32941:18;32933:26;;33005:9;32999:4;32995:20;32991:1;32980:9;32976:17;32969:47;33033:131;33159:4;33033:131;:::i;:::-;33025:139;;32752:419;;;:::o;33177:::-;33343:4;33381:2;33370:9;33366:18;33358:26;;33430:9;33424:4;33420:20;33416:1;33405:9;33401:17;33394:47;33458:131;33584:4;33458:131;:::i;:::-;33450:139;;33177:419;;;:::o;33602:::-;33768:4;33806:2;33795:9;33791:18;33783:26;;33855:9;33849:4;33845:20;33841:1;33830:9;33826:17;33819:47;33883:131;34009:4;33883:131;:::i;:::-;33875:139;;33602:419;;;:::o;34027:::-;34193:4;34231:2;34220:9;34216:18;34208:26;;34280:9;34274:4;34270:20;34266:1;34255:9;34251:17;34244:47;34308:131;34434:4;34308:131;:::i;:::-;34300:139;;34027:419;;;:::o;34452:::-;34618:4;34656:2;34645:9;34641:18;34633:26;;34705:9;34699:4;34695:20;34691:1;34680:9;34676:17;34669:47;34733:131;34859:4;34733:131;:::i;:::-;34725:139;;34452:419;;;:::o;34877:::-;35043:4;35081:2;35070:9;35066:18;35058:26;;35130:9;35124:4;35120:20;35116:1;35105:9;35101:17;35094:47;35158:131;35284:4;35158:131;:::i;:::-;35150:139;;34877:419;;;:::o;35302:::-;35468:4;35506:2;35495:9;35491:18;35483:26;;35555:9;35549:4;35545:20;35541:1;35530:9;35526:17;35519:47;35583:131;35709:4;35583:131;:::i;:::-;35575:139;;35302:419;;;:::o;35727:::-;35893:4;35931:2;35920:9;35916:18;35908:26;;35980:9;35974:4;35970:20;35966:1;35955:9;35951:17;35944:47;36008:131;36134:4;36008:131;:::i;:::-;36000:139;;35727:419;;;:::o;36152:::-;36318:4;36356:2;36345:9;36341:18;36333:26;;36405:9;36399:4;36395:20;36391:1;36380:9;36376:17;36369:47;36433:131;36559:4;36433:131;:::i;:::-;36425:139;;36152:419;;;:::o;36577:::-;36743:4;36781:2;36770:9;36766:18;36758:26;;36830:9;36824:4;36820:20;36816:1;36805:9;36801:17;36794:47;36858:131;36984:4;36858:131;:::i;:::-;36850:139;;36577:419;;;:::o;37002:::-;37168:4;37206:2;37195:9;37191:18;37183:26;;37255:9;37249:4;37245:20;37241:1;37230:9;37226:17;37219:47;37283:131;37409:4;37283:131;:::i;:::-;37275:139;;37002:419;;;:::o;37427:350::-;37584:4;37622:2;37611:9;37607:18;37599:26;;37635:135;37767:1;37756:9;37752:17;37743:6;37635:135;:::i;:::-;37427:350;;;;:::o;37783:222::-;37876:4;37914:2;37903:9;37899:18;37891:26;;37927:71;37995:1;37984:9;37980:17;37971:6;37927:71;:::i;:::-;37783:222;;;;:::o;38011:129::-;38045:6;38072:20;;:::i;:::-;38062:30;;38101:33;38129:4;38121:6;38101:33;:::i;:::-;38011:129;;;:::o;38146:75::-;38179:6;38212:2;38206:9;38196:19;;38146:75;:::o;38227:307::-;38288:4;38378:18;38370:6;38367:30;38364:56;;;38400:18;;:::i;:::-;38364:56;38438:29;38460:6;38438:29;:::i;:::-;38430:37;;38522:4;38516;38512:15;38504:23;;38227:307;;;:::o;38540:98::-;38591:6;38625:5;38619:12;38609:22;;38540:98;;;:::o;38644:99::-;38696:6;38730:5;38724:12;38714:22;;38644:99;;;:::o;38749:168::-;38832:11;38866:6;38861:3;38854:19;38906:4;38901:3;38897:14;38882:29;;38749:168;;;;:::o;38923:147::-;39024:11;39061:3;39046:18;;38923:147;;;;:::o;39076:169::-;39160:11;39194:6;39189:3;39182:19;39234:4;39229:3;39225:14;39210:29;;39076:169;;;;:::o;39251:148::-;39353:11;39390:3;39375:18;;39251:148;;;;:::o;39405:273::-;39445:3;39464:20;39482:1;39464:20;:::i;:::-;39459:25;;39498:20;39516:1;39498:20;:::i;:::-;39493:25;;39620:1;39584:34;39580:42;39577:1;39574:49;39571:75;;;39626:18;;:::i;:::-;39571:75;39670:1;39667;39663:9;39656:16;;39405:273;;;;:::o;39684:305::-;39724:3;39743:20;39761:1;39743:20;:::i;:::-;39738:25;;39777:20;39795:1;39777:20;:::i;:::-;39772:25;;39931:1;39863:66;39859:74;39856:1;39853:81;39850:107;;;39937:18;;:::i;:::-;39850:107;39981:1;39978;39974:9;39967:16;;39684:305;;;;:::o;39995:185::-;40035:1;40052:20;40070:1;40052:20;:::i;:::-;40047:25;;40086:20;40104:1;40086:20;:::i;:::-;40081:25;;40125:1;40115:35;;40130:18;;:::i;:::-;40115:35;40172:1;40169;40165:9;40160:14;;39995:185;;;;:::o;40186:348::-;40226:7;40249:20;40267:1;40249:20;:::i;:::-;40244:25;;40283:20;40301:1;40283:20;:::i;:::-;40278:25;;40471:1;40403:66;40399:74;40396:1;40393:81;40388:1;40381:9;40374:17;40370:105;40367:131;;;40478:18;;:::i;:::-;40367:131;40526:1;40523;40519:9;40508:20;;40186:348;;;;:::o;40540:191::-;40580:4;40600:20;40618:1;40600:20;:::i;:::-;40595:25;;40634:20;40652:1;40634:20;:::i;:::-;40629:25;;40673:1;40670;40667:8;40664:34;;;40678:18;;:::i;:::-;40664:34;40723:1;40720;40716:9;40708:17;;40540:191;;;;:::o;40737:::-;40777:4;40797:20;40815:1;40797:20;:::i;:::-;40792:25;;40831:20;40849:1;40831:20;:::i;:::-;40826:25;;40870:1;40867;40864:8;40861:34;;;40875:18;;:::i;:::-;40861:34;40920:1;40917;40913:9;40905:17;;40737:191;;;;:::o;40934:96::-;40971:7;41000:24;41018:5;41000:24;:::i;:::-;40989:35;;40934:96;;;:::o;41036:90::-;41070:7;41113:5;41106:13;41099:21;41088:32;;41036:90;;;:::o;41132:149::-;41168:7;41208:66;41201:5;41197:78;41186:89;;41132:149;;;:::o;41287:118::-;41324:7;41364:34;41357:5;41353:46;41342:57;;41287:118;;;:::o;41411:126::-;41448:7;41488:42;41481:5;41477:54;41466:65;;41411:126;;;:::o;41543:77::-;41580:7;41609:5;41598:16;;41543:77;;;:::o;41626:101::-;41662:7;41702:18;41695:5;41691:30;41680:41;;41626:101;;;:::o;41733:154::-;41817:6;41812:3;41807;41794:30;41879:1;41870:6;41865:3;41861:16;41854:27;41733:154;;;:::o;41893:307::-;41961:1;41971:113;41985:6;41982:1;41979:13;41971:113;;;42070:1;42065:3;42061:11;42055:18;42051:1;42046:3;42042:11;42035:39;42007:2;42004:1;42000:10;41995:15;;41971:113;;;42102:6;42099:1;42096:13;42093:101;;;42182:1;42173:6;42168:3;42164:16;42157:27;42093:101;41942:258;41893:307;;;:::o;42206:171::-;42245:3;42268:24;42286:5;42268:24;:::i;:::-;42259:33;;42314:4;42307:5;42304:15;42301:41;;;42322:18;;:::i;:::-;42301:41;42369:1;42362:5;42358:13;42351:20;;42206:171;;;:::o;42383:320::-;42427:6;42464:1;42458:4;42454:12;42444:22;;42511:1;42505:4;42501:12;42532:18;42522:81;;42588:4;42580:6;42576:17;42566:27;;42522:81;42650:2;42642:6;42639:14;42619:18;42616:38;42613:84;;;42669:18;;:::i;:::-;42613:84;42434:269;42383:320;;;:::o;42709:281::-;42792:27;42814:4;42792:27;:::i;:::-;42784:6;42780:40;42922:6;42910:10;42907:22;42886:18;42874:10;42871:34;42868:62;42865:88;;;42933:18;;:::i;:::-;42865:88;42973:10;42969:2;42962:22;42752:238;42709:281;;:::o;42996:233::-;43035:3;43058:24;43076:5;43058:24;:::i;:::-;43049:33;;43104:66;43097:5;43094:77;43091:103;;;43174:18;;:::i;:::-;43091:103;43221:1;43214:5;43210:13;43203:20;;42996:233;;;:::o;43235:176::-;43267:1;43284:20;43302:1;43284:20;:::i;:::-;43279:25;;43318:20;43336:1;43318:20;:::i;:::-;43313:25;;43357:1;43347:35;;43362:18;;:::i;:::-;43347:35;43403:1;43400;43396:9;43391:14;;43235:176;;;;:::o;43417:180::-;43465:77;43462:1;43455:88;43562:4;43559:1;43552:15;43586:4;43583:1;43576:15;43603:180;43651:77;43648:1;43641:88;43748:4;43745:1;43738:15;43772:4;43769:1;43762:15;43789:180;43837:77;43834:1;43827:88;43934:4;43931:1;43924:15;43958:4;43955:1;43948:15;43975:180;44023:77;44020:1;44013:88;44120:4;44117:1;44110:15;44144:4;44141:1;44134:15;44161:180;44209:77;44206:1;44199:88;44306:4;44303:1;44296:15;44330:4;44327:1;44320:15;44347:117;44456:1;44453;44446:12;44470:117;44579:1;44576;44569:12;44593:117;44702:1;44699;44692:12;44716:117;44825:1;44822;44815:12;44839:117;44948:1;44945;44938:12;44962:117;45071:1;45068;45061:12;45085:102;45126:6;45177:2;45173:7;45168:2;45161:5;45157:14;45153:28;45143:38;;45085:102;;;:::o;45193:221::-;45333:34;45329:1;45321:6;45317:14;45310:58;45402:4;45397:2;45389:6;45385:15;45378:29;45193:221;:::o;45420:225::-;45560:34;45556:1;45548:6;45544:14;45537:58;45629:8;45624:2;45616:6;45612:15;45605:33;45420:225;:::o;45651:231::-;45791:34;45787:1;45779:6;45775:14;45768:58;45860:14;45855:2;45847:6;45843:15;45836:39;45651:231;:::o;45888:229::-;46028:34;46024:1;46016:6;46012:14;46005:58;46097:12;46092:2;46084:6;46080:15;46073:37;45888:229;:::o;46123:170::-;46263:22;46259:1;46251:6;46247:14;46240:46;46123:170;:::o;46299:::-;46439:22;46435:1;46427:6;46423:14;46416:46;46299:170;:::o;46475:222::-;46615:34;46611:1;46603:6;46599:14;46592:58;46684:5;46679:2;46671:6;46667:15;46660:30;46475:222;:::o;46703:224::-;46843:34;46839:1;46831:6;46827:14;46820:58;46912:7;46907:2;46899:6;46895:15;46888:32;46703:224;:::o;46933:236::-;47073:34;47069:1;47061:6;47057:14;47050:58;47142:19;47137:2;47129:6;47125:15;47118:44;46933:236;:::o;47175:168::-;47315:20;47311:1;47303:6;47299:14;47292:44;47175:168;:::o;47349:159::-;47489:11;47485:1;47477:6;47473:14;47466:35;47349:159;:::o;47514:244::-;47654:34;47650:1;47642:6;47638:14;47631:58;47723:27;47718:2;47710:6;47706:15;47699:52;47514:244;:::o;47764:174::-;47904:26;47900:1;47892:6;47888:14;47881:50;47764:174;:::o;47944:230::-;48084:34;48080:1;48072:6;48068:14;48061:58;48153:13;48148:2;48140:6;48136:15;48129:38;47944:230;:::o;48180:225::-;48320:34;48316:1;48308:6;48304:14;48297:58;48389:8;48384:2;48376:6;48372:15;48365:33;48180:225;:::o;48411:182::-;48551:34;48547:1;48539:6;48535:14;48528:58;48411:182;:::o;48599:234::-;48739:34;48735:1;48727:6;48723:14;48716:58;48808:17;48803:2;48795:6;48791:15;48784:42;48599:234;:::o;48839:176::-;48979:28;48975:1;48967:6;48963:14;48956:52;48839:176;:::o;49021:237::-;49161:34;49157:1;49149:6;49145:14;49138:58;49230:20;49225:2;49217:6;49213:15;49206:45;49021:237;:::o;49264:179::-;49404:31;49400:1;49392:6;49388:14;49381:55;49264:179;:::o;49449:221::-;49589:34;49585:1;49577:6;49573:14;49566:58;49658:4;49653:2;49645:6;49641:15;49634:29;49449:221;:::o;49676:114::-;;:::o;49796:166::-;49936:18;49932:1;49924:6;49920:14;49913:42;49796:166;:::o;49968:238::-;50108:34;50104:1;50096:6;50092:14;50085:58;50177:21;50172:2;50164:6;50160:15;50153:46;49968:238;:::o;50212:179::-;50352:31;50348:1;50340:6;50336:14;50329:55;50212:179;:::o;50397:220::-;50537:34;50533:1;50525:6;50521:14;50514:58;50606:3;50601:2;50593:6;50589:15;50582:28;50397:220;:::o;50623:169::-;50763:21;50759:1;50751:6;50747:14;50740:45;50623:169;:::o;50798:233::-;50938:34;50934:1;50926:6;50922:14;50915:58;51007:16;51002:2;50994:6;50990:15;50983:41;50798:233;:::o;51037:225::-;51177:34;51173:1;51165:6;51161:14;51154:58;51246:8;51241:2;51233:6;51229:15;51222:33;51037:225;:::o;51268:181::-;51408:33;51404:1;51396:6;51392:14;51385:57;51268:181;:::o;51455:234::-;51595:34;51591:1;51583:6;51579:14;51572:58;51664:17;51659:2;51651:6;51647:15;51640:42;51455:234;:::o;51695:232::-;51835:34;51831:1;51823:6;51819:14;51812:58;51904:15;51899:2;51891:6;51887:15;51880:40;51695:232;:::o;51933:221::-;52073:34;52069:1;52061:6;52057:14;52050:58;52142:4;52137:2;52129:6;52125:15;52118:29;51933:221;:::o;52160:122::-;52233:24;52251:5;52233:24;:::i;:::-;52226:5;52223:35;52213:63;;52272:1;52269;52262:12;52213:63;52160:122;:::o;52288:116::-;52358:21;52373:5;52358:21;:::i;:::-;52351:5;52348:32;52338:60;;52394:1;52391;52384:12;52338:60;52288:116;:::o;52410:120::-;52482:23;52499:5;52482:23;:::i;:::-;52475:5;52472:34;52462:62;;52520:1;52517;52510:12;52462:62;52410:120;:::o;52536:122::-;52609:24;52627:5;52609:24;:::i;:::-;52602:5;52599:35;52589:63;;52648:1;52645;52638:12;52589:63;52536:122;:::o

Swarm Source

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