ETH Price: $2,377.73 (-3.17%)

Token

PepeMfers (PPMFERS)
 

Overview

Max Total Supply

1,111 PPMFERS

Holders

47

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Balance
80 PPMFERS
0xb74ce1137d4a4ae766e668b5e8ef47049df29577
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:
PepeMfers

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-02-22
*/

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

pragma solidity ^0.8.0;

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

// OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

// OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721Receiver.sol)

pragma solidity ^0.8.0;

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

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

pragma solidity ^0.8.0;

/**
 * @title ERC-721 Non-Fungible Token Standard, optional metadata extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721Metadata is IERC721 {
    /**
     * @dev Returns the token collection name.
     */
    function name() external view returns (string memory);

    /**
     * @dev Returns the token collection symbol.
     */
    function symbol() external view returns (string memory);

    /**
     * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token.
     */
    function tokenURI(uint256 tokenId) external view returns (string memory);
}

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

pragma solidity ^0.8.0;

/**
 * @dev Implementation of the {IERC165} interface.
 *
 * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check
 * for the additional interface id that will be supported. For example:
 *
 * ```solidity
 * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
 *     return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId);
 * }
 * ```
 *
 * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation.
 */
abstract contract ERC165 is IERC165 {
    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId)
        public
        view
        virtual
        override
        returns (bool)
    {
        return interfaceId == type(IERC165).interfaceId;
    }
}

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

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

pragma solidity ^0.8.0;

/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
 * the Metadata and Enumerable extension. Built to optimize for lower gas during batch mints.
 *
 * Assumes serials are sequentially minted starting at 0 (e.g. 0, 1, 2, 3..).
 *
 * Assumes the number of issuable tokens (collection size) is capped and fits in a uint128.
 *
 * Does not support burning tokens to address(0).
 */
contract ERC721A is
  Context,
  ERC165,
  IERC721,
  IERC721Metadata,
  IERC721Enumerable
{
  using Address for address;
  using Strings for uint256;

  struct TokenOwnership {
    address addr;
    uint64 startTimestamp;
  }

  struct AddressData {
    uint128 balance;
    uint128 numberMinted;
  }

  uint256 private currentIndex = 0;

  uint256 internal immutable collectionSize;
  uint256 internal immutable maxBatchSize;

  // Token name
  string private _name;

  // Token symbol
  string private _symbol;

  // Mapping from token ID to ownership details
  // An empty struct value does not necessarily mean the token is unowned. See ownershipOf implementation for details.
  mapping(uint256 => TokenOwnership) private _ownerships;

  // Mapping owner address to address data
  mapping(address => AddressData) private _addressData;

  // Mapping from token ID to approved address
  mapping(uint256 => address) private _tokenApprovals;

  // Mapping from owner to operator approvals
  mapping(address => mapping(address => bool)) private _operatorApprovals;

  /**
   * @dev
   * `maxBatchSize` refers to how much a minter can mint at a time.
   * `collectionSize_` refers to how many tokens are in the collection.
   */
  constructor(
    string memory name_,
    string memory symbol_,
    uint256 maxBatchSize_,
    uint256 collectionSize_
  ) {
    require(
      collectionSize_ > 0,
      "ERC721A: collection must have a nonzero supply"
    );
    require(maxBatchSize_ > 0, "ERC721A: max batch size must be nonzero");
    _name = name_;
    _symbol = symbol_;
    maxBatchSize = maxBatchSize_;
    collectionSize = collectionSize_;
  }

  /**
   * @dev See {IERC721Enumerable-totalSupply}.
   */
  function totalSupply() public view override returns (uint256) {
    return currentIndex;
  }

  /**
   * @dev See {IERC721Enumerable-tokenByIndex}.
   */
  function tokenByIndex(uint256 index) public view override returns (uint256) {
    require(index < totalSupply(), "ERC721A: global index out of bounds");
    return index;
  }

  /**
   * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}.
   * This read function is O(collectionSize). If calling from a separate contract, be sure to test gas first.
   * It may also degrade with extremely large collection sizes (e.g >> 10000), test for your use case.
   */
  function tokenOfOwnerByIndex(address owner, uint256 index)
    public
    view
    override
    returns (uint256)
  {
    require(index < balanceOf(owner), "ERC721A: owner index out of bounds");
    uint256 numMintedSoFar = totalSupply();
    uint256 tokenIdsIdx = 0;
    address currOwnershipAddr = address(0);
    for (uint256 i = 0; i < numMintedSoFar; i++) {
      TokenOwnership memory ownership = _ownerships[i];
      if (ownership.addr != address(0)) {
        currOwnershipAddr = ownership.addr;
      }
      if (currOwnershipAddr == owner) {
        if (tokenIdsIdx == index) {
          return i;
        }
        tokenIdsIdx++;
      }
    }
    revert("ERC721A: unable to get token of owner by index");
  }

  /**
   * @dev See {IERC165-supportsInterface}.
   */
  function supportsInterface(bytes4 interfaceId)
    public
    view
    virtual
    override(ERC165, IERC165)
    returns (bool)
  {
    return
      interfaceId == type(IERC721).interfaceId ||
      interfaceId == type(IERC721Metadata).interfaceId ||
      interfaceId == type(IERC721Enumerable).interfaceId ||
      super.supportsInterface(interfaceId);
  }

  /**
   * @dev See {IERC721-balanceOf}.
   */
  function balanceOf(address owner) public view override returns (uint256) {
    require(owner != address(0), "ERC721A: balance query for the zero address");
    return uint256(_addressData[owner].balance);
  }

  function _numberMinted(address owner) internal view returns (uint256) {
    require(
      owner != address(0),
      "ERC721A: number minted query for the zero address"
    );
    return uint256(_addressData[owner].numberMinted);
  }

  function ownershipOf(uint256 tokenId)
    internal
    view
    returns (TokenOwnership memory)
  {
    require(_exists(tokenId), "ERC721A: owner query for nonexistent token");

    uint256 lowestTokenToCheck;
    if (tokenId >= maxBatchSize) {
      lowestTokenToCheck = tokenId - maxBatchSize + 1;
    }

    for (uint256 curr = tokenId; curr >= lowestTokenToCheck; curr--) {
      TokenOwnership memory ownership = _ownerships[curr];
      if (ownership.addr != address(0)) {
        return ownership;
      }
    }

    revert("ERC721A: unable to determine the owner of token");
  }

  /**
   * @dev See {IERC721-ownerOf}.
   */
  function ownerOf(uint256 tokenId) public view override returns (address) {
    return ownershipOf(tokenId).addr;
  }

  /**
   * @dev See {IERC721Metadata-name}.
   */
  function name() public view virtual override returns (string memory) {
    return _name;
  }

  /**
   * @dev See {IERC721Metadata-symbol}.
   */
  function symbol() public view virtual override returns (string memory) {
    return _symbol;
  }

  /**
   * @dev See {IERC721Metadata-tokenURI}.
   */
  function tokenURI(uint256 tokenId)
    public
    view
    virtual
    override
    returns (string memory)
  {
    require(
      _exists(tokenId),
      "ERC721Metadata: URI query for nonexistent token"
    );

    string memory baseURI = _baseURI();
    return
      bytes(baseURI).length > 0
        ? string(abi.encodePacked(baseURI, tokenId.toString(), ".json"))
        : "";
  }

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

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

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

    _approve(to, tokenId, owner);
  }

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

    return _tokenApprovals[tokenId];
  }

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

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

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

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

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

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

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

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

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

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

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

    uint256 updatedIndex = startTokenId;

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

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

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

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

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

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

    _beforeTokenTransfers(from, to, tokenId, 1);

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

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

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

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

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

  uint256 public nextOwnerToExplicitlySet = 0;

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

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

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

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

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

pragma solidity ^0.8.0;

/**
 * @dev Contract module which provides a basic access control mechanism, where
 * there is an account (an owner) that can be granted exclusive access to
 * specific functions.
 *
 * By default, the owner account will be the one that deploys the contract. This
 * can later be changed with {transferOwnership}.
 *
 * This module is used through inheritance. It will make available the modifier
 * `onlyOwner`, which can be applied to your functions to restrict their use to
 * the owner.
 */
abstract contract Ownable is Context {
    address private _owner;

    event OwnershipTransferred(
        address indexed previousOwner,
        address indexed newOwner
    );

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor() {
        _transferOwnership(_msgSender());
    }

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

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

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

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

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

pragma solidity ^0.8.0;

contract PepeMfers is ERC721A, Ownable {
    uint256 public NFT_PRICE = 6900000000000000;
    uint256 public MAX_SUPPLY = 6969;
    uint256 public MAX_MINTS = 10;
    uint256 public FREE_MINTS = 969;

    bool public DROP_ACTIVE = false;

    string public baseURI = "";
    
    constructor() ERC721A("PepeMfers", "PPMFERS", MAX_MINTS, MAX_SUPPLY) {}

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

        _safeMint(msg.sender, numTokens);
    }

    function mintFree(uint256 numTokens) public {
        require(DROP_ACTIVE);
        require(numTokens > 0 && numTokens <= MAX_MINTS);
        require(totalSupply() + numTokens <= FREE_MINTS, "There are no more free mints left");

        _safeMint(msg.sender, numTokens);
    }

    function flipDropState() public onlyOwner {
        DROP_ACTIVE = !DROP_ACTIVE;
    }

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

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

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

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

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

    function withdraw() public onlyOwner {
        require(payable(msg.sender).send(address(this).balance));
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"DROP_ACTIVE","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"FREE_MINTS","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_MINTS","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"NFT_PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"flipDropState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"numTokens","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"numTokens","type":"uint256"}],"name":"mintFree","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"nextOwnerToExplicitlySet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newMax","type":"uint256"}],"name":"setMaxMints","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newPrice","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newSupply","type":"uint256"}],"name":"setSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60c06040526000805560006007556618838370f34000600955611b39600a55600a600b556103c9600c556000600d60006101000a81548160ff02191690831515021790555060405180602001604052806000815250600e90805190602001906200006b929190620002b2565b503480156200007957600080fd5b506040518060400160405280600981526020017f506570654d6665727300000000000000000000000000000000000000000000008152506040518060400160405280600781526020017f50504d4645525300000000000000000000000000000000000000000000000000815250600b54600a546000811162000132576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200012990620003d2565b60405180910390fd5b6000821162000178576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200016f90620003b0565b60405180910390fd5b836001908051906020019062000190929190620002b2565b508260029080519060200190620001a9929190620002b2565b508160a08181525050806080818152505050505050620001de620001d2620001e460201b60201c565b620001ec60201b60201c565b62000508565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b828054620002c09062000405565b90600052602060002090601f016020900481019282620002e4576000855562000330565b82601f10620002ff57805160ff191683800117855562000330565b8280016001018555821562000330579182015b828111156200032f57825182559160200191906001019062000312565b5b5090506200033f919062000343565b5090565b5b808211156200035e57600081600090555060010162000344565b5090565b600062000371602783620003f4565b91506200037e826200046a565b604082019050919050565b600062000398602e83620003f4565b9150620003a582620004b9565b604082019050919050565b60006020820190508181036000830152620003cb8162000362565b9050919050565b60006020820190508181036000830152620003ed8162000389565b9050919050565b600082825260208201905092915050565b600060028204905060018216806200041e57607f821691505b602082108114156200043557620004346200043b565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f455243373231413a206d61782062617463682073697a65206d7573742062652060008201527f6e6f6e7a65726f00000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a20636f6c6c656374696f6e206d757374206861766520612060008201527f6e6f6e7a65726f20737570706c79000000000000000000000000000000000000602082015250565b60805160a05161441162000539600039600081816120d70152818161210001526127c10152600050506144116000f3fe6080604052600436106101f95760003560e01c8063715018a61161010d578063a22cb465116100a0578063cce132d11161006f578063cce132d1146106fc578063d7224ba014610727578063e985e9c514610752578063f2fde38b1461078f578063f7cd09c7146107b8576101f9565b8063a22cb46514610644578063a41467331461066d578063b88d4fde14610696578063c87b56dd146106bf576101f9565b806391b7f5ed116100dc57806391b7f5ed146105bd57806395d89b41146105e657806396f8f6dd14610611578063a0712d6814610628576101f9565b8063715018a614610527578063764267b61461053e57806379c9cb7b146105695780638da5cb5b14610592576101f9565b80633b4c4b251161019057806355f804b31161015f57806355f804b31461042e5780636352211e14610457578063676dd563146104945780636c0360eb146104bf57806370a08231146104ea576101f9565b80633b4c4b25146103885780633ccfd60b146103b157806342842e0e146103c85780634f6ccce7146103f1576101f9565b806318160ddd116101cc57806318160ddd146102cc57806323b872dd146102f75780632f745c591461032057806332cb6b0c1461035d576101f9565b806301ffc9a7146101fe57806306fdde031461023b578063081812fc14610266578063095ea7b3146102a3575b600080fd5b34801561020a57600080fd5b5061022560048036038101906102209190612fdb565b6107e3565b6040516102329190613513565b60405180910390f35b34801561024757600080fd5b5061025061092d565b60405161025d919061352e565b60405180910390f35b34801561027257600080fd5b5061028d6004803603810190610288919061307e565b6109bf565b60405161029a91906134ac565b60405180910390f35b3480156102af57600080fd5b506102ca60048036038101906102c59190612f9b565b610a44565b005b3480156102d857600080fd5b506102e1610b5d565b6040516102ee91906137f0565b60405180910390f35b34801561030357600080fd5b5061031e60048036038101906103199190612e85565b610b66565b005b34801561032c57600080fd5b5061034760048036038101906103429190612f9b565b610b76565b60405161035491906137f0565b60405180910390f35b34801561036957600080fd5b50610372610d74565b60405161037f91906137f0565b60405180910390f35b34801561039457600080fd5b506103af60048036038101906103aa919061307e565b610d7a565b005b3480156103bd57600080fd5b506103c6610e00565b005b3480156103d457600080fd5b506103ef60048036038101906103ea9190612e85565b610ebc565b005b3480156103fd57600080fd5b506104186004803603810190610413919061307e565b610edc565b60405161042591906137f0565b60405180910390f35b34801561043a57600080fd5b5061045560048036038101906104509190613035565b610f2f565b005b34801561046357600080fd5b5061047e6004803603810190610479919061307e565b610fc5565b60405161048b91906134ac565b60405180910390f35b3480156104a057600080fd5b506104a9610fdb565b6040516104b691906137f0565b60405180910390f35b3480156104cb57600080fd5b506104d4610fe1565b6040516104e1919061352e565b60405180910390f35b3480156104f657600080fd5b50610511600480360381019061050c9190612e18565b61106f565b60405161051e91906137f0565b60405180910390f35b34801561053357600080fd5b5061053c611158565b005b34801561054a57600080fd5b506105536111e0565b60405161056091906137f0565b60405180910390f35b34801561057557600080fd5b50610590600480360381019061058b919061307e565b6111e6565b005b34801561059e57600080fd5b506105a761126c565b6040516105b491906134ac565b60405180910390f35b3480156105c957600080fd5b506105e460048036038101906105df919061307e565b611296565b005b3480156105f257600080fd5b506105fb61131c565b604051610608919061352e565b60405180910390f35b34801561061d57600080fd5b506106266113ae565b005b610642600480360381019061063d919061307e565b611456565b005b34801561065057600080fd5b5061066b60048036038101906106669190612f5b565b6114d2565b005b34801561067957600080fd5b50610694600480360381019061068f919061307e565b611653565b005b3480156106a257600080fd5b506106bd60048036038101906106b89190612ed8565b6116eb565b005b3480156106cb57600080fd5b506106e660048036038101906106e1919061307e565b611747565b6040516106f3919061352e565b60405180910390f35b34801561070857600080fd5b506107116117ee565b60405161071e91906137f0565b60405180910390f35b34801561073357600080fd5b5061073c6117f4565b60405161074991906137f0565b60405180910390f35b34801561075e57600080fd5b5061077960048036038101906107749190612e45565b6117fa565b6040516107869190613513565b60405180910390f35b34801561079b57600080fd5b506107b660048036038101906107b19190612e18565b61188e565b005b3480156107c457600080fd5b506107cd611986565b6040516107da9190613513565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806108ae57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061091657507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610926575061092582611999565b5b9050919050565b60606001805461093c90613b60565b80601f016020809104026020016040519081016040528092919081815260200182805461096890613b60565b80156109b55780601f1061098a576101008083540402835291602001916109b5565b820191906000526020600020905b81548152906001019060200180831161099857829003601f168201915b5050505050905090565b60006109ca82611a03565b610a09576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a00906137b0565b60405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610a4f82610fc5565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610ac0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ab7906136f0565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610adf611a10565b73ffffffffffffffffffffffffffffffffffffffff161480610b0e5750610b0d81610b08611a10565b6117fa565b5b610b4d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b44906135f0565b60405180910390fd5b610b58838383611a18565b505050565b60008054905090565b610b71838383611aca565b505050565b6000610b818361106f565b8210610bc2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bb990613550565b60405180910390fd5b6000610bcc610b5d565b905060008060005b83811015610d32576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614610cc657806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610d1e5786841415610d0f578195505050505050610d6e565b8380610d1a90613bc3565b9450505b508080610d2a90613bc3565b915050610bd4565b506040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d6590613770565b60405180910390fd5b92915050565b600a5481565b610d82611a10565b73ffffffffffffffffffffffffffffffffffffffff16610da061126c565b73ffffffffffffffffffffffffffffffffffffffff1614610df6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ded90613650565b60405180910390fd5b80600a8190555050565b610e08611a10565b73ffffffffffffffffffffffffffffffffffffffff16610e2661126c565b73ffffffffffffffffffffffffffffffffffffffff1614610e7c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e7390613650565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050610eba57600080fd5b565b610ed7838383604051806020016040528060008152506116eb565b505050565b6000610ee6610b5d565b8210610f27576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f1e906135b0565b60405180910390fd5b819050919050565b610f37611a10565b73ffffffffffffffffffffffffffffffffffffffff16610f5561126c565b73ffffffffffffffffffffffffffffffffffffffff1614610fab576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fa290613650565b60405180910390fd5b80600e9080519060200190610fc1929190612bf2565b5050565b6000610fd082612083565b600001519050919050565b60095481565b600e8054610fee90613b60565b80601f016020809104026020016040519081016040528092919081815260200182805461101a90613b60565b80156110675780601f1061103c57610100808354040283529160200191611067565b820191906000526020600020905b81548152906001019060200180831161104a57829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156110e0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110d790613610565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b611160611a10565b73ffffffffffffffffffffffffffffffffffffffff1661117e61126c565b73ffffffffffffffffffffffffffffffffffffffff16146111d4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111cb90613650565b60405180910390fd5b6111de6000612286565b565b600c5481565b6111ee611a10565b73ffffffffffffffffffffffffffffffffffffffff1661120c61126c565b73ffffffffffffffffffffffffffffffffffffffff1614611262576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161125990613650565b60405180910390fd5b80600b8190555050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b61129e611a10565b73ffffffffffffffffffffffffffffffffffffffff166112bc61126c565b73ffffffffffffffffffffffffffffffffffffffff1614611312576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161130990613650565b60405180910390fd5b8060098190555050565b60606002805461132b90613b60565b80601f016020809104026020016040519081016040528092919081815260200182805461135790613b60565b80156113a45780601f10611379576101008083540402835291602001916113a4565b820191906000526020600020905b81548152906001019060200180831161138757829003601f168201915b5050505050905090565b6113b6611a10565b73ffffffffffffffffffffffffffffffffffffffff166113d461126c565b73ffffffffffffffffffffffffffffffffffffffff161461142a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161142190613650565b60405180910390fd5b600d60009054906101000a900460ff1615600d60006101000a81548160ff021916908315150217905550565b600d60009054906101000a900460ff1661146f57600080fd5b6000811180156114815750600b548111155b61148a57600080fd5b600a5481611496610b5d565b6114a0919061391b565b11156114ab57600080fd5b806009546114b991906139a2565b3410156114c557600080fd5b6114cf338261234c565b50565b6114da611a10565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611548576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161153f90613690565b60405180910390fd5b8060066000611555611a10565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611602611a10565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516116479190613513565b60405180910390a35050565b600d60009054906101000a900460ff1661166c57600080fd5b60008111801561167e5750600b548111155b61168757600080fd5b600c5481611693610b5d565b61169d919061391b565b11156116de576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116d5906136d0565b60405180910390fd5b6116e8338261234c565b50565b6116f6848484611aca565b6117028484848461236a565b611741576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161173890613710565b60405180910390fd5b50505050565b606061175282611a03565b611791576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161178890613670565b60405180910390fd5b600061179b612501565b905060008151116117bb57604051806020016040528060008152506117e6565b806117c584612593565b6040516020016117d692919061347d565b6040516020818303038152906040525b915050919050565b600b5481565b60075481565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611896611a10565b73ffffffffffffffffffffffffffffffffffffffff166118b461126c565b73ffffffffffffffffffffffffffffffffffffffff161461190a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161190190613650565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561197a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161197190613570565b60405180910390fd5b61198381612286565b50565b600d60009054906101000a900460ff1681565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6000805482109050919050565b600033905090565b826005600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b6000611ad582612083565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff16611afc611a10565b73ffffffffffffffffffffffffffffffffffffffff161480611b585750611b21611a10565b73ffffffffffffffffffffffffffffffffffffffff16611b40846109bf565b73ffffffffffffffffffffffffffffffffffffffff16145b80611b745750611b738260000151611b6e611a10565b6117fa565b5b905080611bb6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bad906136b0565b60405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff1614611c28576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c1f90613630565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611c98576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c8f906135d0565b60405180910390fd5b611ca585858560016126f4565b611cb56000848460000151611a18565b6001600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff16611d2391906139fc565b92506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff1602179055506001600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff16611dc791906138d5565b92506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060405180604001604052808573ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506003600085815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055509050506000600184611ecd919061391b565b9050600073ffffffffffffffffffffffffffffffffffffffff166003600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16141561201357611f4381611a03565b15612012576040518060400160405280846000015173ffffffffffffffffffffffffffffffffffffffff168152602001846020015167ffffffffffffffff168152506003600083815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055509050505b5b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461207b86868660016126fa565b505050505050565b61208b612c78565b61209482611a03565b6120d3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120ca90613590565b60405180910390fd5b60007f000000000000000000000000000000000000000000000000000000000000000083106121375760017f00000000000000000000000000000000000000000000000000000000000000008461212a9190613a30565b612134919061391b565b90505b60008390505b818110612245576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461223157809350505050612281565b50808061223d90613b36565b91505061213d565b506040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161227890613790565b60405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b612366828260405180602001604052806000815250612700565b5050565b600061238b8473ffffffffffffffffffffffffffffffffffffffff16612bdf565b156124f4578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026123b4611a10565b8786866040518563ffffffff1660e01b81526004016123d694939291906134c7565b602060405180830381600087803b1580156123f057600080fd5b505af192505050801561242157506040513d601f19601f8201168201806040525081019061241e9190613008565b60015b6124a4573d8060008114612451576040519150601f19603f3d011682016040523d82523d6000602084013e612456565b606091505b5060008151141561249c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161249390613710565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506124f9565b600190505b949350505050565b6060600e805461251090613b60565b80601f016020809104026020016040519081016040528092919081815260200182805461253c90613b60565b80156125895780601f1061255e57610100808354040283529160200191612589565b820191906000526020600020905b81548152906001019060200180831161256c57829003601f168201915b5050505050905090565b606060008214156125db576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506126ef565b600082905060005b6000821461260d5780806125f690613bc3565b915050600a826126069190613971565b91506125e3565b60008167ffffffffffffffff81111561262957612628613cf9565b5b6040519080825280601f01601f19166020018201604052801561265b5781602001600182028036833780820191505090505b5090505b600085146126e8576001826126749190613a30565b9150600a856126839190613c0c565b603061268f919061391b565b60f81b8183815181106126a5576126a4613cca565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856126e19190613971565b945061265f565b8093505050505b919050565b50505050565b50505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612776576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161276d90613750565b60405180910390fd5b61277f81611a03565b156127bf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127b690613730565b60405180910390fd5b7f0000000000000000000000000000000000000000000000000000000000000000831115612822576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612819906137d0565b60405180910390fd5b61282f60008583866126f4565b6000600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206040518060400160405290816000820160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff1681526020016000820160109054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff16815250509050604051806040016040528085836000015161292c91906138d5565b6fffffffffffffffffffffffffffffffff16815260200185836020015161295391906138d5565b6fffffffffffffffffffffffffffffffff16815250600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008201518160000160006101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060208201518160000160106101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555090505060405180604001604052808673ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506003600084815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550905050600082905060005b85811015612bc257818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612b62600088848861236a565b612ba1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b9890613710565b60405180910390fd5b8180612bac90613bc3565b9250508080612bba90613bc3565b915050612af1565b5080600081905550612bd760008785886126fa565b505050505050565b600080823b905060008111915050919050565b828054612bfe90613b60565b90600052602060002090601f016020900481019282612c205760008555612c67565b82601f10612c3957805160ff1916838001178555612c67565b82800160010185558215612c67579182015b82811115612c66578251825591602001919060010190612c4b565b5b509050612c749190612cb2565b5090565b6040518060400160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681525090565b5b80821115612ccb576000816000905550600101612cb3565b5090565b6000612ce2612cdd84613830565b61380b565b905082815260208101848484011115612cfe57612cfd613d2d565b5b612d09848285613af4565b509392505050565b6000612d24612d1f84613861565b61380b565b905082815260208101848484011115612d4057612d3f613d2d565b5b612d4b848285613af4565b509392505050565b600081359050612d628161437f565b92915050565b600081359050612d7781614396565b92915050565b600081359050612d8c816143ad565b92915050565b600081519050612da1816143ad565b92915050565b600082601f830112612dbc57612dbb613d28565b5b8135612dcc848260208601612ccf565b91505092915050565b600082601f830112612dea57612de9613d28565b5b8135612dfa848260208601612d11565b91505092915050565b600081359050612e12816143c4565b92915050565b600060208284031215612e2e57612e2d613d37565b5b6000612e3c84828501612d53565b91505092915050565b60008060408385031215612e5c57612e5b613d37565b5b6000612e6a85828601612d53565b9250506020612e7b85828601612d53565b9150509250929050565b600080600060608486031215612e9e57612e9d613d37565b5b6000612eac86828701612d53565b9350506020612ebd86828701612d53565b9250506040612ece86828701612e03565b9150509250925092565b60008060008060808587031215612ef257612ef1613d37565b5b6000612f0087828801612d53565b9450506020612f1187828801612d53565b9350506040612f2287828801612e03565b925050606085013567ffffffffffffffff811115612f4357612f42613d32565b5b612f4f87828801612da7565b91505092959194509250565b60008060408385031215612f7257612f71613d37565b5b6000612f8085828601612d53565b9250506020612f9185828601612d68565b9150509250929050565b60008060408385031215612fb257612fb1613d37565b5b6000612fc085828601612d53565b9250506020612fd185828601612e03565b9150509250929050565b600060208284031215612ff157612ff0613d37565b5b6000612fff84828501612d7d565b91505092915050565b60006020828403121561301e5761301d613d37565b5b600061302c84828501612d92565b91505092915050565b60006020828403121561304b5761304a613d37565b5b600082013567ffffffffffffffff81111561306957613068613d32565b5b61307584828501612dd5565b91505092915050565b60006020828403121561309457613093613d37565b5b60006130a284828501612e03565b91505092915050565b6130b481613a64565b82525050565b6130c381613a76565b82525050565b60006130d482613892565b6130de81856138a8565b93506130ee818560208601613b03565b6130f781613d3c565b840191505092915050565b600061310d8261389d565b61311781856138b9565b9350613127818560208601613b03565b61313081613d3c565b840191505092915050565b60006131468261389d565b61315081856138ca565b9350613160818560208601613b03565b80840191505092915050565b60006131796022836138b9565b915061318482613d4d565b604082019050919050565b600061319c6026836138b9565b91506131a782613d9c565b604082019050919050565b60006131bf602a836138b9565b91506131ca82613deb565b604082019050919050565b60006131e26023836138b9565b91506131ed82613e3a565b604082019050919050565b60006132056025836138b9565b915061321082613e89565b604082019050919050565b60006132286039836138b9565b915061323382613ed8565b604082019050919050565b600061324b602b836138b9565b915061325682613f27565b604082019050919050565b600061326e6026836138b9565b915061327982613f76565b604082019050919050565b60006132916005836138ca565b915061329c82613fc5565b600582019050919050565b60006132b46020836138b9565b91506132bf82613fee565b602082019050919050565b60006132d7602f836138b9565b91506132e282614017565b604082019050919050565b60006132fa601a836138b9565b915061330582614066565b602082019050919050565b600061331d6032836138b9565b91506133288261408f565b604082019050919050565b60006133406021836138b9565b915061334b826140de565b604082019050919050565b60006133636022836138b9565b915061336e8261412d565b604082019050919050565b60006133866033836138b9565b91506133918261417c565b604082019050919050565b60006133a9601d836138b9565b91506133b4826141cb565b602082019050919050565b60006133cc6021836138b9565b91506133d7826141f4565b604082019050919050565b60006133ef602e836138b9565b91506133fa82614243565b604082019050919050565b6000613412602f836138b9565b915061341d82614292565b604082019050919050565b6000613435602d836138b9565b9150613440826142e1565b604082019050919050565b60006134586022836138b9565b915061346382614330565b604082019050919050565b61347781613aea565b82525050565b6000613489828561313b565b9150613495828461313b565b91506134a082613284565b91508190509392505050565b60006020820190506134c160008301846130ab565b92915050565b60006080820190506134dc60008301876130ab565b6134e960208301866130ab565b6134f6604083018561346e565b818103606083015261350881846130c9565b905095945050505050565b600060208201905061352860008301846130ba565b92915050565b600060208201905081810360008301526135488184613102565b905092915050565b600060208201905081810360008301526135698161316c565b9050919050565b600060208201905081810360008301526135898161318f565b9050919050565b600060208201905081810360008301526135a9816131b2565b9050919050565b600060208201905081810360008301526135c9816131d5565b9050919050565b600060208201905081810360008301526135e9816131f8565b9050919050565b600060208201905081810360008301526136098161321b565b9050919050565b600060208201905081810360008301526136298161323e565b9050919050565b6000602082019050818103600083015261364981613261565b9050919050565b60006020820190508181036000830152613669816132a7565b9050919050565b60006020820190508181036000830152613689816132ca565b9050919050565b600060208201905081810360008301526136a9816132ed565b9050919050565b600060208201905081810360008301526136c981613310565b9050919050565b600060208201905081810360008301526136e981613333565b9050919050565b6000602082019050818103600083015261370981613356565b9050919050565b6000602082019050818103600083015261372981613379565b9050919050565b600060208201905081810360008301526137498161339c565b9050919050565b60006020820190508181036000830152613769816133bf565b9050919050565b60006020820190508181036000830152613789816133e2565b9050919050565b600060208201905081810360008301526137a981613405565b9050919050565b600060208201905081810360008301526137c981613428565b9050919050565b600060208201905081810360008301526137e98161344b565b9050919050565b6000602082019050613805600083018461346e565b92915050565b6000613815613826565b90506138218282613b92565b919050565b6000604051905090565b600067ffffffffffffffff82111561384b5761384a613cf9565b5b61385482613d3c565b9050602081019050919050565b600067ffffffffffffffff82111561387c5761387b613cf9565b5b61388582613d3c565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b60006138e082613aae565b91506138eb83613aae565b9250826fffffffffffffffffffffffffffffffff038211156139105761390f613c3d565b5b828201905092915050565b600061392682613aea565b915061393183613aea565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561396657613965613c3d565b5b828201905092915050565b600061397c82613aea565b915061398783613aea565b92508261399757613996613c6c565b5b828204905092915050565b60006139ad82613aea565b91506139b883613aea565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156139f1576139f0613c3d565b5b828202905092915050565b6000613a0782613aae565b9150613a1283613aae565b925082821015613a2557613a24613c3d565b5b828203905092915050565b6000613a3b82613aea565b9150613a4683613aea565b925082821015613a5957613a58613c3d565b5b828203905092915050565b6000613a6f82613aca565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b60006fffffffffffffffffffffffffffffffff82169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015613b21578082015181840152602081019050613b06565b83811115613b30576000848401525b50505050565b6000613b4182613aea565b91506000821415613b5557613b54613c3d565b5b600182039050919050565b60006002820490506001821680613b7857607f821691505b60208210811415613b8c57613b8b613c9b565b5b50919050565b613b9b82613d3c565b810181811067ffffffffffffffff82111715613bba57613bb9613cf9565b5b80604052505050565b6000613bce82613aea565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613c0157613c00613c3d565b5b600182019050919050565b6000613c1782613aea565b9150613c2283613aea565b925082613c3257613c31613c6c565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f455243373231413a206f776e657220696e646578206f7574206f6620626f756e60008201527f6473000000000000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a206f776e657220717565727920666f72206e6f6e6578697360008201527f74656e7420746f6b656e00000000000000000000000000000000000000000000602082015250565b7f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f7560008201527f6e64730000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000602082015250565b7f455243373231413a2062616c616e636520717565727920666f7220746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e736665722066726f6d20696e636f727265637460008201527f206f776e65720000000000000000000000000000000000000000000000000000602082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f455243373231413a20617070726f766520746f2063616c6c6572000000000000600082015250565b7f455243373231413a207472616e736665722063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b7f546865726520617265206e6f206d6f72652066726565206d696e7473206c656660008201527f7400000000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60008201527f6572000000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e7366657220746f206e6f6e204552433732315260008201527f6563656976657220696d706c656d656e74657200000000000000000000000000602082015250565b7f455243373231413a20746f6b656e20616c7265616479206d696e746564000000600082015250565b7f455243373231413a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060008201527f6f776e657220627920696e646578000000000000000000000000000000000000602082015250565b7f455243373231413a20756e61626c6520746f2064657465726d696e652074686560008201527f206f776e6572206f6620746f6b656e0000000000000000000000000000000000602082015250565b7f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560008201527f78697374656e7420746f6b656e00000000000000000000000000000000000000602082015250565b7f455243373231413a207175616e7469747920746f206d696e7420746f6f20686960008201527f6768000000000000000000000000000000000000000000000000000000000000602082015250565b61438881613a64565b811461439357600080fd5b50565b61439f81613a76565b81146143aa57600080fd5b50565b6143b681613a82565b81146143c157600080fd5b50565b6143cd81613aea565b81146143d857600080fd5b5056fea2646970667358221220e8e9a32d9bf0a1210f0b0f2c0a7fd9573dc714b547243463123733e4912fadba64736f6c63430008070033

Deployed Bytecode

0x6080604052600436106101f95760003560e01c8063715018a61161010d578063a22cb465116100a0578063cce132d11161006f578063cce132d1146106fc578063d7224ba014610727578063e985e9c514610752578063f2fde38b1461078f578063f7cd09c7146107b8576101f9565b8063a22cb46514610644578063a41467331461066d578063b88d4fde14610696578063c87b56dd146106bf576101f9565b806391b7f5ed116100dc57806391b7f5ed146105bd57806395d89b41146105e657806396f8f6dd14610611578063a0712d6814610628576101f9565b8063715018a614610527578063764267b61461053e57806379c9cb7b146105695780638da5cb5b14610592576101f9565b80633b4c4b251161019057806355f804b31161015f57806355f804b31461042e5780636352211e14610457578063676dd563146104945780636c0360eb146104bf57806370a08231146104ea576101f9565b80633b4c4b25146103885780633ccfd60b146103b157806342842e0e146103c85780634f6ccce7146103f1576101f9565b806318160ddd116101cc57806318160ddd146102cc57806323b872dd146102f75780632f745c591461032057806332cb6b0c1461035d576101f9565b806301ffc9a7146101fe57806306fdde031461023b578063081812fc14610266578063095ea7b3146102a3575b600080fd5b34801561020a57600080fd5b5061022560048036038101906102209190612fdb565b6107e3565b6040516102329190613513565b60405180910390f35b34801561024757600080fd5b5061025061092d565b60405161025d919061352e565b60405180910390f35b34801561027257600080fd5b5061028d6004803603810190610288919061307e565b6109bf565b60405161029a91906134ac565b60405180910390f35b3480156102af57600080fd5b506102ca60048036038101906102c59190612f9b565b610a44565b005b3480156102d857600080fd5b506102e1610b5d565b6040516102ee91906137f0565b60405180910390f35b34801561030357600080fd5b5061031e60048036038101906103199190612e85565b610b66565b005b34801561032c57600080fd5b5061034760048036038101906103429190612f9b565b610b76565b60405161035491906137f0565b60405180910390f35b34801561036957600080fd5b50610372610d74565b60405161037f91906137f0565b60405180910390f35b34801561039457600080fd5b506103af60048036038101906103aa919061307e565b610d7a565b005b3480156103bd57600080fd5b506103c6610e00565b005b3480156103d457600080fd5b506103ef60048036038101906103ea9190612e85565b610ebc565b005b3480156103fd57600080fd5b506104186004803603810190610413919061307e565b610edc565b60405161042591906137f0565b60405180910390f35b34801561043a57600080fd5b5061045560048036038101906104509190613035565b610f2f565b005b34801561046357600080fd5b5061047e6004803603810190610479919061307e565b610fc5565b60405161048b91906134ac565b60405180910390f35b3480156104a057600080fd5b506104a9610fdb565b6040516104b691906137f0565b60405180910390f35b3480156104cb57600080fd5b506104d4610fe1565b6040516104e1919061352e565b60405180910390f35b3480156104f657600080fd5b50610511600480360381019061050c9190612e18565b61106f565b60405161051e91906137f0565b60405180910390f35b34801561053357600080fd5b5061053c611158565b005b34801561054a57600080fd5b506105536111e0565b60405161056091906137f0565b60405180910390f35b34801561057557600080fd5b50610590600480360381019061058b919061307e565b6111e6565b005b34801561059e57600080fd5b506105a761126c565b6040516105b491906134ac565b60405180910390f35b3480156105c957600080fd5b506105e460048036038101906105df919061307e565b611296565b005b3480156105f257600080fd5b506105fb61131c565b604051610608919061352e565b60405180910390f35b34801561061d57600080fd5b506106266113ae565b005b610642600480360381019061063d919061307e565b611456565b005b34801561065057600080fd5b5061066b60048036038101906106669190612f5b565b6114d2565b005b34801561067957600080fd5b50610694600480360381019061068f919061307e565b611653565b005b3480156106a257600080fd5b506106bd60048036038101906106b89190612ed8565b6116eb565b005b3480156106cb57600080fd5b506106e660048036038101906106e1919061307e565b611747565b6040516106f3919061352e565b60405180910390f35b34801561070857600080fd5b506107116117ee565b60405161071e91906137f0565b60405180910390f35b34801561073357600080fd5b5061073c6117f4565b60405161074991906137f0565b60405180910390f35b34801561075e57600080fd5b5061077960048036038101906107749190612e45565b6117fa565b6040516107869190613513565b60405180910390f35b34801561079b57600080fd5b506107b660048036038101906107b19190612e18565b61188e565b005b3480156107c457600080fd5b506107cd611986565b6040516107da9190613513565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806108ae57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061091657507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610926575061092582611999565b5b9050919050565b60606001805461093c90613b60565b80601f016020809104026020016040519081016040528092919081815260200182805461096890613b60565b80156109b55780601f1061098a576101008083540402835291602001916109b5565b820191906000526020600020905b81548152906001019060200180831161099857829003601f168201915b5050505050905090565b60006109ca82611a03565b610a09576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a00906137b0565b60405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610a4f82610fc5565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610ac0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ab7906136f0565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610adf611a10565b73ffffffffffffffffffffffffffffffffffffffff161480610b0e5750610b0d81610b08611a10565b6117fa565b5b610b4d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b44906135f0565b60405180910390fd5b610b58838383611a18565b505050565b60008054905090565b610b71838383611aca565b505050565b6000610b818361106f565b8210610bc2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bb990613550565b60405180910390fd5b6000610bcc610b5d565b905060008060005b83811015610d32576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614610cc657806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610d1e5786841415610d0f578195505050505050610d6e565b8380610d1a90613bc3565b9450505b508080610d2a90613bc3565b915050610bd4565b506040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d6590613770565b60405180910390fd5b92915050565b600a5481565b610d82611a10565b73ffffffffffffffffffffffffffffffffffffffff16610da061126c565b73ffffffffffffffffffffffffffffffffffffffff1614610df6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ded90613650565b60405180910390fd5b80600a8190555050565b610e08611a10565b73ffffffffffffffffffffffffffffffffffffffff16610e2661126c565b73ffffffffffffffffffffffffffffffffffffffff1614610e7c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e7390613650565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050610eba57600080fd5b565b610ed7838383604051806020016040528060008152506116eb565b505050565b6000610ee6610b5d565b8210610f27576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f1e906135b0565b60405180910390fd5b819050919050565b610f37611a10565b73ffffffffffffffffffffffffffffffffffffffff16610f5561126c565b73ffffffffffffffffffffffffffffffffffffffff1614610fab576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fa290613650565b60405180910390fd5b80600e9080519060200190610fc1929190612bf2565b5050565b6000610fd082612083565b600001519050919050565b60095481565b600e8054610fee90613b60565b80601f016020809104026020016040519081016040528092919081815260200182805461101a90613b60565b80156110675780601f1061103c57610100808354040283529160200191611067565b820191906000526020600020905b81548152906001019060200180831161104a57829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156110e0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110d790613610565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b611160611a10565b73ffffffffffffffffffffffffffffffffffffffff1661117e61126c565b73ffffffffffffffffffffffffffffffffffffffff16146111d4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111cb90613650565b60405180910390fd5b6111de6000612286565b565b600c5481565b6111ee611a10565b73ffffffffffffffffffffffffffffffffffffffff1661120c61126c565b73ffffffffffffffffffffffffffffffffffffffff1614611262576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161125990613650565b60405180910390fd5b80600b8190555050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b61129e611a10565b73ffffffffffffffffffffffffffffffffffffffff166112bc61126c565b73ffffffffffffffffffffffffffffffffffffffff1614611312576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161130990613650565b60405180910390fd5b8060098190555050565b60606002805461132b90613b60565b80601f016020809104026020016040519081016040528092919081815260200182805461135790613b60565b80156113a45780601f10611379576101008083540402835291602001916113a4565b820191906000526020600020905b81548152906001019060200180831161138757829003601f168201915b5050505050905090565b6113b6611a10565b73ffffffffffffffffffffffffffffffffffffffff166113d461126c565b73ffffffffffffffffffffffffffffffffffffffff161461142a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161142190613650565b60405180910390fd5b600d60009054906101000a900460ff1615600d60006101000a81548160ff021916908315150217905550565b600d60009054906101000a900460ff1661146f57600080fd5b6000811180156114815750600b548111155b61148a57600080fd5b600a5481611496610b5d565b6114a0919061391b565b11156114ab57600080fd5b806009546114b991906139a2565b3410156114c557600080fd5b6114cf338261234c565b50565b6114da611a10565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611548576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161153f90613690565b60405180910390fd5b8060066000611555611a10565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611602611a10565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516116479190613513565b60405180910390a35050565b600d60009054906101000a900460ff1661166c57600080fd5b60008111801561167e5750600b548111155b61168757600080fd5b600c5481611693610b5d565b61169d919061391b565b11156116de576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116d5906136d0565b60405180910390fd5b6116e8338261234c565b50565b6116f6848484611aca565b6117028484848461236a565b611741576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161173890613710565b60405180910390fd5b50505050565b606061175282611a03565b611791576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161178890613670565b60405180910390fd5b600061179b612501565b905060008151116117bb57604051806020016040528060008152506117e6565b806117c584612593565b6040516020016117d692919061347d565b6040516020818303038152906040525b915050919050565b600b5481565b60075481565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611896611a10565b73ffffffffffffffffffffffffffffffffffffffff166118b461126c565b73ffffffffffffffffffffffffffffffffffffffff161461190a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161190190613650565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561197a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161197190613570565b60405180910390fd5b61198381612286565b50565b600d60009054906101000a900460ff1681565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6000805482109050919050565b600033905090565b826005600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b6000611ad582612083565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff16611afc611a10565b73ffffffffffffffffffffffffffffffffffffffff161480611b585750611b21611a10565b73ffffffffffffffffffffffffffffffffffffffff16611b40846109bf565b73ffffffffffffffffffffffffffffffffffffffff16145b80611b745750611b738260000151611b6e611a10565b6117fa565b5b905080611bb6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bad906136b0565b60405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff1614611c28576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c1f90613630565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611c98576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c8f906135d0565b60405180910390fd5b611ca585858560016126f4565b611cb56000848460000151611a18565b6001600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff16611d2391906139fc565b92506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff1602179055506001600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff16611dc791906138d5565b92506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060405180604001604052808573ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506003600085815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055509050506000600184611ecd919061391b565b9050600073ffffffffffffffffffffffffffffffffffffffff166003600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16141561201357611f4381611a03565b15612012576040518060400160405280846000015173ffffffffffffffffffffffffffffffffffffffff168152602001846020015167ffffffffffffffff168152506003600083815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055509050505b5b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461207b86868660016126fa565b505050505050565b61208b612c78565b61209482611a03565b6120d3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120ca90613590565b60405180910390fd5b60007f000000000000000000000000000000000000000000000000000000000000000a83106121375760017f000000000000000000000000000000000000000000000000000000000000000a8461212a9190613a30565b612134919061391b565b90505b60008390505b818110612245576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461223157809350505050612281565b50808061223d90613b36565b91505061213d565b506040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161227890613790565b60405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b612366828260405180602001604052806000815250612700565b5050565b600061238b8473ffffffffffffffffffffffffffffffffffffffff16612bdf565b156124f4578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026123b4611a10565b8786866040518563ffffffff1660e01b81526004016123d694939291906134c7565b602060405180830381600087803b1580156123f057600080fd5b505af192505050801561242157506040513d601f19601f8201168201806040525081019061241e9190613008565b60015b6124a4573d8060008114612451576040519150601f19603f3d011682016040523d82523d6000602084013e612456565b606091505b5060008151141561249c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161249390613710565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506124f9565b600190505b949350505050565b6060600e805461251090613b60565b80601f016020809104026020016040519081016040528092919081815260200182805461253c90613b60565b80156125895780601f1061255e57610100808354040283529160200191612589565b820191906000526020600020905b81548152906001019060200180831161256c57829003601f168201915b5050505050905090565b606060008214156125db576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506126ef565b600082905060005b6000821461260d5780806125f690613bc3565b915050600a826126069190613971565b91506125e3565b60008167ffffffffffffffff81111561262957612628613cf9565b5b6040519080825280601f01601f19166020018201604052801561265b5781602001600182028036833780820191505090505b5090505b600085146126e8576001826126749190613a30565b9150600a856126839190613c0c565b603061268f919061391b565b60f81b8183815181106126a5576126a4613cca565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856126e19190613971565b945061265f565b8093505050505b919050565b50505050565b50505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612776576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161276d90613750565b60405180910390fd5b61277f81611a03565b156127bf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127b690613730565b60405180910390fd5b7f000000000000000000000000000000000000000000000000000000000000000a831115612822576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612819906137d0565b60405180910390fd5b61282f60008583866126f4565b6000600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206040518060400160405290816000820160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff1681526020016000820160109054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff16815250509050604051806040016040528085836000015161292c91906138d5565b6fffffffffffffffffffffffffffffffff16815260200185836020015161295391906138d5565b6fffffffffffffffffffffffffffffffff16815250600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008201518160000160006101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060208201518160000160106101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555090505060405180604001604052808673ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506003600084815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550905050600082905060005b85811015612bc257818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612b62600088848861236a565b612ba1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b9890613710565b60405180910390fd5b8180612bac90613bc3565b9250508080612bba90613bc3565b915050612af1565b5080600081905550612bd760008785886126fa565b505050505050565b600080823b905060008111915050919050565b828054612bfe90613b60565b90600052602060002090601f016020900481019282612c205760008555612c67565b82601f10612c3957805160ff1916838001178555612c67565b82800160010185558215612c67579182015b82811115612c66578251825591602001919060010190612c4b565b5b509050612c749190612cb2565b5090565b6040518060400160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681525090565b5b80821115612ccb576000816000905550600101612cb3565b5090565b6000612ce2612cdd84613830565b61380b565b905082815260208101848484011115612cfe57612cfd613d2d565b5b612d09848285613af4565b509392505050565b6000612d24612d1f84613861565b61380b565b905082815260208101848484011115612d4057612d3f613d2d565b5b612d4b848285613af4565b509392505050565b600081359050612d628161437f565b92915050565b600081359050612d7781614396565b92915050565b600081359050612d8c816143ad565b92915050565b600081519050612da1816143ad565b92915050565b600082601f830112612dbc57612dbb613d28565b5b8135612dcc848260208601612ccf565b91505092915050565b600082601f830112612dea57612de9613d28565b5b8135612dfa848260208601612d11565b91505092915050565b600081359050612e12816143c4565b92915050565b600060208284031215612e2e57612e2d613d37565b5b6000612e3c84828501612d53565b91505092915050565b60008060408385031215612e5c57612e5b613d37565b5b6000612e6a85828601612d53565b9250506020612e7b85828601612d53565b9150509250929050565b600080600060608486031215612e9e57612e9d613d37565b5b6000612eac86828701612d53565b9350506020612ebd86828701612d53565b9250506040612ece86828701612e03565b9150509250925092565b60008060008060808587031215612ef257612ef1613d37565b5b6000612f0087828801612d53565b9450506020612f1187828801612d53565b9350506040612f2287828801612e03565b925050606085013567ffffffffffffffff811115612f4357612f42613d32565b5b612f4f87828801612da7565b91505092959194509250565b60008060408385031215612f7257612f71613d37565b5b6000612f8085828601612d53565b9250506020612f9185828601612d68565b9150509250929050565b60008060408385031215612fb257612fb1613d37565b5b6000612fc085828601612d53565b9250506020612fd185828601612e03565b9150509250929050565b600060208284031215612ff157612ff0613d37565b5b6000612fff84828501612d7d565b91505092915050565b60006020828403121561301e5761301d613d37565b5b600061302c84828501612d92565b91505092915050565b60006020828403121561304b5761304a613d37565b5b600082013567ffffffffffffffff81111561306957613068613d32565b5b61307584828501612dd5565b91505092915050565b60006020828403121561309457613093613d37565b5b60006130a284828501612e03565b91505092915050565b6130b481613a64565b82525050565b6130c381613a76565b82525050565b60006130d482613892565b6130de81856138a8565b93506130ee818560208601613b03565b6130f781613d3c565b840191505092915050565b600061310d8261389d565b61311781856138b9565b9350613127818560208601613b03565b61313081613d3c565b840191505092915050565b60006131468261389d565b61315081856138ca565b9350613160818560208601613b03565b80840191505092915050565b60006131796022836138b9565b915061318482613d4d565b604082019050919050565b600061319c6026836138b9565b91506131a782613d9c565b604082019050919050565b60006131bf602a836138b9565b91506131ca82613deb565b604082019050919050565b60006131e26023836138b9565b91506131ed82613e3a565b604082019050919050565b60006132056025836138b9565b915061321082613e89565b604082019050919050565b60006132286039836138b9565b915061323382613ed8565b604082019050919050565b600061324b602b836138b9565b915061325682613f27565b604082019050919050565b600061326e6026836138b9565b915061327982613f76565b604082019050919050565b60006132916005836138ca565b915061329c82613fc5565b600582019050919050565b60006132b46020836138b9565b91506132bf82613fee565b602082019050919050565b60006132d7602f836138b9565b91506132e282614017565b604082019050919050565b60006132fa601a836138b9565b915061330582614066565b602082019050919050565b600061331d6032836138b9565b91506133288261408f565b604082019050919050565b60006133406021836138b9565b915061334b826140de565b604082019050919050565b60006133636022836138b9565b915061336e8261412d565b604082019050919050565b60006133866033836138b9565b91506133918261417c565b604082019050919050565b60006133a9601d836138b9565b91506133b4826141cb565b602082019050919050565b60006133cc6021836138b9565b91506133d7826141f4565b604082019050919050565b60006133ef602e836138b9565b91506133fa82614243565b604082019050919050565b6000613412602f836138b9565b915061341d82614292565b604082019050919050565b6000613435602d836138b9565b9150613440826142e1565b604082019050919050565b60006134586022836138b9565b915061346382614330565b604082019050919050565b61347781613aea565b82525050565b6000613489828561313b565b9150613495828461313b565b91506134a082613284565b91508190509392505050565b60006020820190506134c160008301846130ab565b92915050565b60006080820190506134dc60008301876130ab565b6134e960208301866130ab565b6134f6604083018561346e565b818103606083015261350881846130c9565b905095945050505050565b600060208201905061352860008301846130ba565b92915050565b600060208201905081810360008301526135488184613102565b905092915050565b600060208201905081810360008301526135698161316c565b9050919050565b600060208201905081810360008301526135898161318f565b9050919050565b600060208201905081810360008301526135a9816131b2565b9050919050565b600060208201905081810360008301526135c9816131d5565b9050919050565b600060208201905081810360008301526135e9816131f8565b9050919050565b600060208201905081810360008301526136098161321b565b9050919050565b600060208201905081810360008301526136298161323e565b9050919050565b6000602082019050818103600083015261364981613261565b9050919050565b60006020820190508181036000830152613669816132a7565b9050919050565b60006020820190508181036000830152613689816132ca565b9050919050565b600060208201905081810360008301526136a9816132ed565b9050919050565b600060208201905081810360008301526136c981613310565b9050919050565b600060208201905081810360008301526136e981613333565b9050919050565b6000602082019050818103600083015261370981613356565b9050919050565b6000602082019050818103600083015261372981613379565b9050919050565b600060208201905081810360008301526137498161339c565b9050919050565b60006020820190508181036000830152613769816133bf565b9050919050565b60006020820190508181036000830152613789816133e2565b9050919050565b600060208201905081810360008301526137a981613405565b9050919050565b600060208201905081810360008301526137c981613428565b9050919050565b600060208201905081810360008301526137e98161344b565b9050919050565b6000602082019050613805600083018461346e565b92915050565b6000613815613826565b90506138218282613b92565b919050565b6000604051905090565b600067ffffffffffffffff82111561384b5761384a613cf9565b5b61385482613d3c565b9050602081019050919050565b600067ffffffffffffffff82111561387c5761387b613cf9565b5b61388582613d3c565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b60006138e082613aae565b91506138eb83613aae565b9250826fffffffffffffffffffffffffffffffff038211156139105761390f613c3d565b5b828201905092915050565b600061392682613aea565b915061393183613aea565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561396657613965613c3d565b5b828201905092915050565b600061397c82613aea565b915061398783613aea565b92508261399757613996613c6c565b5b828204905092915050565b60006139ad82613aea565b91506139b883613aea565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156139f1576139f0613c3d565b5b828202905092915050565b6000613a0782613aae565b9150613a1283613aae565b925082821015613a2557613a24613c3d565b5b828203905092915050565b6000613a3b82613aea565b9150613a4683613aea565b925082821015613a5957613a58613c3d565b5b828203905092915050565b6000613a6f82613aca565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b60006fffffffffffffffffffffffffffffffff82169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015613b21578082015181840152602081019050613b06565b83811115613b30576000848401525b50505050565b6000613b4182613aea565b91506000821415613b5557613b54613c3d565b5b600182039050919050565b60006002820490506001821680613b7857607f821691505b60208210811415613b8c57613b8b613c9b565b5b50919050565b613b9b82613d3c565b810181811067ffffffffffffffff82111715613bba57613bb9613cf9565b5b80604052505050565b6000613bce82613aea565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613c0157613c00613c3d565b5b600182019050919050565b6000613c1782613aea565b9150613c2283613aea565b925082613c3257613c31613c6c565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f455243373231413a206f776e657220696e646578206f7574206f6620626f756e60008201527f6473000000000000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a206f776e657220717565727920666f72206e6f6e6578697360008201527f74656e7420746f6b656e00000000000000000000000000000000000000000000602082015250565b7f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f7560008201527f6e64730000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000602082015250565b7f455243373231413a2062616c616e636520717565727920666f7220746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e736665722066726f6d20696e636f727265637460008201527f206f776e65720000000000000000000000000000000000000000000000000000602082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f455243373231413a20617070726f766520746f2063616c6c6572000000000000600082015250565b7f455243373231413a207472616e736665722063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b7f546865726520617265206e6f206d6f72652066726565206d696e7473206c656660008201527f7400000000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60008201527f6572000000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e7366657220746f206e6f6e204552433732315260008201527f6563656976657220696d706c656d656e74657200000000000000000000000000602082015250565b7f455243373231413a20746f6b656e20616c7265616479206d696e746564000000600082015250565b7f455243373231413a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060008201527f6f776e657220627920696e646578000000000000000000000000000000000000602082015250565b7f455243373231413a20756e61626c6520746f2064657465726d696e652074686560008201527f206f776e6572206f6620746f6b656e0000000000000000000000000000000000602082015250565b7f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560008201527f78697374656e7420746f6b656e00000000000000000000000000000000000000602082015250565b7f455243373231413a207175616e7469747920746f206d696e7420746f6f20686960008201527f6768000000000000000000000000000000000000000000000000000000000000602082015250565b61438881613a64565b811461439357600080fd5b50565b61439f81613a76565b81146143aa57600080fd5b50565b6143b681613a82565b81146143c157600080fd5b50565b6143cd81613aea565b81146143d857600080fd5b5056fea2646970667358221220e8e9a32d9bf0a1210f0b0f2c0a7fd9573dc714b547243463123733e4912fadba64736f6c63430008070033

Deployed Bytecode Sourcemap

39617:1711:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24744:370;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26470:94;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28004:204;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27567:379;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;23305:94;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28854:142;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;23936:744;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39713:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40993:96;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;41213:112;;;;;;;;;;;;;:::i;:::-;;29059:157;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;23468:177;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40684:102;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;26293:118;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39663:43;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39868:26;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25170:211;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38736:103;;;;;;;;;;;;;:::i;:::-;;39788:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40894:91;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;38085:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40794:92;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;26625:98;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40589:87;;;;;;;;;;;;;:::i;:::-;;39986:304;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;28272:274;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;40298:283;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;29279:311;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;26786:403;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39752:29;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33694:43;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28609:186;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38994:238;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;39828:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24744:370;24871:4;24916:25;24901:40;;;:11;:40;;;;:99;;;;24967:33;24952:48;;;:11;:48;;;;24901:99;:160;;;;25026:35;25011:50;;;:11;:50;;;;24901:160;:207;;;;25072:36;25096:11;25072:23;:36::i;:::-;24901:207;24887:221;;24744:370;;;:::o;26470:94::-;26524:13;26553:5;26546:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26470:94;:::o;28004:204::-;28072:7;28096:16;28104:7;28096;:16::i;:::-;28088:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;28178:15;:24;28194:7;28178:24;;;;;;;;;;;;;;;;;;;;;28171:31;;28004:204;;;:::o;27567:379::-;27636:13;27652:24;27668:7;27652:15;:24::i;:::-;27636:40;;27697:5;27691:11;;:2;:11;;;;27683:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;27782:5;27766:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;27791:37;27808:5;27815:12;:10;:12::i;:::-;27791:16;:37::i;:::-;27766:62;27750:153;;;;;;;;;;;;:::i;:::-;;;;;;;;;27912:28;27921:2;27925:7;27934:5;27912:8;:28::i;:::-;27629:317;27567:379;;:::o;23305:94::-;23358:7;23381:12;;23374:19;;23305:94;:::o;28854:142::-;28962:28;28972:4;28978:2;28982:7;28962:9;:28::i;:::-;28854:142;;;:::o;23936:744::-;24045:7;24080:16;24090:5;24080:9;:16::i;:::-;24072:5;:24;24064:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;24142:22;24167:13;:11;:13::i;:::-;24142:38;;24187:19;24217:25;24267:9;24262:350;24286:14;24282:1;:18;24262:350;;;24316:31;24350:11;:14;24362:1;24350:14;;;;;;;;;;;24316:48;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24403:1;24377:28;;:9;:14;;;:28;;;24373:89;;24438:9;:14;;;24418:34;;24373:89;24495:5;24474:26;;:17;:26;;;24470:135;;;24532:5;24517:11;:20;24513:59;;;24559:1;24552:8;;;;;;;;;24513:59;24582:13;;;;;:::i;:::-;;;;24470:135;24307:305;24302:3;;;;;:::i;:::-;;;;24262:350;;;;24618:56;;;;;;;;;;:::i;:::-;;;;;;;;23936:744;;;;;:::o;39713:32::-;;;;:::o;40993:96::-;38316:12;:10;:12::i;:::-;38305:23;;:7;:5;:7::i;:::-;:23;;;38297:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;41072:9:::1;41059:10;:22;;;;40993:96:::0;:::o;41213:112::-;38316:12;:10;:12::i;:::-;38305:23;;:7;:5;:7::i;:::-;:23;;;38297:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;41277:10:::1;41269:24;;:47;41294:21;41269:47;;;;;;;;;;;;;;;;;;;;;;;41261:56;;;::::0;::::1;;41213:112::o:0;29059:157::-;29171:39;29188:4;29194:2;29198:7;29171:39;;;;;;;;;;;;:16;:39::i;:::-;29059:157;;;:::o;23468:177::-;23535:7;23567:13;:11;:13::i;:::-;23559:5;:21;23551:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;23634:5;23627:12;;23468:177;;;:::o;40684:102::-;38316:12;:10;:12::i;:::-;38305:23;;:7;:5;:7::i;:::-;:23;;;38297:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;40768:10:::1;40758:7;:20;;;;;;;;;;;;:::i;:::-;;40684:102:::0;:::o;26293:118::-;26357:7;26380:20;26392:7;26380:11;:20::i;:::-;:25;;;26373:32;;26293:118;;;:::o;39663:43::-;;;;:::o;39868:26::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;25170:211::-;25234:7;25275:1;25258:19;;:5;:19;;;;25250:75;;;;;;;;;;;;:::i;:::-;;;;;;;;;25347:12;:19;25360:5;25347:19;;;;;;;;;;;;;;;:27;;;;;;;;;;;;25339:36;;25332:43;;25170:211;;;:::o;38736:103::-;38316:12;:10;:12::i;:::-;38305:23;;:7;:5;:7::i;:::-;:23;;;38297:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;38801:30:::1;38828:1;38801:18;:30::i;:::-;38736:103::o:0;39788:31::-;;;;:::o;40894:91::-;38316:12;:10;:12::i;:::-;38305:23;;:7;:5;:7::i;:::-;:23;;;38297:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;40971:6:::1;40959:9;:18;;;;40894:91:::0;:::o;38085:87::-;38131:7;38158:6;;;;;;;;;;;38151:13;;38085:87;:::o;40794:92::-;38316:12;:10;:12::i;:::-;38305:23;;:7;:5;:7::i;:::-;:23;;;38297:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;40870:8:::1;40858:9;:20;;;;40794:92:::0;:::o;26625:98::-;26681:13;26710:7;26703:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26625:98;:::o;40589:87::-;38316:12;:10;:12::i;:::-;38305:23;;:7;:5;:7::i;:::-;:23;;;38297:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;40657:11:::1;;;;;;;;;;;40656:12;40642:11;;:26;;;;;;;;;;;;;;;;;;40589:87::o:0;39986:304::-;40053:11;;;;;;;;;;;40045:20;;;;;;40096:1;40084:9;:13;:39;;;;;40114:9;;40101;:22;;40084:39;40076:48;;;;;;40172:10;;40159:9;40143:13;:11;:13::i;:::-;:25;;;;:::i;:::-;:39;;40135:48;;;;;;40227:9;40215;;:21;;;;:::i;:::-;40202:9;:34;;40194:43;;;;;;40250:32;40260:10;40272:9;40250;:32::i;:::-;39986:304;:::o;28272:274::-;28375:12;:10;:12::i;:::-;28363:24;;:8;:24;;;;28355:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;28472:8;28427:18;:32;28446:12;:10;:12::i;:::-;28427:32;;;;;;;;;;;;;;;:42;28460:8;28427:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;28521:8;28492:48;;28507:12;:10;:12::i;:::-;28492:48;;;28531:8;28492:48;;;;;;:::i;:::-;;;;;;;;28272:274;;:::o;40298:283::-;40361:11;;;;;;;;;;;40353:20;;;;;;40404:1;40392:9;:13;:39;;;;;40422:9;;40409;:22;;40392:39;40384:48;;;;;;40480:10;;40467:9;40451:13;:11;:13::i;:::-;:25;;;;:::i;:::-;:39;;40443:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;40541:32;40551:10;40563:9;40541;:32::i;:::-;40298:283;:::o;29279:311::-;29416:28;29426:4;29432:2;29436:7;29416:9;:28::i;:::-;29467:48;29490:4;29496:2;29500:7;29509:5;29467:22;:48::i;:::-;29451:133;;;;;;;;;;;;:::i;:::-;;;;;;;;;29279:311;;;;:::o;26786:403::-;26884:13;26925:16;26933:7;26925;:16::i;:::-;26909:97;;;;;;;;;;;;:::i;:::-;;;;;;;;;27015:21;27039:10;:8;:10::i;:::-;27015:34;;27094:1;27076:7;27070:21;:25;:113;;;;;;;;;;;;;;;;;27131:7;27140:18;:7;:16;:18::i;:::-;27114:54;;;;;;;;;:::i;:::-;;;;;;;;;;;;;27070:113;27056:127;;;26786:403;;;:::o;39752:29::-;;;;:::o;33694:43::-;;;;:::o;28609:186::-;28731:4;28754:18;:25;28773:5;28754:25;;;;;;;;;;;;;;;:35;28780:8;28754:35;;;;;;;;;;;;;;;;;;;;;;;;;28747:42;;28609:186;;;;:::o;38994:238::-;38316:12;:10;:12::i;:::-;38305:23;;:7;:5;:7::i;:::-;:23;;;38297:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;39117:1:::1;39097:22;;:8;:22;;;;39075:110;;;;;;;;;;;;:::i;:::-;;;;;;;;;39196:28;39215:8;39196:18;:28::i;:::-;38994:238:::0;:::o;39828:31::-;;;;;;;;;;;;;:::o;8316:207::-;8446:4;8490:25;8475:40;;;:11;:40;;;;8468:47;;8316:207;;;:::o;29829:105::-;29886:4;29916:12;;29906:7;:22;29899:29;;29829:105;;;:::o;17715:98::-;17768:7;17795:10;17788:17;;17715:98;:::o;33516:172::-;33640:2;33613:15;:24;33629:7;33613:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;33674:7;33670:2;33654:28;;33663:5;33654:28;;;;;;;;;;;;33516:172;;;:::o;31881:1529::-;31978:35;32016:20;32028:7;32016:11;:20::i;:::-;31978:58;;32045:22;32087:13;:18;;;32071:34;;:12;:10;:12::i;:::-;:34;;;:81;;;;32140:12;:10;:12::i;:::-;32116:36;;:20;32128:7;32116:11;:20::i;:::-;:36;;;32071:81;:142;;;;32163:50;32180:13;:18;;;32200:12;:10;:12::i;:::-;32163:16;:50::i;:::-;32071:142;32045:169;;32239:17;32223:101;;;;;;;;;;;;:::i;:::-;;;;;;;;;32371:4;32349:26;;:13;:18;;;:26;;;32333:98;;;;;;;;;;;;:::i;:::-;;;;;;;;;32460:1;32446:16;;:2;:16;;;;32438:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;32513:43;32535:4;32541:2;32545:7;32554:1;32513:21;:43::i;:::-;32613:49;32630:1;32634:7;32643:13;:18;;;32613:8;:49::i;:::-;32701:1;32671:12;:18;32684:4;32671:18;;;;;;;;;;;;;;;:26;;;:31;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;32737:1;32709:12;:16;32722:2;32709:16;;;;;;;;;;;;;;;:24;;;:29;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;32768:43;;;;;;;;32783:2;32768:43;;;;;;32794:15;32768:43;;;;;32745:11;:20;32757:7;32745:20;;;;;;;;;;;:66;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33039:19;33071:1;33061:7;:11;;;;:::i;:::-;33039:33;;33124:1;33083:43;;:11;:24;33095:11;33083:24;;;;;;;;;;;:29;;;;;;;;;;;;:43;;;33079:236;;;33141:20;33149:11;33141:7;:20::i;:::-;33137:171;;;33201:97;;;;;;;;33228:13;:18;;;33201:97;;;;;;33259:13;:28;;;33201:97;;;;;33174:11;:24;33186:11;33174:24;;;;;;;;;;;:124;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33137:171;33079:236;33347:7;33343:2;33328:27;;33337:4;33328:27;;;;;;;;;;;;33362:42;33383:4;33389:2;33393:7;33402:1;33362:20;:42::i;:::-;31971:1439;;;31881:1529;;;:::o;25633:606::-;25709:21;;:::i;:::-;25750:16;25758:7;25750;:16::i;:::-;25742:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;25822:26;25870:12;25859:7;:23;25855:93;;25939:1;25924:12;25914:7;:22;;;;:::i;:::-;:26;;;;:::i;:::-;25893:47;;25855:93;25961:12;25976:7;25961:22;;25956:212;25993:18;25985:4;:26;25956:212;;26030:31;26064:11;:17;26076:4;26064:17;;;;;;;;;;;26030:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26120:1;26094:28;;:9;:14;;;:28;;;26090:71;;26142:9;26135:16;;;;;;;26090:71;26021:147;26013:6;;;;;:::i;:::-;;;;25956:212;;;;26176:57;;;;;;;;;;:::i;:::-;;;;;;;;25633:606;;;;:::o;39392:191::-;39466:16;39485:6;;;;;;;;;;;39466:25;;39511:8;39502:6;;:17;;;;;;;;;;;;;;;;;;39566:8;39535:40;;39556:8;39535:40;;;;;;;;;;;;39455:128;39392:191;:::o;29940:98::-;30005:27;30015:2;30019:8;30005:27;;;;;;;;;;;;:9;:27::i;:::-;29940:98;;:::o;35231:690::-;35368:4;35385:15;:2;:13;;;:15::i;:::-;35381:535;;;35440:2;35424:36;;;35461:12;:10;:12::i;:::-;35475:4;35481:7;35490:5;35424:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;35411:464;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35672:1;35655:6;:13;:18;35651:215;;;35688:61;;;;;;;;;;:::i;:::-;;;;;;;;35651:215;35834:6;35828:13;35819:6;35815:2;35811:15;35804:38;35411:464;35556:45;;;35546:55;;;:6;:55;;;;35539:62;;;;;35381:535;35904:4;35897:11;;35231:690;;;;;;;:::o;41097:108::-;41157:13;41190:7;41183:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41097:108;:::o;18238:723::-;18294:13;18524:1;18515:5;:10;18511:53;;;18542:10;;;;;;;;;;;;;;;;;;;;;18511:53;18574:12;18589:5;18574:20;;18605:14;18630:78;18645:1;18637:4;:9;18630:78;;18663:8;;;;;:::i;:::-;;;;18694:2;18686:10;;;;;:::i;:::-;;;18630:78;;;18718:19;18750:6;18740:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18718:39;;18768:154;18784:1;18775:5;:10;18768:154;;18812:1;18802:11;;;;;:::i;:::-;;;18879:2;18871:5;:10;;;;:::i;:::-;18858:2;:24;;;;:::i;:::-;18845:39;;18828:6;18835;18828:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;18908:2;18899:11;;;;;:::i;:::-;;;18768:154;;;18946:6;18932:21;;;;;18238:723;;;;:::o;36383:141::-;;;;;:::o;36910:140::-;;;;;:::o;30377:1272::-;30482:20;30505:12;;30482:35;;30546:1;30532:16;;:2;:16;;;;30524:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;30723:21;30731:12;30723:7;:21::i;:::-;30722:22;30714:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;30805:12;30793:8;:24;;30785:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;30865:61;30895:1;30899:2;30903:12;30917:8;30865:21;:61::i;:::-;30935:30;30968:12;:16;30981:2;30968:16;;;;;;;;;;;;;;;30935:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31010:119;;;;;;;;31060:8;31030:11;:19;;;:39;;;;:::i;:::-;31010:119;;;;;;31113:8;31078:11;:24;;;:44;;;;:::i;:::-;31010:119;;;;;30991:12;:16;31004:2;30991:16;;;;;;;;;;;;;;;:138;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31164:43;;;;;;;;31179:2;31164:43;;;;;;31190:15;31164:43;;;;;31136:11;:25;31148:12;31136:25;;;;;;;;;;;:71;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31216:20;31239:12;31216:35;;31265:9;31260:281;31284:8;31280:1;:12;31260:281;;;31338:12;31334:2;31313:38;;31330:1;31313:38;;;;;;;;;;;;31378:59;31409:1;31413:2;31417:12;31431:5;31378:22;:59::i;:::-;31360:150;;;;;;;;;;;;:::i;:::-;;;;;;;;;31519:14;;;;;:::i;:::-;;;;31294:3;;;;;:::i;:::-;;;;31260:281;;;;31564:12;31549;:27;;;;31583:60;31612:1;31616:2;31620:12;31634:8;31583:20;:60::i;:::-;30475:1174;;;30377:1272;;;:::o;9294:387::-;9354:4;9562:12;9629:7;9617:20;9609:28;;9672:1;9665:4;:8;9658:15;;;9294:387;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7: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:118::-;7245:24;7263:5;7245:24;:::i;:::-;7240:3;7233:37;7158:118;;:::o;7282:109::-;7363:21;7378:5;7363:21;:::i;:::-;7358:3;7351:34;7282:109;;:::o;7397:360::-;7483:3;7511:38;7543:5;7511:38;:::i;:::-;7565:70;7628:6;7623:3;7565:70;:::i;:::-;7558:77;;7644:52;7689:6;7684:3;7677:4;7670:5;7666:16;7644:52;:::i;:::-;7721:29;7743:6;7721:29;:::i;:::-;7716:3;7712:39;7705:46;;7487:270;7397:360;;;;:::o;7763:364::-;7851:3;7879:39;7912:5;7879:39;:::i;:::-;7934:71;7998:6;7993:3;7934:71;:::i;:::-;7927:78;;8014:52;8059:6;8054:3;8047:4;8040:5;8036:16;8014:52;:::i;:::-;8091:29;8113:6;8091:29;:::i;:::-;8086:3;8082:39;8075:46;;7855:272;7763:364;;;;:::o;8133:377::-;8239:3;8267:39;8300:5;8267:39;:::i;:::-;8322:89;8404:6;8399:3;8322:89;:::i;:::-;8315:96;;8420:52;8465:6;8460:3;8453:4;8446:5;8442:16;8420:52;:::i;:::-;8497:6;8492:3;8488:16;8481:23;;8243:267;8133:377;;;;:::o;8516:366::-;8658:3;8679:67;8743:2;8738:3;8679:67;:::i;:::-;8672:74;;8755:93;8844:3;8755:93;:::i;:::-;8873:2;8868:3;8864:12;8857:19;;8516:366;;;:::o;8888:::-;9030:3;9051:67;9115:2;9110:3;9051:67;:::i;:::-;9044:74;;9127:93;9216:3;9127:93;:::i;:::-;9245:2;9240:3;9236:12;9229:19;;8888:366;;;:::o;9260:::-;9402:3;9423:67;9487:2;9482:3;9423:67;:::i;:::-;9416:74;;9499:93;9588:3;9499:93;:::i;:::-;9617:2;9612:3;9608:12;9601:19;;9260:366;;;:::o;9632:::-;9774:3;9795:67;9859:2;9854:3;9795:67;:::i;:::-;9788:74;;9871:93;9960:3;9871:93;:::i;:::-;9989:2;9984:3;9980:12;9973:19;;9632:366;;;:::o;10004:::-;10146:3;10167:67;10231:2;10226:3;10167:67;:::i;:::-;10160:74;;10243:93;10332:3;10243:93;:::i;:::-;10361:2;10356:3;10352:12;10345:19;;10004:366;;;:::o;10376:::-;10518:3;10539:67;10603:2;10598:3;10539:67;:::i;:::-;10532:74;;10615:93;10704:3;10615:93;:::i;:::-;10733:2;10728:3;10724:12;10717:19;;10376:366;;;:::o;10748:::-;10890:3;10911:67;10975:2;10970:3;10911:67;:::i;:::-;10904:74;;10987:93;11076:3;10987:93;:::i;:::-;11105:2;11100:3;11096:12;11089:19;;10748:366;;;:::o;11120:::-;11262:3;11283:67;11347:2;11342:3;11283:67;:::i;:::-;11276:74;;11359:93;11448:3;11359:93;:::i;:::-;11477:2;11472:3;11468:12;11461:19;;11120:366;;;:::o;11492:400::-;11652:3;11673:84;11755:1;11750:3;11673:84;:::i;:::-;11666:91;;11766:93;11855:3;11766:93;:::i;:::-;11884:1;11879:3;11875:11;11868:18;;11492:400;;;:::o;11898:366::-;12040:3;12061:67;12125:2;12120:3;12061:67;:::i;:::-;12054:74;;12137:93;12226:3;12137:93;:::i;:::-;12255:2;12250:3;12246:12;12239:19;;11898:366;;;:::o;12270:::-;12412:3;12433:67;12497:2;12492:3;12433:67;:::i;:::-;12426:74;;12509:93;12598:3;12509:93;:::i;:::-;12627:2;12622:3;12618:12;12611:19;;12270:366;;;:::o;12642:::-;12784:3;12805:67;12869:2;12864:3;12805:67;:::i;:::-;12798:74;;12881:93;12970:3;12881:93;:::i;:::-;12999:2;12994:3;12990:12;12983:19;;12642:366;;;:::o;13014:::-;13156:3;13177:67;13241:2;13236:3;13177:67;:::i;:::-;13170:74;;13253:93;13342:3;13253:93;:::i;:::-;13371:2;13366:3;13362:12;13355:19;;13014:366;;;:::o;13386:::-;13528:3;13549:67;13613:2;13608:3;13549:67;:::i;:::-;13542:74;;13625:93;13714:3;13625:93;:::i;:::-;13743:2;13738:3;13734:12;13727:19;;13386:366;;;:::o;13758:::-;13900:3;13921:67;13985:2;13980:3;13921:67;:::i;:::-;13914:74;;13997:93;14086:3;13997:93;:::i;:::-;14115:2;14110:3;14106:12;14099:19;;13758:366;;;:::o;14130:::-;14272:3;14293:67;14357:2;14352:3;14293:67;:::i;:::-;14286:74;;14369:93;14458:3;14369:93;:::i;:::-;14487:2;14482:3;14478:12;14471:19;;14130:366;;;:::o;14502:::-;14644:3;14665:67;14729:2;14724:3;14665:67;:::i;:::-;14658:74;;14741:93;14830:3;14741:93;:::i;:::-;14859:2;14854:3;14850:12;14843:19;;14502:366;;;:::o;14874:::-;15016:3;15037:67;15101:2;15096:3;15037:67;:::i;:::-;15030:74;;15113:93;15202:3;15113:93;:::i;:::-;15231:2;15226:3;15222:12;15215:19;;14874:366;;;:::o;15246:::-;15388:3;15409:67;15473:2;15468:3;15409:67;:::i;:::-;15402:74;;15485:93;15574:3;15485:93;:::i;:::-;15603:2;15598:3;15594:12;15587:19;;15246:366;;;:::o;15618:::-;15760:3;15781:67;15845:2;15840:3;15781:67;:::i;:::-;15774:74;;15857:93;15946:3;15857:93;:::i;:::-;15975:2;15970:3;15966:12;15959:19;;15618:366;;;:::o;15990:::-;16132:3;16153:67;16217:2;16212:3;16153:67;:::i;:::-;16146:74;;16229:93;16318:3;16229:93;:::i;:::-;16347:2;16342:3;16338:12;16331:19;;15990:366;;;:::o;16362:::-;16504:3;16525:67;16589:2;16584:3;16525:67;:::i;:::-;16518:74;;16601:93;16690:3;16601:93;:::i;:::-;16719:2;16714:3;16710:12;16703:19;;16362:366;;;:::o;16734:118::-;16821:24;16839:5;16821:24;:::i;:::-;16816:3;16809:37;16734:118;;:::o;16858:701::-;17139:3;17161:95;17252:3;17243:6;17161:95;:::i;:::-;17154:102;;17273:95;17364:3;17355:6;17273:95;:::i;:::-;17266:102;;17385:148;17529:3;17385:148;:::i;:::-;17378:155;;17550:3;17543:10;;16858:701;;;;;:::o;17565:222::-;17658:4;17696:2;17685:9;17681:18;17673:26;;17709:71;17777:1;17766:9;17762:17;17753:6;17709:71;:::i;:::-;17565:222;;;;:::o;17793:640::-;17988:4;18026:3;18015:9;18011:19;18003:27;;18040:71;18108:1;18097:9;18093:17;18084:6;18040:71;:::i;:::-;18121:72;18189:2;18178:9;18174:18;18165:6;18121:72;:::i;:::-;18203;18271:2;18260:9;18256:18;18247:6;18203:72;:::i;:::-;18322:9;18316:4;18312:20;18307:2;18296:9;18292:18;18285:48;18350:76;18421:4;18412:6;18350:76;:::i;:::-;18342:84;;17793:640;;;;;;;:::o;18439:210::-;18526:4;18564:2;18553:9;18549:18;18541:26;;18577:65;18639:1;18628:9;18624:17;18615:6;18577:65;:::i;:::-;18439:210;;;;:::o;18655:313::-;18768:4;18806:2;18795:9;18791:18;18783:26;;18855:9;18849:4;18845:20;18841:1;18830:9;18826:17;18819:47;18883:78;18956:4;18947:6;18883:78;:::i;:::-;18875:86;;18655:313;;;;:::o;18974:419::-;19140:4;19178:2;19167:9;19163:18;19155:26;;19227:9;19221:4;19217:20;19213:1;19202:9;19198:17;19191:47;19255:131;19381:4;19255:131;:::i;:::-;19247:139;;18974:419;;;:::o;19399:::-;19565:4;19603:2;19592:9;19588:18;19580:26;;19652:9;19646:4;19642:20;19638:1;19627:9;19623:17;19616:47;19680:131;19806:4;19680:131;:::i;:::-;19672:139;;19399:419;;;:::o;19824:::-;19990:4;20028:2;20017:9;20013:18;20005:26;;20077:9;20071:4;20067:20;20063:1;20052:9;20048:17;20041:47;20105:131;20231:4;20105:131;:::i;:::-;20097:139;;19824:419;;;:::o;20249:::-;20415:4;20453:2;20442:9;20438:18;20430:26;;20502:9;20496:4;20492:20;20488:1;20477:9;20473:17;20466:47;20530:131;20656:4;20530:131;:::i;:::-;20522:139;;20249:419;;;:::o;20674:::-;20840:4;20878:2;20867:9;20863:18;20855:26;;20927:9;20921:4;20917:20;20913:1;20902:9;20898:17;20891:47;20955:131;21081:4;20955:131;:::i;:::-;20947:139;;20674:419;;;:::o;21099:::-;21265:4;21303:2;21292:9;21288:18;21280:26;;21352:9;21346:4;21342:20;21338:1;21327:9;21323:17;21316:47;21380:131;21506:4;21380:131;:::i;:::-;21372:139;;21099:419;;;:::o;21524:::-;21690:4;21728:2;21717:9;21713:18;21705:26;;21777:9;21771:4;21767:20;21763:1;21752:9;21748:17;21741:47;21805:131;21931:4;21805:131;:::i;:::-;21797:139;;21524:419;;;:::o;21949:::-;22115:4;22153:2;22142:9;22138:18;22130:26;;22202:9;22196:4;22192:20;22188:1;22177:9;22173:17;22166:47;22230:131;22356:4;22230:131;:::i;:::-;22222:139;;21949:419;;;:::o;22374:::-;22540:4;22578:2;22567:9;22563:18;22555:26;;22627:9;22621:4;22617:20;22613:1;22602:9;22598:17;22591:47;22655:131;22781:4;22655:131;:::i;:::-;22647:139;;22374:419;;;:::o;22799:::-;22965:4;23003:2;22992:9;22988:18;22980:26;;23052:9;23046:4;23042:20;23038:1;23027:9;23023:17;23016:47;23080:131;23206:4;23080:131;:::i;:::-;23072:139;;22799:419;;;:::o;23224:::-;23390:4;23428:2;23417:9;23413:18;23405:26;;23477:9;23471:4;23467:20;23463:1;23452:9;23448:17;23441:47;23505:131;23631:4;23505:131;:::i;:::-;23497:139;;23224:419;;;:::o;23649:::-;23815:4;23853:2;23842:9;23838:18;23830:26;;23902:9;23896:4;23892:20;23888:1;23877:9;23873:17;23866:47;23930:131;24056:4;23930:131;:::i;:::-;23922:139;;23649:419;;;:::o;24074:::-;24240:4;24278:2;24267:9;24263:18;24255:26;;24327:9;24321:4;24317:20;24313:1;24302:9;24298:17;24291:47;24355:131;24481:4;24355:131;:::i;:::-;24347:139;;24074:419;;;:::o;24499:::-;24665:4;24703:2;24692:9;24688:18;24680:26;;24752:9;24746:4;24742:20;24738:1;24727:9;24723:17;24716:47;24780:131;24906:4;24780:131;:::i;:::-;24772:139;;24499:419;;;:::o;24924:::-;25090:4;25128:2;25117:9;25113:18;25105:26;;25177:9;25171:4;25167:20;25163:1;25152:9;25148:17;25141:47;25205:131;25331:4;25205:131;:::i;:::-;25197:139;;24924:419;;;:::o;25349:::-;25515:4;25553:2;25542:9;25538:18;25530:26;;25602:9;25596:4;25592:20;25588:1;25577:9;25573:17;25566:47;25630:131;25756:4;25630:131;:::i;:::-;25622:139;;25349:419;;;:::o;25774:::-;25940:4;25978:2;25967:9;25963:18;25955:26;;26027:9;26021:4;26017:20;26013:1;26002:9;25998:17;25991:47;26055:131;26181:4;26055:131;:::i;:::-;26047:139;;25774:419;;;:::o;26199:::-;26365:4;26403:2;26392:9;26388:18;26380:26;;26452:9;26446:4;26442:20;26438:1;26427:9;26423:17;26416:47;26480:131;26606:4;26480:131;:::i;:::-;26472:139;;26199:419;;;:::o;26624:::-;26790:4;26828:2;26817:9;26813:18;26805:26;;26877:9;26871:4;26867:20;26863:1;26852:9;26848:17;26841:47;26905:131;27031:4;26905:131;:::i;:::-;26897:139;;26624:419;;;:::o;27049:::-;27215:4;27253:2;27242:9;27238:18;27230:26;;27302:9;27296:4;27292:20;27288:1;27277:9;27273:17;27266:47;27330:131;27456:4;27330:131;:::i;:::-;27322:139;;27049:419;;;:::o;27474:::-;27640:4;27678:2;27667:9;27663:18;27655:26;;27727:9;27721:4;27717:20;27713:1;27702:9;27698:17;27691:47;27755:131;27881:4;27755:131;:::i;:::-;27747:139;;27474:419;;;:::o;27899:222::-;27992:4;28030:2;28019:9;28015:18;28007:26;;28043:71;28111:1;28100:9;28096:17;28087:6;28043:71;:::i;:::-;27899:222;;;;:::o;28127:129::-;28161:6;28188:20;;:::i;:::-;28178:30;;28217:33;28245:4;28237:6;28217:33;:::i;:::-;28127:129;;;:::o;28262:75::-;28295:6;28328:2;28322:9;28312:19;;28262:75;:::o;28343:307::-;28404:4;28494:18;28486:6;28483:30;28480:56;;;28516:18;;:::i;:::-;28480:56;28554:29;28576:6;28554:29;:::i;:::-;28546:37;;28638:4;28632;28628:15;28620:23;;28343:307;;;:::o;28656:308::-;28718:4;28808:18;28800:6;28797:30;28794:56;;;28830:18;;:::i;:::-;28794:56;28868:29;28890:6;28868:29;:::i;:::-;28860:37;;28952:4;28946;28942:15;28934:23;;28656:308;;;:::o;28970:98::-;29021:6;29055:5;29049:12;29039:22;;28970:98;;;:::o;29074:99::-;29126:6;29160:5;29154:12;29144:22;;29074:99;;;:::o;29179:168::-;29262:11;29296:6;29291:3;29284:19;29336:4;29331:3;29327:14;29312:29;;29179:168;;;;:::o;29353:169::-;29437:11;29471:6;29466:3;29459:19;29511:4;29506:3;29502:14;29487:29;;29353:169;;;;:::o;29528:148::-;29630:11;29667:3;29652:18;;29528:148;;;;:::o;29682:273::-;29722:3;29741:20;29759:1;29741:20;:::i;:::-;29736:25;;29775:20;29793:1;29775:20;:::i;:::-;29770:25;;29897:1;29861:34;29857:42;29854:1;29851:49;29848:75;;;29903:18;;:::i;:::-;29848:75;29947:1;29944;29940:9;29933:16;;29682:273;;;;:::o;29961:305::-;30001:3;30020:20;30038:1;30020:20;:::i;:::-;30015:25;;30054:20;30072:1;30054:20;:::i;:::-;30049:25;;30208:1;30140:66;30136:74;30133:1;30130:81;30127:107;;;30214:18;;:::i;:::-;30127:107;30258:1;30255;30251:9;30244:16;;29961:305;;;;:::o;30272:185::-;30312:1;30329:20;30347:1;30329:20;:::i;:::-;30324:25;;30363:20;30381:1;30363:20;:::i;:::-;30358:25;;30402:1;30392:35;;30407:18;;:::i;:::-;30392:35;30449:1;30446;30442:9;30437:14;;30272:185;;;;:::o;30463:348::-;30503:7;30526:20;30544:1;30526:20;:::i;:::-;30521:25;;30560:20;30578:1;30560:20;:::i;:::-;30555:25;;30748:1;30680:66;30676:74;30673:1;30670:81;30665:1;30658:9;30651:17;30647:105;30644:131;;;30755:18;;:::i;:::-;30644:131;30803:1;30800;30796:9;30785:20;;30463:348;;;;:::o;30817:191::-;30857:4;30877:20;30895:1;30877:20;:::i;:::-;30872:25;;30911:20;30929:1;30911:20;:::i;:::-;30906:25;;30950:1;30947;30944:8;30941:34;;;30955:18;;:::i;:::-;30941:34;31000:1;30997;30993:9;30985:17;;30817:191;;;;:::o;31014:::-;31054:4;31074:20;31092:1;31074:20;:::i;:::-;31069:25;;31108:20;31126:1;31108:20;:::i;:::-;31103:25;;31147:1;31144;31141:8;31138:34;;;31152:18;;:::i;:::-;31138:34;31197:1;31194;31190:9;31182:17;;31014:191;;;;:::o;31211:96::-;31248:7;31277:24;31295:5;31277:24;:::i;:::-;31266:35;;31211:96;;;:::o;31313:90::-;31347:7;31390:5;31383:13;31376:21;31365:32;;31313:90;;;:::o;31409:149::-;31445:7;31485:66;31478:5;31474:78;31463:89;;31409:149;;;:::o;31564:118::-;31601:7;31641:34;31634:5;31630:46;31619:57;;31564:118;;;:::o;31688:126::-;31725:7;31765:42;31758:5;31754:54;31743:65;;31688:126;;;:::o;31820:77::-;31857:7;31886:5;31875:16;;31820:77;;;:::o;31903:154::-;31987:6;31982:3;31977;31964:30;32049:1;32040:6;32035:3;32031:16;32024:27;31903:154;;;:::o;32063:307::-;32131:1;32141:113;32155:6;32152:1;32149:13;32141:113;;;32240:1;32235:3;32231:11;32225:18;32221:1;32216:3;32212:11;32205:39;32177:2;32174:1;32170:10;32165:15;;32141:113;;;32272:6;32269:1;32266:13;32263:101;;;32352:1;32343:6;32338:3;32334:16;32327:27;32263:101;32112:258;32063:307;;;:::o;32376:171::-;32415:3;32438:24;32456:5;32438:24;:::i;:::-;32429:33;;32484:4;32477:5;32474:15;32471:41;;;32492:18;;:::i;:::-;32471:41;32539:1;32532:5;32528:13;32521:20;;32376:171;;;:::o;32553:320::-;32597:6;32634:1;32628:4;32624:12;32614:22;;32681:1;32675:4;32671:12;32702:18;32692:81;;32758:4;32750:6;32746:17;32736:27;;32692:81;32820:2;32812:6;32809:14;32789:18;32786:38;32783:84;;;32839:18;;:::i;:::-;32783:84;32604:269;32553:320;;;:::o;32879:281::-;32962:27;32984:4;32962:27;:::i;:::-;32954:6;32950:40;33092:6;33080:10;33077:22;33056:18;33044:10;33041:34;33038:62;33035:88;;;33103:18;;:::i;:::-;33035:88;33143:10;33139:2;33132:22;32922:238;32879:281;;:::o;33166:233::-;33205:3;33228:24;33246:5;33228:24;:::i;:::-;33219:33;;33274:66;33267:5;33264:77;33261:103;;;33344:18;;:::i;:::-;33261:103;33391:1;33384:5;33380:13;33373:20;;33166:233;;;:::o;33405:176::-;33437:1;33454:20;33472:1;33454:20;:::i;:::-;33449:25;;33488:20;33506:1;33488:20;:::i;:::-;33483:25;;33527:1;33517:35;;33532:18;;:::i;:::-;33517:35;33573:1;33570;33566:9;33561:14;;33405:176;;;;:::o;33587:180::-;33635:77;33632:1;33625:88;33732:4;33729:1;33722:15;33756:4;33753:1;33746:15;33773:180;33821:77;33818:1;33811:88;33918:4;33915:1;33908:15;33942:4;33939:1;33932:15;33959:180;34007:77;34004:1;33997:88;34104:4;34101:1;34094:15;34128:4;34125:1;34118:15;34145:180;34193:77;34190:1;34183:88;34290:4;34287:1;34280:15;34314:4;34311:1;34304:15;34331:180;34379:77;34376:1;34369:88;34476:4;34473:1;34466:15;34500:4;34497:1;34490:15;34517:117;34626:1;34623;34616:12;34640:117;34749:1;34746;34739:12;34763:117;34872:1;34869;34862:12;34886:117;34995:1;34992;34985:12;35009:102;35050:6;35101:2;35097:7;35092:2;35085:5;35081:14;35077:28;35067:38;;35009:102;;;:::o;35117:221::-;35257:34;35253:1;35245:6;35241:14;35234:58;35326:4;35321:2;35313:6;35309:15;35302:29;35117:221;:::o;35344:225::-;35484:34;35480:1;35472:6;35468:14;35461:58;35553:8;35548:2;35540:6;35536:15;35529:33;35344:225;:::o;35575:229::-;35715:34;35711:1;35703:6;35699:14;35692:58;35784:12;35779:2;35771:6;35767:15;35760:37;35575:229;:::o;35810:222::-;35950:34;35946:1;35938:6;35934:14;35927:58;36019:5;36014:2;36006:6;36002:15;35995:30;35810:222;:::o;36038:224::-;36178:34;36174:1;36166:6;36162:14;36155:58;36247:7;36242:2;36234:6;36230:15;36223:32;36038:224;:::o;36268:244::-;36408:34;36404:1;36396:6;36392:14;36385:58;36477:27;36472:2;36464:6;36460:15;36453:52;36268:244;:::o;36518:230::-;36658:34;36654:1;36646:6;36642:14;36635:58;36727:13;36722:2;36714:6;36710:15;36703:38;36518:230;:::o;36754:225::-;36894:34;36890:1;36882:6;36878:14;36871:58;36963:8;36958:2;36950:6;36946:15;36939:33;36754:225;:::o;36985:155::-;37125:7;37121:1;37113:6;37109:14;37102:31;36985:155;:::o;37146:182::-;37286:34;37282:1;37274:6;37270:14;37263:58;37146:182;:::o;37334:234::-;37474:34;37470:1;37462:6;37458:14;37451:58;37543:17;37538:2;37530:6;37526:15;37519:42;37334:234;:::o;37574:176::-;37714:28;37710:1;37702:6;37698:14;37691:52;37574:176;:::o;37756:237::-;37896:34;37892:1;37884:6;37880:14;37873:58;37965:20;37960:2;37952:6;37948:15;37941:45;37756:237;:::o;37999:220::-;38139:34;38135:1;38127:6;38123:14;38116:58;38208:3;38203:2;38195:6;38191:15;38184:28;37999:220;:::o;38225:221::-;38365:34;38361:1;38353:6;38349:14;38342:58;38434:4;38429:2;38421:6;38417:15;38410:29;38225:221;:::o;38452:238::-;38592:34;38588:1;38580:6;38576:14;38569:58;38661:21;38656:2;38648:6;38644:15;38637:46;38452:238;:::o;38696:179::-;38836:31;38832:1;38824:6;38820:14;38813:55;38696:179;:::o;38881:220::-;39021:34;39017:1;39009:6;39005:14;38998:58;39090:3;39085:2;39077:6;39073:15;39066:28;38881:220;:::o;39107:233::-;39247:34;39243:1;39235:6;39231:14;39224:58;39316:16;39311:2;39303:6;39299:15;39292:41;39107:233;:::o;39346:234::-;39486:34;39482:1;39474:6;39470:14;39463:58;39555:17;39550:2;39542:6;39538:15;39531:42;39346:234;:::o;39586:232::-;39726:34;39722:1;39714:6;39710:14;39703:58;39795:15;39790:2;39782:6;39778:15;39771:40;39586:232;:::o;39824:221::-;39964:34;39960:1;39952:6;39948:14;39941:58;40033:4;40028:2;40020:6;40016:15;40009:29;39824:221;:::o;40051:122::-;40124:24;40142:5;40124:24;:::i;:::-;40117:5;40114:35;40104:63;;40163:1;40160;40153:12;40104:63;40051:122;:::o;40179:116::-;40249:21;40264:5;40249:21;:::i;:::-;40242:5;40239:32;40229:60;;40285:1;40282;40275:12;40229:60;40179:116;:::o;40301:120::-;40373:23;40390:5;40373:23;:::i;:::-;40366:5;40363:34;40353:62;;40411:1;40408;40401:12;40353:62;40301:120;:::o;40427:122::-;40500:24;40518:5;40500:24;:::i;:::-;40493:5;40490:35;40480:63;;40539:1;40536;40529:12;40480:63;40427:122;:::o

Swarm Source

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