ETH Price: $2,500.55 (-0.63%)

Token

The Turkish (Turkish)
 

Overview

Max Total Supply

1,117 Turkish

Holders

243

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
GoblinHorses: Deployer
Balance
2 Turkish
0x5f14e67ffbd78fa2544724b5fd6b0a99288e742c
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:
TheTurkish

Compiler Version
v0.8.7+commit.e28d00a7

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



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



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



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



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



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



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



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



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



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



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

contract TheTurkish  is ERC721A, Ownable {

    string public baseURI = "https://nftservices.s3.amazonaws.com/theturkish/";

    uint256 public tokenPrice = 5000000000000000; //0.005 ETH

    uint public maxTokensPerTx = 5;

    uint public defaultTokensPerTx = 3;

    uint256 public MAX_TOKENS = 3333;

    bool public saleIsActive = true;

    uint256 public whitelistMintRemains = 0;

    // = 0 if there are all free
    // = maxTokensPerTx if there are all with fee
    uint public maxTokensWithFeePerTx = 20;

    enum TokenURIMode {
        MODE_ONE,
        MODE_TWO
    }

    TokenURIMode private tokenUriMode = TokenURIMode.MODE_ONE;

    constructor() ERC721A("The Turkish", "Turkish", 100, MAX_TOKENS) {
    }


    struct HelperState {
        uint256 tokenPrice;
        uint256 maxTokensPerTx;
        uint256 MAX_TOKENS;
        bool saleIsActive;
        uint256 totalSupply;
        uint  maxTokensWithFeePerTx;
        uint256 userMinted;
        uint defaultTokensPerTx;
    }

    function _state(address minter) external view returns (HelperState memory) {
        return HelperState({
            tokenPrice: tokenPrice,
            maxTokensPerTx: maxTokensPerTx,
            MAX_TOKENS: MAX_TOKENS,
            saleIsActive: saleIsActive,
            totalSupply: uint256(totalSupply()),
            maxTokensWithFeePerTx : maxTokensWithFeePerTx,
            userMinted: minter == address(0) ? 0 : uint256(_numberMinted(minter)),
            defaultTokensPerTx : defaultTokensPerTx
        });
    }

    function withdraw() public onlyOwner {
        uint balance = address(this).balance;
        payable(msg.sender).transfer(balance);
    } 

    function withdrawTo(address to, uint256 amount) public onlyOwner {
        require(amount <= address(this).balance, "Exceed balance of this contract");
        payable(to).transfer(amount);
    } 

    function reserveTokens(address to, uint numberOfTokens) public onlyOwner {        
        require(totalSupply() + numberOfTokens <= MAX_TOKENS, "Exceed max supply of tokens");
        _safeMint(to, numberOfTokens);
    }         
    
    function setBaseURI(string memory newURI) public onlyOwner {
        baseURI = newURI;
    }    

    function flipSaleState() public onlyOwner {
        saleIsActive = !saleIsActive;
    }

    function openWhitelistMint(uint256 _whitelistMintRemains) public onlyOwner{
        whitelistMintRemains = _whitelistMintRemains;
        saleIsActive = true;
    }

    function closeWhitelistMint()public onlyOwner{
        whitelistMintRemains = 0;
    }

    function getPrice(uint numberOfTokens, address minter) public view returns (uint256) {
        if(numberMinted(minter) > 0){
            return numberOfTokens * tokenPrice;
        } else if(numberOfTokens > maxTokensWithFeePerTx){
            return maxTokensWithFeePerTx * tokenPrice;
        } else if(numberOfTokens <= maxTokensWithFeePerTx){
            return numberOfTokens * tokenPrice;
        }
        return 0;
    }

    // if numberMinted(msg.sender) > 0 -> no whitelist, no free.
    function mintToken(uint numberOfTokens) public payable {
        require(saleIsActive, "Sale must be active");
        require(numberOfTokens <= maxTokensPerTx, "Exceed max tokens per tx");
        require(numberOfTokens > 0, "Must mint at least one");
        require(totalSupply() + numberOfTokens <= MAX_TOKENS, "Exceed max supply");
        
        if(whitelistMintRemains > 0 && numberMinted(msg.sender) <= 0){
            if(numberOfTokens >= whitelistMintRemains){
                numberOfTokens = whitelistMintRemains;
            }
            _safeMint(msg.sender, numberOfTokens);
            whitelistMintRemains = whitelistMintRemains - numberOfTokens;
        } else{
            if(_numberMinted(msg.sender) > 0){
                require(msg.value >= numberOfTokens * tokenPrice, "Not enough ether");
            } else  if(numberOfTokens > maxTokensWithFeePerTx){
                require(msg.value >= maxTokensWithFeePerTx * tokenPrice, "Not enough ether");
            } else if(numberOfTokens <= maxTokensWithFeePerTx){
                require(msg.value >= numberOfTokens * tokenPrice, "Not enough ether");
            }
            _safeMint(msg.sender, numberOfTokens);
        }
    }

    function setTokenPrice(uint256 newTokenPrice) public onlyOwner{
        tokenPrice = newTokenPrice;
    }

    function tokenURI(uint256 _tokenId) public view override returns (string memory) 
    {
        require(_exists(_tokenId), "Token does not exist.");
        if (tokenUriMode == TokenURIMode.MODE_TWO) {
          return bytes(baseURI).length > 0 ? string(
            abi.encodePacked(
              baseURI,
              Strings.toString(_tokenId)
            )
          ) : "";
        } else {
          return bytes(baseURI).length > 0 ? string(
            abi.encodePacked(
              baseURI,
              Strings.toString(_tokenId),
              ".json"
            )
          ) : "";
        }
    }

    function setTokenURIMode(uint256 mode) external onlyOwner {
        if (mode == 2) {
            tokenUriMode = TokenURIMode.MODE_TWO;
        } else {
            tokenUriMode = TokenURIMode.MODE_ONE;
        }
    }

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

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

    function setMaxSupply(uint256 _maxSupply) public onlyOwner {
      MAX_TOKENS = _maxSupply;
    }

    function setMaxTokensPerTx(uint _maxTokensPerTx) public onlyOwner{
        maxTokensPerTx = _maxTokensPerTx;
    }

    function setMaxTokensWithFeePerTx(uint _maxTokensWithFeePerTx) public onlyOwner{
        maxTokensWithFeePerTx = _maxTokensWithFeePerTx;
    }

    function setDefaultTokensPerTx(uint _defaultTokensPerTx) public onlyOwner{
        defaultTokensPerTx = _defaultTokensPerTx;
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"MAX_TOKENS","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"minter","type":"address"}],"name":"_state","outputs":[{"components":[{"internalType":"uint256","name":"tokenPrice","type":"uint256"},{"internalType":"uint256","name":"maxTokensPerTx","type":"uint256"},{"internalType":"uint256","name":"MAX_TOKENS","type":"uint256"},{"internalType":"bool","name":"saleIsActive","type":"bool"},{"internalType":"uint256","name":"totalSupply","type":"uint256"},{"internalType":"uint256","name":"maxTokensWithFeePerTx","type":"uint256"},{"internalType":"uint256","name":"userMinted","type":"uint256"},{"internalType":"uint256","name":"defaultTokensPerTx","type":"uint256"}],"internalType":"struct TheTurkish.HelperState","name":"","type":"tuple"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"closeWhitelistMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"defaultTokensPerTx","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"flipSaleState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"numberOfTokens","type":"uint256"},{"internalType":"address","name":"minter","type":"address"}],"name":"getPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"maxTokensPerTx","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTokensWithFeePerTx","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"numberOfTokens","type":"uint256"}],"name":"mintToken","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"nextOwnerToExplicitlySet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"numberMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_whitelistMintRemains","type":"uint256"}],"name":"openWhitelistMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"numberOfTokens","type":"uint256"}],"name":"reserveTokens","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":[],"name":"saleIsActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","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":"newURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_defaultTokensPerTx","type":"uint256"}],"name":"setDefaultTokensPerTx","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxSupply","type":"uint256"}],"name":"setMaxSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxTokensPerTx","type":"uint256"}],"name":"setMaxTokensPerTx","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxTokensWithFeePerTx","type":"uint256"}],"name":"setMaxTokensWithFeePerTx","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newTokenPrice","type":"uint256"}],"name":"setTokenPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"mode","type":"uint256"}],"name":"setTokenURIMode","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":[],"name":"tokenPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"whitelistMintRemains","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"withdrawTo","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60c060405260008055600060075560405180606001604052806030815260200162005a1960309139600990805190602001906200003e929190620002f2565b506611c37937e08000600a556005600b556003600c55610d05600d556001600e60006101000a81548160ff0219169083151502179055506000600f5560146010556000601160006101000a81548160ff02191690836001811115620000a857620000a76200047b565b5b0217905550348015620000ba57600080fd5b506040518060400160405280600b81526020017f546865205475726b6973680000000000000000000000000000000000000000008152506040518060400160405280600781526020017f5475726b697368000000000000000000000000000000000000000000000000008152506064600d546000811162000172576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620001699062000412565b60405180910390fd5b60008211620001b8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620001af90620003f0565b60405180910390fd5b8360019080519060200190620001d0929190620002f2565b508260029080519060200190620001e9929190620002f2565b508160a081815250508060808181525050505050506200021e620002126200022460201b60201c565b6200022c60201b60201c565b62000577565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b828054620003009062000445565b90600052602060002090601f01602090048101928262000324576000855562000370565b82601f106200033f57805160ff191683800117855562000370565b8280016001018555821562000370579182015b828111156200036f57825182559160200191906001019062000352565b5b5090506200037f919062000383565b5090565b5b808211156200039e57600081600090555060010162000384565b5090565b6000620003b160278362000434565b9150620003be82620004d9565b604082019050919050565b6000620003d8602e8362000434565b9150620003e58262000528565b604082019050919050565b600060208201905081810360008301526200040b81620003a2565b9050919050565b600060208201905081810360008301526200042d81620003c9565b9050919050565b600082825260208201905092915050565b600060028204905060018216806200045e57607f821691505b60208210811415620004755762000474620004aa565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f455243373231413a206d61782062617463682073697a65206d7573742062652060008201527f6e6f6e7a65726f00000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a20636f6c6c656374696f6e206d757374206861766520612060008201527f6e6f6e7a65726f20737570706c79000000000000000000000000000000000000602082015250565b60805160a051615471620005a860003960008181612cb101528181612cda01526133090152600050506154716000f3fe6080604052600436106102725760003560e01c806370a082311161014f578063b88d4fde116100c1578063d7224ba01161007a578063d7224ba014610929578063dc33e68114610954578063e985e9c514610991578063eb8d2444146109ce578063f2fde38b146109f9578063f47c84c514610a2257610272565b8063b88d4fde1461083c578063b9bed05e14610865578063c4d7e2f81461088e578063c634d032146108a5578063c87b56dd146108c1578063d0a04eac146108fe57610272565b806385c8cc741161011357806385c8cc74146107405780638da5cb5b146107695780638f69ae6f14610794578063900c71f5146107bf57806395d89b41146107e8578063a22cb4651461081357610272565b806370a082311461066f578063715018a6146106ac57806378cf19e9146106c35780637b8940cc146106ec5780637ff9b5961461071557610272565b806342842e0e116101e85780635e307a48116101ac5780635e307a481461055f5780636352211e1461058a578063681c8bac146105c75780636a61e5fc146105f25780636c0360eb1461061b5780636f8b44b01461064657610272565b806342842e0e1461046a578063495e1eba146104935780634df8bb45146104bc5780634f6ccce7146104f957806355f804b31461053657610272565b8063205c28781161023a578063205c28781461037057806323b872dd146103995780632b57cfbb146103c25780632f745c59146103ff57806334918dfd1461043c5780633ccfd60b1461045357610272565b806301ffc9a71461027757806306fdde03146102b4578063081812fc146102df578063095ea7b31461031c57806318160ddd14610345575b600080fd5b34801561028357600080fd5b5061029e60048036038101906102999190613b6a565b610a4d565b6040516102ab919061433a565b60405180910390f35b3480156102c057600080fd5b506102c9610b97565b6040516102d69190614355565b60405180910390f35b3480156102eb57600080fd5b5061030660048036038101906103019190613c0d565b610c29565b60405161031391906142d3565b60405180910390f35b34801561032857600080fd5b50610343600480360381019061033e9190613b2a565b610cae565b005b34801561035157600080fd5b5061035a610dc7565b6040516103679190614713565b60405180910390f35b34801561037c57600080fd5b5061039760048036038101906103929190613b2a565b610dd0565b005b3480156103a557600080fd5b506103c060048036038101906103bb9190613a14565b610eda565b005b3480156103ce57600080fd5b506103e960048036038101906103e49190613c3a565b610eea565b6040516103f69190614713565b60405180910390f35b34801561040b57600080fd5b5061042660048036038101906104219190613b2a565b610f5b565b6040516104339190614713565b60405180910390f35b34801561044857600080fd5b50610451611159565b005b34801561045f57600080fd5b50610468611201565b005b34801561047657600080fd5b50610491600480360381019061048c9190613a14565b6112cc565b005b34801561049f57600080fd5b506104ba60048036038101906104b59190613c0d565b6112ec565b005b3480156104c857600080fd5b506104e360048036038101906104de91906139a7565b611372565b6040516104f091906146f7565b60405180910390f35b34801561050557600080fd5b50610520600480360381019061051b9190613c0d565b611421565b60405161052d9190614713565b60405180910390f35b34801561054257600080fd5b5061055d60048036038101906105589190613bc4565b611474565b005b34801561056b57600080fd5b5061057461150a565b6040516105819190614713565b60405180910390f35b34801561059657600080fd5b506105b160048036038101906105ac9190613c0d565b611510565b6040516105be91906142d3565b60405180910390f35b3480156105d357600080fd5b506105dc611526565b6040516105e99190614713565b60405180910390f35b3480156105fe57600080fd5b5061061960048036038101906106149190613c0d565b61152c565b005b34801561062757600080fd5b506106306115b2565b60405161063d9190614355565b60405180910390f35b34801561065257600080fd5b5061066d60048036038101906106689190613c0d565b611640565b005b34801561067b57600080fd5b50610696600480360381019061069191906139a7565b6116c6565b6040516106a39190614713565b60405180910390f35b3480156106b857600080fd5b506106c16117af565b005b3480156106cf57600080fd5b506106ea60048036038101906106e59190613b2a565b611837565b005b3480156106f857600080fd5b50610713600480360381019061070e9190613c0d565b611918565b005b34801561072157600080fd5b5061072a6119b9565b6040516107379190614713565b60405180910390f35b34801561074c57600080fd5b5061076760048036038101906107629190613c0d565b6119bf565b005b34801561077557600080fd5b5061077e611a45565b60405161078b91906142d3565b60405180910390f35b3480156107a057600080fd5b506107a9611a6f565b6040516107b69190614713565b60405180910390f35b3480156107cb57600080fd5b506107e660048036038101906107e19190613c0d565b611a75565b005b3480156107f457600080fd5b506107fd611b59565b60405161080a9190614355565b60405180910390f35b34801561081f57600080fd5b5061083a60048036038101906108359190613aea565b611beb565b005b34801561084857600080fd5b50610863600480360381019061085e9190613a67565b611d6c565b005b34801561087157600080fd5b5061088c60048036038101906108879190613c0d565b611dc8565b005b34801561089a57600080fd5b506108a3611e4e565b005b6108bf60048036038101906108ba9190613c0d565b611ed4565b005b3480156108cd57600080fd5b506108e860048036038101906108e39190613c0d565b612185565b6040516108f59190614355565b60405180910390f35b34801561090a57600080fd5b506109136122c7565b6040516109209190614713565b60405180910390f35b34801561093557600080fd5b5061093e6122cd565b60405161094b9190614713565b60405180910390f35b34801561096057600080fd5b5061097b600480360381019061097691906139a7565b6122d3565b6040516109889190614713565b60405180910390f35b34801561099d57600080fd5b506109b860048036038101906109b391906139d4565b6122e5565b6040516109c5919061433a565b60405180910390f35b3480156109da57600080fd5b506109e3612379565b6040516109f0919061433a565b60405180910390f35b348015610a0557600080fd5b50610a206004803603810190610a1b91906139a7565b61238c565b005b348015610a2e57600080fd5b50610a37612484565b604051610a449190614713565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610b1857507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610b8057507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610b905750610b8f8261248a565b5b9050919050565b606060018054610ba690614a98565b80601f0160208091040260200160405190810160405280929190818152602001828054610bd290614a98565b8015610c1f5780601f10610bf457610100808354040283529160200191610c1f565b820191906000526020600020905b815481529060010190602001808311610c0257829003601f168201915b5050505050905090565b6000610c34826124f4565b610c73576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c6a906146b7565b60405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610cb982611510565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610d2a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d21906145d7565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610d49612501565b73ffffffffffffffffffffffffffffffffffffffff161480610d785750610d7781610d72612501565b6122e5565b5b610db7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dae906144b7565b60405180910390fd5b610dc2838383612509565b505050565b60008054905090565b610dd8612501565b73ffffffffffffffffffffffffffffffffffffffff16610df6611a45565b73ffffffffffffffffffffffffffffffffffffffff1614610e4c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e4390614497565b60405180910390fd5b47811115610e8f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e8690614417565b60405180910390fd5b8173ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015610ed5573d6000803e3d6000fd5b505050565b610ee58383836125bb565b505050565b600080610ef6836122d3565b1115610f1157600a5483610f0a91906148da565b9050610f55565b601054831115610f3257600a54601054610f2b91906148da565b9050610f55565b6010548311610f5057600a5483610f4991906148da565b9050610f55565b600090505b92915050565b6000610f66836116c6565b8210610fa7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f9e90614377565b60405180910390fd5b6000610fb1610dc7565b905060008060005b83811015611117576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146110ab57806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561110357868414156110f4578195505050505050611153565b83806110ff90614afb565b9450505b50808061110f90614afb565b915050610fb9565b506040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161114a90614657565b60405180910390fd5b92915050565b611161612501565b73ffffffffffffffffffffffffffffffffffffffff1661117f611a45565b73ffffffffffffffffffffffffffffffffffffffff16146111d5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111cc90614497565b60405180910390fd5b600e60009054906101000a900460ff1615600e60006101000a81548160ff021916908315150217905550565b611209612501565b73ffffffffffffffffffffffffffffffffffffffff16611227611a45565b73ffffffffffffffffffffffffffffffffffffffff161461127d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161127490614497565b60405180910390fd5b60004790503373ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f193505050501580156112c8573d6000803e3d6000fd5b5050565b6112e783838360405180602001604052806000815250611d6c565b505050565b6112f4612501565b73ffffffffffffffffffffffffffffffffffffffff16611312611a45565b73ffffffffffffffffffffffffffffffffffffffff1614611368576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161135f90614497565b60405180910390fd5b80600c8190555050565b61137a61373a565b604051806101000160405280600a548152602001600b548152602001600d548152602001600e60009054906101000a900460ff16151581526020016113bd610dc7565b81526020016010548152602001600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161461140c5761140784612b74565b61140f565b60005b8152602001600c548152509050919050565b600061142b610dc7565b821061146c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161146390614437565b60405180910390fd5b819050919050565b61147c612501565b73ffffffffffffffffffffffffffffffffffffffff1661149a611a45565b73ffffffffffffffffffffffffffffffffffffffff16146114f0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114e790614497565b60405180910390fd5b8060099080519060200190611506929190613781565b5050565b600b5481565b600061151b82612c5d565b600001519050919050565b600c5481565b611534612501565b73ffffffffffffffffffffffffffffffffffffffff16611552611a45565b73ffffffffffffffffffffffffffffffffffffffff16146115a8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161159f90614497565b60405180910390fd5b80600a8190555050565b600980546115bf90614a98565b80601f01602080910402602001604051908101604052809291908181526020018280546115eb90614a98565b80156116385780601f1061160d57610100808354040283529160200191611638565b820191906000526020600020905b81548152906001019060200180831161161b57829003601f168201915b505050505081565b611648612501565b73ffffffffffffffffffffffffffffffffffffffff16611666611a45565b73ffffffffffffffffffffffffffffffffffffffff16146116bc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116b390614497565b60405180910390fd5b80600d8190555050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611737576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161172e906144f7565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b6117b7612501565b73ffffffffffffffffffffffffffffffffffffffff166117d5611a45565b73ffffffffffffffffffffffffffffffffffffffff161461182b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161182290614497565b60405180910390fd5b6118356000612e60565b565b61183f612501565b73ffffffffffffffffffffffffffffffffffffffff1661185d611a45565b73ffffffffffffffffffffffffffffffffffffffff16146118b3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118aa90614497565b60405180910390fd5b600d54816118bf610dc7565b6118c99190614853565b111561190a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611901906144d7565b60405180910390fd5b6119148282612f26565b5050565b611920612501565b73ffffffffffffffffffffffffffffffffffffffff1661193e611a45565b73ffffffffffffffffffffffffffffffffffffffff1614611994576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161198b90614497565b60405180910390fd5b80600f819055506001600e60006101000a81548160ff02191690831515021790555050565b600a5481565b6119c7612501565b73ffffffffffffffffffffffffffffffffffffffff166119e5611a45565b73ffffffffffffffffffffffffffffffffffffffff1614611a3b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a3290614497565b60405180910390fd5b8060108190555050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600f5481565b611a7d612501565b73ffffffffffffffffffffffffffffffffffffffff16611a9b611a45565b73ffffffffffffffffffffffffffffffffffffffff1614611af1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ae890614497565b60405180910390fd5b6002811415611b2a576001601160006101000a81548160ff02191690836001811115611b2057611b1f614bd3565b5b0217905550611b56565b6000601160006101000a81548160ff02191690836001811115611b5057611b4f614bd3565b5b02179055505b50565b606060028054611b6890614a98565b80601f0160208091040260200160405190810160405280929190818152602001828054611b9490614a98565b8015611be15780601f10611bb657610100808354040283529160200191611be1565b820191906000526020600020905b815481529060010190602001808311611bc457829003601f168201915b5050505050905090565b611bf3612501565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611c61576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c5890614577565b60405180910390fd5b8060066000611c6e612501565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611d1b612501565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611d60919061433a565b60405180910390a35050565b611d778484846125bb565b611d8384848484612f44565b611dc2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611db9906145f7565b60405180910390fd5b50505050565b611dd0612501565b73ffffffffffffffffffffffffffffffffffffffff16611dee611a45565b73ffffffffffffffffffffffffffffffffffffffff1614611e44576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e3b90614497565b60405180910390fd5b80600b8190555050565b611e56612501565b73ffffffffffffffffffffffffffffffffffffffff16611e74611a45565b73ffffffffffffffffffffffffffffffffffffffff1614611eca576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ec190614497565b60405180910390fd5b6000600f81905550565b600e60009054906101000a900460ff16611f23576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f1a90614397565b60405180910390fd5b600b54811115611f68576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f5f906145b7565b60405180910390fd5b60008111611fab576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fa290614697565b60405180910390fd5b600d5481611fb7610dc7565b611fc19190614853565b1115612002576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ff990614537565b60405180910390fd5b6000600f5411801561201d5750600061201a336122d3565b11155b1561205457600f54811061203157600f5490505b61203b3382612f26565b80600f546120499190614968565b600f81905550612182565b600061205f33612b74565b11156120ba57600a548161207391906148da565b3410156120b5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120ac906143b7565b60405180910390fd5b612177565b60105481111561211b57600a546010546120d491906148da565b341015612116576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161210d906143b7565b60405180910390fd5b612176565b601054811161217557600a548161213291906148da565b341015612174576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161216b906143b7565b60405180910390fd5b5b5b5b6121813382612f26565b5b50565b6060612190826124f4565b6121cf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121c690614517565b60405180910390fd5b6001808111156121e2576121e1614bd3565b5b601160009054906101000a900460ff16600181111561220457612203614bd3565b5b14156122685760006009805461221990614a98565b9050116122355760405180602001604052806000815250612261565b6009612240836130db565b604051602001612251929190614280565b6040516020818303038152906040525b90506122c2565b60006009805461227790614a98565b90501161229357604051806020016040528060008152506122bf565b600961229e836130db565b6040516020016122af9291906142a4565b6040516020818303038152906040525b90505b919050565b60105481565b60075481565b60006122de82612b74565b9050919050565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600e60009054906101000a900460ff1681565b612394612501565b73ffffffffffffffffffffffffffffffffffffffff166123b2611a45565b73ffffffffffffffffffffffffffffffffffffffff1614612408576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123ff90614497565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612478576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161246f906143d7565b60405180910390fd5b61248181612e60565b50565b600d5481565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6000805482109050919050565b600033905090565b826005600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60006125c682612c5d565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff166125ed612501565b73ffffffffffffffffffffffffffffffffffffffff1614806126495750612612612501565b73ffffffffffffffffffffffffffffffffffffffff1661263184610c29565b73ffffffffffffffffffffffffffffffffffffffff16145b806126655750612664826000015161265f612501565b6122e5565b5b9050806126a7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161269e90614597565b60405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff1614612719576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161271090614557565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612789576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161278090614457565b60405180910390fd5b612796858585600161323c565b6127a66000848460000151612509565b6001600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff166128149190614934565b92506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff1602179055506001600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff166128b8919061480d565b92506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060405180604001604052808573ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506003600085815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555090505060006001846129be9190614853565b9050600073ffffffffffffffffffffffffffffffffffffffff166003600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415612b0457612a34816124f4565b15612b03576040518060400160405280846000015173ffffffffffffffffffffffffffffffffffffffff168152602001846020015167ffffffffffffffff168152506003600083815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055509050505b5b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612b6c8686866001613242565b505050505050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612be5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612bdc90614477565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160109054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b612c65613807565b612c6e826124f4565b612cad576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ca4906143f7565b60405180910390fd5b60007f00000000000000000000000000000000000000000000000000000000000000008310612d115760017f000000000000000000000000000000000000000000000000000000000000000084612d049190614968565b612d0e9190614853565b90505b60008390505b818110612e1f576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612e0b57809350505050612e5b565b508080612e1790614a6e565b915050612d17565b506040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e5290614677565b60405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b612f40828260405180602001604052806000815250613248565b5050565b6000612f658473ffffffffffffffffffffffffffffffffffffffff16613727565b156130ce578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612f8e612501565b8786866040518563ffffffff1660e01b8152600401612fb094939291906142ee565b602060405180830381600087803b158015612fca57600080fd5b505af1925050508015612ffb57506040513d601f19601f82011682018060405250810190612ff89190613b97565b60015b61307e573d806000811461302b576040519150601f19603f3d011682016040523d82523d6000602084013e613030565b606091505b50600081511415613076576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161306d906145f7565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506130d3565b600190505b949350505050565b60606000821415613123576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050613237565b600082905060005b6000821461315557808061313e90614afb565b915050600a8261314e91906148a9565b915061312b565b60008167ffffffffffffffff81111561317157613170614c60565b5b6040519080825280601f01601f1916602001820160405280156131a35781602001600182028036833780820191505090505b5090505b60008514613230576001826131bc9190614968565b9150600a856131cb9190614b44565b60306131d79190614853565b60f81b8183815181106131ed576131ec614c31565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561322991906148a9565b94506131a7565b8093505050505b919050565b50505050565b50505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156132be576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016132b590614637565b60405180910390fd5b6132c7816124f4565b15613307576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016132fe90614617565b60405180910390fd5b7f000000000000000000000000000000000000000000000000000000000000000083111561336a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613361906146d7565b60405180910390fd5b613377600085838661323c565b6000600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206040518060400160405290816000820160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff1681526020016000820160109054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff168152505090506040518060400160405280858360000151613474919061480d565b6fffffffffffffffffffffffffffffffff16815260200185836020015161349b919061480d565b6fffffffffffffffffffffffffffffffff16815250600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008201518160000160006101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060208201518160000160106101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555090505060405180604001604052808673ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506003600084815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550905050600082905060005b8581101561370a57818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46136aa6000888488612f44565b6136e9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016136e0906145f7565b60405180910390fd5b81806136f490614afb565b925050808061370290614afb565b915050613639565b508060008190555061371f6000878588613242565b505050505050565b600080823b905060008111915050919050565b604051806101000160405280600081526020016000815260200160008152602001600015158152602001600081526020016000815260200160008152602001600081525090565b82805461378d90614a98565b90600052602060002090601f0160209004810192826137af57600085556137f6565b82601f106137c857805160ff19168380011785556137f6565b828001600101855582156137f6579182015b828111156137f55782518255916020019190600101906137da565b5b5090506138039190613841565b5090565b6040518060400160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681525090565b5b8082111561385a576000816000905550600101613842565b5090565b600061387161386c84614753565b61472e565b90508281526020810184848401111561388d5761388c614c94565b5b613898848285614a2c565b509392505050565b60006138b36138ae84614784565b61472e565b9050828152602081018484840111156138cf576138ce614c94565b5b6138da848285614a2c565b509392505050565b6000813590506138f1816153df565b92915050565b600081359050613906816153f6565b92915050565b60008135905061391b8161540d565b92915050565b6000815190506139308161540d565b92915050565b600082601f83011261394b5761394a614c8f565b5b813561395b84826020860161385e565b91505092915050565b600082601f83011261397957613978614c8f565b5b81356139898482602086016138a0565b91505092915050565b6000813590506139a181615424565b92915050565b6000602082840312156139bd576139bc614c9e565b5b60006139cb848285016138e2565b91505092915050565b600080604083850312156139eb576139ea614c9e565b5b60006139f9858286016138e2565b9250506020613a0a858286016138e2565b9150509250929050565b600080600060608486031215613a2d57613a2c614c9e565b5b6000613a3b868287016138e2565b9350506020613a4c868287016138e2565b9250506040613a5d86828701613992565b9150509250925092565b60008060008060808587031215613a8157613a80614c9e565b5b6000613a8f878288016138e2565b9450506020613aa0878288016138e2565b9350506040613ab187828801613992565b925050606085013567ffffffffffffffff811115613ad257613ad1614c99565b5b613ade87828801613936565b91505092959194509250565b60008060408385031215613b0157613b00614c9e565b5b6000613b0f858286016138e2565b9250506020613b20858286016138f7565b9150509250929050565b60008060408385031215613b4157613b40614c9e565b5b6000613b4f858286016138e2565b9250506020613b6085828601613992565b9150509250929050565b600060208284031215613b8057613b7f614c9e565b5b6000613b8e8482850161390c565b91505092915050565b600060208284031215613bad57613bac614c9e565b5b6000613bbb84828501613921565b91505092915050565b600060208284031215613bda57613bd9614c9e565b5b600082013567ffffffffffffffff811115613bf857613bf7614c99565b5b613c0484828501613964565b91505092915050565b600060208284031215613c2357613c22614c9e565b5b6000613c3184828501613992565b91505092915050565b60008060408385031215613c5157613c50614c9e565b5b6000613c5f85828601613992565b9250506020613c70858286016138e2565b9150509250929050565b613c838161499c565b82525050565b613c92816149ae565b82525050565b613ca1816149ae565b82525050565b6000613cb2826147ca565b613cbc81856147e0565b9350613ccc818560208601614a3b565b613cd581614ca3565b840191505092915050565b6000613ceb826147d5565b613cf581856147f1565b9350613d05818560208601614a3b565b613d0e81614ca3565b840191505092915050565b6000613d24826147d5565b613d2e8185614802565b9350613d3e818560208601614a3b565b80840191505092915050565b60008154613d5781614a98565b613d618186614802565b94506001821660008114613d7c5760018114613d8d57613dc0565b60ff19831686528186019350613dc0565b613d96856147b5565b60005b83811015613db857815481890152600182019150602081019050613d99565b838801955050505b50505092915050565b6000613dd66022836147f1565b9150613de182614cb4565b604082019050919050565b6000613df96013836147f1565b9150613e0482614d03565b602082019050919050565b6000613e1c6010836147f1565b9150613e2782614d2c565b602082019050919050565b6000613e3f6026836147f1565b9150613e4a82614d55565b604082019050919050565b6000613e62602a836147f1565b9150613e6d82614da4565b604082019050919050565b6000613e85601f836147f1565b9150613e9082614df3565b602082019050919050565b6000613ea86023836147f1565b9150613eb382614e1c565b604082019050919050565b6000613ecb6025836147f1565b9150613ed682614e6b565b604082019050919050565b6000613eee6031836147f1565b9150613ef982614eba565b604082019050919050565b6000613f116015836147f1565b9150613f1c82614f09565b602082019050919050565b6000613f346039836147f1565b9150613f3f82614f32565b604082019050919050565b6000613f57601b836147f1565b9150613f6282614f81565b602082019050919050565b6000613f7a602b836147f1565b9150613f8582614faa565b604082019050919050565b6000613f9d6015836147f1565b9150613fa882614ff9565b602082019050919050565b6000613fc06011836147f1565b9150613fcb82615022565b602082019050919050565b6000613fe36026836147f1565b9150613fee8261504b565b604082019050919050565b6000614006600583614802565b91506140118261509a565b600582019050919050565b6000614029601a836147f1565b9150614034826150c3565b602082019050919050565b600061404c6032836147f1565b9150614057826150ec565b604082019050919050565b600061406f6018836147f1565b915061407a8261513b565b602082019050919050565b60006140926022836147f1565b915061409d82615164565b604082019050919050565b60006140b56033836147f1565b91506140c0826151b3565b604082019050919050565b60006140d8601d836147f1565b91506140e382615202565b602082019050919050565b60006140fb6021836147f1565b91506141068261522b565b604082019050919050565b600061411e602e836147f1565b91506141298261527a565b604082019050919050565b6000614141602f836147f1565b915061414c826152c9565b604082019050919050565b60006141646016836147f1565b915061416f82615318565b602082019050919050565b6000614187602d836147f1565b915061419282615341565b604082019050919050565b60006141aa6022836147f1565b91506141b582615390565b604082019050919050565b610100820160008201516141d76000850182614262565b5060208201516141ea6020850182614262565b5060408201516141fd6040850182614262565b5060608201516142106060850182613c89565b5060808201516142236080850182614262565b5060a082015161423660a0850182614262565b5060c082015161424960c0850182614262565b5060e082015161425c60e0850182614262565b50505050565b61426b81614a22565b82525050565b61427a81614a22565b82525050565b600061428c8285613d4a565b91506142988284613d19565b91508190509392505050565b60006142b08285613d4a565b91506142bc8284613d19565b91506142c782613ff9565b91508190509392505050565b60006020820190506142e86000830184613c7a565b92915050565b60006080820190506143036000830187613c7a565b6143106020830186613c7a565b61431d6040830185614271565b818103606083015261432f8184613ca7565b905095945050505050565b600060208201905061434f6000830184613c98565b92915050565b6000602082019050818103600083015261436f8184613ce0565b905092915050565b6000602082019050818103600083015261439081613dc9565b9050919050565b600060208201905081810360008301526143b081613dec565b9050919050565b600060208201905081810360008301526143d081613e0f565b9050919050565b600060208201905081810360008301526143f081613e32565b9050919050565b6000602082019050818103600083015261441081613e55565b9050919050565b6000602082019050818103600083015261443081613e78565b9050919050565b6000602082019050818103600083015261445081613e9b565b9050919050565b6000602082019050818103600083015261447081613ebe565b9050919050565b6000602082019050818103600083015261449081613ee1565b9050919050565b600060208201905081810360008301526144b081613f04565b9050919050565b600060208201905081810360008301526144d081613f27565b9050919050565b600060208201905081810360008301526144f081613f4a565b9050919050565b6000602082019050818103600083015261451081613f6d565b9050919050565b6000602082019050818103600083015261453081613f90565b9050919050565b6000602082019050818103600083015261455081613fb3565b9050919050565b6000602082019050818103600083015261457081613fd6565b9050919050565b600060208201905081810360008301526145908161401c565b9050919050565b600060208201905081810360008301526145b08161403f565b9050919050565b600060208201905081810360008301526145d081614062565b9050919050565b600060208201905081810360008301526145f081614085565b9050919050565b60006020820190508181036000830152614610816140a8565b9050919050565b60006020820190508181036000830152614630816140cb565b9050919050565b60006020820190508181036000830152614650816140ee565b9050919050565b6000602082019050818103600083015261467081614111565b9050919050565b6000602082019050818103600083015261469081614134565b9050919050565b600060208201905081810360008301526146b081614157565b9050919050565b600060208201905081810360008301526146d08161417a565b9050919050565b600060208201905081810360008301526146f08161419d565b9050919050565b60006101008201905061470d60008301846141c0565b92915050565b60006020820190506147286000830184614271565b92915050565b6000614738614749565b90506147448282614aca565b919050565b6000604051905090565b600067ffffffffffffffff82111561476e5761476d614c60565b5b61477782614ca3565b9050602081019050919050565b600067ffffffffffffffff82111561479f5761479e614c60565b5b6147a882614ca3565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000614818826149e6565b9150614823836149e6565b9250826fffffffffffffffffffffffffffffffff0382111561484857614847614b75565b5b828201905092915050565b600061485e82614a22565b915061486983614a22565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561489e5761489d614b75565b5b828201905092915050565b60006148b482614a22565b91506148bf83614a22565b9250826148cf576148ce614ba4565b5b828204905092915050565b60006148e582614a22565b91506148f083614a22565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561492957614928614b75565b5b828202905092915050565b600061493f826149e6565b915061494a836149e6565b92508282101561495d5761495c614b75565b5b828203905092915050565b600061497382614a22565b915061497e83614a22565b92508282101561499157614990614b75565b5b828203905092915050565b60006149a782614a02565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b60006fffffffffffffffffffffffffffffffff82169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015614a59578082015181840152602081019050614a3e565b83811115614a68576000848401525b50505050565b6000614a7982614a22565b91506000821415614a8d57614a8c614b75565b5b600182039050919050565b60006002820490506001821680614ab057607f821691505b60208210811415614ac457614ac3614c02565b5b50919050565b614ad382614ca3565b810181811067ffffffffffffffff82111715614af257614af1614c60565b5b80604052505050565b6000614b0682614a22565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415614b3957614b38614b75565b5b600182019050919050565b6000614b4f82614a22565b9150614b5a83614a22565b925082614b6a57614b69614ba4565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f455243373231413a206f776e657220696e646578206f7574206f6620626f756e60008201527f6473000000000000000000000000000000000000000000000000000000000000602082015250565b7f53616c65206d7573742062652061637469766500000000000000000000000000600082015250565b7f4e6f7420656e6f75676820657468657200000000000000000000000000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a206f776e657220717565727920666f72206e6f6e6578697360008201527f74656e7420746f6b656e00000000000000000000000000000000000000000000602082015250565b7f4578636565642062616c616e6365206f66207468697320636f6e747261637400600082015250565b7f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f7560008201527f6e64730000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a206e756d626572206d696e74656420717565727920666f7260008201527f20746865207a65726f2061646472657373000000000000000000000000000000602082015250565b7f596f7520617265206e6f7420746865206f776e65720000000000000000000000600082015250565b7f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000602082015250565b7f457863656564206d617820737570706c79206f6620746f6b656e730000000000600082015250565b7f455243373231413a2062616c616e636520717565727920666f7220746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b7f546f6b656e20646f6573206e6f742065786973742e0000000000000000000000600082015250565b7f457863656564206d617820737570706c79000000000000000000000000000000600082015250565b7f455243373231413a207472616e736665722066726f6d20696e636f727265637460008201527f206f776e65720000000000000000000000000000000000000000000000000000602082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f455243373231413a20617070726f766520746f2063616c6c6572000000000000600082015250565b7f455243373231413a207472616e736665722063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b7f457863656564206d617820746f6b656e73207065722074780000000000000000600082015250565b7f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60008201527f6572000000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e7366657220746f206e6f6e204552433732315260008201527f6563656976657220696d706c656d656e74657200000000000000000000000000602082015250565b7f455243373231413a20746f6b656e20616c7265616479206d696e746564000000600082015250565b7f455243373231413a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060008201527f6f776e657220627920696e646578000000000000000000000000000000000000602082015250565b7f455243373231413a20756e61626c6520746f2064657465726d696e652074686560008201527f206f776e6572206f6620746f6b656e0000000000000000000000000000000000602082015250565b7f4d757374206d696e74206174206c65617374206f6e6500000000000000000000600082015250565b7f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560008201527f78697374656e7420746f6b656e00000000000000000000000000000000000000602082015250565b7f455243373231413a207175616e7469747920746f206d696e7420746f6f20686960008201527f6768000000000000000000000000000000000000000000000000000000000000602082015250565b6153e88161499c565b81146153f357600080fd5b50565b6153ff816149ae565b811461540a57600080fd5b50565b615416816149ba565b811461542157600080fd5b50565b61542d81614a22565b811461543857600080fd5b5056fea26469706673582212202ec192b5b328c9bfd533058fa9005f5e375ac12d8b5dbe8678fb66860c6a6bab64736f6c6343000807003368747470733a2f2f6e667473657276696365732e73332e616d617a6f6e6177732e636f6d2f7468657475726b6973682f

Deployed Bytecode

0x6080604052600436106102725760003560e01c806370a082311161014f578063b88d4fde116100c1578063d7224ba01161007a578063d7224ba014610929578063dc33e68114610954578063e985e9c514610991578063eb8d2444146109ce578063f2fde38b146109f9578063f47c84c514610a2257610272565b8063b88d4fde1461083c578063b9bed05e14610865578063c4d7e2f81461088e578063c634d032146108a5578063c87b56dd146108c1578063d0a04eac146108fe57610272565b806385c8cc741161011357806385c8cc74146107405780638da5cb5b146107695780638f69ae6f14610794578063900c71f5146107bf57806395d89b41146107e8578063a22cb4651461081357610272565b806370a082311461066f578063715018a6146106ac57806378cf19e9146106c35780637b8940cc146106ec5780637ff9b5961461071557610272565b806342842e0e116101e85780635e307a48116101ac5780635e307a481461055f5780636352211e1461058a578063681c8bac146105c75780636a61e5fc146105f25780636c0360eb1461061b5780636f8b44b01461064657610272565b806342842e0e1461046a578063495e1eba146104935780634df8bb45146104bc5780634f6ccce7146104f957806355f804b31461053657610272565b8063205c28781161023a578063205c28781461037057806323b872dd146103995780632b57cfbb146103c25780632f745c59146103ff57806334918dfd1461043c5780633ccfd60b1461045357610272565b806301ffc9a71461027757806306fdde03146102b4578063081812fc146102df578063095ea7b31461031c57806318160ddd14610345575b600080fd5b34801561028357600080fd5b5061029e60048036038101906102999190613b6a565b610a4d565b6040516102ab919061433a565b60405180910390f35b3480156102c057600080fd5b506102c9610b97565b6040516102d69190614355565b60405180910390f35b3480156102eb57600080fd5b5061030660048036038101906103019190613c0d565b610c29565b60405161031391906142d3565b60405180910390f35b34801561032857600080fd5b50610343600480360381019061033e9190613b2a565b610cae565b005b34801561035157600080fd5b5061035a610dc7565b6040516103679190614713565b60405180910390f35b34801561037c57600080fd5b5061039760048036038101906103929190613b2a565b610dd0565b005b3480156103a557600080fd5b506103c060048036038101906103bb9190613a14565b610eda565b005b3480156103ce57600080fd5b506103e960048036038101906103e49190613c3a565b610eea565b6040516103f69190614713565b60405180910390f35b34801561040b57600080fd5b5061042660048036038101906104219190613b2a565b610f5b565b6040516104339190614713565b60405180910390f35b34801561044857600080fd5b50610451611159565b005b34801561045f57600080fd5b50610468611201565b005b34801561047657600080fd5b50610491600480360381019061048c9190613a14565b6112cc565b005b34801561049f57600080fd5b506104ba60048036038101906104b59190613c0d565b6112ec565b005b3480156104c857600080fd5b506104e360048036038101906104de91906139a7565b611372565b6040516104f091906146f7565b60405180910390f35b34801561050557600080fd5b50610520600480360381019061051b9190613c0d565b611421565b60405161052d9190614713565b60405180910390f35b34801561054257600080fd5b5061055d60048036038101906105589190613bc4565b611474565b005b34801561056b57600080fd5b5061057461150a565b6040516105819190614713565b60405180910390f35b34801561059657600080fd5b506105b160048036038101906105ac9190613c0d565b611510565b6040516105be91906142d3565b60405180910390f35b3480156105d357600080fd5b506105dc611526565b6040516105e99190614713565b60405180910390f35b3480156105fe57600080fd5b5061061960048036038101906106149190613c0d565b61152c565b005b34801561062757600080fd5b506106306115b2565b60405161063d9190614355565b60405180910390f35b34801561065257600080fd5b5061066d60048036038101906106689190613c0d565b611640565b005b34801561067b57600080fd5b50610696600480360381019061069191906139a7565b6116c6565b6040516106a39190614713565b60405180910390f35b3480156106b857600080fd5b506106c16117af565b005b3480156106cf57600080fd5b506106ea60048036038101906106e59190613b2a565b611837565b005b3480156106f857600080fd5b50610713600480360381019061070e9190613c0d565b611918565b005b34801561072157600080fd5b5061072a6119b9565b6040516107379190614713565b60405180910390f35b34801561074c57600080fd5b5061076760048036038101906107629190613c0d565b6119bf565b005b34801561077557600080fd5b5061077e611a45565b60405161078b91906142d3565b60405180910390f35b3480156107a057600080fd5b506107a9611a6f565b6040516107b69190614713565b60405180910390f35b3480156107cb57600080fd5b506107e660048036038101906107e19190613c0d565b611a75565b005b3480156107f457600080fd5b506107fd611b59565b60405161080a9190614355565b60405180910390f35b34801561081f57600080fd5b5061083a60048036038101906108359190613aea565b611beb565b005b34801561084857600080fd5b50610863600480360381019061085e9190613a67565b611d6c565b005b34801561087157600080fd5b5061088c60048036038101906108879190613c0d565b611dc8565b005b34801561089a57600080fd5b506108a3611e4e565b005b6108bf60048036038101906108ba9190613c0d565b611ed4565b005b3480156108cd57600080fd5b506108e860048036038101906108e39190613c0d565b612185565b6040516108f59190614355565b60405180910390f35b34801561090a57600080fd5b506109136122c7565b6040516109209190614713565b60405180910390f35b34801561093557600080fd5b5061093e6122cd565b60405161094b9190614713565b60405180910390f35b34801561096057600080fd5b5061097b600480360381019061097691906139a7565b6122d3565b6040516109889190614713565b60405180910390f35b34801561099d57600080fd5b506109b860048036038101906109b391906139d4565b6122e5565b6040516109c5919061433a565b60405180910390f35b3480156109da57600080fd5b506109e3612379565b6040516109f0919061433a565b60405180910390f35b348015610a0557600080fd5b50610a206004803603810190610a1b91906139a7565b61238c565b005b348015610a2e57600080fd5b50610a37612484565b604051610a449190614713565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610b1857507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610b8057507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610b905750610b8f8261248a565b5b9050919050565b606060018054610ba690614a98565b80601f0160208091040260200160405190810160405280929190818152602001828054610bd290614a98565b8015610c1f5780601f10610bf457610100808354040283529160200191610c1f565b820191906000526020600020905b815481529060010190602001808311610c0257829003601f168201915b5050505050905090565b6000610c34826124f4565b610c73576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c6a906146b7565b60405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610cb982611510565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610d2a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d21906145d7565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610d49612501565b73ffffffffffffffffffffffffffffffffffffffff161480610d785750610d7781610d72612501565b6122e5565b5b610db7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dae906144b7565b60405180910390fd5b610dc2838383612509565b505050565b60008054905090565b610dd8612501565b73ffffffffffffffffffffffffffffffffffffffff16610df6611a45565b73ffffffffffffffffffffffffffffffffffffffff1614610e4c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e4390614497565b60405180910390fd5b47811115610e8f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e8690614417565b60405180910390fd5b8173ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015610ed5573d6000803e3d6000fd5b505050565b610ee58383836125bb565b505050565b600080610ef6836122d3565b1115610f1157600a5483610f0a91906148da565b9050610f55565b601054831115610f3257600a54601054610f2b91906148da565b9050610f55565b6010548311610f5057600a5483610f4991906148da565b9050610f55565b600090505b92915050565b6000610f66836116c6565b8210610fa7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f9e90614377565b60405180910390fd5b6000610fb1610dc7565b905060008060005b83811015611117576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146110ab57806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561110357868414156110f4578195505050505050611153565b83806110ff90614afb565b9450505b50808061110f90614afb565b915050610fb9565b506040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161114a90614657565b60405180910390fd5b92915050565b611161612501565b73ffffffffffffffffffffffffffffffffffffffff1661117f611a45565b73ffffffffffffffffffffffffffffffffffffffff16146111d5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111cc90614497565b60405180910390fd5b600e60009054906101000a900460ff1615600e60006101000a81548160ff021916908315150217905550565b611209612501565b73ffffffffffffffffffffffffffffffffffffffff16611227611a45565b73ffffffffffffffffffffffffffffffffffffffff161461127d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161127490614497565b60405180910390fd5b60004790503373ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f193505050501580156112c8573d6000803e3d6000fd5b5050565b6112e783838360405180602001604052806000815250611d6c565b505050565b6112f4612501565b73ffffffffffffffffffffffffffffffffffffffff16611312611a45565b73ffffffffffffffffffffffffffffffffffffffff1614611368576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161135f90614497565b60405180910390fd5b80600c8190555050565b61137a61373a565b604051806101000160405280600a548152602001600b548152602001600d548152602001600e60009054906101000a900460ff16151581526020016113bd610dc7565b81526020016010548152602001600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161461140c5761140784612b74565b61140f565b60005b8152602001600c548152509050919050565b600061142b610dc7565b821061146c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161146390614437565b60405180910390fd5b819050919050565b61147c612501565b73ffffffffffffffffffffffffffffffffffffffff1661149a611a45565b73ffffffffffffffffffffffffffffffffffffffff16146114f0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114e790614497565b60405180910390fd5b8060099080519060200190611506929190613781565b5050565b600b5481565b600061151b82612c5d565b600001519050919050565b600c5481565b611534612501565b73ffffffffffffffffffffffffffffffffffffffff16611552611a45565b73ffffffffffffffffffffffffffffffffffffffff16146115a8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161159f90614497565b60405180910390fd5b80600a8190555050565b600980546115bf90614a98565b80601f01602080910402602001604051908101604052809291908181526020018280546115eb90614a98565b80156116385780601f1061160d57610100808354040283529160200191611638565b820191906000526020600020905b81548152906001019060200180831161161b57829003601f168201915b505050505081565b611648612501565b73ffffffffffffffffffffffffffffffffffffffff16611666611a45565b73ffffffffffffffffffffffffffffffffffffffff16146116bc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116b390614497565b60405180910390fd5b80600d8190555050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611737576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161172e906144f7565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b6117b7612501565b73ffffffffffffffffffffffffffffffffffffffff166117d5611a45565b73ffffffffffffffffffffffffffffffffffffffff161461182b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161182290614497565b60405180910390fd5b6118356000612e60565b565b61183f612501565b73ffffffffffffffffffffffffffffffffffffffff1661185d611a45565b73ffffffffffffffffffffffffffffffffffffffff16146118b3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118aa90614497565b60405180910390fd5b600d54816118bf610dc7565b6118c99190614853565b111561190a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611901906144d7565b60405180910390fd5b6119148282612f26565b5050565b611920612501565b73ffffffffffffffffffffffffffffffffffffffff1661193e611a45565b73ffffffffffffffffffffffffffffffffffffffff1614611994576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161198b90614497565b60405180910390fd5b80600f819055506001600e60006101000a81548160ff02191690831515021790555050565b600a5481565b6119c7612501565b73ffffffffffffffffffffffffffffffffffffffff166119e5611a45565b73ffffffffffffffffffffffffffffffffffffffff1614611a3b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a3290614497565b60405180910390fd5b8060108190555050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600f5481565b611a7d612501565b73ffffffffffffffffffffffffffffffffffffffff16611a9b611a45565b73ffffffffffffffffffffffffffffffffffffffff1614611af1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ae890614497565b60405180910390fd5b6002811415611b2a576001601160006101000a81548160ff02191690836001811115611b2057611b1f614bd3565b5b0217905550611b56565b6000601160006101000a81548160ff02191690836001811115611b5057611b4f614bd3565b5b02179055505b50565b606060028054611b6890614a98565b80601f0160208091040260200160405190810160405280929190818152602001828054611b9490614a98565b8015611be15780601f10611bb657610100808354040283529160200191611be1565b820191906000526020600020905b815481529060010190602001808311611bc457829003601f168201915b5050505050905090565b611bf3612501565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611c61576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c5890614577565b60405180910390fd5b8060066000611c6e612501565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611d1b612501565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611d60919061433a565b60405180910390a35050565b611d778484846125bb565b611d8384848484612f44565b611dc2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611db9906145f7565b60405180910390fd5b50505050565b611dd0612501565b73ffffffffffffffffffffffffffffffffffffffff16611dee611a45565b73ffffffffffffffffffffffffffffffffffffffff1614611e44576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e3b90614497565b60405180910390fd5b80600b8190555050565b611e56612501565b73ffffffffffffffffffffffffffffffffffffffff16611e74611a45565b73ffffffffffffffffffffffffffffffffffffffff1614611eca576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ec190614497565b60405180910390fd5b6000600f81905550565b600e60009054906101000a900460ff16611f23576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f1a90614397565b60405180910390fd5b600b54811115611f68576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f5f906145b7565b60405180910390fd5b60008111611fab576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fa290614697565b60405180910390fd5b600d5481611fb7610dc7565b611fc19190614853565b1115612002576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ff990614537565b60405180910390fd5b6000600f5411801561201d5750600061201a336122d3565b11155b1561205457600f54811061203157600f5490505b61203b3382612f26565b80600f546120499190614968565b600f81905550612182565b600061205f33612b74565b11156120ba57600a548161207391906148da565b3410156120b5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120ac906143b7565b60405180910390fd5b612177565b60105481111561211b57600a546010546120d491906148da565b341015612116576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161210d906143b7565b60405180910390fd5b612176565b601054811161217557600a548161213291906148da565b341015612174576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161216b906143b7565b60405180910390fd5b5b5b5b6121813382612f26565b5b50565b6060612190826124f4565b6121cf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121c690614517565b60405180910390fd5b6001808111156121e2576121e1614bd3565b5b601160009054906101000a900460ff16600181111561220457612203614bd3565b5b14156122685760006009805461221990614a98565b9050116122355760405180602001604052806000815250612261565b6009612240836130db565b604051602001612251929190614280565b6040516020818303038152906040525b90506122c2565b60006009805461227790614a98565b90501161229357604051806020016040528060008152506122bf565b600961229e836130db565b6040516020016122af9291906142a4565b6040516020818303038152906040525b90505b919050565b60105481565b60075481565b60006122de82612b74565b9050919050565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600e60009054906101000a900460ff1681565b612394612501565b73ffffffffffffffffffffffffffffffffffffffff166123b2611a45565b73ffffffffffffffffffffffffffffffffffffffff1614612408576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123ff90614497565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612478576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161246f906143d7565b60405180910390fd5b61248181612e60565b50565b600d5481565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6000805482109050919050565b600033905090565b826005600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60006125c682612c5d565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff166125ed612501565b73ffffffffffffffffffffffffffffffffffffffff1614806126495750612612612501565b73ffffffffffffffffffffffffffffffffffffffff1661263184610c29565b73ffffffffffffffffffffffffffffffffffffffff16145b806126655750612664826000015161265f612501565b6122e5565b5b9050806126a7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161269e90614597565b60405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff1614612719576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161271090614557565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612789576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161278090614457565b60405180910390fd5b612796858585600161323c565b6127a66000848460000151612509565b6001600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff166128149190614934565b92506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff1602179055506001600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff166128b8919061480d565b92506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060405180604001604052808573ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506003600085815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555090505060006001846129be9190614853565b9050600073ffffffffffffffffffffffffffffffffffffffff166003600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415612b0457612a34816124f4565b15612b03576040518060400160405280846000015173ffffffffffffffffffffffffffffffffffffffff168152602001846020015167ffffffffffffffff168152506003600083815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055509050505b5b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612b6c8686866001613242565b505050505050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612be5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612bdc90614477565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160109054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b612c65613807565b612c6e826124f4565b612cad576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ca4906143f7565b60405180910390fd5b60007f00000000000000000000000000000000000000000000000000000000000000648310612d115760017f000000000000000000000000000000000000000000000000000000000000006484612d049190614968565b612d0e9190614853565b90505b60008390505b818110612e1f576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612e0b57809350505050612e5b565b508080612e1790614a6e565b915050612d17565b506040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e5290614677565b60405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b612f40828260405180602001604052806000815250613248565b5050565b6000612f658473ffffffffffffffffffffffffffffffffffffffff16613727565b156130ce578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612f8e612501565b8786866040518563ffffffff1660e01b8152600401612fb094939291906142ee565b602060405180830381600087803b158015612fca57600080fd5b505af1925050508015612ffb57506040513d601f19601f82011682018060405250810190612ff89190613b97565b60015b61307e573d806000811461302b576040519150601f19603f3d011682016040523d82523d6000602084013e613030565b606091505b50600081511415613076576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161306d906145f7565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506130d3565b600190505b949350505050565b60606000821415613123576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050613237565b600082905060005b6000821461315557808061313e90614afb565b915050600a8261314e91906148a9565b915061312b565b60008167ffffffffffffffff81111561317157613170614c60565b5b6040519080825280601f01601f1916602001820160405280156131a35781602001600182028036833780820191505090505b5090505b60008514613230576001826131bc9190614968565b9150600a856131cb9190614b44565b60306131d79190614853565b60f81b8183815181106131ed576131ec614c31565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561322991906148a9565b94506131a7565b8093505050505b919050565b50505050565b50505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156132be576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016132b590614637565b60405180910390fd5b6132c7816124f4565b15613307576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016132fe90614617565b60405180910390fd5b7f000000000000000000000000000000000000000000000000000000000000006483111561336a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613361906146d7565b60405180910390fd5b613377600085838661323c565b6000600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206040518060400160405290816000820160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff1681526020016000820160109054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff168152505090506040518060400160405280858360000151613474919061480d565b6fffffffffffffffffffffffffffffffff16815260200185836020015161349b919061480d565b6fffffffffffffffffffffffffffffffff16815250600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008201518160000160006101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060208201518160000160106101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555090505060405180604001604052808673ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506003600084815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550905050600082905060005b8581101561370a57818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46136aa6000888488612f44565b6136e9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016136e0906145f7565b60405180910390fd5b81806136f490614afb565b925050808061370290614afb565b915050613639565b508060008190555061371f6000878588613242565b505050505050565b600080823b905060008111915050919050565b604051806101000160405280600081526020016000815260200160008152602001600015158152602001600081526020016000815260200160008152602001600081525090565b82805461378d90614a98565b90600052602060002090601f0160209004810192826137af57600085556137f6565b82601f106137c857805160ff19168380011785556137f6565b828001600101855582156137f6579182015b828111156137f55782518255916020019190600101906137da565b5b5090506138039190613841565b5090565b6040518060400160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681525090565b5b8082111561385a576000816000905550600101613842565b5090565b600061387161386c84614753565b61472e565b90508281526020810184848401111561388d5761388c614c94565b5b613898848285614a2c565b509392505050565b60006138b36138ae84614784565b61472e565b9050828152602081018484840111156138cf576138ce614c94565b5b6138da848285614a2c565b509392505050565b6000813590506138f1816153df565b92915050565b600081359050613906816153f6565b92915050565b60008135905061391b8161540d565b92915050565b6000815190506139308161540d565b92915050565b600082601f83011261394b5761394a614c8f565b5b813561395b84826020860161385e565b91505092915050565b600082601f83011261397957613978614c8f565b5b81356139898482602086016138a0565b91505092915050565b6000813590506139a181615424565b92915050565b6000602082840312156139bd576139bc614c9e565b5b60006139cb848285016138e2565b91505092915050565b600080604083850312156139eb576139ea614c9e565b5b60006139f9858286016138e2565b9250506020613a0a858286016138e2565b9150509250929050565b600080600060608486031215613a2d57613a2c614c9e565b5b6000613a3b868287016138e2565b9350506020613a4c868287016138e2565b9250506040613a5d86828701613992565b9150509250925092565b60008060008060808587031215613a8157613a80614c9e565b5b6000613a8f878288016138e2565b9450506020613aa0878288016138e2565b9350506040613ab187828801613992565b925050606085013567ffffffffffffffff811115613ad257613ad1614c99565b5b613ade87828801613936565b91505092959194509250565b60008060408385031215613b0157613b00614c9e565b5b6000613b0f858286016138e2565b9250506020613b20858286016138f7565b9150509250929050565b60008060408385031215613b4157613b40614c9e565b5b6000613b4f858286016138e2565b9250506020613b6085828601613992565b9150509250929050565b600060208284031215613b8057613b7f614c9e565b5b6000613b8e8482850161390c565b91505092915050565b600060208284031215613bad57613bac614c9e565b5b6000613bbb84828501613921565b91505092915050565b600060208284031215613bda57613bd9614c9e565b5b600082013567ffffffffffffffff811115613bf857613bf7614c99565b5b613c0484828501613964565b91505092915050565b600060208284031215613c2357613c22614c9e565b5b6000613c3184828501613992565b91505092915050565b60008060408385031215613c5157613c50614c9e565b5b6000613c5f85828601613992565b9250506020613c70858286016138e2565b9150509250929050565b613c838161499c565b82525050565b613c92816149ae565b82525050565b613ca1816149ae565b82525050565b6000613cb2826147ca565b613cbc81856147e0565b9350613ccc818560208601614a3b565b613cd581614ca3565b840191505092915050565b6000613ceb826147d5565b613cf581856147f1565b9350613d05818560208601614a3b565b613d0e81614ca3565b840191505092915050565b6000613d24826147d5565b613d2e8185614802565b9350613d3e818560208601614a3b565b80840191505092915050565b60008154613d5781614a98565b613d618186614802565b94506001821660008114613d7c5760018114613d8d57613dc0565b60ff19831686528186019350613dc0565b613d96856147b5565b60005b83811015613db857815481890152600182019150602081019050613d99565b838801955050505b50505092915050565b6000613dd66022836147f1565b9150613de182614cb4565b604082019050919050565b6000613df96013836147f1565b9150613e0482614d03565b602082019050919050565b6000613e1c6010836147f1565b9150613e2782614d2c565b602082019050919050565b6000613e3f6026836147f1565b9150613e4a82614d55565b604082019050919050565b6000613e62602a836147f1565b9150613e6d82614da4565b604082019050919050565b6000613e85601f836147f1565b9150613e9082614df3565b602082019050919050565b6000613ea86023836147f1565b9150613eb382614e1c565b604082019050919050565b6000613ecb6025836147f1565b9150613ed682614e6b565b604082019050919050565b6000613eee6031836147f1565b9150613ef982614eba565b604082019050919050565b6000613f116015836147f1565b9150613f1c82614f09565b602082019050919050565b6000613f346039836147f1565b9150613f3f82614f32565b604082019050919050565b6000613f57601b836147f1565b9150613f6282614f81565b602082019050919050565b6000613f7a602b836147f1565b9150613f8582614faa565b604082019050919050565b6000613f9d6015836147f1565b9150613fa882614ff9565b602082019050919050565b6000613fc06011836147f1565b9150613fcb82615022565b602082019050919050565b6000613fe36026836147f1565b9150613fee8261504b565b604082019050919050565b6000614006600583614802565b91506140118261509a565b600582019050919050565b6000614029601a836147f1565b9150614034826150c3565b602082019050919050565b600061404c6032836147f1565b9150614057826150ec565b604082019050919050565b600061406f6018836147f1565b915061407a8261513b565b602082019050919050565b60006140926022836147f1565b915061409d82615164565b604082019050919050565b60006140b56033836147f1565b91506140c0826151b3565b604082019050919050565b60006140d8601d836147f1565b91506140e382615202565b602082019050919050565b60006140fb6021836147f1565b91506141068261522b565b604082019050919050565b600061411e602e836147f1565b91506141298261527a565b604082019050919050565b6000614141602f836147f1565b915061414c826152c9565b604082019050919050565b60006141646016836147f1565b915061416f82615318565b602082019050919050565b6000614187602d836147f1565b915061419282615341565b604082019050919050565b60006141aa6022836147f1565b91506141b582615390565b604082019050919050565b610100820160008201516141d76000850182614262565b5060208201516141ea6020850182614262565b5060408201516141fd6040850182614262565b5060608201516142106060850182613c89565b5060808201516142236080850182614262565b5060a082015161423660a0850182614262565b5060c082015161424960c0850182614262565b5060e082015161425c60e0850182614262565b50505050565b61426b81614a22565b82525050565b61427a81614a22565b82525050565b600061428c8285613d4a565b91506142988284613d19565b91508190509392505050565b60006142b08285613d4a565b91506142bc8284613d19565b91506142c782613ff9565b91508190509392505050565b60006020820190506142e86000830184613c7a565b92915050565b60006080820190506143036000830187613c7a565b6143106020830186613c7a565b61431d6040830185614271565b818103606083015261432f8184613ca7565b905095945050505050565b600060208201905061434f6000830184613c98565b92915050565b6000602082019050818103600083015261436f8184613ce0565b905092915050565b6000602082019050818103600083015261439081613dc9565b9050919050565b600060208201905081810360008301526143b081613dec565b9050919050565b600060208201905081810360008301526143d081613e0f565b9050919050565b600060208201905081810360008301526143f081613e32565b9050919050565b6000602082019050818103600083015261441081613e55565b9050919050565b6000602082019050818103600083015261443081613e78565b9050919050565b6000602082019050818103600083015261445081613e9b565b9050919050565b6000602082019050818103600083015261447081613ebe565b9050919050565b6000602082019050818103600083015261449081613ee1565b9050919050565b600060208201905081810360008301526144b081613f04565b9050919050565b600060208201905081810360008301526144d081613f27565b9050919050565b600060208201905081810360008301526144f081613f4a565b9050919050565b6000602082019050818103600083015261451081613f6d565b9050919050565b6000602082019050818103600083015261453081613f90565b9050919050565b6000602082019050818103600083015261455081613fb3565b9050919050565b6000602082019050818103600083015261457081613fd6565b9050919050565b600060208201905081810360008301526145908161401c565b9050919050565b600060208201905081810360008301526145b08161403f565b9050919050565b600060208201905081810360008301526145d081614062565b9050919050565b600060208201905081810360008301526145f081614085565b9050919050565b60006020820190508181036000830152614610816140a8565b9050919050565b60006020820190508181036000830152614630816140cb565b9050919050565b60006020820190508181036000830152614650816140ee565b9050919050565b6000602082019050818103600083015261467081614111565b9050919050565b6000602082019050818103600083015261469081614134565b9050919050565b600060208201905081810360008301526146b081614157565b9050919050565b600060208201905081810360008301526146d08161417a565b9050919050565b600060208201905081810360008301526146f08161419d565b9050919050565b60006101008201905061470d60008301846141c0565b92915050565b60006020820190506147286000830184614271565b92915050565b6000614738614749565b90506147448282614aca565b919050565b6000604051905090565b600067ffffffffffffffff82111561476e5761476d614c60565b5b61477782614ca3565b9050602081019050919050565b600067ffffffffffffffff82111561479f5761479e614c60565b5b6147a882614ca3565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000614818826149e6565b9150614823836149e6565b9250826fffffffffffffffffffffffffffffffff0382111561484857614847614b75565b5b828201905092915050565b600061485e82614a22565b915061486983614a22565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561489e5761489d614b75565b5b828201905092915050565b60006148b482614a22565b91506148bf83614a22565b9250826148cf576148ce614ba4565b5b828204905092915050565b60006148e582614a22565b91506148f083614a22565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561492957614928614b75565b5b828202905092915050565b600061493f826149e6565b915061494a836149e6565b92508282101561495d5761495c614b75565b5b828203905092915050565b600061497382614a22565b915061497e83614a22565b92508282101561499157614990614b75565b5b828203905092915050565b60006149a782614a02565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b60006fffffffffffffffffffffffffffffffff82169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015614a59578082015181840152602081019050614a3e565b83811115614a68576000848401525b50505050565b6000614a7982614a22565b91506000821415614a8d57614a8c614b75565b5b600182039050919050565b60006002820490506001821680614ab057607f821691505b60208210811415614ac457614ac3614c02565b5b50919050565b614ad382614ca3565b810181811067ffffffffffffffff82111715614af257614af1614c60565b5b80604052505050565b6000614b0682614a22565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415614b3957614b38614b75565b5b600182019050919050565b6000614b4f82614a22565b9150614b5a83614a22565b925082614b6a57614b69614ba4565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f455243373231413a206f776e657220696e646578206f7574206f6620626f756e60008201527f6473000000000000000000000000000000000000000000000000000000000000602082015250565b7f53616c65206d7573742062652061637469766500000000000000000000000000600082015250565b7f4e6f7420656e6f75676820657468657200000000000000000000000000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a206f776e657220717565727920666f72206e6f6e6578697360008201527f74656e7420746f6b656e00000000000000000000000000000000000000000000602082015250565b7f4578636565642062616c616e6365206f66207468697320636f6e747261637400600082015250565b7f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f7560008201527f6e64730000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a206e756d626572206d696e74656420717565727920666f7260008201527f20746865207a65726f2061646472657373000000000000000000000000000000602082015250565b7f596f7520617265206e6f7420746865206f776e65720000000000000000000000600082015250565b7f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000602082015250565b7f457863656564206d617820737570706c79206f6620746f6b656e730000000000600082015250565b7f455243373231413a2062616c616e636520717565727920666f7220746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b7f546f6b656e20646f6573206e6f742065786973742e0000000000000000000000600082015250565b7f457863656564206d617820737570706c79000000000000000000000000000000600082015250565b7f455243373231413a207472616e736665722066726f6d20696e636f727265637460008201527f206f776e65720000000000000000000000000000000000000000000000000000602082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f455243373231413a20617070726f766520746f2063616c6c6572000000000000600082015250565b7f455243373231413a207472616e736665722063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b7f457863656564206d617820746f6b656e73207065722074780000000000000000600082015250565b7f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60008201527f6572000000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e7366657220746f206e6f6e204552433732315260008201527f6563656976657220696d706c656d656e74657200000000000000000000000000602082015250565b7f455243373231413a20746f6b656e20616c7265616479206d696e746564000000600082015250565b7f455243373231413a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060008201527f6f776e657220627920696e646578000000000000000000000000000000000000602082015250565b7f455243373231413a20756e61626c6520746f2064657465726d696e652074686560008201527f206f776e6572206f6620746f6b656e0000000000000000000000000000000000602082015250565b7f4d757374206d696e74206174206c65617374206f6e6500000000000000000000600082015250565b7f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560008201527f78697374656e7420746f6b656e00000000000000000000000000000000000000602082015250565b7f455243373231413a207175616e7469747920746f206d696e7420746f6f20686960008201527f6768000000000000000000000000000000000000000000000000000000000000602082015250565b6153e88161499c565b81146153f357600080fd5b50565b6153ff816149ae565b811461540a57600080fd5b50565b615416816149ba565b811461542157600080fd5b50565b61542d81614a22565b811461543857600080fd5b5056fea26469706673582212202ec192b5b328c9bfd533058fa9005f5e375ac12d8b5dbe8678fb66860c6a6bab64736f6c63430008070033

Deployed Bytecode Sourcemap

39349:6156:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24537:370;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26263:94;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27797:204;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27360:379;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;23098:94;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41085:198;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;28647:142;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;42011:437;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23729:744;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41643:89;;;;;;;;;;;;;:::i;:::-;;40936:140;;;;;;;;;;;;;:::i;:::-;;28852:157;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;45370:132;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;40395:533;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23261:177;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41537:94;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;39547:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26086:118;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39586:34;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43758:107;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;39399:74;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44987:99;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;24963:211;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38495:103;;;;;;;;;;;;;:::i;:::-;;41292:224;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;41740:167;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;39482:44;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45218:144;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;37855:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39710:39;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44515:223;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;26418:98;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28065:274;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;29072:311;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;45094:116;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;41915:88;;;;;;;;;;;;;:::i;:::-;;42522:1228;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;43873:634;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39843:38;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33487:43;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44865:113;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28402:186;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39670:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38753:238;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;39629:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24537:370;24664:4;24709:25;24694:40;;;:11;:40;;;;:99;;;;24760:33;24745:48;;;:11;:48;;;;24694:99;:160;;;;24819:35;24804:50;;;:11;:50;;;;24694:160;:207;;;;24865:36;24889:11;24865:23;:36::i;:::-;24694:207;24680:221;;24537:370;;;:::o;26263:94::-;26317:13;26346:5;26339:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26263:94;:::o;27797:204::-;27865:7;27889:16;27897:7;27889;:16::i;:::-;27881:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;27971:15;:24;27987:7;27971:24;;;;;;;;;;;;;;;;;;;;;27964:31;;27797:204;;;:::o;27360:379::-;27429:13;27445:24;27461:7;27445:15;:24::i;:::-;27429:40;;27490:5;27484:11;;:2;:11;;;;27476:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;27575:5;27559:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;27584:37;27601:5;27608:12;:10;:12::i;:::-;27584:16;:37::i;:::-;27559:62;27543:153;;;;;;;;;;;;:::i;:::-;;;;;;;;;27705:28;27714:2;27718:7;27727:5;27705:8;:28::i;:::-;27422:317;27360:379;;:::o;23098:94::-;23151:7;23174:12;;23167:19;;23098:94;:::o;41085:198::-;38086:12;:10;:12::i;:::-;38075:23;;:7;:5;:7::i;:::-;:23;;;38067:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;41179:21:::1;41169:6;:31;;41161:75;;;;;;;;;;;;:::i;:::-;;;;;;;;;41255:2;41247:20;;:28;41268:6;41247:28;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;41085:198:::0;;:::o;28647:142::-;28755:28;28765:4;28771:2;28775:7;28755:9;:28::i;:::-;28647:142;;;:::o;42011:437::-;42087:7;42133:1;42110:20;42123:6;42110:12;:20::i;:::-;:24;42107:315;;;42174:10;;42157:14;:27;;;;:::i;:::-;42150:34;;;;42107:315;42222:21;;42205:14;:38;42202:220;;;42290:10;;42266:21;;:34;;;;:::i;:::-;42259:41;;;;42202:220;42339:21;;42321:14;:39;42318:104;;42400:10;;42383:14;:27;;;;:::i;:::-;42376:34;;;;42318:104;42439:1;42432:8;;42011:437;;;;;:::o;23729:744::-;23838:7;23873:16;23883:5;23873:9;:16::i;:::-;23865:5;:24;23857:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;23935:22;23960:13;:11;:13::i;:::-;23935:38;;23980:19;24010:25;24060:9;24055:350;24079:14;24075:1;:18;24055:350;;;24109:31;24143:11;:14;24155:1;24143:14;;;;;;;;;;;24109:48;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24196:1;24170:28;;:9;:14;;;:28;;;24166:89;;24231:9;:14;;;24211:34;;24166:89;24288:5;24267:26;;:17;:26;;;24263:135;;;24325:5;24310:11;:20;24306:59;;;24352:1;24345:8;;;;;;;;;24306:59;24375:13;;;;;:::i;:::-;;;;24263:135;24100:305;24095:3;;;;;:::i;:::-;;;;24055:350;;;;24411:56;;;;;;;;;;:::i;:::-;;;;;;;;23729:744;;;;;:::o;41643:89::-;38086:12;:10;:12::i;:::-;38075:23;;:7;:5;:7::i;:::-;:23;;;38067:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;41712:12:::1;;;;;;;;;;;41711:13;41696:12;;:28;;;;;;;;;;;;;;;;;;41643:89::o:0;40936:140::-;38086:12;:10;:12::i;:::-;38075:23;;:7;:5;:7::i;:::-;:23;;;38067:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;40984:12:::1;40999:21;40984:36;;41039:10;41031:28;;:37;41060:7;41031:37;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;40973:103;40936:140::o:0;28852:157::-;28964:39;28981:4;28987:2;28991:7;28964:39;;;;;;;;;;;;:16;:39::i;:::-;28852:157;;;:::o;45370:132::-;38086:12;:10;:12::i;:::-;38075:23;;:7;:5;:7::i;:::-;:23;;;38067:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;45475:19:::1;45454:18;:40;;;;45370:132:::0;:::o;40395:533::-;40450:18;;:::i;:::-;40488:432;;;;;;;;40527:10;;40488:432;;;;40568:14;;40488:432;;;;40609:10;;40488:432;;;;40648:12;;;;;;;;;;;40488:432;;;;;;40696:13;:11;:13::i;:::-;40488:432;;;;40749:21;;40488:432;;;;40815:1;40797:20;;:6;:20;;;:57;;40832:21;40846:6;40832:13;:21::i;:::-;40797:57;;;40820:1;40797:57;40488:432;;;;40890:18;;40488:432;;;40481:439;;40395:533;;;:::o;23261:177::-;23328:7;23360:13;:11;:13::i;:::-;23352:5;:21;23344:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;23427:5;23420:12;;23261:177;;;:::o;41537:94::-;38086:12;:10;:12::i;:::-;38075:23;;:7;:5;:7::i;:::-;:23;;;38067:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;41617:6:::1;41607:7;:16;;;;;;;;;;;;:::i;:::-;;41537:94:::0;:::o;39547:30::-;;;;:::o;26086:118::-;26150:7;26173:20;26185:7;26173:11;:20::i;:::-;:25;;;26166:32;;26086:118;;;:::o;39586:34::-;;;;:::o;43758:107::-;38086:12;:10;:12::i;:::-;38075:23;;:7;:5;:7::i;:::-;:23;;;38067:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;43844:13:::1;43831:10;:26;;;;43758:107:::0;:::o;39399:74::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;44987:99::-;38086:12;:10;:12::i;:::-;38075:23;;:7;:5;:7::i;:::-;:23;;;38067:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;45068:10:::1;45055;:23;;;;44987:99:::0;:::o;24963:211::-;25027:7;25068:1;25051:19;;:5;:19;;;;25043:75;;;;;;;;;;;;:::i;:::-;;;;;;;;;25140:12;:19;25153:5;25140:19;;;;;;;;;;;;;;;:27;;;;;;;;;;;;25132:36;;25125:43;;24963:211;;;:::o;38495:103::-;38086:12;:10;:12::i;:::-;38075:23;;:7;:5;:7::i;:::-;:23;;;38067:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;38560:30:::1;38587:1;38560:18;:30::i;:::-;38495:103::o:0;41292:224::-;38086:12;:10;:12::i;:::-;38075:23;;:7;:5;:7::i;:::-;:23;;;38067:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;41426:10:::1;;41408:14;41392:13;:11;:13::i;:::-;:30;;;;:::i;:::-;:44;;41384:84;;;;;;;;;;;;:::i;:::-;;;;;;;;;41479:29;41489:2;41493:14;41479:9;:29::i;:::-;41292:224:::0;;:::o;41740:167::-;38086:12;:10;:12::i;:::-;38075:23;;:7;:5;:7::i;:::-;:23;;;38067:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;41848:21:::1;41825:20;:44;;;;41895:4;41880:12;;:19;;;;;;;;;;;;;;;;;;41740:167:::0;:::o;39482:44::-;;;;:::o;45218:144::-;38086:12;:10;:12::i;:::-;38075:23;;:7;:5;:7::i;:::-;:23;;;38067:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;45332:22:::1;45308:21;:46;;;;45218:144:::0;:::o;37855:87::-;37901:7;37928:6;;;;;;;;;;;37921:13;;37855:87;:::o;39710:39::-;;;;:::o;44515:223::-;38086:12;:10;:12::i;:::-;38075:23;;:7;:5;:7::i;:::-;:23;;;38067:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;44596:1:::1;44588:4;:9;44584:147;;;44629:21;44614:12;;:36;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;44584:147;;;44698:21;44683:12;;:36;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;44584:147;44515:223:::0;:::o;26418:98::-;26474:13;26503:7;26496:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26418:98;:::o;28065:274::-;28168:12;:10;:12::i;:::-;28156:24;;:8;:24;;;;28148:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;28265:8;28220:18;:32;28239:12;:10;:12::i;:::-;28220:32;;;;;;;;;;;;;;;:42;28253:8;28220:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;28314:8;28285:48;;28300:12;:10;:12::i;:::-;28285:48;;;28324:8;28285:48;;;;;;:::i;:::-;;;;;;;;28065:274;;:::o;29072:311::-;29209:28;29219:4;29225:2;29229:7;29209:9;:28::i;:::-;29260:48;29283:4;29289:2;29293:7;29302:5;29260:22;:48::i;:::-;29244:133;;;;;;;;;;;;:::i;:::-;;;;;;;;;29072:311;;;;:::o;45094:116::-;38086:12;:10;:12::i;:::-;38075:23;;:7;:5;:7::i;:::-;:23;;;38067:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;45187:15:::1;45170:14;:32;;;;45094:116:::0;:::o;41915:88::-;38086:12;:10;:12::i;:::-;38075:23;;:7;:5;:7::i;:::-;:23;;;38067:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;41994:1:::1;41971:20;:24;;;;41915:88::o:0;42522:1228::-;42596:12;;;;;;;;;;;42588:44;;;;;;;;;;;;:::i;:::-;;;;;;;;;42669:14;;42651;:32;;42643:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;42748:1;42731:14;:18;42723:53;;;;;;;;;;;;:::i;:::-;;;;;;;;;42829:10;;42811:14;42795:13;:11;:13::i;:::-;:30;;;;:::i;:::-;:44;;42787:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;42908:1;42885:20;;:24;:57;;;;;42941:1;42913:24;42926:10;42913:12;:24::i;:::-;:29;;42885:57;42882:861;;;42979:20;;42961:14;:38;42958:114;;43036:20;;43019:37;;42958:114;43086:37;43096:10;43108:14;43086:9;:37::i;:::-;43184:14;43161:20;;:37;;;;:::i;:::-;43138:20;:60;;;;42882:861;;;43261:1;43233:25;43247:10;43233:13;:25::i;:::-;:29;43230:450;;;43320:10;;43303:14;:27;;;;:::i;:::-;43290:9;:40;;43282:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;43230:450;;;43394:21;;43377:14;:38;43374:306;;;43480:10;;43456:21;;:34;;;;:::i;:::-;43443:9;:47;;43435:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;43374:306;;;43554:21;;43536:14;:39;43533:147;;43633:10;;43616:14;:27;;;;:::i;:::-;43603:9;:40;;43595:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;43533:147;43374:306;43230:450;43694:37;43704:10;43716:14;43694:9;:37::i;:::-;42882:861;42522:1228;:::o;43873:634::-;43939:13;43979:17;43987:8;43979:7;:17::i;:::-;43971:51;;;;;;;;;;;;:::i;:::-;;;;;;;;;44053:21;44037:37;;;;;;;;:::i;:::-;;:12;;;;;;;;;;;:37;;;;;;;;:::i;:::-;;;44033:467;;;44120:1;44102:7;44096:21;;;;;:::i;:::-;;;:25;:165;;;;;;;;;;;;;;;;;44178:7;44202:26;44219:8;44202:16;:26::i;:::-;44145:98;;;;;;;;;:::i;:::-;;;;;;;;;;;;;44096:165;44089:172;;;;44033:467;44323:1;44305:7;44299:21;;;;;:::i;:::-;;;:25;:189;;;;;;;;;;;;;;;;;44381:7;44405:26;44422:8;44405:16;:26::i;:::-;44348:122;;;;;;;;;:::i;:::-;;;;;;;;;;;;;44299:189;44292:196;;43873:634;;;;:::o;39843:38::-;;;;:::o;33487:43::-;;;;:::o;44865:113::-;44923:7;44950:20;44964:5;44950:13;:20::i;:::-;44943:27;;44865:113;;;:::o;28402:186::-;28524:4;28547:18;:25;28566:5;28547:25;;;;;;;;;;;;;;;:35;28573:8;28547:35;;;;;;;;;;;;;;;;;;;;;;;;;28540:42;;28402:186;;;;:::o;39670:31::-;;;;;;;;;;;;;:::o;38753:238::-;38086:12;:10;:12::i;:::-;38075:23;;:7;:5;:7::i;:::-;:23;;;38067:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;38876:1:::1;38856:22;;:8;:22;;;;38834:110;;;;;;;;;;;;:::i;:::-;;;;;;;;;38955:28;38974:8;38955:18;:28::i;:::-;38753:238:::0;:::o;39629:32::-;;;;:::o;8224:207::-;8354:4;8398:25;8383:40;;;:11;:40;;;;8376:47;;8224:207;;;:::o;29622:105::-;29679:4;29709:12;;29699:7;:22;29692:29;;29622:105;;;:::o;17577:98::-;17630:7;17657:10;17650:17;;17577:98;:::o;33309:172::-;33433:2;33406:15;:24;33422:7;33406:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;33467:7;33463:2;33447:28;;33456:5;33447:28;;;;;;;;;;;;33309:172;;;:::o;31674:1529::-;31771:35;31809:20;31821:7;31809:11;:20::i;:::-;31771:58;;31838:22;31880:13;:18;;;31864:34;;:12;:10;:12::i;:::-;:34;;;:81;;;;31933:12;:10;:12::i;:::-;31909:36;;:20;31921:7;31909:11;:20::i;:::-;:36;;;31864:81;:142;;;;31956:50;31973:13;:18;;;31993:12;:10;:12::i;:::-;31956:16;:50::i;:::-;31864:142;31838:169;;32032:17;32016:101;;;;;;;;;;;;:::i;:::-;;;;;;;;;32164:4;32142:26;;:13;:18;;;:26;;;32126:98;;;;;;;;;;;;:::i;:::-;;;;;;;;;32253:1;32239:16;;:2;:16;;;;32231:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;32306:43;32328:4;32334:2;32338:7;32347:1;32306:21;:43::i;:::-;32406:49;32423:1;32427:7;32436:13;:18;;;32406:8;:49::i;:::-;32494:1;32464:12;:18;32477:4;32464:18;;;;;;;;;;;;;;;:26;;;:31;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;32530:1;32502:12;:16;32515:2;32502:16;;;;;;;;;;;;;;;:24;;;:29;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;32561:43;;;;;;;;32576:2;32561:43;;;;;;32587:15;32561:43;;;;;32538:11;:20;32550:7;32538:20;;;;;;;;;;;:66;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32832:19;32864:1;32854:7;:11;;;;:::i;:::-;32832:33;;32917:1;32876:43;;:11;:24;32888:11;32876:24;;;;;;;;;;;:29;;;;;;;;;;;;:43;;;32872:236;;;32934:20;32942:11;32934:7;:20::i;:::-;32930:171;;;32994:97;;;;;;;;33021:13;:18;;;32994:97;;;;;;33052:13;:28;;;32994:97;;;;;32967:11;:24;32979:11;32967:24;;;;;;;;;;;:124;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32930:171;32872:236;33140:7;33136:2;33121:27;;33130:4;33121:27;;;;;;;;;;;;33155:42;33176:4;33182:2;33186:7;33195:1;33155:20;:42::i;:::-;31764:1439;;;31674:1529;;;:::o;25180:240::-;25241:7;25290:1;25273:19;;:5;:19;;;;25257:102;;;;;;;;;;;;:::i;:::-;;;;;;;;;25381:12;:19;25394:5;25381:19;;;;;;;;;;;;;;;:32;;;;;;;;;;;;25373:41;;25366:48;;25180:240;;;:::o;25426:606::-;25502:21;;:::i;:::-;25543:16;25551:7;25543;:16::i;:::-;25535:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;25615:26;25663:12;25652:7;:23;25648:93;;25732:1;25717:12;25707:7;:22;;;;:::i;:::-;:26;;;;:::i;:::-;25686:47;;25648:93;25754:12;25769:7;25754:22;;25749:212;25786:18;25778:4;:26;25749:212;;25823:31;25857:11;:17;25869:4;25857:17;;;;;;;;;;;25823:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25913:1;25887:28;;:9;:14;;;:28;;;25883:71;;25935:9;25928:16;;;;;;;25883:71;25814:147;25806:6;;;;;:::i;:::-;;;;25749:212;;;;25969:57;;;;;;;;;;:::i;:::-;;;;;;;;25426:606;;;;:::o;39151:191::-;39225:16;39244:6;;;;;;;;;;;39225:25;;39270:8;39261:6;;:17;;;;;;;;;;;;;;;;;;39325:8;39294:40;;39315:8;39294:40;;;;;;;;;;;;39214:128;39151:191;:::o;29733:98::-;29798:27;29808:2;29812:8;29798:27;;;;;;;;;;;;:9;:27::i;:::-;29733:98;;:::o;35024:690::-;35161:4;35178:15;:2;:13;;;:15::i;:::-;35174:535;;;35233:2;35217:36;;;35254:12;:10;:12::i;:::-;35268:4;35274:7;35283:5;35217:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;35204:464;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35465:1;35448:6;:13;:18;35444:215;;;35481:61;;;;;;;;;;:::i;:::-;;;;;;;;35444:215;35627:6;35621:13;35612:6;35608:2;35604:15;35597:38;35204:464;35349:45;;;35339:55;;;:6;:55;;;;35332:62;;;;;35174:535;35697:4;35690:11;;35024:690;;;;;;;:::o;18077:723::-;18133:13;18363:1;18354:5;:10;18350:53;;;18381:10;;;;;;;;;;;;;;;;;;;;;18350:53;18413:12;18428:5;18413:20;;18444:14;18469:78;18484:1;18476:4;:9;18469:78;;18502:8;;;;;:::i;:::-;;;;18533:2;18525:10;;;;;:::i;:::-;;;18469:78;;;18557:19;18589:6;18579:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18557:39;;18607:154;18623:1;18614:5;:10;18607:154;;18651:1;18641:11;;;;;:::i;:::-;;;18718:2;18710:5;:10;;;;:::i;:::-;18697:2;:24;;;;:::i;:::-;18684:39;;18667:6;18674;18667:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;18747:2;18738:11;;;;;:::i;:::-;;;18607:154;;;18785:6;18771:21;;;;;18077:723;;;;:::o;36176:141::-;;;;;:::o;36703:140::-;;;;;:::o;30170:1272::-;30275:20;30298:12;;30275:35;;30339:1;30325:16;;:2;:16;;;;30317:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;30516:21;30524:12;30516:7;:21::i;:::-;30515:22;30507:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;30598:12;30586:8;:24;;30578:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;30658:61;30688:1;30692:2;30696:12;30710:8;30658:21;:61::i;:::-;30728:30;30761:12;:16;30774:2;30761:16;;;;;;;;;;;;;;;30728:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30803:119;;;;;;;;30853:8;30823:11;:19;;;:39;;;;:::i;:::-;30803:119;;;;;;30906:8;30871:11;:24;;;:44;;;;:::i;:::-;30803:119;;;;;30784:12;:16;30797:2;30784:16;;;;;;;;;;;;;;;:138;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30957:43;;;;;;;;30972:2;30957:43;;;;;;30983:15;30957:43;;;;;30929:11;:25;30941:12;30929:25;;;;;;;;;;;:71;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31009:20;31032:12;31009:35;;31058:9;31053:281;31077:8;31073:1;:12;31053:281;;;31131:12;31127:2;31106:38;;31123:1;31106:38;;;;;;;;;;;;31171:59;31202:1;31206:2;31210:12;31224:5;31171:22;:59::i;:::-;31153:150;;;;;;;;;;;;:::i;:::-;;;;;;;;;31312:14;;;;;:::i;:::-;;;;31087:3;;;;;:::i;:::-;;;;31053:281;;;;31357:12;31342;:27;;;;31376:60;31405:1;31409:2;31413:12;31427:8;31376:20;:60::i;:::-;30268:1174;;;30170:1272;;;:::o;9179:387::-;9239:4;9447:12;9514:7;9502:20;9494:28;;9557:1;9550:4;:8;9543:15;;;9179:387;;;:::o;-1:-1:-1:-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:410:1:-;84:5;109:65;125:48;166:6;125:48;:::i;:::-;109:65;:::i;:::-;100:74;;197:6;190:5;183:21;235:4;228:5;224:16;273:3;264:6;259:3;255:16;252:25;249:112;;;280:79;;:::i;:::-;249:112;370:41;404:6;399:3;394;370:41;:::i;:::-;90:327;7:410;;;;;:::o;423:412::-;501:5;526:66;542:49;584:6;542:49;:::i;:::-;526:66;:::i;:::-;517:75;;615:6;608:5;601:21;653:4;646:5;642:16;691:3;682:6;677:3;673:16;670:25;667:112;;;698:79;;:::i;:::-;667:112;788:41;822:6;817:3;812;788:41;:::i;:::-;507:328;423:412;;;;;:::o;841:139::-;887:5;925:6;912:20;903:29;;941:33;968:5;941:33;:::i;:::-;841:139;;;;:::o;986:133::-;1029:5;1067:6;1054:20;1045:29;;1083:30;1107:5;1083:30;:::i;:::-;986:133;;;;:::o;1125:137::-;1170:5;1208:6;1195:20;1186:29;;1224:32;1250:5;1224:32;:::i;:::-;1125:137;;;;:::o;1268:141::-;1324:5;1355:6;1349:13;1340:22;;1371:32;1397:5;1371:32;:::i;:::-;1268:141;;;;:::o;1428:338::-;1483:5;1532:3;1525:4;1517:6;1513:17;1509:27;1499:122;;1540:79;;:::i;:::-;1499:122;1657:6;1644:20;1682:78;1756:3;1748:6;1741:4;1733:6;1729:17;1682:78;:::i;:::-;1673:87;;1489:277;1428:338;;;;:::o;1786:340::-;1842:5;1891:3;1884:4;1876:6;1872:17;1868:27;1858:122;;1899:79;;:::i;:::-;1858:122;2016:6;2003:20;2041:79;2116:3;2108:6;2101:4;2093:6;2089:17;2041:79;:::i;:::-;2032:88;;1848:278;1786:340;;;;:::o;2132:139::-;2178:5;2216:6;2203:20;2194:29;;2232:33;2259:5;2232:33;:::i;:::-;2132:139;;;;:::o;2277:329::-;2336:6;2385:2;2373:9;2364:7;2360:23;2356:32;2353:119;;;2391:79;;:::i;:::-;2353:119;2511:1;2536:53;2581:7;2572:6;2561:9;2557:22;2536:53;:::i;:::-;2526:63;;2482:117;2277:329;;;;:::o;2612:474::-;2680:6;2688;2737:2;2725:9;2716:7;2712:23;2708:32;2705:119;;;2743:79;;:::i;:::-;2705:119;2863:1;2888:53;2933:7;2924:6;2913:9;2909:22;2888:53;:::i;:::-;2878:63;;2834:117;2990:2;3016:53;3061:7;3052:6;3041:9;3037:22;3016:53;:::i;:::-;3006:63;;2961:118;2612:474;;;;;:::o;3092:619::-;3169:6;3177;3185;3234:2;3222:9;3213:7;3209:23;3205:32;3202:119;;;3240:79;;:::i;:::-;3202:119;3360:1;3385:53;3430:7;3421:6;3410:9;3406:22;3385:53;:::i;:::-;3375:63;;3331:117;3487:2;3513:53;3558:7;3549:6;3538:9;3534:22;3513:53;:::i;:::-;3503:63;;3458:118;3615:2;3641:53;3686:7;3677:6;3666:9;3662:22;3641:53;:::i;:::-;3631:63;;3586:118;3092:619;;;;;:::o;3717:943::-;3812:6;3820;3828;3836;3885:3;3873:9;3864:7;3860:23;3856:33;3853:120;;;3892:79;;:::i;:::-;3853:120;4012:1;4037:53;4082:7;4073:6;4062:9;4058:22;4037:53;:::i;:::-;4027:63;;3983:117;4139:2;4165:53;4210:7;4201:6;4190:9;4186:22;4165:53;:::i;:::-;4155:63;;4110:118;4267:2;4293:53;4338:7;4329:6;4318:9;4314:22;4293:53;:::i;:::-;4283:63;;4238:118;4423:2;4412:9;4408:18;4395:32;4454:18;4446:6;4443:30;4440:117;;;4476:79;;:::i;:::-;4440:117;4581:62;4635:7;4626:6;4615:9;4611:22;4581:62;:::i;:::-;4571:72;;4366:287;3717:943;;;;;;;:::o;4666:468::-;4731:6;4739;4788:2;4776:9;4767:7;4763:23;4759:32;4756:119;;;4794:79;;:::i;:::-;4756:119;4914:1;4939:53;4984:7;4975:6;4964:9;4960:22;4939:53;:::i;:::-;4929:63;;4885:117;5041:2;5067:50;5109:7;5100:6;5089:9;5085:22;5067:50;:::i;:::-;5057:60;;5012:115;4666:468;;;;;:::o;5140:474::-;5208:6;5216;5265:2;5253:9;5244:7;5240:23;5236:32;5233:119;;;5271:79;;:::i;:::-;5233:119;5391:1;5416:53;5461:7;5452:6;5441:9;5437:22;5416:53;:::i;:::-;5406:63;;5362:117;5518:2;5544:53;5589:7;5580:6;5569:9;5565:22;5544:53;:::i;:::-;5534:63;;5489:118;5140:474;;;;;:::o;5620:327::-;5678:6;5727:2;5715:9;5706:7;5702:23;5698:32;5695:119;;;5733:79;;:::i;:::-;5695:119;5853:1;5878:52;5922:7;5913:6;5902:9;5898:22;5878:52;:::i;:::-;5868:62;;5824:116;5620:327;;;;:::o;5953:349::-;6022:6;6071:2;6059:9;6050:7;6046:23;6042:32;6039:119;;;6077:79;;:::i;:::-;6039:119;6197:1;6222:63;6277:7;6268:6;6257:9;6253:22;6222:63;:::i;:::-;6212:73;;6168:127;5953:349;;;;:::o;6308:509::-;6377:6;6426:2;6414:9;6405:7;6401:23;6397:32;6394:119;;;6432:79;;:::i;:::-;6394:119;6580:1;6569:9;6565:17;6552:31;6610:18;6602:6;6599:30;6596:117;;;6632:79;;:::i;:::-;6596:117;6737:63;6792:7;6783:6;6772:9;6768:22;6737:63;:::i;:::-;6727:73;;6523:287;6308:509;;;;:::o;6823:329::-;6882:6;6931:2;6919:9;6910:7;6906:23;6902:32;6899:119;;;6937:79;;:::i;:::-;6899:119;7057:1;7082:53;7127:7;7118:6;7107:9;7103:22;7082:53;:::i;:::-;7072:63;;7028:117;6823:329;;;;:::o;7158:474::-;7226:6;7234;7283:2;7271:9;7262:7;7258:23;7254:32;7251:119;;;7289:79;;:::i;:::-;7251:119;7409:1;7434:53;7479:7;7470:6;7459:9;7455:22;7434:53;:::i;:::-;7424:63;;7380:117;7536:2;7562:53;7607:7;7598:6;7587:9;7583:22;7562:53;:::i;:::-;7552:63;;7507:118;7158:474;;;;;:::o;7638:118::-;7725:24;7743:5;7725:24;:::i;:::-;7720:3;7713:37;7638:118;;:::o;7762:99::-;7833:21;7848:5;7833:21;:::i;:::-;7828:3;7821:34;7762:99;;:::o;7867:109::-;7948:21;7963:5;7948:21;:::i;:::-;7943:3;7936:34;7867:109;;:::o;7982:360::-;8068:3;8096:38;8128:5;8096:38;:::i;:::-;8150:70;8213:6;8208:3;8150:70;:::i;:::-;8143:77;;8229:52;8274:6;8269:3;8262:4;8255:5;8251:16;8229:52;:::i;:::-;8306:29;8328:6;8306:29;:::i;:::-;8301:3;8297:39;8290:46;;8072:270;7982:360;;;;:::o;8348:364::-;8436:3;8464:39;8497:5;8464:39;:::i;:::-;8519:71;8583:6;8578:3;8519:71;:::i;:::-;8512:78;;8599:52;8644:6;8639:3;8632:4;8625:5;8621:16;8599:52;:::i;:::-;8676:29;8698:6;8676:29;:::i;:::-;8671:3;8667:39;8660:46;;8440:272;8348:364;;;;:::o;8718:377::-;8824:3;8852:39;8885:5;8852:39;:::i;:::-;8907:89;8989:6;8984:3;8907:89;:::i;:::-;8900:96;;9005:52;9050:6;9045:3;9038:4;9031:5;9027:16;9005:52;:::i;:::-;9082:6;9077:3;9073:16;9066:23;;8828:267;8718:377;;;;:::o;9125:845::-;9228:3;9265:5;9259:12;9294:36;9320:9;9294:36;:::i;:::-;9346:89;9428:6;9423:3;9346:89;:::i;:::-;9339:96;;9466:1;9455:9;9451:17;9482:1;9477:137;;;;9628:1;9623:341;;;;9444:520;;9477:137;9561:4;9557:9;9546;9542:25;9537:3;9530:38;9597:6;9592:3;9588:16;9581:23;;9477:137;;9623:341;9690:38;9722:5;9690:38;:::i;:::-;9750:1;9764:154;9778:6;9775:1;9772:13;9764:154;;;9852:7;9846:14;9842:1;9837:3;9833:11;9826:35;9902:1;9893:7;9889:15;9878:26;;9800:4;9797:1;9793:12;9788:17;;9764:154;;;9947:6;9942:3;9938:16;9931:23;;9630:334;;9444:520;;9232:738;;9125:845;;;;:::o;9976:366::-;10118:3;10139:67;10203:2;10198:3;10139:67;:::i;:::-;10132:74;;10215:93;10304:3;10215:93;:::i;:::-;10333:2;10328:3;10324:12;10317:19;;9976:366;;;:::o;10348:::-;10490:3;10511:67;10575:2;10570:3;10511:67;:::i;:::-;10504:74;;10587:93;10676:3;10587:93;:::i;:::-;10705:2;10700:3;10696:12;10689:19;;10348:366;;;:::o;10720:::-;10862:3;10883:67;10947:2;10942:3;10883:67;:::i;:::-;10876:74;;10959:93;11048:3;10959:93;:::i;:::-;11077:2;11072:3;11068:12;11061:19;;10720:366;;;:::o;11092:::-;11234:3;11255:67;11319:2;11314:3;11255:67;:::i;:::-;11248:74;;11331:93;11420:3;11331:93;:::i;:::-;11449:2;11444:3;11440:12;11433:19;;11092:366;;;:::o;11464:::-;11606:3;11627:67;11691:2;11686:3;11627:67;:::i;:::-;11620:74;;11703:93;11792:3;11703:93;:::i;:::-;11821:2;11816:3;11812:12;11805:19;;11464:366;;;:::o;11836:::-;11978:3;11999:67;12063:2;12058:3;11999:67;:::i;:::-;11992:74;;12075:93;12164:3;12075:93;:::i;:::-;12193:2;12188:3;12184:12;12177:19;;11836:366;;;:::o;12208:::-;12350:3;12371:67;12435:2;12430:3;12371:67;:::i;:::-;12364:74;;12447:93;12536:3;12447:93;:::i;:::-;12565:2;12560:3;12556:12;12549:19;;12208:366;;;:::o;12580:::-;12722:3;12743:67;12807:2;12802:3;12743:67;:::i;:::-;12736:74;;12819:93;12908:3;12819:93;:::i;:::-;12937:2;12932:3;12928:12;12921:19;;12580:366;;;:::o;12952:::-;13094:3;13115:67;13179:2;13174:3;13115:67;:::i;:::-;13108:74;;13191:93;13280:3;13191:93;:::i;:::-;13309:2;13304:3;13300:12;13293:19;;12952:366;;;:::o;13324:::-;13466:3;13487:67;13551:2;13546:3;13487:67;:::i;:::-;13480:74;;13563:93;13652:3;13563:93;:::i;:::-;13681:2;13676:3;13672:12;13665:19;;13324:366;;;:::o;13696:::-;13838:3;13859:67;13923:2;13918:3;13859:67;:::i;:::-;13852:74;;13935:93;14024:3;13935:93;:::i;:::-;14053:2;14048:3;14044:12;14037:19;;13696:366;;;:::o;14068:::-;14210:3;14231:67;14295:2;14290:3;14231:67;:::i;:::-;14224:74;;14307:93;14396:3;14307:93;:::i;:::-;14425:2;14420:3;14416:12;14409:19;;14068:366;;;:::o;14440:::-;14582:3;14603:67;14667:2;14662:3;14603:67;:::i;:::-;14596:74;;14679:93;14768:3;14679:93;:::i;:::-;14797:2;14792:3;14788:12;14781:19;;14440:366;;;:::o;14812:::-;14954:3;14975:67;15039:2;15034:3;14975:67;:::i;:::-;14968:74;;15051:93;15140:3;15051:93;:::i;:::-;15169:2;15164:3;15160:12;15153:19;;14812:366;;;:::o;15184:::-;15326:3;15347:67;15411:2;15406:3;15347:67;:::i;:::-;15340:74;;15423:93;15512:3;15423:93;:::i;:::-;15541:2;15536:3;15532:12;15525:19;;15184:366;;;:::o;15556:::-;15698:3;15719:67;15783:2;15778:3;15719:67;:::i;:::-;15712:74;;15795:93;15884:3;15795:93;:::i;:::-;15913:2;15908:3;15904:12;15897:19;;15556:366;;;:::o;15928:400::-;16088:3;16109:84;16191:1;16186:3;16109:84;:::i;:::-;16102:91;;16202:93;16291:3;16202:93;:::i;:::-;16320:1;16315:3;16311:11;16304:18;;15928:400;;;:::o;16334:366::-;16476:3;16497:67;16561:2;16556:3;16497:67;:::i;:::-;16490:74;;16573:93;16662:3;16573:93;:::i;:::-;16691:2;16686:3;16682:12;16675:19;;16334:366;;;:::o;16706:::-;16848:3;16869:67;16933:2;16928:3;16869:67;:::i;:::-;16862:74;;16945:93;17034:3;16945:93;:::i;:::-;17063:2;17058:3;17054:12;17047:19;;16706:366;;;:::o;17078:::-;17220:3;17241:67;17305:2;17300:3;17241:67;:::i;:::-;17234:74;;17317:93;17406:3;17317:93;:::i;:::-;17435:2;17430:3;17426:12;17419:19;;17078:366;;;:::o;17450:::-;17592:3;17613:67;17677:2;17672:3;17613:67;:::i;:::-;17606:74;;17689:93;17778:3;17689:93;:::i;:::-;17807:2;17802:3;17798:12;17791:19;;17450:366;;;:::o;17822:::-;17964:3;17985:67;18049:2;18044:3;17985:67;:::i;:::-;17978:74;;18061:93;18150:3;18061:93;:::i;:::-;18179:2;18174:3;18170:12;18163:19;;17822:366;;;:::o;18194:::-;18336:3;18357:67;18421:2;18416:3;18357:67;:::i;:::-;18350:74;;18433:93;18522:3;18433:93;:::i;:::-;18551:2;18546:3;18542:12;18535:19;;18194:366;;;:::o;18566:::-;18708:3;18729:67;18793:2;18788:3;18729:67;:::i;:::-;18722:74;;18805:93;18894:3;18805:93;:::i;:::-;18923:2;18918:3;18914:12;18907:19;;18566:366;;;:::o;18938:::-;19080:3;19101:67;19165:2;19160:3;19101:67;:::i;:::-;19094:74;;19177:93;19266:3;19177:93;:::i;:::-;19295:2;19290:3;19286:12;19279:19;;18938:366;;;:::o;19310:::-;19452:3;19473:67;19537:2;19532:3;19473:67;:::i;:::-;19466:74;;19549:93;19638:3;19549:93;:::i;:::-;19667:2;19662:3;19658:12;19651:19;;19310:366;;;:::o;19682:::-;19824:3;19845:67;19909:2;19904:3;19845:67;:::i;:::-;19838:74;;19921:93;20010:3;19921:93;:::i;:::-;20039:2;20034:3;20030:12;20023:19;;19682:366;;;:::o;20054:::-;20196:3;20217:67;20281:2;20276:3;20217:67;:::i;:::-;20210:74;;20293:93;20382:3;20293:93;:::i;:::-;20411:2;20406:3;20402:12;20395:19;;20054:366;;;:::o;20426:::-;20568:3;20589:67;20653:2;20648:3;20589:67;:::i;:::-;20582:74;;20665:93;20754:3;20665:93;:::i;:::-;20783:2;20778:3;20774:12;20767:19;;20426:366;;;:::o;20868:1629::-;21023:6;21018:3;21014:16;21118:4;21111:5;21107:16;21101:23;21137:63;21194:4;21189:3;21185:14;21171:12;21137:63;:::i;:::-;21040:170;21302:4;21295:5;21291:16;21285:23;21321:63;21378:4;21373:3;21369:14;21355:12;21321:63;:::i;:::-;21220:174;21482:4;21475:5;21471:16;21465:23;21501:63;21558:4;21553:3;21549:14;21535:12;21501:63;:::i;:::-;21404:170;21664:4;21657:5;21653:16;21647:23;21683:57;21734:4;21729:3;21725:14;21711:12;21683:57;:::i;:::-;21584:166;21839:4;21832:5;21828:16;21822:23;21858:63;21915:4;21910:3;21906:14;21892:12;21858:63;:::i;:::-;21760:171;22030:4;22023:5;22019:16;22013:23;22049:63;22106:4;22101:3;22097:14;22083:12;22049:63;:::i;:::-;21941:181;22210:4;22203:5;22199:16;22193:23;22229:63;22286:4;22281:3;22277:14;22263:12;22229:63;:::i;:::-;22132:170;22398:4;22391:5;22387:16;22381:23;22417:63;22474:4;22469:3;22465:14;22451:12;22417:63;:::i;:::-;22312:178;20992:1505;20868:1629;;:::o;22503:108::-;22580:24;22598:5;22580:24;:::i;:::-;22575:3;22568:37;22503:108;;:::o;22617:118::-;22704:24;22722:5;22704:24;:::i;:::-;22699:3;22692:37;22617:118;;:::o;22741:429::-;22918:3;22940:92;23028:3;23019:6;22940:92;:::i;:::-;22933:99;;23049:95;23140:3;23131:6;23049:95;:::i;:::-;23042:102;;23161:3;23154:10;;22741:429;;;;;:::o;23176:695::-;23454:3;23476:92;23564:3;23555:6;23476:92;:::i;:::-;23469:99;;23585:95;23676:3;23667:6;23585:95;:::i;:::-;23578:102;;23697:148;23841:3;23697:148;:::i;:::-;23690:155;;23862:3;23855:10;;23176:695;;;;;:::o;23877:222::-;23970:4;24008:2;23997:9;23993:18;23985:26;;24021:71;24089:1;24078:9;24074:17;24065:6;24021:71;:::i;:::-;23877:222;;;;:::o;24105:640::-;24300:4;24338:3;24327:9;24323:19;24315:27;;24352:71;24420:1;24409:9;24405:17;24396:6;24352:71;:::i;:::-;24433:72;24501:2;24490:9;24486:18;24477:6;24433:72;:::i;:::-;24515;24583:2;24572:9;24568:18;24559:6;24515:72;:::i;:::-;24634:9;24628:4;24624:20;24619:2;24608:9;24604:18;24597:48;24662:76;24733:4;24724:6;24662:76;:::i;:::-;24654:84;;24105:640;;;;;;;:::o;24751:210::-;24838:4;24876:2;24865:9;24861:18;24853:26;;24889:65;24951:1;24940:9;24936:17;24927:6;24889:65;:::i;:::-;24751:210;;;;:::o;24967:313::-;25080:4;25118:2;25107:9;25103:18;25095:26;;25167:9;25161:4;25157:20;25153:1;25142:9;25138:17;25131:47;25195:78;25268:4;25259:6;25195:78;:::i;:::-;25187:86;;24967:313;;;;:::o;25286:419::-;25452:4;25490:2;25479:9;25475:18;25467:26;;25539:9;25533:4;25529:20;25525:1;25514:9;25510:17;25503:47;25567:131;25693:4;25567:131;:::i;:::-;25559:139;;25286:419;;;:::o;25711:::-;25877:4;25915:2;25904:9;25900:18;25892:26;;25964:9;25958:4;25954:20;25950:1;25939:9;25935:17;25928:47;25992:131;26118:4;25992:131;:::i;:::-;25984:139;;25711:419;;;:::o;26136:::-;26302:4;26340:2;26329:9;26325:18;26317:26;;26389:9;26383:4;26379:20;26375:1;26364:9;26360:17;26353:47;26417:131;26543:4;26417:131;:::i;:::-;26409:139;;26136:419;;;:::o;26561:::-;26727:4;26765:2;26754:9;26750:18;26742:26;;26814:9;26808:4;26804:20;26800:1;26789:9;26785:17;26778:47;26842:131;26968:4;26842:131;:::i;:::-;26834:139;;26561:419;;;:::o;26986:::-;27152:4;27190:2;27179:9;27175:18;27167:26;;27239:9;27233:4;27229:20;27225:1;27214:9;27210:17;27203:47;27267:131;27393:4;27267:131;:::i;:::-;27259:139;;26986:419;;;:::o;27411:::-;27577:4;27615:2;27604:9;27600:18;27592:26;;27664:9;27658:4;27654:20;27650:1;27639:9;27635:17;27628:47;27692:131;27818:4;27692:131;:::i;:::-;27684:139;;27411:419;;;:::o;27836:::-;28002:4;28040:2;28029:9;28025:18;28017:26;;28089:9;28083:4;28079:20;28075:1;28064:9;28060:17;28053:47;28117:131;28243:4;28117:131;:::i;:::-;28109:139;;27836:419;;;:::o;28261:::-;28427:4;28465:2;28454:9;28450:18;28442:26;;28514:9;28508:4;28504:20;28500:1;28489:9;28485:17;28478:47;28542:131;28668:4;28542:131;:::i;:::-;28534:139;;28261:419;;;:::o;28686:::-;28852:4;28890:2;28879:9;28875:18;28867:26;;28939:9;28933:4;28929:20;28925:1;28914:9;28910:17;28903:47;28967:131;29093:4;28967:131;:::i;:::-;28959:139;;28686:419;;;:::o;29111:::-;29277:4;29315:2;29304:9;29300:18;29292:26;;29364:9;29358:4;29354:20;29350:1;29339:9;29335:17;29328:47;29392:131;29518:4;29392:131;:::i;:::-;29384:139;;29111:419;;;:::o;29536:::-;29702:4;29740:2;29729:9;29725:18;29717:26;;29789:9;29783:4;29779:20;29775:1;29764:9;29760:17;29753:47;29817:131;29943:4;29817:131;:::i;:::-;29809:139;;29536:419;;;:::o;29961:::-;30127:4;30165:2;30154:9;30150:18;30142:26;;30214:9;30208:4;30204:20;30200:1;30189:9;30185:17;30178:47;30242:131;30368:4;30242:131;:::i;:::-;30234:139;;29961:419;;;:::o;30386:::-;30552:4;30590:2;30579:9;30575:18;30567:26;;30639:9;30633:4;30629:20;30625:1;30614:9;30610:17;30603:47;30667:131;30793:4;30667:131;:::i;:::-;30659:139;;30386:419;;;:::o;30811:::-;30977:4;31015:2;31004:9;31000:18;30992:26;;31064:9;31058:4;31054:20;31050:1;31039:9;31035:17;31028:47;31092:131;31218:4;31092:131;:::i;:::-;31084:139;;30811:419;;;:::o;31236:::-;31402:4;31440:2;31429:9;31425:18;31417:26;;31489:9;31483:4;31479:20;31475:1;31464:9;31460:17;31453:47;31517:131;31643:4;31517:131;:::i;:::-;31509:139;;31236:419;;;:::o;31661:::-;31827:4;31865:2;31854:9;31850:18;31842:26;;31914:9;31908:4;31904:20;31900:1;31889:9;31885:17;31878:47;31942:131;32068:4;31942:131;:::i;:::-;31934:139;;31661:419;;;:::o;32086:::-;32252:4;32290:2;32279:9;32275:18;32267:26;;32339:9;32333:4;32329:20;32325:1;32314:9;32310:17;32303:47;32367:131;32493:4;32367:131;:::i;:::-;32359:139;;32086:419;;;:::o;32511:::-;32677:4;32715:2;32704:9;32700:18;32692:26;;32764:9;32758:4;32754:20;32750:1;32739:9;32735:17;32728:47;32792:131;32918:4;32792:131;:::i;:::-;32784:139;;32511:419;;;:::o;32936:::-;33102:4;33140:2;33129:9;33125:18;33117:26;;33189:9;33183:4;33179:20;33175:1;33164:9;33160:17;33153:47;33217:131;33343:4;33217:131;:::i;:::-;33209:139;;32936:419;;;:::o;33361:::-;33527:4;33565:2;33554:9;33550:18;33542:26;;33614:9;33608:4;33604:20;33600:1;33589:9;33585:17;33578:47;33642:131;33768:4;33642:131;:::i;:::-;33634:139;;33361:419;;;:::o;33786:::-;33952:4;33990:2;33979:9;33975:18;33967:26;;34039:9;34033:4;34029:20;34025:1;34014:9;34010:17;34003:47;34067:131;34193:4;34067:131;:::i;:::-;34059:139;;33786:419;;;:::o;34211:::-;34377:4;34415:2;34404:9;34400:18;34392:26;;34464:9;34458:4;34454:20;34450:1;34439:9;34435:17;34428:47;34492:131;34618:4;34492:131;:::i;:::-;34484:139;;34211:419;;;:::o;34636:::-;34802:4;34840:2;34829:9;34825:18;34817:26;;34889:9;34883:4;34879:20;34875:1;34864:9;34860:17;34853:47;34917:131;35043:4;34917:131;:::i;:::-;34909:139;;34636:419;;;:::o;35061:::-;35227:4;35265:2;35254:9;35250:18;35242:26;;35314:9;35308:4;35304:20;35300:1;35289:9;35285:17;35278:47;35342:131;35468:4;35342:131;:::i;:::-;35334:139;;35061:419;;;:::o;35486:::-;35652:4;35690:2;35679:9;35675:18;35667:26;;35739:9;35733:4;35729:20;35725:1;35714:9;35710:17;35703:47;35767:131;35893:4;35767:131;:::i;:::-;35759:139;;35486:419;;;:::o;35911:::-;36077:4;36115:2;36104:9;36100:18;36092:26;;36164:9;36158:4;36154:20;36150:1;36139:9;36135:17;36128:47;36192:131;36318:4;36192:131;:::i;:::-;36184:139;;35911:419;;;:::o;36336:::-;36502:4;36540:2;36529:9;36525:18;36517:26;;36589:9;36583:4;36579:20;36575:1;36564:9;36560:17;36553:47;36617:131;36743:4;36617:131;:::i;:::-;36609:139;;36336:419;;;:::o;36761:::-;36927:4;36965:2;36954:9;36950:18;36942:26;;37014:9;37008:4;37004:20;37000:1;36989:9;36985:17;36978:47;37042:131;37168:4;37042:131;:::i;:::-;37034:139;;36761:419;;;:::o;37186:339::-;37337:4;37375:3;37364:9;37360:19;37352:27;;37389:129;37515:1;37504:9;37500:17;37491:6;37389:129;:::i;:::-;37186:339;;;;:::o;37531:222::-;37624:4;37662:2;37651:9;37647:18;37639:26;;37675:71;37743:1;37732:9;37728:17;37719:6;37675:71;:::i;:::-;37531:222;;;;:::o;37759:129::-;37793:6;37820:20;;:::i;:::-;37810:30;;37849:33;37877:4;37869:6;37849:33;:::i;:::-;37759:129;;;:::o;37894:75::-;37927:6;37960:2;37954:9;37944:19;;37894:75;:::o;37975:307::-;38036:4;38126:18;38118:6;38115:30;38112:56;;;38148:18;;:::i;:::-;38112:56;38186:29;38208:6;38186:29;:::i;:::-;38178:37;;38270:4;38264;38260:15;38252:23;;37975:307;;;:::o;38288:308::-;38350:4;38440:18;38432:6;38429:30;38426:56;;;38462:18;;:::i;:::-;38426:56;38500:29;38522:6;38500:29;:::i;:::-;38492:37;;38584:4;38578;38574:15;38566:23;;38288:308;;;:::o;38602:141::-;38651:4;38674:3;38666:11;;38697:3;38694:1;38687:14;38731:4;38728:1;38718:18;38710:26;;38602:141;;;:::o;38749:98::-;38800:6;38834:5;38828:12;38818:22;;38749:98;;;:::o;38853:99::-;38905:6;38939:5;38933:12;38923:22;;38853:99;;;:::o;38958:168::-;39041:11;39075:6;39070:3;39063:19;39115:4;39110:3;39106:14;39091:29;;38958:168;;;;:::o;39132:169::-;39216:11;39250:6;39245:3;39238:19;39290:4;39285:3;39281:14;39266:29;;39132:169;;;;:::o;39307:148::-;39409:11;39446:3;39431:18;;39307:148;;;;:::o;39461:273::-;39501:3;39520:20;39538:1;39520:20;:::i;:::-;39515:25;;39554:20;39572:1;39554:20;:::i;:::-;39549:25;;39676:1;39640:34;39636:42;39633:1;39630:49;39627:75;;;39682:18;;:::i;:::-;39627:75;39726:1;39723;39719:9;39712:16;;39461:273;;;;:::o;39740:305::-;39780:3;39799:20;39817:1;39799:20;:::i;:::-;39794:25;;39833:20;39851:1;39833:20;:::i;:::-;39828:25;;39987:1;39919:66;39915:74;39912:1;39909:81;39906:107;;;39993:18;;:::i;:::-;39906:107;40037:1;40034;40030:9;40023:16;;39740:305;;;;:::o;40051:185::-;40091:1;40108:20;40126:1;40108:20;:::i;:::-;40103:25;;40142:20;40160:1;40142:20;:::i;:::-;40137:25;;40181:1;40171:35;;40186:18;;:::i;:::-;40171:35;40228:1;40225;40221:9;40216:14;;40051:185;;;;:::o;40242:348::-;40282:7;40305:20;40323:1;40305:20;:::i;:::-;40300:25;;40339:20;40357:1;40339:20;:::i;:::-;40334:25;;40527:1;40459:66;40455:74;40452:1;40449:81;40444:1;40437:9;40430:17;40426:105;40423:131;;;40534:18;;:::i;:::-;40423:131;40582:1;40579;40575:9;40564:20;;40242:348;;;;:::o;40596:191::-;40636:4;40656:20;40674:1;40656:20;:::i;:::-;40651:25;;40690:20;40708:1;40690:20;:::i;:::-;40685:25;;40729:1;40726;40723:8;40720:34;;;40734:18;;:::i;:::-;40720:34;40779:1;40776;40772:9;40764:17;;40596:191;;;;:::o;40793:::-;40833:4;40853:20;40871:1;40853:20;:::i;:::-;40848:25;;40887:20;40905:1;40887:20;:::i;:::-;40882:25;;40926:1;40923;40920:8;40917:34;;;40931:18;;:::i;:::-;40917:34;40976:1;40973;40969:9;40961:17;;40793:191;;;;:::o;40990:96::-;41027:7;41056:24;41074:5;41056:24;:::i;:::-;41045:35;;40990:96;;;:::o;41092:90::-;41126:7;41169:5;41162:13;41155:21;41144:32;;41092:90;;;:::o;41188:149::-;41224:7;41264:66;41257:5;41253:78;41242:89;;41188:149;;;:::o;41343:118::-;41380:7;41420:34;41413:5;41409:46;41398:57;;41343:118;;;:::o;41467:126::-;41504:7;41544:42;41537:5;41533:54;41522:65;;41467:126;;;:::o;41599:77::-;41636:7;41665:5;41654:16;;41599:77;;;:::o;41682:154::-;41766:6;41761:3;41756;41743:30;41828:1;41819:6;41814:3;41810:16;41803:27;41682:154;;;:::o;41842:307::-;41910:1;41920:113;41934:6;41931:1;41928:13;41920:113;;;42019:1;42014:3;42010:11;42004:18;42000:1;41995:3;41991:11;41984:39;41956:2;41953:1;41949:10;41944:15;;41920:113;;;42051:6;42048:1;42045:13;42042:101;;;42131:1;42122:6;42117:3;42113:16;42106:27;42042:101;41891:258;41842:307;;;:::o;42155:171::-;42194:3;42217:24;42235:5;42217:24;:::i;:::-;42208:33;;42263:4;42256:5;42253:15;42250:41;;;42271:18;;:::i;:::-;42250:41;42318:1;42311:5;42307:13;42300:20;;42155:171;;;:::o;42332:320::-;42376:6;42413:1;42407:4;42403:12;42393:22;;42460:1;42454:4;42450:12;42481:18;42471:81;;42537:4;42529:6;42525:17;42515:27;;42471:81;42599:2;42591:6;42588:14;42568:18;42565:38;42562:84;;;42618:18;;:::i;:::-;42562:84;42383:269;42332:320;;;:::o;42658:281::-;42741:27;42763:4;42741:27;:::i;:::-;42733:6;42729:40;42871:6;42859:10;42856:22;42835:18;42823:10;42820:34;42817:62;42814:88;;;42882:18;;:::i;:::-;42814:88;42922:10;42918:2;42911:22;42701:238;42658:281;;:::o;42945:233::-;42984:3;43007:24;43025:5;43007:24;:::i;:::-;42998:33;;43053:66;43046:5;43043:77;43040:103;;;43123:18;;:::i;:::-;43040:103;43170:1;43163:5;43159:13;43152:20;;42945:233;;;:::o;43184:176::-;43216:1;43233:20;43251:1;43233:20;:::i;:::-;43228:25;;43267:20;43285:1;43267:20;:::i;:::-;43262:25;;43306:1;43296:35;;43311:18;;:::i;:::-;43296:35;43352:1;43349;43345:9;43340:14;;43184:176;;;;:::o;43366:180::-;43414:77;43411:1;43404:88;43511:4;43508:1;43501:15;43535:4;43532:1;43525:15;43552:180;43600:77;43597:1;43590:88;43697:4;43694:1;43687:15;43721:4;43718:1;43711:15;43738:180;43786:77;43783:1;43776:88;43883:4;43880:1;43873:15;43907:4;43904:1;43897:15;43924:180;43972:77;43969:1;43962:88;44069:4;44066:1;44059:15;44093:4;44090:1;44083:15;44110:180;44158:77;44155:1;44148:88;44255:4;44252:1;44245:15;44279:4;44276:1;44269:15;44296:180;44344:77;44341:1;44334:88;44441:4;44438:1;44431:15;44465:4;44462:1;44455:15;44482:117;44591:1;44588;44581:12;44605:117;44714:1;44711;44704:12;44728:117;44837:1;44834;44827:12;44851:117;44960:1;44957;44950:12;44974:102;45015:6;45066:2;45062:7;45057:2;45050:5;45046:14;45042:28;45032:38;;44974:102;;;:::o;45082:221::-;45222:34;45218:1;45210:6;45206:14;45199:58;45291:4;45286:2;45278:6;45274:15;45267:29;45082:221;:::o;45309:169::-;45449:21;45445:1;45437:6;45433:14;45426:45;45309:169;:::o;45484:166::-;45624:18;45620:1;45612:6;45608:14;45601:42;45484:166;:::o;45656:225::-;45796:34;45792:1;45784:6;45780:14;45773:58;45865:8;45860:2;45852:6;45848:15;45841:33;45656:225;:::o;45887:229::-;46027:34;46023:1;46015:6;46011:14;46004:58;46096:12;46091:2;46083:6;46079:15;46072:37;45887:229;:::o;46122:181::-;46262:33;46258:1;46250:6;46246:14;46239:57;46122:181;:::o;46309:222::-;46449:34;46445:1;46437:6;46433:14;46426:58;46518:5;46513:2;46505:6;46501:15;46494:30;46309:222;:::o;46537:224::-;46677:34;46673:1;46665:6;46661:14;46654:58;46746:7;46741:2;46733:6;46729:15;46722:32;46537:224;:::o;46767:236::-;46907:34;46903:1;46895:6;46891:14;46884:58;46976:19;46971:2;46963:6;46959:15;46952:44;46767:236;:::o;47009:171::-;47149:23;47145:1;47137:6;47133:14;47126:47;47009:171;:::o;47186:244::-;47326:34;47322:1;47314:6;47310:14;47303:58;47395:27;47390:2;47382:6;47378:15;47371:52;47186:244;:::o;47436:177::-;47576:29;47572:1;47564:6;47560:14;47553:53;47436:177;:::o;47619:230::-;47759:34;47755:1;47747:6;47743:14;47736:58;47828:13;47823:2;47815:6;47811:15;47804:38;47619:230;:::o;47855:171::-;47995:23;47991:1;47983:6;47979:14;47972:47;47855:171;:::o;48032:167::-;48172:19;48168:1;48160:6;48156:14;48149:43;48032:167;:::o;48205:225::-;48345:34;48341:1;48333:6;48329:14;48322:58;48414:8;48409:2;48401:6;48397:15;48390:33;48205:225;:::o;48436:155::-;48576:7;48572:1;48564:6;48560:14;48553:31;48436:155;:::o;48597:176::-;48737:28;48733:1;48725:6;48721:14;48714:52;48597:176;:::o;48779:237::-;48919:34;48915:1;48907:6;48903:14;48896:58;48988:20;48983:2;48975:6;48971:15;48964:45;48779:237;:::o;49022:174::-;49162:26;49158:1;49150:6;49146:14;49139:50;49022:174;:::o;49202:221::-;49342:34;49338:1;49330:6;49326:14;49319:58;49411:4;49406:2;49398:6;49394:15;49387:29;49202:221;:::o;49429:238::-;49569:34;49565:1;49557:6;49553:14;49546:58;49638:21;49633:2;49625:6;49621:15;49614:46;49429:238;:::o;49673:179::-;49813:31;49809:1;49801:6;49797:14;49790:55;49673:179;:::o;49858:220::-;49998:34;49994:1;49986:6;49982:14;49975:58;50067:3;50062:2;50054:6;50050:15;50043:28;49858:220;:::o;50084:233::-;50224:34;50220:1;50212:6;50208:14;50201:58;50293:16;50288:2;50280:6;50276:15;50269:41;50084:233;:::o;50323:234::-;50463:34;50459:1;50451:6;50447:14;50440:58;50532:17;50527:2;50519:6;50515:15;50508:42;50323:234;:::o;50563:172::-;50703:24;50699:1;50691:6;50687:14;50680:48;50563:172;:::o;50741:232::-;50881:34;50877:1;50869:6;50865:14;50858:58;50950:15;50945:2;50937:6;50933:15;50926:40;50741:232;:::o;50979:221::-;51119:34;51115:1;51107:6;51103:14;51096:58;51188:4;51183:2;51175:6;51171:15;51164:29;50979:221;:::o;51206:122::-;51279:24;51297:5;51279:24;:::i;:::-;51272:5;51269:35;51259:63;;51318:1;51315;51308:12;51259:63;51206:122;:::o;51334:116::-;51404:21;51419:5;51404:21;:::i;:::-;51397:5;51394:32;51384:60;;51440:1;51437;51430:12;51384:60;51334:116;:::o;51456:120::-;51528:23;51545:5;51528:23;:::i;:::-;51521:5;51518:34;51508:62;;51566:1;51563;51556:12;51508:62;51456:120;:::o;51582:122::-;51655:24;51673:5;51655:24;:::i;:::-;51648:5;51645:35;51635:63;;51694:1;51691;51684:12;51635:63;51582:122;:::o

Swarm Source

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