ETH Price: $3,112.60 (+0.63%)
Gas: 3 Gwei

Token

hypemfers (hmfers)
 

Overview

Max Total Supply

6,969 hmfers

Holders

1,295

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Filtered by Token Holder
reagentzero.eth
Balance
2 hmfers
0xaad1195adcec96c05534c80069fa30d19e19b1f1
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:
hypemfers

Compiler Version
v0.8.12+commit.f00d7308

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

// OpenZeppelin Contracts v4.4.1 (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 `IERC721.onERC721Received.selector`.
     */
    function onERC721Received(
        address operator,
        address from,
        uint256 tokenId,
        bytes calldata data
    ) external returns (bytes4);
}

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

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// OpenZeppelin Contracts v4.4.1 (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 tokenId);

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

pragma solidity ^0.8.0;

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

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

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

/**
 * hypemfers by driptoshi
 */

pragma solidity ^0.8.0;

contract hypemfers is ERC721A, Ownable {
    uint256 public NFT_PRICE = 6900000000000000;
    uint256 public MAX_SUPPLY = 6969;
    uint256 public MAX_MINTS = 10;
    string public baseURI = "";
    
    constructor() ERC721A("hypemfers", "hmfers", MAX_MINTS, MAX_SUPPLY) {}

    function mint(uint256 numTokens) public payable {
        require(numTokens > 0 && numTokens <= MAX_MINTS);
        require(totalSupply() + numTokens <= MAX_SUPPLY);
        require(msg.value >= NFT_PRICE * numTokens);

        _safeMint(msg.sender, numTokens);
    }

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

    function setPrice(uint256 newPrice) public onlyOwner {
        NFT_PRICE = newPrice;
    }

    function setMaxMints(uint256 newMax) public onlyOwner {
        MAX_MINTS = newMax;
    }

    function setSupply(uint256 newSupply) public onlyOwner {
        MAX_SUPPLY = newSupply;
    }

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

    function withdraw() public onlyOwner {
        require(payable(msg.sender).send(address(this).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":[],"name":"MAX_MINTS","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"NFT_PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"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":[{"internalType":"uint256","name":"numTokens","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":"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":"newMax","type":"uint256"}],"name":"setMaxMints","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newPrice","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newSupply","type":"uint256"}],"name":"setSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60c06040526000805560006007556618838370f34000600955611b39600a55600a600b5560405180602001604052806000815250600c90805190602001906200004a92919062000291565b503480156200005857600080fd5b506040518060400160405280600981526020017f687970656d6665727300000000000000000000000000000000000000000000008152506040518060400160405280600681526020017f686d666572730000000000000000000000000000000000000000000000000000815250600b54600a546000811162000111576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200010890620003c8565b60405180910390fd5b6000821162000157576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200014e9062000460565b60405180910390fd5b83600190805190602001906200016f92919062000291565b5082600290805190602001906200018892919062000291565b508160a08181525050806080818152505050505050620001bd620001b1620001c360201b60201c565b620001cb60201b60201c565b620004e7565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8280546200029f90620004b1565b90600052602060002090601f016020900481019282620002c357600085556200030f565b82601f10620002de57805160ff19168380011785556200030f565b828001600101855582156200030f579182015b828111156200030e578251825591602001919060010190620002f1565b5b5090506200031e919062000322565b5090565b5b808211156200033d57600081600090555060010162000323565b5090565b600082825260208201905092915050565b7f455243373231413a20636f6c6c656374696f6e206d757374206861766520612060008201527f6e6f6e7a65726f20737570706c79000000000000000000000000000000000000602082015250565b6000620003b0602e8362000341565b9150620003bd8262000352565b604082019050919050565b60006020820190508181036000830152620003e381620003a1565b9050919050565b7f455243373231413a206d61782062617463682073697a65206d7573742062652060008201527f6e6f6e7a65726f00000000000000000000000000000000000000000000000000602082015250565b60006200044860278362000341565b91506200045582620003ea565b604082019050919050565b600060208201905081810360008301526200047b8162000439565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680620004ca57607f821691505b60208210811415620004e157620004e062000482565b5b50919050565b60805160a05161413c6200051860003960008181611ea301528181611ecc015261257e01526000505061413c6000f3fe6080604052600436106101cd5760003560e01c80636c0360eb116100f7578063a0712d6811610095578063cce132d111610064578063cce132d114610665578063d7224ba014610690578063e985e9c5146106bb578063f2fde38b146106f8576101cd565b8063a0712d68146105ba578063a22cb465146105d6578063b88d4fde146105ff578063c87b56dd14610628576101cd565b806379c9cb7b116100d157806379c9cb7b146105125780638da5cb5b1461053b57806391b7f5ed1461056657806395d89b411461058f576101cd565b80636c0360eb1461049357806370a08231146104be578063715018a6146104fb576101cd565b806332cb6b0c1161016f5780634f6ccce71161013e5780634f6ccce7146103c557806355f804b3146104025780636352211e1461042b578063676dd56314610468576101cd565b806332cb6b0c146103315780633b4c4b251461035c5780633ccfd60b1461038557806342842e0e1461039c576101cd565b8063095ea7b3116101ab578063095ea7b31461027757806318160ddd146102a057806323b872dd146102cb5780632f745c59146102f4576101cd565b806301ffc9a7146101d257806306fdde031461020f578063081812fc1461023a575b600080fd5b3480156101de57600080fd5b506101f960048036038101906101f49190612af8565b610721565b6040516102069190612b40565b60405180910390f35b34801561021b57600080fd5b5061022461086b565b6040516102319190612bf4565b60405180910390f35b34801561024657600080fd5b50610261600480360381019061025c9190612c4c565b6108fd565b60405161026e9190612cba565b60405180910390f35b34801561028357600080fd5b5061029e60048036038101906102999190612d01565b610982565b005b3480156102ac57600080fd5b506102b5610a9b565b6040516102c29190612d50565b60405180910390f35b3480156102d757600080fd5b506102f260048036038101906102ed9190612d6b565b610aa4565b005b34801561030057600080fd5b5061031b60048036038101906103169190612d01565b610ab4565b6040516103289190612d50565b60405180910390f35b34801561033d57600080fd5b50610346610cb2565b6040516103539190612d50565b60405180910390f35b34801561036857600080fd5b50610383600480360381019061037e9190612c4c565b610cb8565b005b34801561039157600080fd5b5061039a610d3e565b005b3480156103a857600080fd5b506103c360048036038101906103be9190612d6b565b610dfa565b005b3480156103d157600080fd5b506103ec60048036038101906103e79190612c4c565b610e1a565b6040516103f99190612d50565b60405180910390f35b34801561040e57600080fd5b5061042960048036038101906104249190612ef3565b610e6d565b005b34801561043757600080fd5b50610452600480360381019061044d9190612c4c565b610f03565b60405161045f9190612cba565b60405180910390f35b34801561047457600080fd5b5061047d610f19565b60405161048a9190612d50565b60405180910390f35b34801561049f57600080fd5b506104a8610f1f565b6040516104b59190612bf4565b60405180910390f35b3480156104ca57600080fd5b506104e560048036038101906104e09190612f3c565b610fad565b6040516104f29190612d50565b60405180910390f35b34801561050757600080fd5b50610510611096565b005b34801561051e57600080fd5b5061053960048036038101906105349190612c4c565b61111e565b005b34801561054757600080fd5b506105506111a4565b60405161055d9190612cba565b60405180910390f35b34801561057257600080fd5b5061058d60048036038101906105889190612c4c565b6111ce565b005b34801561059b57600080fd5b506105a4611254565b6040516105b19190612bf4565b60405180910390f35b6105d460048036038101906105cf9190612c4c565b6112e6565b005b3480156105e257600080fd5b506105fd60048036038101906105f89190612f95565b611349565b005b34801561060b57600080fd5b5061062660048036038101906106219190613076565b6114ca565b005b34801561063457600080fd5b5061064f600480360381019061064a9190612c4c565b611526565b60405161065c9190612bf4565b60405180910390f35b34801561067157600080fd5b5061067a6115cd565b6040516106879190612d50565b60405180910390f35b34801561069c57600080fd5b506106a56115d3565b6040516106b29190612d50565b60405180910390f35b3480156106c757600080fd5b506106e260048036038101906106dd91906130f9565b6115d9565b6040516106ef9190612b40565b60405180910390f35b34801561070457600080fd5b5061071f600480360381019061071a9190612f3c565b61166d565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806107ec57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061085457507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610864575061086382611765565b5b9050919050565b60606001805461087a90613168565b80601f01602080910402602001604051908101604052809291908181526020018280546108a690613168565b80156108f35780601f106108c8576101008083540402835291602001916108f3565b820191906000526020600020905b8154815290600101906020018083116108d657829003601f168201915b5050505050905090565b6000610908826117cf565b610947576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161093e9061320c565b60405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061098d82610f03565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156109fe576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109f59061329e565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610a1d6117dc565b73ffffffffffffffffffffffffffffffffffffffff161480610a4c5750610a4b81610a466117dc565b6115d9565b5b610a8b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a8290613330565b60405180910390fd5b610a968383836117e4565b505050565b60008054905090565b610aaf838383611896565b505050565b6000610abf83610fad565b8210610b00576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610af7906133c2565b60405180910390fd5b6000610b0a610a9b565b905060008060005b83811015610c70576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614610c0457806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610c5c5786841415610c4d578195505050505050610cac565b8380610c5890613411565b9450505b508080610c6890613411565b915050610b12565b506040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ca3906134cc565b60405180910390fd5b92915050565b600a5481565b610cc06117dc565b73ffffffffffffffffffffffffffffffffffffffff16610cde6111a4565b73ffffffffffffffffffffffffffffffffffffffff1614610d34576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d2b90613538565b60405180910390fd5b80600a8190555050565b610d466117dc565b73ffffffffffffffffffffffffffffffffffffffff16610d646111a4565b73ffffffffffffffffffffffffffffffffffffffff1614610dba576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610db190613538565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050610df857600080fd5b565b610e15838383604051806020016040528060008152506114ca565b505050565b6000610e24610a9b565b8210610e65576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e5c906135ca565b60405180910390fd5b819050919050565b610e756117dc565b73ffffffffffffffffffffffffffffffffffffffff16610e936111a4565b73ffffffffffffffffffffffffffffffffffffffff1614610ee9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ee090613538565b60405180910390fd5b80600c9080519060200190610eff9291906129af565b5050565b6000610f0e82611e4f565b600001519050919050565b60095481565b600c8054610f2c90613168565b80601f0160208091040260200160405190810160405280929190818152602001828054610f5890613168565b8015610fa55780601f10610f7a57610100808354040283529160200191610fa5565b820191906000526020600020905b815481529060010190602001808311610f8857829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561101e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110159061365c565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b61109e6117dc565b73ffffffffffffffffffffffffffffffffffffffff166110bc6111a4565b73ffffffffffffffffffffffffffffffffffffffff1614611112576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161110990613538565b60405180910390fd5b61111c6000612052565b565b6111266117dc565b73ffffffffffffffffffffffffffffffffffffffff166111446111a4565b73ffffffffffffffffffffffffffffffffffffffff161461119a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161119190613538565b60405180910390fd5b80600b8190555050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6111d66117dc565b73ffffffffffffffffffffffffffffffffffffffff166111f46111a4565b73ffffffffffffffffffffffffffffffffffffffff161461124a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161124190613538565b60405180910390fd5b8060098190555050565b60606002805461126390613168565b80601f016020809104026020016040519081016040528092919081815260200182805461128f90613168565b80156112dc5780601f106112b1576101008083540402835291602001916112dc565b820191906000526020600020905b8154815290600101906020018083116112bf57829003601f168201915b5050505050905090565b6000811180156112f85750600b548111155b61130157600080fd5b600a548161130d610a9b565b611317919061367c565b111561132257600080fd5b8060095461133091906136d2565b34101561133c57600080fd5b6113463382612118565b50565b6113516117dc565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156113bf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113b690613778565b60405180910390fd5b80600660006113cc6117dc565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166114796117dc565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516114be9190612b40565b60405180910390a35050565b6114d5848484611896565b6114e184848484612136565b611520576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115179061380a565b60405180910390fd5b50505050565b6060611531826117cf565b611570576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115679061389c565b60405180910390fd5b600061157a6122be565b9050600081511161159a57604051806020016040528060008152506115c5565b806115a484612350565b6040516020016115b5929190613944565b6040516020818303038152906040525b915050919050565b600b5481565b60075481565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6116756117dc565b73ffffffffffffffffffffffffffffffffffffffff166116936111a4565b73ffffffffffffffffffffffffffffffffffffffff16146116e9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116e090613538565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611759576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611750906139e5565b60405180910390fd5b61176281612052565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6000805482109050919050565b600033905090565b826005600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60006118a182611e4f565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff166118c86117dc565b73ffffffffffffffffffffffffffffffffffffffff16148061192457506118ed6117dc565b73ffffffffffffffffffffffffffffffffffffffff1661190c846108fd565b73ffffffffffffffffffffffffffffffffffffffff16145b80611940575061193f826000015161193a6117dc565b6115d9565b5b905080611982576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161197990613a77565b60405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff16146119f4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119eb90613b09565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611a64576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a5b90613b9b565b60405180910390fd5b611a7185858560016124b1565b611a8160008484600001516117e4565b6001600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff16611aef9190613bd7565b92506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff1602179055506001600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff16611b939190613c0b565b92506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060405180604001604052808573ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506003600085815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055509050506000600184611c99919061367c565b9050600073ffffffffffffffffffffffffffffffffffffffff166003600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415611ddf57611d0f816117cf565b15611dde576040518060400160405280846000015173ffffffffffffffffffffffffffffffffffffffff168152602001846020015167ffffffffffffffff168152506003600083815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055509050505b5b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611e4786868660016124b7565b505050505050565b611e57612a35565b611e60826117cf565b611e9f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e9690613cc3565b60405180910390fd5b60007f00000000000000000000000000000000000000000000000000000000000000008310611f035760017f000000000000000000000000000000000000000000000000000000000000000084611ef69190613ce3565b611f00919061367c565b90505b60008390505b818110612011576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614611ffd5780935050505061204d565b50808061200990613d17565b915050611f09565b506040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161204490613db3565b60405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6121328282604051806020016040528060008152506124bd565b5050565b60006121578473ffffffffffffffffffffffffffffffffffffffff1661299c565b156122b1578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026121806117dc565b8786866040518563ffffffff1660e01b81526004016121a29493929190613e28565b6020604051808303816000875af19250505080156121de57506040513d601f19601f820116820180604052508101906121db9190613e89565b60015b612261573d806000811461220e576040519150601f19603f3d011682016040523d82523d6000602084013e612213565b606091505b50600081511415612259576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122509061380a565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506122b6565b600190505b949350505050565b6060600c80546122cd90613168565b80601f01602080910402602001604051908101604052809291908181526020018280546122f990613168565b80156123465780601f1061231b57610100808354040283529160200191612346565b820191906000526020600020905b81548152906001019060200180831161232957829003601f168201915b5050505050905090565b60606000821415612398576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506124ac565b600082905060005b600082146123ca5780806123b390613411565b915050600a826123c39190613ee5565b91506123a0565b60008167ffffffffffffffff8111156123e6576123e5612dc8565b5b6040519080825280601f01601f1916602001820160405280156124185781602001600182028036833780820191505090505b5090505b600085146124a5576001826124319190613ce3565b9150600a856124409190613f16565b603061244c919061367c565b60f81b81838151811061246257612461613f47565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561249e9190613ee5565b945061241c565b8093505050505b919050565b50505050565b50505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612533576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161252a90613fe8565b60405180910390fd5b61253c816117cf565b1561257c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161257390614054565b60405180910390fd5b7f00000000000000000000000000000000000000000000000000000000000000008311156125df576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125d6906140e6565b60405180910390fd5b6125ec60008583866124b1565b6000600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206040518060400160405290816000820160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff1681526020016000820160109054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff1681525050905060405180604001604052808583600001516126e99190613c0b565b6fffffffffffffffffffffffffffffffff1681526020018583602001516127109190613c0b565b6fffffffffffffffffffffffffffffffff16815250600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008201518160000160006101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060208201518160000160106101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555090505060405180604001604052808673ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506003600084815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550905050600082905060005b8581101561297f57818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461291f6000888488612136565b61295e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129559061380a565b60405180910390fd5b818061296990613411565b925050808061297790613411565b9150506128ae565b508060008190555061299460008785886124b7565b505050505050565b600080823b905060008111915050919050565b8280546129bb90613168565b90600052602060002090601f0160209004810192826129dd5760008555612a24565b82601f106129f657805160ff1916838001178555612a24565b82800160010185558215612a24579182015b82811115612a23578251825591602001919060010190612a08565b5b509050612a319190612a6f565b5090565b6040518060400160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681525090565b5b80821115612a88576000816000905550600101612a70565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b612ad581612aa0565b8114612ae057600080fd5b50565b600081359050612af281612acc565b92915050565b600060208284031215612b0e57612b0d612a96565b5b6000612b1c84828501612ae3565b91505092915050565b60008115159050919050565b612b3a81612b25565b82525050565b6000602082019050612b556000830184612b31565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612b95578082015181840152602081019050612b7a565b83811115612ba4576000848401525b50505050565b6000601f19601f8301169050919050565b6000612bc682612b5b565b612bd08185612b66565b9350612be0818560208601612b77565b612be981612baa565b840191505092915050565b60006020820190508181036000830152612c0e8184612bbb565b905092915050565b6000819050919050565b612c2981612c16565b8114612c3457600080fd5b50565b600081359050612c4681612c20565b92915050565b600060208284031215612c6257612c61612a96565b5b6000612c7084828501612c37565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612ca482612c79565b9050919050565b612cb481612c99565b82525050565b6000602082019050612ccf6000830184612cab565b92915050565b612cde81612c99565b8114612ce957600080fd5b50565b600081359050612cfb81612cd5565b92915050565b60008060408385031215612d1857612d17612a96565b5b6000612d2685828601612cec565b9250506020612d3785828601612c37565b9150509250929050565b612d4a81612c16565b82525050565b6000602082019050612d656000830184612d41565b92915050565b600080600060608486031215612d8457612d83612a96565b5b6000612d9286828701612cec565b9350506020612da386828701612cec565b9250506040612db486828701612c37565b9150509250925092565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b612e0082612baa565b810181811067ffffffffffffffff82111715612e1f57612e1e612dc8565b5b80604052505050565b6000612e32612a8c565b9050612e3e8282612df7565b919050565b600067ffffffffffffffff821115612e5e57612e5d612dc8565b5b612e6782612baa565b9050602081019050919050565b82818337600083830152505050565b6000612e96612e9184612e43565b612e28565b905082815260208101848484011115612eb257612eb1612dc3565b5b612ebd848285612e74565b509392505050565b600082601f830112612eda57612ed9612dbe565b5b8135612eea848260208601612e83565b91505092915050565b600060208284031215612f0957612f08612a96565b5b600082013567ffffffffffffffff811115612f2757612f26612a9b565b5b612f3384828501612ec5565b91505092915050565b600060208284031215612f5257612f51612a96565b5b6000612f6084828501612cec565b91505092915050565b612f7281612b25565b8114612f7d57600080fd5b50565b600081359050612f8f81612f69565b92915050565b60008060408385031215612fac57612fab612a96565b5b6000612fba85828601612cec565b9250506020612fcb85828601612f80565b9150509250929050565b600067ffffffffffffffff821115612ff057612fef612dc8565b5b612ff982612baa565b9050602081019050919050565b600061301961301484612fd5565b612e28565b90508281526020810184848401111561303557613034612dc3565b5b613040848285612e74565b509392505050565b600082601f83011261305d5761305c612dbe565b5b813561306d848260208601613006565b91505092915050565b600080600080608085870312156130905761308f612a96565b5b600061309e87828801612cec565b94505060206130af87828801612cec565b93505060406130c087828801612c37565b925050606085013567ffffffffffffffff8111156130e1576130e0612a9b565b5b6130ed87828801613048565b91505092959194509250565b600080604083850312156131105761310f612a96565b5b600061311e85828601612cec565b925050602061312f85828601612cec565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061318057607f821691505b6020821081141561319457613193613139565b5b50919050565b7f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560008201527f78697374656e7420746f6b656e00000000000000000000000000000000000000602082015250565b60006131f6602d83612b66565b91506132018261319a565b604082019050919050565b60006020820190508181036000830152613225816131e9565b9050919050565b7f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60008201527f6572000000000000000000000000000000000000000000000000000000000000602082015250565b6000613288602283612b66565b91506132938261322c565b604082019050919050565b600060208201905081810360008301526132b78161327b565b9050919050565b7f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000602082015250565b600061331a603983612b66565b9150613325826132be565b604082019050919050565b600060208201905081810360008301526133498161330d565b9050919050565b7f455243373231413a206f776e657220696e646578206f7574206f6620626f756e60008201527f6473000000000000000000000000000000000000000000000000000000000000602082015250565b60006133ac602283612b66565b91506133b782613350565b604082019050919050565b600060208201905081810360008301526133db8161339f565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061341c82612c16565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561344f5761344e6133e2565b5b600182019050919050565b7f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060008201527f6f776e657220627920696e646578000000000000000000000000000000000000602082015250565b60006134b6602e83612b66565b91506134c18261345a565b604082019050919050565b600060208201905081810360008301526134e5816134a9565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000613522602083612b66565b915061352d826134ec565b602082019050919050565b6000602082019050818103600083015261355181613515565b9050919050565b7f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f7560008201527f6e64730000000000000000000000000000000000000000000000000000000000602082015250565b60006135b4602383612b66565b91506135bf82613558565b604082019050919050565b600060208201905081810360008301526135e3816135a7565b9050919050565b7f455243373231413a2062616c616e636520717565727920666f7220746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b6000613646602b83612b66565b9150613651826135ea565b604082019050919050565b6000602082019050818103600083015261367581613639565b9050919050565b600061368782612c16565b915061369283612c16565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156136c7576136c66133e2565b5b828201905092915050565b60006136dd82612c16565b91506136e883612c16565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613721576137206133e2565b5b828202905092915050565b7f455243373231413a20617070726f766520746f2063616c6c6572000000000000600082015250565b6000613762601a83612b66565b915061376d8261372c565b602082019050919050565b6000602082019050818103600083015261379181613755565b9050919050565b7f455243373231413a207472616e7366657220746f206e6f6e204552433732315260008201527f6563656976657220696d706c656d656e74657200000000000000000000000000602082015250565b60006137f4603383612b66565b91506137ff82613798565b604082019050919050565b60006020820190508181036000830152613823816137e7565b9050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b6000613886602f83612b66565b91506138918261382a565b604082019050919050565b600060208201905081810360008301526138b581613879565b9050919050565b600081905092915050565b60006138d282612b5b565b6138dc81856138bc565b93506138ec818560208601612b77565b80840191505092915050565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b600061392e6005836138bc565b9150613939826138f8565b600582019050919050565b600061395082856138c7565b915061395c82846138c7565b915061396782613921565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006139cf602683612b66565b91506139da82613973565b604082019050919050565b600060208201905081810360008301526139fe816139c2565b9050919050565b7f455243373231413a207472616e736665722063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b6000613a61603283612b66565b9150613a6c82613a05565b604082019050919050565b60006020820190508181036000830152613a9081613a54565b9050919050565b7f455243373231413a207472616e736665722066726f6d20696e636f727265637460008201527f206f776e65720000000000000000000000000000000000000000000000000000602082015250565b6000613af3602683612b66565b9150613afe82613a97565b604082019050919050565b60006020820190508181036000830152613b2281613ae6565b9050919050565b7f455243373231413a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000613b85602583612b66565b9150613b9082613b29565b604082019050919050565b60006020820190508181036000830152613bb481613b78565b9050919050565b60006fffffffffffffffffffffffffffffffff82169050919050565b6000613be282613bbb565b9150613bed83613bbb565b925082821015613c0057613bff6133e2565b5b828203905092915050565b6000613c1682613bbb565b9150613c2183613bbb565b9250826fffffffffffffffffffffffffffffffff03821115613c4657613c456133e2565b5b828201905092915050565b7f455243373231413a206f776e657220717565727920666f72206e6f6e6578697360008201527f74656e7420746f6b656e00000000000000000000000000000000000000000000602082015250565b6000613cad602a83612b66565b9150613cb882613c51565b604082019050919050565b60006020820190508181036000830152613cdc81613ca0565b9050919050565b6000613cee82612c16565b9150613cf983612c16565b925082821015613d0c57613d0b6133e2565b5b828203905092915050565b6000613d2282612c16565b91506000821415613d3657613d356133e2565b5b600182039050919050565b7f455243373231413a20756e61626c6520746f2064657465726d696e652074686560008201527f206f776e6572206f6620746f6b656e0000000000000000000000000000000000602082015250565b6000613d9d602f83612b66565b9150613da882613d41565b604082019050919050565b60006020820190508181036000830152613dcc81613d90565b9050919050565b600081519050919050565b600082825260208201905092915050565b6000613dfa82613dd3565b613e048185613dde565b9350613e14818560208601612b77565b613e1d81612baa565b840191505092915050565b6000608082019050613e3d6000830187612cab565b613e4a6020830186612cab565b613e576040830185612d41565b8181036060830152613e698184613def565b905095945050505050565b600081519050613e8381612acc565b92915050565b600060208284031215613e9f57613e9e612a96565b5b6000613ead84828501613e74565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000613ef082612c16565b9150613efb83612c16565b925082613f0b57613f0a613eb6565b5b828204905092915050565b6000613f2182612c16565b9150613f2c83612c16565b925082613f3c57613f3b613eb6565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f455243373231413a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b6000613fd2602183612b66565b9150613fdd82613f76565b604082019050919050565b6000602082019050818103600083015261400181613fc5565b9050919050565b7f455243373231413a20746f6b656e20616c7265616479206d696e746564000000600082015250565b600061403e601d83612b66565b915061404982614008565b602082019050919050565b6000602082019050818103600083015261406d81614031565b9050919050565b7f455243373231413a207175616e7469747920746f206d696e7420746f6f20686960008201527f6768000000000000000000000000000000000000000000000000000000000000602082015250565b60006140d0602283612b66565b91506140db82614074565b604082019050919050565b600060208201905081810360008301526140ff816140c3565b905091905056fea264697066735822122066168d2052dcccc0d070940f52c7335a3d20dfc19a07c07d5f8e339b7a4cbd5f64736f6c634300080c0033

Deployed Bytecode

0x6080604052600436106101cd5760003560e01c80636c0360eb116100f7578063a0712d6811610095578063cce132d111610064578063cce132d114610665578063d7224ba014610690578063e985e9c5146106bb578063f2fde38b146106f8576101cd565b8063a0712d68146105ba578063a22cb465146105d6578063b88d4fde146105ff578063c87b56dd14610628576101cd565b806379c9cb7b116100d157806379c9cb7b146105125780638da5cb5b1461053b57806391b7f5ed1461056657806395d89b411461058f576101cd565b80636c0360eb1461049357806370a08231146104be578063715018a6146104fb576101cd565b806332cb6b0c1161016f5780634f6ccce71161013e5780634f6ccce7146103c557806355f804b3146104025780636352211e1461042b578063676dd56314610468576101cd565b806332cb6b0c146103315780633b4c4b251461035c5780633ccfd60b1461038557806342842e0e1461039c576101cd565b8063095ea7b3116101ab578063095ea7b31461027757806318160ddd146102a057806323b872dd146102cb5780632f745c59146102f4576101cd565b806301ffc9a7146101d257806306fdde031461020f578063081812fc1461023a575b600080fd5b3480156101de57600080fd5b506101f960048036038101906101f49190612af8565b610721565b6040516102069190612b40565b60405180910390f35b34801561021b57600080fd5b5061022461086b565b6040516102319190612bf4565b60405180910390f35b34801561024657600080fd5b50610261600480360381019061025c9190612c4c565b6108fd565b60405161026e9190612cba565b60405180910390f35b34801561028357600080fd5b5061029e60048036038101906102999190612d01565b610982565b005b3480156102ac57600080fd5b506102b5610a9b565b6040516102c29190612d50565b60405180910390f35b3480156102d757600080fd5b506102f260048036038101906102ed9190612d6b565b610aa4565b005b34801561030057600080fd5b5061031b60048036038101906103169190612d01565b610ab4565b6040516103289190612d50565b60405180910390f35b34801561033d57600080fd5b50610346610cb2565b6040516103539190612d50565b60405180910390f35b34801561036857600080fd5b50610383600480360381019061037e9190612c4c565b610cb8565b005b34801561039157600080fd5b5061039a610d3e565b005b3480156103a857600080fd5b506103c360048036038101906103be9190612d6b565b610dfa565b005b3480156103d157600080fd5b506103ec60048036038101906103e79190612c4c565b610e1a565b6040516103f99190612d50565b60405180910390f35b34801561040e57600080fd5b5061042960048036038101906104249190612ef3565b610e6d565b005b34801561043757600080fd5b50610452600480360381019061044d9190612c4c565b610f03565b60405161045f9190612cba565b60405180910390f35b34801561047457600080fd5b5061047d610f19565b60405161048a9190612d50565b60405180910390f35b34801561049f57600080fd5b506104a8610f1f565b6040516104b59190612bf4565b60405180910390f35b3480156104ca57600080fd5b506104e560048036038101906104e09190612f3c565b610fad565b6040516104f29190612d50565b60405180910390f35b34801561050757600080fd5b50610510611096565b005b34801561051e57600080fd5b5061053960048036038101906105349190612c4c565b61111e565b005b34801561054757600080fd5b506105506111a4565b60405161055d9190612cba565b60405180910390f35b34801561057257600080fd5b5061058d60048036038101906105889190612c4c565b6111ce565b005b34801561059b57600080fd5b506105a4611254565b6040516105b19190612bf4565b60405180910390f35b6105d460048036038101906105cf9190612c4c565b6112e6565b005b3480156105e257600080fd5b506105fd60048036038101906105f89190612f95565b611349565b005b34801561060b57600080fd5b5061062660048036038101906106219190613076565b6114ca565b005b34801561063457600080fd5b5061064f600480360381019061064a9190612c4c565b611526565b60405161065c9190612bf4565b60405180910390f35b34801561067157600080fd5b5061067a6115cd565b6040516106879190612d50565b60405180910390f35b34801561069c57600080fd5b506106a56115d3565b6040516106b29190612d50565b60405180910390f35b3480156106c757600080fd5b506106e260048036038101906106dd91906130f9565b6115d9565b6040516106ef9190612b40565b60405180910390f35b34801561070457600080fd5b5061071f600480360381019061071a9190612f3c565b61166d565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806107ec57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061085457507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610864575061086382611765565b5b9050919050565b60606001805461087a90613168565b80601f01602080910402602001604051908101604052809291908181526020018280546108a690613168565b80156108f35780601f106108c8576101008083540402835291602001916108f3565b820191906000526020600020905b8154815290600101906020018083116108d657829003601f168201915b5050505050905090565b6000610908826117cf565b610947576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161093e9061320c565b60405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061098d82610f03565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156109fe576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109f59061329e565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610a1d6117dc565b73ffffffffffffffffffffffffffffffffffffffff161480610a4c5750610a4b81610a466117dc565b6115d9565b5b610a8b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a8290613330565b60405180910390fd5b610a968383836117e4565b505050565b60008054905090565b610aaf838383611896565b505050565b6000610abf83610fad565b8210610b00576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610af7906133c2565b60405180910390fd5b6000610b0a610a9b565b905060008060005b83811015610c70576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614610c0457806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610c5c5786841415610c4d578195505050505050610cac565b8380610c5890613411565b9450505b508080610c6890613411565b915050610b12565b506040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ca3906134cc565b60405180910390fd5b92915050565b600a5481565b610cc06117dc565b73ffffffffffffffffffffffffffffffffffffffff16610cde6111a4565b73ffffffffffffffffffffffffffffffffffffffff1614610d34576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d2b90613538565b60405180910390fd5b80600a8190555050565b610d466117dc565b73ffffffffffffffffffffffffffffffffffffffff16610d646111a4565b73ffffffffffffffffffffffffffffffffffffffff1614610dba576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610db190613538565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050610df857600080fd5b565b610e15838383604051806020016040528060008152506114ca565b505050565b6000610e24610a9b565b8210610e65576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e5c906135ca565b60405180910390fd5b819050919050565b610e756117dc565b73ffffffffffffffffffffffffffffffffffffffff16610e936111a4565b73ffffffffffffffffffffffffffffffffffffffff1614610ee9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ee090613538565b60405180910390fd5b80600c9080519060200190610eff9291906129af565b5050565b6000610f0e82611e4f565b600001519050919050565b60095481565b600c8054610f2c90613168565b80601f0160208091040260200160405190810160405280929190818152602001828054610f5890613168565b8015610fa55780601f10610f7a57610100808354040283529160200191610fa5565b820191906000526020600020905b815481529060010190602001808311610f8857829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561101e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110159061365c565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b61109e6117dc565b73ffffffffffffffffffffffffffffffffffffffff166110bc6111a4565b73ffffffffffffffffffffffffffffffffffffffff1614611112576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161110990613538565b60405180910390fd5b61111c6000612052565b565b6111266117dc565b73ffffffffffffffffffffffffffffffffffffffff166111446111a4565b73ffffffffffffffffffffffffffffffffffffffff161461119a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161119190613538565b60405180910390fd5b80600b8190555050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6111d66117dc565b73ffffffffffffffffffffffffffffffffffffffff166111f46111a4565b73ffffffffffffffffffffffffffffffffffffffff161461124a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161124190613538565b60405180910390fd5b8060098190555050565b60606002805461126390613168565b80601f016020809104026020016040519081016040528092919081815260200182805461128f90613168565b80156112dc5780601f106112b1576101008083540402835291602001916112dc565b820191906000526020600020905b8154815290600101906020018083116112bf57829003601f168201915b5050505050905090565b6000811180156112f85750600b548111155b61130157600080fd5b600a548161130d610a9b565b611317919061367c565b111561132257600080fd5b8060095461133091906136d2565b34101561133c57600080fd5b6113463382612118565b50565b6113516117dc565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156113bf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113b690613778565b60405180910390fd5b80600660006113cc6117dc565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166114796117dc565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516114be9190612b40565b60405180910390a35050565b6114d5848484611896565b6114e184848484612136565b611520576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115179061380a565b60405180910390fd5b50505050565b6060611531826117cf565b611570576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115679061389c565b60405180910390fd5b600061157a6122be565b9050600081511161159a57604051806020016040528060008152506115c5565b806115a484612350565b6040516020016115b5929190613944565b6040516020818303038152906040525b915050919050565b600b5481565b60075481565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6116756117dc565b73ffffffffffffffffffffffffffffffffffffffff166116936111a4565b73ffffffffffffffffffffffffffffffffffffffff16146116e9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116e090613538565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611759576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611750906139e5565b60405180910390fd5b61176281612052565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6000805482109050919050565b600033905090565b826005600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60006118a182611e4f565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff166118c86117dc565b73ffffffffffffffffffffffffffffffffffffffff16148061192457506118ed6117dc565b73ffffffffffffffffffffffffffffffffffffffff1661190c846108fd565b73ffffffffffffffffffffffffffffffffffffffff16145b80611940575061193f826000015161193a6117dc565b6115d9565b5b905080611982576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161197990613a77565b60405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff16146119f4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119eb90613b09565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611a64576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a5b90613b9b565b60405180910390fd5b611a7185858560016124b1565b611a8160008484600001516117e4565b6001600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff16611aef9190613bd7565b92506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff1602179055506001600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff16611b939190613c0b565b92506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060405180604001604052808573ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506003600085815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055509050506000600184611c99919061367c565b9050600073ffffffffffffffffffffffffffffffffffffffff166003600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415611ddf57611d0f816117cf565b15611dde576040518060400160405280846000015173ffffffffffffffffffffffffffffffffffffffff168152602001846020015167ffffffffffffffff168152506003600083815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055509050505b5b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611e4786868660016124b7565b505050505050565b611e57612a35565b611e60826117cf565b611e9f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e9690613cc3565b60405180910390fd5b60007f000000000000000000000000000000000000000000000000000000000000000a8310611f035760017f000000000000000000000000000000000000000000000000000000000000000a84611ef69190613ce3565b611f00919061367c565b90505b60008390505b818110612011576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614611ffd5780935050505061204d565b50808061200990613d17565b915050611f09565b506040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161204490613db3565b60405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6121328282604051806020016040528060008152506124bd565b5050565b60006121578473ffffffffffffffffffffffffffffffffffffffff1661299c565b156122b1578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026121806117dc565b8786866040518563ffffffff1660e01b81526004016121a29493929190613e28565b6020604051808303816000875af19250505080156121de57506040513d601f19601f820116820180604052508101906121db9190613e89565b60015b612261573d806000811461220e576040519150601f19603f3d011682016040523d82523d6000602084013e612213565b606091505b50600081511415612259576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122509061380a565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506122b6565b600190505b949350505050565b6060600c80546122cd90613168565b80601f01602080910402602001604051908101604052809291908181526020018280546122f990613168565b80156123465780601f1061231b57610100808354040283529160200191612346565b820191906000526020600020905b81548152906001019060200180831161232957829003601f168201915b5050505050905090565b60606000821415612398576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506124ac565b600082905060005b600082146123ca5780806123b390613411565b915050600a826123c39190613ee5565b91506123a0565b60008167ffffffffffffffff8111156123e6576123e5612dc8565b5b6040519080825280601f01601f1916602001820160405280156124185781602001600182028036833780820191505090505b5090505b600085146124a5576001826124319190613ce3565b9150600a856124409190613f16565b603061244c919061367c565b60f81b81838151811061246257612461613f47565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561249e9190613ee5565b945061241c565b8093505050505b919050565b50505050565b50505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612533576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161252a90613fe8565b60405180910390fd5b61253c816117cf565b1561257c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161257390614054565b60405180910390fd5b7f000000000000000000000000000000000000000000000000000000000000000a8311156125df576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125d6906140e6565b60405180910390fd5b6125ec60008583866124b1565b6000600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206040518060400160405290816000820160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff1681526020016000820160109054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff1681525050905060405180604001604052808583600001516126e99190613c0b565b6fffffffffffffffffffffffffffffffff1681526020018583602001516127109190613c0b565b6fffffffffffffffffffffffffffffffff16815250600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008201518160000160006101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060208201518160000160106101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555090505060405180604001604052808673ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506003600084815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550905050600082905060005b8581101561297f57818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461291f6000888488612136565b61295e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129559061380a565b60405180910390fd5b818061296990613411565b925050808061297790613411565b9150506128ae565b508060008190555061299460008785886124b7565b505050505050565b600080823b905060008111915050919050565b8280546129bb90613168565b90600052602060002090601f0160209004810192826129dd5760008555612a24565b82601f106129f657805160ff1916838001178555612a24565b82800160010185558215612a24579182015b82811115612a23578251825591602001919060010190612a08565b5b509050612a319190612a6f565b5090565b6040518060400160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681525090565b5b80821115612a88576000816000905550600101612a70565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b612ad581612aa0565b8114612ae057600080fd5b50565b600081359050612af281612acc565b92915050565b600060208284031215612b0e57612b0d612a96565b5b6000612b1c84828501612ae3565b91505092915050565b60008115159050919050565b612b3a81612b25565b82525050565b6000602082019050612b556000830184612b31565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612b95578082015181840152602081019050612b7a565b83811115612ba4576000848401525b50505050565b6000601f19601f8301169050919050565b6000612bc682612b5b565b612bd08185612b66565b9350612be0818560208601612b77565b612be981612baa565b840191505092915050565b60006020820190508181036000830152612c0e8184612bbb565b905092915050565b6000819050919050565b612c2981612c16565b8114612c3457600080fd5b50565b600081359050612c4681612c20565b92915050565b600060208284031215612c6257612c61612a96565b5b6000612c7084828501612c37565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612ca482612c79565b9050919050565b612cb481612c99565b82525050565b6000602082019050612ccf6000830184612cab565b92915050565b612cde81612c99565b8114612ce957600080fd5b50565b600081359050612cfb81612cd5565b92915050565b60008060408385031215612d1857612d17612a96565b5b6000612d2685828601612cec565b9250506020612d3785828601612c37565b9150509250929050565b612d4a81612c16565b82525050565b6000602082019050612d656000830184612d41565b92915050565b600080600060608486031215612d8457612d83612a96565b5b6000612d9286828701612cec565b9350506020612da386828701612cec565b9250506040612db486828701612c37565b9150509250925092565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b612e0082612baa565b810181811067ffffffffffffffff82111715612e1f57612e1e612dc8565b5b80604052505050565b6000612e32612a8c565b9050612e3e8282612df7565b919050565b600067ffffffffffffffff821115612e5e57612e5d612dc8565b5b612e6782612baa565b9050602081019050919050565b82818337600083830152505050565b6000612e96612e9184612e43565b612e28565b905082815260208101848484011115612eb257612eb1612dc3565b5b612ebd848285612e74565b509392505050565b600082601f830112612eda57612ed9612dbe565b5b8135612eea848260208601612e83565b91505092915050565b600060208284031215612f0957612f08612a96565b5b600082013567ffffffffffffffff811115612f2757612f26612a9b565b5b612f3384828501612ec5565b91505092915050565b600060208284031215612f5257612f51612a96565b5b6000612f6084828501612cec565b91505092915050565b612f7281612b25565b8114612f7d57600080fd5b50565b600081359050612f8f81612f69565b92915050565b60008060408385031215612fac57612fab612a96565b5b6000612fba85828601612cec565b9250506020612fcb85828601612f80565b9150509250929050565b600067ffffffffffffffff821115612ff057612fef612dc8565b5b612ff982612baa565b9050602081019050919050565b600061301961301484612fd5565b612e28565b90508281526020810184848401111561303557613034612dc3565b5b613040848285612e74565b509392505050565b600082601f83011261305d5761305c612dbe565b5b813561306d848260208601613006565b91505092915050565b600080600080608085870312156130905761308f612a96565b5b600061309e87828801612cec565b94505060206130af87828801612cec565b93505060406130c087828801612c37565b925050606085013567ffffffffffffffff8111156130e1576130e0612a9b565b5b6130ed87828801613048565b91505092959194509250565b600080604083850312156131105761310f612a96565b5b600061311e85828601612cec565b925050602061312f85828601612cec565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061318057607f821691505b6020821081141561319457613193613139565b5b50919050565b7f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560008201527f78697374656e7420746f6b656e00000000000000000000000000000000000000602082015250565b60006131f6602d83612b66565b91506132018261319a565b604082019050919050565b60006020820190508181036000830152613225816131e9565b9050919050565b7f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60008201527f6572000000000000000000000000000000000000000000000000000000000000602082015250565b6000613288602283612b66565b91506132938261322c565b604082019050919050565b600060208201905081810360008301526132b78161327b565b9050919050565b7f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000602082015250565b600061331a603983612b66565b9150613325826132be565b604082019050919050565b600060208201905081810360008301526133498161330d565b9050919050565b7f455243373231413a206f776e657220696e646578206f7574206f6620626f756e60008201527f6473000000000000000000000000000000000000000000000000000000000000602082015250565b60006133ac602283612b66565b91506133b782613350565b604082019050919050565b600060208201905081810360008301526133db8161339f565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061341c82612c16565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561344f5761344e6133e2565b5b600182019050919050565b7f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060008201527f6f776e657220627920696e646578000000000000000000000000000000000000602082015250565b60006134b6602e83612b66565b91506134c18261345a565b604082019050919050565b600060208201905081810360008301526134e5816134a9565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000613522602083612b66565b915061352d826134ec565b602082019050919050565b6000602082019050818103600083015261355181613515565b9050919050565b7f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f7560008201527f6e64730000000000000000000000000000000000000000000000000000000000602082015250565b60006135b4602383612b66565b91506135bf82613558565b604082019050919050565b600060208201905081810360008301526135e3816135a7565b9050919050565b7f455243373231413a2062616c616e636520717565727920666f7220746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b6000613646602b83612b66565b9150613651826135ea565b604082019050919050565b6000602082019050818103600083015261367581613639565b9050919050565b600061368782612c16565b915061369283612c16565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156136c7576136c66133e2565b5b828201905092915050565b60006136dd82612c16565b91506136e883612c16565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613721576137206133e2565b5b828202905092915050565b7f455243373231413a20617070726f766520746f2063616c6c6572000000000000600082015250565b6000613762601a83612b66565b915061376d8261372c565b602082019050919050565b6000602082019050818103600083015261379181613755565b9050919050565b7f455243373231413a207472616e7366657220746f206e6f6e204552433732315260008201527f6563656976657220696d706c656d656e74657200000000000000000000000000602082015250565b60006137f4603383612b66565b91506137ff82613798565b604082019050919050565b60006020820190508181036000830152613823816137e7565b9050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b6000613886602f83612b66565b91506138918261382a565b604082019050919050565b600060208201905081810360008301526138b581613879565b9050919050565b600081905092915050565b60006138d282612b5b565b6138dc81856138bc565b93506138ec818560208601612b77565b80840191505092915050565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b600061392e6005836138bc565b9150613939826138f8565b600582019050919050565b600061395082856138c7565b915061395c82846138c7565b915061396782613921565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006139cf602683612b66565b91506139da82613973565b604082019050919050565b600060208201905081810360008301526139fe816139c2565b9050919050565b7f455243373231413a207472616e736665722063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b6000613a61603283612b66565b9150613a6c82613a05565b604082019050919050565b60006020820190508181036000830152613a9081613a54565b9050919050565b7f455243373231413a207472616e736665722066726f6d20696e636f727265637460008201527f206f776e65720000000000000000000000000000000000000000000000000000602082015250565b6000613af3602683612b66565b9150613afe82613a97565b604082019050919050565b60006020820190508181036000830152613b2281613ae6565b9050919050565b7f455243373231413a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000613b85602583612b66565b9150613b9082613b29565b604082019050919050565b60006020820190508181036000830152613bb481613b78565b9050919050565b60006fffffffffffffffffffffffffffffffff82169050919050565b6000613be282613bbb565b9150613bed83613bbb565b925082821015613c0057613bff6133e2565b5b828203905092915050565b6000613c1682613bbb565b9150613c2183613bbb565b9250826fffffffffffffffffffffffffffffffff03821115613c4657613c456133e2565b5b828201905092915050565b7f455243373231413a206f776e657220717565727920666f72206e6f6e6578697360008201527f74656e7420746f6b656e00000000000000000000000000000000000000000000602082015250565b6000613cad602a83612b66565b9150613cb882613c51565b604082019050919050565b60006020820190508181036000830152613cdc81613ca0565b9050919050565b6000613cee82612c16565b9150613cf983612c16565b925082821015613d0c57613d0b6133e2565b5b828203905092915050565b6000613d2282612c16565b91506000821415613d3657613d356133e2565b5b600182039050919050565b7f455243373231413a20756e61626c6520746f2064657465726d696e652074686560008201527f206f776e6572206f6620746f6b656e0000000000000000000000000000000000602082015250565b6000613d9d602f83612b66565b9150613da882613d41565b604082019050919050565b60006020820190508181036000830152613dcc81613d90565b9050919050565b600081519050919050565b600082825260208201905092915050565b6000613dfa82613dd3565b613e048185613dde565b9350613e14818560208601612b77565b613e1d81612baa565b840191505092915050565b6000608082019050613e3d6000830187612cab565b613e4a6020830186612cab565b613e576040830185612d41565b8181036060830152613e698184613def565b905095945050505050565b600081519050613e8381612acc565b92915050565b600060208284031215613e9f57613e9e612a96565b5b6000613ead84828501613e74565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000613ef082612c16565b9150613efb83612c16565b925082613f0b57613f0a613eb6565b5b828204905092915050565b6000613f2182612c16565b9150613f2c83612c16565b925082613f3c57613f3b613eb6565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f455243373231413a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b6000613fd2602183612b66565b9150613fdd82613f76565b604082019050919050565b6000602082019050818103600083015261400181613fc5565b9050919050565b7f455243373231413a20746f6b656e20616c7265616479206d696e746564000000600082015250565b600061403e601d83612b66565b915061404982614008565b602082019050919050565b6000602082019050818103600083015261406d81614031565b9050919050565b7f455243373231413a207175616e7469747920746f206d696e7420746f6f20686960008201527f6768000000000000000000000000000000000000000000000000000000000000602082015250565b60006140d0602283612b66565b91506140db82614074565b604082019050919050565b600060208201905081810360008301526140ff816140c3565b905091905056fea264697066735822122066168d2052dcccc0d070940f52c7335a3d20dfc19a07c07d5f8e339b7a4cbd5f64736f6c634300080c0033

Deployed Bytecode Sourcemap

39656:1213:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24744:370;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26470:94;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28004:204;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27567:379;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;23305:94;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28854:142;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;23936:744;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39752:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40534:96;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;40754:112;;;;;;;;;;;;;:::i;:::-;;29059:157;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;23468:177;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40225:102;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;26293:118;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39702:43;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39827:26;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25170:211;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38736:103;;;;;;;;;;;;;:::i;:::-;;40435:91;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;38085:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40335:92;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;26625:98;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39944:273;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;28272:274;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;29279:311;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;26786:403;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39791:29;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33694:43;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28609:186;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38994:238;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;24744:370;24871:4;24916:25;24901:40;;;:11;:40;;;;:99;;;;24967:33;24952:48;;;:11;:48;;;;24901:99;:160;;;;25026:35;25011:50;;;:11;:50;;;;24901:160;:207;;;;25072:36;25096:11;25072:23;:36::i;:::-;24901:207;24887:221;;24744:370;;;:::o;26470:94::-;26524:13;26553:5;26546:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26470:94;:::o;28004:204::-;28072:7;28096:16;28104:7;28096;:16::i;:::-;28088:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;28178:15;:24;28194:7;28178:24;;;;;;;;;;;;;;;;;;;;;28171:31;;28004:204;;;:::o;27567:379::-;27636:13;27652:24;27668:7;27652:15;:24::i;:::-;27636:40;;27697:5;27691:11;;:2;:11;;;;27683:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;27782:5;27766:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;27791:37;27808:5;27815:12;:10;:12::i;:::-;27791:16;:37::i;:::-;27766:62;27750:153;;;;;;;;;;;;:::i;:::-;;;;;;;;;27912:28;27921:2;27925:7;27934:5;27912:8;:28::i;:::-;27629:317;27567:379;;:::o;23305:94::-;23358:7;23381:12;;23374:19;;23305:94;:::o;28854:142::-;28962:28;28972:4;28978:2;28982:7;28962:9;:28::i;:::-;28854:142;;;:::o;23936:744::-;24045:7;24080:16;24090:5;24080:9;:16::i;:::-;24072:5;:24;24064:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;24142:22;24167:13;:11;:13::i;:::-;24142:38;;24187:19;24217:25;24267:9;24262:350;24286:14;24282:1;:18;24262:350;;;24316:31;24350:11;:14;24362:1;24350:14;;;;;;;;;;;24316:48;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24403:1;24377:28;;:9;:14;;;:28;;;24373:89;;24438:9;:14;;;24418:34;;24373:89;24495:5;24474:26;;:17;:26;;;24470:135;;;24532:5;24517:11;:20;24513:59;;;24559:1;24552:8;;;;;;;;;24513:59;24582:13;;;;;:::i;:::-;;;;24470:135;24307:305;24302:3;;;;;:::i;:::-;;;;24262:350;;;;24618:56;;;;;;;;;;:::i;:::-;;;;;;;;23936:744;;;;;:::o;39752:32::-;;;;:::o;40534:96::-;38316:12;:10;:12::i;:::-;38305:23;;:7;:5;:7::i;:::-;:23;;;38297:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;40613:9:::1;40600:10;:22;;;;40534:96:::0;:::o;40754:112::-;38316:12;:10;:12::i;:::-;38305:23;;:7;:5;:7::i;:::-;:23;;;38297:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;40818:10:::1;40810:24;;:47;40835:21;40810:47;;;;;;;;;;;;;;;;;;;;;;;40802:56;;;::::0;::::1;;40754:112::o:0;29059:157::-;29171:39;29188:4;29194:2;29198:7;29171:39;;;;;;;;;;;;:16;:39::i;:::-;29059:157;;;:::o;23468:177::-;23535:7;23567:13;:11;:13::i;:::-;23559:5;:21;23551:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;23634:5;23627:12;;23468:177;;;:::o;40225:102::-;38316:12;:10;:12::i;:::-;38305:23;;:7;:5;:7::i;:::-;:23;;;38297:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;40309:10:::1;40299:7;:20;;;;;;;;;;;;:::i;:::-;;40225:102:::0;:::o;26293:118::-;26357:7;26380:20;26392:7;26380:11;:20::i;:::-;:25;;;26373:32;;26293:118;;;:::o;39702:43::-;;;;:::o;39827:26::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;25170:211::-;25234:7;25275:1;25258:19;;:5;:19;;;;25250:75;;;;;;;;;;;;:::i;:::-;;;;;;;;;25347:12;:19;25360:5;25347:19;;;;;;;;;;;;;;;:27;;;;;;;;;;;;25339:36;;25332:43;;25170:211;;;:::o;38736:103::-;38316:12;:10;:12::i;:::-;38305:23;;:7;:5;:7::i;:::-;:23;;;38297:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;38801:30:::1;38828:1;38801:18;:30::i;:::-;38736:103::o:0;40435:91::-;38316:12;:10;:12::i;:::-;38305:23;;:7;:5;:7::i;:::-;:23;;;38297:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;40512:6:::1;40500:9;:18;;;;40435:91:::0;:::o;38085:87::-;38131:7;38158:6;;;;;;;;;;;38151:13;;38085:87;:::o;40335:92::-;38316:12;:10;:12::i;:::-;38305:23;;:7;:5;:7::i;:::-;:23;;;38297:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;40411:8:::1;40399:9;:20;;;;40335:92:::0;:::o;26625:98::-;26681:13;26710:7;26703:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26625:98;:::o;39944:273::-;40023:1;40011:9;:13;:39;;;;;40041:9;;40028;:22;;40011:39;40003:48;;;;;;40099:10;;40086:9;40070:13;:11;:13::i;:::-;:25;;;;:::i;:::-;:39;;40062:48;;;;;;40154:9;40142;;:21;;;;:::i;:::-;40129:9;:34;;40121:43;;;;;;40177:32;40187:10;40199:9;40177;:32::i;:::-;39944:273;:::o;28272:274::-;28375:12;:10;:12::i;:::-;28363:24;;:8;:24;;;;28355:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;28472:8;28427:18;:32;28446:12;:10;:12::i;:::-;28427:32;;;;;;;;;;;;;;;:42;28460:8;28427:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;28521:8;28492:48;;28507:12;:10;:12::i;:::-;28492:48;;;28531:8;28492:48;;;;;;:::i;:::-;;;;;;;;28272:274;;:::o;29279:311::-;29416:28;29426:4;29432:2;29436:7;29416:9;:28::i;:::-;29467:48;29490:4;29496:2;29500:7;29509:5;29467:22;:48::i;:::-;29451:133;;;;;;;;;;;;:::i;:::-;;;;;;;;;29279:311;;;;:::o;26786:403::-;26884:13;26925:16;26933:7;26925;:16::i;:::-;26909:97;;;;;;;;;;;;:::i;:::-;;;;;;;;;27015:21;27039:10;:8;:10::i;:::-;27015:34;;27094:1;27076:7;27070:21;:25;:113;;;;;;;;;;;;;;;;;27131:7;27140:18;:7;:16;:18::i;:::-;27114:54;;;;;;;;;:::i;:::-;;;;;;;;;;;;;27070:113;27056:127;;;26786:403;;;:::o;39791:29::-;;;;:::o;33694:43::-;;;;:::o;28609:186::-;28731:4;28754:18;:25;28773:5;28754:25;;;;;;;;;;;;;;;:35;28780:8;28754:35;;;;;;;;;;;;;;;;;;;;;;;;;28747:42;;28609:186;;;;:::o;38994:238::-;38316:12;:10;:12::i;:::-;38305:23;;:7;:5;:7::i;:::-;:23;;;38297:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;39117:1:::1;39097:22;;:8;:22;;;;39075:110;;;;;;;;;;;;:::i;:::-;;;;;;;;;39196:28;39215:8;39196:18;:28::i;:::-;38994:238:::0;:::o;8316:207::-;8446:4;8490:25;8475:40;;;:11;:40;;;;8468:47;;8316:207;;;:::o;29829:105::-;29886:4;29916:12;;29906:7;:22;29899:29;;29829:105;;;:::o;17715:98::-;17768:7;17795:10;17788:17;;17715:98;:::o;33516:172::-;33640:2;33613:15;:24;33629:7;33613:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;33674:7;33670:2;33654:28;;33663:5;33654:28;;;;;;;;;;;;33516:172;;;:::o;31881:1529::-;31978:35;32016:20;32028:7;32016:11;:20::i;:::-;31978:58;;32045:22;32087:13;:18;;;32071:34;;:12;:10;:12::i;:::-;:34;;;:81;;;;32140:12;:10;:12::i;:::-;32116:36;;:20;32128:7;32116:11;:20::i;:::-;:36;;;32071:81;:142;;;;32163:50;32180:13;:18;;;32200:12;:10;:12::i;:::-;32163:16;:50::i;:::-;32071:142;32045:169;;32239:17;32223:101;;;;;;;;;;;;:::i;:::-;;;;;;;;;32371:4;32349:26;;:13;:18;;;:26;;;32333:98;;;;;;;;;;;;:::i;:::-;;;;;;;;;32460:1;32446:16;;:2;:16;;;;32438:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;32513:43;32535:4;32541:2;32545:7;32554:1;32513:21;:43::i;:::-;32613:49;32630:1;32634:7;32643:13;:18;;;32613:8;:49::i;:::-;32701:1;32671:12;:18;32684:4;32671:18;;;;;;;;;;;;;;;:26;;;:31;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;32737:1;32709:12;:16;32722:2;32709:16;;;;;;;;;;;;;;;:24;;;:29;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;32768:43;;;;;;;;32783:2;32768:43;;;;;;32794:15;32768:43;;;;;32745:11;:20;32757:7;32745:20;;;;;;;;;;;:66;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33039:19;33071:1;33061:7;:11;;;;:::i;:::-;33039:33;;33124:1;33083:43;;:11;:24;33095:11;33083:24;;;;;;;;;;;:29;;;;;;;;;;;;:43;;;33079:236;;;33141:20;33149:11;33141:7;:20::i;:::-;33137:171;;;33201:97;;;;;;;;33228:13;:18;;;33201:97;;;;;;33259:13;:28;;;33201:97;;;;;33174:11;:24;33186:11;33174:24;;;;;;;;;;;:124;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33137:171;33079:236;33347:7;33343:2;33328:27;;33337:4;33328:27;;;;;;;;;;;;33362:42;33383:4;33389:2;33393:7;33402:1;33362:20;:42::i;:::-;31971:1439;;;31881:1529;;;:::o;25633:606::-;25709:21;;:::i;:::-;25750:16;25758:7;25750;:16::i;:::-;25742:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;25822:26;25870:12;25859:7;:23;25855:93;;25939:1;25924:12;25914:7;:22;;;;:::i;:::-;:26;;;;:::i;:::-;25893:47;;25855:93;25961:12;25976:7;25961:22;;25956:212;25993:18;25985:4;:26;25956:212;;26030:31;26064:11;:17;26076:4;26064:17;;;;;;;;;;;26030:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26120:1;26094:28;;:9;:14;;;:28;;;26090:71;;26142:9;26135:16;;;;;;;26090:71;26021:147;26013:6;;;;;:::i;:::-;;;;25956:212;;;;26176:57;;;;;;;;;;:::i;:::-;;;;;;;;25633:606;;;;:::o;39392:191::-;39466:16;39485:6;;;;;;;;;;;39466:25;;39511:8;39502:6;;:17;;;;;;;;;;;;;;;;;;39566:8;39535:40;;39556:8;39535:40;;;;;;;;;;;;39455:128;39392:191;:::o;29940:98::-;30005:27;30015:2;30019:8;30005:27;;;;;;;;;;;;:9;:27::i;:::-;29940:98;;:::o;35231:690::-;35368:4;35385:15;:2;:13;;;:15::i;:::-;35381:535;;;35440:2;35424:36;;;35461:12;:10;:12::i;:::-;35475:4;35481:7;35490:5;35424:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;35411:464;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35672:1;35655:6;:13;:18;35651:215;;;35688:61;;;;;;;;;;:::i;:::-;;;;;;;;35651:215;35834:6;35828:13;35819:6;35815:2;35811:15;35804:38;35411:464;35556:45;;;35546:55;;;:6;:55;;;;35539:62;;;;;35381:535;35904:4;35897:11;;35231:690;;;;;;;:::o;40638:108::-;40698:13;40731:7;40724:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40638:108;:::o;18238:723::-;18294:13;18524:1;18515:5;:10;18511:53;;;18542:10;;;;;;;;;;;;;;;;;;;;;18511:53;18574:12;18589:5;18574:20;;18605:14;18630:78;18645:1;18637:4;:9;18630:78;;18663:8;;;;;:::i;:::-;;;;18694:2;18686:10;;;;;:::i;:::-;;;18630:78;;;18718:19;18750:6;18740:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18718:39;;18768:154;18784:1;18775:5;:10;18768:154;;18812:1;18802:11;;;;;:::i;:::-;;;18879:2;18871:5;:10;;;;:::i;:::-;18858:2;:24;;;;:::i;:::-;18845:39;;18828:6;18835;18828:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;18908:2;18899:11;;;;;:::i;:::-;;;18768:154;;;18946:6;18932:21;;;;;18238:723;;;;:::o;36383:141::-;;;;;:::o;36910:140::-;;;;;:::o;30377:1272::-;30482:20;30505:12;;30482:35;;30546:1;30532:16;;:2;:16;;;;30524:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;30723:21;30731:12;30723:7;:21::i;:::-;30722:22;30714:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;30805:12;30793:8;:24;;30785:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;30865:61;30895:1;30899:2;30903:12;30917:8;30865:21;:61::i;:::-;30935:30;30968:12;:16;30981:2;30968:16;;;;;;;;;;;;;;;30935:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31010:119;;;;;;;;31060:8;31030:11;:19;;;:39;;;;:::i;:::-;31010:119;;;;;;31113:8;31078:11;:24;;;:44;;;;:::i;:::-;31010:119;;;;;30991:12;:16;31004:2;30991:16;;;;;;;;;;;;;;;:138;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31164:43;;;;;;;;31179:2;31164:43;;;;;;31190:15;31164:43;;;;;31136:11;:25;31148:12;31136:25;;;;;;;;;;;:71;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31216:20;31239:12;31216:35;;31265:9;31260:281;31284:8;31280:1;:12;31260:281;;;31338:12;31334:2;31313:38;;31330:1;31313:38;;;;;;;;;;;;31378:59;31409:1;31413:2;31417:12;31431:5;31378:22;:59::i;:::-;31360:150;;;;;;;;;;;;:::i;:::-;;;;;;;;;31519:14;;;;;:::i;:::-;;;;31294:3;;;;;:::i;:::-;;;;31260:281;;;;31564:12;31549;:27;;;;31583:60;31612:1;31616:2;31620:12;31634:8;31583:20;:60::i;:::-;30475:1174;;;30377:1272;;;:::o;9294:387::-;9354:4;9562:12;9629:7;9617:20;9609:28;;9672:1;9665:4;:8;9658:15;;;9294:387;;;:::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:117::-;6024:1;6021;6014:12;6038:117;6147:1;6144;6137:12;6161:180;6209:77;6206:1;6199:88;6306:4;6303:1;6296:15;6330:4;6327:1;6320:15;6347:281;6430:27;6452:4;6430:27;:::i;:::-;6422:6;6418:40;6560:6;6548:10;6545:22;6524:18;6512:10;6509:34;6506:62;6503:88;;;6571:18;;:::i;:::-;6503:88;6611:10;6607:2;6600:22;6390:238;6347:281;;:::o;6634:129::-;6668:6;6695:20;;:::i;:::-;6685:30;;6724:33;6752:4;6744:6;6724:33;:::i;:::-;6634:129;;;:::o;6769:308::-;6831:4;6921:18;6913:6;6910:30;6907:56;;;6943:18;;:::i;:::-;6907:56;6981:29;7003:6;6981:29;:::i;:::-;6973:37;;7065:4;7059;7055:15;7047:23;;6769:308;;;:::o;7083:154::-;7167:6;7162:3;7157;7144:30;7229:1;7220:6;7215:3;7211:16;7204:27;7083:154;;;:::o;7243:412::-;7321:5;7346:66;7362:49;7404:6;7362:49;:::i;:::-;7346:66;:::i;:::-;7337:75;;7435:6;7428:5;7421:21;7473:4;7466:5;7462:16;7511:3;7502:6;7497:3;7493:16;7490:25;7487:112;;;7518:79;;:::i;:::-;7487:112;7608:41;7642:6;7637:3;7632;7608:41;:::i;:::-;7327:328;7243:412;;;;;:::o;7675:340::-;7731:5;7780:3;7773:4;7765:6;7761:17;7757:27;7747:122;;7788:79;;:::i;:::-;7747:122;7905:6;7892:20;7930:79;8005:3;7997:6;7990:4;7982:6;7978:17;7930:79;:::i;:::-;7921:88;;7737:278;7675:340;;;;:::o;8021:509::-;8090:6;8139:2;8127:9;8118:7;8114:23;8110:32;8107:119;;;8145:79;;:::i;:::-;8107:119;8293:1;8282:9;8278:17;8265:31;8323:18;8315:6;8312:30;8309:117;;;8345:79;;:::i;:::-;8309:117;8450:63;8505:7;8496:6;8485:9;8481:22;8450:63;:::i;:::-;8440:73;;8236:287;8021:509;;;;:::o;8536:329::-;8595:6;8644:2;8632:9;8623:7;8619:23;8615:32;8612:119;;;8650:79;;:::i;:::-;8612:119;8770:1;8795:53;8840:7;8831:6;8820:9;8816:22;8795:53;:::i;:::-;8785:63;;8741:117;8536:329;;;;:::o;8871:116::-;8941:21;8956:5;8941:21;:::i;:::-;8934:5;8931:32;8921:60;;8977:1;8974;8967:12;8921:60;8871:116;:::o;8993:133::-;9036:5;9074:6;9061:20;9052:29;;9090:30;9114:5;9090:30;:::i;:::-;8993:133;;;;:::o;9132:468::-;9197:6;9205;9254:2;9242:9;9233:7;9229:23;9225:32;9222:119;;;9260:79;;:::i;:::-;9222:119;9380:1;9405:53;9450:7;9441:6;9430:9;9426:22;9405:53;:::i;:::-;9395:63;;9351:117;9507:2;9533:50;9575:7;9566:6;9555:9;9551:22;9533:50;:::i;:::-;9523:60;;9478:115;9132:468;;;;;:::o;9606:307::-;9667:4;9757:18;9749:6;9746:30;9743:56;;;9779:18;;:::i;:::-;9743:56;9817:29;9839:6;9817:29;:::i;:::-;9809:37;;9901:4;9895;9891:15;9883:23;;9606:307;;;:::o;9919:410::-;9996:5;10021:65;10037:48;10078:6;10037:48;:::i;:::-;10021:65;:::i;:::-;10012:74;;10109:6;10102:5;10095:21;10147:4;10140:5;10136:16;10185:3;10176:6;10171:3;10167:16;10164:25;10161:112;;;10192:79;;:::i;:::-;10161:112;10282:41;10316:6;10311:3;10306;10282:41;:::i;:::-;10002:327;9919:410;;;;;:::o;10348:338::-;10403:5;10452:3;10445:4;10437:6;10433:17;10429:27;10419:122;;10460:79;;:::i;:::-;10419:122;10577:6;10564:20;10602:78;10676:3;10668:6;10661:4;10653:6;10649:17;10602:78;:::i;:::-;10593:87;;10409:277;10348:338;;;;:::o;10692:943::-;10787:6;10795;10803;10811;10860:3;10848:9;10839:7;10835:23;10831:33;10828:120;;;10867:79;;:::i;:::-;10828:120;10987:1;11012:53;11057:7;11048:6;11037:9;11033:22;11012:53;:::i;:::-;11002:63;;10958:117;11114:2;11140:53;11185:7;11176:6;11165:9;11161:22;11140:53;:::i;:::-;11130:63;;11085:118;11242:2;11268:53;11313:7;11304:6;11293:9;11289:22;11268:53;:::i;:::-;11258:63;;11213:118;11398:2;11387:9;11383:18;11370:32;11429:18;11421:6;11418:30;11415:117;;;11451:79;;:::i;:::-;11415:117;11556:62;11610:7;11601:6;11590:9;11586:22;11556:62;:::i;:::-;11546:72;;11341:287;10692:943;;;;;;;:::o;11641:474::-;11709:6;11717;11766:2;11754:9;11745:7;11741:23;11737:32;11734:119;;;11772:79;;:::i;:::-;11734:119;11892:1;11917:53;11962:7;11953:6;11942:9;11938:22;11917:53;:::i;:::-;11907:63;;11863:117;12019:2;12045:53;12090:7;12081:6;12070:9;12066:22;12045:53;:::i;:::-;12035:63;;11990:118;11641:474;;;;;:::o;12121:180::-;12169:77;12166:1;12159:88;12266:4;12263:1;12256:15;12290:4;12287:1;12280:15;12307:320;12351:6;12388:1;12382:4;12378:12;12368:22;;12435:1;12429:4;12425:12;12456:18;12446:81;;12512:4;12504:6;12500:17;12490:27;;12446:81;12574:2;12566:6;12563:14;12543:18;12540:38;12537:84;;;12593:18;;:::i;:::-;12537:84;12358:269;12307:320;;;:::o;12633:232::-;12773:34;12769:1;12761:6;12757:14;12750:58;12842:15;12837:2;12829:6;12825:15;12818:40;12633:232;:::o;12871:366::-;13013:3;13034:67;13098:2;13093:3;13034:67;:::i;:::-;13027:74;;13110:93;13199:3;13110:93;:::i;:::-;13228:2;13223:3;13219:12;13212:19;;12871:366;;;:::o;13243:419::-;13409:4;13447:2;13436:9;13432:18;13424:26;;13496:9;13490:4;13486:20;13482:1;13471:9;13467:17;13460:47;13524:131;13650:4;13524:131;:::i;:::-;13516:139;;13243:419;;;:::o;13668:221::-;13808:34;13804:1;13796:6;13792:14;13785:58;13877:4;13872:2;13864:6;13860:15;13853:29;13668:221;:::o;13895:366::-;14037:3;14058:67;14122:2;14117:3;14058:67;:::i;:::-;14051:74;;14134:93;14223:3;14134:93;:::i;:::-;14252:2;14247:3;14243:12;14236:19;;13895:366;;;:::o;14267:419::-;14433:4;14471:2;14460:9;14456:18;14448:26;;14520:9;14514:4;14510:20;14506:1;14495:9;14491:17;14484:47;14548:131;14674:4;14548:131;:::i;:::-;14540:139;;14267:419;;;:::o;14692:244::-;14832:34;14828:1;14820:6;14816:14;14809:58;14901:27;14896:2;14888:6;14884:15;14877:52;14692:244;:::o;14942:366::-;15084:3;15105:67;15169:2;15164:3;15105:67;:::i;:::-;15098:74;;15181:93;15270:3;15181:93;:::i;:::-;15299:2;15294:3;15290:12;15283:19;;14942:366;;;:::o;15314:419::-;15480:4;15518:2;15507:9;15503:18;15495:26;;15567:9;15561:4;15557:20;15553:1;15542:9;15538:17;15531:47;15595:131;15721:4;15595:131;:::i;:::-;15587:139;;15314:419;;;:::o;15739:221::-;15879:34;15875:1;15867:6;15863:14;15856:58;15948:4;15943:2;15935:6;15931:15;15924:29;15739:221;:::o;15966:366::-;16108:3;16129:67;16193:2;16188:3;16129:67;:::i;:::-;16122:74;;16205:93;16294:3;16205:93;:::i;:::-;16323:2;16318:3;16314:12;16307:19;;15966:366;;;:::o;16338:419::-;16504:4;16542:2;16531:9;16527:18;16519:26;;16591:9;16585:4;16581:20;16577:1;16566:9;16562:17;16555:47;16619:131;16745:4;16619:131;:::i;:::-;16611:139;;16338:419;;;:::o;16763:180::-;16811:77;16808:1;16801:88;16908:4;16905:1;16898:15;16932:4;16929:1;16922:15;16949:233;16988:3;17011:24;17029:5;17011:24;:::i;:::-;17002:33;;17057:66;17050:5;17047:77;17044:103;;;17127:18;;:::i;:::-;17044:103;17174:1;17167:5;17163:13;17156:20;;16949:233;;;:::o;17188:::-;17328:34;17324:1;17316:6;17312:14;17305:58;17397:16;17392:2;17384:6;17380:15;17373:41;17188:233;:::o;17427:366::-;17569:3;17590:67;17654:2;17649:3;17590:67;:::i;:::-;17583:74;;17666:93;17755:3;17666:93;:::i;:::-;17784:2;17779:3;17775:12;17768:19;;17427:366;;;:::o;17799:419::-;17965:4;18003:2;17992:9;17988:18;17980:26;;18052:9;18046:4;18042:20;18038:1;18027:9;18023:17;18016:47;18080:131;18206:4;18080:131;:::i;:::-;18072:139;;17799:419;;;:::o;18224:182::-;18364:34;18360:1;18352:6;18348:14;18341:58;18224:182;:::o;18412:366::-;18554:3;18575:67;18639:2;18634:3;18575:67;:::i;:::-;18568:74;;18651:93;18740:3;18651:93;:::i;:::-;18769:2;18764:3;18760:12;18753:19;;18412:366;;;:::o;18784:419::-;18950:4;18988:2;18977:9;18973:18;18965:26;;19037:9;19031:4;19027:20;19023:1;19012:9;19008:17;19001:47;19065:131;19191:4;19065:131;:::i;:::-;19057:139;;18784:419;;;:::o;19209:222::-;19349:34;19345:1;19337:6;19333:14;19326:58;19418:5;19413:2;19405:6;19401:15;19394:30;19209:222;:::o;19437:366::-;19579:3;19600:67;19664:2;19659:3;19600:67;:::i;:::-;19593:74;;19676:93;19765:3;19676:93;:::i;:::-;19794:2;19789:3;19785:12;19778:19;;19437:366;;;:::o;19809:419::-;19975:4;20013:2;20002:9;19998:18;19990:26;;20062:9;20056:4;20052:20;20048:1;20037:9;20033:17;20026:47;20090:131;20216:4;20090:131;:::i;:::-;20082:139;;19809:419;;;:::o;20234:230::-;20374:34;20370:1;20362:6;20358:14;20351:58;20443:13;20438:2;20430:6;20426:15;20419:38;20234:230;:::o;20470:366::-;20612:3;20633:67;20697:2;20692:3;20633:67;:::i;:::-;20626:74;;20709:93;20798:3;20709:93;:::i;:::-;20827:2;20822:3;20818:12;20811:19;;20470:366;;;:::o;20842:419::-;21008:4;21046:2;21035:9;21031:18;21023:26;;21095:9;21089:4;21085:20;21081:1;21070:9;21066:17;21059:47;21123:131;21249:4;21123:131;:::i;:::-;21115:139;;20842:419;;;:::o;21267:305::-;21307:3;21326:20;21344:1;21326:20;:::i;:::-;21321:25;;21360:20;21378:1;21360:20;:::i;:::-;21355:25;;21514:1;21446:66;21442:74;21439:1;21436:81;21433:107;;;21520:18;;:::i;:::-;21433:107;21564:1;21561;21557:9;21550:16;;21267:305;;;;:::o;21578:348::-;21618:7;21641:20;21659:1;21641:20;:::i;:::-;21636:25;;21675:20;21693:1;21675:20;:::i;:::-;21670:25;;21863:1;21795:66;21791:74;21788:1;21785:81;21780:1;21773:9;21766:17;21762:105;21759:131;;;21870:18;;:::i;:::-;21759:131;21918:1;21915;21911:9;21900:20;;21578:348;;;;:::o;21932:176::-;22072:28;22068:1;22060:6;22056:14;22049:52;21932:176;:::o;22114:366::-;22256:3;22277:67;22341:2;22336:3;22277:67;:::i;:::-;22270:74;;22353:93;22442:3;22353:93;:::i;:::-;22471:2;22466:3;22462:12;22455:19;;22114:366;;;:::o;22486:419::-;22652:4;22690:2;22679:9;22675:18;22667:26;;22739:9;22733:4;22729:20;22725:1;22714:9;22710:17;22703:47;22767:131;22893:4;22767:131;:::i;:::-;22759:139;;22486:419;;;:::o;22911:238::-;23051:34;23047:1;23039:6;23035:14;23028:58;23120:21;23115:2;23107:6;23103:15;23096:46;22911:238;:::o;23155:366::-;23297:3;23318:67;23382:2;23377:3;23318:67;:::i;:::-;23311:74;;23394:93;23483:3;23394:93;:::i;:::-;23512:2;23507:3;23503:12;23496:19;;23155:366;;;:::o;23527:419::-;23693:4;23731:2;23720:9;23716:18;23708:26;;23780:9;23774:4;23770:20;23766:1;23755:9;23751:17;23744:47;23808:131;23934:4;23808:131;:::i;:::-;23800:139;;23527:419;;;:::o;23952:234::-;24092:34;24088:1;24080:6;24076:14;24069:58;24161:17;24156:2;24148:6;24144:15;24137:42;23952:234;:::o;24192:366::-;24334:3;24355:67;24419:2;24414:3;24355:67;:::i;:::-;24348:74;;24431:93;24520:3;24431:93;:::i;:::-;24549:2;24544:3;24540:12;24533:19;;24192:366;;;:::o;24564:419::-;24730:4;24768:2;24757:9;24753:18;24745:26;;24817:9;24811:4;24807:20;24803:1;24792:9;24788:17;24781:47;24845:131;24971:4;24845:131;:::i;:::-;24837:139;;24564:419;;;:::o;24989:148::-;25091:11;25128:3;25113:18;;24989:148;;;;:::o;25143:377::-;25249:3;25277:39;25310:5;25277:39;:::i;:::-;25332:89;25414:6;25409:3;25332:89;:::i;:::-;25325:96;;25430:52;25475:6;25470:3;25463:4;25456:5;25452:16;25430:52;:::i;:::-;25507:6;25502:3;25498:16;25491:23;;25253:267;25143:377;;;;:::o;25526:155::-;25666:7;25662:1;25654:6;25650:14;25643:31;25526:155;:::o;25687:400::-;25847:3;25868:84;25950:1;25945:3;25868:84;:::i;:::-;25861:91;;25961:93;26050:3;25961:93;:::i;:::-;26079:1;26074:3;26070:11;26063:18;;25687:400;;;:::o;26093:701::-;26374:3;26396:95;26487:3;26478:6;26396:95;:::i;:::-;26389:102;;26508:95;26599:3;26590:6;26508:95;:::i;:::-;26501:102;;26620:148;26764:3;26620:148;:::i;:::-;26613:155;;26785:3;26778:10;;26093:701;;;;;:::o;26800:225::-;26940:34;26936:1;26928:6;26924:14;26917:58;27009:8;27004:2;26996:6;26992:15;26985:33;26800:225;:::o;27031:366::-;27173:3;27194:67;27258:2;27253:3;27194:67;:::i;:::-;27187:74;;27270:93;27359:3;27270:93;:::i;:::-;27388:2;27383:3;27379:12;27372:19;;27031:366;;;:::o;27403:419::-;27569:4;27607:2;27596:9;27592:18;27584:26;;27656:9;27650:4;27646:20;27642:1;27631:9;27627:17;27620:47;27684:131;27810:4;27684:131;:::i;:::-;27676:139;;27403:419;;;:::o;27828:237::-;27968:34;27964:1;27956:6;27952:14;27945:58;28037:20;28032:2;28024:6;28020:15;28013:45;27828:237;:::o;28071:366::-;28213:3;28234:67;28298:2;28293:3;28234:67;:::i;:::-;28227:74;;28310:93;28399:3;28310:93;:::i;:::-;28428:2;28423:3;28419:12;28412:19;;28071:366;;;:::o;28443:419::-;28609:4;28647:2;28636:9;28632:18;28624:26;;28696:9;28690:4;28686:20;28682:1;28671:9;28667:17;28660:47;28724:131;28850:4;28724:131;:::i;:::-;28716:139;;28443:419;;;:::o;28868:225::-;29008:34;29004:1;28996:6;28992:14;28985:58;29077:8;29072:2;29064:6;29060:15;29053:33;28868:225;:::o;29099:366::-;29241:3;29262:67;29326:2;29321:3;29262:67;:::i;:::-;29255:74;;29338:93;29427:3;29338:93;:::i;:::-;29456:2;29451:3;29447:12;29440:19;;29099:366;;;:::o;29471:419::-;29637:4;29675:2;29664:9;29660:18;29652:26;;29724:9;29718:4;29714:20;29710:1;29699:9;29695:17;29688:47;29752:131;29878:4;29752:131;:::i;:::-;29744:139;;29471:419;;;:::o;29896:224::-;30036:34;30032:1;30024:6;30020:14;30013:58;30105:7;30100:2;30092:6;30088:15;30081:32;29896:224;:::o;30126:366::-;30268:3;30289:67;30353:2;30348:3;30289:67;:::i;:::-;30282:74;;30365:93;30454:3;30365:93;:::i;:::-;30483:2;30478:3;30474:12;30467:19;;30126:366;;;:::o;30498:419::-;30664:4;30702:2;30691:9;30687:18;30679:26;;30751:9;30745:4;30741:20;30737:1;30726:9;30722:17;30715:47;30779:131;30905:4;30779:131;:::i;:::-;30771:139;;30498:419;;;:::o;30923:118::-;30960:7;31000:34;30993:5;30989:46;30978:57;;30923:118;;;:::o;31047:191::-;31087:4;31107:20;31125:1;31107:20;:::i;:::-;31102:25;;31141:20;31159:1;31141:20;:::i;:::-;31136:25;;31180:1;31177;31174:8;31171:34;;;31185:18;;:::i;:::-;31171:34;31230:1;31227;31223:9;31215:17;;31047:191;;;;:::o;31244:273::-;31284:3;31303:20;31321:1;31303:20;:::i;:::-;31298:25;;31337:20;31355:1;31337:20;:::i;:::-;31332:25;;31459:1;31423:34;31419:42;31416:1;31413:49;31410:75;;;31465:18;;:::i;:::-;31410:75;31509:1;31506;31502:9;31495:16;;31244:273;;;;:::o;31523:229::-;31663:34;31659:1;31651:6;31647:14;31640:58;31732:12;31727:2;31719:6;31715:15;31708:37;31523:229;:::o;31758:366::-;31900:3;31921:67;31985:2;31980:3;31921:67;:::i;:::-;31914:74;;31997:93;32086:3;31997:93;:::i;:::-;32115:2;32110:3;32106:12;32099:19;;31758:366;;;:::o;32130:419::-;32296:4;32334:2;32323:9;32319:18;32311:26;;32383:9;32377:4;32373:20;32369:1;32358:9;32354:17;32347:47;32411:131;32537:4;32411:131;:::i;:::-;32403:139;;32130:419;;;:::o;32555:191::-;32595:4;32615:20;32633:1;32615:20;:::i;:::-;32610:25;;32649:20;32667:1;32649:20;:::i;:::-;32644:25;;32688:1;32685;32682:8;32679:34;;;32693:18;;:::i;:::-;32679:34;32738:1;32735;32731:9;32723:17;;32555:191;;;;:::o;32752:171::-;32791:3;32814:24;32832:5;32814:24;:::i;:::-;32805:33;;32860:4;32853:5;32850:15;32847:41;;;32868:18;;:::i;:::-;32847:41;32915:1;32908:5;32904:13;32897:20;;32752:171;;;:::o;32929:234::-;33069:34;33065:1;33057:6;33053:14;33046:58;33138:17;33133:2;33125:6;33121:15;33114:42;32929:234;:::o;33169:366::-;33311:3;33332:67;33396:2;33391:3;33332:67;:::i;:::-;33325:74;;33408:93;33497:3;33408:93;:::i;:::-;33526:2;33521:3;33517:12;33510:19;;33169:366;;;:::o;33541:419::-;33707:4;33745:2;33734:9;33730:18;33722:26;;33794:9;33788:4;33784:20;33780:1;33769:9;33765:17;33758:47;33822:131;33948:4;33822:131;:::i;:::-;33814:139;;33541:419;;;:::o;33966:98::-;34017:6;34051:5;34045:12;34035:22;;33966:98;;;:::o;34070:168::-;34153:11;34187:6;34182:3;34175:19;34227:4;34222:3;34218:14;34203:29;;34070:168;;;;:::o;34244:360::-;34330:3;34358:38;34390:5;34358:38;:::i;:::-;34412:70;34475:6;34470:3;34412:70;:::i;:::-;34405:77;;34491:52;34536:6;34531:3;34524:4;34517:5;34513:16;34491:52;:::i;:::-;34568:29;34590:6;34568:29;:::i;:::-;34563:3;34559:39;34552:46;;34334:270;34244:360;;;;:::o;34610:640::-;34805:4;34843:3;34832:9;34828:19;34820:27;;34857:71;34925:1;34914:9;34910:17;34901:6;34857:71;:::i;:::-;34938:72;35006:2;34995:9;34991:18;34982:6;34938:72;:::i;:::-;35020;35088:2;35077:9;35073:18;35064:6;35020:72;:::i;:::-;35139:9;35133:4;35129:20;35124:2;35113:9;35109:18;35102:48;35167:76;35238:4;35229:6;35167:76;:::i;:::-;35159:84;;34610:640;;;;;;;:::o;35256:141::-;35312:5;35343:6;35337:13;35328:22;;35359:32;35385:5;35359:32;:::i;:::-;35256:141;;;;:::o;35403:349::-;35472:6;35521:2;35509:9;35500:7;35496:23;35492:32;35489:119;;;35527:79;;:::i;:::-;35489:119;35647:1;35672:63;35727:7;35718:6;35707:9;35703:22;35672:63;:::i;:::-;35662:73;;35618:127;35403:349;;;;:::o;35758:180::-;35806:77;35803:1;35796:88;35903:4;35900:1;35893:15;35927:4;35924:1;35917:15;35944:185;35984:1;36001:20;36019:1;36001:20;:::i;:::-;35996:25;;36035:20;36053:1;36035:20;:::i;:::-;36030:25;;36074:1;36064:35;;36079:18;;:::i;:::-;36064:35;36121:1;36118;36114:9;36109:14;;35944:185;;;;:::o;36135:176::-;36167:1;36184:20;36202:1;36184:20;:::i;:::-;36179:25;;36218:20;36236:1;36218:20;:::i;:::-;36213:25;;36257:1;36247:35;;36262:18;;:::i;:::-;36247:35;36303:1;36300;36296:9;36291:14;;36135:176;;;;:::o;36317:180::-;36365:77;36362:1;36355:88;36462:4;36459:1;36452:15;36486:4;36483:1;36476:15;36503:220;36643:34;36639:1;36631:6;36627:14;36620:58;36712:3;36707:2;36699:6;36695:15;36688:28;36503:220;:::o;36729:366::-;36871:3;36892:67;36956:2;36951:3;36892:67;:::i;:::-;36885:74;;36968:93;37057:3;36968:93;:::i;:::-;37086:2;37081:3;37077:12;37070:19;;36729:366;;;:::o;37101:419::-;37267:4;37305:2;37294:9;37290:18;37282:26;;37354:9;37348:4;37344:20;37340:1;37329:9;37325:17;37318:47;37382:131;37508:4;37382:131;:::i;:::-;37374:139;;37101:419;;;:::o;37526:179::-;37666:31;37662:1;37654:6;37650:14;37643:55;37526:179;:::o;37711:366::-;37853:3;37874:67;37938:2;37933:3;37874:67;:::i;:::-;37867:74;;37950:93;38039:3;37950:93;:::i;:::-;38068:2;38063:3;38059:12;38052:19;;37711:366;;;:::o;38083:419::-;38249:4;38287:2;38276:9;38272:18;38264:26;;38336:9;38330:4;38326:20;38322:1;38311:9;38307:17;38300:47;38364:131;38490:4;38364:131;:::i;:::-;38356:139;;38083:419;;;:::o;38508:221::-;38648:34;38644:1;38636:6;38632:14;38625:58;38717:4;38712:2;38704:6;38700:15;38693:29;38508:221;:::o;38735:366::-;38877:3;38898:67;38962:2;38957:3;38898:67;:::i;:::-;38891:74;;38974:93;39063:3;38974:93;:::i;:::-;39092:2;39087:3;39083:12;39076:19;;38735:366;;;:::o;39107:419::-;39273:4;39311:2;39300:9;39296:18;39288:26;;39360:9;39354:4;39350:20;39346:1;39335:9;39331:17;39324:47;39388:131;39514:4;39388:131;:::i;:::-;39380:139;;39107:419;;;:::o

Swarm Source

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