ETH Price: $2,644.39 (+1.75%)

Token

Chill Bears Club (ChillBearsClub)
 

Overview

Max Total Supply

1,762 ChillBearsClub

Holders

160

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
edemirel.eth
Balance
10 ChillBearsClub
0x73355a0869936d3acacaa8a6c1f7800630ad5cbb
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:
ChillBearsClubContract

Compiler Version
v0.8.0+commit.c7dfd78e

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-02-18
*/

// SPDX-License-Identifier: MIT

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);
}



pragma solidity ^0.8.0;


/**
 * @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;
    }
}



pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    function _verifyCallResult(
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) private 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);
            }
        }
    }
}



pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

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

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

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



pragma solidity ^0.8.0;

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



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;
    }
}


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);
    }
}



pragma solidity ^0.8.0;


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

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

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



pragma solidity ^0.8.0;



/**
 * @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);
}



pragma solidity ^0.8.0;

/**
 * @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()))
        : "";
  }


  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 virtual 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 virtual 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 {}
}



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 make 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;
    }
}



pragma solidity ^0.8.0;


/**
 * @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() {
        _setOwner(_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 {
        _setOwner(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");
        _setOwner(newOwner);
    }

    function _setOwner(address newOwner) private {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}


pragma solidity ^0.8.0;

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

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


pragma solidity ^0.8.0;


contract ChillBearsClubContract is Ownable, ERC721A, ReentrancyGuard {
  uint256 public  CollectionSize;
  bool public bStart = true;
  uint256 public  mintprice =   30000000000000000;  
  uint256 public  MaxFreeMint = 1000; 
  uint public MAX_PRESALE_TOKENS = 10;  
  uint public MaxMintPerTx; 

 constructor(
    uint256 maxBatchSize_,
    uint256 collectionSize_
  ) ERC721A("Chill Bears Club", "ChillBearsClub", maxBatchSize_, collectionSize_) {
    MaxMintPerTx = maxBatchSize_;
    CollectionSize = collectionSize_;   
  }

  function Reserve(address _to,uint256 quantity) external onlyOwner {        
    require(totalSupply() + quantity <= CollectionSize, "Max token minted already");

    _safeMint(_to, quantity);
    }

  function Claim(uint256 quantity) external payable {
    require(bStart, "Sale is not started");
    require(quantity > 0 && quantity <= MAX_PRESALE_TOKENS, "Can not mint more than 10 token per tx");  
    require(totalSupply() + quantity <= MaxFreeMint, "Max token minted already");
    _safeMint(msg.sender, quantity);
  }

  function Mint(uint256 quantity) external payable {
    require(bStart, "Sale is not started");
    require(quantity > 0 && quantity <= MaxMintPerTx, "Can not mint more than 20 token per tx");
    require(msg.value >= mintprice*quantity, "Not paid enough.");
    require(totalSupply() + quantity <= CollectionSize, "Max token minted already");

    _safeMint(msg.sender, quantity);
  }

  string private _baseAPIURI;

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

  function _baseURI() internal view virtual override returns (string memory) {
    return _baseAPIURI;
  }
 
  function SetMaxperTxPresales(uint _MAX_PRESALE_TOKENS) external onlyOwner {
    MAX_PRESALE_TOKENS = _MAX_PRESALE_TOKENS;
  }   

  function setMaxMintPerTx(uint _MaxMintPerTx) external onlyOwner {
    MaxMintPerTx = _MaxMintPerTx;
  }   

  function setFullTokenSize(uint _CollectionSize) external onlyOwner {
    CollectionSize = _CollectionSize;
  }

  function setmintprice(uint _price) external onlyOwner {
    mintprice = _price;
  }        

  function setMaxFreeMint(uint _MaxFreeMint) external onlyOwner {
    MaxFreeMint = _MaxFreeMint;
  }         
	
  function SetStart() public onlyOwner {
    bStart = !bStart;
  }
  	
  function withdraw() external onlyOwner nonReentrant {
    (bool success, ) = msg.sender.call{value: address(this).balance}("");
    require(success, "Transfer failed.");
  }

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

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

  function getOwnershipData(uint256 tokenId)
    external
    view
    returns (TokenOwnership memory)
  {
    return ownershipOf(tokenId);
  }

  function tokensOfOwner(address _owner) external view returns(uint256[] memory ) {
    uint256 tokenCount = balanceOf(_owner);
    if (tokenCount == 0) {
        return new uint256[](0);
    } else {
        uint256[] memory result = new uint256[](tokenCount);
        uint256 index;
        for (index = 0; index < tokenCount; index++) {
            result[index] = tokenOfOwnerByIndex(_owner, index);
        }
        return result;
    }
  } 
 }

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"uint256","name":"maxBatchSize_","type":"uint256"},{"internalType":"uint256","name":"collectionSize_","type":"uint256"}],"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":"uint256","name":"quantity","type":"uint256"}],"name":"Claim","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"CollectionSize","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_PRESALE_TOKENS","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MaxFreeMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MaxMintPerTx","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"Mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"Reserve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_MAX_PRESALE_TOKENS","type":"uint256"}],"name":"SetMaxperTxPresales","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"SetStart","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"bStart","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"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":"mintprice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"nextOwnerToExplicitlySet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"numberMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_CollectionSize","type":"uint256"}],"name":"setFullTokenSize","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_MaxFreeMint","type":"uint256"}],"name":"setMaxFreeMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_MaxMintPerTx","type":"uint256"}],"name":"setMaxMintPerTx","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":"setmintprice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"tokensOfOwner","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"}]

60c0604052600060015560006008556001600b60006101000a81548160ff021916908315150217905550666a94d74f430000600c556103e8600d55600a600e553480156200004c57600080fd5b506040516200582b3803806200582b833981810160405281019062000072919062000383565b6040518060400160405280601081526020017f4368696c6c20426561727320436c7562000000000000000000000000000000008152506040518060400160405280600e81526020017f4368696c6c4265617273436c7562000000000000000000000000000000000000815250838362000100620000f4620001f060201b60201c565b620001f860201b60201c565b6000811162000146576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200013d90620004b6565b60405180910390fd5b600082116200018c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620001839062000494565b60405180910390fd5b8360029080519060200190620001a4929190620002bc565b508260039080519060200190620001bd929190620002bc565b508160a08181525050806080818152505050505050600160098190555081600f8190555080600a81905550505062000572565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b828054620002ca90620004f3565b90600052602060002090601f016020900481019282620002ee57600085556200033a565b82601f106200030957805160ff19168380011785556200033a565b828001600101855582156200033a579182015b82811115620003395782518255916020019190600101906200031c565b5b5090506200034991906200034d565b5090565b5b80821115620003685760008160009055506001016200034e565b5090565b6000815190506200037d8162000558565b92915050565b600080604083850312156200039757600080fd5b6000620003a7858286016200036c565b9250506020620003ba858286016200036c565b9150509250929050565b6000620003d3602783620004d8565b91507f455243373231413a206d61782062617463682073697a65206d7573742062652060008301527f6e6f6e7a65726f000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006200043b602e83620004d8565b91507f455243373231413a20636f6c6c656374696f6e206d757374206861766520612060008301527f6e6f6e7a65726f20737570706c790000000000000000000000000000000000006020830152604082019050919050565b60006020820190508181036000830152620004af81620003c4565b9050919050565b60006020820190508181036000830152620004d1816200042c565b9050919050565b600082825260208201905092915050565b6000819050919050565b600060028204905060018216806200050c57607f821691505b6020821081141562000523576200052262000529565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6200056381620004e9565b81146200056f57600080fd5b50565b60805160a05161527e620005ad60003960008181612b0d01528181612b36015261330101526000818161289501526128c9015261527e6000f3fe6080604052600436106102465760003560e01c8063742a4c9b11610139578063a9c2fe7d116100b6578063d7224ba01161007a578063d7224ba01461085c578063dc33e68114610887578063dc684451146108c4578063e985e9c5146108ed578063f19db7a41461092a578063f2fde38b1461095557610246565b8063a9c2fe7d14610779578063b88d4fde146107a2578063bc1cd629146107cb578063c5f2bb41146107f6578063c87b56dd1461081f57610246565b806388eab676116100fd57806388eab676146106925780638da5cb5b146106bd5780639231ab2a146106e857806395d89b4114610725578063a22cb4651461075057610246565b8063742a4c9b146105ce5780637bb2b3c1146105f75780638232321214610613578063823903a91461062a5780638462151c1461065557610246565b80632f745c59116101c7578063616cdb1e1161018b578063616cdb1e146104eb57806361c8427c146105145780636352211e1461053d57806370a082311461057a578063715018a6146105b757610246565b80632f745c59146104085780633ccfd60b1461044557806342842e0e1461045c5780634f6ccce71461048557806355f804b3146104c257610246565b806318160ddd1161020e57806318160ddd1461033557806323b872dd1461036057806329dc7205146103895780632ceb4974146103b45780632d20fb60146103df57610246565b806301ffc9a71461024b57806306fdde031461028857806307883703146102b3578063081812fc146102cf578063095ea7b31461030c575b600080fd5b34801561025757600080fd5b50610272600480360381019061026d9190613add565b61097e565b60405161027f91906148b9565b60405180910390f35b34801561029457600080fd5b5061029d610ac8565b6040516102aa91906148d4565b60405180910390f35b6102cd60048036038101906102c89190613b74565b610b5a565b005b3480156102db57600080fd5b506102f660048036038101906102f19190613b74565b610cae565b6040516103039190614830565b60405180910390f35b34801561031857600080fd5b50610333600480360381019061032e9190613aa1565b610d33565b005b34801561034157600080fd5b5061034a610e4c565b6040516103579190614cd1565b60405180910390f35b34801561036c57600080fd5b506103876004803603810190610382919061399b565b610e56565b005b34801561039557600080fd5b5061039e610e66565b6040516103ab9190614cd1565b60405180910390f35b3480156103c057600080fd5b506103c9610e6c565b6040516103d69190614cd1565b60405180910390f35b3480156103eb57600080fd5b5061040660048036038101906104019190613b74565b610e72565b005b34801561041457600080fd5b5061042f600480360381019061042a9190613aa1565b610f50565b60405161043c9190614cd1565b60405180910390f35b34801561045157600080fd5b5061045a61114e565b005b34801561046857600080fd5b50610483600480360381019061047e919061399b565b6112cf565b005b34801561049157600080fd5b506104ac60048036038101906104a79190613b74565b6112ef565b6040516104b99190614cd1565b60405180910390f35b3480156104ce57600080fd5b506104e960048036038101906104e49190613b2f565b611342565b005b3480156104f757600080fd5b50610512600480360381019061050d9190613b74565b6113d4565b005b34801561052057600080fd5b5061053b60048036038101906105369190613aa1565b61145a565b005b34801561054957600080fd5b50610564600480360381019061055f9190613b74565b61153b565b6040516105719190614830565b60405180910390f35b34801561058657600080fd5b506105a1600480360381019061059c9190613936565b611551565b6040516105ae9190614cd1565b60405180910390f35b3480156105c357600080fd5b506105cc61163a565b005b3480156105da57600080fd5b506105f560048036038101906105f09190613b74565b6116c2565b005b610611600480360381019061060c9190613b74565b611748565b005b34801561061f57600080fd5b5061062861184c565b005b34801561063657600080fd5b5061063f6118f4565b60405161064c9190614cd1565b60405180910390f35b34801561066157600080fd5b5061067c60048036038101906106779190613936565b6118fa565b6040516106899190614897565b60405180910390f35b34801561069e57600080fd5b506106a7611a76565b6040516106b49190614cd1565b60405180910390f35b3480156106c957600080fd5b506106d2611a7c565b6040516106df9190614830565b60405180910390f35b3480156106f457600080fd5b5061070f600480360381019061070a9190613b74565b611aa5565b60405161071c9190614cb6565b60405180910390f35b34801561073157600080fd5b5061073a611abd565b60405161074791906148d4565b60405180910390f35b34801561075c57600080fd5b5061077760048036038101906107729190613a65565b611b4f565b005b34801561078557600080fd5b506107a0600480360381019061079b9190613b74565b611cd0565b005b3480156107ae57600080fd5b506107c960048036038101906107c491906139ea565b611d56565b005b3480156107d757600080fd5b506107e0611db2565b6040516107ed9190614cd1565b60405180910390f35b34801561080257600080fd5b5061081d60048036038101906108189190613b74565b611db8565b005b34801561082b57600080fd5b5061084660048036038101906108419190613b74565b611e3e565b60405161085391906148d4565b60405180910390f35b34801561086857600080fd5b50610871611ee5565b60405161087e9190614cd1565b60405180910390f35b34801561089357600080fd5b506108ae60048036038101906108a99190613936565b611eeb565b6040516108bb9190614cd1565b60405180910390f35b3480156108d057600080fd5b506108eb60048036038101906108e69190613b74565b611efd565b005b3480156108f957600080fd5b50610914600480360381019061090f919061395f565b611f83565b60405161092191906148b9565b60405180910390f35b34801561093657600080fd5b5061093f612017565b60405161094c91906148b9565b60405180910390f35b34801561096157600080fd5b5061097c60048036038101906109779190613936565b61202a565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610a4957507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610ab157507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610ac15750610ac082612122565b5b9050919050565b606060028054610ad790615073565b80601f0160208091040260200160405190810160405280929190818152602001828054610b0390615073565b8015610b505780601f10610b2557610100808354040283529160200191610b50565b820191906000526020600020905b815481529060010190602001808311610b3357829003601f168201915b5050505050905090565b600b60009054906101000a900460ff16610ba9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ba0906149d6565b60405180910390fd5b600081118015610bbb5750600f548111155b610bfa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bf190614a76565b60405180910390fd5b80600c54610c089190614ea1565b341015610c4a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c4190614b16565b60405180910390fd5b600a5481610c56610e4c565b610c609190614e1a565b1115610ca1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c98906149b6565b60405180910390fd5b610cab338261218c565b50565b6000610cb9826121aa565b610cf8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cef90614c76565b60405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610d3e8261153b565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610daf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610da690614b36565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610dce6121b8565b73ffffffffffffffffffffffffffffffffffffffff161480610dfd5750610dfc81610df76121b8565b611f83565b5b610e3c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e33906149f6565b60405180910390fd5b610e478383836121c0565b505050565b6000600154905090565b610e61838383612272565b505050565b600e5481565b600d5481565b610e7a6121b8565b73ffffffffffffffffffffffffffffffffffffffff16610e98611a7c565b73ffffffffffffffffffffffffffffffffffffffff1614610eee576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ee590614a96565b60405180910390fd5b60026009541415610f34576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f2b90614c16565b60405180910390fd5b6002600981905550610f458161282b565b600160098190555050565b6000610f5b83611551565b8210610f9c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f93906148f6565b60405180910390fd5b6000610fa6610e4c565b905060008060005b8381101561110c576000600460008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146110a057806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156110f857868414156110e9578195505050505050611148565b83806110f4906150a5565b9450505b508080611104906150a5565b915050610fae565b506040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161113f90614bd6565b60405180910390fd5b92915050565b6111566121b8565b73ffffffffffffffffffffffffffffffffffffffff16611174611a7c565b73ffffffffffffffffffffffffffffffffffffffff16146111ca576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111c190614a96565b60405180910390fd5b60026009541415611210576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161120790614c16565b60405180910390fd5b600260098190555060003373ffffffffffffffffffffffffffffffffffffffff164760405161123e9061481b565b60006040518083038185875af1925050503d806000811461127b576040519150601f19603f3d011682016040523d82523d6000602084013e611280565b606091505b50509050806112c4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112bb90614b56565b60405180910390fd5b506001600981905550565b6112ea83838360405180602001604052806000815250611d56565b505050565b60006112f9610e4c565b821061133a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161133190614956565b60405180910390fd5b819050919050565b61134a6121b8565b73ffffffffffffffffffffffffffffffffffffffff16611368611a7c565b73ffffffffffffffffffffffffffffffffffffffff16146113be576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113b590614a96565b60405180910390fd5b8181601091906113cf92919061373e565b505050565b6113dc6121b8565b73ffffffffffffffffffffffffffffffffffffffff166113fa611a7c565b73ffffffffffffffffffffffffffffffffffffffff1614611450576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161144790614a96565b60405180910390fd5b80600f8190555050565b6114626121b8565b73ffffffffffffffffffffffffffffffffffffffff16611480611a7c565b73ffffffffffffffffffffffffffffffffffffffff16146114d6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114cd90614a96565b60405180910390fd5b600a54816114e2610e4c565b6114ec9190614e1a565b111561152d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611524906149b6565b60405180910390fd5b611537828261218c565b5050565b600061154682612ab9565b600001519050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156115c2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115b990614a36565b60405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b6116426121b8565b73ffffffffffffffffffffffffffffffffffffffff16611660611a7c565b73ffffffffffffffffffffffffffffffffffffffff16146116b6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116ad90614a96565b60405180910390fd5b6116c06000612cbc565b565b6116ca6121b8565b73ffffffffffffffffffffffffffffffffffffffff166116e8611a7c565b73ffffffffffffffffffffffffffffffffffffffff161461173e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161173590614a96565b60405180910390fd5b80600d8190555050565b600b60009054906101000a900460ff16611797576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161178e906149d6565b60405180910390fd5b6000811180156117a95750600e548111155b6117e8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117df90614c36565b60405180910390fd5b600d54816117f4610e4c565b6117fe9190614e1a565b111561183f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611836906149b6565b60405180910390fd5b611849338261218c565b50565b6118546121b8565b73ffffffffffffffffffffffffffffffffffffffff16611872611a7c565b73ffffffffffffffffffffffffffffffffffffffff16146118c8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118bf90614a96565b60405180910390fd5b600b60009054906101000a900460ff1615600b60006101000a81548160ff021916908315150217905550565b600f5481565b6060600061190783611551565b9050600081141561198a57600067ffffffffffffffff811115611953577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280602002602001820160405280156119815781602001602082028036833780820191505090505b50915050611a71565b60008167ffffffffffffffff8111156119cc577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280602002602001820160405280156119fa5781602001602082028036833780820191505090505b50905060005b82811015611a6a57611a128582610f50565b828281518110611a4b577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010181815250508080611a62906150a5565b915050611a00565b8193505050505b919050565b600c5481565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b611aad6137c4565b611ab682612ab9565b9050919050565b606060038054611acc90615073565b80601f0160208091040260200160405190810160405280929190818152602001828054611af890615073565b8015611b455780601f10611b1a57610100808354040283529160200191611b45565b820191906000526020600020905b815481529060010190602001808311611b2857829003601f168201915b5050505050905090565b611b576121b8565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611bc5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bbc90614ad6565b60405180910390fd5b8060076000611bd26121b8565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611c7f6121b8565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611cc491906148b9565b60405180910390a35050565b611cd86121b8565b73ffffffffffffffffffffffffffffffffffffffff16611cf6611a7c565b73ffffffffffffffffffffffffffffffffffffffff1614611d4c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d4390614a96565b60405180910390fd5b80600c8190555050565b611d61848484612272565b611d6d84848484612d80565b611dac576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611da390614b76565b60405180910390fd5b50505050565b600a5481565b611dc06121b8565b73ffffffffffffffffffffffffffffffffffffffff16611dde611a7c565b73ffffffffffffffffffffffffffffffffffffffff1614611e34576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e2b90614a96565b60405180910390fd5b80600a8190555050565b6060611e49826121aa565b611e88576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e7f90614ab6565b60405180910390fd5b6000611e92612f17565b90506000815111611eb25760405180602001604052806000815250611edd565b80611ebc84612fa9565b604051602001611ecd9291906147f7565b6040516020818303038152906040525b915050919050565b60085481565b6000611ef682613156565b9050919050565b611f056121b8565b73ffffffffffffffffffffffffffffffffffffffff16611f23611a7c565b73ffffffffffffffffffffffffffffffffffffffff1614611f79576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f7090614a96565b60405180910390fd5b80600e8190555050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600b60009054906101000a900460ff1681565b6120326121b8565b73ffffffffffffffffffffffffffffffffffffffff16612050611a7c565b73ffffffffffffffffffffffffffffffffffffffff16146120a6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161209d90614a96565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612116576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161210d90614916565b60405180910390fd5b61211f81612cbc565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6121a682826040518060200160405280600081525061323f565b5050565b600060015482109050919050565b600033905090565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600061227d82612ab9565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff166122a46121b8565b73ffffffffffffffffffffffffffffffffffffffff16148061230057506122c96121b8565b73ffffffffffffffffffffffffffffffffffffffff166122e884610cae565b73ffffffffffffffffffffffffffffffffffffffff16145b8061231c575061231b82600001516123166121b8565b611f83565b5b90508061235e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161235590614af6565b60405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff16146123d0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123c790614a56565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612440576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161243790614976565b60405180910390fd5b61244d858585600161371f565b61245d60008484600001516121c0565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff166124cb9190614efb565b92506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff1661256f9190614dd4565b92506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060405180604001604052808573ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506004600085815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555090505060006001846126759190614e1a565b9050600073ffffffffffffffffffffffffffffffffffffffff166004600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614156127bb576126eb816121aa565b156127ba576040518060400160405280846000015173ffffffffffffffffffffffffffffffffffffffff168152602001846020015167ffffffffffffffff168152506004600083815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055509050505b5b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46128238686866001613725565b505050505050565b6000600854905060008211612875576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161286c90614a16565b60405180910390fd5b6000600183836128859190614e1a565b61288f9190614f2f565b905060017f00000000000000000000000000000000000000000000000000000000000000006128be9190614f2f565b8111156128f55760017f00000000000000000000000000000000000000000000000000000000000000006128f29190614f2f565b90505b6128fe816121aa565b61293d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161293490614bf6565b60405180910390fd5b60008290505b818111612aa057600073ffffffffffffffffffffffffffffffffffffffff166004600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415612a8d5760006129c082612ab9565b90506040518060400160405280826000015173ffffffffffffffffffffffffffffffffffffffff168152602001826020015167ffffffffffffffff168152506004600084815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550905050505b8080612a98906150a5565b915050612943565b50600181612aae9190614e1a565b600881905550505050565b612ac16137c4565b612aca826121aa565b612b09576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b0090614936565b60405180910390fd5b60007f00000000000000000000000000000000000000000000000000000000000000008310612b6d5760017f000000000000000000000000000000000000000000000000000000000000000084612b609190614f2f565b612b6a9190614e1a565b90505b60008390505b818110612c7b576000600460008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612c6757809350505050612cb7565b508080612c7390615049565b915050612b73565b506040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612cae90614c56565b60405180910390fd5b919050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000612da18473ffffffffffffffffffffffffffffffffffffffff1661372b565b15612f0a578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612dca6121b8565b8786866040518563ffffffff1660e01b8152600401612dec949392919061484b565b602060405180830381600087803b158015612e0657600080fd5b505af1925050508015612e3757506040513d601f19601f82011682018060405250810190612e349190613b06565b60015b612eba573d8060008114612e67576040519150601f19603f3d011682016040523d82523d6000602084013e612e6c565b606091505b50600081511415612eb2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ea990614b76565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612f0f565b600190505b949350505050565b606060108054612f2690615073565b80601f0160208091040260200160405190810160405280929190818152602001828054612f5290615073565b8015612f9f5780601f10612f7457610100808354040283529160200191612f9f565b820191906000526020600020905b815481529060010190602001808311612f8257829003601f168201915b5050505050905090565b60606000821415612ff1576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050613151565b600082905060005b6000821461302357808061300c906150a5565b915050600a8261301c9190614e70565b9150612ff9565b60008167ffffffffffffffff811115613065577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156130975781602001600182028036833780820191505090505b5090505b6000851461314a576001826130b09190614f2f565b9150600a856130bf91906150ee565b60306130cb9190614e1a565b60f81b818381518110613107577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856131439190614e70565b945061309b565b8093505050505b919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156131c7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016131be90614996565b60405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160109054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b60006001549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156132b6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016132ad90614bb6565b60405180910390fd5b6132bf816121aa565b156132ff576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016132f690614b96565b60405180910390fd5b7f0000000000000000000000000000000000000000000000000000000000000000831115613362576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161335990614c96565b60405180910390fd5b61336f600085838661371f565b6000600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206040518060400160405290816000820160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff1681526020016000820160109054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff16815250509050604051806040016040528085836000015161346c9190614dd4565b6fffffffffffffffffffffffffffffffff1681526020018583602001516134939190614dd4565b6fffffffffffffffffffffffffffffffff16815250600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008201518160000160006101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060208201518160000160106101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555090505060405180604001604052808673ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506004600084815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550905050600082905060005b8581101561370257818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46136a26000888488612d80565b6136e1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016136d890614b76565b60405180910390fd5b81806136ec906150a5565b92505080806136fa906150a5565b915050613631565b50806001819055506137176000878588613725565b505050505050565b50505050565b50505050565b600080823b905060008111915050919050565b82805461374a90615073565b90600052602060002090601f01602090048101928261376c57600085556137b3565b82601f1061378557803560ff19168380011785556137b3565b828001600101855582156137b3579182015b828111156137b2578235825591602001919060010190613797565b5b5090506137c091906137fe565b5090565b6040518060400160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681525090565b5b808211156138175760008160009055506001016137ff565b5090565b600061382e61382984614d1d565b614cec565b90508281526020810184848401111561384657600080fd5b613851848285615007565b509392505050565b600081359050613868816151ec565b92915050565b60008135905061387d81615203565b92915050565b6000813590506138928161521a565b92915050565b6000815190506138a78161521a565b92915050565b600082601f8301126138be57600080fd5b81356138ce84826020860161381b565b91505092915050565b60008083601f8401126138e957600080fd5b8235905067ffffffffffffffff81111561390257600080fd5b60208301915083600182028301111561391a57600080fd5b9250929050565b60008135905061393081615231565b92915050565b60006020828403121561394857600080fd5b600061395684828501613859565b91505092915050565b6000806040838503121561397257600080fd5b600061398085828601613859565b925050602061399185828601613859565b9150509250929050565b6000806000606084860312156139b057600080fd5b60006139be86828701613859565b93505060206139cf86828701613859565b92505060406139e086828701613921565b9150509250925092565b60008060008060808587031215613a0057600080fd5b6000613a0e87828801613859565b9450506020613a1f87828801613859565b9350506040613a3087828801613921565b925050606085013567ffffffffffffffff811115613a4d57600080fd5b613a59878288016138ad565b91505092959194509250565b60008060408385031215613a7857600080fd5b6000613a8685828601613859565b9250506020613a978582860161386e565b9150509250929050565b60008060408385031215613ab457600080fd5b6000613ac285828601613859565b9250506020613ad385828601613921565b9150509250929050565b600060208284031215613aef57600080fd5b6000613afd84828501613883565b91505092915050565b600060208284031215613b1857600080fd5b6000613b2684828501613898565b91505092915050565b60008060208385031215613b4257600080fd5b600083013567ffffffffffffffff811115613b5c57600080fd5b613b68858286016138d7565b92509250509250929050565b600060208284031215613b8657600080fd5b6000613b9484828501613921565b91505092915050565b6000613ba983836147ca565b60208301905092915050565b613bbe81614f63565b82525050565b613bcd81614f63565b82525050565b6000613bde82614d5d565b613be88185614d8b565b9350613bf383614d4d565b8060005b83811015613c24578151613c0b8882613b9d565b9750613c1683614d7e565b925050600181019050613bf7565b5085935050505092915050565b613c3a81614f75565b82525050565b6000613c4b82614d68565b613c558185614d9c565b9350613c65818560208601615016565b613c6e816151db565b840191505092915050565b6000613c8482614d73565b613c8e8185614db8565b9350613c9e818560208601615016565b613ca7816151db565b840191505092915050565b6000613cbd82614d73565b613cc78185614dc9565b9350613cd7818560208601615016565b80840191505092915050565b6000613cf0602283614db8565b91507f455243373231413a206f776e657220696e646578206f7574206f6620626f756e60008301527f64730000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613d56602683614db8565b91507f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008301527f64647265737300000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613dbc602a83614db8565b91507f455243373231413a206f776e657220717565727920666f72206e6f6e6578697360008301527f74656e7420746f6b656e000000000000000000000000000000000000000000006020830152604082019050919050565b6000613e22602383614db8565b91507f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f7560008301527f6e647300000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613e88602583614db8565b91507f455243373231413a207472616e7366657220746f20746865207a65726f20616460008301527f64726573730000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613eee603183614db8565b91507f455243373231413a206e756d626572206d696e74656420717565727920666f7260008301527f20746865207a65726f20616464726573730000000000000000000000000000006020830152604082019050919050565b6000613f54601883614db8565b91507f4d617820746f6b656e206d696e74656420616c726561647900000000000000006000830152602082019050919050565b6000613f94601383614db8565b91507f53616c65206973206e6f742073746172746564000000000000000000000000006000830152602082019050919050565b6000613fd4603983614db8565b91507f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60008301527f776e6572206e6f7220617070726f76656420666f7220616c6c000000000000006020830152604082019050919050565b600061403a601883614db8565b91507f7175616e74697479206d757374206265206e6f6e7a65726f00000000000000006000830152602082019050919050565b600061407a602b83614db8565b91507f455243373231413a2062616c616e636520717565727920666f7220746865207a60008301527f65726f20616464726573730000000000000000000000000000000000000000006020830152604082019050919050565b60006140e0602683614db8565b91507f455243373231413a207472616e736665722066726f6d20696e636f727265637460008301527f206f776e657200000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000614146602683614db8565b91507f43616e206e6f74206d696e74206d6f7265207468616e20323020746f6b656e2060008301527f70657220747800000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006141ac602083614db8565b91507f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726000830152602082019050919050565b60006141ec602f83614db8565b91507f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008301527f6e6578697374656e7420746f6b656e00000000000000000000000000000000006020830152604082019050919050565b6000614252601a83614db8565b91507f455243373231413a20617070726f766520746f2063616c6c65720000000000006000830152602082019050919050565b6000614292603283614db8565b91507f455243373231413a207472616e736665722063616c6c6572206973206e6f742060008301527f6f776e6572206e6f7220617070726f76656400000000000000000000000000006020830152604082019050919050565b60006142f8601083614db8565b91507f4e6f74207061696420656e6f7567682e000000000000000000000000000000006000830152602082019050919050565b6000614338602283614db8565b91507f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60008301527f65720000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061439e600083614dad565b9150600082019050919050565b60006143b8601083614db8565b91507f5472616e73666572206661696c65642e000000000000000000000000000000006000830152602082019050919050565b60006143f8603383614db8565b91507f455243373231413a207472616e7366657220746f206e6f6e204552433732315260008301527f6563656976657220696d706c656d656e746572000000000000000000000000006020830152604082019050919050565b600061445e601d83614db8565b91507f455243373231413a20746f6b656e20616c7265616479206d696e7465640000006000830152602082019050919050565b600061449e602183614db8565b91507f455243373231413a206d696e7420746f20746865207a65726f2061646472657360008301527f73000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000614504602e83614db8565b91507f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060008301527f6f776e657220627920696e6465780000000000000000000000000000000000006020830152604082019050919050565b600061456a602683614db8565b91507f6e6f7420656e6f756768206d696e7465642079657420666f722074686973206360008301527f6c65616e757000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006145d0601f83614db8565b91507f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006000830152602082019050919050565b6000614610602683614db8565b91507f43616e206e6f74206d696e74206d6f7265207468616e20313020746f6b656e2060008301527f70657220747800000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000614676602f83614db8565b91507f455243373231413a20756e61626c6520746f2064657465726d696e652074686560008301527f206f776e6572206f6620746f6b656e00000000000000000000000000000000006020830152604082019050919050565b60006146dc602d83614db8565b91507f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560008301527f78697374656e7420746f6b656e000000000000000000000000000000000000006020830152604082019050919050565b6000614742602283614db8565b91507f455243373231413a207175616e7469747920746f206d696e7420746f6f20686960008301527f67680000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6040820160008201516147b16000850182613bb5565b5060208201516147c460208501826147e8565b50505050565b6147d381614fe9565b82525050565b6147e281614fe9565b82525050565b6147f181614ff3565b82525050565b60006148038285613cb2565b915061480f8284613cb2565b91508190509392505050565b600061482682614391565b9150819050919050565b60006020820190506148456000830184613bc4565b92915050565b60006080820190506148606000830187613bc4565b61486d6020830186613bc4565b61487a60408301856147d9565b818103606083015261488c8184613c40565b905095945050505050565b600060208201905081810360008301526148b18184613bd3565b905092915050565b60006020820190506148ce6000830184613c31565b92915050565b600060208201905081810360008301526148ee8184613c79565b905092915050565b6000602082019050818103600083015261490f81613ce3565b9050919050565b6000602082019050818103600083015261492f81613d49565b9050919050565b6000602082019050818103600083015261494f81613daf565b9050919050565b6000602082019050818103600083015261496f81613e15565b9050919050565b6000602082019050818103600083015261498f81613e7b565b9050919050565b600060208201905081810360008301526149af81613ee1565b9050919050565b600060208201905081810360008301526149cf81613f47565b9050919050565b600060208201905081810360008301526149ef81613f87565b9050919050565b60006020820190508181036000830152614a0f81613fc7565b9050919050565b60006020820190508181036000830152614a2f8161402d565b9050919050565b60006020820190508181036000830152614a4f8161406d565b9050919050565b60006020820190508181036000830152614a6f816140d3565b9050919050565b60006020820190508181036000830152614a8f81614139565b9050919050565b60006020820190508181036000830152614aaf8161419f565b9050919050565b60006020820190508181036000830152614acf816141df565b9050919050565b60006020820190508181036000830152614aef81614245565b9050919050565b60006020820190508181036000830152614b0f81614285565b9050919050565b60006020820190508181036000830152614b2f816142eb565b9050919050565b60006020820190508181036000830152614b4f8161432b565b9050919050565b60006020820190508181036000830152614b6f816143ab565b9050919050565b60006020820190508181036000830152614b8f816143eb565b9050919050565b60006020820190508181036000830152614baf81614451565b9050919050565b60006020820190508181036000830152614bcf81614491565b9050919050565b60006020820190508181036000830152614bef816144f7565b9050919050565b60006020820190508181036000830152614c0f8161455d565b9050919050565b60006020820190508181036000830152614c2f816145c3565b9050919050565b60006020820190508181036000830152614c4f81614603565b9050919050565b60006020820190508181036000830152614c6f81614669565b9050919050565b60006020820190508181036000830152614c8f816146cf565b9050919050565b60006020820190508181036000830152614caf81614735565b9050919050565b6000604082019050614ccb600083018461479b565b92915050565b6000602082019050614ce660008301846147d9565b92915050565b6000604051905081810181811067ffffffffffffffff82111715614d1357614d126151ac565b5b8060405250919050565b600067ffffffffffffffff821115614d3857614d376151ac565b5b601f19601f8301169050602081019050919050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000614ddf82614fad565b9150614dea83614fad565b9250826fffffffffffffffffffffffffffffffff03821115614e0f57614e0e61511f565b5b828201905092915050565b6000614e2582614fe9565b9150614e3083614fe9565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115614e6557614e6461511f565b5b828201905092915050565b6000614e7b82614fe9565b9150614e8683614fe9565b925082614e9657614e9561514e565b5b828204905092915050565b6000614eac82614fe9565b9150614eb783614fe9565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615614ef057614eef61511f565b5b828202905092915050565b6000614f0682614fad565b9150614f1183614fad565b925082821015614f2457614f2361511f565b5b828203905092915050565b6000614f3a82614fe9565b9150614f4583614fe9565b925082821015614f5857614f5761511f565b5b828203905092915050565b6000614f6e82614fc9565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b60006fffffffffffffffffffffffffffffffff82169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600067ffffffffffffffff82169050919050565b82818337600083830152505050565b60005b83811015615034578082015181840152602081019050615019565b83811115615043576000848401525b50505050565b600061505482614fe9565b915060008214156150685761506761511f565b5b600182039050919050565b6000600282049050600182168061508b57607f821691505b6020821081141561509f5761509e61517d565b5b50919050565b60006150b082614fe9565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156150e3576150e261511f565b5b600182019050919050565b60006150f982614fe9565b915061510483614fe9565b9250826151145761511361514e565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b6151f581614f63565b811461520057600080fd5b50565b61520c81614f75565b811461521757600080fd5b50565b61522381614f81565b811461522e57600080fd5b50565b61523a81614fe9565b811461524557600080fd5b5056fea264697066735822122025379648fc6162e8f240920afd22cee480f5a99aca91ebde7ca3480bbd74a29564736f6c63430008000033000000000000000000000000000000000000000000000000000000000000001400000000000000000000000000000000000000000000000000000000000015b3

Deployed Bytecode

0x6080604052600436106102465760003560e01c8063742a4c9b11610139578063a9c2fe7d116100b6578063d7224ba01161007a578063d7224ba01461085c578063dc33e68114610887578063dc684451146108c4578063e985e9c5146108ed578063f19db7a41461092a578063f2fde38b1461095557610246565b8063a9c2fe7d14610779578063b88d4fde146107a2578063bc1cd629146107cb578063c5f2bb41146107f6578063c87b56dd1461081f57610246565b806388eab676116100fd57806388eab676146106925780638da5cb5b146106bd5780639231ab2a146106e857806395d89b4114610725578063a22cb4651461075057610246565b8063742a4c9b146105ce5780637bb2b3c1146105f75780638232321214610613578063823903a91461062a5780638462151c1461065557610246565b80632f745c59116101c7578063616cdb1e1161018b578063616cdb1e146104eb57806361c8427c146105145780636352211e1461053d57806370a082311461057a578063715018a6146105b757610246565b80632f745c59146104085780633ccfd60b1461044557806342842e0e1461045c5780634f6ccce71461048557806355f804b3146104c257610246565b806318160ddd1161020e57806318160ddd1461033557806323b872dd1461036057806329dc7205146103895780632ceb4974146103b45780632d20fb60146103df57610246565b806301ffc9a71461024b57806306fdde031461028857806307883703146102b3578063081812fc146102cf578063095ea7b31461030c575b600080fd5b34801561025757600080fd5b50610272600480360381019061026d9190613add565b61097e565b60405161027f91906148b9565b60405180910390f35b34801561029457600080fd5b5061029d610ac8565b6040516102aa91906148d4565b60405180910390f35b6102cd60048036038101906102c89190613b74565b610b5a565b005b3480156102db57600080fd5b506102f660048036038101906102f19190613b74565b610cae565b6040516103039190614830565b60405180910390f35b34801561031857600080fd5b50610333600480360381019061032e9190613aa1565b610d33565b005b34801561034157600080fd5b5061034a610e4c565b6040516103579190614cd1565b60405180910390f35b34801561036c57600080fd5b506103876004803603810190610382919061399b565b610e56565b005b34801561039557600080fd5b5061039e610e66565b6040516103ab9190614cd1565b60405180910390f35b3480156103c057600080fd5b506103c9610e6c565b6040516103d69190614cd1565b60405180910390f35b3480156103eb57600080fd5b5061040660048036038101906104019190613b74565b610e72565b005b34801561041457600080fd5b5061042f600480360381019061042a9190613aa1565b610f50565b60405161043c9190614cd1565b60405180910390f35b34801561045157600080fd5b5061045a61114e565b005b34801561046857600080fd5b50610483600480360381019061047e919061399b565b6112cf565b005b34801561049157600080fd5b506104ac60048036038101906104a79190613b74565b6112ef565b6040516104b99190614cd1565b60405180910390f35b3480156104ce57600080fd5b506104e960048036038101906104e49190613b2f565b611342565b005b3480156104f757600080fd5b50610512600480360381019061050d9190613b74565b6113d4565b005b34801561052057600080fd5b5061053b60048036038101906105369190613aa1565b61145a565b005b34801561054957600080fd5b50610564600480360381019061055f9190613b74565b61153b565b6040516105719190614830565b60405180910390f35b34801561058657600080fd5b506105a1600480360381019061059c9190613936565b611551565b6040516105ae9190614cd1565b60405180910390f35b3480156105c357600080fd5b506105cc61163a565b005b3480156105da57600080fd5b506105f560048036038101906105f09190613b74565b6116c2565b005b610611600480360381019061060c9190613b74565b611748565b005b34801561061f57600080fd5b5061062861184c565b005b34801561063657600080fd5b5061063f6118f4565b60405161064c9190614cd1565b60405180910390f35b34801561066157600080fd5b5061067c60048036038101906106779190613936565b6118fa565b6040516106899190614897565b60405180910390f35b34801561069e57600080fd5b506106a7611a76565b6040516106b49190614cd1565b60405180910390f35b3480156106c957600080fd5b506106d2611a7c565b6040516106df9190614830565b60405180910390f35b3480156106f457600080fd5b5061070f600480360381019061070a9190613b74565b611aa5565b60405161071c9190614cb6565b60405180910390f35b34801561073157600080fd5b5061073a611abd565b60405161074791906148d4565b60405180910390f35b34801561075c57600080fd5b5061077760048036038101906107729190613a65565b611b4f565b005b34801561078557600080fd5b506107a0600480360381019061079b9190613b74565b611cd0565b005b3480156107ae57600080fd5b506107c960048036038101906107c491906139ea565b611d56565b005b3480156107d757600080fd5b506107e0611db2565b6040516107ed9190614cd1565b60405180910390f35b34801561080257600080fd5b5061081d60048036038101906108189190613b74565b611db8565b005b34801561082b57600080fd5b5061084660048036038101906108419190613b74565b611e3e565b60405161085391906148d4565b60405180910390f35b34801561086857600080fd5b50610871611ee5565b60405161087e9190614cd1565b60405180910390f35b34801561089357600080fd5b506108ae60048036038101906108a99190613936565b611eeb565b6040516108bb9190614cd1565b60405180910390f35b3480156108d057600080fd5b506108eb60048036038101906108e69190613b74565b611efd565b005b3480156108f957600080fd5b50610914600480360381019061090f919061395f565b611f83565b60405161092191906148b9565b60405180910390f35b34801561093657600080fd5b5061093f612017565b60405161094c91906148b9565b60405180910390f35b34801561096157600080fd5b5061097c60048036038101906109779190613936565b61202a565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610a4957507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610ab157507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610ac15750610ac082612122565b5b9050919050565b606060028054610ad790615073565b80601f0160208091040260200160405190810160405280929190818152602001828054610b0390615073565b8015610b505780601f10610b2557610100808354040283529160200191610b50565b820191906000526020600020905b815481529060010190602001808311610b3357829003601f168201915b5050505050905090565b600b60009054906101000a900460ff16610ba9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ba0906149d6565b60405180910390fd5b600081118015610bbb5750600f548111155b610bfa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bf190614a76565b60405180910390fd5b80600c54610c089190614ea1565b341015610c4a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c4190614b16565b60405180910390fd5b600a5481610c56610e4c565b610c609190614e1a565b1115610ca1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c98906149b6565b60405180910390fd5b610cab338261218c565b50565b6000610cb9826121aa565b610cf8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cef90614c76565b60405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610d3e8261153b565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610daf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610da690614b36565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610dce6121b8565b73ffffffffffffffffffffffffffffffffffffffff161480610dfd5750610dfc81610df76121b8565b611f83565b5b610e3c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e33906149f6565b60405180910390fd5b610e478383836121c0565b505050565b6000600154905090565b610e61838383612272565b505050565b600e5481565b600d5481565b610e7a6121b8565b73ffffffffffffffffffffffffffffffffffffffff16610e98611a7c565b73ffffffffffffffffffffffffffffffffffffffff1614610eee576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ee590614a96565b60405180910390fd5b60026009541415610f34576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f2b90614c16565b60405180910390fd5b6002600981905550610f458161282b565b600160098190555050565b6000610f5b83611551565b8210610f9c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f93906148f6565b60405180910390fd5b6000610fa6610e4c565b905060008060005b8381101561110c576000600460008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146110a057806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156110f857868414156110e9578195505050505050611148565b83806110f4906150a5565b9450505b508080611104906150a5565b915050610fae565b506040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161113f90614bd6565b60405180910390fd5b92915050565b6111566121b8565b73ffffffffffffffffffffffffffffffffffffffff16611174611a7c565b73ffffffffffffffffffffffffffffffffffffffff16146111ca576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111c190614a96565b60405180910390fd5b60026009541415611210576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161120790614c16565b60405180910390fd5b600260098190555060003373ffffffffffffffffffffffffffffffffffffffff164760405161123e9061481b565b60006040518083038185875af1925050503d806000811461127b576040519150601f19603f3d011682016040523d82523d6000602084013e611280565b606091505b50509050806112c4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112bb90614b56565b60405180910390fd5b506001600981905550565b6112ea83838360405180602001604052806000815250611d56565b505050565b60006112f9610e4c565b821061133a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161133190614956565b60405180910390fd5b819050919050565b61134a6121b8565b73ffffffffffffffffffffffffffffffffffffffff16611368611a7c565b73ffffffffffffffffffffffffffffffffffffffff16146113be576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113b590614a96565b60405180910390fd5b8181601091906113cf92919061373e565b505050565b6113dc6121b8565b73ffffffffffffffffffffffffffffffffffffffff166113fa611a7c565b73ffffffffffffffffffffffffffffffffffffffff1614611450576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161144790614a96565b60405180910390fd5b80600f8190555050565b6114626121b8565b73ffffffffffffffffffffffffffffffffffffffff16611480611a7c565b73ffffffffffffffffffffffffffffffffffffffff16146114d6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114cd90614a96565b60405180910390fd5b600a54816114e2610e4c565b6114ec9190614e1a565b111561152d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611524906149b6565b60405180910390fd5b611537828261218c565b5050565b600061154682612ab9565b600001519050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156115c2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115b990614a36565b60405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b6116426121b8565b73ffffffffffffffffffffffffffffffffffffffff16611660611a7c565b73ffffffffffffffffffffffffffffffffffffffff16146116b6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116ad90614a96565b60405180910390fd5b6116c06000612cbc565b565b6116ca6121b8565b73ffffffffffffffffffffffffffffffffffffffff166116e8611a7c565b73ffffffffffffffffffffffffffffffffffffffff161461173e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161173590614a96565b60405180910390fd5b80600d8190555050565b600b60009054906101000a900460ff16611797576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161178e906149d6565b60405180910390fd5b6000811180156117a95750600e548111155b6117e8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117df90614c36565b60405180910390fd5b600d54816117f4610e4c565b6117fe9190614e1a565b111561183f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611836906149b6565b60405180910390fd5b611849338261218c565b50565b6118546121b8565b73ffffffffffffffffffffffffffffffffffffffff16611872611a7c565b73ffffffffffffffffffffffffffffffffffffffff16146118c8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118bf90614a96565b60405180910390fd5b600b60009054906101000a900460ff1615600b60006101000a81548160ff021916908315150217905550565b600f5481565b6060600061190783611551565b9050600081141561198a57600067ffffffffffffffff811115611953577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280602002602001820160405280156119815781602001602082028036833780820191505090505b50915050611a71565b60008167ffffffffffffffff8111156119cc577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280602002602001820160405280156119fa5781602001602082028036833780820191505090505b50905060005b82811015611a6a57611a128582610f50565b828281518110611a4b577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010181815250508080611a62906150a5565b915050611a00565b8193505050505b919050565b600c5481565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b611aad6137c4565b611ab682612ab9565b9050919050565b606060038054611acc90615073565b80601f0160208091040260200160405190810160405280929190818152602001828054611af890615073565b8015611b455780601f10611b1a57610100808354040283529160200191611b45565b820191906000526020600020905b815481529060010190602001808311611b2857829003601f168201915b5050505050905090565b611b576121b8565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611bc5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bbc90614ad6565b60405180910390fd5b8060076000611bd26121b8565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611c7f6121b8565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611cc491906148b9565b60405180910390a35050565b611cd86121b8565b73ffffffffffffffffffffffffffffffffffffffff16611cf6611a7c565b73ffffffffffffffffffffffffffffffffffffffff1614611d4c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d4390614a96565b60405180910390fd5b80600c8190555050565b611d61848484612272565b611d6d84848484612d80565b611dac576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611da390614b76565b60405180910390fd5b50505050565b600a5481565b611dc06121b8565b73ffffffffffffffffffffffffffffffffffffffff16611dde611a7c565b73ffffffffffffffffffffffffffffffffffffffff1614611e34576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e2b90614a96565b60405180910390fd5b80600a8190555050565b6060611e49826121aa565b611e88576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e7f90614ab6565b60405180910390fd5b6000611e92612f17565b90506000815111611eb25760405180602001604052806000815250611edd565b80611ebc84612fa9565b604051602001611ecd9291906147f7565b6040516020818303038152906040525b915050919050565b60085481565b6000611ef682613156565b9050919050565b611f056121b8565b73ffffffffffffffffffffffffffffffffffffffff16611f23611a7c565b73ffffffffffffffffffffffffffffffffffffffff1614611f79576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f7090614a96565b60405180910390fd5b80600e8190555050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600b60009054906101000a900460ff1681565b6120326121b8565b73ffffffffffffffffffffffffffffffffffffffff16612050611a7c565b73ffffffffffffffffffffffffffffffffffffffff16146120a6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161209d90614a96565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612116576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161210d90614916565b60405180910390fd5b61211f81612cbc565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6121a682826040518060200160405280600081525061323f565b5050565b600060015482109050919050565b600033905090565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600061227d82612ab9565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff166122a46121b8565b73ffffffffffffffffffffffffffffffffffffffff16148061230057506122c96121b8565b73ffffffffffffffffffffffffffffffffffffffff166122e884610cae565b73ffffffffffffffffffffffffffffffffffffffff16145b8061231c575061231b82600001516123166121b8565b611f83565b5b90508061235e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161235590614af6565b60405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff16146123d0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123c790614a56565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612440576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161243790614976565b60405180910390fd5b61244d858585600161371f565b61245d60008484600001516121c0565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff166124cb9190614efb565b92506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff1661256f9190614dd4565b92506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060405180604001604052808573ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506004600085815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555090505060006001846126759190614e1a565b9050600073ffffffffffffffffffffffffffffffffffffffff166004600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614156127bb576126eb816121aa565b156127ba576040518060400160405280846000015173ffffffffffffffffffffffffffffffffffffffff168152602001846020015167ffffffffffffffff168152506004600083815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055509050505b5b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46128238686866001613725565b505050505050565b6000600854905060008211612875576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161286c90614a16565b60405180910390fd5b6000600183836128859190614e1a565b61288f9190614f2f565b905060017f00000000000000000000000000000000000000000000000000000000000015b36128be9190614f2f565b8111156128f55760017f00000000000000000000000000000000000000000000000000000000000015b36128f29190614f2f565b90505b6128fe816121aa565b61293d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161293490614bf6565b60405180910390fd5b60008290505b818111612aa057600073ffffffffffffffffffffffffffffffffffffffff166004600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415612a8d5760006129c082612ab9565b90506040518060400160405280826000015173ffffffffffffffffffffffffffffffffffffffff168152602001826020015167ffffffffffffffff168152506004600084815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550905050505b8080612a98906150a5565b915050612943565b50600181612aae9190614e1a565b600881905550505050565b612ac16137c4565b612aca826121aa565b612b09576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b0090614936565b60405180910390fd5b60007f00000000000000000000000000000000000000000000000000000000000000148310612b6d5760017f000000000000000000000000000000000000000000000000000000000000001484612b609190614f2f565b612b6a9190614e1a565b90505b60008390505b818110612c7b576000600460008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612c6757809350505050612cb7565b508080612c7390615049565b915050612b73565b506040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612cae90614c56565b60405180910390fd5b919050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000612da18473ffffffffffffffffffffffffffffffffffffffff1661372b565b15612f0a578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612dca6121b8565b8786866040518563ffffffff1660e01b8152600401612dec949392919061484b565b602060405180830381600087803b158015612e0657600080fd5b505af1925050508015612e3757506040513d601f19601f82011682018060405250810190612e349190613b06565b60015b612eba573d8060008114612e67576040519150601f19603f3d011682016040523d82523d6000602084013e612e6c565b606091505b50600081511415612eb2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ea990614b76565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612f0f565b600190505b949350505050565b606060108054612f2690615073565b80601f0160208091040260200160405190810160405280929190818152602001828054612f5290615073565b8015612f9f5780601f10612f7457610100808354040283529160200191612f9f565b820191906000526020600020905b815481529060010190602001808311612f8257829003601f168201915b5050505050905090565b60606000821415612ff1576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050613151565b600082905060005b6000821461302357808061300c906150a5565b915050600a8261301c9190614e70565b9150612ff9565b60008167ffffffffffffffff811115613065577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156130975781602001600182028036833780820191505090505b5090505b6000851461314a576001826130b09190614f2f565b9150600a856130bf91906150ee565b60306130cb9190614e1a565b60f81b818381518110613107577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856131439190614e70565b945061309b565b8093505050505b919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156131c7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016131be90614996565b60405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160109054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b60006001549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156132b6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016132ad90614bb6565b60405180910390fd5b6132bf816121aa565b156132ff576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016132f690614b96565b60405180910390fd5b7f0000000000000000000000000000000000000000000000000000000000000014831115613362576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161335990614c96565b60405180910390fd5b61336f600085838661371f565b6000600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206040518060400160405290816000820160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff1681526020016000820160109054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff16815250509050604051806040016040528085836000015161346c9190614dd4565b6fffffffffffffffffffffffffffffffff1681526020018583602001516134939190614dd4565b6fffffffffffffffffffffffffffffffff16815250600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008201518160000160006101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060208201518160000160106101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555090505060405180604001604052808673ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506004600084815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550905050600082905060005b8581101561370257818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46136a26000888488612d80565b6136e1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016136d890614b76565b60405180910390fd5b81806136ec906150a5565b92505080806136fa906150a5565b915050613631565b50806001819055506137176000878588613725565b505050505050565b50505050565b50505050565b600080823b905060008111915050919050565b82805461374a90615073565b90600052602060002090601f01602090048101928261376c57600085556137b3565b82601f1061378557803560ff19168380011785556137b3565b828001600101855582156137b3579182015b828111156137b2578235825591602001919060010190613797565b5b5090506137c091906137fe565b5090565b6040518060400160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681525090565b5b808211156138175760008160009055506001016137ff565b5090565b600061382e61382984614d1d565b614cec565b90508281526020810184848401111561384657600080fd5b613851848285615007565b509392505050565b600081359050613868816151ec565b92915050565b60008135905061387d81615203565b92915050565b6000813590506138928161521a565b92915050565b6000815190506138a78161521a565b92915050565b600082601f8301126138be57600080fd5b81356138ce84826020860161381b565b91505092915050565b60008083601f8401126138e957600080fd5b8235905067ffffffffffffffff81111561390257600080fd5b60208301915083600182028301111561391a57600080fd5b9250929050565b60008135905061393081615231565b92915050565b60006020828403121561394857600080fd5b600061395684828501613859565b91505092915050565b6000806040838503121561397257600080fd5b600061398085828601613859565b925050602061399185828601613859565b9150509250929050565b6000806000606084860312156139b057600080fd5b60006139be86828701613859565b93505060206139cf86828701613859565b92505060406139e086828701613921565b9150509250925092565b60008060008060808587031215613a0057600080fd5b6000613a0e87828801613859565b9450506020613a1f87828801613859565b9350506040613a3087828801613921565b925050606085013567ffffffffffffffff811115613a4d57600080fd5b613a59878288016138ad565b91505092959194509250565b60008060408385031215613a7857600080fd5b6000613a8685828601613859565b9250506020613a978582860161386e565b9150509250929050565b60008060408385031215613ab457600080fd5b6000613ac285828601613859565b9250506020613ad385828601613921565b9150509250929050565b600060208284031215613aef57600080fd5b6000613afd84828501613883565b91505092915050565b600060208284031215613b1857600080fd5b6000613b2684828501613898565b91505092915050565b60008060208385031215613b4257600080fd5b600083013567ffffffffffffffff811115613b5c57600080fd5b613b68858286016138d7565b92509250509250929050565b600060208284031215613b8657600080fd5b6000613b9484828501613921565b91505092915050565b6000613ba983836147ca565b60208301905092915050565b613bbe81614f63565b82525050565b613bcd81614f63565b82525050565b6000613bde82614d5d565b613be88185614d8b565b9350613bf383614d4d565b8060005b83811015613c24578151613c0b8882613b9d565b9750613c1683614d7e565b925050600181019050613bf7565b5085935050505092915050565b613c3a81614f75565b82525050565b6000613c4b82614d68565b613c558185614d9c565b9350613c65818560208601615016565b613c6e816151db565b840191505092915050565b6000613c8482614d73565b613c8e8185614db8565b9350613c9e818560208601615016565b613ca7816151db565b840191505092915050565b6000613cbd82614d73565b613cc78185614dc9565b9350613cd7818560208601615016565b80840191505092915050565b6000613cf0602283614db8565b91507f455243373231413a206f776e657220696e646578206f7574206f6620626f756e60008301527f64730000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613d56602683614db8565b91507f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008301527f64647265737300000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613dbc602a83614db8565b91507f455243373231413a206f776e657220717565727920666f72206e6f6e6578697360008301527f74656e7420746f6b656e000000000000000000000000000000000000000000006020830152604082019050919050565b6000613e22602383614db8565b91507f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f7560008301527f6e647300000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613e88602583614db8565b91507f455243373231413a207472616e7366657220746f20746865207a65726f20616460008301527f64726573730000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613eee603183614db8565b91507f455243373231413a206e756d626572206d696e74656420717565727920666f7260008301527f20746865207a65726f20616464726573730000000000000000000000000000006020830152604082019050919050565b6000613f54601883614db8565b91507f4d617820746f6b656e206d696e74656420616c726561647900000000000000006000830152602082019050919050565b6000613f94601383614db8565b91507f53616c65206973206e6f742073746172746564000000000000000000000000006000830152602082019050919050565b6000613fd4603983614db8565b91507f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60008301527f776e6572206e6f7220617070726f76656420666f7220616c6c000000000000006020830152604082019050919050565b600061403a601883614db8565b91507f7175616e74697479206d757374206265206e6f6e7a65726f00000000000000006000830152602082019050919050565b600061407a602b83614db8565b91507f455243373231413a2062616c616e636520717565727920666f7220746865207a60008301527f65726f20616464726573730000000000000000000000000000000000000000006020830152604082019050919050565b60006140e0602683614db8565b91507f455243373231413a207472616e736665722066726f6d20696e636f727265637460008301527f206f776e657200000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000614146602683614db8565b91507f43616e206e6f74206d696e74206d6f7265207468616e20323020746f6b656e2060008301527f70657220747800000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006141ac602083614db8565b91507f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726000830152602082019050919050565b60006141ec602f83614db8565b91507f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008301527f6e6578697374656e7420746f6b656e00000000000000000000000000000000006020830152604082019050919050565b6000614252601a83614db8565b91507f455243373231413a20617070726f766520746f2063616c6c65720000000000006000830152602082019050919050565b6000614292603283614db8565b91507f455243373231413a207472616e736665722063616c6c6572206973206e6f742060008301527f6f776e6572206e6f7220617070726f76656400000000000000000000000000006020830152604082019050919050565b60006142f8601083614db8565b91507f4e6f74207061696420656e6f7567682e000000000000000000000000000000006000830152602082019050919050565b6000614338602283614db8565b91507f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60008301527f65720000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061439e600083614dad565b9150600082019050919050565b60006143b8601083614db8565b91507f5472616e73666572206661696c65642e000000000000000000000000000000006000830152602082019050919050565b60006143f8603383614db8565b91507f455243373231413a207472616e7366657220746f206e6f6e204552433732315260008301527f6563656976657220696d706c656d656e746572000000000000000000000000006020830152604082019050919050565b600061445e601d83614db8565b91507f455243373231413a20746f6b656e20616c7265616479206d696e7465640000006000830152602082019050919050565b600061449e602183614db8565b91507f455243373231413a206d696e7420746f20746865207a65726f2061646472657360008301527f73000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000614504602e83614db8565b91507f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060008301527f6f776e657220627920696e6465780000000000000000000000000000000000006020830152604082019050919050565b600061456a602683614db8565b91507f6e6f7420656e6f756768206d696e7465642079657420666f722074686973206360008301527f6c65616e757000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006145d0601f83614db8565b91507f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006000830152602082019050919050565b6000614610602683614db8565b91507f43616e206e6f74206d696e74206d6f7265207468616e20313020746f6b656e2060008301527f70657220747800000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000614676602f83614db8565b91507f455243373231413a20756e61626c6520746f2064657465726d696e652074686560008301527f206f776e6572206f6620746f6b656e00000000000000000000000000000000006020830152604082019050919050565b60006146dc602d83614db8565b91507f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560008301527f78697374656e7420746f6b656e000000000000000000000000000000000000006020830152604082019050919050565b6000614742602283614db8565b91507f455243373231413a207175616e7469747920746f206d696e7420746f6f20686960008301527f67680000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6040820160008201516147b16000850182613bb5565b5060208201516147c460208501826147e8565b50505050565b6147d381614fe9565b82525050565b6147e281614fe9565b82525050565b6147f181614ff3565b82525050565b60006148038285613cb2565b915061480f8284613cb2565b91508190509392505050565b600061482682614391565b9150819050919050565b60006020820190506148456000830184613bc4565b92915050565b60006080820190506148606000830187613bc4565b61486d6020830186613bc4565b61487a60408301856147d9565b818103606083015261488c8184613c40565b905095945050505050565b600060208201905081810360008301526148b18184613bd3565b905092915050565b60006020820190506148ce6000830184613c31565b92915050565b600060208201905081810360008301526148ee8184613c79565b905092915050565b6000602082019050818103600083015261490f81613ce3565b9050919050565b6000602082019050818103600083015261492f81613d49565b9050919050565b6000602082019050818103600083015261494f81613daf565b9050919050565b6000602082019050818103600083015261496f81613e15565b9050919050565b6000602082019050818103600083015261498f81613e7b565b9050919050565b600060208201905081810360008301526149af81613ee1565b9050919050565b600060208201905081810360008301526149cf81613f47565b9050919050565b600060208201905081810360008301526149ef81613f87565b9050919050565b60006020820190508181036000830152614a0f81613fc7565b9050919050565b60006020820190508181036000830152614a2f8161402d565b9050919050565b60006020820190508181036000830152614a4f8161406d565b9050919050565b60006020820190508181036000830152614a6f816140d3565b9050919050565b60006020820190508181036000830152614a8f81614139565b9050919050565b60006020820190508181036000830152614aaf8161419f565b9050919050565b60006020820190508181036000830152614acf816141df565b9050919050565b60006020820190508181036000830152614aef81614245565b9050919050565b60006020820190508181036000830152614b0f81614285565b9050919050565b60006020820190508181036000830152614b2f816142eb565b9050919050565b60006020820190508181036000830152614b4f8161432b565b9050919050565b60006020820190508181036000830152614b6f816143ab565b9050919050565b60006020820190508181036000830152614b8f816143eb565b9050919050565b60006020820190508181036000830152614baf81614451565b9050919050565b60006020820190508181036000830152614bcf81614491565b9050919050565b60006020820190508181036000830152614bef816144f7565b9050919050565b60006020820190508181036000830152614c0f8161455d565b9050919050565b60006020820190508181036000830152614c2f816145c3565b9050919050565b60006020820190508181036000830152614c4f81614603565b9050919050565b60006020820190508181036000830152614c6f81614669565b9050919050565b60006020820190508181036000830152614c8f816146cf565b9050919050565b60006020820190508181036000830152614caf81614735565b9050919050565b6000604082019050614ccb600083018461479b565b92915050565b6000602082019050614ce660008301846147d9565b92915050565b6000604051905081810181811067ffffffffffffffff82111715614d1357614d126151ac565b5b8060405250919050565b600067ffffffffffffffff821115614d3857614d376151ac565b5b601f19601f8301169050602081019050919050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000614ddf82614fad565b9150614dea83614fad565b9250826fffffffffffffffffffffffffffffffff03821115614e0f57614e0e61511f565b5b828201905092915050565b6000614e2582614fe9565b9150614e3083614fe9565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115614e6557614e6461511f565b5b828201905092915050565b6000614e7b82614fe9565b9150614e8683614fe9565b925082614e9657614e9561514e565b5b828204905092915050565b6000614eac82614fe9565b9150614eb783614fe9565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615614ef057614eef61511f565b5b828202905092915050565b6000614f0682614fad565b9150614f1183614fad565b925082821015614f2457614f2361511f565b5b828203905092915050565b6000614f3a82614fe9565b9150614f4583614fe9565b925082821015614f5857614f5761511f565b5b828203905092915050565b6000614f6e82614fc9565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b60006fffffffffffffffffffffffffffffffff82169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600067ffffffffffffffff82169050919050565b82818337600083830152505050565b60005b83811015615034578082015181840152602081019050615019565b83811115615043576000848401525b50505050565b600061505482614fe9565b915060008214156150685761506761511f565b5b600182039050919050565b6000600282049050600182168061508b57607f821691505b6020821081141561509f5761509e61517d565b5b50919050565b60006150b082614fe9565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156150e3576150e261511f565b5b600182019050919050565b60006150f982614fe9565b915061510483614fe9565b9250826151145761511361514e565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b6151f581614f63565b811461520057600080fd5b50565b61520c81614f75565b811461521757600080fd5b50565b61522381614f81565b811461522e57600080fd5b50565b61523a81614fe9565b811461524557600080fd5b5056fea264697066735822122025379648fc6162e8f240920afd22cee480f5a99aca91ebde7ca3480bbd74a29564736f6c63430008000033

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

000000000000000000000000000000000000000000000000000000000000001400000000000000000000000000000000000000000000000000000000000015b3

-----Decoded View---------------
Arg [0] : maxBatchSize_ (uint256): 20
Arg [1] : collectionSize_ (uint256): 5555

-----Encoded View---------------
2 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000014
Arg [1] : 00000000000000000000000000000000000000000000000000000000000015b3


Deployed Bytecode Sourcemap

42230:3428:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23233:370;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24959:94;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43319:391;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;26256:204;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25819:379;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;21794:94;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27106:150;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;42463:35;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42423:34;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44807:118;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;22425:744;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44625:176;;;;;;;;;;;;;:::i;:::-;;27319:157;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;21957:177;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43749:98;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;44102:105;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;42778:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;24782:118;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23659:211;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39546:94;;;;;;;;;;;;;:::i;:::-;;44433:101;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;42985:328;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;44550:66;;;;;;;;;;;;;:::i;:::-;;42505:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45197:456;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42369:47;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38895:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45044:147;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25114:98;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26524:274;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;44334:85;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;27539:319;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;42304:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44216:112;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;25275:394;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31962:43;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44931:107;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43966:127;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;26861:186;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42339:25;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39795:192;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;23233:370;23360:4;23405:25;23390:40;;;:11;:40;;;;:99;;;;23456:33;23441:48;;;:11;:48;;;;23390:99;:160;;;;23515:35;23500:50;;;:11;:50;;;;23390:160;:207;;;;23561:36;23585:11;23561:23;:36::i;:::-;23390:207;23376:221;;23233:370;;;:::o;24959:94::-;25013:13;25042:5;25035:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24959:94;:::o;43319:391::-;43383:6;;;;;;;;;;;43375:38;;;;;;;;;;;;:::i;:::-;;;;;;;;;43439:1;43428:8;:12;:40;;;;;43456:12;;43444:8;:24;;43428:40;43420:91;;;;;;;;;;;;:::i;:::-;;;;;;;;;43549:8;43539:9;;:18;;;;:::i;:::-;43526:9;:31;;43518:60;;;;;;;;;;;;:::i;:::-;;;;;;;;;43621:14;;43609:8;43593:13;:11;:13::i;:::-;:24;;;;:::i;:::-;:42;;43585:79;;;;;;;;;;;;:::i;:::-;;;;;;;;;43673:31;43683:10;43695:8;43673:9;:31::i;:::-;43319:391;:::o;26256:204::-;26324:7;26348:16;26356:7;26348;:16::i;:::-;26340:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;26430:15;:24;26446:7;26430:24;;;;;;;;;;;;;;;;;;;;;26423:31;;26256:204;;;:::o;25819:379::-;25888:13;25904:24;25920:7;25904:15;:24::i;:::-;25888:40;;25949:5;25943:11;;:2;:11;;;;25935:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;26034:5;26018:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;26043:37;26060:5;26067:12;:10;:12::i;:::-;26043:16;:37::i;:::-;26018:62;26002:153;;;;;;;;;;;;:::i;:::-;;;;;;;;;26164:28;26173:2;26177:7;26186:5;26164:8;:28::i;:::-;25819:379;;;:::o;21794:94::-;21847:7;21870:12;;21863:19;;21794:94;:::o;27106:150::-;27222:28;27232:4;27238:2;27242:7;27222:9;:28::i;:::-;27106:150;;;:::o;42463:35::-;;;;:::o;42423:34::-;;;;:::o;44807:118::-;39126:12;:10;:12::i;:::-;39115:23;;:7;:5;:7::i;:::-;:23;;;39107:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;37007:1:::1;37603:7;;:19;;37595:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;37007:1;37736:7;:18;;;;44891:28:::2;44910:8;44891:18;:28::i;:::-;36963:1:::1;37915:7;:22;;;;44807:118:::0;:::o;22425:744::-;22534:7;22569:16;22579:5;22569:9;:16::i;:::-;22561:5;:24;22553:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;22631:22;22656:13;:11;:13::i;:::-;22631:38;;22676:19;22706:25;22756:9;22751:350;22775:14;22771:1;:18;22751:350;;;22805:31;22839:11;:14;22851:1;22839:14;;;;;;;;;;;22805:48;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22892:1;22866:28;;:9;:14;;;:28;;;22862:89;;22927:9;:14;;;22907:34;;22862:89;22984:5;22963:26;;:17;:26;;;22959:135;;;23021:5;23006:11;:20;23002:59;;;23048:1;23041:8;;;;;;;;;23002:59;23071:13;;;;;:::i;:::-;;;;22959:135;22751:350;22791:3;;;;;:::i;:::-;;;;22751:350;;;;23107:56;;;;;;;;;;:::i;:::-;;;;;;;;22425:744;;;;;:::o;44625:176::-;39126:12;:10;:12::i;:::-;39115:23;;:7;:5;:7::i;:::-;:23;;;39107:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;37007:1:::1;37603:7;;:19;;37595:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;37007:1;37736:7;:18;;;;44685:12:::2;44703:10;:15;;44726:21;44703:49;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44684:68;;;44767:7;44759:36;;;;;;;;;;;;:::i;:::-;;;;;;;;;37767:1;36963::::1;37915:7;:22;;;;44625:176::o:0;27319:157::-;27431:39;27448:4;27454:2;27458:7;27431:39;;;;;;;;;;;;:16;:39::i;:::-;27319:157;;;:::o;21957:177::-;22024:7;22056:13;:11;:13::i;:::-;22048:5;:21;22040:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;22123:5;22116:12;;21957:177;;;:::o;43749:98::-;39126:12;:10;:12::i;:::-;39115:23;;:7;:5;:7::i;:::-;:23;;;39107:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;43834:7:::1;;43820:11;:21;;;;;;;:::i;:::-;;43749:98:::0;;:::o;44102:105::-;39126:12;:10;:12::i;:::-;39115:23;;:7;:5;:7::i;:::-;:23;;;39107:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;44188:13:::1;44173:12;:28;;;;44102:105:::0;:::o;42778:201::-;39126:12;:10;:12::i;:::-;39115:23;;:7;:5;:7::i;:::-;:23;;;39107:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;42895:14:::1;;42883:8;42867:13;:11;:13::i;:::-;:24;;;;:::i;:::-;:42;;42859:79;;;;;;;;;;;;:::i;:::-;;;;;;;;;42947:24;42957:3;42962:8;42947:9;:24::i;:::-;42778:201:::0;;:::o;24782:118::-;24846:7;24869:20;24881:7;24869:11;:20::i;:::-;:25;;;24862:32;;24782:118;;;:::o;23659:211::-;23723:7;23764:1;23747:19;;:5;:19;;;;23739:75;;;;;;;;;;;;:::i;:::-;;;;;;;;;23836:12;:19;23849:5;23836:19;;;;;;;;;;;;;;;:27;;;;;;;;;;;;23828:36;;23821:43;;23659:211;;;:::o;39546:94::-;39126:12;:10;:12::i;:::-;39115:23;;:7;:5;:7::i;:::-;:23;;;39107:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;39611:21:::1;39629:1;39611:9;:21::i;:::-;39546:94::o:0;44433:101::-;39126:12;:10;:12::i;:::-;39115:23;;:7;:5;:7::i;:::-;:23;;;39107:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;44516:12:::1;44502:11;:26;;;;44433:101:::0;:::o;42985:328::-;43050:6;;;;;;;;;;;43042:38;;;;;;;;;;;;:::i;:::-;;;;;;;;;43106:1;43095:8;:12;:46;;;;;43123:18;;43111:8;:30;;43095:46;43087:97;;;;;;;;;;;;:::i;:::-;;;;;;;;;43229:11;;43217:8;43201:13;:11;:13::i;:::-;:24;;;;:::i;:::-;:39;;43193:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;43276:31;43286:10;43298:8;43276:9;:31::i;:::-;42985:328;:::o;44550:66::-;39126:12;:10;:12::i;:::-;39115:23;;:7;:5;:7::i;:::-;:23;;;39107:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;44604:6:::1;;;;;;;;;;;44603:7;44594:6;;:16;;;;;;;;;;;;;;;;;;44550:66::o:0;42505:24::-;;;;:::o;45197:456::-;45258:16;45284:18;45305:17;45315:6;45305:9;:17::i;:::-;45284:38;;45347:1;45333:10;:15;45329:319;;;45382:1;45368:16;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45361:23;;;;;45329:319;45409:23;45449:10;45435:25;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45409:51;;45471:13;45495:122;45519:10;45511:5;:18;45495:122;;;45571:34;45591:6;45599:5;45571:19;:34::i;:::-;45555:6;45562:5;45555:13;;;;;;;;;;;;;;;;;;;;;:50;;;;;45531:7;;;;;:::i;:::-;;;;45495:122;;;45634:6;45627:13;;;;;45197:456;;;;:::o;42369:47::-;;;;:::o;38895:87::-;38941:7;38968:6;;;;;;;;;;;38961:13;;38895:87;:::o;45044:147::-;45125:21;;:::i;:::-;45165:20;45177:7;45165:11;:20::i;:::-;45158:27;;45044:147;;;:::o;25114:98::-;25170:13;25199:7;25192:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25114:98;:::o;26524:274::-;26627:12;:10;:12::i;:::-;26615:24;;:8;:24;;;;26607:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;26724:8;26679:18;:32;26698:12;:10;:12::i;:::-;26679:32;;;;;;;;;;;;;;;:42;26712:8;26679:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;26773:8;26744:48;;26759:12;:10;:12::i;:::-;26744:48;;;26783:8;26744:48;;;;;;:::i;:::-;;;;;;;;26524:274;;:::o;44334:85::-;39126:12;:10;:12::i;:::-;39115:23;;:7;:5;:7::i;:::-;:23;;;39107:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;44407:6:::1;44395:9;:18;;;;44334:85:::0;:::o;27539:319::-;27684:28;27694:4;27700:2;27704:7;27684:9;:28::i;:::-;27735:48;27758:4;27764:2;27768:7;27777:5;27735:22;:48::i;:::-;27719:133;;;;;;;;;;;;:::i;:::-;;;;;;;;;27539:319;;;;:::o;42304:30::-;;;;:::o;44216:112::-;39126:12;:10;:12::i;:::-;39115:23;;:7;:5;:7::i;:::-;:23;;;39107:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;44307:15:::1;44290:14;:32;;;;44216:112:::0;:::o;25275:394::-;25373:13;25414:16;25422:7;25414;:16::i;:::-;25398:97;;;;;;;;;;;;:::i;:::-;;;;;;;;;25504:21;25528:10;:8;:10::i;:::-;25504:34;;25583:1;25565:7;25559:21;:25;:104;;;;;;;;;;;;;;;;;25620:7;25629:18;:7;:16;:18::i;:::-;25603:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;25559:104;25545:118;;;25275:394;;;:::o;31962:43::-;;;;:::o;44931:107::-;44989:7;45012:20;45026:5;45012:13;:20::i;:::-;45005:27;;44931:107;;;:::o;43966:127::-;39126:12;:10;:12::i;:::-;39115:23;;:7;:5;:7::i;:::-;:23;;;39107:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;44068:19:::1;44047:18;:40;;;;43966:127:::0;:::o;26861:186::-;26983:4;27006:18;:25;27025:5;27006:25;;;;;;;;;;;;;;;:35;27032:8;27006:35;;;;;;;;;;;;;;;;;;;;;;;;;26999:42;;26861:186;;;;:::o;42339:25::-;;;;;;;;;;;;;:::o;39795:192::-;39126:12;:10;:12::i;:::-;39115:23;;:7;:5;:7::i;:::-;:23;;;39107:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;39904:1:::1;39884:22;;:8;:22;;;;39876:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;39960:19;39970:8;39960:9;:19::i;:::-;39795:192:::0;:::o;1543:157::-;1628:4;1667:25;1652:40;;;:11;:40;;;;1645:47;;1543:157;;;:::o;28208:98::-;28273:27;28283:2;28287:8;28273:27;;;;;;;;;;;;:9;:27::i;:::-;28208:98;;:::o;28097:105::-;28154:4;28184:12;;28174:7;:22;28167:29;;28097:105;;;:::o;15736:98::-;15789:7;15816:10;15809:17;;15736:98;:::o;31784:172::-;31908:2;31881:15;:24;31897:7;31881:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;31942:7;31938:2;31922:28;;31931:5;31922:28;;;;;;;;;;;;31784:172;;;:::o;30149:1529::-;30246:35;30284:20;30296:7;30284:11;:20::i;:::-;30246:58;;30313:22;30355:13;:18;;;30339:34;;:12;:10;:12::i;:::-;:34;;;:81;;;;30408:12;:10;:12::i;:::-;30384:36;;:20;30396:7;30384:11;:20::i;:::-;:36;;;30339:81;:142;;;;30431:50;30448:13;:18;;;30468:12;:10;:12::i;:::-;30431:16;:50::i;:::-;30339:142;30313:169;;30507:17;30491:101;;;;;;;;;;;;:::i;:::-;;;;;;;;;30639:4;30617:26;;:13;:18;;;:26;;;30601:98;;;;;;;;;;;;:::i;:::-;;;;;;;;;30728:1;30714:16;;:2;:16;;;;30706:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;30781:43;30803:4;30809:2;30813:7;30822:1;30781:21;:43::i;:::-;30881:49;30898:1;30902:7;30911:13;:18;;;30881:8;:49::i;:::-;30969:1;30939:12;:18;30952:4;30939:18;;;;;;;;;;;;;;;:26;;;:31;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;31005:1;30977:12;:16;30990:2;30977:16;;;;;;;;;;;;;;;:24;;;:29;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;31036:43;;;;;;;;31051:2;31036:43;;;;;;31062:15;31036:43;;;;;31013:11;:20;31025:7;31013:20;;;;;;;;;;;:66;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31307:19;31339:1;31329:7;:11;;;;:::i;:::-;31307:33;;31392:1;31351:43;;:11;:24;31363:11;31351:24;;;;;;;;;;;:29;;;;;;;;;;;;:43;;;31347:236;;;31409:20;31417:11;31409:7;:20::i;:::-;31405:171;;;31469:97;;;;;;;;31496:13;:18;;;31469:97;;;;;;31527:13;:28;;;31469:97;;;;;31442:11;:24;31454:11;31442:24;;;;;;;;;;;:124;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31405:171;31347:236;31615:7;31611:2;31596:27;;31605:4;31596:27;;;;;;;;;;;;31630:42;31651:4;31657:2;31661:7;31670:1;31630:20;:42::i;:::-;30149:1529;;;;;;:::o;32110:846::-;32172:25;32200:24;;32172:52;;32250:1;32239:8;:12;32231:49;;;;;;;;;;;;:::i;:::-;;;;;;;;;32287:16;32337:1;32326:8;32306:17;:28;;;;:::i;:::-;:32;;;;:::i;:::-;32287:51;;32377:1;32360:14;:18;;;;:::i;:::-;32349:8;:29;32345:81;;;32417:1;32400:14;:18;;;;:::i;:::-;32389:29;;32345:81;32541:17;32549:8;32541:7;:17::i;:::-;32533:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;32613:9;32625:17;32613:29;;32608:297;32649:8;32644:1;:13;32608:297;;32708:1;32677:33;;:11;:14;32689:1;32677:14;;;;;;;;;;;:19;;;;;;;;;;;;:33;;;32673:225;;;32723:31;32757:14;32769:1;32757:11;:14::i;:::-;32723:48;;32799:89;;;;;;;;32826:9;:14;;;32799:89;;;;;;32853:9;:24;;;32799:89;;;;;32782:11;:14;32794:1;32782:14;;;;;;;;;;;:106;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32673:225;;32659:3;;;;;:::i;:::-;;;;32608:297;;;;32949:1;32938:8;:12;;;;:::i;:::-;32911:24;:39;;;;32110:846;;;:::o;24122:606::-;24198:21;;:::i;:::-;24239:16;24247:7;24239;:16::i;:::-;24231:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;24311:26;24359:12;24348:7;:23;24344:93;;24428:1;24413:12;24403:7;:22;;;;:::i;:::-;:26;;;;:::i;:::-;24382:47;;24344:93;24450:12;24465:7;24450:22;;24445:212;24482:18;24474:4;:26;24445:212;;24519:31;24553:11;:17;24565:4;24553:17;;;;;;;;;;;24519:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24609:1;24583:28;;:9;:14;;;:28;;;24579:71;;24631:9;24624:16;;;;;;;24579:71;24445:212;24502:6;;;;;:::i;:::-;;;;24445:212;;;;24665:57;;;;;;;;;;:::i;:::-;;;;;;;;24122:606;;;;:::o;39995:173::-;40051:16;40070:6;;;;;;;;;;;40051:25;;40096:8;40087:6;;:17;;;;;;;;;;;;;;;;;;40151:8;40120:40;;40141:8;40120:40;;;;;;;;;;;;39995:173;;:::o;33499:690::-;33636:4;33653:15;:2;:13;;;:15::i;:::-;33649:535;;;33708:2;33692:36;;;33729:12;:10;:12::i;:::-;33743:4;33749:7;33758:5;33692:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;33679:464;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33940:1;33923:6;:13;:18;33919:215;;;33956:61;;;;;;;;;;:::i;:::-;;;;;;;;33919:215;34102:6;34096:13;34087:6;34083:2;34079:15;34072:38;33679:464;33824:45;;;33814:55;;;:6;:55;;;;33807:62;;;;;33649:535;34172:4;34165:11;;33499:690;;;;;;;:::o;43853:106::-;43913:13;43942:11;43935:18;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43853:106;:::o;16205:723::-;16261:13;16491:1;16482:5;:10;16478:53;;;16509:10;;;;;;;;;;;;;;;;;;;;;16478:53;16541:12;16556:5;16541:20;;16572:14;16597:78;16612:1;16604:4;:9;16597:78;;16630:8;;;;;:::i;:::-;;;;16661:2;16653:10;;;;;:::i;:::-;;;16597:78;;;16685:19;16717:6;16707:17;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16685:39;;16735:154;16751:1;16742:5;:10;16735:154;;16779:1;16769:11;;;;;:::i;:::-;;;16846:2;16838:5;:10;;;;:::i;:::-;16825:2;:24;;;;:::i;:::-;16812:39;;16795:6;16802;16795:14;;;;;;;;;;;;;;;;;;;:56;;;;;;;;;;;16875:2;16866:11;;;;;:::i;:::-;;;16735:154;;;16913:6;16899:21;;;;;16205:723;;;;:::o;23876:240::-;23937:7;23986:1;23969:19;;:5;:19;;;;23953:102;;;;;;;;;;;;:::i;:::-;;;;;;;;;24077:12;:19;24090:5;24077:19;;;;;;;;;;;;;;;:32;;;;;;;;;;;;24069:41;;24062:48;;23876:240;;;:::o;28645:1272::-;28750:20;28773:12;;28750:35;;28814:1;28800:16;;:2;:16;;;;28792:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;28991:21;28999:12;28991:7;:21::i;:::-;28990:22;28982:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;29073:12;29061:8;:24;;29053:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;29133:61;29163:1;29167:2;29171:12;29185:8;29133:21;:61::i;:::-;29203:30;29236:12;:16;29249:2;29236:16;;;;;;;;;;;;;;;29203:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29278:119;;;;;;;;29328:8;29298:11;:19;;;:39;;;;:::i;:::-;29278:119;;;;;;29381:8;29346:11;:24;;;:44;;;;:::i;:::-;29278:119;;;;;29259:12;:16;29272:2;29259:16;;;;;;;;;;;;;;;:138;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29432:43;;;;;;;;29447:2;29432:43;;;;;;29458:15;29432:43;;;;;29404:11;:25;29416:12;29404:25;;;;;;;;;;;:71;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29484:20;29507:12;29484:35;;29533:9;29528:281;29552:8;29548:1;:12;29528:281;;;29606:12;29602:2;29581:38;;29598:1;29581:38;;;;;;;;;;;;29646:59;29677:1;29681:2;29685:12;29699:5;29646:22;:59::i;:::-;29628:150;;;;;;;;;;;;:::i;:::-;;;;;;;;;29787:14;;;;;:::i;:::-;;;;29562:3;;;;;:::i;:::-;;;;29528:281;;;;29832:12;29817;:27;;;;29851:60;29880:1;29884:2;29888:12;29902:8;29851:20;:60::i;:::-;28645:1272;;;;;;:::o;34651:141::-;;;;;:::o;35178:140::-;;;;;:::o;2419:387::-;2479:4;2687:12;2754:7;2742:20;2734:28;;2797:1;2790:4;:8;2783:15;;;2419:387;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:342:1:-;;109:64;124:48;165:6;124:48;:::i;:::-;109:64;:::i;:::-;100:73;;196:6;189:5;182:21;234:4;227:5;223:16;272:3;263:6;258:3;254:16;251:25;248:2;;;289:1;286;279:12;248:2;302:41;336:6;331:3;326;302:41;:::i;:::-;90:259;;;;;;:::o;355:139::-;;439:6;426:20;417:29;;455:33;482:5;455:33;:::i;:::-;407:87;;;;:::o;500:133::-;;581:6;568:20;559:29;;597:30;621:5;597:30;:::i;:::-;549:84;;;;:::o;639:137::-;;722:6;709:20;700:29;;738:32;764:5;738:32;:::i;:::-;690:86;;;;:::o;782:141::-;;869:6;863:13;854:22;;885:32;911:5;885:32;:::i;:::-;844:79;;;;:::o;942:271::-;;1046:3;1039:4;1031:6;1027:17;1023:27;1013:2;;1064:1;1061;1054:12;1013:2;1104:6;1091:20;1129:78;1203:3;1195:6;1188:4;1180:6;1176:17;1129:78;:::i;:::-;1120:87;;1003:210;;;;;:::o;1233:352::-;;;1351:3;1344:4;1336:6;1332:17;1328:27;1318:2;;1369:1;1366;1359:12;1318:2;1405:6;1392:20;1382:30;;1435:18;1427:6;1424:30;1421:2;;;1467:1;1464;1457:12;1421:2;1504:4;1496:6;1492:17;1480:29;;1558:3;1550:4;1542:6;1538:17;1528:8;1524:32;1521:41;1518:2;;;1575:1;1572;1565:12;1518:2;1308:277;;;;;:::o;1591:139::-;;1675:6;1662:20;1653:29;;1691:33;1718:5;1691:33;:::i;:::-;1643:87;;;;:::o;1736:262::-;;1844:2;1832:9;1823:7;1819:23;1815:32;1812:2;;;1860:1;1857;1850:12;1812:2;1903:1;1928:53;1973:7;1964:6;1953:9;1949:22;1928:53;:::i;:::-;1918:63;;1874:117;1802:196;;;;:::o;2004:407::-;;;2129:2;2117:9;2108:7;2104:23;2100:32;2097:2;;;2145:1;2142;2135:12;2097:2;2188:1;2213:53;2258:7;2249:6;2238:9;2234:22;2213:53;:::i;:::-;2203:63;;2159:117;2315:2;2341:53;2386:7;2377:6;2366:9;2362:22;2341:53;:::i;:::-;2331:63;;2286:118;2087:324;;;;;:::o;2417:552::-;;;;2559:2;2547:9;2538:7;2534:23;2530:32;2527:2;;;2575:1;2572;2565:12;2527:2;2618:1;2643:53;2688:7;2679:6;2668:9;2664:22;2643:53;:::i;:::-;2633:63;;2589:117;2745:2;2771:53;2816:7;2807:6;2796:9;2792:22;2771:53;:::i;:::-;2761:63;;2716:118;2873:2;2899:53;2944:7;2935:6;2924:9;2920:22;2899:53;:::i;:::-;2889:63;;2844:118;2517:452;;;;;:::o;2975:809::-;;;;;3143:3;3131:9;3122:7;3118:23;3114:33;3111:2;;;3160:1;3157;3150:12;3111:2;3203:1;3228:53;3273:7;3264:6;3253:9;3249:22;3228:53;:::i;:::-;3218:63;;3174:117;3330:2;3356:53;3401:7;3392:6;3381:9;3377:22;3356:53;:::i;:::-;3346:63;;3301:118;3458:2;3484:53;3529:7;3520:6;3509:9;3505:22;3484:53;:::i;:::-;3474:63;;3429:118;3614:2;3603:9;3599:18;3586:32;3645:18;3637:6;3634:30;3631:2;;;3677:1;3674;3667:12;3631:2;3705:62;3759:7;3750:6;3739:9;3735:22;3705:62;:::i;:::-;3695:72;;3557:220;3101:683;;;;;;;:::o;3790:401::-;;;3912:2;3900:9;3891:7;3887:23;3883:32;3880:2;;;3928:1;3925;3918:12;3880:2;3971:1;3996:53;4041:7;4032:6;4021:9;4017:22;3996:53;:::i;:::-;3986:63;;3942:117;4098:2;4124:50;4166:7;4157:6;4146:9;4142:22;4124:50;:::i;:::-;4114:60;;4069:115;3870:321;;;;;:::o;4197:407::-;;;4322:2;4310:9;4301:7;4297:23;4293:32;4290:2;;;4338:1;4335;4328:12;4290:2;4381:1;4406:53;4451:7;4442:6;4431:9;4427:22;4406:53;:::i;:::-;4396:63;;4352:117;4508:2;4534:53;4579:7;4570:6;4559:9;4555:22;4534:53;:::i;:::-;4524:63;;4479:118;4280:324;;;;;:::o;4610:260::-;;4717:2;4705:9;4696:7;4692:23;4688:32;4685:2;;;4733:1;4730;4723:12;4685:2;4776:1;4801:52;4845:7;4836:6;4825:9;4821:22;4801:52;:::i;:::-;4791:62;;4747:116;4675:195;;;;:::o;4876:282::-;;4994:2;4982:9;4973:7;4969:23;4965:32;4962:2;;;5010:1;5007;5000:12;4962:2;5053:1;5078:63;5133:7;5124:6;5113:9;5109:22;5078:63;:::i;:::-;5068:73;;5024:127;4952:206;;;;:::o;5164:395::-;;;5292:2;5280:9;5271:7;5267:23;5263:32;5260:2;;;5308:1;5305;5298:12;5260:2;5379:1;5368:9;5364:17;5351:31;5409:18;5401:6;5398:30;5395:2;;;5441:1;5438;5431:12;5395:2;5477:65;5534:7;5525:6;5514:9;5510:22;5477:65;:::i;:::-;5459:83;;;;5322:230;5250:309;;;;;:::o;5565:262::-;;5673:2;5661:9;5652:7;5648:23;5644:32;5641:2;;;5689:1;5686;5679:12;5641:2;5732:1;5757:53;5802:7;5793:6;5782:9;5778:22;5757:53;:::i;:::-;5747:63;;5703:117;5631:196;;;;:::o;5833:179::-;;5923:46;5965:3;5957:6;5923:46;:::i;:::-;6001:4;5996:3;5992:14;5978:28;;5913:99;;;;:::o;6018:108::-;6095:24;6113:5;6095:24;:::i;:::-;6090:3;6083:37;6073:53;;:::o;6132:118::-;6219:24;6237:5;6219:24;:::i;:::-;6214:3;6207:37;6197:53;;:::o;6286:732::-;;6434:54;6482:5;6434:54;:::i;:::-;6504:86;6583:6;6578:3;6504:86;:::i;:::-;6497:93;;6614:56;6664:5;6614:56;:::i;:::-;6693:7;6724:1;6709:284;6734:6;6731:1;6728:13;6709:284;;;6810:6;6804:13;6837:63;6896:3;6881:13;6837:63;:::i;:::-;6830:70;;6923:60;6976:6;6923:60;:::i;:::-;6913:70;;6769:224;6756:1;6753;6749:9;6744:14;;6709:284;;;6713:14;7009:3;7002:10;;6410:608;;;;;;;:::o;7024:109::-;7105:21;7120:5;7105:21;:::i;:::-;7100:3;7093:34;7083:50;;:::o;7139:360::-;;7253:38;7285:5;7253:38;:::i;:::-;7307:70;7370:6;7365:3;7307:70;:::i;:::-;7300:77;;7386:52;7431:6;7426:3;7419:4;7412:5;7408:16;7386:52;:::i;:::-;7463:29;7485:6;7463:29;:::i;:::-;7458:3;7454:39;7447:46;;7229:270;;;;;:::o;7505:364::-;;7621:39;7654:5;7621:39;:::i;:::-;7676:71;7740:6;7735:3;7676:71;:::i;:::-;7669:78;;7756:52;7801:6;7796:3;7789:4;7782:5;7778:16;7756:52;:::i;:::-;7833:29;7855:6;7833:29;:::i;:::-;7828:3;7824:39;7817:46;;7597:272;;;;;:::o;7875:377::-;;8009:39;8042:5;8009:39;:::i;:::-;8064:89;8146:6;8141:3;8064:89;:::i;:::-;8057:96;;8162:52;8207:6;8202:3;8195:4;8188:5;8184:16;8162:52;:::i;:::-;8239:6;8234:3;8230:16;8223:23;;7985:267;;;;;:::o;8258:366::-;;8421:67;8485:2;8480:3;8421:67;:::i;:::-;8414:74;;8518:34;8514:1;8509:3;8505:11;8498:55;8584:4;8579:2;8574:3;8570:12;8563:26;8615:2;8610:3;8606:12;8599:19;;8404:220;;;:::o;8630:370::-;;8793:67;8857:2;8852:3;8793:67;:::i;:::-;8786:74;;8890:34;8886:1;8881:3;8877:11;8870:55;8956:8;8951:2;8946:3;8942:12;8935:30;8991:2;8986:3;8982:12;8975:19;;8776:224;;;:::o;9006:374::-;;9169:67;9233:2;9228:3;9169:67;:::i;:::-;9162:74;;9266:34;9262:1;9257:3;9253:11;9246:55;9332:12;9327:2;9322:3;9318:12;9311:34;9371:2;9366:3;9362:12;9355:19;;9152:228;;;:::o;9386:367::-;;9549:67;9613:2;9608:3;9549:67;:::i;:::-;9542:74;;9646:34;9642:1;9637:3;9633:11;9626:55;9712:5;9707:2;9702:3;9698:12;9691:27;9744:2;9739:3;9735:12;9728:19;;9532:221;;;:::o;9759:369::-;;9922:67;9986:2;9981:3;9922:67;:::i;:::-;9915:74;;10019:34;10015:1;10010:3;10006:11;9999:55;10085:7;10080:2;10075:3;10071:12;10064:29;10119:2;10114:3;10110:12;10103:19;;9905:223;;;:::o;10134:381::-;;10297:67;10361:2;10356:3;10297:67;:::i;:::-;10290:74;;10394:34;10390:1;10385:3;10381:11;10374:55;10460:19;10455:2;10450:3;10446:12;10439:41;10506:2;10501:3;10497:12;10490:19;;10280:235;;;:::o;10521:322::-;;10684:67;10748:2;10743:3;10684:67;:::i;:::-;10677:74;;10781:26;10777:1;10772:3;10768:11;10761:47;10834:2;10829:3;10825:12;10818:19;;10667:176;;;:::o;10849:317::-;;11012:67;11076:2;11071:3;11012:67;:::i;:::-;11005:74;;11109:21;11105:1;11100:3;11096:11;11089:42;11157:2;11152:3;11148:12;11141:19;;10995:171;;;:::o;11172:389::-;;11335:67;11399:2;11394:3;11335:67;:::i;:::-;11328:74;;11432:34;11428:1;11423:3;11419:11;11412:55;11498:27;11493:2;11488:3;11484:12;11477:49;11552:2;11547:3;11543:12;11536:19;;11318:243;;;:::o;11567:322::-;;11730:67;11794:2;11789:3;11730:67;:::i;:::-;11723:74;;11827:26;11823:1;11818:3;11814:11;11807:47;11880:2;11875:3;11871:12;11864:19;;11713:176;;;:::o;11895:375::-;;12058:67;12122:2;12117:3;12058:67;:::i;:::-;12051:74;;12155:34;12151:1;12146:3;12142:11;12135:55;12221:13;12216:2;12211:3;12207:12;12200:35;12261:2;12256:3;12252:12;12245:19;;12041:229;;;:::o;12276:370::-;;12439:67;12503:2;12498:3;12439:67;:::i;:::-;12432:74;;12536:34;12532:1;12527:3;12523:11;12516:55;12602:8;12597:2;12592:3;12588:12;12581:30;12637:2;12632:3;12628:12;12621:19;;12422:224;;;:::o;12652:370::-;;12815:67;12879:2;12874:3;12815:67;:::i;:::-;12808:74;;12912:34;12908:1;12903:3;12899:11;12892:55;12978:8;12973:2;12968:3;12964:12;12957:30;13013:2;13008:3;13004:12;12997:19;;12798:224;;;:::o;13028:330::-;;13191:67;13255:2;13250:3;13191:67;:::i;:::-;13184:74;;13288:34;13284:1;13279:3;13275:11;13268:55;13349:2;13344:3;13340:12;13333:19;;13174:184;;;:::o;13364:379::-;;13527:67;13591:2;13586:3;13527:67;:::i;:::-;13520:74;;13624:34;13620:1;13615:3;13611:11;13604:55;13690:17;13685:2;13680:3;13676:12;13669:39;13734:2;13729:3;13725:12;13718:19;;13510:233;;;:::o;13749:324::-;;13912:67;13976:2;13971:3;13912:67;:::i;:::-;13905:74;;14009:28;14005:1;14000:3;13996:11;13989:49;14064:2;14059:3;14055:12;14048:19;;13895:178;;;:::o;14079:382::-;;14242:67;14306:2;14301:3;14242:67;:::i;:::-;14235:74;;14339:34;14335:1;14330:3;14326:11;14319:55;14405:20;14400:2;14395:3;14391:12;14384:42;14452:2;14447:3;14443:12;14436:19;;14225:236;;;:::o;14467:314::-;;14630:67;14694:2;14689:3;14630:67;:::i;:::-;14623:74;;14727:18;14723:1;14718:3;14714:11;14707:39;14772:2;14767:3;14763:12;14756:19;;14613:168;;;:::o;14787:366::-;;14950:67;15014:2;15009:3;14950:67;:::i;:::-;14943:74;;15047:34;15043:1;15038:3;15034:11;15027:55;15113:4;15108:2;15103:3;15099:12;15092:26;15144:2;15139:3;15135:12;15128:19;;14933:220;;;:::o;15159:297::-;;15339:83;15420:1;15415:3;15339:83;:::i;:::-;15332:90;;15448:1;15443:3;15439:11;15432:18;;15322:134;;;:::o;15462:314::-;;15625:67;15689:2;15684:3;15625:67;:::i;:::-;15618:74;;15722:18;15718:1;15713:3;15709:11;15702:39;15767:2;15762:3;15758:12;15751:19;;15608:168;;;:::o;15782:383::-;;15945:67;16009:2;16004:3;15945:67;:::i;:::-;15938:74;;16042:34;16038:1;16033:3;16029:11;16022:55;16108:21;16103:2;16098:3;16094:12;16087:43;16156:2;16151:3;16147:12;16140:19;;15928:237;;;:::o;16171:327::-;;16334:67;16398:2;16393:3;16334:67;:::i;:::-;16327:74;;16431:31;16427:1;16422:3;16418:11;16411:52;16489:2;16484:3;16480:12;16473:19;;16317:181;;;:::o;16504:365::-;;16667:67;16731:2;16726:3;16667:67;:::i;:::-;16660:74;;16764:34;16760:1;16755:3;16751:11;16744:55;16830:3;16825:2;16820:3;16816:12;16809:25;16860:2;16855:3;16851:12;16844:19;;16650:219;;;:::o;16875:378::-;;17038:67;17102:2;17097:3;17038:67;:::i;:::-;17031:74;;17135:34;17131:1;17126:3;17122:11;17115:55;17201:16;17196:2;17191:3;17187:12;17180:38;17244:2;17239:3;17235:12;17228:19;;17021:232;;;:::o;17259:370::-;;17422:67;17486:2;17481:3;17422:67;:::i;:::-;17415:74;;17519:34;17515:1;17510:3;17506:11;17499:55;17585:8;17580:2;17575:3;17571:12;17564:30;17620:2;17615:3;17611:12;17604:19;;17405:224;;;:::o;17635:329::-;;17798:67;17862:2;17857:3;17798:67;:::i;:::-;17791:74;;17895:33;17891:1;17886:3;17882:11;17875:54;17955:2;17950:3;17946:12;17939:19;;17781:183;;;:::o;17970:370::-;;18133:67;18197:2;18192:3;18133:67;:::i;:::-;18126:74;;18230:34;18226:1;18221:3;18217:11;18210:55;18296:8;18291:2;18286:3;18282:12;18275:30;18331:2;18326:3;18322:12;18315:19;;18116:224;;;:::o;18346:379::-;;18509:67;18573:2;18568:3;18509:67;:::i;:::-;18502:74;;18606:34;18602:1;18597:3;18593:11;18586:55;18672:17;18667:2;18662:3;18658:12;18651:39;18716:2;18711:3;18707:12;18700:19;;18492:233;;;:::o;18731:377::-;;18894:67;18958:2;18953:3;18894:67;:::i;:::-;18887:74;;18991:34;18987:1;18982:3;18978:11;18971:55;19057:15;19052:2;19047:3;19043:12;19036:37;19099:2;19094:3;19090:12;19083:19;;18877:231;;;:::o;19114:366::-;;19277:67;19341:2;19336:3;19277:67;:::i;:::-;19270:74;;19374:34;19370:1;19365:3;19361:11;19354:55;19440:4;19435:2;19430:3;19426:12;19419:26;19471:2;19466:3;19462:12;19455:19;;19260:220;;;:::o;19556:527::-;19715:4;19710:3;19706:14;19802:4;19795:5;19791:16;19785:23;19821:63;19878:4;19873:3;19869:14;19855:12;19821:63;:::i;:::-;19730:164;19986:4;19979:5;19975:16;19969:23;20005:61;20060:4;20055:3;20051:14;20037:12;20005:61;:::i;:::-;19904:172;19684:399;;;:::o;20089:108::-;20166:24;20184:5;20166:24;:::i;:::-;20161:3;20154:37;20144:53;;:::o;20203:118::-;20290:24;20308:5;20290:24;:::i;:::-;20285:3;20278:37;20268:53;;:::o;20327:105::-;20402:23;20419:5;20402:23;:::i;:::-;20397:3;20390:36;20380:52;;:::o;20438:435::-;;20640:95;20731:3;20722:6;20640:95;:::i;:::-;20633:102;;20752:95;20843:3;20834:6;20752:95;:::i;:::-;20745:102;;20864:3;20857:10;;20622:251;;;;;:::o;20879:379::-;;21085:147;21228:3;21085:147;:::i;:::-;21078:154;;21249:3;21242:10;;21067:191;;;:::o;21264:222::-;;21395:2;21384:9;21380:18;21372:26;;21408:71;21476:1;21465:9;21461:17;21452:6;21408:71;:::i;:::-;21362:124;;;;:::o;21492:640::-;;21725:3;21714:9;21710:19;21702:27;;21739:71;21807:1;21796:9;21792:17;21783:6;21739:71;:::i;:::-;21820:72;21888:2;21877:9;21873:18;21864:6;21820:72;:::i;:::-;21902;21970:2;21959:9;21955:18;21946:6;21902:72;:::i;:::-;22021:9;22015:4;22011:20;22006:2;21995:9;21991:18;21984:48;22049:76;22120:4;22111:6;22049:76;:::i;:::-;22041:84;;21692:440;;;;;;;:::o;22138:373::-;;22319:2;22308:9;22304:18;22296:26;;22368:9;22362:4;22358:20;22354:1;22343:9;22339:17;22332:47;22396:108;22499:4;22490:6;22396:108;:::i;:::-;22388:116;;22286:225;;;;:::o;22517:210::-;;22642:2;22631:9;22627:18;22619:26;;22655:65;22717:1;22706:9;22702:17;22693:6;22655:65;:::i;:::-;22609:118;;;;:::o;22733:313::-;;22884:2;22873:9;22869:18;22861:26;;22933:9;22927:4;22923:20;22919:1;22908:9;22904:17;22897:47;22961:78;23034:4;23025:6;22961:78;:::i;:::-;22953:86;;22851:195;;;;:::o;23052:419::-;;23256:2;23245:9;23241:18;23233:26;;23305:9;23299:4;23295:20;23291:1;23280:9;23276:17;23269:47;23333:131;23459:4;23333:131;:::i;:::-;23325:139;;23223:248;;;:::o;23477:419::-;;23681:2;23670:9;23666:18;23658:26;;23730:9;23724:4;23720:20;23716:1;23705:9;23701:17;23694:47;23758:131;23884:4;23758:131;:::i;:::-;23750:139;;23648:248;;;:::o;23902:419::-;;24106:2;24095:9;24091:18;24083:26;;24155:9;24149:4;24145:20;24141:1;24130:9;24126:17;24119:47;24183:131;24309:4;24183:131;:::i;:::-;24175:139;;24073:248;;;:::o;24327:419::-;;24531:2;24520:9;24516:18;24508:26;;24580:9;24574:4;24570:20;24566:1;24555:9;24551:17;24544:47;24608:131;24734:4;24608:131;:::i;:::-;24600:139;;24498:248;;;:::o;24752:419::-;;24956:2;24945:9;24941:18;24933:26;;25005:9;24999:4;24995:20;24991:1;24980:9;24976:17;24969:47;25033:131;25159:4;25033:131;:::i;:::-;25025:139;;24923:248;;;:::o;25177:419::-;;25381:2;25370:9;25366:18;25358:26;;25430:9;25424:4;25420:20;25416:1;25405:9;25401:17;25394:47;25458:131;25584:4;25458:131;:::i;:::-;25450:139;;25348:248;;;:::o;25602:419::-;;25806:2;25795:9;25791:18;25783:26;;25855:9;25849:4;25845:20;25841:1;25830:9;25826:17;25819:47;25883:131;26009:4;25883:131;:::i;:::-;25875:139;;25773:248;;;:::o;26027:419::-;;26231:2;26220:9;26216:18;26208:26;;26280:9;26274:4;26270:20;26266:1;26255:9;26251:17;26244:47;26308:131;26434:4;26308:131;:::i;:::-;26300:139;;26198:248;;;:::o;26452:419::-;;26656:2;26645:9;26641:18;26633:26;;26705:9;26699:4;26695:20;26691:1;26680:9;26676:17;26669:47;26733:131;26859:4;26733:131;:::i;:::-;26725:139;;26623:248;;;:::o;26877:419::-;;27081:2;27070:9;27066:18;27058:26;;27130:9;27124:4;27120:20;27116:1;27105:9;27101:17;27094:47;27158:131;27284:4;27158:131;:::i;:::-;27150:139;;27048:248;;;:::o;27302:419::-;;27506:2;27495:9;27491:18;27483:26;;27555:9;27549:4;27545:20;27541:1;27530:9;27526:17;27519:47;27583:131;27709:4;27583:131;:::i;:::-;27575:139;;27473:248;;;:::o;27727:419::-;;27931:2;27920:9;27916:18;27908:26;;27980:9;27974:4;27970:20;27966:1;27955:9;27951:17;27944:47;28008:131;28134:4;28008:131;:::i;:::-;28000:139;;27898:248;;;:::o;28152:419::-;;28356:2;28345:9;28341:18;28333:26;;28405:9;28399:4;28395:20;28391:1;28380:9;28376:17;28369:47;28433:131;28559:4;28433:131;:::i;:::-;28425:139;;28323:248;;;:::o;28577:419::-;;28781:2;28770:9;28766:18;28758:26;;28830:9;28824:4;28820:20;28816:1;28805:9;28801:17;28794:47;28858:131;28984:4;28858:131;:::i;:::-;28850:139;;28748:248;;;:::o;29002:419::-;;29206:2;29195:9;29191:18;29183:26;;29255:9;29249:4;29245:20;29241:1;29230:9;29226:17;29219:47;29283:131;29409:4;29283:131;:::i;:::-;29275:139;;29173:248;;;:::o;29427:419::-;;29631:2;29620:9;29616:18;29608:26;;29680:9;29674:4;29670:20;29666:1;29655:9;29651:17;29644:47;29708:131;29834:4;29708:131;:::i;:::-;29700:139;;29598:248;;;:::o;29852:419::-;;30056:2;30045:9;30041:18;30033:26;;30105:9;30099:4;30095:20;30091:1;30080:9;30076:17;30069:47;30133:131;30259:4;30133:131;:::i;:::-;30125:139;;30023:248;;;:::o;30277:419::-;;30481:2;30470:9;30466:18;30458:26;;30530:9;30524:4;30520:20;30516:1;30505:9;30501:17;30494:47;30558:131;30684:4;30558:131;:::i;:::-;30550:139;;30448:248;;;:::o;30702:419::-;;30906:2;30895:9;30891:18;30883:26;;30955:9;30949:4;30945:20;30941:1;30930:9;30926:17;30919:47;30983:131;31109:4;30983:131;:::i;:::-;30975:139;;30873:248;;;:::o;31127:419::-;;31331:2;31320:9;31316:18;31308:26;;31380:9;31374:4;31370:20;31366:1;31355:9;31351:17;31344:47;31408:131;31534:4;31408:131;:::i;:::-;31400:139;;31298:248;;;:::o;31552:419::-;;31756:2;31745:9;31741:18;31733:26;;31805:9;31799:4;31795:20;31791:1;31780:9;31776:17;31769:47;31833:131;31959:4;31833:131;:::i;:::-;31825:139;;31723:248;;;:::o;31977:419::-;;32181:2;32170:9;32166:18;32158:26;;32230:9;32224:4;32220:20;32216:1;32205:9;32201:17;32194:47;32258:131;32384:4;32258:131;:::i;:::-;32250:139;;32148:248;;;:::o;32402:419::-;;32606:2;32595:9;32591:18;32583:26;;32655:9;32649:4;32645:20;32641:1;32630:9;32626:17;32619:47;32683:131;32809:4;32683:131;:::i;:::-;32675:139;;32573:248;;;:::o;32827:419::-;;33031:2;33020:9;33016:18;33008:26;;33080:9;33074:4;33070:20;33066:1;33055:9;33051:17;33044:47;33108:131;33234:4;33108:131;:::i;:::-;33100:139;;32998:248;;;:::o;33252:419::-;;33456:2;33445:9;33441:18;33433:26;;33505:9;33499:4;33495:20;33491:1;33480:9;33476:17;33469:47;33533:131;33659:4;33533:131;:::i;:::-;33525:139;;33423:248;;;:::o;33677:419::-;;33881:2;33870:9;33866:18;33858:26;;33930:9;33924:4;33920:20;33916:1;33905:9;33901:17;33894:47;33958:131;34084:4;33958:131;:::i;:::-;33950:139;;33848:248;;;:::o;34102:419::-;;34306:2;34295:9;34291:18;34283:26;;34355:9;34349:4;34345:20;34341:1;34330:9;34326:17;34319:47;34383:131;34509:4;34383:131;:::i;:::-;34375:139;;34273:248;;;:::o;34527:419::-;;34731:2;34720:9;34716:18;34708:26;;34780:9;34774:4;34770:20;34766:1;34755:9;34751:17;34744:47;34808:131;34934:4;34808:131;:::i;:::-;34800:139;;34698:248;;;:::o;34952:419::-;;35156:2;35145:9;35141:18;35133:26;;35205:9;35199:4;35195:20;35191:1;35180:9;35176:17;35169:47;35233:131;35359:4;35233:131;:::i;:::-;35225:139;;35123:248;;;:::o;35377:419::-;;35581:2;35570:9;35566:18;35558:26;;35630:9;35624:4;35620:20;35616:1;35605:9;35601:17;35594:47;35658:131;35784:4;35658:131;:::i;:::-;35650:139;;35548:248;;;:::o;35802:346::-;;35995:2;35984:9;35980:18;35972:26;;36008:133;36138:1;36127:9;36123:17;36114:6;36008:133;:::i;:::-;35962:186;;;;:::o;36154:222::-;;36285:2;36274:9;36270:18;36262:26;;36298:71;36366:1;36355:9;36351:17;36342:6;36298:71;:::i;:::-;36252:124;;;;:::o;36382:283::-;;36448:2;36442:9;36432:19;;36490:4;36482:6;36478:17;36597:6;36585:10;36582:22;36561:18;36549:10;36546:34;36543:62;36540:2;;;36608:18;;:::i;:::-;36540:2;36648:10;36644:2;36637:22;36422:243;;;;:::o;36671:331::-;;36822:18;36814:6;36811:30;36808:2;;;36844:18;;:::i;:::-;36808:2;36929:4;36925:9;36918:4;36910:6;36906:17;36902:33;36894:41;;36990:4;36984;36980:15;36972:23;;36737:265;;;:::o;37008:132::-;;37098:3;37090:11;;37128:4;37123:3;37119:14;37111:22;;37080:60;;;:::o;37146:114::-;;37247:5;37241:12;37231:22;;37220:40;;;:::o;37266:98::-;;37351:5;37345:12;37335:22;;37324:40;;;:::o;37370:99::-;;37456:5;37450:12;37440:22;;37429:40;;;:::o;37475:113::-;;37577:4;37572:3;37568:14;37560:22;;37550:38;;;:::o;37594:184::-;;37727:6;37722:3;37715:19;37767:4;37762:3;37758:14;37743:29;;37705:73;;;;:::o;37784:168::-;;37901:6;37896:3;37889:19;37941:4;37936:3;37932:14;37917:29;;37879:73;;;;:::o;37958:147::-;;38096:3;38081:18;;38071:34;;;;:::o;38111:169::-;;38229:6;38224:3;38217:19;38269:4;38264:3;38260:14;38245:29;;38207:73;;;;:::o;38286:148::-;;38425:3;38410:18;;38400:34;;;;:::o;38440:273::-;;38499:20;38517:1;38499:20;:::i;:::-;38494:25;;38533:20;38551:1;38533:20;:::i;:::-;38528:25;;38655:1;38619:34;38615:42;38612:1;38609:49;38606:2;;;38661:18;;:::i;:::-;38606:2;38705:1;38702;38698:9;38691:16;;38484:229;;;;:::o;38719:305::-;;38778:20;38796:1;38778:20;:::i;:::-;38773:25;;38812:20;38830:1;38812:20;:::i;:::-;38807:25;;38966:1;38898:66;38894:74;38891:1;38888:81;38885:2;;;38972:18;;:::i;:::-;38885:2;39016:1;39013;39009:9;39002:16;;38763:261;;;;:::o;39030:185::-;;39087:20;39105:1;39087:20;:::i;:::-;39082:25;;39121:20;39139:1;39121:20;:::i;:::-;39116:25;;39160:1;39150:2;;39165:18;;:::i;:::-;39150:2;39207:1;39204;39200:9;39195:14;;39072:143;;;;:::o;39221:348::-;;39284:20;39302:1;39284:20;:::i;:::-;39279:25;;39318:20;39336:1;39318:20;:::i;:::-;39313:25;;39506:1;39438:66;39434:74;39431:1;39428:81;39423:1;39416:9;39409:17;39405:105;39402:2;;;39513:18;;:::i;:::-;39402:2;39561:1;39558;39554:9;39543:20;;39269:300;;;;:::o;39575:191::-;;39635:20;39653:1;39635:20;:::i;:::-;39630:25;;39669:20;39687:1;39669:20;:::i;:::-;39664:25;;39708:1;39705;39702:8;39699:2;;;39713:18;;:::i;:::-;39699:2;39758:1;39755;39751:9;39743:17;;39620:146;;;;:::o;39772:191::-;;39832:20;39850:1;39832:20;:::i;:::-;39827:25;;39866:20;39884:1;39866:20;:::i;:::-;39861:25;;39905:1;39902;39899:8;39896:2;;;39910:18;;:::i;:::-;39896:2;39955:1;39952;39948:9;39940:17;;39817:146;;;;:::o;39969:96::-;;40035:24;40053:5;40035:24;:::i;:::-;40024:35;;40014:51;;;:::o;40071:90::-;;40148:5;40141:13;40134:21;40123:32;;40113:48;;;:::o;40167:149::-;;40243:66;40236:5;40232:78;40221:89;;40211:105;;;:::o;40322:118::-;;40399:34;40392:5;40388:46;40377:57;;40367:73;;;:::o;40446:126::-;;40523:42;40516:5;40512:54;40501:65;;40491:81;;;:::o;40578:77::-;;40644:5;40633:16;;40623:32;;;:::o;40661:101::-;;40737:18;40730:5;40726:30;40715:41;;40705:57;;;:::o;40768:154::-;40852:6;40847:3;40842;40829:30;40914:1;40905:6;40900:3;40896:16;40889:27;40819:103;;;:::o;40928:307::-;40996:1;41006:113;41020:6;41017:1;41014:13;41006:113;;;41105:1;41100:3;41096:11;41090:18;41086:1;41081:3;41077:11;41070:39;41042:2;41039:1;41035:10;41030:15;;41006:113;;;41137:6;41134:1;41131:13;41128:2;;;41217:1;41208:6;41203:3;41199:16;41192:27;41128:2;40977:258;;;;:::o;41241:171::-;;41303:24;41321:5;41303:24;:::i;:::-;41294:33;;41349:4;41342:5;41339:15;41336:2;;;41357:18;;:::i;:::-;41336:2;41404:1;41397:5;41393:13;41386:20;;41284:128;;;:::o;41418:320::-;;41499:1;41493:4;41489:12;41479:22;;41546:1;41540:4;41536:12;41567:18;41557:2;;41623:4;41615:6;41611:17;41601:27;;41557:2;41685;41677:6;41674:14;41654:18;41651:38;41648:2;;;41704:18;;:::i;:::-;41648:2;41469:269;;;;:::o;41744:233::-;;41806:24;41824:5;41806:24;:::i;:::-;41797:33;;41852:66;41845:5;41842:77;41839:2;;;41922:18;;:::i;:::-;41839:2;41969:1;41962:5;41958:13;41951:20;;41787:190;;;:::o;41983:176::-;;42032:20;42050:1;42032:20;:::i;:::-;42027:25;;42066:20;42084:1;42066:20;:::i;:::-;42061:25;;42105:1;42095:2;;42110:18;;:::i;:::-;42095:2;42151:1;42148;42144:9;42139:14;;42017:142;;;;:::o;42165:180::-;42213:77;42210:1;42203:88;42310:4;42307:1;42300:15;42334:4;42331:1;42324:15;42351:180;42399:77;42396:1;42389:88;42496:4;42493:1;42486:15;42520:4;42517:1;42510:15;42537:180;42585:77;42582:1;42575:88;42682:4;42679:1;42672:15;42706:4;42703:1;42696:15;42723:180;42771:77;42768:1;42761:88;42868:4;42865:1;42858:15;42892:4;42889:1;42882:15;42909:102;;43001:2;42997:7;42992:2;42985:5;42981:14;42977:28;42967:38;;42957:54;;;:::o;43017:122::-;43090:24;43108:5;43090:24;:::i;:::-;43083:5;43080:35;43070:2;;43129:1;43126;43119:12;43070:2;43060:79;:::o;43145:116::-;43215:21;43230:5;43215:21;:::i;:::-;43208:5;43205:32;43195:2;;43251:1;43248;43241:12;43195:2;43185:76;:::o;43267:120::-;43339:23;43356:5;43339:23;:::i;:::-;43332:5;43329:34;43319:2;;43377:1;43374;43367:12;43319:2;43309:78;:::o;43393:122::-;43466:24;43484:5;43466:24;:::i;:::-;43459:5;43456:35;43446:2;;43505:1;43502;43495:12;43446:2;43436:79;:::o

Swarm Source

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