ETH Price: $3,414.69 (+0.28%)
Gas: 9 Gwei

Token

Not Okay Bears (NOB)
 

Overview

Max Total Supply

4,000 NOB

Holders

684

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 NOB
0xeb1ff71d309d8e9e1f99c7b1117bab92ce09d85c
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:
NotOkayBears

Compiler Version
v0.8.10+commit.fc410830

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

// File: @openzeppelin/contracts/utils/Strings.sol


// OpenZeppelin Contracts v4.4.1 (utils/Strings.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

// File: @openzeppelin/contracts/utils/Address.sol


// OpenZeppelin Contracts (last updated v4.5.0) (utils/Address.sol)

pragma solidity ^0.8.1;

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

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// File: @openzeppelin/contracts/token/ERC721/IERC721Receiver.sol


// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC721/IERC721Receiver.sol)

pragma solidity ^0.8.0;

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

// File: @openzeppelin/contracts/utils/introspection/IERC165.sol


// OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol)

pragma solidity ^0.8.0;

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

// File: @openzeppelin/contracts/utils/introspection/ERC165.sol


// OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol)

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

// File: @openzeppelin/contracts/token/ERC721/IERC721.sol


// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC721/IERC721.sol)

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

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

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

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

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

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

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

// File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Enumerable.sol


// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC721/extensions/IERC721Enumerable.sol)

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

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

// File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol


// OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol)

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

// File: @openzeppelin/contracts/security/ReentrancyGuard.sol


// OpenZeppelin Contracts v4.4.1 (security/ReentrancyGuard.sol)

pragma solidity ^0.8.0;

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

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

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

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

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

        _;

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

// File: @openzeppelin/contracts/utils/Context.sol


// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)

pragma solidity ^0.8.0;

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

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

// File: contracts/ERC721A.sol



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

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

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

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

    _approve(to, tokenId, owner);
  }

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

    return _tokenApprovals[tokenId];
  }

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

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

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

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

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

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

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

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

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

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

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

    uint256 updatedIndex = startTokenId;

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

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

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

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

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

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

    _beforeTokenTransfers(from, to, tokenId, 1);

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

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

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

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

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

  uint256 public nextOwnerToExplicitlySet = 0;

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

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

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

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


// OpenZeppelin Contracts v4.4.1 (access/Ownable.sol)

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() {
        _transferOwnership(_msgSender());
    }

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

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

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

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

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

// File: contracts/NotOkayBears.sol



pragma solidity ^0.8.0;




contract NotOkayBears is Ownable, ERC721A, ReentrancyGuard {
    using Strings for uint256;

    string public baseURI = "http://notokaybears.io/image/"; // ipfs place holder text
    uint256 public cost = 0.05 ether;
    uint16 public maxSupply = 4000;
    uint public maxMintAmount = 10;
    bool public publicSale = true;

    constructor() ERC721A ("Not Okay Bears", "NOB", 20, maxSupply){}

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

    function mint(uint _mintAmount) external payable {
        require(publicSale, "Minting currently on hold");
        require(_mintAmount <= maxMintAmount, "Maximum mint amount exceeded");
        require(totalSupply() + _mintAmount <= maxSupply, "Purchase would exceed max supply of NFT");
        mintX(_mintAmount);
    }

    function mintX(uint _mintAmount) private {
        require(_mintAmount > 0, "Amount to mint can not be 0");
        if (msg.sender != owner() && (totalSupply() > 200)) {
            require(msg.value >= cost * _mintAmount, "Amount sent less than the cost of minting NFT(s)");
        }
        _safeMint(msg.sender, _mintAmount);
    }

    function walletOfOwner(address _owner) public view returns (uint256[] memory){
        uint256 ownerTokenCount = balanceOf(_owner);
        uint256[] memory tokenIds = new uint256[](ownerTokenCount);
        for (uint256 i; i < ownerTokenCount; i++) {
            tokenIds[i] = tokenOfOwnerByIndex(_owner, i);
        }
        return tokenIds;
    }

    function tokenURI(uint256 tokenId) public view virtual override returns (string memory){

        require(_exists(tokenId), "ERC721Metadata: tokenURI queried for nonexistent token");
        string memory currentBaseURI = _baseURI();
        return bytes(currentBaseURI).length > 0 ? string(abi.encodePacked(baseURI, tokenId.toString(), ".json")) : "";
    }

    // Access control
    function devMint(uint _mintAmount) external onlyOwner() {
        require(totalSupply() + _mintAmount <= maxSupply, "Purchase would exceed max supply of NFT");
        mintX(_mintAmount);
    }

    function setCost(uint256 _cost) public onlyOwner() {
        cost = _cost;
    }

    function setMaxMintAmount(uint256 _maxMintAmount) public onlyOwner() {
        maxMintAmount = _maxMintAmount;
    }

    function setBaseURI(string memory _newBaseURI) public onlyOwner() {
        baseURI = _newBaseURI;
    }

    function togglePublicSale() public onlyOwner() {
        publicSale = !publicSale;
    }

    function withdraw() public payable onlyOwner() {
        uint balance = address(this).balance;
        uint _10 = (10 * balance)/100;
        balance -= _10;
        address devAddress = 0x4c024E66cEb1070E62EAe797D79BB569965DfB7C;
        (bool success,) = address(msg.sender).call{value : balance}("");
        (bool success2,) = devAddress.call{value : _10}("");
        require(success && success2, "Unable to withdraw balance");
    }

}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"cost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"devMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"nextOwnerToExplicitlySet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicSale","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"_newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_cost","type":"uint256"}],"name":"setCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxMintAmount","type":"uint256"}],"name":"setMaxMintAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"togglePublicSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"walletOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"payable","type":"function"}]

60c0604052600060015560006008556040518060400160405280601d81526020017f687474703a2f2f6e6f746f6b617962656172732e696f2f696d6167652f000000815250600a90805190602001906200005b92919062000303565b5066b1a2bc2ec50000600b55610fa0600c60006101000a81548161ffff021916908361ffff160217905550600a600d556001600e60006101000a81548160ff021916908315150217905550348015620000b357600080fd5b506040518060400160405280600e81526020017f4e6f74204f6b61792042656172730000000000000000000000000000000000008152506040518060400160405280600381526020017f4e4f4200000000000000000000000000000000000000000000000000000000008152506014600c60009054906101000a900461ffff1661ffff16620001576200014b6200023760201b60201c565b6200023f60201b60201c565b600081116200019d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000194906200043a565b60405180910390fd5b60008211620001e3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620001da90620004d2565b60405180910390fd5b8360029080519060200190620001fb92919062000303565b5082600390805190602001906200021492919062000303565b508160a08181525050806080818152505050505050600160098190555062000559565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b828054620003119062000523565b90600052602060002090601f01602090048101928262000335576000855562000381565b82601f106200035057805160ff191683800117855562000381565b8280016001018555821562000381579182015b828111156200038057825182559160200191906001019062000363565b5b50905062000390919062000394565b5090565b5b80821115620003af57600081600090555060010162000395565b5090565b600082825260208201905092915050565b7f455243373231413a20636f6c6c656374696f6e206d757374206861766520612060008201527f6e6f6e7a65726f20737570706c79000000000000000000000000000000000000602082015250565b600062000422602e83620003b3565b91506200042f82620003c4565b604082019050919050565b60006020820190508181036000830152620004558162000413565b9050919050565b7f455243373231413a206d61782062617463682073697a65206d7573742062652060008201527f6e6f6e7a65726f00000000000000000000000000000000000000000000000000602082015250565b6000620004ba602783620003b3565b9150620004c7826200045c565b604082019050919050565b60006020820190508181036000830152620004ed81620004ab565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200053c57607f821691505b60208210811415620005535762000552620004f4565b5b50919050565b60805160a051614b4f6200058a600039600081816123e10152818161240a0152612ade015260005050614b4f6000f3fe6080604052600436106101ee5760003560e01c80634f6ccce71161010d578063a0712d68116100a0578063d5abeb011161006f578063d5abeb01146106e1578063d7224ba01461070c578063e222c7f914610737578063e985e9c51461074e578063f2fde38b1461078b576101ee565b8063a0712d6814610636578063a22cb46514610652578063b88d4fde1461067b578063c87b56dd146106a4576101ee565b806370a08231116100dc57806370a082311461058c578063715018a6146105c95780638da5cb5b146105e057806395d89b411461060b576101ee565b80634f6ccce7146104be57806355f804b3146104fb5780636352211e146105245780636c0360eb14610561576101ee565b806323b872dd116101855780633ccfd60b116101545780633ccfd60b1461042557806342842e0e1461042f578063438b63001461045857806344a0d68a14610495576101ee565b806323b872dd1461036b5780632f745c591461039457806333bc1c5c146103d1578063375a069a146103fc576101ee565b8063095ea7b3116101c1578063095ea7b3146102c157806313faede6146102ea57806318160ddd14610315578063239c70ae14610340576101ee565b806301ffc9a7146101f357806306fdde0314610230578063081812fc1461025b578063088a4ed014610298575b600080fd5b3480156101ff57600080fd5b5061021a60048036038101906102159190613045565b6107b4565b604051610227919061308d565b60405180910390f35b34801561023c57600080fd5b506102456108fe565b6040516102529190613141565b60405180910390f35b34801561026757600080fd5b50610282600480360381019061027d9190613199565b610990565b60405161028f9190613207565b60405180910390f35b3480156102a457600080fd5b506102bf60048036038101906102ba9190613199565b610a15565b005b3480156102cd57600080fd5b506102e860048036038101906102e3919061324e565b610a9b565b005b3480156102f657600080fd5b506102ff610bb4565b60405161030c919061329d565b60405180910390f35b34801561032157600080fd5b5061032a610bba565b604051610337919061329d565b60405180910390f35b34801561034c57600080fd5b50610355610bc4565b604051610362919061329d565b60405180910390f35b34801561037757600080fd5b50610392600480360381019061038d91906132b8565b610bca565b005b3480156103a057600080fd5b506103bb60048036038101906103b6919061324e565b610bda565b6040516103c8919061329d565b60405180910390f35b3480156103dd57600080fd5b506103e6610dd8565b6040516103f3919061308d565b60405180910390f35b34801561040857600080fd5b50610423600480360381019061041e9190613199565b610deb565b005b61042d610edc565b005b34801561043b57600080fd5b50610456600480360381019061045191906132b8565b6110c9565b005b34801561046457600080fd5b5061047f600480360381019061047a919061330b565b6110e9565b60405161048c91906133f6565b60405180910390f35b3480156104a157600080fd5b506104bc60048036038101906104b79190613199565b611197565b005b3480156104ca57600080fd5b506104e560048036038101906104e09190613199565b61121d565b6040516104f2919061329d565b60405180910390f35b34801561050757600080fd5b50610522600480360381019061051d919061354d565b611270565b005b34801561053057600080fd5b5061054b60048036038101906105469190613199565b611306565b6040516105589190613207565b60405180910390f35b34801561056d57600080fd5b5061057661131c565b6040516105839190613141565b60405180910390f35b34801561059857600080fd5b506105b360048036038101906105ae919061330b565b6113aa565b6040516105c0919061329d565b60405180910390f35b3480156105d557600080fd5b506105de611493565b005b3480156105ec57600080fd5b506105f561151b565b6040516106029190613207565b60405180910390f35b34801561061757600080fd5b50610620611544565b60405161062d9190613141565b60405180910390f35b610650600480360381019061064b9190613199565b6115d6565b005b34801561065e57600080fd5b50610679600480360381019061067491906135c2565b6116df565b005b34801561068757600080fd5b506106a2600480360381019061069d91906136a3565b611860565b005b3480156106b057600080fd5b506106cb60048036038101906106c69190613199565b6118bc565b6040516106d89190613141565b60405180910390f35b3480156106ed57600080fd5b506106f6611964565b6040516107039190613743565b60405180910390f35b34801561071857600080fd5b50610721611978565b60405161072e919061329d565b60405180910390f35b34801561074357600080fd5b5061074c61197e565b005b34801561075a57600080fd5b506107756004803603810190610770919061375e565b611a26565b604051610782919061308d565b60405180910390f35b34801561079757600080fd5b506107b260048036038101906107ad919061330b565b611aba565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061087f57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806108e757507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806108f757506108f682611bb2565b5b9050919050565b60606002805461090d906137cd565b80601f0160208091040260200160405190810160405280929190818152602001828054610939906137cd565b80156109865780601f1061095b57610100808354040283529160200191610986565b820191906000526020600020905b81548152906001019060200180831161096957829003601f168201915b5050505050905090565b600061099b82611c1c565b6109da576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109d190613871565b60405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b610a1d611c2a565b73ffffffffffffffffffffffffffffffffffffffff16610a3b61151b565b73ffffffffffffffffffffffffffffffffffffffff1614610a91576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a88906138dd565b60405180910390fd5b80600d8190555050565b6000610aa682611306565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610b17576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b0e9061396f565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610b36611c2a565b73ffffffffffffffffffffffffffffffffffffffff161480610b655750610b6481610b5f611c2a565b611a26565b5b610ba4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b9b90613a01565b60405180910390fd5b610baf838383611c32565b505050565b600b5481565b6000600154905090565b600d5481565b610bd5838383611ce4565b505050565b6000610be5836113aa565b8210610c26576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c1d90613a93565b60405180910390fd5b6000610c30610bba565b905060008060005b83811015610d96576000600460008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614610d2a57806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610d825786841415610d73578195505050505050610dd2565b8380610d7e90613ae2565b9450505b508080610d8e90613ae2565b915050610c38565b506040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dc990613b9d565b60405180910390fd5b92915050565b600e60009054906101000a900460ff1681565b610df3611c2a565b73ffffffffffffffffffffffffffffffffffffffff16610e1161151b565b73ffffffffffffffffffffffffffffffffffffffff1614610e67576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e5e906138dd565b60405180910390fd5b600c60009054906101000a900461ffff1661ffff1681610e85610bba565b610e8f9190613bbd565b1115610ed0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ec790613c85565b60405180910390fd5b610ed98161229d565b50565b610ee4611c2a565b73ffffffffffffffffffffffffffffffffffffffff16610f0261151b565b73ffffffffffffffffffffffffffffffffffffffff1614610f58576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f4f906138dd565b60405180910390fd5b60004790506000606482600a610f6e9190613ca5565b610f789190613d2e565b90508082610f869190613d5f565b91506000734c024e66ceb1070e62eae797d79bb569965dfb7c905060003373ffffffffffffffffffffffffffffffffffffffff1684604051610fc790613dc4565b60006040518083038185875af1925050503d8060008114611004576040519150601f19603f3d011682016040523d82523d6000602084013e611009565b606091505b5050905060008273ffffffffffffffffffffffffffffffffffffffff168460405161103390613dc4565b60006040518083038185875af1925050503d8060008114611070576040519150601f19603f3d011682016040523d82523d6000602084013e611075565b606091505b505090508180156110835750805b6110c2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110b990613e25565b60405180910390fd5b5050505050565b6110e483838360405180602001604052806000815250611860565b505050565b606060006110f6836113aa565b905060008167ffffffffffffffff81111561111457611113613422565b5b6040519080825280602002602001820160405280156111425781602001602082028036833780820191505090505b50905060005b8281101561118c5761115a8582610bda565b82828151811061116d5761116c613e45565b5b602002602001018181525050808061118490613ae2565b915050611148565b508092505050919050565b61119f611c2a565b73ffffffffffffffffffffffffffffffffffffffff166111bd61151b565b73ffffffffffffffffffffffffffffffffffffffff1614611213576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161120a906138dd565b60405180910390fd5b80600b8190555050565b6000611227610bba565b8210611268576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161125f90613ee6565b60405180910390fd5b819050919050565b611278611c2a565b73ffffffffffffffffffffffffffffffffffffffff1661129661151b565b73ffffffffffffffffffffffffffffffffffffffff16146112ec576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112e3906138dd565b60405180910390fd5b80600a9080519060200190611302929190612efc565b5050565b60006113118261238d565b600001519050919050565b600a8054611329906137cd565b80601f0160208091040260200160405190810160405280929190818152602001828054611355906137cd565b80156113a25780601f10611377576101008083540402835291602001916113a2565b820191906000526020600020905b81548152906001019060200180831161138557829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561141b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161141290613f78565b60405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b61149b611c2a565b73ffffffffffffffffffffffffffffffffffffffff166114b961151b565b73ffffffffffffffffffffffffffffffffffffffff161461150f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611506906138dd565b60405180910390fd5b6115196000612590565b565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060038054611553906137cd565b80601f016020809104026020016040519081016040528092919081815260200182805461157f906137cd565b80156115cc5780601f106115a1576101008083540402835291602001916115cc565b820191906000526020600020905b8154815290600101906020018083116115af57829003601f168201915b5050505050905090565b600e60009054906101000a900460ff16611625576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161161c90613fe4565b60405180910390fd5b600d5481111561166a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161166190614050565b60405180910390fd5b600c60009054906101000a900461ffff1661ffff1681611688610bba565b6116929190613bbd565b11156116d3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116ca90613c85565b60405180910390fd5b6116dc8161229d565b50565b6116e7611c2a565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611755576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161174c906140bc565b60405180910390fd5b8060076000611762611c2a565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661180f611c2a565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611854919061308d565b60405180910390a35050565b61186b848484611ce4565b61187784848484612654565b6118b6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118ad9061414e565b60405180910390fd5b50505050565b60606118c782611c1c565b611906576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118fd906141e0565b60405180910390fd5b60006119106127dc565b90506000815111611930576040518060200160405280600081525061195c565b600a61193b8461286e565b60405160200161194c92919061431c565b6040516020818303038152906040525b915050919050565b600c60009054906101000a900461ffff1681565b60085481565b611986611c2a565b73ffffffffffffffffffffffffffffffffffffffff166119a461151b565b73ffffffffffffffffffffffffffffffffffffffff16146119fa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119f1906138dd565b60405180910390fd5b600e60009054906101000a900460ff1615600e60006101000a81548160ff021916908315150217905550565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611ac2611c2a565b73ffffffffffffffffffffffffffffffffffffffff16611ae061151b565b73ffffffffffffffffffffffffffffffffffffffff1614611b36576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b2d906138dd565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611ba6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b9d906143bd565b60405180910390fd5b611baf81612590565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600060015482109050919050565b600033905090565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b6000611cef8261238d565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff16611d16611c2a565b73ffffffffffffffffffffffffffffffffffffffff161480611d725750611d3b611c2a565b73ffffffffffffffffffffffffffffffffffffffff16611d5a84610990565b73ffffffffffffffffffffffffffffffffffffffff16145b80611d8e5750611d8d8260000151611d88611c2a565b611a26565b5b905080611dd0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dc79061444f565b60405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff1614611e42576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e39906144e1565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611eb2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ea990614573565b60405180910390fd5b611ebf85858560016129cf565b611ecf6000848460000151611c32565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff16611f3d91906145af565b92506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff16611fe191906145e3565b92506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060405180604001604052808573ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506004600085815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555090505060006001846120e79190613bbd565b9050600073ffffffffffffffffffffffffffffffffffffffff166004600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16141561222d5761215d81611c1c565b1561222c576040518060400160405280846000015173ffffffffffffffffffffffffffffffffffffffff168152602001846020015167ffffffffffffffff168152506004600083815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055509050505b5b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461229586868660016129d5565b505050505050565b600081116122e0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122d790614675565b60405180910390fd5b6122e861151b565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161415801561232a575060c8612328610bba565b115b156123805780600b5461233d9190613ca5565b34101561237f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161237690614707565b60405180910390fd5b5b61238a33826129db565b50565b612395612f82565b61239e82611c1c565b6123dd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123d490614799565b60405180910390fd5b60007f000000000000000000000000000000000000000000000000000000000000000083106124415760017f0000000000000000000000000000000000000000000000000000000000000000846124349190613d5f565b61243e9190613bbd565b90505b60008390505b81811061254f576000600460008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461253b5780935050505061258b565b508080612547906147b9565b915050612447565b506040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161258290614855565b60405180910390fd5b919050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60006126758473ffffffffffffffffffffffffffffffffffffffff166129f9565b156127cf578373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261269e611c2a565b8786866040518563ffffffff1660e01b81526004016126c094939291906148ca565b6020604051808303816000875af19250505080156126fc57506040513d601f19601f820116820180604052508101906126f9919061492b565b60015b61277f573d806000811461272c576040519150601f19603f3d011682016040523d82523d6000602084013e612731565b606091505b50600081511415612777576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161276e9061414e565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506127d4565b600190505b949350505050565b6060600a80546127eb906137cd565b80601f0160208091040260200160405190810160405280929190818152602001828054612817906137cd565b80156128645780601f1061283957610100808354040283529160200191612864565b820191906000526020600020905b81548152906001019060200180831161284757829003601f168201915b5050505050905090565b606060008214156128b6576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506129ca565b600082905060005b600082146128e85780806128d190613ae2565b915050600a826128e19190613d2e565b91506128be565b60008167ffffffffffffffff81111561290457612903613422565b5b6040519080825280601f01601f1916602001820160405280156129365781602001600182028036833780820191505090505b5090505b600085146129c35760018261294f9190613d5f565b9150600a8561295e9190614958565b603061296a9190613bbd565b60f81b8183815181106129805761297f613e45565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856129bc9190613d2e565b945061293a565b8093505050505b919050565b50505050565b50505050565b6129f5828260405180602001604052806000815250612a1c565b5050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60006001549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612a93576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a8a906149fb565b60405180910390fd5b612a9c81611c1c565b15612adc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ad390614a67565b60405180910390fd5b7f0000000000000000000000000000000000000000000000000000000000000000831115612b3f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b3690614af9565b60405180910390fd5b612b4c60008583866129cf565b6000600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206040518060400160405290816000820160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff1681526020016000820160109054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff168152505090506040518060400160405280858360000151612c4991906145e3565b6fffffffffffffffffffffffffffffffff168152602001858360200151612c7091906145e3565b6fffffffffffffffffffffffffffffffff16815250600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008201518160000160006101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060208201518160000160106101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555090505060405180604001604052808673ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506004600084815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550905050600082905060005b85811015612edf57818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612e7f6000888488612654565b612ebe576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612eb59061414e565b60405180910390fd5b8180612ec990613ae2565b9250508080612ed790613ae2565b915050612e0e565b5080600181905550612ef460008785886129d5565b505050505050565b828054612f08906137cd565b90600052602060002090601f016020900481019282612f2a5760008555612f71565b82601f10612f4357805160ff1916838001178555612f71565b82800160010185558215612f71579182015b82811115612f70578251825591602001919060010190612f55565b5b509050612f7e9190612fbc565b5090565b6040518060400160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681525090565b5b80821115612fd5576000816000905550600101612fbd565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b61302281612fed565b811461302d57600080fd5b50565b60008135905061303f81613019565b92915050565b60006020828403121561305b5761305a612fe3565b5b600061306984828501613030565b91505092915050565b60008115159050919050565b61308781613072565b82525050565b60006020820190506130a2600083018461307e565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156130e25780820151818401526020810190506130c7565b838111156130f1576000848401525b50505050565b6000601f19601f8301169050919050565b6000613113826130a8565b61311d81856130b3565b935061312d8185602086016130c4565b613136816130f7565b840191505092915050565b6000602082019050818103600083015261315b8184613108565b905092915050565b6000819050919050565b61317681613163565b811461318157600080fd5b50565b6000813590506131938161316d565b92915050565b6000602082840312156131af576131ae612fe3565b5b60006131bd84828501613184565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006131f1826131c6565b9050919050565b613201816131e6565b82525050565b600060208201905061321c60008301846131f8565b92915050565b61322b816131e6565b811461323657600080fd5b50565b60008135905061324881613222565b92915050565b6000806040838503121561326557613264612fe3565b5b600061327385828601613239565b925050602061328485828601613184565b9150509250929050565b61329781613163565b82525050565b60006020820190506132b2600083018461328e565b92915050565b6000806000606084860312156132d1576132d0612fe3565b5b60006132df86828701613239565b93505060206132f086828701613239565b925050604061330186828701613184565b9150509250925092565b60006020828403121561332157613320612fe3565b5b600061332f84828501613239565b91505092915050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b61336d81613163565b82525050565b600061337f8383613364565b60208301905092915050565b6000602082019050919050565b60006133a382613338565b6133ad8185613343565b93506133b883613354565b8060005b838110156133e95781516133d08882613373565b97506133db8361338b565b9250506001810190506133bc565b5085935050505092915050565b600060208201905081810360008301526134108184613398565b905092915050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b61345a826130f7565b810181811067ffffffffffffffff8211171561347957613478613422565b5b80604052505050565b600061348c612fd9565b90506134988282613451565b919050565b600067ffffffffffffffff8211156134b8576134b7613422565b5b6134c1826130f7565b9050602081019050919050565b82818337600083830152505050565b60006134f06134eb8461349d565b613482565b90508281526020810184848401111561350c5761350b61341d565b5b6135178482856134ce565b509392505050565b600082601f83011261353457613533613418565b5b81356135448482602086016134dd565b91505092915050565b60006020828403121561356357613562612fe3565b5b600082013567ffffffffffffffff81111561358157613580612fe8565b5b61358d8482850161351f565b91505092915050565b61359f81613072565b81146135aa57600080fd5b50565b6000813590506135bc81613596565b92915050565b600080604083850312156135d9576135d8612fe3565b5b60006135e785828601613239565b92505060206135f8858286016135ad565b9150509250929050565b600067ffffffffffffffff82111561361d5761361c613422565b5b613626826130f7565b9050602081019050919050565b600061364661364184613602565b613482565b9050828152602081018484840111156136625761366161341d565b5b61366d8482856134ce565b509392505050565b600082601f83011261368a57613689613418565b5b813561369a848260208601613633565b91505092915050565b600080600080608085870312156136bd576136bc612fe3565b5b60006136cb87828801613239565b94505060206136dc87828801613239565b93505060406136ed87828801613184565b925050606085013567ffffffffffffffff81111561370e5761370d612fe8565b5b61371a87828801613675565b91505092959194509250565b600061ffff82169050919050565b61373d81613726565b82525050565b60006020820190506137586000830184613734565b92915050565b6000806040838503121561377557613774612fe3565b5b600061378385828601613239565b925050602061379485828601613239565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806137e557607f821691505b602082108114156137f9576137f861379e565b5b50919050565b7f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560008201527f78697374656e7420746f6b656e00000000000000000000000000000000000000602082015250565b600061385b602d836130b3565b9150613866826137ff565b604082019050919050565b6000602082019050818103600083015261388a8161384e565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006138c76020836130b3565b91506138d282613891565b602082019050919050565b600060208201905081810360008301526138f6816138ba565b9050919050565b7f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60008201527f6572000000000000000000000000000000000000000000000000000000000000602082015250565b60006139596022836130b3565b9150613964826138fd565b604082019050919050565b600060208201905081810360008301526139888161394c565b9050919050565b7f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000602082015250565b60006139eb6039836130b3565b91506139f68261398f565b604082019050919050565b60006020820190508181036000830152613a1a816139de565b9050919050565b7f455243373231413a206f776e657220696e646578206f7574206f6620626f756e60008201527f6473000000000000000000000000000000000000000000000000000000000000602082015250565b6000613a7d6022836130b3565b9150613a8882613a21565b604082019050919050565b60006020820190508181036000830152613aac81613a70565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000613aed82613163565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613b2057613b1f613ab3565b5b600182019050919050565b7f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060008201527f6f776e657220627920696e646578000000000000000000000000000000000000602082015250565b6000613b87602e836130b3565b9150613b9282613b2b565b604082019050919050565b60006020820190508181036000830152613bb681613b7a565b9050919050565b6000613bc882613163565b9150613bd383613163565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613c0857613c07613ab3565b5b828201905092915050565b7f507572636861736520776f756c6420657863656564206d617820737570706c7960008201527f206f66204e465400000000000000000000000000000000000000000000000000602082015250565b6000613c6f6027836130b3565b9150613c7a82613c13565b604082019050919050565b60006020820190508181036000830152613c9e81613c62565b9050919050565b6000613cb082613163565b9150613cbb83613163565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613cf457613cf3613ab3565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000613d3982613163565b9150613d4483613163565b925082613d5457613d53613cff565b5b828204905092915050565b6000613d6a82613163565b9150613d7583613163565b925082821015613d8857613d87613ab3565b5b828203905092915050565b600081905092915050565b50565b6000613dae600083613d93565b9150613db982613d9e565b600082019050919050565b6000613dcf82613da1565b9150819050919050565b7f556e61626c6520746f2077697468647261772062616c616e6365000000000000600082015250565b6000613e0f601a836130b3565b9150613e1a82613dd9565b602082019050919050565b60006020820190508181036000830152613e3e81613e02565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f7560008201527f6e64730000000000000000000000000000000000000000000000000000000000602082015250565b6000613ed06023836130b3565b9150613edb82613e74565b604082019050919050565b60006020820190508181036000830152613eff81613ec3565b9050919050565b7f455243373231413a2062616c616e636520717565727920666f7220746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b6000613f62602b836130b3565b9150613f6d82613f06565b604082019050919050565b60006020820190508181036000830152613f9181613f55565b9050919050565b7f4d696e74696e672063757272656e746c79206f6e20686f6c6400000000000000600082015250565b6000613fce6019836130b3565b9150613fd982613f98565b602082019050919050565b60006020820190508181036000830152613ffd81613fc1565b9050919050565b7f4d6178696d756d206d696e7420616d6f756e7420657863656564656400000000600082015250565b600061403a601c836130b3565b915061404582614004565b602082019050919050565b600060208201905081810360008301526140698161402d565b9050919050565b7f455243373231413a20617070726f766520746f2063616c6c6572000000000000600082015250565b60006140a6601a836130b3565b91506140b182614070565b602082019050919050565b600060208201905081810360008301526140d581614099565b9050919050565b7f455243373231413a207472616e7366657220746f206e6f6e204552433732315260008201527f6563656976657220696d706c656d656e74657200000000000000000000000000602082015250565b60006141386033836130b3565b9150614143826140dc565b604082019050919050565b600060208201905081810360008301526141678161412b565b9050919050565b7f4552433732314d657461646174613a20746f6b656e555249207175657269656460008201527f20666f72206e6f6e6578697374656e7420746f6b656e00000000000000000000602082015250565b60006141ca6036836130b3565b91506141d58261416e565b604082019050919050565b600060208201905081810360008301526141f9816141bd565b9050919050565b600081905092915050565b60008190508160005260206000209050919050565b6000815461422d816137cd565b6142378186614200565b94506001821660008114614252576001811461426357614296565b60ff19831686528186019350614296565b61426c8561420b565b60005b8381101561428e5781548189015260018201915060208101905061426f565b838801955050505b50505092915050565b60006142aa826130a8565b6142b48185614200565b93506142c48185602086016130c4565b80840191505092915050565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b6000614306600583614200565b9150614311826142d0565b600582019050919050565b60006143288285614220565b9150614334828461429f565b915061433f826142f9565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006143a76026836130b3565b91506143b28261434b565b604082019050919050565b600060208201905081810360008301526143d68161439a565b9050919050565b7f455243373231413a207472616e736665722063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b60006144396032836130b3565b9150614444826143dd565b604082019050919050565b600060208201905081810360008301526144688161442c565b9050919050565b7f455243373231413a207472616e736665722066726f6d20696e636f727265637460008201527f206f776e65720000000000000000000000000000000000000000000000000000602082015250565b60006144cb6026836130b3565b91506144d68261446f565b604082019050919050565b600060208201905081810360008301526144fa816144be565b9050919050565b7f455243373231413a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b600061455d6025836130b3565b915061456882614501565b604082019050919050565b6000602082019050818103600083015261458c81614550565b9050919050565b60006fffffffffffffffffffffffffffffffff82169050919050565b60006145ba82614593565b91506145c583614593565b9250828210156145d8576145d7613ab3565b5b828203905092915050565b60006145ee82614593565b91506145f983614593565b9250826fffffffffffffffffffffffffffffffff0382111561461e5761461d613ab3565b5b828201905092915050565b7f416d6f756e7420746f206d696e742063616e206e6f7420626520300000000000600082015250565b600061465f601b836130b3565b915061466a82614629565b602082019050919050565b6000602082019050818103600083015261468e81614652565b9050919050565b7f416d6f756e742073656e74206c657373207468616e2074686520636f7374206f60008201527f66206d696e74696e67204e465428732900000000000000000000000000000000602082015250565b60006146f16030836130b3565b91506146fc82614695565b604082019050919050565b60006020820190508181036000830152614720816146e4565b9050919050565b7f455243373231413a206f776e657220717565727920666f72206e6f6e6578697360008201527f74656e7420746f6b656e00000000000000000000000000000000000000000000602082015250565b6000614783602a836130b3565b915061478e82614727565b604082019050919050565b600060208201905081810360008301526147b281614776565b9050919050565b60006147c482613163565b915060008214156147d8576147d7613ab3565b5b600182039050919050565b7f455243373231413a20756e61626c6520746f2064657465726d696e652074686560008201527f206f776e6572206f6620746f6b656e0000000000000000000000000000000000602082015250565b600061483f602f836130b3565b915061484a826147e3565b604082019050919050565b6000602082019050818103600083015261486e81614832565b9050919050565b600081519050919050565b600082825260208201905092915050565b600061489c82614875565b6148a68185614880565b93506148b68185602086016130c4565b6148bf816130f7565b840191505092915050565b60006080820190506148df60008301876131f8565b6148ec60208301866131f8565b6148f9604083018561328e565b818103606083015261490b8184614891565b905095945050505050565b60008151905061492581613019565b92915050565b60006020828403121561494157614940612fe3565b5b600061494f84828501614916565b91505092915050565b600061496382613163565b915061496e83613163565b92508261497e5761497d613cff565b5b828206905092915050565b7f455243373231413a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b60006149e56021836130b3565b91506149f082614989565b604082019050919050565b60006020820190508181036000830152614a14816149d8565b9050919050565b7f455243373231413a20746f6b656e20616c7265616479206d696e746564000000600082015250565b6000614a51601d836130b3565b9150614a5c82614a1b565b602082019050919050565b60006020820190508181036000830152614a8081614a44565b9050919050565b7f455243373231413a207175616e7469747920746f206d696e7420746f6f20686960008201527f6768000000000000000000000000000000000000000000000000000000000000602082015250565b6000614ae36022836130b3565b9150614aee82614a87565b604082019050919050565b60006020820190508181036000830152614b1281614ad6565b905091905056fea2646970667358221220d99445281847e6c7328a3a38ccaa2073b6b0655f16ddbfed252eec62d7e0c93664736f6c634300080a0033

Deployed Bytecode

0x6080604052600436106101ee5760003560e01c80634f6ccce71161010d578063a0712d68116100a0578063d5abeb011161006f578063d5abeb01146106e1578063d7224ba01461070c578063e222c7f914610737578063e985e9c51461074e578063f2fde38b1461078b576101ee565b8063a0712d6814610636578063a22cb46514610652578063b88d4fde1461067b578063c87b56dd146106a4576101ee565b806370a08231116100dc57806370a082311461058c578063715018a6146105c95780638da5cb5b146105e057806395d89b411461060b576101ee565b80634f6ccce7146104be57806355f804b3146104fb5780636352211e146105245780636c0360eb14610561576101ee565b806323b872dd116101855780633ccfd60b116101545780633ccfd60b1461042557806342842e0e1461042f578063438b63001461045857806344a0d68a14610495576101ee565b806323b872dd1461036b5780632f745c591461039457806333bc1c5c146103d1578063375a069a146103fc576101ee565b8063095ea7b3116101c1578063095ea7b3146102c157806313faede6146102ea57806318160ddd14610315578063239c70ae14610340576101ee565b806301ffc9a7146101f357806306fdde0314610230578063081812fc1461025b578063088a4ed014610298575b600080fd5b3480156101ff57600080fd5b5061021a60048036038101906102159190613045565b6107b4565b604051610227919061308d565b60405180910390f35b34801561023c57600080fd5b506102456108fe565b6040516102529190613141565b60405180910390f35b34801561026757600080fd5b50610282600480360381019061027d9190613199565b610990565b60405161028f9190613207565b60405180910390f35b3480156102a457600080fd5b506102bf60048036038101906102ba9190613199565b610a15565b005b3480156102cd57600080fd5b506102e860048036038101906102e3919061324e565b610a9b565b005b3480156102f657600080fd5b506102ff610bb4565b60405161030c919061329d565b60405180910390f35b34801561032157600080fd5b5061032a610bba565b604051610337919061329d565b60405180910390f35b34801561034c57600080fd5b50610355610bc4565b604051610362919061329d565b60405180910390f35b34801561037757600080fd5b50610392600480360381019061038d91906132b8565b610bca565b005b3480156103a057600080fd5b506103bb60048036038101906103b6919061324e565b610bda565b6040516103c8919061329d565b60405180910390f35b3480156103dd57600080fd5b506103e6610dd8565b6040516103f3919061308d565b60405180910390f35b34801561040857600080fd5b50610423600480360381019061041e9190613199565b610deb565b005b61042d610edc565b005b34801561043b57600080fd5b50610456600480360381019061045191906132b8565b6110c9565b005b34801561046457600080fd5b5061047f600480360381019061047a919061330b565b6110e9565b60405161048c91906133f6565b60405180910390f35b3480156104a157600080fd5b506104bc60048036038101906104b79190613199565b611197565b005b3480156104ca57600080fd5b506104e560048036038101906104e09190613199565b61121d565b6040516104f2919061329d565b60405180910390f35b34801561050757600080fd5b50610522600480360381019061051d919061354d565b611270565b005b34801561053057600080fd5b5061054b60048036038101906105469190613199565b611306565b6040516105589190613207565b60405180910390f35b34801561056d57600080fd5b5061057661131c565b6040516105839190613141565b60405180910390f35b34801561059857600080fd5b506105b360048036038101906105ae919061330b565b6113aa565b6040516105c0919061329d565b60405180910390f35b3480156105d557600080fd5b506105de611493565b005b3480156105ec57600080fd5b506105f561151b565b6040516106029190613207565b60405180910390f35b34801561061757600080fd5b50610620611544565b60405161062d9190613141565b60405180910390f35b610650600480360381019061064b9190613199565b6115d6565b005b34801561065e57600080fd5b50610679600480360381019061067491906135c2565b6116df565b005b34801561068757600080fd5b506106a2600480360381019061069d91906136a3565b611860565b005b3480156106b057600080fd5b506106cb60048036038101906106c69190613199565b6118bc565b6040516106d89190613141565b60405180910390f35b3480156106ed57600080fd5b506106f6611964565b6040516107039190613743565b60405180910390f35b34801561071857600080fd5b50610721611978565b60405161072e919061329d565b60405180910390f35b34801561074357600080fd5b5061074c61197e565b005b34801561075a57600080fd5b506107756004803603810190610770919061375e565b611a26565b604051610782919061308d565b60405180910390f35b34801561079757600080fd5b506107b260048036038101906107ad919061330b565b611aba565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061087f57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806108e757507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806108f757506108f682611bb2565b5b9050919050565b60606002805461090d906137cd565b80601f0160208091040260200160405190810160405280929190818152602001828054610939906137cd565b80156109865780601f1061095b57610100808354040283529160200191610986565b820191906000526020600020905b81548152906001019060200180831161096957829003601f168201915b5050505050905090565b600061099b82611c1c565b6109da576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109d190613871565b60405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b610a1d611c2a565b73ffffffffffffffffffffffffffffffffffffffff16610a3b61151b565b73ffffffffffffffffffffffffffffffffffffffff1614610a91576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a88906138dd565b60405180910390fd5b80600d8190555050565b6000610aa682611306565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610b17576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b0e9061396f565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610b36611c2a565b73ffffffffffffffffffffffffffffffffffffffff161480610b655750610b6481610b5f611c2a565b611a26565b5b610ba4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b9b90613a01565b60405180910390fd5b610baf838383611c32565b505050565b600b5481565b6000600154905090565b600d5481565b610bd5838383611ce4565b505050565b6000610be5836113aa565b8210610c26576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c1d90613a93565b60405180910390fd5b6000610c30610bba565b905060008060005b83811015610d96576000600460008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614610d2a57806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610d825786841415610d73578195505050505050610dd2565b8380610d7e90613ae2565b9450505b508080610d8e90613ae2565b915050610c38565b506040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dc990613b9d565b60405180910390fd5b92915050565b600e60009054906101000a900460ff1681565b610df3611c2a565b73ffffffffffffffffffffffffffffffffffffffff16610e1161151b565b73ffffffffffffffffffffffffffffffffffffffff1614610e67576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e5e906138dd565b60405180910390fd5b600c60009054906101000a900461ffff1661ffff1681610e85610bba565b610e8f9190613bbd565b1115610ed0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ec790613c85565b60405180910390fd5b610ed98161229d565b50565b610ee4611c2a565b73ffffffffffffffffffffffffffffffffffffffff16610f0261151b565b73ffffffffffffffffffffffffffffffffffffffff1614610f58576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f4f906138dd565b60405180910390fd5b60004790506000606482600a610f6e9190613ca5565b610f789190613d2e565b90508082610f869190613d5f565b91506000734c024e66ceb1070e62eae797d79bb569965dfb7c905060003373ffffffffffffffffffffffffffffffffffffffff1684604051610fc790613dc4565b60006040518083038185875af1925050503d8060008114611004576040519150601f19603f3d011682016040523d82523d6000602084013e611009565b606091505b5050905060008273ffffffffffffffffffffffffffffffffffffffff168460405161103390613dc4565b60006040518083038185875af1925050503d8060008114611070576040519150601f19603f3d011682016040523d82523d6000602084013e611075565b606091505b505090508180156110835750805b6110c2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110b990613e25565b60405180910390fd5b5050505050565b6110e483838360405180602001604052806000815250611860565b505050565b606060006110f6836113aa565b905060008167ffffffffffffffff81111561111457611113613422565b5b6040519080825280602002602001820160405280156111425781602001602082028036833780820191505090505b50905060005b8281101561118c5761115a8582610bda565b82828151811061116d5761116c613e45565b5b602002602001018181525050808061118490613ae2565b915050611148565b508092505050919050565b61119f611c2a565b73ffffffffffffffffffffffffffffffffffffffff166111bd61151b565b73ffffffffffffffffffffffffffffffffffffffff1614611213576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161120a906138dd565b60405180910390fd5b80600b8190555050565b6000611227610bba565b8210611268576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161125f90613ee6565b60405180910390fd5b819050919050565b611278611c2a565b73ffffffffffffffffffffffffffffffffffffffff1661129661151b565b73ffffffffffffffffffffffffffffffffffffffff16146112ec576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112e3906138dd565b60405180910390fd5b80600a9080519060200190611302929190612efc565b5050565b60006113118261238d565b600001519050919050565b600a8054611329906137cd565b80601f0160208091040260200160405190810160405280929190818152602001828054611355906137cd565b80156113a25780601f10611377576101008083540402835291602001916113a2565b820191906000526020600020905b81548152906001019060200180831161138557829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561141b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161141290613f78565b60405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b61149b611c2a565b73ffffffffffffffffffffffffffffffffffffffff166114b961151b565b73ffffffffffffffffffffffffffffffffffffffff161461150f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611506906138dd565b60405180910390fd5b6115196000612590565b565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060038054611553906137cd565b80601f016020809104026020016040519081016040528092919081815260200182805461157f906137cd565b80156115cc5780601f106115a1576101008083540402835291602001916115cc565b820191906000526020600020905b8154815290600101906020018083116115af57829003601f168201915b5050505050905090565b600e60009054906101000a900460ff16611625576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161161c90613fe4565b60405180910390fd5b600d5481111561166a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161166190614050565b60405180910390fd5b600c60009054906101000a900461ffff1661ffff1681611688610bba565b6116929190613bbd565b11156116d3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116ca90613c85565b60405180910390fd5b6116dc8161229d565b50565b6116e7611c2a565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611755576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161174c906140bc565b60405180910390fd5b8060076000611762611c2a565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661180f611c2a565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611854919061308d565b60405180910390a35050565b61186b848484611ce4565b61187784848484612654565b6118b6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118ad9061414e565b60405180910390fd5b50505050565b60606118c782611c1c565b611906576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118fd906141e0565b60405180910390fd5b60006119106127dc565b90506000815111611930576040518060200160405280600081525061195c565b600a61193b8461286e565b60405160200161194c92919061431c565b6040516020818303038152906040525b915050919050565b600c60009054906101000a900461ffff1681565b60085481565b611986611c2a565b73ffffffffffffffffffffffffffffffffffffffff166119a461151b565b73ffffffffffffffffffffffffffffffffffffffff16146119fa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119f1906138dd565b60405180910390fd5b600e60009054906101000a900460ff1615600e60006101000a81548160ff021916908315150217905550565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611ac2611c2a565b73ffffffffffffffffffffffffffffffffffffffff16611ae061151b565b73ffffffffffffffffffffffffffffffffffffffff1614611b36576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b2d906138dd565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611ba6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b9d906143bd565b60405180910390fd5b611baf81612590565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600060015482109050919050565b600033905090565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b6000611cef8261238d565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff16611d16611c2a565b73ffffffffffffffffffffffffffffffffffffffff161480611d725750611d3b611c2a565b73ffffffffffffffffffffffffffffffffffffffff16611d5a84610990565b73ffffffffffffffffffffffffffffffffffffffff16145b80611d8e5750611d8d8260000151611d88611c2a565b611a26565b5b905080611dd0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dc79061444f565b60405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff1614611e42576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e39906144e1565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611eb2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ea990614573565b60405180910390fd5b611ebf85858560016129cf565b611ecf6000848460000151611c32565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff16611f3d91906145af565b92506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff16611fe191906145e3565b92506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060405180604001604052808573ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506004600085815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555090505060006001846120e79190613bbd565b9050600073ffffffffffffffffffffffffffffffffffffffff166004600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16141561222d5761215d81611c1c565b1561222c576040518060400160405280846000015173ffffffffffffffffffffffffffffffffffffffff168152602001846020015167ffffffffffffffff168152506004600083815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055509050505b5b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461229586868660016129d5565b505050505050565b600081116122e0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122d790614675565b60405180910390fd5b6122e861151b565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161415801561232a575060c8612328610bba565b115b156123805780600b5461233d9190613ca5565b34101561237f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161237690614707565b60405180910390fd5b5b61238a33826129db565b50565b612395612f82565b61239e82611c1c565b6123dd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123d490614799565b60405180910390fd5b60007f000000000000000000000000000000000000000000000000000000000000001483106124415760017f0000000000000000000000000000000000000000000000000000000000000014846124349190613d5f565b61243e9190613bbd565b90505b60008390505b81811061254f576000600460008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461253b5780935050505061258b565b508080612547906147b9565b915050612447565b506040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161258290614855565b60405180910390fd5b919050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60006126758473ffffffffffffffffffffffffffffffffffffffff166129f9565b156127cf578373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261269e611c2a565b8786866040518563ffffffff1660e01b81526004016126c094939291906148ca565b6020604051808303816000875af19250505080156126fc57506040513d601f19601f820116820180604052508101906126f9919061492b565b60015b61277f573d806000811461272c576040519150601f19603f3d011682016040523d82523d6000602084013e612731565b606091505b50600081511415612777576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161276e9061414e565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506127d4565b600190505b949350505050565b6060600a80546127eb906137cd565b80601f0160208091040260200160405190810160405280929190818152602001828054612817906137cd565b80156128645780601f1061283957610100808354040283529160200191612864565b820191906000526020600020905b81548152906001019060200180831161284757829003601f168201915b5050505050905090565b606060008214156128b6576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506129ca565b600082905060005b600082146128e85780806128d190613ae2565b915050600a826128e19190613d2e565b91506128be565b60008167ffffffffffffffff81111561290457612903613422565b5b6040519080825280601f01601f1916602001820160405280156129365781602001600182028036833780820191505090505b5090505b600085146129c35760018261294f9190613d5f565b9150600a8561295e9190614958565b603061296a9190613bbd565b60f81b8183815181106129805761297f613e45565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856129bc9190613d2e565b945061293a565b8093505050505b919050565b50505050565b50505050565b6129f5828260405180602001604052806000815250612a1c565b5050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60006001549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612a93576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a8a906149fb565b60405180910390fd5b612a9c81611c1c565b15612adc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ad390614a67565b60405180910390fd5b7f0000000000000000000000000000000000000000000000000000000000000014831115612b3f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b3690614af9565b60405180910390fd5b612b4c60008583866129cf565b6000600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206040518060400160405290816000820160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff1681526020016000820160109054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff168152505090506040518060400160405280858360000151612c4991906145e3565b6fffffffffffffffffffffffffffffffff168152602001858360200151612c7091906145e3565b6fffffffffffffffffffffffffffffffff16815250600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008201518160000160006101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060208201518160000160106101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555090505060405180604001604052808673ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506004600084815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550905050600082905060005b85811015612edf57818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612e7f6000888488612654565b612ebe576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612eb59061414e565b60405180910390fd5b8180612ec990613ae2565b9250508080612ed790613ae2565b915050612e0e565b5080600181905550612ef460008785886129d5565b505050505050565b828054612f08906137cd565b90600052602060002090601f016020900481019282612f2a5760008555612f71565b82601f10612f4357805160ff1916838001178555612f71565b82800160010185558215612f71579182015b82811115612f70578251825591602001919060010190612f55565b5b509050612f7e9190612fbc565b5090565b6040518060400160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681525090565b5b80821115612fd5576000816000905550600101612fbd565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b61302281612fed565b811461302d57600080fd5b50565b60008135905061303f81613019565b92915050565b60006020828403121561305b5761305a612fe3565b5b600061306984828501613030565b91505092915050565b60008115159050919050565b61308781613072565b82525050565b60006020820190506130a2600083018461307e565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156130e25780820151818401526020810190506130c7565b838111156130f1576000848401525b50505050565b6000601f19601f8301169050919050565b6000613113826130a8565b61311d81856130b3565b935061312d8185602086016130c4565b613136816130f7565b840191505092915050565b6000602082019050818103600083015261315b8184613108565b905092915050565b6000819050919050565b61317681613163565b811461318157600080fd5b50565b6000813590506131938161316d565b92915050565b6000602082840312156131af576131ae612fe3565b5b60006131bd84828501613184565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006131f1826131c6565b9050919050565b613201816131e6565b82525050565b600060208201905061321c60008301846131f8565b92915050565b61322b816131e6565b811461323657600080fd5b50565b60008135905061324881613222565b92915050565b6000806040838503121561326557613264612fe3565b5b600061327385828601613239565b925050602061328485828601613184565b9150509250929050565b61329781613163565b82525050565b60006020820190506132b2600083018461328e565b92915050565b6000806000606084860312156132d1576132d0612fe3565b5b60006132df86828701613239565b93505060206132f086828701613239565b925050604061330186828701613184565b9150509250925092565b60006020828403121561332157613320612fe3565b5b600061332f84828501613239565b91505092915050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b61336d81613163565b82525050565b600061337f8383613364565b60208301905092915050565b6000602082019050919050565b60006133a382613338565b6133ad8185613343565b93506133b883613354565b8060005b838110156133e95781516133d08882613373565b97506133db8361338b565b9250506001810190506133bc565b5085935050505092915050565b600060208201905081810360008301526134108184613398565b905092915050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b61345a826130f7565b810181811067ffffffffffffffff8211171561347957613478613422565b5b80604052505050565b600061348c612fd9565b90506134988282613451565b919050565b600067ffffffffffffffff8211156134b8576134b7613422565b5b6134c1826130f7565b9050602081019050919050565b82818337600083830152505050565b60006134f06134eb8461349d565b613482565b90508281526020810184848401111561350c5761350b61341d565b5b6135178482856134ce565b509392505050565b600082601f83011261353457613533613418565b5b81356135448482602086016134dd565b91505092915050565b60006020828403121561356357613562612fe3565b5b600082013567ffffffffffffffff81111561358157613580612fe8565b5b61358d8482850161351f565b91505092915050565b61359f81613072565b81146135aa57600080fd5b50565b6000813590506135bc81613596565b92915050565b600080604083850312156135d9576135d8612fe3565b5b60006135e785828601613239565b92505060206135f8858286016135ad565b9150509250929050565b600067ffffffffffffffff82111561361d5761361c613422565b5b613626826130f7565b9050602081019050919050565b600061364661364184613602565b613482565b9050828152602081018484840111156136625761366161341d565b5b61366d8482856134ce565b509392505050565b600082601f83011261368a57613689613418565b5b813561369a848260208601613633565b91505092915050565b600080600080608085870312156136bd576136bc612fe3565b5b60006136cb87828801613239565b94505060206136dc87828801613239565b93505060406136ed87828801613184565b925050606085013567ffffffffffffffff81111561370e5761370d612fe8565b5b61371a87828801613675565b91505092959194509250565b600061ffff82169050919050565b61373d81613726565b82525050565b60006020820190506137586000830184613734565b92915050565b6000806040838503121561377557613774612fe3565b5b600061378385828601613239565b925050602061379485828601613239565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806137e557607f821691505b602082108114156137f9576137f861379e565b5b50919050565b7f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560008201527f78697374656e7420746f6b656e00000000000000000000000000000000000000602082015250565b600061385b602d836130b3565b9150613866826137ff565b604082019050919050565b6000602082019050818103600083015261388a8161384e565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006138c76020836130b3565b91506138d282613891565b602082019050919050565b600060208201905081810360008301526138f6816138ba565b9050919050565b7f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60008201527f6572000000000000000000000000000000000000000000000000000000000000602082015250565b60006139596022836130b3565b9150613964826138fd565b604082019050919050565b600060208201905081810360008301526139888161394c565b9050919050565b7f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000602082015250565b60006139eb6039836130b3565b91506139f68261398f565b604082019050919050565b60006020820190508181036000830152613a1a816139de565b9050919050565b7f455243373231413a206f776e657220696e646578206f7574206f6620626f756e60008201527f6473000000000000000000000000000000000000000000000000000000000000602082015250565b6000613a7d6022836130b3565b9150613a8882613a21565b604082019050919050565b60006020820190508181036000830152613aac81613a70565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000613aed82613163565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613b2057613b1f613ab3565b5b600182019050919050565b7f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060008201527f6f776e657220627920696e646578000000000000000000000000000000000000602082015250565b6000613b87602e836130b3565b9150613b9282613b2b565b604082019050919050565b60006020820190508181036000830152613bb681613b7a565b9050919050565b6000613bc882613163565b9150613bd383613163565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613c0857613c07613ab3565b5b828201905092915050565b7f507572636861736520776f756c6420657863656564206d617820737570706c7960008201527f206f66204e465400000000000000000000000000000000000000000000000000602082015250565b6000613c6f6027836130b3565b9150613c7a82613c13565b604082019050919050565b60006020820190508181036000830152613c9e81613c62565b9050919050565b6000613cb082613163565b9150613cbb83613163565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613cf457613cf3613ab3565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000613d3982613163565b9150613d4483613163565b925082613d5457613d53613cff565b5b828204905092915050565b6000613d6a82613163565b9150613d7583613163565b925082821015613d8857613d87613ab3565b5b828203905092915050565b600081905092915050565b50565b6000613dae600083613d93565b9150613db982613d9e565b600082019050919050565b6000613dcf82613da1565b9150819050919050565b7f556e61626c6520746f2077697468647261772062616c616e6365000000000000600082015250565b6000613e0f601a836130b3565b9150613e1a82613dd9565b602082019050919050565b60006020820190508181036000830152613e3e81613e02565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f7560008201527f6e64730000000000000000000000000000000000000000000000000000000000602082015250565b6000613ed06023836130b3565b9150613edb82613e74565b604082019050919050565b60006020820190508181036000830152613eff81613ec3565b9050919050565b7f455243373231413a2062616c616e636520717565727920666f7220746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b6000613f62602b836130b3565b9150613f6d82613f06565b604082019050919050565b60006020820190508181036000830152613f9181613f55565b9050919050565b7f4d696e74696e672063757272656e746c79206f6e20686f6c6400000000000000600082015250565b6000613fce6019836130b3565b9150613fd982613f98565b602082019050919050565b60006020820190508181036000830152613ffd81613fc1565b9050919050565b7f4d6178696d756d206d696e7420616d6f756e7420657863656564656400000000600082015250565b600061403a601c836130b3565b915061404582614004565b602082019050919050565b600060208201905081810360008301526140698161402d565b9050919050565b7f455243373231413a20617070726f766520746f2063616c6c6572000000000000600082015250565b60006140a6601a836130b3565b91506140b182614070565b602082019050919050565b600060208201905081810360008301526140d581614099565b9050919050565b7f455243373231413a207472616e7366657220746f206e6f6e204552433732315260008201527f6563656976657220696d706c656d656e74657200000000000000000000000000602082015250565b60006141386033836130b3565b9150614143826140dc565b604082019050919050565b600060208201905081810360008301526141678161412b565b9050919050565b7f4552433732314d657461646174613a20746f6b656e555249207175657269656460008201527f20666f72206e6f6e6578697374656e7420746f6b656e00000000000000000000602082015250565b60006141ca6036836130b3565b91506141d58261416e565b604082019050919050565b600060208201905081810360008301526141f9816141bd565b9050919050565b600081905092915050565b60008190508160005260206000209050919050565b6000815461422d816137cd565b6142378186614200565b94506001821660008114614252576001811461426357614296565b60ff19831686528186019350614296565b61426c8561420b565b60005b8381101561428e5781548189015260018201915060208101905061426f565b838801955050505b50505092915050565b60006142aa826130a8565b6142b48185614200565b93506142c48185602086016130c4565b80840191505092915050565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b6000614306600583614200565b9150614311826142d0565b600582019050919050565b60006143288285614220565b9150614334828461429f565b915061433f826142f9565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006143a76026836130b3565b91506143b28261434b565b604082019050919050565b600060208201905081810360008301526143d68161439a565b9050919050565b7f455243373231413a207472616e736665722063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b60006144396032836130b3565b9150614444826143dd565b604082019050919050565b600060208201905081810360008301526144688161442c565b9050919050565b7f455243373231413a207472616e736665722066726f6d20696e636f727265637460008201527f206f776e65720000000000000000000000000000000000000000000000000000602082015250565b60006144cb6026836130b3565b91506144d68261446f565b604082019050919050565b600060208201905081810360008301526144fa816144be565b9050919050565b7f455243373231413a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b600061455d6025836130b3565b915061456882614501565b604082019050919050565b6000602082019050818103600083015261458c81614550565b9050919050565b60006fffffffffffffffffffffffffffffffff82169050919050565b60006145ba82614593565b91506145c583614593565b9250828210156145d8576145d7613ab3565b5b828203905092915050565b60006145ee82614593565b91506145f983614593565b9250826fffffffffffffffffffffffffffffffff0382111561461e5761461d613ab3565b5b828201905092915050565b7f416d6f756e7420746f206d696e742063616e206e6f7420626520300000000000600082015250565b600061465f601b836130b3565b915061466a82614629565b602082019050919050565b6000602082019050818103600083015261468e81614652565b9050919050565b7f416d6f756e742073656e74206c657373207468616e2074686520636f7374206f60008201527f66206d696e74696e67204e465428732900000000000000000000000000000000602082015250565b60006146f16030836130b3565b91506146fc82614695565b604082019050919050565b60006020820190508181036000830152614720816146e4565b9050919050565b7f455243373231413a206f776e657220717565727920666f72206e6f6e6578697360008201527f74656e7420746f6b656e00000000000000000000000000000000000000000000602082015250565b6000614783602a836130b3565b915061478e82614727565b604082019050919050565b600060208201905081810360008301526147b281614776565b9050919050565b60006147c482613163565b915060008214156147d8576147d7613ab3565b5b600182039050919050565b7f455243373231413a20756e61626c6520746f2064657465726d696e652074686560008201527f206f776e6572206f6620746f6b656e0000000000000000000000000000000000602082015250565b600061483f602f836130b3565b915061484a826147e3565b604082019050919050565b6000602082019050818103600083015261486e81614832565b9050919050565b600081519050919050565b600082825260208201905092915050565b600061489c82614875565b6148a68185614880565b93506148b68185602086016130c4565b6148bf816130f7565b840191505092915050565b60006080820190506148df60008301876131f8565b6148ec60208301866131f8565b6148f9604083018561328e565b818103606083015261490b8184614891565b905095945050505050565b60008151905061492581613019565b92915050565b60006020828403121561494157614940612fe3565b5b600061494f84828501614916565b91505092915050565b600061496382613163565b915061496e83613163565b92508261497e5761497d613cff565b5b828206905092915050565b7f455243373231413a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b60006149e56021836130b3565b91506149f082614989565b604082019050919050565b60006020820190508181036000830152614a14816149d8565b9050919050565b7f455243373231413a20746f6b656e20616c7265616479206d696e746564000000600082015250565b6000614a51601d836130b3565b9150614a5c82614a1b565b602082019050919050565b60006020820190508181036000830152614a8081614a44565b9050919050565b7f455243373231413a207175616e7469747920746f206d696e7420746f6f20686960008201527f6768000000000000000000000000000000000000000000000000000000000000602082015250565b6000614ae36022836130b3565b9150614aee82614a87565b604082019050919050565b60006020820190508181036000830152614b1281614ad6565b905091905056fea2646970667358221220d99445281847e6c7328a3a38ccaa2073b6b0655f16ddbfed252eec62d7e0c93664736f6c634300080a0033

Deployed Bytecode Sourcemap

42712:3053:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27804:370;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29530:94;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31055:204;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44976:118;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;30618:379;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;42900:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26365:94;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42976:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31905:142;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;26996:744;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43013:29;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44682:196;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;45314:446;;;:::i;:::-;;32110:157;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;43923:357;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44886:82;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;26528:177;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45102:106;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;29353:118;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42812:55;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28230:211;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41819:103;;;;;;;;;;;;;:::i;:::-;;41168:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29685:98;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43238:328;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;31323:274;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;32330:311;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;44288:363;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42939:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36745:43;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45216:90;;;;;;;;;;;;;:::i;:::-;;31660:186;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42077:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;27804:370;27931:4;27976:25;27961:40;;;:11;:40;;;;:99;;;;28027:33;28012:48;;;:11;:48;;;;27961:99;:160;;;;28086:35;28071:50;;;:11;:50;;;;27961:160;:207;;;;28132:36;28156:11;28132:23;:36::i;:::-;27961:207;27947:221;;27804:370;;;:::o;29530:94::-;29584:13;29613:5;29606:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29530:94;:::o;31055:204::-;31123:7;31147:16;31155:7;31147;:16::i;:::-;31139:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;31229:15;:24;31245:7;31229:24;;;;;;;;;;;;;;;;;;;;;31222:31;;31055:204;;;:::o;44976:118::-;41399:12;:10;:12::i;:::-;41388:23;;:7;:5;:7::i;:::-;:23;;;41380:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;45072:14:::1;45056:13;:30;;;;44976:118:::0;:::o;30618:379::-;30687:13;30703:24;30719:7;30703:15;:24::i;:::-;30687:40;;30748:5;30742:11;;:2;:11;;;;30734:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;30833:5;30817:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;30842:37;30859:5;30866:12;:10;:12::i;:::-;30842:16;:37::i;:::-;30817:62;30801:153;;;;;;;;;;;;:::i;:::-;;;;;;;;;30963:28;30972:2;30976:7;30985:5;30963:8;:28::i;:::-;30680:317;30618:379;;:::o;42900:32::-;;;;:::o;26365:94::-;26418:7;26441:12;;26434:19;;26365:94;:::o;42976:30::-;;;;:::o;31905:142::-;32013:28;32023:4;32029:2;32033:7;32013:9;:28::i;:::-;31905:142;;;:::o;26996:744::-;27105:7;27140:16;27150:5;27140:9;:16::i;:::-;27132:5;:24;27124:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;27202:22;27227:13;:11;:13::i;:::-;27202:38;;27247:19;27277:25;27327:9;27322:350;27346:14;27342:1;:18;27322:350;;;27376:31;27410:11;:14;27422:1;27410:14;;;;;;;;;;;27376:48;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27463:1;27437:28;;:9;:14;;;:28;;;27433:89;;27498:9;:14;;;27478:34;;27433:89;27555:5;27534:26;;:17;:26;;;27530:135;;;27592:5;27577:11;:20;27573:59;;;27619:1;27612:8;;;;;;;;;27573:59;27642:13;;;;;:::i;:::-;;;;27530:135;27367:305;27362:3;;;;;:::i;:::-;;;;27322:350;;;;27678:56;;;;;;;;;;:::i;:::-;;;;;;;;26996:744;;;;;:::o;43013:29::-;;;;;;;;;;;;;:::o;44682:196::-;41399:12;:10;:12::i;:::-;41388:23;;:7;:5;:7::i;:::-;:23;;;41380:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;44788:9:::1;;;;;;;;;;;44757:40;;44773:11;44757:13;:11;:13::i;:::-;:27;;;;:::i;:::-;:40;;44749:92;;;;;;;;;;;;:::i;:::-;;;;;;;;;44852:18;44858:11;44852:5;:18::i;:::-;44682:196:::0;:::o;45314:446::-;41399:12;:10;:12::i;:::-;41388:23;;:7;:5;:7::i;:::-;:23;;;41380:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;45372:12:::1;45387:21;45372:36;;45419:8;45445:3;45436:7;45431:2;:12;;;;:::i;:::-;45430:18;;;;:::i;:::-;45419:29;;45470:3;45459:14;;;;;:::i;:::-;;;45484:18;45505:42;45484:63;;45559:12;45584:10;45576:24;;45609:7;45576:45;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45558:63;;;45633:13;45651:10;:15;;45675:3;45651:32;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45632:51;;;45702:7;:19;;;;;45713:8;45702:19;45694:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;45361:399;;;;;45314:446::o:0;32110:157::-;32222:39;32239:4;32245:2;32249:7;32222:39;;;;;;;;;;;;:16;:39::i;:::-;32110:157;;;:::o;43923:357::-;43983:16;44011:23;44037:17;44047:6;44037:9;:17::i;:::-;44011:43;;44065:25;44107:15;44093:30;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44065:58;;44139:9;44134:113;44154:15;44150:1;:19;44134:113;;;44205:30;44225:6;44233:1;44205:19;:30::i;:::-;44191:8;44200:1;44191:11;;;;;;;;:::i;:::-;;;;;;;:44;;;;;44171:3;;;;;:::i;:::-;;;;44134:113;;;;44264:8;44257:15;;;;43923:357;;;:::o;44886:82::-;41399:12;:10;:12::i;:::-;41388:23;;:7;:5;:7::i;:::-;:23;;;41380:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;44955:5:::1;44948:4;:12;;;;44886:82:::0;:::o;26528:177::-;26595:7;26627:13;:11;:13::i;:::-;26619:5;:21;26611:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;26694:5;26687:12;;26528:177;;;:::o;45102:106::-;41399:12;:10;:12::i;:::-;41388:23;;:7;:5;:7::i;:::-;:23;;;41380:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;45189:11:::1;45179:7;:21;;;;;;;;;;;;:::i;:::-;;45102:106:::0;:::o;29353:118::-;29417:7;29440:20;29452:7;29440:11;:20::i;:::-;:25;;;29433:32;;29353:118;;;:::o;42812:55::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;28230:211::-;28294:7;28335:1;28318:19;;:5;:19;;;;28310:75;;;;;;;;;;;;:::i;:::-;;;;;;;;;28407:12;:19;28420:5;28407:19;;;;;;;;;;;;;;;:27;;;;;;;;;;;;28399:36;;28392:43;;28230:211;;;:::o;41819:103::-;41399:12;:10;:12::i;:::-;41388:23;;:7;:5;:7::i;:::-;:23;;;41380:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;41884:30:::1;41911:1;41884:18;:30::i;:::-;41819:103::o:0;41168:87::-;41214:7;41241:6;;;;;;;;;;;41234:13;;41168:87;:::o;29685:98::-;29741:13;29770:7;29763:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29685:98;:::o;43238:328::-;43306:10;;;;;;;;;;;43298:48;;;;;;;;;;;;:::i;:::-;;;;;;;;;43380:13;;43365:11;:28;;43357:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;43476:9;;;;;;;;;;;43445:40;;43461:11;43445:13;:11;:13::i;:::-;:27;;;;:::i;:::-;:40;;43437:92;;;;;;;;;;;;:::i;:::-;;;;;;;;;43540:18;43546:11;43540:5;:18::i;:::-;43238:328;:::o;31323:274::-;31426:12;:10;:12::i;:::-;31414:24;;:8;:24;;;;31406:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;31523:8;31478:18;:32;31497:12;:10;:12::i;:::-;31478:32;;;;;;;;;;;;;;;:42;31511:8;31478:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;31572:8;31543:48;;31558:12;:10;:12::i;:::-;31543:48;;;31582:8;31543:48;;;;;;:::i;:::-;;;;;;;;31323:274;;:::o;32330:311::-;32467:28;32477:4;32483:2;32487:7;32467:9;:28::i;:::-;32518:48;32541:4;32547:2;32551:7;32560:5;32518:22;:48::i;:::-;32502:133;;;;;;;;;;;;:::i;:::-;;;;;;;;;32330:311;;;;:::o;44288:363::-;44361:13;44396:16;44404:7;44396;:16::i;:::-;44388:83;;;;;;;;;;;;:::i;:::-;;;;;;;;;44482:28;44513:10;:8;:10::i;:::-;44482:41;;44572:1;44547:14;44541:28;:32;:102;;;;;;;;;;;;;;;;;44600:7;44609:18;:7;:16;:18::i;:::-;44583:54;;;;;;;;;:::i;:::-;;;;;;;;;;;;;44541:102;44534:109;;;44288:363;;;:::o;42939:30::-;;;;;;;;;;;;;:::o;36745:43::-;;;;:::o;45216:90::-;41399:12;:10;:12::i;:::-;41388:23;;:7;:5;:7::i;:::-;:23;;;41380:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;45288:10:::1;;;;;;;;;;;45287:11;45274:10;;:24;;;;;;;;;;;;;;;;;;45216:90::o:0;31660:186::-;31782:4;31805:18;:25;31824:5;31805:25;;;;;;;;;;;;;;;:35;31831:8;31805:35;;;;;;;;;;;;;;;;;;;;;;;;;31798:42;;31660:186;;;;:::o;42077:201::-;41399:12;:10;:12::i;:::-;41388:23;;:7;:5;:7::i;:::-;:23;;;41380:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;42186:1:::1;42166:22;;:8;:22;;;;42158:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;42242:28;42261:8;42242:18;:28::i;:::-;42077:201:::0;:::o;13463:157::-;13548:4;13587:25;13572:40;;;:11;:40;;;;13565:47;;13463:157;;;:::o;32880:105::-;32937:4;32967:12;;32957:7;:22;32950:29;;32880:105;;;:::o;23835:98::-;23888:7;23915:10;23908:17;;23835:98;:::o;36567:172::-;36691:2;36664:15;:24;36680:7;36664:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;36725:7;36721:2;36705:28;;36714:5;36705:28;;;;;;;;;;;;36567:172;;;:::o;34932:1529::-;35029:35;35067:20;35079:7;35067:11;:20::i;:::-;35029:58;;35096:22;35138:13;:18;;;35122:34;;:12;:10;:12::i;:::-;:34;;;:81;;;;35191:12;:10;:12::i;:::-;35167:36;;:20;35179:7;35167:11;:20::i;:::-;:36;;;35122:81;:142;;;;35214:50;35231:13;:18;;;35251:12;:10;:12::i;:::-;35214:16;:50::i;:::-;35122:142;35096:169;;35290:17;35274:101;;;;;;;;;;;;:::i;:::-;;;;;;;;;35422:4;35400:26;;:13;:18;;;:26;;;35384:98;;;;;;;;;;;;:::i;:::-;;;;;;;;;35511:1;35497:16;;:2;:16;;;;35489:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;35564:43;35586:4;35592:2;35596:7;35605:1;35564:21;:43::i;:::-;35664:49;35681:1;35685:7;35694:13;:18;;;35664:8;:49::i;:::-;35752:1;35722:12;:18;35735:4;35722:18;;;;;;;;;;;;;;;:26;;;:31;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;35788:1;35760:12;:16;35773:2;35760:16;;;;;;;;;;;;;;;:24;;;:29;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;35819:43;;;;;;;;35834:2;35819:43;;;;;;35845:15;35819:43;;;;;35796:11;:20;35808:7;35796:20;;;;;;;;;;;:66;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36090:19;36122:1;36112:7;:11;;;;:::i;:::-;36090:33;;36175:1;36134:43;;:11;:24;36146:11;36134:24;;;;;;;;;;;:29;;;;;;;;;;;;:43;;;36130:236;;;36192:20;36200:11;36192:7;:20::i;:::-;36188:171;;;36252:97;;;;;;;;36279:13;:18;;;36252:97;;;;;;36310:13;:28;;;36252:97;;;;;36225:11;:24;36237:11;36225:24;;;;;;;;;;;:124;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36188:171;36130:236;36398:7;36394:2;36379:27;;36388:4;36379:27;;;;;;;;;;;;36413:42;36434:4;36440:2;36444:7;36453:1;36413:20;:42::i;:::-;35022:1439;;;34932:1529;;;:::o;43574:341::-;43648:1;43634:11;:15;43626:55;;;;;;;;;;;;:::i;:::-;;;;;;;;;43710:7;:5;:7::i;:::-;43696:21;;:10;:21;;;;:46;;;;;43738:3;43722:13;:11;:13::i;:::-;:19;43696:46;43692:171;;;43787:11;43780:4;;:18;;;;:::i;:::-;43767:9;:31;;43759:92;;;;;;;;;;;;:::i;:::-;;;;;;;;;43692:171;43873:34;43883:10;43895:11;43873:9;:34::i;:::-;43574:341;:::o;28693:606::-;28769:21;;:::i;:::-;28810:16;28818:7;28810;:16::i;:::-;28802:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;28882:26;28930:12;28919:7;:23;28915:93;;28999:1;28984:12;28974:7;:22;;;;:::i;:::-;:26;;;;:::i;:::-;28953:47;;28915:93;29021:12;29036:7;29021:22;;29016:212;29053:18;29045:4;:26;29016:212;;29090:31;29124:11;:17;29136:4;29124:17;;;;;;;;;;;29090:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29180:1;29154:28;;:9;:14;;;:28;;;29150:71;;29202:9;29195:16;;;;;;;29150:71;29081:147;29073:6;;;;;:::i;:::-;;;;29016:212;;;;29236:57;;;;;;;;;;:::i;:::-;;;;;;;;28693:606;;;;:::o;42438:191::-;42512:16;42531:6;;;;;;;;;;;42512:25;;42557:8;42548:6;;:17;;;;;;;;;;;;;;;;;;42612:8;42581:40;;42602:8;42581:40;;;;;;;;;;;;42501:128;42438:191;:::o;38282:690::-;38419:4;38436:15;:2;:13;;;:15::i;:::-;38432:535;;;38491:2;38475:36;;;38512:12;:10;:12::i;:::-;38526:4;38532:7;38541:5;38475:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;38462:464;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38723:1;38706:6;:13;:18;38702:215;;;38739:61;;;;;;;;;;:::i;:::-;;;;;;;;38702:215;38885:6;38879:13;38870:6;38866:2;38862:15;38855:38;38462:464;38607:45;;;38597:55;;;:6;:55;;;;38590:62;;;;;38432:535;38955:4;38948:11;;38282:690;;;;;;;:::o;43123:107::-;43183:13;43215:7;43208:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43123:107;:::o;365:723::-;421:13;651:1;642:5;:10;638:53;;;669:10;;;;;;;;;;;;;;;;;;;;;638:53;701:12;716:5;701:20;;732:14;757:78;772:1;764:4;:9;757:78;;790:8;;;;;:::i;:::-;;;;821:2;813:10;;;;;:::i;:::-;;;757:78;;;845:19;877:6;867:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;845:39;;895:154;911:1;902:5;:10;895:154;;939:1;929:11;;;;;:::i;:::-;;;1006:2;998:5;:10;;;;:::i;:::-;985:2;:24;;;;:::i;:::-;972:39;;955:6;962;955:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;1035:2;1026:11;;;;;:::i;:::-;;;895:154;;;1073:6;1059:21;;;;;365:723;;;;:::o;39434:141::-;;;;;:::o;39961:140::-;;;;;:::o;32991:98::-;33056:27;33066:2;33070:8;33056:27;;;;;;;;;;;;:9;:27::i;:::-;32991:98;;:::o;3357:326::-;3417:4;3674:1;3652:7;:19;;;:23;3645:30;;3357:326;;;:::o;33428:1272::-;33533:20;33556:12;;33533:35;;33597:1;33583:16;;:2;:16;;;;33575:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;33774:21;33782:12;33774:7;:21::i;:::-;33773:22;33765:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;33856:12;33844:8;:24;;33836:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;33916:61;33946:1;33950:2;33954:12;33968:8;33916:21;:61::i;:::-;33986:30;34019:12;:16;34032:2;34019:16;;;;;;;;;;;;;;;33986:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34061:119;;;;;;;;34111:8;34081:11;:19;;;:39;;;;:::i;:::-;34061:119;;;;;;34164:8;34129:11;:24;;;:44;;;;:::i;:::-;34061:119;;;;;34042:12;:16;34055:2;34042:16;;;;;;;;;;;;;;;:138;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34215:43;;;;;;;;34230:2;34215:43;;;;;;34241:15;34215:43;;;;;34187:11;:25;34199:12;34187:25;;;;;;;;;;;:71;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34267:20;34290:12;34267:35;;34316:9;34311:281;34335:8;34331:1;:12;34311:281;;;34389:12;34385:2;34364:38;;34381:1;34364:38;;;;;;;;;;;;34429:59;34460:1;34464:2;34468:12;34482:5;34429:22;:59::i;:::-;34411:150;;;;;;;;;;;;:::i;:::-;;;;;;;;;34570:14;;;;;:::i;:::-;;;;34345:3;;;;;:::i;:::-;;;;34311:281;;;;34615:12;34600;:27;;;;34634:60;34663:1;34667:2;34671:12;34685:8;34634:20;:60::i;:::-;33526:1174;;;33428:1272;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:75:1:-;40:6;73:2;67:9;57:19;;7:75;:::o;88:117::-;197:1;194;187:12;211:117;320:1;317;310:12;334:149;370:7;410:66;403:5;399:78;388:89;;334:149;;;:::o;489:120::-;561:23;578:5;561:23;:::i;:::-;554:5;551:34;541:62;;599:1;596;589:12;541:62;489:120;:::o;615:137::-;660:5;698:6;685:20;676:29;;714:32;740:5;714:32;:::i;:::-;615:137;;;;:::o;758:327::-;816:6;865:2;853:9;844:7;840:23;836:32;833:119;;;871:79;;:::i;:::-;833:119;991:1;1016:52;1060:7;1051:6;1040:9;1036:22;1016:52;:::i;:::-;1006:62;;962:116;758:327;;;;:::o;1091:90::-;1125:7;1168:5;1161:13;1154:21;1143:32;;1091:90;;;:::o;1187:109::-;1268:21;1283:5;1268:21;:::i;:::-;1263:3;1256:34;1187:109;;:::o;1302:210::-;1389:4;1427:2;1416:9;1412:18;1404:26;;1440:65;1502:1;1491:9;1487:17;1478:6;1440:65;:::i;:::-;1302:210;;;;:::o;1518:99::-;1570:6;1604:5;1598:12;1588:22;;1518:99;;;:::o;1623:169::-;1707:11;1741:6;1736:3;1729:19;1781:4;1776:3;1772:14;1757:29;;1623:169;;;;:::o;1798:307::-;1866:1;1876:113;1890:6;1887:1;1884:13;1876:113;;;1975:1;1970:3;1966:11;1960:18;1956:1;1951:3;1947:11;1940:39;1912:2;1909:1;1905:10;1900:15;;1876:113;;;2007:6;2004:1;2001:13;1998:101;;;2087:1;2078:6;2073:3;2069:16;2062:27;1998:101;1847:258;1798:307;;;:::o;2111:102::-;2152:6;2203:2;2199:7;2194:2;2187:5;2183:14;2179:28;2169:38;;2111:102;;;:::o;2219:364::-;2307:3;2335:39;2368:5;2335:39;:::i;:::-;2390:71;2454:6;2449:3;2390:71;:::i;:::-;2383:78;;2470:52;2515:6;2510:3;2503:4;2496:5;2492:16;2470:52;:::i;:::-;2547:29;2569:6;2547:29;:::i;:::-;2542:3;2538:39;2531:46;;2311:272;2219:364;;;;:::o;2589:313::-;2702:4;2740:2;2729:9;2725:18;2717:26;;2789:9;2783:4;2779:20;2775:1;2764:9;2760:17;2753:47;2817:78;2890:4;2881:6;2817:78;:::i;:::-;2809:86;;2589:313;;;;:::o;2908:77::-;2945:7;2974:5;2963:16;;2908:77;;;:::o;2991:122::-;3064:24;3082:5;3064:24;:::i;:::-;3057:5;3054:35;3044:63;;3103:1;3100;3093:12;3044:63;2991:122;:::o;3119:139::-;3165:5;3203:6;3190:20;3181:29;;3219:33;3246:5;3219:33;:::i;:::-;3119:139;;;;:::o;3264:329::-;3323:6;3372:2;3360:9;3351:7;3347:23;3343:32;3340:119;;;3378:79;;:::i;:::-;3340:119;3498:1;3523:53;3568:7;3559:6;3548:9;3544:22;3523:53;:::i;:::-;3513:63;;3469:117;3264:329;;;;:::o;3599:126::-;3636:7;3676:42;3669:5;3665:54;3654:65;;3599:126;;;:::o;3731:96::-;3768:7;3797:24;3815:5;3797:24;:::i;:::-;3786:35;;3731:96;;;:::o;3833:118::-;3920:24;3938:5;3920:24;:::i;:::-;3915:3;3908:37;3833:118;;:::o;3957:222::-;4050:4;4088:2;4077:9;4073:18;4065:26;;4101:71;4169:1;4158:9;4154:17;4145:6;4101:71;:::i;:::-;3957:222;;;;:::o;4185:122::-;4258:24;4276:5;4258:24;:::i;:::-;4251:5;4248:35;4238:63;;4297:1;4294;4287:12;4238:63;4185:122;:::o;4313:139::-;4359:5;4397:6;4384:20;4375:29;;4413:33;4440:5;4413:33;:::i;:::-;4313:139;;;;:::o;4458:474::-;4526:6;4534;4583:2;4571:9;4562:7;4558:23;4554:32;4551:119;;;4589:79;;:::i;:::-;4551:119;4709:1;4734:53;4779:7;4770:6;4759:9;4755:22;4734:53;:::i;:::-;4724:63;;4680:117;4836:2;4862:53;4907:7;4898:6;4887:9;4883:22;4862:53;:::i;:::-;4852:63;;4807:118;4458:474;;;;;:::o;4938:118::-;5025:24;5043:5;5025:24;:::i;:::-;5020:3;5013:37;4938:118;;:::o;5062:222::-;5155:4;5193:2;5182:9;5178:18;5170:26;;5206:71;5274:1;5263:9;5259:17;5250:6;5206:71;:::i;:::-;5062:222;;;;:::o;5290:619::-;5367:6;5375;5383;5432:2;5420:9;5411:7;5407:23;5403:32;5400:119;;;5438:79;;:::i;:::-;5400:119;5558:1;5583:53;5628:7;5619:6;5608:9;5604:22;5583:53;:::i;:::-;5573:63;;5529:117;5685:2;5711:53;5756:7;5747:6;5736:9;5732:22;5711:53;:::i;:::-;5701:63;;5656:118;5813:2;5839:53;5884:7;5875:6;5864:9;5860:22;5839:53;:::i;:::-;5829:63;;5784:118;5290:619;;;;;:::o;5915:329::-;5974:6;6023:2;6011:9;6002:7;5998:23;5994:32;5991:119;;;6029:79;;:::i;:::-;5991:119;6149:1;6174:53;6219:7;6210:6;6199:9;6195:22;6174:53;:::i;:::-;6164:63;;6120:117;5915:329;;;;:::o;6250:114::-;6317:6;6351:5;6345:12;6335:22;;6250:114;;;:::o;6370:184::-;6469:11;6503:6;6498:3;6491:19;6543:4;6538:3;6534:14;6519:29;;6370:184;;;;:::o;6560:132::-;6627:4;6650:3;6642:11;;6680:4;6675:3;6671:14;6663:22;;6560:132;;;:::o;6698:108::-;6775:24;6793:5;6775:24;:::i;:::-;6770:3;6763:37;6698:108;;:::o;6812:179::-;6881:10;6902:46;6944:3;6936:6;6902:46;:::i;:::-;6980:4;6975:3;6971:14;6957:28;;6812:179;;;;:::o;6997:113::-;7067:4;7099;7094:3;7090:14;7082:22;;6997:113;;;:::o;7146:732::-;7265:3;7294:54;7342:5;7294:54;:::i;:::-;7364:86;7443:6;7438:3;7364:86;:::i;:::-;7357:93;;7474:56;7524:5;7474:56;:::i;:::-;7553:7;7584:1;7569:284;7594:6;7591:1;7588:13;7569:284;;;7670:6;7664:13;7697:63;7756:3;7741:13;7697:63;:::i;:::-;7690:70;;7783:60;7836:6;7783:60;:::i;:::-;7773:70;;7629:224;7616:1;7613;7609:9;7604:14;;7569:284;;;7573:14;7869:3;7862:10;;7270:608;;;7146:732;;;;:::o;7884:373::-;8027:4;8065:2;8054:9;8050:18;8042:26;;8114:9;8108:4;8104:20;8100:1;8089:9;8085:17;8078:47;8142:108;8245:4;8236:6;8142:108;:::i;:::-;8134:116;;7884:373;;;;:::o;8263:117::-;8372:1;8369;8362:12;8386:117;8495:1;8492;8485:12;8509:180;8557:77;8554:1;8547:88;8654:4;8651:1;8644:15;8678:4;8675:1;8668:15;8695:281;8778:27;8800:4;8778:27;:::i;:::-;8770:6;8766:40;8908:6;8896:10;8893:22;8872:18;8860:10;8857:34;8854:62;8851:88;;;8919:18;;:::i;:::-;8851:88;8959:10;8955:2;8948:22;8738:238;8695:281;;:::o;8982:129::-;9016:6;9043:20;;:::i;:::-;9033:30;;9072:33;9100:4;9092:6;9072:33;:::i;:::-;8982:129;;;:::o;9117:308::-;9179:4;9269:18;9261:6;9258:30;9255:56;;;9291:18;;:::i;:::-;9255:56;9329:29;9351:6;9329:29;:::i;:::-;9321:37;;9413:4;9407;9403:15;9395:23;;9117:308;;;:::o;9431:154::-;9515:6;9510:3;9505;9492:30;9577:1;9568:6;9563:3;9559:16;9552:27;9431:154;;;:::o;9591:412::-;9669:5;9694:66;9710:49;9752:6;9710:49;:::i;:::-;9694:66;:::i;:::-;9685:75;;9783:6;9776:5;9769:21;9821:4;9814:5;9810:16;9859:3;9850:6;9845:3;9841:16;9838:25;9835:112;;;9866:79;;:::i;:::-;9835:112;9956:41;9990:6;9985:3;9980;9956:41;:::i;:::-;9675:328;9591:412;;;;;:::o;10023:340::-;10079:5;10128:3;10121:4;10113:6;10109:17;10105:27;10095:122;;10136:79;;:::i;:::-;10095:122;10253:6;10240:20;10278:79;10353:3;10345:6;10338:4;10330:6;10326:17;10278:79;:::i;:::-;10269:88;;10085:278;10023:340;;;;:::o;10369:509::-;10438:6;10487:2;10475:9;10466:7;10462:23;10458:32;10455:119;;;10493:79;;:::i;:::-;10455:119;10641:1;10630:9;10626:17;10613:31;10671:18;10663:6;10660:30;10657:117;;;10693:79;;:::i;:::-;10657:117;10798:63;10853:7;10844:6;10833:9;10829:22;10798:63;:::i;:::-;10788:73;;10584:287;10369:509;;;;:::o;10884:116::-;10954:21;10969:5;10954:21;:::i;:::-;10947:5;10944:32;10934:60;;10990:1;10987;10980:12;10934:60;10884:116;:::o;11006:133::-;11049:5;11087:6;11074:20;11065:29;;11103:30;11127:5;11103:30;:::i;:::-;11006:133;;;;:::o;11145:468::-;11210:6;11218;11267:2;11255:9;11246:7;11242:23;11238:32;11235:119;;;11273:79;;:::i;:::-;11235:119;11393:1;11418:53;11463:7;11454:6;11443:9;11439:22;11418:53;:::i;:::-;11408:63;;11364:117;11520:2;11546:50;11588:7;11579:6;11568:9;11564:22;11546:50;:::i;:::-;11536:60;;11491:115;11145:468;;;;;:::o;11619:307::-;11680:4;11770:18;11762:6;11759:30;11756:56;;;11792:18;;:::i;:::-;11756:56;11830:29;11852:6;11830:29;:::i;:::-;11822:37;;11914:4;11908;11904:15;11896:23;;11619:307;;;:::o;11932:410::-;12009:5;12034:65;12050:48;12091:6;12050:48;:::i;:::-;12034:65;:::i;:::-;12025:74;;12122:6;12115:5;12108:21;12160:4;12153:5;12149:16;12198:3;12189:6;12184:3;12180:16;12177:25;12174:112;;;12205:79;;:::i;:::-;12174:112;12295:41;12329:6;12324:3;12319;12295:41;:::i;:::-;12015:327;11932:410;;;;;:::o;12361:338::-;12416:5;12465:3;12458:4;12450:6;12446:17;12442:27;12432:122;;12473:79;;:::i;:::-;12432:122;12590:6;12577:20;12615:78;12689:3;12681:6;12674:4;12666:6;12662:17;12615:78;:::i;:::-;12606:87;;12422:277;12361:338;;;;:::o;12705:943::-;12800:6;12808;12816;12824;12873:3;12861:9;12852:7;12848:23;12844:33;12841:120;;;12880:79;;:::i;:::-;12841:120;13000:1;13025:53;13070:7;13061:6;13050:9;13046:22;13025:53;:::i;:::-;13015:63;;12971:117;13127:2;13153:53;13198:7;13189:6;13178:9;13174:22;13153:53;:::i;:::-;13143:63;;13098:118;13255:2;13281:53;13326:7;13317:6;13306:9;13302:22;13281:53;:::i;:::-;13271:63;;13226:118;13411:2;13400:9;13396:18;13383:32;13442:18;13434:6;13431:30;13428:117;;;13464:79;;:::i;:::-;13428:117;13569:62;13623:7;13614:6;13603:9;13599:22;13569:62;:::i;:::-;13559:72;;13354:287;12705:943;;;;;;;:::o;13654:89::-;13690:7;13730:6;13723:5;13719:18;13708:29;;13654:89;;;:::o;13749:115::-;13834:23;13851:5;13834:23;:::i;:::-;13829:3;13822:36;13749:115;;:::o;13870:218::-;13961:4;13999:2;13988:9;13984:18;13976:26;;14012:69;14078:1;14067:9;14063:17;14054:6;14012:69;:::i;:::-;13870:218;;;;:::o;14094:474::-;14162:6;14170;14219:2;14207:9;14198:7;14194:23;14190:32;14187:119;;;14225:79;;:::i;:::-;14187:119;14345:1;14370:53;14415:7;14406:6;14395:9;14391:22;14370:53;:::i;:::-;14360:63;;14316:117;14472:2;14498:53;14543:7;14534:6;14523:9;14519:22;14498:53;:::i;:::-;14488:63;;14443:118;14094:474;;;;;:::o;14574:180::-;14622:77;14619:1;14612:88;14719:4;14716:1;14709:15;14743:4;14740:1;14733:15;14760:320;14804:6;14841:1;14835:4;14831:12;14821:22;;14888:1;14882:4;14878:12;14909:18;14899:81;;14965:4;14957:6;14953:17;14943:27;;14899:81;15027:2;15019:6;15016:14;14996:18;14993:38;14990:84;;;15046:18;;:::i;:::-;14990:84;14811:269;14760:320;;;:::o;15086:232::-;15226:34;15222:1;15214:6;15210:14;15203:58;15295:15;15290:2;15282:6;15278:15;15271:40;15086:232;:::o;15324:366::-;15466:3;15487:67;15551:2;15546:3;15487:67;:::i;:::-;15480:74;;15563:93;15652:3;15563:93;:::i;:::-;15681:2;15676:3;15672:12;15665:19;;15324:366;;;:::o;15696:419::-;15862:4;15900:2;15889:9;15885:18;15877:26;;15949:9;15943:4;15939:20;15935:1;15924:9;15920:17;15913:47;15977:131;16103:4;15977:131;:::i;:::-;15969:139;;15696:419;;;:::o;16121:182::-;16261:34;16257:1;16249:6;16245:14;16238:58;16121:182;:::o;16309:366::-;16451:3;16472:67;16536:2;16531:3;16472:67;:::i;:::-;16465:74;;16548:93;16637:3;16548:93;:::i;:::-;16666:2;16661:3;16657:12;16650:19;;16309:366;;;:::o;16681:419::-;16847:4;16885:2;16874:9;16870:18;16862:26;;16934:9;16928:4;16924:20;16920:1;16909:9;16905:17;16898:47;16962:131;17088:4;16962:131;:::i;:::-;16954:139;;16681:419;;;:::o;17106:221::-;17246:34;17242:1;17234:6;17230:14;17223:58;17315:4;17310:2;17302:6;17298:15;17291:29;17106:221;:::o;17333:366::-;17475:3;17496:67;17560:2;17555:3;17496:67;:::i;:::-;17489:74;;17572:93;17661:3;17572:93;:::i;:::-;17690:2;17685:3;17681:12;17674:19;;17333:366;;;:::o;17705:419::-;17871:4;17909:2;17898:9;17894:18;17886:26;;17958:9;17952:4;17948:20;17944:1;17933:9;17929:17;17922:47;17986:131;18112:4;17986:131;:::i;:::-;17978:139;;17705:419;;;:::o;18130:244::-;18270:34;18266:1;18258:6;18254:14;18247:58;18339:27;18334:2;18326:6;18322:15;18315:52;18130:244;:::o;18380:366::-;18522:3;18543:67;18607:2;18602:3;18543:67;:::i;:::-;18536:74;;18619:93;18708:3;18619:93;:::i;:::-;18737:2;18732:3;18728:12;18721:19;;18380:366;;;:::o;18752:419::-;18918:4;18956:2;18945:9;18941:18;18933:26;;19005:9;18999:4;18995:20;18991:1;18980:9;18976:17;18969:47;19033:131;19159:4;19033:131;:::i;:::-;19025:139;;18752:419;;;:::o;19177:221::-;19317:34;19313:1;19305:6;19301:14;19294:58;19386:4;19381:2;19373:6;19369:15;19362:29;19177:221;:::o;19404:366::-;19546:3;19567:67;19631:2;19626:3;19567:67;:::i;:::-;19560:74;;19643:93;19732:3;19643:93;:::i;:::-;19761:2;19756:3;19752:12;19745:19;;19404:366;;;:::o;19776:419::-;19942:4;19980:2;19969:9;19965:18;19957:26;;20029:9;20023:4;20019:20;20015:1;20004:9;20000:17;19993:47;20057:131;20183:4;20057:131;:::i;:::-;20049:139;;19776:419;;;:::o;20201:180::-;20249:77;20246:1;20239:88;20346:4;20343:1;20336:15;20370:4;20367:1;20360:15;20387:233;20426:3;20449:24;20467:5;20449:24;:::i;:::-;20440:33;;20495:66;20488:5;20485:77;20482:103;;;20565:18;;:::i;:::-;20482:103;20612:1;20605:5;20601:13;20594:20;;20387:233;;;:::o;20626:::-;20766:34;20762:1;20754:6;20750:14;20743:58;20835:16;20830:2;20822:6;20818:15;20811:41;20626:233;:::o;20865:366::-;21007:3;21028:67;21092:2;21087:3;21028:67;:::i;:::-;21021:74;;21104:93;21193:3;21104:93;:::i;:::-;21222:2;21217:3;21213:12;21206:19;;20865:366;;;:::o;21237:419::-;21403:4;21441:2;21430:9;21426:18;21418:26;;21490:9;21484:4;21480:20;21476:1;21465:9;21461:17;21454:47;21518:131;21644:4;21518:131;:::i;:::-;21510:139;;21237:419;;;:::o;21662:305::-;21702:3;21721:20;21739:1;21721:20;:::i;:::-;21716:25;;21755:20;21773:1;21755:20;:::i;:::-;21750:25;;21909:1;21841:66;21837:74;21834:1;21831:81;21828:107;;;21915:18;;:::i;:::-;21828:107;21959:1;21956;21952:9;21945:16;;21662:305;;;;:::o;21973:226::-;22113:34;22109:1;22101:6;22097:14;22090:58;22182:9;22177:2;22169:6;22165:15;22158:34;21973:226;:::o;22205:366::-;22347:3;22368:67;22432:2;22427:3;22368:67;:::i;:::-;22361:74;;22444:93;22533:3;22444:93;:::i;:::-;22562:2;22557:3;22553:12;22546:19;;22205:366;;;:::o;22577:419::-;22743:4;22781:2;22770:9;22766:18;22758:26;;22830:9;22824:4;22820:20;22816:1;22805:9;22801:17;22794:47;22858:131;22984:4;22858:131;:::i;:::-;22850:139;;22577:419;;;:::o;23002:348::-;23042:7;23065:20;23083:1;23065:20;:::i;:::-;23060:25;;23099:20;23117:1;23099:20;:::i;:::-;23094:25;;23287:1;23219:66;23215:74;23212:1;23209:81;23204:1;23197:9;23190:17;23186:105;23183:131;;;23294:18;;:::i;:::-;23183:131;23342:1;23339;23335:9;23324:20;;23002:348;;;;:::o;23356:180::-;23404:77;23401:1;23394:88;23501:4;23498:1;23491:15;23525:4;23522:1;23515:15;23542:185;23582:1;23599:20;23617:1;23599:20;:::i;:::-;23594:25;;23633:20;23651:1;23633:20;:::i;:::-;23628:25;;23672:1;23662:35;;23677:18;;:::i;:::-;23662:35;23719:1;23716;23712:9;23707:14;;23542:185;;;;:::o;23733:191::-;23773:4;23793:20;23811:1;23793:20;:::i;:::-;23788:25;;23827:20;23845:1;23827:20;:::i;:::-;23822:25;;23866:1;23863;23860:8;23857:34;;;23871:18;;:::i;:::-;23857:34;23916:1;23913;23909:9;23901:17;;23733:191;;;;:::o;23930:147::-;24031:11;24068:3;24053:18;;23930:147;;;;:::o;24083:114::-;;:::o;24203:398::-;24362:3;24383:83;24464:1;24459:3;24383:83;:::i;:::-;24376:90;;24475:93;24564:3;24475:93;:::i;:::-;24593:1;24588:3;24584:11;24577:18;;24203:398;;;:::o;24607:379::-;24791:3;24813:147;24956:3;24813:147;:::i;:::-;24806:154;;24977:3;24970:10;;24607:379;;;:::o;24992:176::-;25132:28;25128:1;25120:6;25116:14;25109:52;24992:176;:::o;25174:366::-;25316:3;25337:67;25401:2;25396:3;25337:67;:::i;:::-;25330:74;;25413:93;25502:3;25413:93;:::i;:::-;25531:2;25526:3;25522:12;25515:19;;25174:366;;;:::o;25546:419::-;25712:4;25750:2;25739:9;25735:18;25727:26;;25799:9;25793:4;25789:20;25785:1;25774:9;25770:17;25763:47;25827:131;25953:4;25827:131;:::i;:::-;25819:139;;25546:419;;;:::o;25971:180::-;26019:77;26016:1;26009:88;26116:4;26113:1;26106:15;26140:4;26137:1;26130:15;26157:222;26297:34;26293:1;26285:6;26281:14;26274:58;26366:5;26361:2;26353:6;26349:15;26342:30;26157:222;:::o;26385:366::-;26527:3;26548:67;26612:2;26607:3;26548:67;:::i;:::-;26541:74;;26624:93;26713:3;26624:93;:::i;:::-;26742:2;26737:3;26733:12;26726:19;;26385:366;;;:::o;26757:419::-;26923:4;26961:2;26950:9;26946:18;26938:26;;27010:9;27004:4;27000:20;26996:1;26985:9;26981:17;26974:47;27038:131;27164:4;27038:131;:::i;:::-;27030:139;;26757:419;;;:::o;27182:230::-;27322:34;27318:1;27310:6;27306:14;27299:58;27391:13;27386:2;27378:6;27374:15;27367:38;27182:230;:::o;27418:366::-;27560:3;27581:67;27645:2;27640:3;27581:67;:::i;:::-;27574:74;;27657:93;27746:3;27657:93;:::i;:::-;27775:2;27770:3;27766:12;27759:19;;27418:366;;;:::o;27790:419::-;27956:4;27994:2;27983:9;27979:18;27971:26;;28043:9;28037:4;28033:20;28029:1;28018:9;28014:17;28007:47;28071:131;28197:4;28071:131;:::i;:::-;28063:139;;27790:419;;;:::o;28215:175::-;28355:27;28351:1;28343:6;28339:14;28332:51;28215:175;:::o;28396:366::-;28538:3;28559:67;28623:2;28618:3;28559:67;:::i;:::-;28552:74;;28635:93;28724:3;28635:93;:::i;:::-;28753:2;28748:3;28744:12;28737:19;;28396:366;;;:::o;28768:419::-;28934:4;28972:2;28961:9;28957:18;28949:26;;29021:9;29015:4;29011:20;29007:1;28996:9;28992:17;28985:47;29049:131;29175:4;29049:131;:::i;:::-;29041:139;;28768:419;;;:::o;29193:178::-;29333:30;29329:1;29321:6;29317:14;29310:54;29193:178;:::o;29377:366::-;29519:3;29540:67;29604:2;29599:3;29540:67;:::i;:::-;29533:74;;29616:93;29705:3;29616:93;:::i;:::-;29734:2;29729:3;29725:12;29718:19;;29377:366;;;:::o;29749:419::-;29915:4;29953:2;29942:9;29938:18;29930:26;;30002:9;29996:4;29992:20;29988:1;29977:9;29973:17;29966:47;30030:131;30156:4;30030:131;:::i;:::-;30022:139;;29749:419;;;:::o;30174:176::-;30314:28;30310:1;30302:6;30298:14;30291:52;30174:176;:::o;30356:366::-;30498:3;30519:67;30583:2;30578:3;30519:67;:::i;:::-;30512:74;;30595:93;30684:3;30595:93;:::i;:::-;30713:2;30708:3;30704:12;30697:19;;30356:366;;;:::o;30728:419::-;30894:4;30932:2;30921:9;30917:18;30909:26;;30981:9;30975:4;30971:20;30967:1;30956:9;30952:17;30945:47;31009:131;31135:4;31009:131;:::i;:::-;31001:139;;30728:419;;;:::o;31153:238::-;31293:34;31289:1;31281:6;31277:14;31270:58;31362:21;31357:2;31349:6;31345:15;31338:46;31153:238;:::o;31397:366::-;31539:3;31560:67;31624:2;31619:3;31560:67;:::i;:::-;31553:74;;31636:93;31725:3;31636:93;:::i;:::-;31754:2;31749:3;31745:12;31738:19;;31397:366;;;:::o;31769:419::-;31935:4;31973:2;31962:9;31958:18;31950:26;;32022:9;32016:4;32012:20;32008:1;31997:9;31993:17;31986:47;32050:131;32176:4;32050:131;:::i;:::-;32042:139;;31769:419;;;:::o;32194:241::-;32334:34;32330:1;32322:6;32318:14;32311:58;32403:24;32398:2;32390:6;32386:15;32379:49;32194:241;:::o;32441:366::-;32583:3;32604:67;32668:2;32663:3;32604:67;:::i;:::-;32597:74;;32680:93;32769:3;32680:93;:::i;:::-;32798:2;32793:3;32789:12;32782:19;;32441:366;;;:::o;32813:419::-;32979:4;33017:2;33006:9;33002:18;32994:26;;33066:9;33060:4;33056:20;33052:1;33041:9;33037:17;33030:47;33094:131;33220:4;33094:131;:::i;:::-;33086:139;;32813:419;;;:::o;33238:148::-;33340:11;33377:3;33362:18;;33238:148;;;;:::o;33392:141::-;33441:4;33464:3;33456:11;;33487:3;33484:1;33477:14;33521:4;33518:1;33508:18;33500:26;;33392:141;;;:::o;33563:845::-;33666:3;33703:5;33697:12;33732:36;33758:9;33732:36;:::i;:::-;33784:89;33866:6;33861:3;33784:89;:::i;:::-;33777:96;;33904:1;33893:9;33889:17;33920:1;33915:137;;;;34066:1;34061:341;;;;33882:520;;33915:137;33999:4;33995:9;33984;33980:25;33975:3;33968:38;34035:6;34030:3;34026:16;34019:23;;33915:137;;34061:341;34128:38;34160:5;34128:38;:::i;:::-;34188:1;34202:154;34216:6;34213:1;34210:13;34202:154;;;34290:7;34284:14;34280:1;34275:3;34271:11;34264:35;34340:1;34331:7;34327:15;34316:26;;34238:4;34235:1;34231:12;34226:17;;34202:154;;;34385:6;34380:3;34376:16;34369:23;;34068:334;;33882:520;;33670:738;;33563:845;;;;:::o;34414:377::-;34520:3;34548:39;34581:5;34548:39;:::i;:::-;34603:89;34685:6;34680:3;34603:89;:::i;:::-;34596:96;;34701:52;34746:6;34741:3;34734:4;34727:5;34723:16;34701:52;:::i;:::-;34778:6;34773:3;34769:16;34762:23;;34524:267;34414:377;;;;:::o;34797:155::-;34937:7;34933:1;34925:6;34921:14;34914:31;34797:155;:::o;34958:400::-;35118:3;35139:84;35221:1;35216:3;35139:84;:::i;:::-;35132:91;;35232:93;35321:3;35232:93;:::i;:::-;35350:1;35345:3;35341:11;35334:18;;34958:400;;;:::o;35364:695::-;35642:3;35664:92;35752:3;35743:6;35664:92;:::i;:::-;35657:99;;35773:95;35864:3;35855:6;35773:95;:::i;:::-;35766:102;;35885:148;36029:3;35885:148;:::i;:::-;35878:155;;36050:3;36043:10;;35364:695;;;;;:::o;36065:225::-;36205:34;36201:1;36193:6;36189:14;36182:58;36274:8;36269:2;36261:6;36257:15;36250:33;36065:225;:::o;36296:366::-;36438:3;36459:67;36523:2;36518:3;36459:67;:::i;:::-;36452:74;;36535:93;36624:3;36535:93;:::i;:::-;36653:2;36648:3;36644:12;36637:19;;36296:366;;;:::o;36668:419::-;36834:4;36872:2;36861:9;36857:18;36849:26;;36921:9;36915:4;36911:20;36907:1;36896:9;36892:17;36885:47;36949:131;37075:4;36949:131;:::i;:::-;36941:139;;36668:419;;;:::o;37093:237::-;37233:34;37229:1;37221:6;37217:14;37210:58;37302:20;37297:2;37289:6;37285:15;37278:45;37093:237;:::o;37336:366::-;37478:3;37499:67;37563:2;37558:3;37499:67;:::i;:::-;37492:74;;37575:93;37664:3;37575:93;:::i;:::-;37693:2;37688:3;37684:12;37677:19;;37336:366;;;:::o;37708:419::-;37874:4;37912:2;37901:9;37897:18;37889:26;;37961:9;37955:4;37951:20;37947:1;37936:9;37932:17;37925:47;37989:131;38115:4;37989:131;:::i;:::-;37981:139;;37708:419;;;:::o;38133:225::-;38273:34;38269:1;38261:6;38257:14;38250:58;38342:8;38337:2;38329:6;38325:15;38318:33;38133:225;:::o;38364:366::-;38506:3;38527:67;38591:2;38586:3;38527:67;:::i;:::-;38520:74;;38603:93;38692:3;38603:93;:::i;:::-;38721:2;38716:3;38712:12;38705:19;;38364:366;;;:::o;38736:419::-;38902:4;38940:2;38929:9;38925:18;38917:26;;38989:9;38983:4;38979:20;38975:1;38964:9;38960:17;38953:47;39017:131;39143:4;39017:131;:::i;:::-;39009:139;;38736:419;;;:::o;39161:224::-;39301:34;39297:1;39289:6;39285:14;39278:58;39370:7;39365:2;39357:6;39353:15;39346:32;39161:224;:::o;39391:366::-;39533:3;39554:67;39618:2;39613:3;39554:67;:::i;:::-;39547:74;;39630:93;39719:3;39630:93;:::i;:::-;39748:2;39743:3;39739:12;39732:19;;39391:366;;;:::o;39763:419::-;39929:4;39967:2;39956:9;39952:18;39944:26;;40016:9;40010:4;40006:20;40002:1;39991:9;39987:17;39980:47;40044:131;40170:4;40044:131;:::i;:::-;40036:139;;39763:419;;;:::o;40188:118::-;40225:7;40265:34;40258:5;40254:46;40243:57;;40188:118;;;:::o;40312:191::-;40352:4;40372:20;40390:1;40372:20;:::i;:::-;40367:25;;40406:20;40424:1;40406:20;:::i;:::-;40401:25;;40445:1;40442;40439:8;40436:34;;;40450:18;;:::i;:::-;40436:34;40495:1;40492;40488:9;40480:17;;40312:191;;;;:::o;40509:273::-;40549:3;40568:20;40586:1;40568:20;:::i;:::-;40563:25;;40602:20;40620:1;40602:20;:::i;:::-;40597:25;;40724:1;40688:34;40684:42;40681:1;40678:49;40675:75;;;40730:18;;:::i;:::-;40675:75;40774:1;40771;40767:9;40760:16;;40509:273;;;;:::o;40788:177::-;40928:29;40924:1;40916:6;40912:14;40905:53;40788:177;:::o;40971:366::-;41113:3;41134:67;41198:2;41193:3;41134:67;:::i;:::-;41127:74;;41210:93;41299:3;41210:93;:::i;:::-;41328:2;41323:3;41319:12;41312:19;;40971:366;;;:::o;41343:419::-;41509:4;41547:2;41536:9;41532:18;41524:26;;41596:9;41590:4;41586:20;41582:1;41571:9;41567:17;41560:47;41624:131;41750:4;41624:131;:::i;:::-;41616:139;;41343:419;;;:::o;41768:235::-;41908:34;41904:1;41896:6;41892:14;41885:58;41977:18;41972:2;41964:6;41960:15;41953:43;41768:235;:::o;42009:366::-;42151:3;42172:67;42236:2;42231:3;42172:67;:::i;:::-;42165:74;;42248:93;42337:3;42248:93;:::i;:::-;42366:2;42361:3;42357:12;42350:19;;42009:366;;;:::o;42381:419::-;42547:4;42585:2;42574:9;42570:18;42562:26;;42634:9;42628:4;42624:20;42620:1;42609:9;42605:17;42598:47;42662:131;42788:4;42662:131;:::i;:::-;42654:139;;42381:419;;;:::o;42806:229::-;42946:34;42942:1;42934:6;42930:14;42923:58;43015:12;43010:2;43002:6;42998:15;42991:37;42806:229;:::o;43041:366::-;43183:3;43204:67;43268:2;43263:3;43204:67;:::i;:::-;43197:74;;43280:93;43369:3;43280:93;:::i;:::-;43398:2;43393:3;43389:12;43382:19;;43041:366;;;:::o;43413:419::-;43579:4;43617:2;43606:9;43602:18;43594:26;;43666:9;43660:4;43656:20;43652:1;43641:9;43637:17;43630:47;43694:131;43820:4;43694:131;:::i;:::-;43686:139;;43413:419;;;:::o;43838:171::-;43877:3;43900:24;43918:5;43900:24;:::i;:::-;43891:33;;43946:4;43939:5;43936:15;43933:41;;;43954:18;;:::i;:::-;43933:41;44001:1;43994:5;43990:13;43983:20;;43838:171;;;:::o;44015:234::-;44155:34;44151:1;44143:6;44139:14;44132:58;44224:17;44219:2;44211:6;44207:15;44200:42;44015:234;:::o;44255:366::-;44397:3;44418:67;44482:2;44477:3;44418:67;:::i;:::-;44411:74;;44494:93;44583:3;44494:93;:::i;:::-;44612:2;44607:3;44603:12;44596:19;;44255:366;;;:::o;44627:419::-;44793:4;44831:2;44820:9;44816:18;44808:26;;44880:9;44874:4;44870:20;44866:1;44855:9;44851:17;44844:47;44908:131;45034:4;44908:131;:::i;:::-;44900:139;;44627:419;;;:::o;45052:98::-;45103:6;45137:5;45131:12;45121:22;;45052:98;;;:::o;45156:168::-;45239:11;45273:6;45268:3;45261:19;45313:4;45308:3;45304:14;45289:29;;45156:168;;;;:::o;45330:360::-;45416:3;45444:38;45476:5;45444:38;:::i;:::-;45498:70;45561:6;45556:3;45498:70;:::i;:::-;45491:77;;45577:52;45622:6;45617:3;45610:4;45603:5;45599:16;45577:52;:::i;:::-;45654:29;45676:6;45654:29;:::i;:::-;45649:3;45645:39;45638:46;;45420:270;45330:360;;;;:::o;45696:640::-;45891:4;45929:3;45918:9;45914:19;45906:27;;45943:71;46011:1;46000:9;45996:17;45987:6;45943:71;:::i;:::-;46024:72;46092:2;46081:9;46077:18;46068:6;46024:72;:::i;:::-;46106;46174:2;46163:9;46159:18;46150:6;46106:72;:::i;:::-;46225:9;46219:4;46215:20;46210:2;46199:9;46195:18;46188:48;46253:76;46324:4;46315:6;46253:76;:::i;:::-;46245:84;;45696:640;;;;;;;:::o;46342:141::-;46398:5;46429:6;46423:13;46414:22;;46445:32;46471:5;46445:32;:::i;:::-;46342:141;;;;:::o;46489:349::-;46558:6;46607:2;46595:9;46586:7;46582:23;46578:32;46575:119;;;46613:79;;:::i;:::-;46575:119;46733:1;46758:63;46813:7;46804:6;46793:9;46789:22;46758:63;:::i;:::-;46748:73;;46704:127;46489:349;;;;:::o;46844:176::-;46876:1;46893:20;46911:1;46893:20;:::i;:::-;46888:25;;46927:20;46945:1;46927:20;:::i;:::-;46922:25;;46966:1;46956:35;;46971:18;;:::i;:::-;46956:35;47012:1;47009;47005:9;47000:14;;46844:176;;;;:::o;47026:220::-;47166:34;47162:1;47154:6;47150:14;47143:58;47235:3;47230:2;47222:6;47218:15;47211:28;47026:220;:::o;47252:366::-;47394:3;47415:67;47479:2;47474:3;47415:67;:::i;:::-;47408:74;;47491:93;47580:3;47491:93;:::i;:::-;47609:2;47604:3;47600:12;47593:19;;47252:366;;;:::o;47624:419::-;47790:4;47828:2;47817:9;47813:18;47805:26;;47877:9;47871:4;47867:20;47863:1;47852:9;47848:17;47841:47;47905:131;48031:4;47905:131;:::i;:::-;47897:139;;47624:419;;;:::o;48049:179::-;48189:31;48185:1;48177:6;48173:14;48166:55;48049:179;:::o;48234:366::-;48376:3;48397:67;48461:2;48456:3;48397:67;:::i;:::-;48390:74;;48473:93;48562:3;48473:93;:::i;:::-;48591:2;48586:3;48582:12;48575:19;;48234:366;;;:::o;48606:419::-;48772:4;48810:2;48799:9;48795:18;48787:26;;48859:9;48853:4;48849:20;48845:1;48834:9;48830:17;48823:47;48887:131;49013:4;48887:131;:::i;:::-;48879:139;;48606:419;;;:::o;49031:221::-;49171:34;49167:1;49159:6;49155:14;49148:58;49240:4;49235:2;49227:6;49223:15;49216:29;49031:221;:::o;49258:366::-;49400:3;49421:67;49485:2;49480:3;49421:67;:::i;:::-;49414:74;;49497:93;49586:3;49497:93;:::i;:::-;49615:2;49610:3;49606:12;49599:19;;49258:366;;;:::o;49630:419::-;49796:4;49834:2;49823:9;49819:18;49811:26;;49883:9;49877:4;49873:20;49869:1;49858:9;49854:17;49847:47;49911:131;50037:4;49911:131;:::i;:::-;49903:139;;49630:419;;;:::o

Swarm Source

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