ETH Price: $2,969.20 (+1.29%)
Gas: 1 Gwei

Token

GlitchZuki (GLUKI)
 

Overview

Max Total Supply

2,987 GLUKI

Holders

479

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 GLUKI
0x19d8a4e52f500502cff3bb1a7c6c86e486caae59
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:
GlitchZuki

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-03-31
*/

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


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

pragma solidity ^0.8.0;

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

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

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

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

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

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


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

pragma solidity ^0.8.1;

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

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


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

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


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

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;


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

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


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

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


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

pragma solidity ^0.8.0;


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

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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


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

pragma solidity ^0.8.0;

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

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

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

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

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

        _;

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

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


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

pragma solidity ^0.8.0;

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

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

// File: contracts/ERC721A.sol



pragma solidity ^0.8.0;









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

  struct TokenOwnership {
    address addr;
    uint64 startTimestamp;
  }

  struct AddressData {
    uint128 balance;
    uint128 numberMinted;
  }

  uint256 private currentIndex = 0;

  uint256 internal immutable collectionSize;
  uint256 internal immutable maxBatchSize;

  // Token name
  string private _name;

  // Token symbol
  string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    _approve(to, tokenId, owner);
  }

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

    return _tokenApprovals[tokenId];
  }

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

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

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

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

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

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

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

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

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

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

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

    uint256 updatedIndex = startTokenId;

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

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

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

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

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

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

    _beforeTokenTransfers(from, to, tokenId, 1);

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

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

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

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

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

  uint256 public nextOwnerToExplicitlySet = 0;

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

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

// File: contracts/contract_template_721a.sol



pragma solidity ^0.8.0;





contract GlitchZuki is ERC721A, Ownable {
    uint256 public NFT_PRICE = 0.01 ether;
    uint256 public MAX_SUPPLY = 1250;
    uint256 public MAX_MINTS = 10;
    string public projName = "GlitchZuki";
    string public projSym = "GLUKI";

    bool public DROP_ACTIVE = false;

    string public baseURI = "https://ipfs.io/ipfs/Qmamnypj9nyuNi5g2Vtd7Z6EM2ofNV3wCa646auMsbcK4k/";
    mapping(address => uint) addressToReservedMints;
    
    constructor() ERC721A(projName, projSym, MAX_MINTS, MAX_SUPPLY) {}

    function mint(uint256 numTokens) public payable {
        require(DROP_ACTIVE, "Sale not started");
        require(
            numTokens > 0 && numTokens <= MAX_MINTS,
            "Must mint between 1 and 10 tokens"
        );
        require(totalSupply() + numTokens <= MAX_SUPPLY, "Sold Out");
        require(
            msg.value >= NFT_PRICE * numTokens,
            "Amount of ether sent is not enough"
        );

        _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 staffMint(uint256 numTokens) public onlyOwner {
        MAX_SUPPLY = numTokens;
    }

    function _baseURI() internal view virtual override returns (string memory) {
        return baseURI;
    }
    
    function reservedMintedBy() external view returns (uint256) {
        return addressToReservedMints[msg.sender];
    }

    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":"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":[],"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":"projName","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"projSym","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"reservedMintedBy","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":"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":"numTokens","type":"uint256"}],"name":"staffMint","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"}]

60c0604052600080556000600755662386f26fc100006009556104e2600a55600a600b556040518060400160405280600a81526020017f476c697463685a756b6900000000000000000000000000000000000000000000815250600c9080519060200190620000709291906200040c565b506040518060400160405280600581526020017f474c554b49000000000000000000000000000000000000000000000000000000815250600d9080519060200190620000be9291906200040c565b506000600e60006101000a81548160ff02191690831515021790555060405180608001604052806044815260200162004d9c60449139600f90805190602001906200010b9291906200040c565b503480156200011957600080fd5b50600c805462000129906200055f565b80601f016020809104026020016040519081016040528092919081815260200182805462000157906200055f565b8015620001a85780601f106200017c57610100808354040283529160200191620001a8565b820191906000526020600020905b8154815290600101906020018083116200018a57829003601f168201915b5050505050600d8054620001bc906200055f565b80601f0160208091040260200160405190810160405280929190818152602001828054620001ea906200055f565b80156200023b5780601f106200020f576101008083540402835291602001916200023b565b820191906000526020600020905b8154815290600101906020018083116200021d57829003601f168201915b5050505050600b54600a54600081116200028c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000283906200052c565b60405180910390fd5b60008211620002d2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620002c9906200050a565b60405180910390fd5b8360019080519060200190620002ea9291906200040c565b508260029080519060200190620003039291906200040c565b508160a08181525050806080818152505050505050620003386200032c6200033e60201b60201c565b6200034660201b60201c565b62000662565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8280546200041a906200055f565b90600052602060002090601f0160209004810192826200043e57600085556200048a565b82601f106200045957805160ff19168380011785556200048a565b828001600101855582156200048a579182015b82811115620004895782518255916020019190600101906200046c565b5b5090506200049991906200049d565b5090565b5b80821115620004b85760008160009055506001016200049e565b5090565b6000620004cb6027836200054e565b9150620004d882620005c4565b604082019050919050565b6000620004f2602e836200054e565b9150620004ff8262000613565b604082019050919050565b600060208201905081810360008301526200052581620004bc565b9050919050565b600060208201905081810360008301526200054781620004e3565b9050919050565b600082825260208201905092915050565b600060028204905060018216806200057857607f821691505b602082108114156200058f576200058e62000595565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f455243373231413a206d61782062617463682073697a65206d7573742062652060008201527f6e6f6e7a65726f00000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a20636f6c6c656374696f6e206d757374206861766520612060008201527f6e6f6e7a65726f20737570706c79000000000000000000000000000000000000602082015250565b60805160a05161470962000693600039600081816122ac015281816122d501526129960152600050506147096000f3fe6080604052600436106102045760003560e01c8063715018a611610118578063b88d4fde116100a0578063da241d061161006f578063da241d0614610734578063e03c69e81461075f578063e985e9c51461078a578063f2fde38b146107c7578063f7cd09c7146107f057610204565b8063b88d4fde14610678578063c87b56dd146106a1578063cce132d1146106de578063d7224ba01461070957610204565b806395d89b41116100e757806395d89b41146105c657806396f8f6dd146105f1578063a0712d6814610608578063a22cb46514610624578063a7b8cd4d1461064d57610204565b8063715018a61461053257806379c9cb7b146105495780638da5cb5b1461057257806391b7f5ed1461059d57610204565b806332cb6b0c1161019b57806355f804b31161016a57806355f804b3146104395780636352211e14610462578063676dd5631461049f5780636c0360eb146104ca57806370a08231146104f557610204565b806332cb6b0c146103915780633ccfd60b146103bc57806342842e0e146103d35780634f6ccce7146103fc57610204565b806318160ddd116101d757806318160ddd146102d757806318ce801e1461030257806323b872dd1461032b5780632f745c591461035457610204565b806301ffc9a71461020957806306fdde0314610246578063081812fc14610271578063095ea7b3146102ae575b600080fd5b34801561021557600080fd5b50610230600480360381019061022b91906131c0565b61081b565b60405161023d9190613733565b60405180910390f35b34801561025257600080fd5b5061025b610965565b604051610268919061374e565b60405180910390f35b34801561027d57600080fd5b5061029860048036038101906102939190613263565b6109f7565b6040516102a591906136cc565b60405180910390f35b3480156102ba57600080fd5b506102d560048036038101906102d09190613180565b610a7c565b005b3480156102e357600080fd5b506102ec610b95565b6040516102f99190613a70565b60405180910390f35b34801561030e57600080fd5b5061032960048036038101906103249190613263565b610b9e565b005b34801561033757600080fd5b50610352600480360381019061034d919061306a565b610c24565b005b34801561036057600080fd5b5061037b60048036038101906103769190613180565b610c34565b6040516103889190613a70565b60405180910390f35b34801561039d57600080fd5b506103a6610e32565b6040516103b39190613a70565b60405180910390f35b3480156103c857600080fd5b506103d1610e38565b005b3480156103df57600080fd5b506103fa60048036038101906103f5919061306a565b610ef4565b005b34801561040857600080fd5b50610423600480360381019061041e9190613263565b610f14565b6040516104309190613a70565b60405180910390f35b34801561044557600080fd5b50610460600480360381019061045b919061321a565b610f67565b005b34801561046e57600080fd5b5061048960048036038101906104849190613263565b610ffd565b60405161049691906136cc565b60405180910390f35b3480156104ab57600080fd5b506104b4611013565b6040516104c19190613a70565b60405180910390f35b3480156104d657600080fd5b506104df611019565b6040516104ec919061374e565b60405180910390f35b34801561050157600080fd5b5061051c60048036038101906105179190612ffd565b6110a7565b6040516105299190613a70565b60405180910390f35b34801561053e57600080fd5b50610547611190565b005b34801561055557600080fd5b50610570600480360381019061056b9190613263565b611218565b005b34801561057e57600080fd5b5061058761129e565b60405161059491906136cc565b60405180910390f35b3480156105a957600080fd5b506105c460048036038101906105bf9190613263565b6112c8565b005b3480156105d257600080fd5b506105db61134e565b6040516105e8919061374e565b60405180910390f35b3480156105fd57600080fd5b506106066113e0565b005b610622600480360381019061061d9190613263565b611488565b005b34801561063057600080fd5b5061064b60048036038101906106469190613140565b6115dc565b005b34801561065957600080fd5b5061066261175d565b60405161066f9190613a70565b60405180910390f35b34801561068457600080fd5b5061069f600480360381019061069a91906130bd565b6117a4565b005b3480156106ad57600080fd5b506106c860048036038101906106c39190613263565b611800565b6040516106d5919061374e565b60405180910390f35b3480156106ea57600080fd5b506106f36118a7565b6040516107009190613a70565b60405180910390f35b34801561071557600080fd5b5061071e6118ad565b60405161072b9190613a70565b60405180910390f35b34801561074057600080fd5b506107496118b3565b604051610756919061374e565b60405180910390f35b34801561076b57600080fd5b50610774611941565b604051610781919061374e565b60405180910390f35b34801561079657600080fd5b506107b160048036038101906107ac919061302a565b6119cf565b6040516107be9190613733565b60405180910390f35b3480156107d357600080fd5b506107ee60048036038101906107e99190612ffd565b611a63565b005b3480156107fc57600080fd5b50610805611b5b565b6040516108129190613733565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806108e657507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061094e57507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061095e575061095d82611b6e565b5b9050919050565b60606001805461097490613de0565b80601f01602080910402602001604051908101604052809291908181526020018280546109a090613de0565b80156109ed5780601f106109c2576101008083540402835291602001916109ed565b820191906000526020600020905b8154815290600101906020018083116109d057829003601f168201915b5050505050905090565b6000610a0282611bd8565b610a41576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a3890613a30565b60405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610a8782610ffd565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610af8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610aef90613970565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610b17611be5565b73ffffffffffffffffffffffffffffffffffffffff161480610b465750610b4581610b40611be5565b6119cf565b5b610b85576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b7c90613870565b60405180910390fd5b610b90838383611bed565b505050565b60008054905090565b610ba6611be5565b73ffffffffffffffffffffffffffffffffffffffff16610bc461129e565b73ffffffffffffffffffffffffffffffffffffffff1614610c1a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c11906138d0565b60405180910390fd5b80600a8190555050565b610c2f838383611c9f565b505050565b6000610c3f836110a7565b8210610c80576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c7790613770565b60405180910390fd5b6000610c8a610b95565b905060008060005b83811015610df0576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614610d8457806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610ddc5786841415610dcd578195505050505050610e2c565b8380610dd890613e43565b9450505b508080610de890613e43565b915050610c92565b506040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e23906139f0565b60405180910390fd5b92915050565b600a5481565b610e40611be5565b73ffffffffffffffffffffffffffffffffffffffff16610e5e61129e565b73ffffffffffffffffffffffffffffffffffffffff1614610eb4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eab906138d0565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050610ef257600080fd5b565b610f0f838383604051806020016040528060008152506117a4565b505050565b6000610f1e610b95565b8210610f5f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f56906137f0565b60405180910390fd5b819050919050565b610f6f611be5565b73ffffffffffffffffffffffffffffffffffffffff16610f8d61129e565b73ffffffffffffffffffffffffffffffffffffffff1614610fe3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fda906138d0565b60405180910390fd5b80600f9080519060200190610ff9929190612dd7565b5050565b600061100882612258565b600001519050919050565b60095481565b600f805461102690613de0565b80601f016020809104026020016040519081016040528092919081815260200182805461105290613de0565b801561109f5780601f106110745761010080835404028352916020019161109f565b820191906000526020600020905b81548152906001019060200180831161108257829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611118576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161110f90613890565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b611198611be5565b73ffffffffffffffffffffffffffffffffffffffff166111b661129e565b73ffffffffffffffffffffffffffffffffffffffff161461120c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611203906138d0565b60405180910390fd5b611216600061245b565b565b611220611be5565b73ffffffffffffffffffffffffffffffffffffffff1661123e61129e565b73ffffffffffffffffffffffffffffffffffffffff1614611294576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161128b906138d0565b60405180910390fd5b80600b8190555050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6112d0611be5565b73ffffffffffffffffffffffffffffffffffffffff166112ee61129e565b73ffffffffffffffffffffffffffffffffffffffff1614611344576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161133b906138d0565b60405180910390fd5b8060098190555050565b60606002805461135d90613de0565b80601f016020809104026020016040519081016040528092919081815260200182805461138990613de0565b80156113d65780601f106113ab576101008083540402835291602001916113d6565b820191906000526020600020905b8154815290600101906020018083116113b957829003601f168201915b5050505050905090565b6113e8611be5565b73ffffffffffffffffffffffffffffffffffffffff1661140661129e565b73ffffffffffffffffffffffffffffffffffffffff161461145c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611453906138d0565b60405180910390fd5b600e60009054906101000a900460ff1615600e60006101000a81548160ff021916908315150217905550565b600e60009054906101000a900460ff166114d7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114ce90613850565b60405180910390fd5b6000811180156114e95750600b548111155b611528576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161151f90613950565b60405180910390fd5b600a5481611534610b95565b61153e9190613b9b565b111561157f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161157690613790565b60405180910390fd5b8060095461158d9190613c22565b3410156115cf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115c690613830565b60405180910390fd5b6115d93382612521565b50565b6115e4611be5565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611652576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161164990613910565b60405180910390fd5b806006600061165f611be5565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661170c611be5565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516117519190613733565b60405180910390a35050565b6000601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905090565b6117af848484611c9f565b6117bb8484848461253f565b6117fa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117f190613990565b60405180910390fd5b50505050565b606061180b82611bd8565b61184a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611841906138f0565b60405180910390fd5b60006118546126d6565b90506000815111611874576040518060200160405280600081525061189f565b8061187e84612768565b60405160200161188f9291906136a8565b6040516020818303038152906040525b915050919050565b600b5481565b60075481565b600d80546118c090613de0565b80601f01602080910402602001604051908101604052809291908181526020018280546118ec90613de0565b80156119395780601f1061190e57610100808354040283529160200191611939565b820191906000526020600020905b81548152906001019060200180831161191c57829003601f168201915b505050505081565b600c805461194e90613de0565b80601f016020809104026020016040519081016040528092919081815260200182805461197a90613de0565b80156119c75780601f1061199c576101008083540402835291602001916119c7565b820191906000526020600020905b8154815290600101906020018083116119aa57829003601f168201915b505050505081565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611a6b611be5565b73ffffffffffffffffffffffffffffffffffffffff16611a8961129e565b73ffffffffffffffffffffffffffffffffffffffff1614611adf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ad6906138d0565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611b4f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b46906137b0565b60405180910390fd5b611b588161245b565b50565b600e60009054906101000a900460ff1681565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6000805482109050919050565b600033905090565b826005600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b6000611caa82612258565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff16611cd1611be5565b73ffffffffffffffffffffffffffffffffffffffff161480611d2d5750611cf6611be5565b73ffffffffffffffffffffffffffffffffffffffff16611d15846109f7565b73ffffffffffffffffffffffffffffffffffffffff16145b80611d495750611d488260000151611d43611be5565b6119cf565b5b905080611d8b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d8290613930565b60405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff1614611dfd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611df4906138b0565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611e6d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e6490613810565b60405180910390fd5b611e7a85858560016128c9565b611e8a6000848460000151611bed565b6001600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff16611ef89190613c7c565b92506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff1602179055506001600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff16611f9c9190613b55565b92506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060405180604001604052808573ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506003600085815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555090505060006001846120a29190613b9b565b9050600073ffffffffffffffffffffffffffffffffffffffff166003600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614156121e85761211881611bd8565b156121e7576040518060400160405280846000015173ffffffffffffffffffffffffffffffffffffffff168152602001846020015167ffffffffffffffff168152506003600083815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055509050505b5b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461225086868660016128cf565b505050505050565b612260612e5d565b61226982611bd8565b6122a8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161229f906137d0565b60405180910390fd5b60007f0000000000000000000000000000000000000000000000000000000000000000831061230c5760017f0000000000000000000000000000000000000000000000000000000000000000846122ff9190613cb0565b6123099190613b9b565b90505b60008390505b81811061241a576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461240657809350505050612456565b50808061241290613db6565b915050612312565b506040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161244d90613a10565b60405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b61253b8282604051806020016040528060008152506128d5565b5050565b60006125608473ffffffffffffffffffffffffffffffffffffffff16612db4565b156126c9578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612589611be5565b8786866040518563ffffffff1660e01b81526004016125ab94939291906136e7565b602060405180830381600087803b1580156125c557600080fd5b505af19250505080156125f657506040513d601f19601f820116820180604052508101906125f391906131ed565b60015b612679573d8060008114612626576040519150601f19603f3d011682016040523d82523d6000602084013e61262b565b606091505b50600081511415612671576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161266890613990565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506126ce565b600190505b949350505050565b6060600f80546126e590613de0565b80601f016020809104026020016040519081016040528092919081815260200182805461271190613de0565b801561275e5780601f106127335761010080835404028352916020019161275e565b820191906000526020600020905b81548152906001019060200180831161274157829003601f168201915b5050505050905090565b606060008214156127b0576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506128c4565b600082905060005b600082146127e25780806127cb90613e43565b915050600a826127db9190613bf1565b91506127b8565b60008167ffffffffffffffff8111156127fe576127fd613f79565b5b6040519080825280601f01601f1916602001820160405280156128305781602001600182028036833780820191505090505b5090505b600085146128bd576001826128499190613cb0565b9150600a856128589190613e8c565b60306128649190613b9b565b60f81b81838151811061287a57612879613f4a565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856128b69190613bf1565b9450612834565b8093505050505b919050565b50505050565b50505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16141561294b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612942906139d0565b60405180910390fd5b61295481611bd8565b15612994576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161298b906139b0565b60405180910390fd5b7f00000000000000000000000000000000000000000000000000000000000000008311156129f7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129ee90613a50565b60405180910390fd5b612a0460008583866128c9565b6000600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206040518060400160405290816000820160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff1681526020016000820160109054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff168152505090506040518060400160405280858360000151612b019190613b55565b6fffffffffffffffffffffffffffffffff168152602001858360200151612b289190613b55565b6fffffffffffffffffffffffffffffffff16815250600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008201518160000160006101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060208201518160000160106101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555090505060405180604001604052808673ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506003600084815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550905050600082905060005b85811015612d9757818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612d37600088848861253f565b612d76576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d6d90613990565b60405180910390fd5b8180612d8190613e43565b9250508080612d8f90613e43565b915050612cc6565b5080600081905550612dac60008785886128cf565b505050505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b828054612de390613de0565b90600052602060002090601f016020900481019282612e055760008555612e4c565b82601f10612e1e57805160ff1916838001178555612e4c565b82800160010185558215612e4c579182015b82811115612e4b578251825591602001919060010190612e30565b5b509050612e599190612e97565b5090565b6040518060400160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681525090565b5b80821115612eb0576000816000905550600101612e98565b5090565b6000612ec7612ec284613ab0565b613a8b565b905082815260208101848484011115612ee357612ee2613fad565b5b612eee848285613d74565b509392505050565b6000612f09612f0484613ae1565b613a8b565b905082815260208101848484011115612f2557612f24613fad565b5b612f30848285613d74565b509392505050565b600081359050612f4781614677565b92915050565b600081359050612f5c8161468e565b92915050565b600081359050612f71816146a5565b92915050565b600081519050612f86816146a5565b92915050565b600082601f830112612fa157612fa0613fa8565b5b8135612fb1848260208601612eb4565b91505092915050565b600082601f830112612fcf57612fce613fa8565b5b8135612fdf848260208601612ef6565b91505092915050565b600081359050612ff7816146bc565b92915050565b60006020828403121561301357613012613fb7565b5b600061302184828501612f38565b91505092915050565b6000806040838503121561304157613040613fb7565b5b600061304f85828601612f38565b925050602061306085828601612f38565b9150509250929050565b60008060006060848603121561308357613082613fb7565b5b600061309186828701612f38565b93505060206130a286828701612f38565b92505060406130b386828701612fe8565b9150509250925092565b600080600080608085870312156130d7576130d6613fb7565b5b60006130e587828801612f38565b94505060206130f687828801612f38565b935050604061310787828801612fe8565b925050606085013567ffffffffffffffff81111561312857613127613fb2565b5b61313487828801612f8c565b91505092959194509250565b6000806040838503121561315757613156613fb7565b5b600061316585828601612f38565b925050602061317685828601612f4d565b9150509250929050565b6000806040838503121561319757613196613fb7565b5b60006131a585828601612f38565b92505060206131b685828601612fe8565b9150509250929050565b6000602082840312156131d6576131d5613fb7565b5b60006131e484828501612f62565b91505092915050565b60006020828403121561320357613202613fb7565b5b600061321184828501612f77565b91505092915050565b6000602082840312156132305761322f613fb7565b5b600082013567ffffffffffffffff81111561324e5761324d613fb2565b5b61325a84828501612fba565b91505092915050565b60006020828403121561327957613278613fb7565b5b600061328784828501612fe8565b91505092915050565b61329981613ce4565b82525050565b6132a881613cf6565b82525050565b60006132b982613b12565b6132c38185613b28565b93506132d3818560208601613d83565b6132dc81613fbc565b840191505092915050565b60006132f282613b1d565b6132fc8185613b39565b935061330c818560208601613d83565b61331581613fbc565b840191505092915050565b600061332b82613b1d565b6133358185613b4a565b9350613345818560208601613d83565b80840191505092915050565b600061335e602283613b39565b915061336982613fcd565b604082019050919050565b6000613381600883613b39565b915061338c8261401c565b602082019050919050565b60006133a4602683613b39565b91506133af82614045565b604082019050919050565b60006133c7602a83613b39565b91506133d282614094565b604082019050919050565b60006133ea602383613b39565b91506133f5826140e3565b604082019050919050565b600061340d602583613b39565b915061341882614132565b604082019050919050565b6000613430602283613b39565b915061343b82614181565b604082019050919050565b6000613453601083613b39565b915061345e826141d0565b602082019050919050565b6000613476603983613b39565b9150613481826141f9565b604082019050919050565b6000613499602b83613b39565b91506134a482614248565b604082019050919050565b60006134bc602683613b39565b91506134c782614297565b604082019050919050565b60006134df602083613b39565b91506134ea826142e6565b602082019050919050565b6000613502602f83613b39565b915061350d8261430f565b604082019050919050565b6000613525601a83613b39565b91506135308261435e565b602082019050919050565b6000613548603283613b39565b915061355382614387565b604082019050919050565b600061356b602183613b39565b9150613576826143d6565b604082019050919050565b600061358e602283613b39565b915061359982614425565b604082019050919050565b60006135b1603383613b39565b91506135bc82614474565b604082019050919050565b60006135d4601d83613b39565b91506135df826144c3565b602082019050919050565b60006135f7602183613b39565b9150613602826144ec565b604082019050919050565b600061361a602e83613b39565b91506136258261453b565b604082019050919050565b600061363d602f83613b39565b91506136488261458a565b604082019050919050565b6000613660602d83613b39565b915061366b826145d9565b604082019050919050565b6000613683602283613b39565b915061368e82614628565b604082019050919050565b6136a281613d6a565b82525050565b60006136b48285613320565b91506136c08284613320565b91508190509392505050565b60006020820190506136e16000830184613290565b92915050565b60006080820190506136fc6000830187613290565b6137096020830186613290565b6137166040830185613699565b818103606083015261372881846132ae565b905095945050505050565b6000602082019050613748600083018461329f565b92915050565b6000602082019050818103600083015261376881846132e7565b905092915050565b6000602082019050818103600083015261378981613351565b9050919050565b600060208201905081810360008301526137a981613374565b9050919050565b600060208201905081810360008301526137c981613397565b9050919050565b600060208201905081810360008301526137e9816133ba565b9050919050565b60006020820190508181036000830152613809816133dd565b9050919050565b6000602082019050818103600083015261382981613400565b9050919050565b6000602082019050818103600083015261384981613423565b9050919050565b6000602082019050818103600083015261386981613446565b9050919050565b6000602082019050818103600083015261388981613469565b9050919050565b600060208201905081810360008301526138a98161348c565b9050919050565b600060208201905081810360008301526138c9816134af565b9050919050565b600060208201905081810360008301526138e9816134d2565b9050919050565b60006020820190508181036000830152613909816134f5565b9050919050565b6000602082019050818103600083015261392981613518565b9050919050565b600060208201905081810360008301526139498161353b565b9050919050565b600060208201905081810360008301526139698161355e565b9050919050565b6000602082019050818103600083015261398981613581565b9050919050565b600060208201905081810360008301526139a9816135a4565b9050919050565b600060208201905081810360008301526139c9816135c7565b9050919050565b600060208201905081810360008301526139e9816135ea565b9050919050565b60006020820190508181036000830152613a098161360d565b9050919050565b60006020820190508181036000830152613a2981613630565b9050919050565b60006020820190508181036000830152613a4981613653565b9050919050565b60006020820190508181036000830152613a6981613676565b9050919050565b6000602082019050613a856000830184613699565b92915050565b6000613a95613aa6565b9050613aa18282613e12565b919050565b6000604051905090565b600067ffffffffffffffff821115613acb57613aca613f79565b5b613ad482613fbc565b9050602081019050919050565b600067ffffffffffffffff821115613afc57613afb613f79565b5b613b0582613fbc565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000613b6082613d2e565b9150613b6b83613d2e565b9250826fffffffffffffffffffffffffffffffff03821115613b9057613b8f613ebd565b5b828201905092915050565b6000613ba682613d6a565b9150613bb183613d6a565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613be657613be5613ebd565b5b828201905092915050565b6000613bfc82613d6a565b9150613c0783613d6a565b925082613c1757613c16613eec565b5b828204905092915050565b6000613c2d82613d6a565b9150613c3883613d6a565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613c7157613c70613ebd565b5b828202905092915050565b6000613c8782613d2e565b9150613c9283613d2e565b925082821015613ca557613ca4613ebd565b5b828203905092915050565b6000613cbb82613d6a565b9150613cc683613d6a565b925082821015613cd957613cd8613ebd565b5b828203905092915050565b6000613cef82613d4a565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b60006fffffffffffffffffffffffffffffffff82169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015613da1578082015181840152602081019050613d86565b83811115613db0576000848401525b50505050565b6000613dc182613d6a565b91506000821415613dd557613dd4613ebd565b5b600182039050919050565b60006002820490506001821680613df857607f821691505b60208210811415613e0c57613e0b613f1b565b5b50919050565b613e1b82613fbc565b810181811067ffffffffffffffff82111715613e3a57613e39613f79565b5b80604052505050565b6000613e4e82613d6a565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613e8157613e80613ebd565b5b600182019050919050565b6000613e9782613d6a565b9150613ea283613d6a565b925082613eb257613eb1613eec565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f455243373231413a206f776e657220696e646578206f7574206f6620626f756e60008201527f6473000000000000000000000000000000000000000000000000000000000000602082015250565b7f536f6c64204f7574000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a206f776e657220717565727920666f72206e6f6e6578697360008201527f74656e7420746f6b656e00000000000000000000000000000000000000000000602082015250565b7f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f7560008201527f6e64730000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f416d6f756e74206f662065746865722073656e74206973206e6f7420656e6f7560008201527f6768000000000000000000000000000000000000000000000000000000000000602082015250565b7f53616c65206e6f74207374617274656400000000000000000000000000000000600082015250565b7f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000602082015250565b7f455243373231413a2062616c616e636520717565727920666f7220746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e736665722066726f6d20696e636f727265637460008201527f206f776e65720000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f455243373231413a20617070726f766520746f2063616c6c6572000000000000600082015250565b7f455243373231413a207472616e736665722063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b7f4d757374206d696e74206265747765656e203120616e6420313020746f6b656e60008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60008201527f6572000000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e7366657220746f206e6f6e204552433732315260008201527f6563656976657220696d706c656d656e74657200000000000000000000000000602082015250565b7f455243373231413a20746f6b656e20616c7265616479206d696e746564000000600082015250565b7f455243373231413a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060008201527f6f776e657220627920696e646578000000000000000000000000000000000000602082015250565b7f455243373231413a20756e61626c6520746f2064657465726d696e652074686560008201527f206f776e6572206f6620746f6b656e0000000000000000000000000000000000602082015250565b7f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560008201527f78697374656e7420746f6b656e00000000000000000000000000000000000000602082015250565b7f455243373231413a207175616e7469747920746f206d696e7420746f6f20686960008201527f6768000000000000000000000000000000000000000000000000000000000000602082015250565b61468081613ce4565b811461468b57600080fd5b50565b61469781613cf6565b81146146a257600080fd5b50565b6146ae81613d02565b81146146b957600080fd5b50565b6146c581613d6a565b81146146d057600080fd5b5056fea2646970667358221220d8d2b621956da556af6f4da4529ed4b8fbee1a7dc42d6fe0fa11859cd0924ba964736f6c6343000807003368747470733a2f2f697066732e696f2f697066732f516d616d6e79706a396e79754e69356732567464375a36454d326f664e563377436136343661754d7362634b346b2f

Deployed Bytecode

0x6080604052600436106102045760003560e01c8063715018a611610118578063b88d4fde116100a0578063da241d061161006f578063da241d0614610734578063e03c69e81461075f578063e985e9c51461078a578063f2fde38b146107c7578063f7cd09c7146107f057610204565b8063b88d4fde14610678578063c87b56dd146106a1578063cce132d1146106de578063d7224ba01461070957610204565b806395d89b41116100e757806395d89b41146105c657806396f8f6dd146105f1578063a0712d6814610608578063a22cb46514610624578063a7b8cd4d1461064d57610204565b8063715018a61461053257806379c9cb7b146105495780638da5cb5b1461057257806391b7f5ed1461059d57610204565b806332cb6b0c1161019b57806355f804b31161016a57806355f804b3146104395780636352211e14610462578063676dd5631461049f5780636c0360eb146104ca57806370a08231146104f557610204565b806332cb6b0c146103915780633ccfd60b146103bc57806342842e0e146103d35780634f6ccce7146103fc57610204565b806318160ddd116101d757806318160ddd146102d757806318ce801e1461030257806323b872dd1461032b5780632f745c591461035457610204565b806301ffc9a71461020957806306fdde0314610246578063081812fc14610271578063095ea7b3146102ae575b600080fd5b34801561021557600080fd5b50610230600480360381019061022b91906131c0565b61081b565b60405161023d9190613733565b60405180910390f35b34801561025257600080fd5b5061025b610965565b604051610268919061374e565b60405180910390f35b34801561027d57600080fd5b5061029860048036038101906102939190613263565b6109f7565b6040516102a591906136cc565b60405180910390f35b3480156102ba57600080fd5b506102d560048036038101906102d09190613180565b610a7c565b005b3480156102e357600080fd5b506102ec610b95565b6040516102f99190613a70565b60405180910390f35b34801561030e57600080fd5b5061032960048036038101906103249190613263565b610b9e565b005b34801561033757600080fd5b50610352600480360381019061034d919061306a565b610c24565b005b34801561036057600080fd5b5061037b60048036038101906103769190613180565b610c34565b6040516103889190613a70565b60405180910390f35b34801561039d57600080fd5b506103a6610e32565b6040516103b39190613a70565b60405180910390f35b3480156103c857600080fd5b506103d1610e38565b005b3480156103df57600080fd5b506103fa60048036038101906103f5919061306a565b610ef4565b005b34801561040857600080fd5b50610423600480360381019061041e9190613263565b610f14565b6040516104309190613a70565b60405180910390f35b34801561044557600080fd5b50610460600480360381019061045b919061321a565b610f67565b005b34801561046e57600080fd5b5061048960048036038101906104849190613263565b610ffd565b60405161049691906136cc565b60405180910390f35b3480156104ab57600080fd5b506104b4611013565b6040516104c19190613a70565b60405180910390f35b3480156104d657600080fd5b506104df611019565b6040516104ec919061374e565b60405180910390f35b34801561050157600080fd5b5061051c60048036038101906105179190612ffd565b6110a7565b6040516105299190613a70565b60405180910390f35b34801561053e57600080fd5b50610547611190565b005b34801561055557600080fd5b50610570600480360381019061056b9190613263565b611218565b005b34801561057e57600080fd5b5061058761129e565b60405161059491906136cc565b60405180910390f35b3480156105a957600080fd5b506105c460048036038101906105bf9190613263565b6112c8565b005b3480156105d257600080fd5b506105db61134e565b6040516105e8919061374e565b60405180910390f35b3480156105fd57600080fd5b506106066113e0565b005b610622600480360381019061061d9190613263565b611488565b005b34801561063057600080fd5b5061064b60048036038101906106469190613140565b6115dc565b005b34801561065957600080fd5b5061066261175d565b60405161066f9190613a70565b60405180910390f35b34801561068457600080fd5b5061069f600480360381019061069a91906130bd565b6117a4565b005b3480156106ad57600080fd5b506106c860048036038101906106c39190613263565b611800565b6040516106d5919061374e565b60405180910390f35b3480156106ea57600080fd5b506106f36118a7565b6040516107009190613a70565b60405180910390f35b34801561071557600080fd5b5061071e6118ad565b60405161072b9190613a70565b60405180910390f35b34801561074057600080fd5b506107496118b3565b604051610756919061374e565b60405180910390f35b34801561076b57600080fd5b50610774611941565b604051610781919061374e565b60405180910390f35b34801561079657600080fd5b506107b160048036038101906107ac919061302a565b6119cf565b6040516107be9190613733565b60405180910390f35b3480156107d357600080fd5b506107ee60048036038101906107e99190612ffd565b611a63565b005b3480156107fc57600080fd5b50610805611b5b565b6040516108129190613733565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806108e657507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061094e57507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061095e575061095d82611b6e565b5b9050919050565b60606001805461097490613de0565b80601f01602080910402602001604051908101604052809291908181526020018280546109a090613de0565b80156109ed5780601f106109c2576101008083540402835291602001916109ed565b820191906000526020600020905b8154815290600101906020018083116109d057829003601f168201915b5050505050905090565b6000610a0282611bd8565b610a41576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a3890613a30565b60405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610a8782610ffd565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610af8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610aef90613970565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610b17611be5565b73ffffffffffffffffffffffffffffffffffffffff161480610b465750610b4581610b40611be5565b6119cf565b5b610b85576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b7c90613870565b60405180910390fd5b610b90838383611bed565b505050565b60008054905090565b610ba6611be5565b73ffffffffffffffffffffffffffffffffffffffff16610bc461129e565b73ffffffffffffffffffffffffffffffffffffffff1614610c1a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c11906138d0565b60405180910390fd5b80600a8190555050565b610c2f838383611c9f565b505050565b6000610c3f836110a7565b8210610c80576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c7790613770565b60405180910390fd5b6000610c8a610b95565b905060008060005b83811015610df0576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614610d8457806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610ddc5786841415610dcd578195505050505050610e2c565b8380610dd890613e43565b9450505b508080610de890613e43565b915050610c92565b506040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e23906139f0565b60405180910390fd5b92915050565b600a5481565b610e40611be5565b73ffffffffffffffffffffffffffffffffffffffff16610e5e61129e565b73ffffffffffffffffffffffffffffffffffffffff1614610eb4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eab906138d0565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050610ef257600080fd5b565b610f0f838383604051806020016040528060008152506117a4565b505050565b6000610f1e610b95565b8210610f5f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f56906137f0565b60405180910390fd5b819050919050565b610f6f611be5565b73ffffffffffffffffffffffffffffffffffffffff16610f8d61129e565b73ffffffffffffffffffffffffffffffffffffffff1614610fe3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fda906138d0565b60405180910390fd5b80600f9080519060200190610ff9929190612dd7565b5050565b600061100882612258565b600001519050919050565b60095481565b600f805461102690613de0565b80601f016020809104026020016040519081016040528092919081815260200182805461105290613de0565b801561109f5780601f106110745761010080835404028352916020019161109f565b820191906000526020600020905b81548152906001019060200180831161108257829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611118576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161110f90613890565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b611198611be5565b73ffffffffffffffffffffffffffffffffffffffff166111b661129e565b73ffffffffffffffffffffffffffffffffffffffff161461120c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611203906138d0565b60405180910390fd5b611216600061245b565b565b611220611be5565b73ffffffffffffffffffffffffffffffffffffffff1661123e61129e565b73ffffffffffffffffffffffffffffffffffffffff1614611294576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161128b906138d0565b60405180910390fd5b80600b8190555050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6112d0611be5565b73ffffffffffffffffffffffffffffffffffffffff166112ee61129e565b73ffffffffffffffffffffffffffffffffffffffff1614611344576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161133b906138d0565b60405180910390fd5b8060098190555050565b60606002805461135d90613de0565b80601f016020809104026020016040519081016040528092919081815260200182805461138990613de0565b80156113d65780601f106113ab576101008083540402835291602001916113d6565b820191906000526020600020905b8154815290600101906020018083116113b957829003601f168201915b5050505050905090565b6113e8611be5565b73ffffffffffffffffffffffffffffffffffffffff1661140661129e565b73ffffffffffffffffffffffffffffffffffffffff161461145c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611453906138d0565b60405180910390fd5b600e60009054906101000a900460ff1615600e60006101000a81548160ff021916908315150217905550565b600e60009054906101000a900460ff166114d7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114ce90613850565b60405180910390fd5b6000811180156114e95750600b548111155b611528576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161151f90613950565b60405180910390fd5b600a5481611534610b95565b61153e9190613b9b565b111561157f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161157690613790565b60405180910390fd5b8060095461158d9190613c22565b3410156115cf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115c690613830565b60405180910390fd5b6115d93382612521565b50565b6115e4611be5565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611652576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161164990613910565b60405180910390fd5b806006600061165f611be5565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661170c611be5565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516117519190613733565b60405180910390a35050565b6000601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905090565b6117af848484611c9f565b6117bb8484848461253f565b6117fa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117f190613990565b60405180910390fd5b50505050565b606061180b82611bd8565b61184a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611841906138f0565b60405180910390fd5b60006118546126d6565b90506000815111611874576040518060200160405280600081525061189f565b8061187e84612768565b60405160200161188f9291906136a8565b6040516020818303038152906040525b915050919050565b600b5481565b60075481565b600d80546118c090613de0565b80601f01602080910402602001604051908101604052809291908181526020018280546118ec90613de0565b80156119395780601f1061190e57610100808354040283529160200191611939565b820191906000526020600020905b81548152906001019060200180831161191c57829003601f168201915b505050505081565b600c805461194e90613de0565b80601f016020809104026020016040519081016040528092919081815260200182805461197a90613de0565b80156119c75780601f1061199c576101008083540402835291602001916119c7565b820191906000526020600020905b8154815290600101906020018083116119aa57829003601f168201915b505050505081565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611a6b611be5565b73ffffffffffffffffffffffffffffffffffffffff16611a8961129e565b73ffffffffffffffffffffffffffffffffffffffff1614611adf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ad6906138d0565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611b4f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b46906137b0565b60405180910390fd5b611b588161245b565b50565b600e60009054906101000a900460ff1681565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6000805482109050919050565b600033905090565b826005600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b6000611caa82612258565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff16611cd1611be5565b73ffffffffffffffffffffffffffffffffffffffff161480611d2d5750611cf6611be5565b73ffffffffffffffffffffffffffffffffffffffff16611d15846109f7565b73ffffffffffffffffffffffffffffffffffffffff16145b80611d495750611d488260000151611d43611be5565b6119cf565b5b905080611d8b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d8290613930565b60405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff1614611dfd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611df4906138b0565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611e6d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e6490613810565b60405180910390fd5b611e7a85858560016128c9565b611e8a6000848460000151611bed565b6001600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff16611ef89190613c7c565b92506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff1602179055506001600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff16611f9c9190613b55565b92506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060405180604001604052808573ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506003600085815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555090505060006001846120a29190613b9b565b9050600073ffffffffffffffffffffffffffffffffffffffff166003600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614156121e85761211881611bd8565b156121e7576040518060400160405280846000015173ffffffffffffffffffffffffffffffffffffffff168152602001846020015167ffffffffffffffff168152506003600083815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055509050505b5b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461225086868660016128cf565b505050505050565b612260612e5d565b61226982611bd8565b6122a8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161229f906137d0565b60405180910390fd5b60007f000000000000000000000000000000000000000000000000000000000000000a831061230c5760017f000000000000000000000000000000000000000000000000000000000000000a846122ff9190613cb0565b6123099190613b9b565b90505b60008390505b81811061241a576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461240657809350505050612456565b50808061241290613db6565b915050612312565b506040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161244d90613a10565b60405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b61253b8282604051806020016040528060008152506128d5565b5050565b60006125608473ffffffffffffffffffffffffffffffffffffffff16612db4565b156126c9578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612589611be5565b8786866040518563ffffffff1660e01b81526004016125ab94939291906136e7565b602060405180830381600087803b1580156125c557600080fd5b505af19250505080156125f657506040513d601f19601f820116820180604052508101906125f391906131ed565b60015b612679573d8060008114612626576040519150601f19603f3d011682016040523d82523d6000602084013e61262b565b606091505b50600081511415612671576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161266890613990565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506126ce565b600190505b949350505050565b6060600f80546126e590613de0565b80601f016020809104026020016040519081016040528092919081815260200182805461271190613de0565b801561275e5780601f106127335761010080835404028352916020019161275e565b820191906000526020600020905b81548152906001019060200180831161274157829003601f168201915b5050505050905090565b606060008214156127b0576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506128c4565b600082905060005b600082146127e25780806127cb90613e43565b915050600a826127db9190613bf1565b91506127b8565b60008167ffffffffffffffff8111156127fe576127fd613f79565b5b6040519080825280601f01601f1916602001820160405280156128305781602001600182028036833780820191505090505b5090505b600085146128bd576001826128499190613cb0565b9150600a856128589190613e8c565b60306128649190613b9b565b60f81b81838151811061287a57612879613f4a565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856128b69190613bf1565b9450612834565b8093505050505b919050565b50505050565b50505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16141561294b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612942906139d0565b60405180910390fd5b61295481611bd8565b15612994576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161298b906139b0565b60405180910390fd5b7f000000000000000000000000000000000000000000000000000000000000000a8311156129f7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129ee90613a50565b60405180910390fd5b612a0460008583866128c9565b6000600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206040518060400160405290816000820160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff1681526020016000820160109054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff168152505090506040518060400160405280858360000151612b019190613b55565b6fffffffffffffffffffffffffffffffff168152602001858360200151612b289190613b55565b6fffffffffffffffffffffffffffffffff16815250600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008201518160000160006101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060208201518160000160106101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555090505060405180604001604052808673ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506003600084815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550905050600082905060005b85811015612d9757818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612d37600088848861253f565b612d76576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d6d90613990565b60405180910390fd5b8180612d8190613e43565b9250508080612d8f90613e43565b915050612cc6565b5080600081905550612dac60008785886128cf565b505050505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b828054612de390613de0565b90600052602060002090601f016020900481019282612e055760008555612e4c565b82601f10612e1e57805160ff1916838001178555612e4c565b82800160010185558215612e4c579182015b82811115612e4b578251825591602001919060010190612e30565b5b509050612e599190612e97565b5090565b6040518060400160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681525090565b5b80821115612eb0576000816000905550600101612e98565b5090565b6000612ec7612ec284613ab0565b613a8b565b905082815260208101848484011115612ee357612ee2613fad565b5b612eee848285613d74565b509392505050565b6000612f09612f0484613ae1565b613a8b565b905082815260208101848484011115612f2557612f24613fad565b5b612f30848285613d74565b509392505050565b600081359050612f4781614677565b92915050565b600081359050612f5c8161468e565b92915050565b600081359050612f71816146a5565b92915050565b600081519050612f86816146a5565b92915050565b600082601f830112612fa157612fa0613fa8565b5b8135612fb1848260208601612eb4565b91505092915050565b600082601f830112612fcf57612fce613fa8565b5b8135612fdf848260208601612ef6565b91505092915050565b600081359050612ff7816146bc565b92915050565b60006020828403121561301357613012613fb7565b5b600061302184828501612f38565b91505092915050565b6000806040838503121561304157613040613fb7565b5b600061304f85828601612f38565b925050602061306085828601612f38565b9150509250929050565b60008060006060848603121561308357613082613fb7565b5b600061309186828701612f38565b93505060206130a286828701612f38565b92505060406130b386828701612fe8565b9150509250925092565b600080600080608085870312156130d7576130d6613fb7565b5b60006130e587828801612f38565b94505060206130f687828801612f38565b935050604061310787828801612fe8565b925050606085013567ffffffffffffffff81111561312857613127613fb2565b5b61313487828801612f8c565b91505092959194509250565b6000806040838503121561315757613156613fb7565b5b600061316585828601612f38565b925050602061317685828601612f4d565b9150509250929050565b6000806040838503121561319757613196613fb7565b5b60006131a585828601612f38565b92505060206131b685828601612fe8565b9150509250929050565b6000602082840312156131d6576131d5613fb7565b5b60006131e484828501612f62565b91505092915050565b60006020828403121561320357613202613fb7565b5b600061321184828501612f77565b91505092915050565b6000602082840312156132305761322f613fb7565b5b600082013567ffffffffffffffff81111561324e5761324d613fb2565b5b61325a84828501612fba565b91505092915050565b60006020828403121561327957613278613fb7565b5b600061328784828501612fe8565b91505092915050565b61329981613ce4565b82525050565b6132a881613cf6565b82525050565b60006132b982613b12565b6132c38185613b28565b93506132d3818560208601613d83565b6132dc81613fbc565b840191505092915050565b60006132f282613b1d565b6132fc8185613b39565b935061330c818560208601613d83565b61331581613fbc565b840191505092915050565b600061332b82613b1d565b6133358185613b4a565b9350613345818560208601613d83565b80840191505092915050565b600061335e602283613b39565b915061336982613fcd565b604082019050919050565b6000613381600883613b39565b915061338c8261401c565b602082019050919050565b60006133a4602683613b39565b91506133af82614045565b604082019050919050565b60006133c7602a83613b39565b91506133d282614094565b604082019050919050565b60006133ea602383613b39565b91506133f5826140e3565b604082019050919050565b600061340d602583613b39565b915061341882614132565b604082019050919050565b6000613430602283613b39565b915061343b82614181565b604082019050919050565b6000613453601083613b39565b915061345e826141d0565b602082019050919050565b6000613476603983613b39565b9150613481826141f9565b604082019050919050565b6000613499602b83613b39565b91506134a482614248565b604082019050919050565b60006134bc602683613b39565b91506134c782614297565b604082019050919050565b60006134df602083613b39565b91506134ea826142e6565b602082019050919050565b6000613502602f83613b39565b915061350d8261430f565b604082019050919050565b6000613525601a83613b39565b91506135308261435e565b602082019050919050565b6000613548603283613b39565b915061355382614387565b604082019050919050565b600061356b602183613b39565b9150613576826143d6565b604082019050919050565b600061358e602283613b39565b915061359982614425565b604082019050919050565b60006135b1603383613b39565b91506135bc82614474565b604082019050919050565b60006135d4601d83613b39565b91506135df826144c3565b602082019050919050565b60006135f7602183613b39565b9150613602826144ec565b604082019050919050565b600061361a602e83613b39565b91506136258261453b565b604082019050919050565b600061363d602f83613b39565b91506136488261458a565b604082019050919050565b6000613660602d83613b39565b915061366b826145d9565b604082019050919050565b6000613683602283613b39565b915061368e82614628565b604082019050919050565b6136a281613d6a565b82525050565b60006136b48285613320565b91506136c08284613320565b91508190509392505050565b60006020820190506136e16000830184613290565b92915050565b60006080820190506136fc6000830187613290565b6137096020830186613290565b6137166040830185613699565b818103606083015261372881846132ae565b905095945050505050565b6000602082019050613748600083018461329f565b92915050565b6000602082019050818103600083015261376881846132e7565b905092915050565b6000602082019050818103600083015261378981613351565b9050919050565b600060208201905081810360008301526137a981613374565b9050919050565b600060208201905081810360008301526137c981613397565b9050919050565b600060208201905081810360008301526137e9816133ba565b9050919050565b60006020820190508181036000830152613809816133dd565b9050919050565b6000602082019050818103600083015261382981613400565b9050919050565b6000602082019050818103600083015261384981613423565b9050919050565b6000602082019050818103600083015261386981613446565b9050919050565b6000602082019050818103600083015261388981613469565b9050919050565b600060208201905081810360008301526138a98161348c565b9050919050565b600060208201905081810360008301526138c9816134af565b9050919050565b600060208201905081810360008301526138e9816134d2565b9050919050565b60006020820190508181036000830152613909816134f5565b9050919050565b6000602082019050818103600083015261392981613518565b9050919050565b600060208201905081810360008301526139498161353b565b9050919050565b600060208201905081810360008301526139698161355e565b9050919050565b6000602082019050818103600083015261398981613581565b9050919050565b600060208201905081810360008301526139a9816135a4565b9050919050565b600060208201905081810360008301526139c9816135c7565b9050919050565b600060208201905081810360008301526139e9816135ea565b9050919050565b60006020820190508181036000830152613a098161360d565b9050919050565b60006020820190508181036000830152613a2981613630565b9050919050565b60006020820190508181036000830152613a4981613653565b9050919050565b60006020820190508181036000830152613a6981613676565b9050919050565b6000602082019050613a856000830184613699565b92915050565b6000613a95613aa6565b9050613aa18282613e12565b919050565b6000604051905090565b600067ffffffffffffffff821115613acb57613aca613f79565b5b613ad482613fbc565b9050602081019050919050565b600067ffffffffffffffff821115613afc57613afb613f79565b5b613b0582613fbc565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000613b6082613d2e565b9150613b6b83613d2e565b9250826fffffffffffffffffffffffffffffffff03821115613b9057613b8f613ebd565b5b828201905092915050565b6000613ba682613d6a565b9150613bb183613d6a565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613be657613be5613ebd565b5b828201905092915050565b6000613bfc82613d6a565b9150613c0783613d6a565b925082613c1757613c16613eec565b5b828204905092915050565b6000613c2d82613d6a565b9150613c3883613d6a565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613c7157613c70613ebd565b5b828202905092915050565b6000613c8782613d2e565b9150613c9283613d2e565b925082821015613ca557613ca4613ebd565b5b828203905092915050565b6000613cbb82613d6a565b9150613cc683613d6a565b925082821015613cd957613cd8613ebd565b5b828203905092915050565b6000613cef82613d4a565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b60006fffffffffffffffffffffffffffffffff82169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015613da1578082015181840152602081019050613d86565b83811115613db0576000848401525b50505050565b6000613dc182613d6a565b91506000821415613dd557613dd4613ebd565b5b600182039050919050565b60006002820490506001821680613df857607f821691505b60208210811415613e0c57613e0b613f1b565b5b50919050565b613e1b82613fbc565b810181811067ffffffffffffffff82111715613e3a57613e39613f79565b5b80604052505050565b6000613e4e82613d6a565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613e8157613e80613ebd565b5b600182019050919050565b6000613e9782613d6a565b9150613ea283613d6a565b925082613eb257613eb1613eec565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f455243373231413a206f776e657220696e646578206f7574206f6620626f756e60008201527f6473000000000000000000000000000000000000000000000000000000000000602082015250565b7f536f6c64204f7574000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a206f776e657220717565727920666f72206e6f6e6578697360008201527f74656e7420746f6b656e00000000000000000000000000000000000000000000602082015250565b7f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f7560008201527f6e64730000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f416d6f756e74206f662065746865722073656e74206973206e6f7420656e6f7560008201527f6768000000000000000000000000000000000000000000000000000000000000602082015250565b7f53616c65206e6f74207374617274656400000000000000000000000000000000600082015250565b7f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000602082015250565b7f455243373231413a2062616c616e636520717565727920666f7220746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e736665722066726f6d20696e636f727265637460008201527f206f776e65720000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f455243373231413a20617070726f766520746f2063616c6c6572000000000000600082015250565b7f455243373231413a207472616e736665722063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b7f4d757374206d696e74206265747765656e203120616e6420313020746f6b656e60008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60008201527f6572000000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e7366657220746f206e6f6e204552433732315260008201527f6563656976657220696d706c656d656e74657200000000000000000000000000602082015250565b7f455243373231413a20746f6b656e20616c7265616479206d696e746564000000600082015250565b7f455243373231413a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060008201527f6f776e657220627920696e646578000000000000000000000000000000000000602082015250565b7f455243373231413a20756e61626c6520746f2064657465726d696e652074686560008201527f206f776e6572206f6620746f6b656e0000000000000000000000000000000000602082015250565b7f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560008201527f78697374656e7420746f6b656e00000000000000000000000000000000000000602082015250565b7f455243373231413a207175616e7469747920746f206d696e7420746f6f20686960008201527f6768000000000000000000000000000000000000000000000000000000000000602082015250565b61468081613ce4565b811461468b57600080fd5b50565b61469781613cf6565b81146146a257600080fd5b50565b6146ae81613d02565b81146146b957600080fd5b50565b6146c581613d6a565b81146146d057600080fd5b5056fea2646970667358221220d8d2b621956da556af6f4da4529ed4b8fbee1a7dc42d6fe0fa11859cd0924ba964736f6c63430008070033

Deployed Bytecode Sourcemap

42686:1889:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27766:370;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29492:94;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31017:204;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30580:379;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;26327:94;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44108:96;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;31867:142;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;26958:744;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42777:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44460:112;;;;;;;;;;;;;:::i;:::-;;32072:157;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;26490:177;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43799:102;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;29315:118;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42733:37;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42976:94;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28192:211;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41781:103;;;;;;;;;;;;;:::i;:::-;;44009:91;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;41130:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43909:92;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;29647:98;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43704:87;;;;;;;;;;;;;:::i;:::-;;43211:485;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;31285:274;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;44332:120;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32292:311;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;29808:394;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42816:29;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36707:43;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42896:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42852:37;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31622:186;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42039:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;42936:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27766:370;27893:4;27938:25;27923:40;;;:11;:40;;;;:99;;;;27989:33;27974:48;;;:11;:48;;;;27923:99;:160;;;;28048:35;28033:50;;;:11;:50;;;;27923:160;:207;;;;28094:36;28118:11;28094:23;:36::i;:::-;27923:207;27909:221;;27766:370;;;:::o;29492:94::-;29546:13;29575:5;29568:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29492:94;:::o;31017:204::-;31085:7;31109:16;31117:7;31109;:16::i;:::-;31101:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;31191:15;:24;31207:7;31191:24;;;;;;;;;;;;;;;;;;;;;31184:31;;31017:204;;;:::o;30580:379::-;30649:13;30665:24;30681:7;30665:15;:24::i;:::-;30649:40;;30710:5;30704:11;;:2;:11;;;;30696:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;30795:5;30779:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;30804:37;30821:5;30828:12;:10;:12::i;:::-;30804:16;:37::i;:::-;30779:62;30763:153;;;;;;;;;;;;:::i;:::-;;;;;;;;;30925:28;30934:2;30938:7;30947:5;30925:8;:28::i;:::-;30642:317;30580:379;;:::o;26327:94::-;26380:7;26403:12;;26396:19;;26327:94;:::o;44108:96::-;41361:12;:10;:12::i;:::-;41350:23;;:7;:5;:7::i;:::-;:23;;;41342:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;44187:9:::1;44174:10;:22;;;;44108:96:::0;:::o;31867:142::-;31975:28;31985:4;31991:2;31995:7;31975:9;:28::i;:::-;31867:142;;;:::o;26958:744::-;27067:7;27102:16;27112:5;27102:9;:16::i;:::-;27094:5;:24;27086:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;27164:22;27189:13;:11;:13::i;:::-;27164:38;;27209:19;27239:25;27289:9;27284:350;27308:14;27304:1;:18;27284:350;;;27338:31;27372:11;:14;27384:1;27372:14;;;;;;;;;;;27338:48;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27425:1;27399:28;;:9;:14;;;:28;;;27395:89;;27460:9;:14;;;27440:34;;27395:89;27517:5;27496:26;;:17;:26;;;27492:135;;;27554:5;27539:11;:20;27535:59;;;27581:1;27574:8;;;;;;;;;27535:59;27604:13;;;;;:::i;:::-;;;;27492:135;27329:305;27324:3;;;;;:::i;:::-;;;;27284:350;;;;27640:56;;;;;;;;;;:::i;:::-;;;;;;;;26958:744;;;;;:::o;42777:32::-;;;;:::o;44460:112::-;41361:12;:10;:12::i;:::-;41350:23;;:7;:5;:7::i;:::-;:23;;;41342:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;44524:10:::1;44516:24;;:47;44541:21;44516:47;;;;;;;;;;;;;;;;;;;;;;;44508:56;;;::::0;::::1;;44460:112::o:0;32072:157::-;32184:39;32201:4;32207:2;32211:7;32184:39;;;;;;;;;;;;:16;:39::i;:::-;32072:157;;;:::o;26490:177::-;26557:7;26589:13;:11;:13::i;:::-;26581:5;:21;26573:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;26656:5;26649:12;;26490:177;;;:::o;43799:102::-;41361:12;:10;:12::i;:::-;41350:23;;:7;:5;:7::i;:::-;:23;;;41342:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;43883:10:::1;43873:7;:20;;;;;;;;;;;;:::i;:::-;;43799:102:::0;:::o;29315:118::-;29379:7;29402:20;29414:7;29402:11;:20::i;:::-;:25;;;29395:32;;29315:118;;;:::o;42733:37::-;;;;:::o;42976:94::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;28192:211::-;28256:7;28297:1;28280:19;;:5;:19;;;;28272:75;;;;;;;;;;;;:::i;:::-;;;;;;;;;28369:12;:19;28382:5;28369:19;;;;;;;;;;;;;;;:27;;;;;;;;;;;;28361:36;;28354:43;;28192:211;;;:::o;41781:103::-;41361:12;:10;:12::i;:::-;41350:23;;:7;:5;:7::i;:::-;:23;;;41342:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;41846:30:::1;41873:1;41846:18;:30::i;:::-;41781:103::o:0;44009:91::-;41361:12;:10;:12::i;:::-;41350:23;;:7;:5;:7::i;:::-;:23;;;41342:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;44086:6:::1;44074:9;:18;;;;44009:91:::0;:::o;41130:87::-;41176:7;41203:6;;;;;;;;;;;41196:13;;41130:87;:::o;43909:92::-;41361:12;:10;:12::i;:::-;41350:23;;:7;:5;:7::i;:::-;:23;;;41342:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;43985:8:::1;43973:9;:20;;;;43909:92:::0;:::o;29647:98::-;29703:13;29732:7;29725:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29647:98;:::o;43704:87::-;41361:12;:10;:12::i;:::-;41350:23;;:7;:5;:7::i;:::-;:23;;;41342:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;43772:11:::1;;;;;;;;;;;43771:12;43757:11;;:26;;;;;;;;;;;;;;;;;;43704:87::o:0;43211:485::-;43278:11;;;;;;;;;;;43270:40;;;;;;;;;;;;:::i;:::-;;;;;;;;;43355:1;43343:9;:13;:39;;;;;43373:9;;43360;:22;;43343:39;43321:122;;;;;;;;;;;;:::i;:::-;;;;;;;;;43491:10;;43478:9;43462:13;:11;:13::i;:::-;:25;;;;:::i;:::-;:39;;43454:60;;;;;;;;;;;;:::i;:::-;;;;;;;;;43572:9;43560;;:21;;;;:::i;:::-;43547:9;:34;;43525:118;;;;;;;;;;;;:::i;:::-;;;;;;;;;43656:32;43666:10;43678:9;43656;:32::i;:::-;43211:485;:::o;31285:274::-;31388:12;:10;:12::i;:::-;31376:24;;:8;:24;;;;31368:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;31485:8;31440:18;:32;31459:12;:10;:12::i;:::-;31440:32;;;;;;;;;;;;;;;:42;31473:8;31440:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;31534:8;31505:48;;31520:12;:10;:12::i;:::-;31505:48;;;31544:8;31505:48;;;;;;:::i;:::-;;;;;;;;31285:274;;:::o;44332:120::-;44383:7;44410:22;:34;44433:10;44410:34;;;;;;;;;;;;;;;;44403:41;;44332:120;:::o;32292:311::-;32429:28;32439:4;32445:2;32449:7;32429:9;:28::i;:::-;32480:48;32503:4;32509:2;32513:7;32522:5;32480:22;:48::i;:::-;32464:133;;;;;;;;;;;;:::i;:::-;;;;;;;;;32292:311;;;;:::o;29808:394::-;29906:13;29947:16;29955:7;29947;:16::i;:::-;29931:97;;;;;;;;;;;;:::i;:::-;;;;;;;;;30037:21;30061:10;:8;:10::i;:::-;30037:34;;30116:1;30098:7;30092:21;:25;:104;;;;;;;;;;;;;;;;;30153:7;30162:18;:7;:16;:18::i;:::-;30136:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;30092:104;30078:118;;;29808:394;;;:::o;42816:29::-;;;;:::o;36707:43::-;;;;:::o;42896:31::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;42852:37::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;31622:186::-;31744:4;31767:18;:25;31786:5;31767:25;;;;;;;;;;;;;;;:35;31793:8;31767:35;;;;;;;;;;;;;;;;;;;;;;;;;31760:42;;31622:186;;;;:::o;42039:201::-;41361:12;:10;:12::i;:::-;41350:23;;:7;:5;:7::i;:::-;:23;;;41342:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;42148:1:::1;42128:22;;:8;:22;;;;42120:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;42204:28;42223:8;42204:18;:28::i;:::-;42039:201:::0;:::o;42936:31::-;;;;;;;;;;;;;:::o;13440:157::-;13525:4;13564:25;13549:40;;;:11;:40;;;;13542:47;;13440:157;;;:::o;32842:105::-;32899:4;32929:12;;32919:7;:22;32912:29;;32842:105;;;:::o;23797:98::-;23850:7;23877:10;23870:17;;23797:98;:::o;36529:172::-;36653:2;36626:15;:24;36642:7;36626:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;36687:7;36683:2;36667:28;;36676:5;36667:28;;;;;;;;;;;;36529:172;;;:::o;34894:1529::-;34991:35;35029:20;35041:7;35029:11;:20::i;:::-;34991:58;;35058:22;35100:13;:18;;;35084:34;;:12;:10;:12::i;:::-;:34;;;:81;;;;35153:12;:10;:12::i;:::-;35129:36;;:20;35141:7;35129:11;:20::i;:::-;:36;;;35084:81;:142;;;;35176:50;35193:13;:18;;;35213:12;:10;:12::i;:::-;35176:16;:50::i;:::-;35084:142;35058:169;;35252:17;35236:101;;;;;;;;;;;;:::i;:::-;;;;;;;;;35384:4;35362:26;;:13;:18;;;:26;;;35346:98;;;;;;;;;;;;:::i;:::-;;;;;;;;;35473:1;35459:16;;:2;:16;;;;35451:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;35526:43;35548:4;35554:2;35558:7;35567:1;35526:21;:43::i;:::-;35626:49;35643:1;35647:7;35656:13;:18;;;35626:8;:49::i;:::-;35714:1;35684:12;:18;35697:4;35684:18;;;;;;;;;;;;;;;:26;;;:31;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;35750:1;35722:12;:16;35735:2;35722:16;;;;;;;;;;;;;;;:24;;;:29;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;35781:43;;;;;;;;35796:2;35781:43;;;;;;35807:15;35781:43;;;;;35758:11;:20;35770:7;35758:20;;;;;;;;;;;:66;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36052:19;36084:1;36074:7;:11;;;;:::i;:::-;36052:33;;36137:1;36096:43;;:11;:24;36108:11;36096:24;;;;;;;;;;;:29;;;;;;;;;;;;:43;;;36092:236;;;36154:20;36162:11;36154:7;:20::i;:::-;36150:171;;;36214:97;;;;;;;;36241:13;:18;;;36214:97;;;;;;36272:13;:28;;;36214:97;;;;;36187:11;:24;36199:11;36187:24;;;;;;;;;;;:124;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36150:171;36092:236;36360:7;36356:2;36341:27;;36350:4;36341:27;;;;;;;;;;;;36375:42;36396:4;36402:2;36406:7;36415:1;36375:20;:42::i;:::-;34984:1439;;;34894:1529;;;:::o;28655:606::-;28731:21;;:::i;:::-;28772:16;28780:7;28772;:16::i;:::-;28764:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;28844:26;28892:12;28881:7;:23;28877:93;;28961:1;28946:12;28936:7;:22;;;;:::i;:::-;:26;;;;:::i;:::-;28915:47;;28877:93;28983:12;28998:7;28983:22;;28978:212;29015:18;29007:4;:26;28978:212;;29052:31;29086:11;:17;29098:4;29086:17;;;;;;;;;;;29052:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29142:1;29116:28;;:9;:14;;;:28;;;29112:71;;29164:9;29157:16;;;;;;;29112:71;29043:147;29035:6;;;;;:::i;:::-;;;;28978:212;;;;29198:57;;;;;;;;;;:::i;:::-;;;;;;;;28655:606;;;;:::o;42400:191::-;42474:16;42493:6;;;;;;;;;;;42474:25;;42519:8;42510:6;;:17;;;;;;;;;;;;;;;;;;42574:8;42543:40;;42564:8;42543:40;;;;;;;;;;;;42463:128;42400:191;:::o;32953:98::-;33018:27;33028:2;33032:8;33018:27;;;;;;;;;;;;:9;:27::i;:::-;32953:98;;:::o;38244:690::-;38381:4;38398:15;:2;:13;;;:15::i;:::-;38394:535;;;38453:2;38437:36;;;38474:12;:10;:12::i;:::-;38488:4;38494:7;38503:5;38437:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;38424:464;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38685:1;38668:6;:13;:18;38664:215;;;38701:61;;;;;;;;;;:::i;:::-;;;;;;;;38664:215;38847:6;38841:13;38832:6;38828:2;38824:15;38817:38;38424:464;38569:45;;;38559:55;;;:6;:55;;;;38552:62;;;;;38394:535;38917:4;38910:11;;38244:690;;;;;;;:::o;44212:108::-;44272:13;44305:7;44298:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44212:108;:::o;365:723::-;421:13;651:1;642:5;:10;638:53;;;669:10;;;;;;;;;;;;;;;;;;;;;638:53;701:12;716:5;701:20;;732:14;757:78;772:1;764:4;:9;757:78;;790:8;;;;;:::i;:::-;;;;821:2;813:10;;;;;:::i;:::-;;;757:78;;;845:19;877:6;867:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;845:39;;895:154;911:1;902:5;:10;895:154;;939:1;929:11;;;;;:::i;:::-;;;1006:2;998:5;:10;;;;:::i;:::-;985:2;:24;;;;:::i;:::-;972:39;;955:6;962;955:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;1035:2;1026:11;;;;;:::i;:::-;;;895:154;;;1073:6;1059:21;;;;;365:723;;;;:::o;39396:141::-;;;;;:::o;39923:140::-;;;;;:::o;33390:1272::-;33495:20;33518:12;;33495:35;;33559:1;33545:16;;:2;:16;;;;33537:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;33736:21;33744:12;33736:7;:21::i;:::-;33735:22;33727:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;33818:12;33806:8;:24;;33798:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;33878:61;33908:1;33912:2;33916:12;33930:8;33878:21;:61::i;:::-;33948:30;33981:12;:16;33994:2;33981:16;;;;;;;;;;;;;;;33948:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34023:119;;;;;;;;34073:8;34043:11;:19;;;:39;;;;:::i;:::-;34023:119;;;;;;34126:8;34091:11;:24;;;:44;;;;:::i;:::-;34023:119;;;;;34004:12;:16;34017:2;34004:16;;;;;;;;;;;;;;;:138;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34177:43;;;;;;;;34192:2;34177:43;;;;;;34203:15;34177:43;;;;;34149:11;:25;34161:12;34149:25;;;;;;;;;;;:71;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34229:20;34252:12;34229:35;;34278:9;34273:281;34297:8;34293:1;:12;34273:281;;;34351:12;34347:2;34326:38;;34343:1;34326:38;;;;;;;;;;;;34391:59;34422:1;34426:2;34430:12;34444:5;34391:22;:59::i;:::-;34373:150;;;;;;;;;;;;:::i;:::-;;;;;;;;;34532:14;;;;;:::i;:::-;;;;34307:3;;;;;:::i;:::-;;;;34273:281;;;;34577:12;34562;:27;;;;34596:60;34625:1;34629:2;34633:12;34647:8;34596:20;:60::i;:::-;33488:1174;;;33390:1272;;;:::o;3357:326::-;3417:4;3674:1;3652:7;:19;;;:23;3645:30;;3357:326;;;:::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:365::-;9030:3;9051:66;9115:1;9110:3;9051:66;:::i;:::-;9044:73;;9126:93;9215:3;9126:93;:::i;:::-;9244:2;9239:3;9235:12;9228:19;;8888:365;;;:::o;9259:366::-;9401:3;9422:67;9486:2;9481:3;9422:67;:::i;:::-;9415:74;;9498:93;9587:3;9498:93;:::i;:::-;9616:2;9611:3;9607:12;9600:19;;9259:366;;;:::o;9631:::-;9773:3;9794:67;9858:2;9853:3;9794:67;:::i;:::-;9787:74;;9870:93;9959:3;9870:93;:::i;:::-;9988:2;9983:3;9979:12;9972:19;;9631:366;;;:::o;10003:::-;10145:3;10166:67;10230:2;10225:3;10166:67;:::i;:::-;10159:74;;10242:93;10331:3;10242:93;:::i;:::-;10360:2;10355:3;10351:12;10344:19;;10003:366;;;:::o;10375:::-;10517:3;10538:67;10602:2;10597:3;10538:67;:::i;:::-;10531:74;;10614:93;10703:3;10614:93;:::i;:::-;10732:2;10727:3;10723:12;10716:19;;10375:366;;;:::o;10747:::-;10889:3;10910:67;10974:2;10969:3;10910:67;:::i;:::-;10903:74;;10986:93;11075:3;10986:93;:::i;:::-;11104:2;11099:3;11095:12;11088:19;;10747:366;;;:::o;11119:::-;11261:3;11282:67;11346:2;11341:3;11282:67;:::i;:::-;11275:74;;11358:93;11447:3;11358:93;:::i;:::-;11476:2;11471:3;11467:12;11460:19;;11119:366;;;:::o;11491:::-;11633:3;11654:67;11718:2;11713:3;11654:67;:::i;:::-;11647:74;;11730:93;11819:3;11730:93;:::i;:::-;11848:2;11843:3;11839:12;11832:19;;11491:366;;;:::o;11863:::-;12005:3;12026:67;12090:2;12085:3;12026:67;:::i;:::-;12019:74;;12102:93;12191:3;12102:93;:::i;:::-;12220:2;12215:3;12211:12;12204:19;;11863:366;;;:::o;12235:::-;12377:3;12398:67;12462:2;12457:3;12398:67;:::i;:::-;12391:74;;12474:93;12563:3;12474:93;:::i;:::-;12592:2;12587:3;12583:12;12576:19;;12235:366;;;:::o;12607:::-;12749:3;12770:67;12834:2;12829:3;12770:67;:::i;:::-;12763:74;;12846:93;12935:3;12846:93;:::i;:::-;12964:2;12959:3;12955:12;12948:19;;12607:366;;;:::o;12979:::-;13121:3;13142:67;13206:2;13201:3;13142:67;:::i;:::-;13135:74;;13218:93;13307:3;13218:93;:::i;:::-;13336:2;13331:3;13327:12;13320:19;;12979:366;;;:::o;13351:::-;13493:3;13514:67;13578:2;13573:3;13514:67;:::i;:::-;13507:74;;13590:93;13679:3;13590:93;:::i;:::-;13708:2;13703:3;13699:12;13692:19;;13351:366;;;:::o;13723:::-;13865:3;13886:67;13950:2;13945:3;13886:67;:::i;:::-;13879:74;;13962:93;14051:3;13962:93;:::i;:::-;14080:2;14075:3;14071:12;14064:19;;13723:366;;;:::o;14095:::-;14237:3;14258:67;14322:2;14317:3;14258:67;:::i;:::-;14251:74;;14334:93;14423:3;14334:93;:::i;:::-;14452:2;14447:3;14443:12;14436:19;;14095:366;;;:::o;14467:::-;14609:3;14630:67;14694:2;14689:3;14630:67;:::i;:::-;14623:74;;14706:93;14795:3;14706:93;:::i;:::-;14824:2;14819:3;14815:12;14808:19;;14467:366;;;:::o;14839:::-;14981:3;15002:67;15066:2;15061:3;15002:67;:::i;:::-;14995:74;;15078:93;15167:3;15078:93;:::i;:::-;15196:2;15191:3;15187:12;15180:19;;14839:366;;;:::o;15211:::-;15353:3;15374:67;15438:2;15433:3;15374:67;:::i;:::-;15367:74;;15450:93;15539:3;15450:93;:::i;:::-;15568:2;15563:3;15559:12;15552:19;;15211:366;;;:::o;15583:::-;15725:3;15746:67;15810:2;15805:3;15746:67;:::i;:::-;15739:74;;15822:93;15911:3;15822:93;:::i;:::-;15940:2;15935:3;15931:12;15924:19;;15583:366;;;:::o;15955:::-;16097:3;16118:67;16182:2;16177:3;16118:67;:::i;:::-;16111:74;;16194:93;16283:3;16194:93;:::i;:::-;16312:2;16307:3;16303:12;16296:19;;15955:366;;;:::o;16327:::-;16469:3;16490:67;16554:2;16549:3;16490:67;:::i;:::-;16483:74;;16566:93;16655:3;16566:93;:::i;:::-;16684:2;16679:3;16675:12;16668:19;;16327:366;;;:::o;16699:::-;16841:3;16862:67;16926:2;16921:3;16862:67;:::i;:::-;16855:74;;16938:93;17027:3;16938:93;:::i;:::-;17056:2;17051:3;17047:12;17040:19;;16699:366;;;:::o;17071:::-;17213:3;17234:67;17298:2;17293:3;17234:67;:::i;:::-;17227:74;;17310:93;17399:3;17310:93;:::i;:::-;17428:2;17423:3;17419:12;17412:19;;17071:366;;;:::o;17443:118::-;17530:24;17548:5;17530:24;:::i;:::-;17525:3;17518:37;17443:118;;:::o;17567:435::-;17747:3;17769:95;17860:3;17851:6;17769:95;:::i;:::-;17762:102;;17881:95;17972:3;17963:6;17881:95;:::i;:::-;17874:102;;17993:3;17986:10;;17567:435;;;;;:::o;18008:222::-;18101:4;18139:2;18128:9;18124:18;18116:26;;18152:71;18220:1;18209:9;18205:17;18196:6;18152:71;:::i;:::-;18008:222;;;;:::o;18236:640::-;18431:4;18469:3;18458:9;18454:19;18446:27;;18483:71;18551:1;18540:9;18536:17;18527:6;18483:71;:::i;:::-;18564:72;18632:2;18621:9;18617:18;18608:6;18564:72;:::i;:::-;18646;18714:2;18703:9;18699:18;18690:6;18646:72;:::i;:::-;18765:9;18759:4;18755:20;18750:2;18739:9;18735:18;18728:48;18793:76;18864:4;18855:6;18793:76;:::i;:::-;18785:84;;18236:640;;;;;;;:::o;18882:210::-;18969:4;19007:2;18996:9;18992:18;18984:26;;19020:65;19082:1;19071:9;19067:17;19058:6;19020:65;:::i;:::-;18882:210;;;;:::o;19098:313::-;19211:4;19249:2;19238:9;19234:18;19226:26;;19298:9;19292:4;19288:20;19284:1;19273:9;19269:17;19262:47;19326:78;19399:4;19390:6;19326:78;:::i;:::-;19318:86;;19098:313;;;;:::o;19417:419::-;19583:4;19621:2;19610:9;19606:18;19598:26;;19670:9;19664:4;19660:20;19656:1;19645:9;19641:17;19634:47;19698:131;19824:4;19698:131;:::i;:::-;19690:139;;19417:419;;;:::o;19842:::-;20008:4;20046:2;20035:9;20031:18;20023:26;;20095:9;20089:4;20085:20;20081:1;20070:9;20066:17;20059:47;20123:131;20249:4;20123:131;:::i;:::-;20115:139;;19842:419;;;:::o;20267:::-;20433:4;20471:2;20460:9;20456:18;20448:26;;20520:9;20514:4;20510:20;20506:1;20495:9;20491:17;20484:47;20548:131;20674:4;20548:131;:::i;:::-;20540:139;;20267:419;;;:::o;20692:::-;20858:4;20896:2;20885:9;20881:18;20873:26;;20945:9;20939:4;20935:20;20931:1;20920:9;20916:17;20909:47;20973:131;21099:4;20973:131;:::i;:::-;20965:139;;20692:419;;;:::o;21117:::-;21283:4;21321:2;21310:9;21306:18;21298:26;;21370:9;21364:4;21360:20;21356:1;21345:9;21341:17;21334:47;21398:131;21524:4;21398:131;:::i;:::-;21390:139;;21117:419;;;:::o;21542:::-;21708:4;21746:2;21735:9;21731:18;21723:26;;21795:9;21789:4;21785:20;21781:1;21770:9;21766:17;21759:47;21823:131;21949:4;21823:131;:::i;:::-;21815:139;;21542:419;;;:::o;21967:::-;22133:4;22171:2;22160:9;22156:18;22148:26;;22220:9;22214:4;22210:20;22206:1;22195:9;22191:17;22184:47;22248:131;22374:4;22248:131;:::i;:::-;22240:139;;21967:419;;;:::o;22392:::-;22558:4;22596:2;22585:9;22581:18;22573:26;;22645:9;22639:4;22635:20;22631:1;22620:9;22616:17;22609:47;22673:131;22799:4;22673:131;:::i;:::-;22665:139;;22392:419;;;:::o;22817:::-;22983:4;23021:2;23010:9;23006:18;22998:26;;23070:9;23064:4;23060:20;23056:1;23045:9;23041:17;23034:47;23098:131;23224:4;23098:131;:::i;:::-;23090:139;;22817:419;;;:::o;23242:::-;23408:4;23446:2;23435:9;23431:18;23423:26;;23495:9;23489:4;23485:20;23481:1;23470:9;23466:17;23459:47;23523:131;23649:4;23523:131;:::i;:::-;23515:139;;23242:419;;;:::o;23667:::-;23833:4;23871:2;23860:9;23856:18;23848:26;;23920:9;23914:4;23910:20;23906:1;23895:9;23891:17;23884:47;23948:131;24074:4;23948:131;:::i;:::-;23940:139;;23667:419;;;:::o;24092:::-;24258:4;24296:2;24285:9;24281:18;24273:26;;24345:9;24339:4;24335:20;24331:1;24320:9;24316:17;24309:47;24373:131;24499:4;24373:131;:::i;:::-;24365:139;;24092:419;;;:::o;24517:::-;24683:4;24721:2;24710:9;24706:18;24698:26;;24770:9;24764:4;24760:20;24756:1;24745:9;24741:17;24734:47;24798:131;24924:4;24798:131;:::i;:::-;24790:139;;24517:419;;;:::o;24942:::-;25108:4;25146:2;25135:9;25131:18;25123:26;;25195:9;25189:4;25185:20;25181:1;25170:9;25166:17;25159:47;25223:131;25349:4;25223:131;:::i;:::-;25215:139;;24942:419;;;:::o;25367:::-;25533:4;25571:2;25560:9;25556:18;25548:26;;25620:9;25614:4;25610:20;25606:1;25595:9;25591:17;25584:47;25648:131;25774:4;25648:131;:::i;:::-;25640:139;;25367:419;;;:::o;25792:::-;25958:4;25996:2;25985:9;25981:18;25973:26;;26045:9;26039:4;26035:20;26031:1;26020:9;26016:17;26009:47;26073:131;26199:4;26073:131;:::i;:::-;26065:139;;25792:419;;;:::o;26217:::-;26383:4;26421:2;26410:9;26406:18;26398:26;;26470:9;26464:4;26460:20;26456:1;26445:9;26441:17;26434:47;26498:131;26624:4;26498:131;:::i;:::-;26490:139;;26217:419;;;:::o;26642:::-;26808:4;26846:2;26835:9;26831:18;26823:26;;26895:9;26889:4;26885:20;26881:1;26870:9;26866:17;26859:47;26923:131;27049:4;26923:131;:::i;:::-;26915:139;;26642:419;;;:::o;27067:::-;27233:4;27271:2;27260:9;27256:18;27248:26;;27320:9;27314:4;27310:20;27306:1;27295:9;27291:17;27284:47;27348:131;27474:4;27348:131;:::i;:::-;27340:139;;27067:419;;;:::o;27492:::-;27658:4;27696:2;27685:9;27681:18;27673:26;;27745:9;27739:4;27735:20;27731:1;27720:9;27716:17;27709:47;27773:131;27899:4;27773:131;:::i;:::-;27765:139;;27492:419;;;:::o;27917:::-;28083:4;28121:2;28110:9;28106:18;28098:26;;28170:9;28164:4;28160:20;28156:1;28145:9;28141:17;28134:47;28198:131;28324:4;28198:131;:::i;:::-;28190:139;;27917:419;;;:::o;28342:::-;28508:4;28546:2;28535:9;28531:18;28523:26;;28595:9;28589:4;28585:20;28581:1;28570:9;28566:17;28559:47;28623:131;28749:4;28623:131;:::i;:::-;28615:139;;28342:419;;;:::o;28767:::-;28933:4;28971:2;28960:9;28956:18;28948:26;;29020:9;29014:4;29010:20;29006:1;28995:9;28991:17;28984:47;29048:131;29174:4;29048:131;:::i;:::-;29040:139;;28767:419;;;:::o;29192:::-;29358:4;29396:2;29385:9;29381:18;29373:26;;29445:9;29439:4;29435:20;29431:1;29420:9;29416:17;29409:47;29473:131;29599:4;29473:131;:::i;:::-;29465:139;;29192:419;;;:::o;29617:222::-;29710:4;29748:2;29737:9;29733:18;29725:26;;29761:71;29829:1;29818:9;29814:17;29805:6;29761:71;:::i;:::-;29617:222;;;;:::o;29845:129::-;29879:6;29906:20;;:::i;:::-;29896:30;;29935:33;29963:4;29955:6;29935:33;:::i;:::-;29845:129;;;:::o;29980:75::-;30013:6;30046:2;30040:9;30030:19;;29980:75;:::o;30061:307::-;30122:4;30212:18;30204:6;30201:30;30198:56;;;30234:18;;:::i;:::-;30198:56;30272:29;30294:6;30272:29;:::i;:::-;30264:37;;30356:4;30350;30346:15;30338:23;;30061:307;;;:::o;30374:308::-;30436:4;30526:18;30518:6;30515:30;30512:56;;;30548:18;;:::i;:::-;30512:56;30586:29;30608:6;30586:29;:::i;:::-;30578:37;;30670:4;30664;30660:15;30652:23;;30374:308;;;:::o;30688:98::-;30739:6;30773:5;30767:12;30757:22;;30688:98;;;:::o;30792:99::-;30844:6;30878:5;30872:12;30862:22;;30792:99;;;:::o;30897:168::-;30980:11;31014:6;31009:3;31002:19;31054:4;31049:3;31045:14;31030:29;;30897:168;;;;:::o;31071:169::-;31155:11;31189:6;31184:3;31177:19;31229:4;31224:3;31220:14;31205:29;;31071:169;;;;:::o;31246:148::-;31348:11;31385:3;31370:18;;31246:148;;;;:::o;31400:273::-;31440:3;31459:20;31477:1;31459:20;:::i;:::-;31454:25;;31493:20;31511:1;31493:20;:::i;:::-;31488:25;;31615:1;31579:34;31575:42;31572:1;31569:49;31566:75;;;31621:18;;:::i;:::-;31566:75;31665:1;31662;31658:9;31651:16;;31400:273;;;;:::o;31679:305::-;31719:3;31738:20;31756:1;31738:20;:::i;:::-;31733:25;;31772:20;31790:1;31772:20;:::i;:::-;31767:25;;31926:1;31858:66;31854:74;31851:1;31848:81;31845:107;;;31932:18;;:::i;:::-;31845:107;31976:1;31973;31969:9;31962:16;;31679:305;;;;:::o;31990:185::-;32030:1;32047:20;32065:1;32047:20;:::i;:::-;32042:25;;32081:20;32099:1;32081:20;:::i;:::-;32076:25;;32120:1;32110:35;;32125:18;;:::i;:::-;32110:35;32167:1;32164;32160:9;32155:14;;31990:185;;;;:::o;32181:348::-;32221:7;32244:20;32262:1;32244:20;:::i;:::-;32239:25;;32278:20;32296:1;32278:20;:::i;:::-;32273:25;;32466:1;32398:66;32394:74;32391:1;32388:81;32383:1;32376:9;32369:17;32365:105;32362:131;;;32473:18;;:::i;:::-;32362:131;32521:1;32518;32514:9;32503:20;;32181:348;;;;:::o;32535:191::-;32575:4;32595:20;32613:1;32595:20;:::i;:::-;32590:25;;32629:20;32647:1;32629:20;:::i;:::-;32624:25;;32668:1;32665;32662:8;32659:34;;;32673:18;;:::i;:::-;32659:34;32718:1;32715;32711:9;32703:17;;32535:191;;;;:::o;32732:::-;32772:4;32792:20;32810:1;32792:20;:::i;:::-;32787:25;;32826:20;32844:1;32826:20;:::i;:::-;32821:25;;32865:1;32862;32859:8;32856:34;;;32870:18;;:::i;:::-;32856:34;32915:1;32912;32908:9;32900:17;;32732:191;;;;:::o;32929:96::-;32966:7;32995:24;33013:5;32995:24;:::i;:::-;32984:35;;32929:96;;;:::o;33031:90::-;33065:7;33108:5;33101:13;33094:21;33083:32;;33031:90;;;:::o;33127:149::-;33163:7;33203:66;33196:5;33192:78;33181:89;;33127:149;;;:::o;33282:118::-;33319:7;33359:34;33352:5;33348:46;33337:57;;33282:118;;;:::o;33406:126::-;33443:7;33483:42;33476:5;33472:54;33461:65;;33406:126;;;:::o;33538:77::-;33575:7;33604:5;33593:16;;33538:77;;;:::o;33621:154::-;33705:6;33700:3;33695;33682:30;33767:1;33758:6;33753:3;33749:16;33742:27;33621:154;;;:::o;33781:307::-;33849:1;33859:113;33873:6;33870:1;33867:13;33859:113;;;33958:1;33953:3;33949:11;33943:18;33939:1;33934:3;33930:11;33923:39;33895:2;33892:1;33888:10;33883:15;;33859:113;;;33990:6;33987:1;33984:13;33981:101;;;34070:1;34061:6;34056:3;34052:16;34045:27;33981:101;33830:258;33781:307;;;:::o;34094:171::-;34133:3;34156:24;34174:5;34156:24;:::i;:::-;34147:33;;34202:4;34195:5;34192:15;34189:41;;;34210:18;;:::i;:::-;34189:41;34257:1;34250:5;34246:13;34239:20;;34094:171;;;:::o;34271:320::-;34315:6;34352:1;34346:4;34342:12;34332:22;;34399:1;34393:4;34389:12;34420:18;34410:81;;34476:4;34468:6;34464:17;34454:27;;34410:81;34538:2;34530:6;34527:14;34507:18;34504:38;34501:84;;;34557:18;;:::i;:::-;34501:84;34322:269;34271:320;;;:::o;34597:281::-;34680:27;34702:4;34680:27;:::i;:::-;34672:6;34668:40;34810:6;34798:10;34795:22;34774:18;34762:10;34759:34;34756:62;34753:88;;;34821:18;;:::i;:::-;34753:88;34861:10;34857:2;34850:22;34640:238;34597:281;;:::o;34884:233::-;34923:3;34946:24;34964:5;34946:24;:::i;:::-;34937:33;;34992:66;34985:5;34982:77;34979:103;;;35062:18;;:::i;:::-;34979:103;35109:1;35102:5;35098:13;35091:20;;34884:233;;;:::o;35123:176::-;35155:1;35172:20;35190:1;35172:20;:::i;:::-;35167:25;;35206:20;35224:1;35206:20;:::i;:::-;35201:25;;35245:1;35235:35;;35250:18;;:::i;:::-;35235:35;35291:1;35288;35284:9;35279:14;;35123:176;;;;:::o;35305:180::-;35353:77;35350:1;35343:88;35450:4;35447:1;35440:15;35474:4;35471:1;35464:15;35491:180;35539:77;35536:1;35529:88;35636:4;35633:1;35626:15;35660:4;35657:1;35650:15;35677:180;35725:77;35722:1;35715:88;35822:4;35819:1;35812:15;35846:4;35843:1;35836:15;35863:180;35911:77;35908:1;35901:88;36008:4;36005:1;35998:15;36032:4;36029:1;36022:15;36049:180;36097:77;36094:1;36087:88;36194:4;36191:1;36184:15;36218:4;36215:1;36208:15;36235:117;36344:1;36341;36334:12;36358:117;36467:1;36464;36457:12;36481:117;36590:1;36587;36580:12;36604:117;36713:1;36710;36703:12;36727:102;36768:6;36819:2;36815:7;36810:2;36803:5;36799:14;36795:28;36785:38;;36727:102;;;:::o;36835:221::-;36975:34;36971:1;36963:6;36959:14;36952:58;37044:4;37039:2;37031:6;37027:15;37020:29;36835:221;:::o;37062:158::-;37202:10;37198:1;37190:6;37186:14;37179:34;37062:158;:::o;37226:225::-;37366:34;37362:1;37354:6;37350:14;37343:58;37435:8;37430:2;37422:6;37418:15;37411:33;37226:225;:::o;37457:229::-;37597:34;37593:1;37585:6;37581:14;37574:58;37666:12;37661:2;37653:6;37649:15;37642:37;37457:229;:::o;37692:222::-;37832:34;37828:1;37820:6;37816:14;37809:58;37901:5;37896:2;37888:6;37884:15;37877:30;37692:222;:::o;37920:224::-;38060:34;38056:1;38048:6;38044:14;38037:58;38129:7;38124:2;38116:6;38112:15;38105:32;37920:224;:::o;38150:221::-;38290:34;38286:1;38278:6;38274:14;38267:58;38359:4;38354:2;38346:6;38342:15;38335:29;38150:221;:::o;38377:166::-;38517:18;38513:1;38505:6;38501:14;38494:42;38377:166;:::o;38549:244::-;38689:34;38685:1;38677:6;38673:14;38666:58;38758:27;38753:2;38745:6;38741:15;38734:52;38549:244;:::o;38799:230::-;38939:34;38935:1;38927:6;38923:14;38916:58;39008:13;39003:2;38995:6;38991:15;38984:38;38799:230;:::o;39035:225::-;39175:34;39171:1;39163:6;39159:14;39152:58;39244:8;39239:2;39231:6;39227:15;39220:33;39035:225;:::o;39266:182::-;39406:34;39402:1;39394:6;39390:14;39383:58;39266:182;:::o;39454:234::-;39594:34;39590:1;39582:6;39578:14;39571:58;39663:17;39658:2;39650:6;39646:15;39639:42;39454:234;:::o;39694:176::-;39834:28;39830:1;39822:6;39818:14;39811:52;39694:176;:::o;39876:237::-;40016:34;40012:1;40004:6;40000:14;39993:58;40085:20;40080:2;40072:6;40068:15;40061:45;39876:237;:::o;40119:220::-;40259:34;40255:1;40247:6;40243:14;40236:58;40328:3;40323:2;40315:6;40311:15;40304:28;40119:220;:::o;40345:221::-;40485:34;40481:1;40473:6;40469:14;40462:58;40554:4;40549:2;40541:6;40537:15;40530:29;40345:221;:::o;40572:238::-;40712:34;40708:1;40700:6;40696:14;40689:58;40781:21;40776:2;40768:6;40764:15;40757:46;40572:238;:::o;40816:179::-;40956:31;40952:1;40944:6;40940:14;40933:55;40816:179;:::o;41001:220::-;41141:34;41137:1;41129:6;41125:14;41118:58;41210:3;41205:2;41197:6;41193:15;41186:28;41001:220;:::o;41227:233::-;41367:34;41363:1;41355:6;41351:14;41344:58;41436:16;41431:2;41423:6;41419:15;41412:41;41227:233;:::o;41466:234::-;41606:34;41602:1;41594:6;41590:14;41583:58;41675:17;41670:2;41662:6;41658:15;41651:42;41466:234;:::o;41706:232::-;41846:34;41842:1;41834:6;41830:14;41823:58;41915:15;41910:2;41902:6;41898:15;41891:40;41706:232;:::o;41944:221::-;42084:34;42080:1;42072:6;42068:14;42061:58;42153:4;42148:2;42140:6;42136:15;42129:29;41944:221;:::o;42171:122::-;42244:24;42262:5;42244:24;:::i;:::-;42237:5;42234:35;42224:63;;42283:1;42280;42273:12;42224:63;42171:122;:::o;42299:116::-;42369:21;42384:5;42369:21;:::i;:::-;42362:5;42359:32;42349:60;;42405:1;42402;42395:12;42349:60;42299:116;:::o;42421:120::-;42493:23;42510:5;42493:23;:::i;:::-;42486:5;42483:34;42473:62;;42531:1;42528;42521:12;42473:62;42421:120;:::o;42547:122::-;42620:24;42638:5;42620:24;:::i;:::-;42613:5;42610:35;42600:63;;42659:1;42656;42649:12;42600:63;42547:122;:::o

Swarm Source

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