ETH Price: $3,488.64 (+7.44%)
Gas: 11 Gwei

Token

YAKUZZI NFT (YAKZ)
 

Overview

Max Total Supply

634 YAKZ

Holders

108

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Balance
1 YAKZ
0x38bdf7524c8ae36a2f11e6189b5877eaa2a953ab
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:
Yakuzzi

Compiler Version
v0.8.15+commit.e14f2714

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-07-25
*/

/**
 *Submitted for verification at Etherscan.io on 2022-07-11
*/

// 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(), "You are 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);
    }
}


pragma solidity ^0.8.0;

contract Yakuzzi is ERC721A, Ownable {
    uint256 public NFT_PRICE = 0 ether;
    uint256 public MAX_SUPPLY = 3000;
    uint256 public MAX_MINTS = 300;
    string public baseURI = "https://ipfs.io/ipfs/QmPB3DUAthfLgAWfsWtocZjm5kk9R4hQx2QpRLRrs1gMYh/";
    string public baseExtension = ".json";
     bool public paused = true;   
    
    constructor() ERC721A("YAKUZZI NFT", "YAKZ", MAX_MINTS, MAX_SUPPLY) {  
        _safeMint(_msgSender(), 1);
    }
    

    function MintFree(uint256 numTokens) public payable {
        require(!paused, "Paused");
        require(numTokens == 1);
        _safeMint(msg.sender, numTokens);
    }

    function AdminMint(uint256 numTokens) public payable onlyOwner {
        _safeMint(msg.sender, numTokens);
    }


    function pause(bool _state) public onlyOwner {
        paused = _state;
    }

    function setBaseURI(string memory newBaseURI) public onlyOwner {
        baseURI = newBaseURI;
    }
    function tokenURI(uint256 _tokenId)
        public
        view
        override
        returns (string memory)
    {
        require(_exists(_tokenId), "That token doesn't exist");
        return
            bytes(baseURI).length > 0
                ? string(
                    abi.encodePacked(
                        baseURI,
                        Strings.toString(_tokenId),
                        baseExtension
                    )
                )
                : "";
    }

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

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"uint256","name":"numTokens","type":"uint256"}],"name":"AdminMint","outputs":[],"stateMutability":"payable","type":"function"},{"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":[{"internalType":"uint256","name":"numTokens","type":"uint256"}],"name":"MintFree","outputs":[],"stateMutability":"payable","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":"baseExtension","outputs":[{"internalType":"string","name":"","type":"string"}],"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":[],"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":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"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"}]

60c06040526000805560006007556000600955610bb8600a5561012c600b556040518060800160405280604481526020016200561560449139600c908162000048919062000c70565b506040518060400160405280600581526020017f2e6a736f6e000000000000000000000000000000000000000000000000000000815250600d90816200008f919062000c70565b506001600e60006101000a81548160ff021916908315150217905550348015620000b857600080fd5b506040518060400160405280600b81526020017f59414b555a5a49204e46540000000000000000000000000000000000000000008152506040518060400160405280600481526020017f59414b5a00000000000000000000000000000000000000000000000000000000815250600b54600a546000811162000171576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620001689062000dde565b60405180910390fd5b60008211620001b7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620001ae9062000e76565b60405180910390fd5b8360019081620001c8919062000c70565b508260029081620001da919062000c70565b508160a081815250508060808181525050505050506200020f620002036200023760201b60201c565b6200023f60201b60201c565b62000231620002236200023760201b60201c565b60016200030560201b60201c565b62001399565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b620003278282604051806020016040528060008152506200032b60201b60201c565b5050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603620003a3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200039a9062000f0e565b60405180910390fd5b620003b4816200082160201b60201c565b15620003f7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620003ee9062000f80565b60405180910390fd5b60a0518311156200043f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620004369062001018565b60405180910390fd5b6200045460008583866200082e60201b60201c565b6000600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206040518060400160405290816000820160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff1681526020016000820160109054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff16815250509050604051806040016040528085836000015162000553919062001085565b6fffffffffffffffffffffffffffffffff1681526020018583602001516200057c919062001085565b6fffffffffffffffffffffffffffffffff16815250600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008201518160000160006101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060208201518160000160106101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555090505060405180604001604052808673ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506003600084815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550905050600082905060005b85811015620007fc57818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46200079460008884886200083460201b60201c565b620007d6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620007cd9062001148565b60405180910390fd5b8180620007e3906200116a565b9250508080620007f3906200116a565b9150506200071a565b5080600081905550620008196000878588620009dd60201b60201c565b505050505050565b6000805482109050919050565b50505050565b6000620008628473ffffffffffffffffffffffffffffffffffffffff16620009e360201b620016e11760201c565b15620009d0578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02620008946200023760201b60201c565b8786866040518563ffffffff1660e01b8152600401620008b89493929190620012b1565b6020604051808303816000875af1925050508015620008f757506040513d601f19601f82011682018060405250810190620008f4919062001367565b60015b6200097f573d80600081146200092a576040519150601f19603f3d011682016040523d82523d6000602084013e6200092f565b606091505b50600081510362000977576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200096e9062001148565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050620009d5565b600190505b949350505050565b50505050565b600080823b905060008111915050919050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168062000a7857607f821691505b60208210810362000a8e5762000a8d62000a30565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b60006008830262000af87fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000ab9565b62000b04868362000ab9565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b600062000b5162000b4b62000b458462000b1c565b62000b26565b62000b1c565b9050919050565b6000819050919050565b62000b6d8362000b30565b62000b8562000b7c8262000b58565b84845462000ac6565b825550505050565b600090565b62000b9c62000b8d565b62000ba981848462000b62565b505050565b5b8181101562000bd15762000bc560008262000b92565b60018101905062000baf565b5050565b601f82111562000c205762000bea8162000a94565b62000bf58462000aa9565b8101602085101562000c05578190505b62000c1d62000c148562000aa9565b83018262000bae565b50505b505050565b600082821c905092915050565b600062000c456000198460080262000c25565b1980831691505092915050565b600062000c60838362000c32565b9150826002028217905092915050565b62000c7b82620009f6565b67ffffffffffffffff81111562000c975762000c9662000a01565b5b62000ca3825462000a5f565b62000cb082828562000bd5565b600060209050601f83116001811462000ce8576000841562000cd3578287015190505b62000cdf858262000c52565b86555062000d4f565b601f19841662000cf88662000a94565b60005b8281101562000d225784890151825560018201915060208501945060208101905062000cfb565b8683101562000d42578489015162000d3e601f89168262000c32565b8355505b6001600288020188555050505b505050505050565b600082825260208201905092915050565b7f455243373231413a20636f6c6c656374696f6e206d757374206861766520612060008201527f6e6f6e7a65726f20737570706c79000000000000000000000000000000000000602082015250565b600062000dc6602e8362000d57565b915062000dd38262000d68565b604082019050919050565b6000602082019050818103600083015262000df98162000db7565b9050919050565b7f455243373231413a206d61782062617463682073697a65206d7573742062652060008201527f6e6f6e7a65726f00000000000000000000000000000000000000000000000000602082015250565b600062000e5e60278362000d57565b915062000e6b8262000e00565b604082019050919050565b6000602082019050818103600083015262000e918162000e4f565b9050919050565b7f455243373231413a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b600062000ef660218362000d57565b915062000f038262000e98565b604082019050919050565b6000602082019050818103600083015262000f298162000ee7565b9050919050565b7f455243373231413a20746f6b656e20616c7265616479206d696e746564000000600082015250565b600062000f68601d8362000d57565b915062000f758262000f30565b602082019050919050565b6000602082019050818103600083015262000f9b8162000f59565b9050919050565b7f455243373231413a207175616e7469747920746f206d696e7420746f6f20686960008201527f6768000000000000000000000000000000000000000000000000000000000000602082015250565b60006200100060228362000d57565b91506200100d8262000fa2565b604082019050919050565b60006020820190508181036000830152620010338162000ff1565b9050919050565b60006fffffffffffffffffffffffffffffffff82169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600062001092826200103a565b91506200109f836200103a565b9250826fffffffffffffffffffffffffffffffff03821115620010c757620010c662001056565b5b828201905092915050565b7f455243373231413a207472616e7366657220746f206e6f6e204552433732315260008201527f6563656976657220696d706c656d656e74657200000000000000000000000000602082015250565b60006200113060338362000d57565b91506200113d82620010d2565b604082019050919050565b60006020820190508181036000830152620011638162001121565b9050919050565b6000620011778262000b1c565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203620011ac57620011ab62001056565b5b600182019050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000620011e482620011b7565b9050919050565b620011f681620011d7565b82525050565b620012078162000b1c565b82525050565b600081519050919050565b600082825260208201905092915050565b60005b83811015620012495780820151818401526020810190506200122c565b8381111562001259576000848401525b50505050565b6000601f19601f8301169050919050565b60006200127d826200120d565b62001289818562001218565b93506200129b81856020860162001229565b620012a6816200125f565b840191505092915050565b6000608082019050620012c86000830187620011eb565b620012d76020830186620011eb565b620012e66040830185620011fc565b8181036060830152620012fa818462001270565b905095945050505050565b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b62001341816200130a565b81146200134d57600080fd5b50565b600081519050620013618162001336565b92915050565b60006020828403121562001380576200137f62001305565b5b6000620013908482850162001350565b91505092915050565b60805160a05161424b620013ca60003960008181611e4e01528181611e77015261247601526000505061424b6000f3fe6080604052600436106101cd5760003560e01c8063676dd563116100f7578063ad6ac81b11610095578063cce132d111610064578063cce132d11461066e578063d7224ba014610699578063e985e9c5146106c4578063f2fde38b14610701576101cd565b8063ad6ac81b146105c1578063b88d4fde146105dd578063c668286214610606578063c87b56dd14610631576101cd565b8063715018a6116100d1578063715018a61461052b5780638da5cb5b1461054257806395d89b411461056d578063a22cb46514610598576101cd565b8063676dd563146104985780636c0360eb146104c357806370a08231146104ee576101cd565b80632f745c591161016f5780634f6ccce71161013e5780634f6ccce7146103ca57806355f804b3146104075780635c975abb146104305780636352211e1461045b576101cd565b80632f745c591461031d57806332cb6b0c1461035a57806342842e0e14610385578063483f2b2b146103ae576101cd565b8063081812fc116101ab578063081812fc14610263578063095ea7b3146102a057806318160ddd146102c957806323b872dd146102f4576101cd565b806301ffc9a7146101d257806302329a291461020f57806306fdde0314610238575b600080fd5b3480156101de57600080fd5b506101f960048036038101906101f4919061293a565b61072a565b6040516102069190612982565b60405180910390f35b34801561021b57600080fd5b50610236600480360381019061023191906129c9565b610874565b005b34801561024457600080fd5b5061024d61090d565b60405161025a9190612a8f565b60405180910390f35b34801561026f57600080fd5b5061028a60048036038101906102859190612ae7565b61099f565b6040516102979190612b55565b60405180910390f35b3480156102ac57600080fd5b506102c760048036038101906102c29190612b9c565b610a24565b005b3480156102d557600080fd5b506102de610b3c565b6040516102eb9190612beb565b60405180910390f35b34801561030057600080fd5b5061031b60048036038101906103169190612c06565b610b45565b005b34801561032957600080fd5b50610344600480360381019061033f9190612b9c565b610b55565b6040516103519190612beb565b60405180910390f35b34801561036657600080fd5b5061036f610d51565b60405161037c9190612beb565b60405180910390f35b34801561039157600080fd5b506103ac60048036038101906103a79190612c06565b610d57565b005b6103c860048036038101906103c39190612ae7565b610d77565b005b3480156103d657600080fd5b506103f160048036038101906103ec9190612ae7565b610e00565b6040516103fe9190612beb565b60405180910390f35b34801561041357600080fd5b5061042e60048036038101906104299190612d8e565b610e53565b005b34801561043c57600080fd5b50610445610ee2565b6040516104529190612982565b60405180910390f35b34801561046757600080fd5b50610482600480360381019061047d9190612ae7565b610ef5565b60405161048f9190612b55565b60405180910390f35b3480156104a457600080fd5b506104ad610f0b565b6040516104ba9190612beb565b60405180910390f35b3480156104cf57600080fd5b506104d8610f11565b6040516104e59190612a8f565b60405180910390f35b3480156104fa57600080fd5b5061051560048036038101906105109190612dd7565b610f9f565b6040516105229190612beb565b60405180910390f35b34801561053757600080fd5b50610540611087565b005b34801561054e57600080fd5b5061055761110f565b6040516105649190612b55565b60405180910390f35b34801561057957600080fd5b50610582611139565b60405161058f9190612a8f565b60405180910390f35b3480156105a457600080fd5b506105bf60048036038101906105ba9190612e04565b6111cb565b005b6105db60048036038101906105d69190612ae7565b61134b565b005b3480156105e957600080fd5b5061060460048036038101906105ff9190612ee5565b6113b5565b005b34801561061257600080fd5b5061061b611411565b6040516106289190612a8f565b60405180910390f35b34801561063d57600080fd5b5061065860048036038101906106539190612ae7565b61149f565b6040516106659190612a8f565b60405180910390f35b34801561067a57600080fd5b5061068361154a565b6040516106909190612beb565b60405180910390f35b3480156106a557600080fd5b506106ae611550565b6040516106bb9190612beb565b60405180910390f35b3480156106d057600080fd5b506106eb60048036038101906106e69190612f68565b611556565b6040516106f89190612982565b60405180910390f35b34801561070d57600080fd5b5061072860048036038101906107239190612dd7565b6115ea565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806107f557507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061085d57507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061086d575061086c826116f4565b5b9050919050565b61087c61175e565b73ffffffffffffffffffffffffffffffffffffffff1661089a61110f565b73ffffffffffffffffffffffffffffffffffffffff16146108f0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108e790612ff4565b60405180910390fd5b80600e60006101000a81548160ff02191690831515021790555050565b60606001805461091c90613043565b80601f016020809104026020016040519081016040528092919081815260200182805461094890613043565b80156109955780601f1061096a57610100808354040283529160200191610995565b820191906000526020600020905b81548152906001019060200180831161097857829003601f168201915b5050505050905090565b60006109aa82611766565b6109e9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109e0906130e6565b60405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610a2f82610ef5565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610a9f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a9690613178565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610abe61175e565b73ffffffffffffffffffffffffffffffffffffffff161480610aed5750610aec81610ae761175e565b611556565b5b610b2c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b239061320a565b60405180910390fd5b610b37838383611773565b505050565b60008054905090565b610b50838383611825565b505050565b6000610b6083610f9f565b8210610ba1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b989061329c565b60405180910390fd5b6000610bab610b3c565b905060008060005b83811015610d0f576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614610ca557806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610cfb57868403610cec578195505050505050610d4b565b8380610cf7906132eb565b9450505b508080610d07906132eb565b915050610bb3565b506040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d42906133a5565b60405180910390fd5b92915050565b600a5481565b610d72838383604051806020016040528060008152506113b5565b505050565b610d7f61175e565b73ffffffffffffffffffffffffffffffffffffffff16610d9d61110f565b73ffffffffffffffffffffffffffffffffffffffff1614610df3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dea90612ff4565b60405180910390fd5b610dfd3382611ddc565b50565b6000610e0a610b3c565b8210610e4b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e4290613437565b60405180910390fd5b819050919050565b610e5b61175e565b73ffffffffffffffffffffffffffffffffffffffff16610e7961110f565b73ffffffffffffffffffffffffffffffffffffffff1614610ecf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ec690612ff4565b60405180910390fd5b80600c9081610ede9190613603565b5050565b600e60009054906101000a900460ff1681565b6000610f0082611dfa565b600001519050919050565b60095481565b600c8054610f1e90613043565b80601f0160208091040260200160405190810160405280929190818152602001828054610f4a90613043565b8015610f975780601f10610f6c57610100808354040283529160200191610f97565b820191906000526020600020905b815481529060010190602001808311610f7a57829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361100f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161100690613747565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b61108f61175e565b73ffffffffffffffffffffffffffffffffffffffff166110ad61110f565b73ffffffffffffffffffffffffffffffffffffffff1614611103576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110fa90612ff4565b60405180910390fd5b61110d6000611ffd565b565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606002805461114890613043565b80601f016020809104026020016040519081016040528092919081815260200182805461117490613043565b80156111c15780601f10611196576101008083540402835291602001916111c1565b820191906000526020600020905b8154815290600101906020018083116111a457829003601f168201915b5050505050905090565b6111d361175e565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611240576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611237906137b3565b60405180910390fd5b806006600061124d61175e565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166112fa61175e565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161133f9190612982565b60405180910390a35050565b600e60009054906101000a900460ff161561139b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113929061381f565b60405180910390fd5b600181146113a857600080fd5b6113b23382611ddc565b50565b6113c0848484611825565b6113cc848484846120c3565b61140b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611402906138b1565b60405180910390fd5b50505050565b600d805461141e90613043565b80601f016020809104026020016040519081016040528092919081815260200182805461144a90613043565b80156114975780601f1061146c57610100808354040283529160200191611497565b820191906000526020600020905b81548152906001019060200180831161147a57829003601f168201915b505050505081565b60606114aa82611766565b6114e9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114e09061391d565b60405180910390fd5b6000600c80546114f890613043565b9050116115145760405180602001604052806000815250611543565b600c61151f8361224a565b600d604051602001611533939291906139fc565b6040516020818303038152906040525b9050919050565b600b5481565b60075481565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6115f261175e565b73ffffffffffffffffffffffffffffffffffffffff1661161061110f565b73ffffffffffffffffffffffffffffffffffffffff1614611666576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161165d90612ff4565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036116d5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116cc90613a9f565b60405180910390fd5b6116de81611ffd565b50565b600080823b905060008111915050919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600033905090565b6000805482109050919050565b826005600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600061183082611dfa565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff1661185761175e565b73ffffffffffffffffffffffffffffffffffffffff1614806118b3575061187c61175e565b73ffffffffffffffffffffffffffffffffffffffff1661189b8461099f565b73ffffffffffffffffffffffffffffffffffffffff16145b806118cf57506118ce82600001516118c961175e565b611556565b5b905080611911576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161190890613b31565b60405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff1614611983576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161197a90613bc3565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16036119f2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119e990613c55565b60405180910390fd5b6119ff85858560016123aa565b611a0f6000848460000151611773565b6001600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff16611a7d9190613c91565b92506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff1602179055506001600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff16611b219190613cc5565b92506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060405180604001604052808573ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506003600085815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055509050506000600184611c279190613d0b565b9050600073ffffffffffffffffffffffffffffffffffffffff166003600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1603611d6c57611c9c81611766565b15611d6b576040518060400160405280846000015173ffffffffffffffffffffffffffffffffffffffff168152602001846020015167ffffffffffffffff168152506003600083815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055509050505b5b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611dd486868660016123b0565b505050505050565b611df68282604051806020016040528060008152506123b6565b5050565b611e02612894565b611e0b82611766565b611e4a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e4190613dd3565b60405180910390fd5b60007f00000000000000000000000000000000000000000000000000000000000000008310611eae5760017f000000000000000000000000000000000000000000000000000000000000000084611ea19190613df3565b611eab9190613d0b565b90505b60008390505b818110611fbc576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614611fa857809350505050611ff8565b508080611fb490613e27565b915050611eb4565b506040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fef90613ec2565b60405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60006120e48473ffffffffffffffffffffffffffffffffffffffff166116e1565b1561223d578373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261210d61175e565b8786866040518563ffffffff1660e01b815260040161212f9493929190613f37565b6020604051808303816000875af192505050801561216b57506040513d601f19601f820116820180604052508101906121689190613f98565b60015b6121ed573d806000811461219b576040519150601f19603f3d011682016040523d82523d6000602084013e6121a0565b606091505b5060008151036121e5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121dc906138b1565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612242565b600190505b949350505050565b606060008203612291576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506123a5565b600082905060005b600082146122c35780806122ac906132eb565b915050600a826122bc9190613ff4565b9150612299565b60008167ffffffffffffffff8111156122df576122de612c63565b5b6040519080825280601f01601f1916602001820160405280156123115781602001600182028036833780820191505090505b5090505b6000851461239e5760018261232a9190613df3565b9150600a856123399190614025565b60306123459190613d0b565b60f81b81838151811061235b5761235a614056565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856123979190613ff4565b9450612315565b8093505050505b919050565b50505050565b50505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff160361242b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612422906140f7565b60405180910390fd5b61243481611766565b15612474576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161246b90614163565b60405180910390fd5b7f00000000000000000000000000000000000000000000000000000000000000008311156124d7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124ce906141f5565b60405180910390fd5b6124e460008583866123aa565b6000600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206040518060400160405290816000820160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff1681526020016000820160109054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff1681525050905060405180604001604052808583600001516125e19190613cc5565b6fffffffffffffffffffffffffffffffff1681526020018583602001516126089190613cc5565b6fffffffffffffffffffffffffffffffff16815250600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008201518160000160006101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060208201518160000160106101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555090505060405180604001604052808673ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506003600084815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550905050600082905060005b8581101561287757818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461281760008884886120c3565b612856576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161284d906138b1565b60405180910390fd5b8180612861906132eb565b925050808061286f906132eb565b9150506127a6565b508060008190555061288c60008785886123b0565b505050505050565b6040518060400160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681525090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b612917816128e2565b811461292257600080fd5b50565b6000813590506129348161290e565b92915050565b6000602082840312156129505761294f6128d8565b5b600061295e84828501612925565b91505092915050565b60008115159050919050565b61297c81612967565b82525050565b60006020820190506129976000830184612973565b92915050565b6129a681612967565b81146129b157600080fd5b50565b6000813590506129c38161299d565b92915050565b6000602082840312156129df576129de6128d8565b5b60006129ed848285016129b4565b91505092915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612a30578082015181840152602081019050612a15565b83811115612a3f576000848401525b50505050565b6000601f19601f8301169050919050565b6000612a61826129f6565b612a6b8185612a01565b9350612a7b818560208601612a12565b612a8481612a45565b840191505092915050565b60006020820190508181036000830152612aa98184612a56565b905092915050565b6000819050919050565b612ac481612ab1565b8114612acf57600080fd5b50565b600081359050612ae181612abb565b92915050565b600060208284031215612afd57612afc6128d8565b5b6000612b0b84828501612ad2565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612b3f82612b14565b9050919050565b612b4f81612b34565b82525050565b6000602082019050612b6a6000830184612b46565b92915050565b612b7981612b34565b8114612b8457600080fd5b50565b600081359050612b9681612b70565b92915050565b60008060408385031215612bb357612bb26128d8565b5b6000612bc185828601612b87565b9250506020612bd285828601612ad2565b9150509250929050565b612be581612ab1565b82525050565b6000602082019050612c006000830184612bdc565b92915050565b600080600060608486031215612c1f57612c1e6128d8565b5b6000612c2d86828701612b87565b9350506020612c3e86828701612b87565b9250506040612c4f86828701612ad2565b9150509250925092565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b612c9b82612a45565b810181811067ffffffffffffffff82111715612cba57612cb9612c63565b5b80604052505050565b6000612ccd6128ce565b9050612cd98282612c92565b919050565b600067ffffffffffffffff821115612cf957612cf8612c63565b5b612d0282612a45565b9050602081019050919050565b82818337600083830152505050565b6000612d31612d2c84612cde565b612cc3565b905082815260208101848484011115612d4d57612d4c612c5e565b5b612d58848285612d0f565b509392505050565b600082601f830112612d7557612d74612c59565b5b8135612d85848260208601612d1e565b91505092915050565b600060208284031215612da457612da36128d8565b5b600082013567ffffffffffffffff811115612dc257612dc16128dd565b5b612dce84828501612d60565b91505092915050565b600060208284031215612ded57612dec6128d8565b5b6000612dfb84828501612b87565b91505092915050565b60008060408385031215612e1b57612e1a6128d8565b5b6000612e2985828601612b87565b9250506020612e3a858286016129b4565b9150509250929050565b600067ffffffffffffffff821115612e5f57612e5e612c63565b5b612e6882612a45565b9050602081019050919050565b6000612e88612e8384612e44565b612cc3565b905082815260208101848484011115612ea457612ea3612c5e565b5b612eaf848285612d0f565b509392505050565b600082601f830112612ecc57612ecb612c59565b5b8135612edc848260208601612e75565b91505092915050565b60008060008060808587031215612eff57612efe6128d8565b5b6000612f0d87828801612b87565b9450506020612f1e87828801612b87565b9350506040612f2f87828801612ad2565b925050606085013567ffffffffffffffff811115612f5057612f4f6128dd565b5b612f5c87828801612eb7565b91505092959194509250565b60008060408385031215612f7f57612f7e6128d8565b5b6000612f8d85828601612b87565b9250506020612f9e85828601612b87565b9150509250929050565b7f596f7520617265206e6f7420746865206f776e65720000000000000000000000600082015250565b6000612fde601583612a01565b9150612fe982612fa8565b602082019050919050565b6000602082019050818103600083015261300d81612fd1565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061305b57607f821691505b60208210810361306e5761306d613014565b5b50919050565b7f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560008201527f78697374656e7420746f6b656e00000000000000000000000000000000000000602082015250565b60006130d0602d83612a01565b91506130db82613074565b604082019050919050565b600060208201905081810360008301526130ff816130c3565b9050919050565b7f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60008201527f6572000000000000000000000000000000000000000000000000000000000000602082015250565b6000613162602283612a01565b915061316d82613106565b604082019050919050565b6000602082019050818103600083015261319181613155565b9050919050565b7f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000602082015250565b60006131f4603983612a01565b91506131ff82613198565b604082019050919050565b60006020820190508181036000830152613223816131e7565b9050919050565b7f455243373231413a206f776e657220696e646578206f7574206f6620626f756e60008201527f6473000000000000000000000000000000000000000000000000000000000000602082015250565b6000613286602283612a01565b91506132918261322a565b604082019050919050565b600060208201905081810360008301526132b581613279565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006132f682612ab1565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203613328576133276132bc565b5b600182019050919050565b7f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060008201527f6f776e657220627920696e646578000000000000000000000000000000000000602082015250565b600061338f602e83612a01565b915061339a82613333565b604082019050919050565b600060208201905081810360008301526133be81613382565b9050919050565b7f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f7560008201527f6e64730000000000000000000000000000000000000000000000000000000000602082015250565b6000613421602383612a01565b915061342c826133c5565b604082019050919050565b6000602082019050818103600083015261345081613414565b9050919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b6000600883026134b97fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8261347c565b6134c3868361347c565b95508019841693508086168417925050509392505050565b6000819050919050565b60006135006134fb6134f684612ab1565b6134db565b612ab1565b9050919050565b6000819050919050565b61351a836134e5565b61352e61352682613507565b848454613489565b825550505050565b600090565b613543613536565b61354e818484613511565b505050565b5b818110156135725761356760008261353b565b600181019050613554565b5050565b601f8211156135b75761358881613457565b6135918461346c565b810160208510156135a0578190505b6135b46135ac8561346c565b830182613553565b50505b505050565b600082821c905092915050565b60006135da600019846008026135bc565b1980831691505092915050565b60006135f383836135c9565b9150826002028217905092915050565b61360c826129f6565b67ffffffffffffffff81111561362557613624612c63565b5b61362f8254613043565b61363a828285613576565b600060209050601f83116001811461366d576000841561365b578287015190505b61366585826135e7565b8655506136cd565b601f19841661367b86613457565b60005b828110156136a35784890151825560018201915060208501945060208101905061367e565b868310156136c057848901516136bc601f8916826135c9565b8355505b6001600288020188555050505b505050505050565b7f455243373231413a2062616c616e636520717565727920666f7220746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b6000613731602b83612a01565b915061373c826136d5565b604082019050919050565b6000602082019050818103600083015261376081613724565b9050919050565b7f455243373231413a20617070726f766520746f2063616c6c6572000000000000600082015250565b600061379d601a83612a01565b91506137a882613767565b602082019050919050565b600060208201905081810360008301526137cc81613790565b9050919050565b7f5061757365640000000000000000000000000000000000000000000000000000600082015250565b6000613809600683612a01565b9150613814826137d3565b602082019050919050565b60006020820190508181036000830152613838816137fc565b9050919050565b7f455243373231413a207472616e7366657220746f206e6f6e204552433732315260008201527f6563656976657220696d706c656d656e74657200000000000000000000000000602082015250565b600061389b603383612a01565b91506138a68261383f565b604082019050919050565b600060208201905081810360008301526138ca8161388e565b9050919050565b7f5468617420746f6b656e20646f65736e27742065786973740000000000000000600082015250565b6000613907601883612a01565b9150613912826138d1565b602082019050919050565b60006020820190508181036000830152613936816138fa565b9050919050565b600081905092915050565b6000815461395581613043565b61395f818661393d565b9450600182166000811461397a576001811461398f576139c2565b60ff19831686528115158202860193506139c2565b61399885613457565b60005b838110156139ba5781548189015260018201915060208101905061399b565b838801955050505b50505092915050565b60006139d6826129f6565b6139e0818561393d565b93506139f0818560208601612a12565b80840191505092915050565b6000613a088286613948565b9150613a1482856139cb565b9150613a208284613948565b9150819050949350505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000613a89602683612a01565b9150613a9482613a2d565b604082019050919050565b60006020820190508181036000830152613ab881613a7c565b9050919050565b7f455243373231413a207472616e736665722063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b6000613b1b603283612a01565b9150613b2682613abf565b604082019050919050565b60006020820190508181036000830152613b4a81613b0e565b9050919050565b7f455243373231413a207472616e736665722066726f6d20696e636f727265637460008201527f206f776e65720000000000000000000000000000000000000000000000000000602082015250565b6000613bad602683612a01565b9150613bb882613b51565b604082019050919050565b60006020820190508181036000830152613bdc81613ba0565b9050919050565b7f455243373231413a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000613c3f602583612a01565b9150613c4a82613be3565b604082019050919050565b60006020820190508181036000830152613c6e81613c32565b9050919050565b60006fffffffffffffffffffffffffffffffff82169050919050565b6000613c9c82613c75565b9150613ca783613c75565b925082821015613cba57613cb96132bc565b5b828203905092915050565b6000613cd082613c75565b9150613cdb83613c75565b9250826fffffffffffffffffffffffffffffffff03821115613d0057613cff6132bc565b5b828201905092915050565b6000613d1682612ab1565b9150613d2183612ab1565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613d5657613d556132bc565b5b828201905092915050565b7f455243373231413a206f776e657220717565727920666f72206e6f6e6578697360008201527f74656e7420746f6b656e00000000000000000000000000000000000000000000602082015250565b6000613dbd602a83612a01565b9150613dc882613d61565b604082019050919050565b60006020820190508181036000830152613dec81613db0565b9050919050565b6000613dfe82612ab1565b9150613e0983612ab1565b925082821015613e1c57613e1b6132bc565b5b828203905092915050565b6000613e3282612ab1565b915060008203613e4557613e446132bc565b5b600182039050919050565b7f455243373231413a20756e61626c6520746f2064657465726d696e652074686560008201527f206f776e6572206f6620746f6b656e0000000000000000000000000000000000602082015250565b6000613eac602f83612a01565b9150613eb782613e50565b604082019050919050565b60006020820190508181036000830152613edb81613e9f565b9050919050565b600081519050919050565b600082825260208201905092915050565b6000613f0982613ee2565b613f138185613eed565b9350613f23818560208601612a12565b613f2c81612a45565b840191505092915050565b6000608082019050613f4c6000830187612b46565b613f596020830186612b46565b613f666040830185612bdc565b8181036060830152613f788184613efe565b905095945050505050565b600081519050613f928161290e565b92915050565b600060208284031215613fae57613fad6128d8565b5b6000613fbc84828501613f83565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000613fff82612ab1565b915061400a83612ab1565b92508261401a57614019613fc5565b5b828204905092915050565b600061403082612ab1565b915061403b83612ab1565b92508261404b5761404a613fc5565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f455243373231413a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b60006140e1602183612a01565b91506140ec82614085565b604082019050919050565b60006020820190508181036000830152614110816140d4565b9050919050565b7f455243373231413a20746f6b656e20616c7265616479206d696e746564000000600082015250565b600061414d601d83612a01565b915061415882614117565b602082019050919050565b6000602082019050818103600083015261417c81614140565b9050919050565b7f455243373231413a207175616e7469747920746f206d696e7420746f6f20686960008201527f6768000000000000000000000000000000000000000000000000000000000000602082015250565b60006141df602283612a01565b91506141ea82614183565b604082019050919050565b6000602082019050818103600083015261420e816141d2565b905091905056fea2646970667358221220c05ad6a045a3b6efeac6648f35c514e02ddf211f577e368a7ea338dfc457e93264736f6c634300080f003368747470733a2f2f697066732e696f2f697066732f516d5042334455417468664c674157667357746f635a6a6d356b6b395234685178325170524c52727331674d59682f

Deployed Bytecode

0x6080604052600436106101cd5760003560e01c8063676dd563116100f7578063ad6ac81b11610095578063cce132d111610064578063cce132d11461066e578063d7224ba014610699578063e985e9c5146106c4578063f2fde38b14610701576101cd565b8063ad6ac81b146105c1578063b88d4fde146105dd578063c668286214610606578063c87b56dd14610631576101cd565b8063715018a6116100d1578063715018a61461052b5780638da5cb5b1461054257806395d89b411461056d578063a22cb46514610598576101cd565b8063676dd563146104985780636c0360eb146104c357806370a08231146104ee576101cd565b80632f745c591161016f5780634f6ccce71161013e5780634f6ccce7146103ca57806355f804b3146104075780635c975abb146104305780636352211e1461045b576101cd565b80632f745c591461031d57806332cb6b0c1461035a57806342842e0e14610385578063483f2b2b146103ae576101cd565b8063081812fc116101ab578063081812fc14610263578063095ea7b3146102a057806318160ddd146102c957806323b872dd146102f4576101cd565b806301ffc9a7146101d257806302329a291461020f57806306fdde0314610238575b600080fd5b3480156101de57600080fd5b506101f960048036038101906101f4919061293a565b61072a565b6040516102069190612982565b60405180910390f35b34801561021b57600080fd5b50610236600480360381019061023191906129c9565b610874565b005b34801561024457600080fd5b5061024d61090d565b60405161025a9190612a8f565b60405180910390f35b34801561026f57600080fd5b5061028a60048036038101906102859190612ae7565b61099f565b6040516102979190612b55565b60405180910390f35b3480156102ac57600080fd5b506102c760048036038101906102c29190612b9c565b610a24565b005b3480156102d557600080fd5b506102de610b3c565b6040516102eb9190612beb565b60405180910390f35b34801561030057600080fd5b5061031b60048036038101906103169190612c06565b610b45565b005b34801561032957600080fd5b50610344600480360381019061033f9190612b9c565b610b55565b6040516103519190612beb565b60405180910390f35b34801561036657600080fd5b5061036f610d51565b60405161037c9190612beb565b60405180910390f35b34801561039157600080fd5b506103ac60048036038101906103a79190612c06565b610d57565b005b6103c860048036038101906103c39190612ae7565b610d77565b005b3480156103d657600080fd5b506103f160048036038101906103ec9190612ae7565b610e00565b6040516103fe9190612beb565b60405180910390f35b34801561041357600080fd5b5061042e60048036038101906104299190612d8e565b610e53565b005b34801561043c57600080fd5b50610445610ee2565b6040516104529190612982565b60405180910390f35b34801561046757600080fd5b50610482600480360381019061047d9190612ae7565b610ef5565b60405161048f9190612b55565b60405180910390f35b3480156104a457600080fd5b506104ad610f0b565b6040516104ba9190612beb565b60405180910390f35b3480156104cf57600080fd5b506104d8610f11565b6040516104e59190612a8f565b60405180910390f35b3480156104fa57600080fd5b5061051560048036038101906105109190612dd7565b610f9f565b6040516105229190612beb565b60405180910390f35b34801561053757600080fd5b50610540611087565b005b34801561054e57600080fd5b5061055761110f565b6040516105649190612b55565b60405180910390f35b34801561057957600080fd5b50610582611139565b60405161058f9190612a8f565b60405180910390f35b3480156105a457600080fd5b506105bf60048036038101906105ba9190612e04565b6111cb565b005b6105db60048036038101906105d69190612ae7565b61134b565b005b3480156105e957600080fd5b5061060460048036038101906105ff9190612ee5565b6113b5565b005b34801561061257600080fd5b5061061b611411565b6040516106289190612a8f565b60405180910390f35b34801561063d57600080fd5b5061065860048036038101906106539190612ae7565b61149f565b6040516106659190612a8f565b60405180910390f35b34801561067a57600080fd5b5061068361154a565b6040516106909190612beb565b60405180910390f35b3480156106a557600080fd5b506106ae611550565b6040516106bb9190612beb565b60405180910390f35b3480156106d057600080fd5b506106eb60048036038101906106e69190612f68565b611556565b6040516106f89190612982565b60405180910390f35b34801561070d57600080fd5b5061072860048036038101906107239190612dd7565b6115ea565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806107f557507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061085d57507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061086d575061086c826116f4565b5b9050919050565b61087c61175e565b73ffffffffffffffffffffffffffffffffffffffff1661089a61110f565b73ffffffffffffffffffffffffffffffffffffffff16146108f0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108e790612ff4565b60405180910390fd5b80600e60006101000a81548160ff02191690831515021790555050565b60606001805461091c90613043565b80601f016020809104026020016040519081016040528092919081815260200182805461094890613043565b80156109955780601f1061096a57610100808354040283529160200191610995565b820191906000526020600020905b81548152906001019060200180831161097857829003601f168201915b5050505050905090565b60006109aa82611766565b6109e9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109e0906130e6565b60405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610a2f82610ef5565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610a9f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a9690613178565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610abe61175e565b73ffffffffffffffffffffffffffffffffffffffff161480610aed5750610aec81610ae761175e565b611556565b5b610b2c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b239061320a565b60405180910390fd5b610b37838383611773565b505050565b60008054905090565b610b50838383611825565b505050565b6000610b6083610f9f565b8210610ba1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b989061329c565b60405180910390fd5b6000610bab610b3c565b905060008060005b83811015610d0f576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614610ca557806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610cfb57868403610cec578195505050505050610d4b565b8380610cf7906132eb565b9450505b508080610d07906132eb565b915050610bb3565b506040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d42906133a5565b60405180910390fd5b92915050565b600a5481565b610d72838383604051806020016040528060008152506113b5565b505050565b610d7f61175e565b73ffffffffffffffffffffffffffffffffffffffff16610d9d61110f565b73ffffffffffffffffffffffffffffffffffffffff1614610df3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dea90612ff4565b60405180910390fd5b610dfd3382611ddc565b50565b6000610e0a610b3c565b8210610e4b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e4290613437565b60405180910390fd5b819050919050565b610e5b61175e565b73ffffffffffffffffffffffffffffffffffffffff16610e7961110f565b73ffffffffffffffffffffffffffffffffffffffff1614610ecf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ec690612ff4565b60405180910390fd5b80600c9081610ede9190613603565b5050565b600e60009054906101000a900460ff1681565b6000610f0082611dfa565b600001519050919050565b60095481565b600c8054610f1e90613043565b80601f0160208091040260200160405190810160405280929190818152602001828054610f4a90613043565b8015610f975780601f10610f6c57610100808354040283529160200191610f97565b820191906000526020600020905b815481529060010190602001808311610f7a57829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361100f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161100690613747565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b61108f61175e565b73ffffffffffffffffffffffffffffffffffffffff166110ad61110f565b73ffffffffffffffffffffffffffffffffffffffff1614611103576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110fa90612ff4565b60405180910390fd5b61110d6000611ffd565b565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606002805461114890613043565b80601f016020809104026020016040519081016040528092919081815260200182805461117490613043565b80156111c15780601f10611196576101008083540402835291602001916111c1565b820191906000526020600020905b8154815290600101906020018083116111a457829003601f168201915b5050505050905090565b6111d361175e565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611240576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611237906137b3565b60405180910390fd5b806006600061124d61175e565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166112fa61175e565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161133f9190612982565b60405180910390a35050565b600e60009054906101000a900460ff161561139b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113929061381f565b60405180910390fd5b600181146113a857600080fd5b6113b23382611ddc565b50565b6113c0848484611825565b6113cc848484846120c3565b61140b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611402906138b1565b60405180910390fd5b50505050565b600d805461141e90613043565b80601f016020809104026020016040519081016040528092919081815260200182805461144a90613043565b80156114975780601f1061146c57610100808354040283529160200191611497565b820191906000526020600020905b81548152906001019060200180831161147a57829003601f168201915b505050505081565b60606114aa82611766565b6114e9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114e09061391d565b60405180910390fd5b6000600c80546114f890613043565b9050116115145760405180602001604052806000815250611543565b600c61151f8361224a565b600d604051602001611533939291906139fc565b6040516020818303038152906040525b9050919050565b600b5481565b60075481565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6115f261175e565b73ffffffffffffffffffffffffffffffffffffffff1661161061110f565b73ffffffffffffffffffffffffffffffffffffffff1614611666576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161165d90612ff4565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036116d5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116cc90613a9f565b60405180910390fd5b6116de81611ffd565b50565b600080823b905060008111915050919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600033905090565b6000805482109050919050565b826005600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600061183082611dfa565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff1661185761175e565b73ffffffffffffffffffffffffffffffffffffffff1614806118b3575061187c61175e565b73ffffffffffffffffffffffffffffffffffffffff1661189b8461099f565b73ffffffffffffffffffffffffffffffffffffffff16145b806118cf57506118ce82600001516118c961175e565b611556565b5b905080611911576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161190890613b31565b60405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff1614611983576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161197a90613bc3565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16036119f2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119e990613c55565b60405180910390fd5b6119ff85858560016123aa565b611a0f6000848460000151611773565b6001600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff16611a7d9190613c91565b92506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff1602179055506001600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff16611b219190613cc5565b92506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060405180604001604052808573ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506003600085815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055509050506000600184611c279190613d0b565b9050600073ffffffffffffffffffffffffffffffffffffffff166003600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1603611d6c57611c9c81611766565b15611d6b576040518060400160405280846000015173ffffffffffffffffffffffffffffffffffffffff168152602001846020015167ffffffffffffffff168152506003600083815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055509050505b5b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611dd486868660016123b0565b505050505050565b611df68282604051806020016040528060008152506123b6565b5050565b611e02612894565b611e0b82611766565b611e4a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e4190613dd3565b60405180910390fd5b60007f000000000000000000000000000000000000000000000000000000000000012c8310611eae5760017f000000000000000000000000000000000000000000000000000000000000012c84611ea19190613df3565b611eab9190613d0b565b90505b60008390505b818110611fbc576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614611fa857809350505050611ff8565b508080611fb490613e27565b915050611eb4565b506040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fef90613ec2565b60405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60006120e48473ffffffffffffffffffffffffffffffffffffffff166116e1565b1561223d578373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261210d61175e565b8786866040518563ffffffff1660e01b815260040161212f9493929190613f37565b6020604051808303816000875af192505050801561216b57506040513d601f19601f820116820180604052508101906121689190613f98565b60015b6121ed573d806000811461219b576040519150601f19603f3d011682016040523d82523d6000602084013e6121a0565b606091505b5060008151036121e5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121dc906138b1565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612242565b600190505b949350505050565b606060008203612291576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506123a5565b600082905060005b600082146122c35780806122ac906132eb565b915050600a826122bc9190613ff4565b9150612299565b60008167ffffffffffffffff8111156122df576122de612c63565b5b6040519080825280601f01601f1916602001820160405280156123115781602001600182028036833780820191505090505b5090505b6000851461239e5760018261232a9190613df3565b9150600a856123399190614025565b60306123459190613d0b565b60f81b81838151811061235b5761235a614056565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856123979190613ff4565b9450612315565b8093505050505b919050565b50505050565b50505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff160361242b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612422906140f7565b60405180910390fd5b61243481611766565b15612474576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161246b90614163565b60405180910390fd5b7f000000000000000000000000000000000000000000000000000000000000012c8311156124d7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124ce906141f5565b60405180910390fd5b6124e460008583866123aa565b6000600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206040518060400160405290816000820160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff1681526020016000820160109054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff1681525050905060405180604001604052808583600001516125e19190613cc5565b6fffffffffffffffffffffffffffffffff1681526020018583602001516126089190613cc5565b6fffffffffffffffffffffffffffffffff16815250600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008201518160000160006101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060208201518160000160106101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555090505060405180604001604052808673ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506003600084815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550905050600082905060005b8581101561287757818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461281760008884886120c3565b612856576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161284d906138b1565b60405180910390fd5b8180612861906132eb565b925050808061286f906132eb565b9150506127a6565b508060008190555061288c60008785886123b0565b505050505050565b6040518060400160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681525090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b612917816128e2565b811461292257600080fd5b50565b6000813590506129348161290e565b92915050565b6000602082840312156129505761294f6128d8565b5b600061295e84828501612925565b91505092915050565b60008115159050919050565b61297c81612967565b82525050565b60006020820190506129976000830184612973565b92915050565b6129a681612967565b81146129b157600080fd5b50565b6000813590506129c38161299d565b92915050565b6000602082840312156129df576129de6128d8565b5b60006129ed848285016129b4565b91505092915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612a30578082015181840152602081019050612a15565b83811115612a3f576000848401525b50505050565b6000601f19601f8301169050919050565b6000612a61826129f6565b612a6b8185612a01565b9350612a7b818560208601612a12565b612a8481612a45565b840191505092915050565b60006020820190508181036000830152612aa98184612a56565b905092915050565b6000819050919050565b612ac481612ab1565b8114612acf57600080fd5b50565b600081359050612ae181612abb565b92915050565b600060208284031215612afd57612afc6128d8565b5b6000612b0b84828501612ad2565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612b3f82612b14565b9050919050565b612b4f81612b34565b82525050565b6000602082019050612b6a6000830184612b46565b92915050565b612b7981612b34565b8114612b8457600080fd5b50565b600081359050612b9681612b70565b92915050565b60008060408385031215612bb357612bb26128d8565b5b6000612bc185828601612b87565b9250506020612bd285828601612ad2565b9150509250929050565b612be581612ab1565b82525050565b6000602082019050612c006000830184612bdc565b92915050565b600080600060608486031215612c1f57612c1e6128d8565b5b6000612c2d86828701612b87565b9350506020612c3e86828701612b87565b9250506040612c4f86828701612ad2565b9150509250925092565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b612c9b82612a45565b810181811067ffffffffffffffff82111715612cba57612cb9612c63565b5b80604052505050565b6000612ccd6128ce565b9050612cd98282612c92565b919050565b600067ffffffffffffffff821115612cf957612cf8612c63565b5b612d0282612a45565b9050602081019050919050565b82818337600083830152505050565b6000612d31612d2c84612cde565b612cc3565b905082815260208101848484011115612d4d57612d4c612c5e565b5b612d58848285612d0f565b509392505050565b600082601f830112612d7557612d74612c59565b5b8135612d85848260208601612d1e565b91505092915050565b600060208284031215612da457612da36128d8565b5b600082013567ffffffffffffffff811115612dc257612dc16128dd565b5b612dce84828501612d60565b91505092915050565b600060208284031215612ded57612dec6128d8565b5b6000612dfb84828501612b87565b91505092915050565b60008060408385031215612e1b57612e1a6128d8565b5b6000612e2985828601612b87565b9250506020612e3a858286016129b4565b9150509250929050565b600067ffffffffffffffff821115612e5f57612e5e612c63565b5b612e6882612a45565b9050602081019050919050565b6000612e88612e8384612e44565b612cc3565b905082815260208101848484011115612ea457612ea3612c5e565b5b612eaf848285612d0f565b509392505050565b600082601f830112612ecc57612ecb612c59565b5b8135612edc848260208601612e75565b91505092915050565b60008060008060808587031215612eff57612efe6128d8565b5b6000612f0d87828801612b87565b9450506020612f1e87828801612b87565b9350506040612f2f87828801612ad2565b925050606085013567ffffffffffffffff811115612f5057612f4f6128dd565b5b612f5c87828801612eb7565b91505092959194509250565b60008060408385031215612f7f57612f7e6128d8565b5b6000612f8d85828601612b87565b9250506020612f9e85828601612b87565b9150509250929050565b7f596f7520617265206e6f7420746865206f776e65720000000000000000000000600082015250565b6000612fde601583612a01565b9150612fe982612fa8565b602082019050919050565b6000602082019050818103600083015261300d81612fd1565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061305b57607f821691505b60208210810361306e5761306d613014565b5b50919050565b7f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560008201527f78697374656e7420746f6b656e00000000000000000000000000000000000000602082015250565b60006130d0602d83612a01565b91506130db82613074565b604082019050919050565b600060208201905081810360008301526130ff816130c3565b9050919050565b7f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60008201527f6572000000000000000000000000000000000000000000000000000000000000602082015250565b6000613162602283612a01565b915061316d82613106565b604082019050919050565b6000602082019050818103600083015261319181613155565b9050919050565b7f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000602082015250565b60006131f4603983612a01565b91506131ff82613198565b604082019050919050565b60006020820190508181036000830152613223816131e7565b9050919050565b7f455243373231413a206f776e657220696e646578206f7574206f6620626f756e60008201527f6473000000000000000000000000000000000000000000000000000000000000602082015250565b6000613286602283612a01565b91506132918261322a565b604082019050919050565b600060208201905081810360008301526132b581613279565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006132f682612ab1565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203613328576133276132bc565b5b600182019050919050565b7f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060008201527f6f776e657220627920696e646578000000000000000000000000000000000000602082015250565b600061338f602e83612a01565b915061339a82613333565b604082019050919050565b600060208201905081810360008301526133be81613382565b9050919050565b7f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f7560008201527f6e64730000000000000000000000000000000000000000000000000000000000602082015250565b6000613421602383612a01565b915061342c826133c5565b604082019050919050565b6000602082019050818103600083015261345081613414565b9050919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b6000600883026134b97fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8261347c565b6134c3868361347c565b95508019841693508086168417925050509392505050565b6000819050919050565b60006135006134fb6134f684612ab1565b6134db565b612ab1565b9050919050565b6000819050919050565b61351a836134e5565b61352e61352682613507565b848454613489565b825550505050565b600090565b613543613536565b61354e818484613511565b505050565b5b818110156135725761356760008261353b565b600181019050613554565b5050565b601f8211156135b75761358881613457565b6135918461346c565b810160208510156135a0578190505b6135b46135ac8561346c565b830182613553565b50505b505050565b600082821c905092915050565b60006135da600019846008026135bc565b1980831691505092915050565b60006135f383836135c9565b9150826002028217905092915050565b61360c826129f6565b67ffffffffffffffff81111561362557613624612c63565b5b61362f8254613043565b61363a828285613576565b600060209050601f83116001811461366d576000841561365b578287015190505b61366585826135e7565b8655506136cd565b601f19841661367b86613457565b60005b828110156136a35784890151825560018201915060208501945060208101905061367e565b868310156136c057848901516136bc601f8916826135c9565b8355505b6001600288020188555050505b505050505050565b7f455243373231413a2062616c616e636520717565727920666f7220746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b6000613731602b83612a01565b915061373c826136d5565b604082019050919050565b6000602082019050818103600083015261376081613724565b9050919050565b7f455243373231413a20617070726f766520746f2063616c6c6572000000000000600082015250565b600061379d601a83612a01565b91506137a882613767565b602082019050919050565b600060208201905081810360008301526137cc81613790565b9050919050565b7f5061757365640000000000000000000000000000000000000000000000000000600082015250565b6000613809600683612a01565b9150613814826137d3565b602082019050919050565b60006020820190508181036000830152613838816137fc565b9050919050565b7f455243373231413a207472616e7366657220746f206e6f6e204552433732315260008201527f6563656976657220696d706c656d656e74657200000000000000000000000000602082015250565b600061389b603383612a01565b91506138a68261383f565b604082019050919050565b600060208201905081810360008301526138ca8161388e565b9050919050565b7f5468617420746f6b656e20646f65736e27742065786973740000000000000000600082015250565b6000613907601883612a01565b9150613912826138d1565b602082019050919050565b60006020820190508181036000830152613936816138fa565b9050919050565b600081905092915050565b6000815461395581613043565b61395f818661393d565b9450600182166000811461397a576001811461398f576139c2565b60ff19831686528115158202860193506139c2565b61399885613457565b60005b838110156139ba5781548189015260018201915060208101905061399b565b838801955050505b50505092915050565b60006139d6826129f6565b6139e0818561393d565b93506139f0818560208601612a12565b80840191505092915050565b6000613a088286613948565b9150613a1482856139cb565b9150613a208284613948565b9150819050949350505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000613a89602683612a01565b9150613a9482613a2d565b604082019050919050565b60006020820190508181036000830152613ab881613a7c565b9050919050565b7f455243373231413a207472616e736665722063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b6000613b1b603283612a01565b9150613b2682613abf565b604082019050919050565b60006020820190508181036000830152613b4a81613b0e565b9050919050565b7f455243373231413a207472616e736665722066726f6d20696e636f727265637460008201527f206f776e65720000000000000000000000000000000000000000000000000000602082015250565b6000613bad602683612a01565b9150613bb882613b51565b604082019050919050565b60006020820190508181036000830152613bdc81613ba0565b9050919050565b7f455243373231413a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000613c3f602583612a01565b9150613c4a82613be3565b604082019050919050565b60006020820190508181036000830152613c6e81613c32565b9050919050565b60006fffffffffffffffffffffffffffffffff82169050919050565b6000613c9c82613c75565b9150613ca783613c75565b925082821015613cba57613cb96132bc565b5b828203905092915050565b6000613cd082613c75565b9150613cdb83613c75565b9250826fffffffffffffffffffffffffffffffff03821115613d0057613cff6132bc565b5b828201905092915050565b6000613d1682612ab1565b9150613d2183612ab1565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613d5657613d556132bc565b5b828201905092915050565b7f455243373231413a206f776e657220717565727920666f72206e6f6e6578697360008201527f74656e7420746f6b656e00000000000000000000000000000000000000000000602082015250565b6000613dbd602a83612a01565b9150613dc882613d61565b604082019050919050565b60006020820190508181036000830152613dec81613db0565b9050919050565b6000613dfe82612ab1565b9150613e0983612ab1565b925082821015613e1c57613e1b6132bc565b5b828203905092915050565b6000613e3282612ab1565b915060008203613e4557613e446132bc565b5b600182039050919050565b7f455243373231413a20756e61626c6520746f2064657465726d696e652074686560008201527f206f776e6572206f6620746f6b656e0000000000000000000000000000000000602082015250565b6000613eac602f83612a01565b9150613eb782613e50565b604082019050919050565b60006020820190508181036000830152613edb81613e9f565b9050919050565b600081519050919050565b600082825260208201905092915050565b6000613f0982613ee2565b613f138185613eed565b9350613f23818560208601612a12565b613f2c81612a45565b840191505092915050565b6000608082019050613f4c6000830187612b46565b613f596020830186612b46565b613f666040830185612bdc565b8181036060830152613f788184613efe565b905095945050505050565b600081519050613f928161290e565b92915050565b600060208284031215613fae57613fad6128d8565b5b6000613fbc84828501613f83565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000613fff82612ab1565b915061400a83612ab1565b92508261401a57614019613fc5565b5b828204905092915050565b600061403082612ab1565b915061403b83612ab1565b92508261404b5761404a613fc5565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f455243373231413a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b60006140e1602183612a01565b91506140ec82614085565b604082019050919050565b60006020820190508181036000830152614110816140d4565b9050919050565b7f455243373231413a20746f6b656e20616c7265616479206d696e746564000000600082015250565b600061414d601d83612a01565b915061415882614117565b602082019050919050565b6000602082019050818103600083015261417c81614140565b9050919050565b7f455243373231413a207175616e7469747920746f206d696e7420746f6f20686960008201527f6768000000000000000000000000000000000000000000000000000000000000602082015250565b60006141df602283612a01565b91506141ea82614183565b604082019050919050565b6000602082019050818103600083015261420e816141d2565b905091905056fea2646970667358221220c05ad6a045a3b6efeac6648f35c514e02ddf211f577e368a7ea338dfc457e93264736f6c634300080f0033

Deployed Bytecode Sourcemap

39679:1604:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24815:370;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40462:79;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;26541:94;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28075:204;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27638:379;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;23376:94;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28925:142;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;24007:744;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39764:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29130:157;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;40338:114;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;23539:177;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40549:102;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;39986:25;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26364:118;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39723:34;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39840:94;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25241:211;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38796:103;;;;;;;;;;;;;:::i;:::-;;38156:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26696:98;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28343:274;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;40156:174;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;29350:311;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;39941:37;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40657:507;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39803:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33765:43;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28680:186;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39054:238;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;24815:370;24942:4;24987:25;24972:40;;;:11;:40;;;;:99;;;;25038:33;25023:48;;;:11;:48;;;;24972:99;:160;;;;25097:35;25082:50;;;:11;:50;;;;24972:160;:207;;;;25143:36;25167:11;25143:23;:36::i;:::-;24972:207;24958:221;;24815:370;;;:::o;40462:79::-;38387:12;:10;:12::i;:::-;38376:23;;:7;:5;:7::i;:::-;:23;;;38368:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;40527:6:::1;40518;;:15;;;;;;;;;;;;;;;;;;40462:79:::0;:::o;26541:94::-;26595:13;26624:5;26617:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26541:94;:::o;28075:204::-;28143:7;28167:16;28175:7;28167;:16::i;:::-;28159:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;28249:15;:24;28265:7;28249:24;;;;;;;;;;;;;;;;;;;;;28242:31;;28075:204;;;:::o;27638:379::-;27707:13;27723:24;27739:7;27723:15;:24::i;:::-;27707:40;;27768:5;27762:11;;:2;:11;;;27754:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;27853:5;27837:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;27862:37;27879:5;27886:12;:10;:12::i;:::-;27862:16;:37::i;:::-;27837:62;27821:153;;;;;;;;;;;;:::i;:::-;;;;;;;;;27983:28;27992:2;27996:7;28005:5;27983:8;:28::i;:::-;27700:317;27638:379;;:::o;23376:94::-;23429:7;23452:12;;23445:19;;23376:94;:::o;28925:142::-;29033:28;29043:4;29049:2;29053:7;29033:9;:28::i;:::-;28925:142;;;:::o;24007:744::-;24116:7;24151:16;24161:5;24151:9;:16::i;:::-;24143:5;:24;24135:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;24213:22;24238:13;:11;:13::i;:::-;24213:38;;24258:19;24288:25;24338:9;24333:350;24357:14;24353:1;:18;24333:350;;;24387:31;24421:11;:14;24433:1;24421:14;;;;;;;;;;;24387:48;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24474:1;24448:28;;:9;:14;;;:28;;;24444:89;;24509:9;:14;;;24489:34;;24444:89;24566:5;24545:26;;:17;:26;;;24541:135;;24603:5;24588:11;:20;24584:59;;24630:1;24623:8;;;;;;;;;24584:59;24653:13;;;;;:::i;:::-;;;;24541:135;24378:305;24373:3;;;;;:::i;:::-;;;;24333:350;;;;24689:56;;;;;;;;;;:::i;:::-;;;;;;;;24007:744;;;;;:::o;39764:32::-;;;;:::o;29130:157::-;29242:39;29259:4;29265:2;29269:7;29242:39;;;;;;;;;;;;:16;:39::i;:::-;29130:157;;;:::o;40338:114::-;38387:12;:10;:12::i;:::-;38376:23;;:7;:5;:7::i;:::-;:23;;;38368:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;40412:32:::1;40422:10;40434:9;40412;:32::i;:::-;40338:114:::0;:::o;23539:177::-;23606:7;23638:13;:11;:13::i;:::-;23630:5;:21;23622:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;23705:5;23698:12;;23539:177;;;:::o;40549:102::-;38387:12;:10;:12::i;:::-;38376:23;;:7;:5;:7::i;:::-;:23;;;38368:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;40633:10:::1;40623:7;:20;;;;;;:::i;:::-;;40549:102:::0;:::o;39986:25::-;;;;;;;;;;;;;:::o;26364:118::-;26428:7;26451:20;26463:7;26451:11;:20::i;:::-;:25;;;26444:32;;26364:118;;;:::o;39723:34::-;;;;:::o;39840:94::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;25241:211::-;25305:7;25346:1;25329:19;;:5;:19;;;25321:75;;;;;;;;;;;;:::i;:::-;;;;;;;;;25418:12;:19;25431:5;25418:19;;;;;;;;;;;;;;;:27;;;;;;;;;;;;25410:36;;25403:43;;25241:211;;;:::o;38796:103::-;38387:12;:10;:12::i;:::-;38376:23;;:7;:5;:7::i;:::-;:23;;;38368:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;38861:30:::1;38888:1;38861:18;:30::i;:::-;38796:103::o:0;38156:87::-;38202:7;38229:6;;;;;;;;;;;38222:13;;38156:87;:::o;26696:98::-;26752:13;26781:7;26774:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26696:98;:::o;28343:274::-;28446:12;:10;:12::i;:::-;28434:24;;:8;:24;;;28426:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;28543:8;28498:18;:32;28517:12;:10;:12::i;:::-;28498:32;;;;;;;;;;;;;;;:42;28531:8;28498:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;28592:8;28563:48;;28578:12;:10;:12::i;:::-;28563:48;;;28602:8;28563:48;;;;;;:::i;:::-;;;;;;;;28343:274;;:::o;40156:174::-;40228:6;;;;;;;;;;;40227:7;40219:26;;;;;;;;;;;;:::i;:::-;;;;;;;;;40277:1;40264:9;:14;40256:23;;;;;;40290:32;40300:10;40312:9;40290;:32::i;:::-;40156:174;:::o;29350:311::-;29487:28;29497:4;29503:2;29507:7;29487:9;:28::i;:::-;29538:48;29561:4;29567:2;29571:7;29580:5;29538:22;:48::i;:::-;29522:133;;;;;;;;;;;;:::i;:::-;;;;;;;;;29350:311;;;;:::o;39941:37::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;40657:507::-;40759:13;40798:17;40806:8;40798:7;:17::i;:::-;40790:54;;;;;;;;;;;;:::i;:::-;;;;;;;;;40899:1;40881:7;40875:21;;;;;:::i;:::-;;;:25;:281;;;;;;;;;;;;;;;;;40992:7;41026:26;41043:8;41026:16;:26::i;:::-;41079:13;40949:166;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;40875:281;40855:301;;40657:507;;;:::o;39803:30::-;;;;:::o;33765:43::-;;;;:::o;28680:186::-;28802:4;28825:18;:25;28844:5;28825:25;;;;;;;;;;;;;;;:35;28851:8;28825:35;;;;;;;;;;;;;;;;;;;;;;;;;28818:42;;28680:186;;;;:::o;39054:238::-;38387:12;:10;:12::i;:::-;38376:23;;:7;:5;:7::i;:::-;:23;;;38368:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;39177:1:::1;39157:22;;:8;:22;;::::0;39135:110:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;39256:28;39275:8;39256:18;:28::i;:::-;39054:238:::0;:::o;9365:387::-;9425:4;9633:12;9700:7;9688:20;9680:28;;9743:1;9736:4;:8;9729:15;;;9365:387;;;:::o;8387:207::-;8517:4;8561:25;8546:40;;;:11;:40;;;;8539:47;;8387:207;;;:::o;17786:98::-;17839:7;17866:10;17859:17;;17786:98;:::o;29900:105::-;29957:4;29987:12;;29977:7;:22;29970:29;;29900:105;;;:::o;33587:172::-;33711:2;33684:15;:24;33700:7;33684:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;33745:7;33741:2;33725:28;;33734:5;33725:28;;;;;;;;;;;;33587:172;;;:::o;31952:1529::-;32049:35;32087:20;32099:7;32087:11;:20::i;:::-;32049:58;;32116:22;32158:13;:18;;;32142:34;;:12;:10;:12::i;:::-;:34;;;:81;;;;32211:12;:10;:12::i;:::-;32187:36;;:20;32199:7;32187:11;:20::i;:::-;:36;;;32142:81;:142;;;;32234:50;32251:13;:18;;;32271:12;:10;:12::i;:::-;32234:16;:50::i;:::-;32142:142;32116:169;;32310:17;32294:101;;;;;;;;;;;;:::i;:::-;;;;;;;;;32442:4;32420:26;;:13;:18;;;:26;;;32404:98;;;;;;;;;;;;:::i;:::-;;;;;;;;;32531:1;32517:16;;:2;:16;;;32509:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;32584:43;32606:4;32612:2;32616:7;32625:1;32584:21;:43::i;:::-;32684:49;32701:1;32705:7;32714:13;:18;;;32684:8;:49::i;:::-;32772:1;32742:12;:18;32755:4;32742:18;;;;;;;;;;;;;;;:26;;;:31;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;32808:1;32780:12;:16;32793:2;32780:16;;;;;;;;;;;;;;;:24;;;:29;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;32839:43;;;;;;;;32854:2;32839:43;;;;;;32865:15;32839:43;;;;;32816:11;:20;32828:7;32816:20;;;;;;;;;;;:66;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33110:19;33142:1;33132:7;:11;;;;:::i;:::-;33110:33;;33195:1;33154:43;;:11;:24;33166:11;33154:24;;;;;;;;;;;:29;;;;;;;;;;;;:43;;;33150:236;;33212:20;33220:11;33212:7;:20::i;:::-;33208:171;;;33272:97;;;;;;;;33299:13;:18;;;33272:97;;;;;;33330:13;:28;;;33272:97;;;;;33245:11;:24;33257:11;33245:24;;;;;;;;;;;:124;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33208:171;33150:236;33418:7;33414:2;33399:27;;33408:4;33399:27;;;;;;;;;;;;33433:42;33454:4;33460:2;33464:7;33473:1;33433:20;:42::i;:::-;32042:1439;;;31952:1529;;;:::o;30011:98::-;30076:27;30086:2;30090:8;30076:27;;;;;;;;;;;;:9;:27::i;:::-;30011:98;;:::o;25704:606::-;25780:21;;:::i;:::-;25821:16;25829:7;25821;:16::i;:::-;25813:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;25893:26;25941:12;25930:7;:23;25926:93;;26010:1;25995:12;25985:7;:22;;;;:::i;:::-;:26;;;;:::i;:::-;25964:47;;25926:93;26032:12;26047:7;26032:22;;26027:212;26064:18;26056:4;:26;26027:212;;26101:31;26135:11;:17;26147:4;26135:17;;;;;;;;;;;26101:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26191:1;26165:28;;:9;:14;;;:28;;;26161:71;;26213:9;26206:16;;;;;;;26161:71;26092:147;26084:6;;;;;:::i;:::-;;;;26027:212;;;;26247:57;;;;;;;;;;:::i;:::-;;;;;;;;25704:606;;;;:::o;39452:191::-;39526:16;39545:6;;;;;;;;;;;39526:25;;39571:8;39562:6;;:17;;;;;;;;;;;;;;;;;;39626:8;39595:40;;39616:8;39595:40;;;;;;;;;;;;39515:128;39452:191;:::o;35302:690::-;35439:4;35456:15;:2;:13;;;:15::i;:::-;35452:535;;;35511:2;35495:36;;;35532:12;:10;:12::i;:::-;35546:4;35552:7;35561:5;35495:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;35482:464;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35743:1;35726:6;:13;:18;35722:215;;35759:61;;;;;;;;;;:::i;:::-;;;;;;;;35722:215;35905:6;35899:13;35890:6;35886:2;35882:15;35875:38;35482:464;35627:45;;;35617:55;;;:6;:55;;;;35610:62;;;;;35452:535;35975:4;35968:11;;35302:690;;;;;;;:::o;18309:723::-;18365:13;18595:1;18586:5;:10;18582:53;;18613:10;;;;;;;;;;;;;;;;;;;;;18582:53;18645:12;18660:5;18645:20;;18676:14;18701:78;18716:1;18708:4;:9;18701:78;;18734:8;;;;;:::i;:::-;;;;18765:2;18757:10;;;;;:::i;:::-;;;18701:78;;;18789:19;18821:6;18811:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18789:39;;18839:154;18855:1;18846:5;:10;18839:154;;18883:1;18873:11;;;;;:::i;:::-;;;18950:2;18942:5;:10;;;;:::i;:::-;18929:2;:24;;;;:::i;:::-;18916:39;;18899:6;18906;18899:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;18979:2;18970:11;;;;;:::i;:::-;;;18839:154;;;19017:6;19003:21;;;;;18309:723;;;;:::o;36454:141::-;;;;;:::o;36981:140::-;;;;;:::o;30448:1272::-;30553:20;30576:12;;30553:35;;30617:1;30603:16;;:2;:16;;;30595:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;30794:21;30802:12;30794:7;:21::i;:::-;30793:22;30785:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;30876:12;30864:8;:24;;30856:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;30936:61;30966:1;30970:2;30974:12;30988:8;30936:21;:61::i;:::-;31006:30;31039:12;:16;31052:2;31039:16;;;;;;;;;;;;;;;31006:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31081:119;;;;;;;;31131:8;31101:11;:19;;;:39;;;;:::i;:::-;31081:119;;;;;;31184:8;31149:11;:24;;;:44;;;;:::i;:::-;31081:119;;;;;31062:12;:16;31075:2;31062:16;;;;;;;;;;;;;;;:138;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31235:43;;;;;;;;31250:2;31235:43;;;;;;31261:15;31235:43;;;;;31207:11;:25;31219:12;31207:25;;;;;;;;;;;:71;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31287:20;31310:12;31287:35;;31336:9;31331:281;31355:8;31351:1;:12;31331:281;;;31409:12;31405:2;31384:38;;31401:1;31384:38;;;;;;;;;;;;31449:59;31480:1;31484:2;31488:12;31502:5;31449:22;:59::i;:::-;31431:150;;;;;;;;;;;;:::i;:::-;;;;;;;;;31590:14;;;;;:::i;:::-;;;;31365:3;;;;;:::i;:::-;;;;31331:281;;;;31635:12;31620;:27;;;;31654:60;31683:1;31687:2;31691:12;31705:8;31654:20;:60::i;:::-;30546:1174;;;30448:1272;;;:::o;-1:-1:-1:-;;;;;;;;;;;;;;;;;;;;;;;:::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:116::-;1588:21;1603:5;1588:21;:::i;:::-;1581:5;1578:32;1568:60;;1624:1;1621;1614:12;1568:60;1518:116;:::o;1640:133::-;1683:5;1721:6;1708:20;1699:29;;1737:30;1761:5;1737:30;:::i;:::-;1640:133;;;;:::o;1779:323::-;1835:6;1884:2;1872:9;1863:7;1859:23;1855:32;1852:119;;;1890:79;;:::i;:::-;1852:119;2010:1;2035:50;2077:7;2068:6;2057:9;2053:22;2035:50;:::i;:::-;2025:60;;1981:114;1779:323;;;;:::o;2108:99::-;2160:6;2194:5;2188:12;2178:22;;2108:99;;;:::o;2213:169::-;2297:11;2331:6;2326:3;2319:19;2371:4;2366:3;2362:14;2347:29;;2213:169;;;;:::o;2388:307::-;2456:1;2466:113;2480:6;2477:1;2474:13;2466:113;;;2565:1;2560:3;2556:11;2550:18;2546:1;2541:3;2537:11;2530:39;2502:2;2499:1;2495:10;2490:15;;2466:113;;;2597:6;2594:1;2591:13;2588:101;;;2677:1;2668:6;2663:3;2659:16;2652:27;2588:101;2437:258;2388:307;;;:::o;2701:102::-;2742:6;2793:2;2789:7;2784:2;2777:5;2773:14;2769:28;2759:38;;2701:102;;;:::o;2809:364::-;2897:3;2925:39;2958:5;2925:39;:::i;:::-;2980:71;3044:6;3039:3;2980:71;:::i;:::-;2973:78;;3060:52;3105:6;3100:3;3093:4;3086:5;3082:16;3060:52;:::i;:::-;3137:29;3159:6;3137:29;:::i;:::-;3132:3;3128:39;3121:46;;2901:272;2809:364;;;;:::o;3179:313::-;3292:4;3330:2;3319:9;3315:18;3307:26;;3379:9;3373:4;3369:20;3365:1;3354:9;3350:17;3343:47;3407:78;3480:4;3471:6;3407:78;:::i;:::-;3399:86;;3179:313;;;;:::o;3498:77::-;3535:7;3564:5;3553:16;;3498:77;;;:::o;3581:122::-;3654:24;3672:5;3654:24;:::i;:::-;3647:5;3644:35;3634:63;;3693:1;3690;3683:12;3634:63;3581:122;:::o;3709:139::-;3755:5;3793:6;3780:20;3771:29;;3809:33;3836:5;3809:33;:::i;:::-;3709:139;;;;:::o;3854:329::-;3913:6;3962:2;3950:9;3941:7;3937:23;3933:32;3930:119;;;3968:79;;:::i;:::-;3930:119;4088:1;4113:53;4158:7;4149:6;4138:9;4134:22;4113:53;:::i;:::-;4103:63;;4059:117;3854:329;;;;:::o;4189:126::-;4226:7;4266:42;4259:5;4255:54;4244:65;;4189:126;;;:::o;4321:96::-;4358:7;4387:24;4405:5;4387:24;:::i;:::-;4376:35;;4321:96;;;:::o;4423:118::-;4510:24;4528:5;4510:24;:::i;:::-;4505:3;4498:37;4423:118;;:::o;4547:222::-;4640:4;4678:2;4667:9;4663:18;4655:26;;4691:71;4759:1;4748:9;4744:17;4735:6;4691:71;:::i;:::-;4547:222;;;;:::o;4775:122::-;4848:24;4866:5;4848:24;:::i;:::-;4841:5;4838:35;4828:63;;4887:1;4884;4877:12;4828:63;4775:122;:::o;4903:139::-;4949:5;4987:6;4974:20;4965:29;;5003:33;5030:5;5003:33;:::i;:::-;4903:139;;;;:::o;5048:474::-;5116:6;5124;5173:2;5161:9;5152:7;5148:23;5144:32;5141:119;;;5179:79;;:::i;:::-;5141:119;5299:1;5324:53;5369:7;5360:6;5349:9;5345:22;5324:53;:::i;:::-;5314:63;;5270:117;5426:2;5452:53;5497:7;5488:6;5477:9;5473:22;5452:53;:::i;:::-;5442:63;;5397:118;5048:474;;;;;:::o;5528:118::-;5615:24;5633:5;5615:24;:::i;:::-;5610:3;5603:37;5528:118;;:::o;5652:222::-;5745:4;5783:2;5772:9;5768:18;5760:26;;5796:71;5864:1;5853:9;5849:17;5840:6;5796:71;:::i;:::-;5652:222;;;;:::o;5880:619::-;5957:6;5965;5973;6022:2;6010:9;6001:7;5997:23;5993:32;5990:119;;;6028:79;;:::i;:::-;5990:119;6148:1;6173:53;6218:7;6209:6;6198:9;6194:22;6173:53;:::i;:::-;6163:63;;6119:117;6275:2;6301:53;6346:7;6337:6;6326:9;6322:22;6301:53;:::i;:::-;6291:63;;6246:118;6403:2;6429:53;6474:7;6465:6;6454:9;6450:22;6429:53;:::i;:::-;6419:63;;6374:118;5880:619;;;;;:::o;6505:117::-;6614:1;6611;6604:12;6628:117;6737:1;6734;6727:12;6751:180;6799:77;6796:1;6789:88;6896:4;6893:1;6886:15;6920:4;6917:1;6910:15;6937:281;7020:27;7042:4;7020:27;:::i;:::-;7012:6;7008:40;7150:6;7138:10;7135:22;7114:18;7102:10;7099:34;7096:62;7093:88;;;7161:18;;:::i;:::-;7093:88;7201:10;7197:2;7190:22;6980:238;6937:281;;:::o;7224:129::-;7258:6;7285:20;;:::i;:::-;7275:30;;7314:33;7342:4;7334:6;7314:33;:::i;:::-;7224:129;;;:::o;7359:308::-;7421:4;7511:18;7503:6;7500:30;7497:56;;;7533:18;;:::i;:::-;7497:56;7571:29;7593:6;7571:29;:::i;:::-;7563:37;;7655:4;7649;7645:15;7637:23;;7359:308;;;:::o;7673:154::-;7757:6;7752:3;7747;7734:30;7819:1;7810:6;7805:3;7801:16;7794:27;7673:154;;;:::o;7833:412::-;7911:5;7936:66;7952:49;7994:6;7952:49;:::i;:::-;7936:66;:::i;:::-;7927:75;;8025:6;8018:5;8011:21;8063:4;8056:5;8052:16;8101:3;8092:6;8087:3;8083:16;8080:25;8077:112;;;8108:79;;:::i;:::-;8077:112;8198:41;8232:6;8227:3;8222;8198:41;:::i;:::-;7917:328;7833:412;;;;;:::o;8265:340::-;8321:5;8370:3;8363:4;8355:6;8351:17;8347:27;8337:122;;8378:79;;:::i;:::-;8337:122;8495:6;8482:20;8520:79;8595:3;8587:6;8580:4;8572:6;8568:17;8520:79;:::i;:::-;8511:88;;8327:278;8265:340;;;;:::o;8611:509::-;8680:6;8729:2;8717:9;8708:7;8704:23;8700:32;8697:119;;;8735:79;;:::i;:::-;8697:119;8883:1;8872:9;8868:17;8855:31;8913:18;8905:6;8902:30;8899:117;;;8935:79;;:::i;:::-;8899:117;9040:63;9095:7;9086:6;9075:9;9071:22;9040:63;:::i;:::-;9030:73;;8826:287;8611:509;;;;:::o;9126:329::-;9185:6;9234:2;9222:9;9213:7;9209:23;9205:32;9202:119;;;9240:79;;:::i;:::-;9202:119;9360:1;9385:53;9430:7;9421:6;9410:9;9406:22;9385:53;:::i;:::-;9375:63;;9331:117;9126:329;;;;:::o;9461:468::-;9526:6;9534;9583:2;9571:9;9562:7;9558:23;9554:32;9551:119;;;9589:79;;:::i;:::-;9551:119;9709:1;9734:53;9779:7;9770:6;9759:9;9755:22;9734:53;:::i;:::-;9724:63;;9680:117;9836:2;9862:50;9904:7;9895:6;9884:9;9880:22;9862:50;:::i;:::-;9852:60;;9807:115;9461:468;;;;;:::o;9935:307::-;9996:4;10086:18;10078:6;10075:30;10072:56;;;10108:18;;:::i;:::-;10072:56;10146:29;10168:6;10146:29;:::i;:::-;10138:37;;10230:4;10224;10220:15;10212:23;;9935:307;;;:::o;10248:410::-;10325:5;10350:65;10366:48;10407:6;10366:48;:::i;:::-;10350:65;:::i;:::-;10341:74;;10438:6;10431:5;10424:21;10476:4;10469:5;10465:16;10514:3;10505:6;10500:3;10496:16;10493:25;10490:112;;;10521:79;;:::i;:::-;10490:112;10611:41;10645:6;10640:3;10635;10611:41;:::i;:::-;10331:327;10248:410;;;;;:::o;10677:338::-;10732:5;10781:3;10774:4;10766:6;10762:17;10758:27;10748:122;;10789:79;;:::i;:::-;10748:122;10906:6;10893:20;10931:78;11005:3;10997:6;10990:4;10982:6;10978:17;10931:78;:::i;:::-;10922:87;;10738:277;10677:338;;;;:::o;11021:943::-;11116:6;11124;11132;11140;11189:3;11177:9;11168:7;11164:23;11160:33;11157:120;;;11196:79;;:::i;:::-;11157:120;11316:1;11341:53;11386:7;11377:6;11366:9;11362:22;11341:53;:::i;:::-;11331:63;;11287:117;11443:2;11469:53;11514:7;11505:6;11494:9;11490:22;11469:53;:::i;:::-;11459:63;;11414:118;11571:2;11597:53;11642:7;11633:6;11622:9;11618:22;11597:53;:::i;:::-;11587:63;;11542:118;11727:2;11716:9;11712:18;11699:32;11758:18;11750:6;11747:30;11744:117;;;11780:79;;:::i;:::-;11744:117;11885:62;11939:7;11930:6;11919:9;11915:22;11885:62;:::i;:::-;11875:72;;11670:287;11021:943;;;;;;;:::o;11970:474::-;12038:6;12046;12095:2;12083:9;12074:7;12070:23;12066:32;12063:119;;;12101:79;;:::i;:::-;12063:119;12221:1;12246:53;12291:7;12282:6;12271:9;12267:22;12246:53;:::i;:::-;12236:63;;12192:117;12348:2;12374:53;12419:7;12410:6;12399:9;12395:22;12374:53;:::i;:::-;12364:63;;12319:118;11970:474;;;;;:::o;12450:171::-;12590:23;12586:1;12578:6;12574:14;12567:47;12450:171;:::o;12627:366::-;12769:3;12790:67;12854:2;12849:3;12790:67;:::i;:::-;12783:74;;12866:93;12955:3;12866:93;:::i;:::-;12984:2;12979:3;12975:12;12968:19;;12627:366;;;:::o;12999:419::-;13165:4;13203:2;13192:9;13188:18;13180:26;;13252:9;13246:4;13242:20;13238:1;13227:9;13223:17;13216:47;13280:131;13406:4;13280:131;:::i;:::-;13272:139;;12999:419;;;:::o;13424:180::-;13472:77;13469:1;13462:88;13569:4;13566:1;13559:15;13593:4;13590:1;13583:15;13610:320;13654:6;13691:1;13685:4;13681:12;13671:22;;13738:1;13732:4;13728:12;13759:18;13749:81;;13815:4;13807:6;13803:17;13793:27;;13749:81;13877:2;13869:6;13866:14;13846:18;13843:38;13840:84;;13896:18;;:::i;:::-;13840:84;13661:269;13610:320;;;:::o;13936:232::-;14076:34;14072:1;14064:6;14060:14;14053:58;14145:15;14140:2;14132:6;14128:15;14121:40;13936:232;:::o;14174:366::-;14316:3;14337:67;14401:2;14396:3;14337:67;:::i;:::-;14330:74;;14413:93;14502:3;14413:93;:::i;:::-;14531:2;14526:3;14522:12;14515:19;;14174:366;;;:::o;14546:419::-;14712:4;14750:2;14739:9;14735:18;14727:26;;14799:9;14793:4;14789:20;14785:1;14774:9;14770:17;14763:47;14827:131;14953:4;14827:131;:::i;:::-;14819:139;;14546:419;;;:::o;14971:221::-;15111:34;15107:1;15099:6;15095:14;15088:58;15180:4;15175:2;15167:6;15163:15;15156:29;14971:221;:::o;15198:366::-;15340:3;15361:67;15425:2;15420:3;15361:67;:::i;:::-;15354:74;;15437:93;15526:3;15437:93;:::i;:::-;15555:2;15550:3;15546:12;15539:19;;15198:366;;;:::o;15570:419::-;15736:4;15774:2;15763:9;15759:18;15751:26;;15823:9;15817:4;15813:20;15809:1;15798:9;15794:17;15787:47;15851:131;15977:4;15851:131;:::i;:::-;15843:139;;15570:419;;;:::o;15995:244::-;16135:34;16131:1;16123:6;16119:14;16112:58;16204:27;16199:2;16191:6;16187:15;16180:52;15995:244;:::o;16245:366::-;16387:3;16408:67;16472:2;16467:3;16408:67;:::i;:::-;16401:74;;16484:93;16573:3;16484:93;:::i;:::-;16602:2;16597:3;16593:12;16586:19;;16245:366;;;:::o;16617:419::-;16783:4;16821:2;16810:9;16806:18;16798:26;;16870:9;16864:4;16860:20;16856:1;16845:9;16841:17;16834:47;16898:131;17024:4;16898:131;:::i;:::-;16890:139;;16617:419;;;:::o;17042:221::-;17182:34;17178:1;17170:6;17166:14;17159:58;17251:4;17246:2;17238:6;17234:15;17227:29;17042:221;:::o;17269:366::-;17411:3;17432:67;17496:2;17491:3;17432:67;:::i;:::-;17425:74;;17508:93;17597:3;17508:93;:::i;:::-;17626:2;17621:3;17617:12;17610:19;;17269:366;;;:::o;17641:419::-;17807:4;17845:2;17834:9;17830:18;17822:26;;17894:9;17888:4;17884:20;17880:1;17869:9;17865:17;17858:47;17922:131;18048:4;17922:131;:::i;:::-;17914:139;;17641:419;;;:::o;18066:180::-;18114:77;18111:1;18104:88;18211:4;18208:1;18201:15;18235:4;18232:1;18225:15;18252:233;18291:3;18314:24;18332:5;18314:24;:::i;:::-;18305:33;;18360:66;18353:5;18350:77;18347:103;;18430:18;;:::i;:::-;18347:103;18477:1;18470:5;18466:13;18459:20;;18252:233;;;:::o;18491:::-;18631:34;18627:1;18619:6;18615:14;18608:58;18700:16;18695:2;18687:6;18683:15;18676:41;18491:233;:::o;18730:366::-;18872:3;18893:67;18957:2;18952:3;18893:67;:::i;:::-;18886:74;;18969:93;19058:3;18969:93;:::i;:::-;19087:2;19082:3;19078:12;19071:19;;18730:366;;;:::o;19102:419::-;19268:4;19306:2;19295:9;19291:18;19283:26;;19355:9;19349:4;19345:20;19341:1;19330:9;19326:17;19319:47;19383:131;19509:4;19383:131;:::i;:::-;19375:139;;19102:419;;;:::o;19527:222::-;19667:34;19663:1;19655:6;19651:14;19644:58;19736:5;19731:2;19723:6;19719:15;19712:30;19527:222;:::o;19755:366::-;19897:3;19918:67;19982:2;19977:3;19918:67;:::i;:::-;19911:74;;19994:93;20083:3;19994:93;:::i;:::-;20112:2;20107:3;20103:12;20096:19;;19755:366;;;:::o;20127:419::-;20293:4;20331:2;20320:9;20316:18;20308:26;;20380:9;20374:4;20370:20;20366:1;20355:9;20351:17;20344:47;20408:131;20534:4;20408:131;:::i;:::-;20400:139;;20127:419;;;:::o;20552:141::-;20601:4;20624:3;20616:11;;20647:3;20644:1;20637:14;20681:4;20678:1;20668:18;20660:26;;20552:141;;;:::o;20699:93::-;20736:6;20783:2;20778;20771:5;20767:14;20763:23;20753:33;;20699:93;;;:::o;20798:107::-;20842:8;20892:5;20886:4;20882:16;20861:37;;20798:107;;;;:::o;20911:393::-;20980:6;21030:1;21018:10;21014:18;21053:97;21083:66;21072:9;21053:97;:::i;:::-;21171:39;21201:8;21190:9;21171:39;:::i;:::-;21159:51;;21243:4;21239:9;21232:5;21228:21;21219:30;;21292:4;21282:8;21278:19;21271:5;21268:30;21258:40;;20987:317;;20911:393;;;;;:::o;21310:60::-;21338:3;21359:5;21352:12;;21310:60;;;:::o;21376:142::-;21426:9;21459:53;21477:34;21486:24;21504:5;21486:24;:::i;:::-;21477:34;:::i;:::-;21459:53;:::i;:::-;21446:66;;21376:142;;;:::o;21524:75::-;21567:3;21588:5;21581:12;;21524:75;;;:::o;21605:269::-;21715:39;21746:7;21715:39;:::i;:::-;21776:91;21825:41;21849:16;21825:41;:::i;:::-;21817:6;21810:4;21804:11;21776:91;:::i;:::-;21770:4;21763:105;21681:193;21605:269;;;:::o;21880:73::-;21925:3;21880:73;:::o;21959:189::-;22036:32;;:::i;:::-;22077:65;22135:6;22127;22121:4;22077:65;:::i;:::-;22012:136;21959:189;;:::o;22154:186::-;22214:120;22231:3;22224:5;22221:14;22214:120;;;22285:39;22322:1;22315:5;22285:39;:::i;:::-;22258:1;22251:5;22247:13;22238:22;;22214:120;;;22154:186;;:::o;22346:543::-;22447:2;22442:3;22439:11;22436:446;;;22481:38;22513:5;22481:38;:::i;:::-;22565:29;22583:10;22565:29;:::i;:::-;22555:8;22551:44;22748:2;22736:10;22733:18;22730:49;;;22769:8;22754:23;;22730:49;22792:80;22848:22;22866:3;22848:22;:::i;:::-;22838:8;22834:37;22821:11;22792:80;:::i;:::-;22451:431;;22436:446;22346:543;;;:::o;22895:117::-;22949:8;22999:5;22993:4;22989:16;22968:37;;22895:117;;;;:::o;23018:169::-;23062:6;23095:51;23143:1;23139:6;23131:5;23128:1;23124:13;23095:51;:::i;:::-;23091:56;23176:4;23170;23166:15;23156:25;;23069:118;23018:169;;;;:::o;23192:295::-;23268:4;23414:29;23439:3;23433:4;23414:29;:::i;:::-;23406:37;;23476:3;23473:1;23469:11;23463:4;23460:21;23452:29;;23192:295;;;;:::o;23492:1395::-;23609:37;23642:3;23609:37;:::i;:::-;23711:18;23703:6;23700:30;23697:56;;;23733:18;;:::i;:::-;23697:56;23777:38;23809:4;23803:11;23777:38;:::i;:::-;23862:67;23922:6;23914;23908:4;23862:67;:::i;:::-;23956:1;23980:4;23967:17;;24012:2;24004:6;24001:14;24029:1;24024:618;;;;24686:1;24703:6;24700:77;;;24752:9;24747:3;24743:19;24737:26;24728:35;;24700:77;24803:67;24863:6;24856:5;24803:67;:::i;:::-;24797:4;24790:81;24659:222;23994:887;;24024:618;24076:4;24072:9;24064:6;24060:22;24110:37;24142:4;24110:37;:::i;:::-;24169:1;24183:208;24197:7;24194:1;24191:14;24183:208;;;24276:9;24271:3;24267:19;24261:26;24253:6;24246:42;24327:1;24319:6;24315:14;24305:24;;24374:2;24363:9;24359:18;24346:31;;24220:4;24217:1;24213:12;24208:17;;24183:208;;;24419:6;24410:7;24407:19;24404:179;;;24477:9;24472:3;24468:19;24462:26;24520:48;24562:4;24554:6;24550:17;24539:9;24520:48;:::i;:::-;24512:6;24505:64;24427:156;24404:179;24629:1;24625;24617:6;24613:14;24609:22;24603:4;24596:36;24031:611;;;23994:887;;23584:1303;;;23492:1395;;:::o;24893:230::-;25033:34;25029:1;25021:6;25017:14;25010:58;25102:13;25097:2;25089:6;25085:15;25078:38;24893:230;:::o;25129:366::-;25271:3;25292:67;25356:2;25351:3;25292:67;:::i;:::-;25285:74;;25368:93;25457:3;25368:93;:::i;:::-;25486:2;25481:3;25477:12;25470:19;;25129:366;;;:::o;25501:419::-;25667:4;25705:2;25694:9;25690:18;25682:26;;25754:9;25748:4;25744:20;25740:1;25729:9;25725:17;25718:47;25782:131;25908:4;25782:131;:::i;:::-;25774:139;;25501:419;;;:::o;25926:176::-;26066:28;26062:1;26054:6;26050:14;26043:52;25926:176;:::o;26108:366::-;26250:3;26271:67;26335:2;26330:3;26271:67;:::i;:::-;26264:74;;26347:93;26436:3;26347:93;:::i;:::-;26465:2;26460:3;26456:12;26449:19;;26108:366;;;:::o;26480:419::-;26646:4;26684:2;26673:9;26669:18;26661:26;;26733:9;26727:4;26723:20;26719:1;26708:9;26704:17;26697:47;26761:131;26887:4;26761:131;:::i;:::-;26753:139;;26480:419;;;:::o;26905:156::-;27045:8;27041:1;27033:6;27029:14;27022:32;26905:156;:::o;27067:365::-;27209:3;27230:66;27294:1;27289:3;27230:66;:::i;:::-;27223:73;;27305:93;27394:3;27305:93;:::i;:::-;27423:2;27418:3;27414:12;27407:19;;27067:365;;;:::o;27438:419::-;27604:4;27642:2;27631:9;27627:18;27619:26;;27691:9;27685:4;27681:20;27677:1;27666:9;27662:17;27655:47;27719:131;27845:4;27719:131;:::i;:::-;27711:139;;27438:419;;;:::o;27863:238::-;28003:34;27999:1;27991:6;27987:14;27980:58;28072:21;28067:2;28059:6;28055:15;28048:46;27863:238;:::o;28107:366::-;28249:3;28270:67;28334:2;28329:3;28270:67;:::i;:::-;28263:74;;28346:93;28435:3;28346:93;:::i;:::-;28464:2;28459:3;28455:12;28448:19;;28107:366;;;:::o;28479:419::-;28645:4;28683:2;28672:9;28668:18;28660:26;;28732:9;28726:4;28722:20;28718:1;28707:9;28703:17;28696:47;28760:131;28886:4;28760:131;:::i;:::-;28752:139;;28479:419;;;:::o;28904:174::-;29044:26;29040:1;29032:6;29028:14;29021:50;28904:174;:::o;29084:366::-;29226:3;29247:67;29311:2;29306:3;29247:67;:::i;:::-;29240:74;;29323:93;29412:3;29323:93;:::i;:::-;29441:2;29436:3;29432:12;29425:19;;29084:366;;;:::o;29456:419::-;29622:4;29660:2;29649:9;29645:18;29637:26;;29709:9;29703:4;29699:20;29695:1;29684:9;29680:17;29673:47;29737:131;29863:4;29737:131;:::i;:::-;29729:139;;29456:419;;;:::o;29881:148::-;29983:11;30020:3;30005:18;;29881:148;;;;:::o;30059:874::-;30162:3;30199:5;30193:12;30228:36;30254:9;30228:36;:::i;:::-;30280:89;30362:6;30357:3;30280:89;:::i;:::-;30273:96;;30400:1;30389:9;30385:17;30416:1;30411:166;;;;30591:1;30586:341;;;;30378:549;;30411:166;30495:4;30491:9;30480;30476:25;30471:3;30464:38;30557:6;30550:14;30543:22;30535:6;30531:35;30526:3;30522:45;30515:52;;30411:166;;30586:341;30653:38;30685:5;30653:38;:::i;:::-;30713:1;30727:154;30741:6;30738:1;30735:13;30727:154;;;30815:7;30809:14;30805:1;30800:3;30796:11;30789:35;30865:1;30856:7;30852:15;30841:26;;30763:4;30760:1;30756:12;30751:17;;30727:154;;;30910:6;30905:3;30901:16;30894:23;;30593:334;;30378:549;;30166:767;;30059:874;;;;:::o;30939:377::-;31045:3;31073:39;31106:5;31073:39;:::i;:::-;31128:89;31210:6;31205:3;31128:89;:::i;:::-;31121:96;;31226:52;31271:6;31266:3;31259:4;31252:5;31248:16;31226:52;:::i;:::-;31303:6;31298:3;31294:16;31287:23;;31049:267;30939:377;;;;:::o;31322:583::-;31544:3;31566:92;31654:3;31645:6;31566:92;:::i;:::-;31559:99;;31675:95;31766:3;31757:6;31675:95;:::i;:::-;31668:102;;31787:92;31875:3;31866:6;31787:92;:::i;:::-;31780:99;;31896:3;31889:10;;31322:583;;;;;;:::o;31911:225::-;32051:34;32047:1;32039:6;32035:14;32028:58;32120:8;32115:2;32107:6;32103:15;32096:33;31911:225;:::o;32142:366::-;32284:3;32305:67;32369:2;32364:3;32305:67;:::i;:::-;32298:74;;32381:93;32470:3;32381:93;:::i;:::-;32499:2;32494:3;32490:12;32483:19;;32142:366;;;:::o;32514:419::-;32680:4;32718:2;32707:9;32703:18;32695:26;;32767:9;32761:4;32757:20;32753:1;32742:9;32738:17;32731:47;32795:131;32921:4;32795:131;:::i;:::-;32787:139;;32514:419;;;:::o;32939:237::-;33079:34;33075:1;33067:6;33063:14;33056:58;33148:20;33143:2;33135:6;33131:15;33124:45;32939:237;:::o;33182:366::-;33324:3;33345:67;33409:2;33404:3;33345:67;:::i;:::-;33338:74;;33421:93;33510:3;33421:93;:::i;:::-;33539:2;33534:3;33530:12;33523:19;;33182:366;;;:::o;33554:419::-;33720:4;33758:2;33747:9;33743:18;33735:26;;33807:9;33801:4;33797:20;33793:1;33782:9;33778:17;33771:47;33835:131;33961:4;33835:131;:::i;:::-;33827:139;;33554:419;;;:::o;33979:225::-;34119:34;34115:1;34107:6;34103:14;34096:58;34188:8;34183:2;34175:6;34171:15;34164:33;33979:225;:::o;34210:366::-;34352:3;34373:67;34437:2;34432:3;34373:67;:::i;:::-;34366:74;;34449:93;34538:3;34449:93;:::i;:::-;34567:2;34562:3;34558:12;34551:19;;34210:366;;;:::o;34582:419::-;34748:4;34786:2;34775:9;34771:18;34763:26;;34835:9;34829:4;34825:20;34821:1;34810:9;34806:17;34799:47;34863:131;34989:4;34863:131;:::i;:::-;34855:139;;34582:419;;;:::o;35007:224::-;35147:34;35143:1;35135:6;35131:14;35124:58;35216:7;35211:2;35203:6;35199:15;35192:32;35007:224;:::o;35237:366::-;35379:3;35400:67;35464:2;35459:3;35400:67;:::i;:::-;35393:74;;35476:93;35565:3;35476:93;:::i;:::-;35594:2;35589:3;35585:12;35578:19;;35237:366;;;:::o;35609:419::-;35775:4;35813:2;35802:9;35798:18;35790:26;;35862:9;35856:4;35852:20;35848:1;35837:9;35833:17;35826:47;35890:131;36016:4;35890:131;:::i;:::-;35882:139;;35609:419;;;:::o;36034:118::-;36071:7;36111:34;36104:5;36100:46;36089:57;;36034:118;;;:::o;36158:191::-;36198:4;36218:20;36236:1;36218:20;:::i;:::-;36213:25;;36252:20;36270:1;36252:20;:::i;:::-;36247:25;;36291:1;36288;36285:8;36282:34;;;36296:18;;:::i;:::-;36282:34;36341:1;36338;36334:9;36326:17;;36158:191;;;;:::o;36355:273::-;36395:3;36414:20;36432:1;36414:20;:::i;:::-;36409:25;;36448:20;36466:1;36448:20;:::i;:::-;36443:25;;36570:1;36534:34;36530:42;36527:1;36524:49;36521:75;;;36576:18;;:::i;:::-;36521:75;36620:1;36617;36613:9;36606:16;;36355:273;;;;:::o;36634:305::-;36674:3;36693:20;36711:1;36693:20;:::i;:::-;36688:25;;36727:20;36745:1;36727:20;:::i;:::-;36722:25;;36881:1;36813:66;36809:74;36806:1;36803:81;36800:107;;;36887:18;;:::i;:::-;36800:107;36931:1;36928;36924:9;36917:16;;36634:305;;;;:::o;36945:229::-;37085:34;37081:1;37073:6;37069:14;37062:58;37154:12;37149:2;37141:6;37137:15;37130:37;36945:229;:::o;37180:366::-;37322:3;37343:67;37407:2;37402:3;37343:67;:::i;:::-;37336:74;;37419:93;37508:3;37419:93;:::i;:::-;37537:2;37532:3;37528:12;37521:19;;37180:366;;;:::o;37552:419::-;37718:4;37756:2;37745:9;37741:18;37733:26;;37805:9;37799:4;37795:20;37791:1;37780:9;37776:17;37769:47;37833:131;37959:4;37833:131;:::i;:::-;37825:139;;37552:419;;;:::o;37977:191::-;38017:4;38037:20;38055:1;38037:20;:::i;:::-;38032:25;;38071:20;38089:1;38071:20;:::i;:::-;38066:25;;38110:1;38107;38104:8;38101:34;;;38115:18;;:::i;:::-;38101:34;38160:1;38157;38153:9;38145:17;;37977:191;;;;:::o;38174:171::-;38213:3;38236:24;38254:5;38236:24;:::i;:::-;38227:33;;38282:4;38275:5;38272:15;38269:41;;38290:18;;:::i;:::-;38269:41;38337:1;38330:5;38326:13;38319:20;;38174:171;;;:::o;38351:234::-;38491:34;38487:1;38479:6;38475:14;38468:58;38560:17;38555:2;38547:6;38543:15;38536:42;38351:234;:::o;38591:366::-;38733:3;38754:67;38818:2;38813:3;38754:67;:::i;:::-;38747:74;;38830:93;38919:3;38830:93;:::i;:::-;38948:2;38943:3;38939:12;38932:19;;38591:366;;;:::o;38963:419::-;39129:4;39167:2;39156:9;39152:18;39144:26;;39216:9;39210:4;39206:20;39202:1;39191:9;39187:17;39180:47;39244:131;39370:4;39244:131;:::i;:::-;39236:139;;38963:419;;;:::o;39388:98::-;39439:6;39473:5;39467:12;39457:22;;39388:98;;;:::o;39492:168::-;39575:11;39609:6;39604:3;39597:19;39649:4;39644:3;39640:14;39625:29;;39492:168;;;;:::o;39666:360::-;39752:3;39780:38;39812:5;39780:38;:::i;:::-;39834:70;39897:6;39892:3;39834:70;:::i;:::-;39827:77;;39913:52;39958:6;39953:3;39946:4;39939:5;39935:16;39913:52;:::i;:::-;39990:29;40012:6;39990:29;:::i;:::-;39985:3;39981:39;39974:46;;39756:270;39666:360;;;;:::o;40032:640::-;40227:4;40265:3;40254:9;40250:19;40242:27;;40279:71;40347:1;40336:9;40332:17;40323:6;40279:71;:::i;:::-;40360:72;40428:2;40417:9;40413:18;40404:6;40360:72;:::i;:::-;40442;40510:2;40499:9;40495:18;40486:6;40442:72;:::i;:::-;40561:9;40555:4;40551:20;40546:2;40535:9;40531:18;40524:48;40589:76;40660:4;40651:6;40589:76;:::i;:::-;40581:84;;40032:640;;;;;;;:::o;40678:141::-;40734:5;40765:6;40759:13;40750:22;;40781:32;40807:5;40781:32;:::i;:::-;40678:141;;;;:::o;40825:349::-;40894:6;40943:2;40931:9;40922:7;40918:23;40914:32;40911:119;;;40949:79;;:::i;:::-;40911:119;41069:1;41094:63;41149:7;41140:6;41129:9;41125:22;41094:63;:::i;:::-;41084:73;;41040:127;40825:349;;;;:::o;41180:180::-;41228:77;41225:1;41218:88;41325:4;41322:1;41315:15;41349:4;41346:1;41339:15;41366:185;41406:1;41423:20;41441:1;41423:20;:::i;:::-;41418:25;;41457:20;41475:1;41457:20;:::i;:::-;41452:25;;41496:1;41486:35;;41501:18;;:::i;:::-;41486:35;41543:1;41540;41536:9;41531:14;;41366:185;;;;:::o;41557:176::-;41589:1;41606:20;41624:1;41606:20;:::i;:::-;41601:25;;41640:20;41658:1;41640:20;:::i;:::-;41635:25;;41679:1;41669:35;;41684:18;;:::i;:::-;41669:35;41725:1;41722;41718:9;41713:14;;41557:176;;;;:::o;41739:180::-;41787:77;41784:1;41777:88;41884:4;41881:1;41874:15;41908:4;41905:1;41898:15;41925:220;42065:34;42061:1;42053:6;42049:14;42042:58;42134:3;42129:2;42121:6;42117:15;42110:28;41925:220;:::o;42151:366::-;42293:3;42314:67;42378:2;42373:3;42314:67;:::i;:::-;42307:74;;42390:93;42479:3;42390:93;:::i;:::-;42508:2;42503:3;42499:12;42492:19;;42151:366;;;:::o;42523:419::-;42689:4;42727:2;42716:9;42712:18;42704:26;;42776:9;42770:4;42766:20;42762:1;42751:9;42747:17;42740:47;42804:131;42930:4;42804:131;:::i;:::-;42796:139;;42523:419;;;:::o;42948:179::-;43088:31;43084:1;43076:6;43072:14;43065:55;42948:179;:::o;43133:366::-;43275:3;43296:67;43360:2;43355:3;43296:67;:::i;:::-;43289:74;;43372:93;43461:3;43372:93;:::i;:::-;43490:2;43485:3;43481:12;43474:19;;43133:366;;;:::o;43505:419::-;43671:4;43709:2;43698:9;43694:18;43686:26;;43758:9;43752:4;43748:20;43744:1;43733:9;43729:17;43722:47;43786:131;43912:4;43786:131;:::i;:::-;43778:139;;43505:419;;;:::o;43930:221::-;44070:34;44066:1;44058:6;44054:14;44047:58;44139:4;44134:2;44126:6;44122:15;44115:29;43930:221;:::o;44157:366::-;44299:3;44320:67;44384:2;44379:3;44320:67;:::i;:::-;44313:74;;44396:93;44485:3;44396:93;:::i;:::-;44514:2;44509:3;44505:12;44498:19;;44157:366;;;:::o;44529:419::-;44695:4;44733:2;44722:9;44718:18;44710:26;;44782:9;44776:4;44772:20;44768:1;44757:9;44753:17;44746:47;44810:131;44936:4;44810:131;:::i;:::-;44802:139;;44529:419;;;:::o

Swarm Source

ipfs://c05ad6a045a3b6efeac6648f35c514e02ddf211f577e368a7ea338dfc457e932
Loading...
Loading
Loading...
Loading
[ Download: CSV Export  ]
[ Download: CSV Export  ]

A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.