ETH Price: $3,422.68 (-0.18%)
Gas: 8 Gwei

Token

LuckyElfDream (LUCKYELFDREAM)
 

Overview

Max Total Supply

1,352 LUCKYELFDREAM

Holders

284

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
biitch.eth
Balance
1 LUCKYELFDREAM
0x4aa91421999269310a6f991520049198aab9df47
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:
LuckyElfDream

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-06-09
*/

// SPDX-License-Identifier: MIT
// 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 (last updated v4.6.0) (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 `IERC721Receiver.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 (last updated v4.6.0) (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`.
     *
     * 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;

    /**
     * @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 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 the account approved for `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function getApproved(uint256 tokenId) external view returns (address operator);

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

// 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/LuckyElfDream.sol


pragma solidity ^0.8.0;





contract LuckyElfDream is Ownable, ERC721A, ReentrancyGuard {
    using Strings for uint256;
    uint256 public immutable maxPerAddressDuringMint;
    uint public immutable freeMintBeginId;
    uint public immutable freeMintEndId;
    mapping(address => uint) public freeMintRecord;
    uint public limitedFreeMintCounter;
    mapping(address => uint256) public allowlist;

    struct SaleConfig {
        uint32 publicSaleStartTime;
        uint64 publicPrice;
    }

    SaleConfig public saleConfig;

    constructor(uint256 maxBatchSize_, uint256 collectionSize_)
        ERC721A(
            "LuckyElfDream",
            "LUCKYELFDREAM",
            maxBatchSize_,
            collectionSize_
        )
    {
        maxPerAddressDuringMint = maxBatchSize_;
        freeMintBeginId = 0;
        freeMintEndId = 999;
    }

    modifier callerIsUser() {
        require(tx.origin == msg.sender, "The caller is another contract");
        _;
    }

    function setSaleConfig(uint32 publicSaleStartTime_, uint64 publicPriceWei_)
        external
        onlyOwner
    {
        saleConfig = SaleConfig(publicSaleStartTime_, publicPriceWei_);
    }

    function allowlistMint(uint256 quantity) external payable callerIsUser {
        SaleConfig memory config = saleConfig;
        uint256 publicPrice = uint256(config.publicPrice);

        require(allowlist[msg.sender] == 1, "you are not in allowlist");
        require(
            publicPrice != 0,
            "allowlist mint has not begun yet"
        );
        require(
            totalSupply() + quantity <= collectionSize,
            "reached max supply"
        );
        require(
            numberMinted(msg.sender) + quantity <= maxPerAddressDuringMint,
            "can not mint this many"
        );

        uint beginId = totalSupply();
        uint endId = beginId + quantity - 1;
        uint freeCount = calcFreeCount(beginId, endId, quantity);

        if (freeCount > 0) {
            freeMintRecord[msg.sender] += freeCount;
        } else {
            if (
                freeMintRecord[msg.sender] == 0 && limitedFreeMintCounter < 1000
            ) {
                freeCount = 1;
                freeMintRecord[msg.sender] += freeCount;
                limitedFreeMintCounter++;
            }
        }

        _safeMint(msg.sender, quantity);
        refundIfOver(publicPrice * (quantity - freeCount));
    }

    function publicSaleMint(uint256 quantity) external payable callerIsUser {
        SaleConfig memory config = saleConfig;
        uint256 publicPrice = uint256(config.publicPrice);
        uint256 publicSaleStartTime = uint256(config.publicSaleStartTime);

        require(
            isPublicSaleOn(publicPrice, publicSaleStartTime),
            "public sale has not begun yet"
        );
        require(
            totalSupply() + quantity <= collectionSize,
            "reached max supply"
        );
        require(
            numberMinted(msg.sender) + quantity <= maxPerAddressDuringMint,
            "can not mint this many"
        );

        uint beginId = totalSupply();
        uint endId = beginId + quantity - 1;
        uint freeCount = calcFreeCount(beginId, endId, quantity);

        if (freeCount > 0) {
            freeMintRecord[msg.sender] += freeCount;
        } else {
            if (
                freeMintRecord[msg.sender] == 0 && limitedFreeMintCounter < 1000
            ) {
                freeCount = 1;
                freeMintRecord[msg.sender] += freeCount;
                limitedFreeMintCounter++;
            }
        }

        _safeMint(msg.sender, quantity);
        refundIfOver(publicPrice * (quantity - freeCount));
    }

    function calcFreeCount(
        uint beginId,
        uint endId,
        uint256 quantity
    ) internal view returns (uint) {
        if (beginId >= freeMintBeginId && endId <= freeMintEndId) {
            return quantity;
        }

        if (beginId <= freeMintEndId && endId >= freeMintEndId) {
            return freeMintEndId - beginId + 1;
        }

        return 0;
    }

    function refundIfOver(uint256 price) private {
        require(msg.value >= price, "Need to send more ETH.");
        if (msg.value > price) {
            payable(msg.sender).transfer(msg.value - price);
        }
    }

    function isPublicSaleOn(uint256 publicPriceWei, uint256 publicSaleStartTime)
        public
        view
        returns (bool)
    {
        return publicPriceWei != 0 && block.timestamp >= publicSaleStartTime;
    }

    function seedAllowlist(address[] memory addresses) external onlyOwner {
        for (uint256 i = 0; i < addresses.length; i++) {
            allowlist[addresses[i]] = 1;
        }
    }

    // metadata URI
    string private _baseTokenURI;

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

    function setBaseURI(string calldata baseURI) external onlyOwner {
        _baseTokenURI = baseURI;
    }

    function tokenURI(uint256 tokenId)
        public
        view
        virtual
        override
        returns (string memory)
    {
        require(
            _exists(tokenId),
            "ERC721Metadata: URI query for nonexistent token"
        );

        return
            string(abi.encodePacked(_baseURI(), tokenId.toString(), ".json"));
    }

    function withdrawMoney() external onlyOwner nonReentrant {
        (bool success, ) = msg.sender.call{value: address(this).balance}("");
        require(success, "Transfer failed.");
    }

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

    function getOwnershipData(uint256 tokenId)
        external
        view
        returns (TokenOwnership memory)
    {
        return ownershipOf(tokenId);
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"uint256","name":"maxBatchSize_","type":"uint256"},{"internalType":"uint256","name":"collectionSize_","type":"uint256"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"allowlist","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"allowlistMint","outputs":[],"stateMutability":"payable","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":"freeMintBeginId","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"freeMintEndId","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"freeMintRecord","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getOwnershipData","outputs":[{"components":[{"internalType":"address","name":"addr","type":"address"},{"internalType":"uint64","name":"startTimestamp","type":"uint64"}],"internalType":"struct ERC721A.TokenOwnership","name":"","type":"tuple"}],"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":"publicPriceWei","type":"uint256"},{"internalType":"uint256","name":"publicSaleStartTime","type":"uint256"}],"name":"isPublicSaleOn","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"limitedFreeMintCounter","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPerAddressDuringMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"nextOwnerToExplicitlySet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"numberMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"publicSaleMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"saleConfig","outputs":[{"internalType":"uint32","name":"publicSaleStartTime","type":"uint32"},{"internalType":"uint64","name":"publicPrice","type":"uint64"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"addresses","type":"address[]"}],"name":"seedAllowlist","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":"baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint32","name":"publicSaleStartTime_","type":"uint32"},{"internalType":"uint64","name":"publicPriceWei_","type":"uint64"}],"name":"setSaleConfig","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":"withdrawMoney","outputs":[],"stateMutability":"nonpayable","type":"function"}]

610120604052600060015560006008553480156200001c57600080fd5b5060405162005bb538038062005bb5833981810160405281019062000042919062000361565b6040518060400160405280600d81526020017f4c75636b79456c66447265616d000000000000000000000000000000000000008152506040518060400160405280600d81526020017f4c55434b59454c46445245414d000000000000000000000000000000000000008152508383620000d0620000c4620001ce60201b60201c565b620001d660201b60201c565b6000811162000116576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200010d9062000418565b60405180910390fd5b600082116200015c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200015390620003f6565b60405180910390fd5b8360029080519060200190620001749291906200029a565b5082600390805190602001906200018d9291906200029a565b508160a0818152505080608081815250505050505060016009819055508160c08181525050600060e081815250506103e76101008181525050505062000577565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b828054620002a89062000455565b90600052602060002090601f016020900481019282620002cc576000855562000318565b82601f10620002e757805160ff191683800117855562000318565b8280016001018555821562000318579182015b8281111562000317578251825591602001919060010190620002fa565b5b5090506200032791906200032b565b5090565b5b80821115620003465760008160009055506001016200032c565b5090565b6000815190506200035b816200055d565b92915050565b600080604083850312156200037b576200037a620004ba565b5b60006200038b858286016200034a565b92505060206200039e858286016200034a565b9150509250929050565b6000620003b76027836200043a565b9150620003c482620004bf565b604082019050919050565b6000620003de602e836200043a565b9150620003eb826200050e565b604082019050919050565b600060208201905081810360008301526200041181620003a8565b9050919050565b600060208201905081810360008301526200043381620003cf565b9050919050565b600082825260208201905092915050565b6000819050919050565b600060028204905060018216806200046e57607f821691505b602082108114156200048557620004846200048b565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600080fd5b7f455243373231413a206d61782062617463682073697a65206d7573742062652060008201527f6e6f6e7a65726f00000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a20636f6c6c656374696f6e206d757374206861766520612060008201527f6e6f6e7a65726f20737570706c79000000000000000000000000000000000000602082015250565b62000568816200044b565b81146200057457600080fd5b50565b60805160a05160c05160e051610100516155b362000602600039600081816108b501528181612bf001528181612c2201528181612c4d0152612c7a0152600081816110a40152612bc5015260008181611337015281816119350152611dc401526000818161294e0152818161297701526132c00152600081816118c00152611d4f01526155b36000f3fe60806040526004361061020f5760003560e01c806388c206f711610118578063b3ab66b0116100a0578063d7224ba01161006f578063d7224ba0146107a8578063dbcad76f146107d3578063dc33e68114610810578063e985e9c51461084d578063f2fde38b1461088a5761020f565b8063b3ab66b01461070a578063b88d4fde14610726578063c180526a1461074f578063c87b56dd1461076b5761020f565b80639231ab2a116100e75780639231ab2a1461062557806395d89b4114610662578063a22cb4651461068d578063a7cd52cb146106b6578063ac446002146106f35761020f565b806388c206f71461057a5780638bc35c2f146105a35780638da5cb5b146105ce57806390aa0b0f146105f95761020f565b80632f745c591161019b57806355f804b31161016a57806355f804b3146104955780636352211e146104be5780636b6f356b146104fb57806370a0823114610526578063715018a6146105635761020f565b80632f745c59146103c957806342842e0e146104065780634f6ccce71461042f57806351f4237c1461046c5761020f565b8063081812fc116101e2578063081812fc146102e4578063095ea7b314610321578063109e81ce1461034a57806318160ddd1461037557806323b872dd146103a05761020f565b806301d96c541461021457806301ffc9a71461023f57806305e9eb1a1461027c57806306fdde03146102b9575b600080fd5b34801561022057600080fd5b506102296108b3565b6040516102369190614793565b60405180910390f35b34801561024b57600080fd5b5061026660048036038101906102619190613be1565b6108d7565b604051610273919061437b565b60405180910390f35b34801561028857600080fd5b506102a3600480360381019061029e91906139d5565b610a21565b6040516102b09190614793565b60405180910390f35b3480156102c557600080fd5b506102ce610a39565b6040516102db9190614396565b60405180910390f35b3480156102f057600080fd5b5061030b60048036038101906103069190613c88565b610acb565b6040516103189190614314565b60405180910390f35b34801561032d57600080fd5b5061034860048036038101906103439190613b58565b610b50565b005b34801561035657600080fd5b5061035f610c69565b60405161036c9190614793565b60405180910390f35b34801561038157600080fd5b5061038a610c6f565b6040516103979190614793565b60405180910390f35b3480156103ac57600080fd5b506103c760048036038101906103c29190613a42565b610c79565b005b3480156103d557600080fd5b506103f060048036038101906103eb9190613b58565b610c89565b6040516103fd9190614793565b60405180910390f35b34801561041257600080fd5b5061042d60048036038101906104289190613a42565b610e87565b005b34801561043b57600080fd5b5061045660048036038101906104519190613c88565b610ea7565b6040516104639190614793565b60405180910390f35b34801561047857600080fd5b50610493600480360381019061048e9190613cf5565b610efa565b005b3480156104a157600080fd5b506104bc60048036038101906104b79190613c3b565b610ffa565b005b3480156104ca57600080fd5b506104e560048036038101906104e09190613c88565b61108c565b6040516104f29190614314565b60405180910390f35b34801561050757600080fd5b506105106110a2565b60405161051d9190614793565b60405180910390f35b34801561053257600080fd5b5061054d600480360381019061054891906139d5565b6110c6565b60405161055a9190614793565b60405180910390f35b34801561056f57600080fd5b506105786111af565b005b34801561058657600080fd5b506105a1600480360381019061059c9190613b98565b611237565b005b3480156105af57600080fd5b506105b8611335565b6040516105c59190614793565b60405180910390f35b3480156105da57600080fd5b506105e3611359565b6040516105f09190614314565b60405180910390f35b34801561060557600080fd5b5061060e611382565b60405161061c9291906147ae565b60405180910390f35b34801561063157600080fd5b5061064c60048036038101906106479190613c88565b6113b8565b6040516106599190614778565b60405180910390f35b34801561066e57600080fd5b506106776113d0565b6040516106849190614396565b60405180910390f35b34801561069957600080fd5b506106b460048036038101906106af9190613b18565b611462565b005b3480156106c257600080fd5b506106dd60048036038101906106d891906139d5565b6115e3565b6040516106ea9190614793565b60405180910390f35b3480156106ff57600080fd5b506107086115fb565b005b610724600480360381019061071f9190613c88565b61177c565b005b34801561073257600080fd5b5061074d60048036038101906107489190613a95565b611b41565b005b61076960048036038101906107649190613c88565b611b9d565b005b34801561077757600080fd5b50610792600480360381019061078d9190613c88565b611fcf565b60405161079f9190614396565b60405180910390f35b3480156107b457600080fd5b506107bd612051565b6040516107ca9190614793565b60405180910390f35b3480156107df57600080fd5b506107fa60048036038101906107f59190613cb5565b612057565b604051610807919061437b565b60405180910390f35b34801561081c57600080fd5b50610837600480360381019061083291906139d5565b612071565b6040516108449190614793565b60405180910390f35b34801561085957600080fd5b50610874600480360381019061086f9190613a02565b612083565b604051610881919061437b565b60405180910390f35b34801561089657600080fd5b506108b160048036038101906108ac91906139d5565b612117565b005b7f000000000000000000000000000000000000000000000000000000000000000081565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806109a257507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610a0a57507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610a1a5750610a198261220f565b5b9050919050565b600a6020528060005260406000206000915090505481565b606060028054610a4890614b56565b80601f0160208091040260200160405190810160405280929190818152602001828054610a7490614b56565b8015610ac15780601f10610a9657610100808354040283529160200191610ac1565b820191906000526020600020905b815481529060010190602001808311610aa457829003601f168201915b5050505050905090565b6000610ad682612279565b610b15576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b0c90614738565b60405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610b5b8261108c565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610bcc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bc3906145f8565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610beb612287565b73ffffffffffffffffffffffffffffffffffffffff161480610c1a5750610c1981610c14612287565b612083565b5b610c59576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c50906144b8565b60405180910390fd5b610c6483838361228f565b505050565b600b5481565b6000600154905090565b610c84838383612341565b505050565b6000610c94836110c6565b8210610cd5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ccc906143b8565b60405180910390fd5b6000610cdf610c6f565b905060008060005b83811015610e45576000600460008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614610dd957806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610e315786841415610e22578195505050505050610e81565b8380610e2d90614bb9565b9450505b508080610e3d90614bb9565b915050610ce7565b506040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e78906146d8565b60405180910390fd5b92915050565b610ea283838360405180602001604052806000815250611b41565b505050565b6000610eb1610c6f565b8210610ef2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ee990614418565b60405180910390fd5b819050919050565b610f02612287565b73ffffffffffffffffffffffffffffffffffffffff16610f20611359565b73ffffffffffffffffffffffffffffffffffffffff1614610f76576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f6d90614558565b60405180910390fd5b60405180604001604052808363ffffffff1681526020018267ffffffffffffffff16815250600d60008201518160000160006101000a81548163ffffffff021916908363ffffffff16021790555060208201518160000160046101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055509050505050565b611002612287565b73ffffffffffffffffffffffffffffffffffffffff16611020611359565b73ffffffffffffffffffffffffffffffffffffffff1614611076576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161106d90614558565b60405180910390fd5b8181600e9190611087929190613701565b505050565b6000611097826128fa565b600001519050919050565b7f000000000000000000000000000000000000000000000000000000000000000081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611137576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161112e906144f8565b60405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b6111b7612287565b73ffffffffffffffffffffffffffffffffffffffff166111d5611359565b73ffffffffffffffffffffffffffffffffffffffff161461122b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161122290614558565b60405180910390fd5b6112356000612afd565b565b61123f612287565b73ffffffffffffffffffffffffffffffffffffffff1661125d611359565b73ffffffffffffffffffffffffffffffffffffffff16146112b3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112aa90614558565b60405180910390fd5b60005b8151811015611331576001600c60008484815181106112d8576112d7614cc0565b5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550808061132990614bb9565b9150506112b6565b5050565b7f000000000000000000000000000000000000000000000000000000000000000081565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600d8060000160009054906101000a900463ffffffff16908060000160049054906101000a900467ffffffffffffffff16905082565b6113c0613787565b6113c9826128fa565b9050919050565b6060600380546113df90614b56565b80601f016020809104026020016040519081016040528092919081815260200182805461140b90614b56565b80156114585780601f1061142d57610100808354040283529160200191611458565b820191906000526020600020905b81548152906001019060200180831161143b57829003601f168201915b5050505050905090565b61146a612287565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156114d8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114cf90614598565b60405180910390fd5b80600760006114e5612287565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611592612287565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516115d7919061437b565b60405180910390a35050565b600c6020528060005260406000206000915090505481565b611603612287565b73ffffffffffffffffffffffffffffffffffffffff16611621611359565b73ffffffffffffffffffffffffffffffffffffffff1614611677576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161166e90614558565b60405180910390fd5b600260095414156116bd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116b4906146f8565b60405180910390fd5b600260098190555060003373ffffffffffffffffffffffffffffffffffffffff16476040516116eb906142ff565b60006040518083038185875af1925050503d8060008114611728576040519150601f19603f3d011682016040523d82523d6000602084013e61172d565b606091505b5050905080611771576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161176890614618565b60405180910390fd5b506001600981905550565b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff16146117ea576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117e190614478565b60405180910390fd5b6000600d6040518060400160405290816000820160009054906101000a900463ffffffff1663ffffffff1663ffffffff1681526020016000820160049054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff168152505090506000816020015167ffffffffffffffff1690506000826000015163ffffffff16905061187f8282612057565b6118be576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118b5906145d8565b60405180910390fd5b7f0000000000000000000000000000000000000000000000000000000000000000846118e8610c6f565b6118f291906148ed565b1115611933576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161192a90614518565b60405180910390fd5b7f00000000000000000000000000000000000000000000000000000000000000008461195e33612071565b61196891906148ed565b11156119a9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119a0906146b8565b60405180910390fd5b60006119b3610c6f565b90506000600186836119c591906148ed565b6119cf9190614a02565b905060006119de838389612bc1565b90506000811115611a445780600a60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611a3891906148ed565b92505081905550611b0f565b6000600a60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054148015611a9657506103e8600b54105b15611b0e576001905080600a60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611aee91906148ed565b92505081905550600b6000815480929190611b0890614bb9565b91905055505b5b611b193388612cc0565b611b388188611b289190614a02565b86611b339190614974565b612cde565b50505050505050565b611b4c848484612341565b611b5884848484612d7f565b611b97576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b8e90614638565b60405180910390fd5b50505050565b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614611c0b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c0290614478565b60405180910390fd5b6000600d6040518060400160405290816000820160009054906101000a900463ffffffff1663ffffffff1663ffffffff1681526020016000820160049054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff168152505090506000816020015167ffffffffffffffff1690506001600c60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205414611d09576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d00906144d8565b60405180910390fd5b6000811415611d4d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d4490614498565b60405180910390fd5b7f000000000000000000000000000000000000000000000000000000000000000083611d77610c6f565b611d8191906148ed565b1115611dc2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611db990614518565b60405180910390fd5b7f000000000000000000000000000000000000000000000000000000000000000083611ded33612071565b611df791906148ed565b1115611e38576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e2f906146b8565b60405180910390fd5b6000611e42610c6f565b9050600060018583611e5491906148ed565b611e5e9190614a02565b90506000611e6d838388612bc1565b90506000811115611ed35780600a60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611ec791906148ed565b92505081905550611f9e565b6000600a60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054148015611f2557506103e8600b54105b15611f9d576001905080600a60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611f7d91906148ed565b92505081905550600b6000815480929190611f9790614bb9565b91905055505b5b611fa83387612cc0565b611fc78187611fb79190614a02565b85611fc29190614974565b612cde565b505050505050565b6060611fda82612279565b612019576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161201090614578565b60405180910390fd5b612021612f16565b61202a83612fa8565b60405160200161203b9291906142d0565b6040516020818303038152906040529050919050565b60085481565b60008083141580156120695750814210155b905092915050565b600061207c82613109565b9050919050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61211f612287565b73ffffffffffffffffffffffffffffffffffffffff1661213d611359565b73ffffffffffffffffffffffffffffffffffffffff1614612193576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161218a90614558565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612203576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121fa906143d8565b60405180910390fd5b61220c81612afd565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600060015482109050919050565b600033905090565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600061234c826128fa565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff16612373612287565b73ffffffffffffffffffffffffffffffffffffffff1614806123cf5750612398612287565b73ffffffffffffffffffffffffffffffffffffffff166123b784610acb565b73ffffffffffffffffffffffffffffffffffffffff16145b806123eb57506123ea82600001516123e5612287565b612083565b5b90508061242d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612424906145b8565b60405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff161461249f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161249690614538565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16141561250f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161250690614438565b60405180910390fd5b61251c85858560016131f2565b61252c600084846000015161228f565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff1661259a91906149ce565b92506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff1661263e91906148a7565b92506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060405180604001604052808573ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506004600085815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550905050600060018461274491906148ed565b9050600073ffffffffffffffffffffffffffffffffffffffff166004600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16141561288a576127ba81612279565b15612889576040518060400160405280846000015173ffffffffffffffffffffffffffffffffffffffff168152602001846020015167ffffffffffffffff168152506004600083815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055509050505b5b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46128f286868660016131f8565b505050505050565b612902613787565b61290b82612279565b61294a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612941906143f8565b60405180910390fd5b60007f000000000000000000000000000000000000000000000000000000000000000083106129ae5760017f0000000000000000000000000000000000000000000000000000000000000000846129a19190614a02565b6129ab91906148ed565b90505b60008390505b818110612abc576000600460008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612aa857809350505050612af8565b508080612ab490614b2c565b9150506129b4565b506040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612aef90614718565b60405180910390fd5b919050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60007f00000000000000000000000000000000000000000000000000000000000000008410158015612c1357507f00000000000000000000000000000000000000000000000000000000000000008311155b15612c2057819050612cb9565b7f00000000000000000000000000000000000000000000000000000000000000008411158015612c7057507f00000000000000000000000000000000000000000000000000000000000000008310155b15612cb4576001847f0000000000000000000000000000000000000000000000000000000000000000612ca39190614a02565b612cad91906148ed565b9050612cb9565b600090505b9392505050565b612cda8282604051806020016040528060008152506131fe565b5050565b80341015612d21576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d1890614658565b60405180910390fd5b80341115612d7c573373ffffffffffffffffffffffffffffffffffffffff166108fc8234612d4f9190614a02565b9081150290604051600060405180830381858888f19350505050158015612d7a573d6000803e3d6000fd5b505b50565b6000612da08473ffffffffffffffffffffffffffffffffffffffff166136de565b15612f09578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612dc9612287565b8786866040518563ffffffff1660e01b8152600401612deb949392919061432f565b602060405180830381600087803b158015612e0557600080fd5b505af1925050508015612e3657506040513d601f19601f82011682018060405250810190612e339190613c0e565b60015b612eb9573d8060008114612e66576040519150601f19603f3d011682016040523d82523d6000602084013e612e6b565b606091505b50600081511415612eb1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ea890614638565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612f0e565b600190505b949350505050565b6060600e8054612f2590614b56565b80601f0160208091040260200160405190810160405280929190818152602001828054612f5190614b56565b8015612f9e5780601f10612f7357610100808354040283529160200191612f9e565b820191906000526020600020905b815481529060010190602001808311612f8157829003601f168201915b5050505050905090565b60606000821415612ff0576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050613104565b600082905060005b6000821461302257808061300b90614bb9565b915050600a8261301b9190614943565b9150612ff8565b60008167ffffffffffffffff81111561303e5761303d614cef565b5b6040519080825280601f01601f1916602001820160405280156130705781602001600182028036833780820191505090505b5090505b600085146130fd576001826130899190614a02565b9150600a856130989190614c02565b60306130a491906148ed565b60f81b8183815181106130ba576130b9614cc0565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856130f69190614943565b9450613074565b8093505050505b919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561317a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161317190614458565b60405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160109054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b50505050565b50505050565b60006001549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415613275576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161326c90614698565b60405180910390fd5b61327e81612279565b156132be576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016132b590614678565b60405180910390fd5b7f0000000000000000000000000000000000000000000000000000000000000000831115613321576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161331890614758565b60405180910390fd5b61332e60008583866131f2565b6000600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206040518060400160405290816000820160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff1681526020016000820160109054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff16815250509050604051806040016040528085836000015161342b91906148a7565b6fffffffffffffffffffffffffffffffff16815260200185836020015161345291906148a7565b6fffffffffffffffffffffffffffffffff16815250600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008201518160000160006101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060208201518160000160106101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555090505060405180604001604052808673ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506004600084815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550905050600082905060005b858110156136c157818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46136616000888488612d7f565b6136a0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161369790614638565b60405180910390fd5b81806136ab90614bb9565b92505080806136b990614bb9565b9150506135f0565b50806001819055506136d660008785886131f8565b505050505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b82805461370d90614b56565b90600052602060002090601f01602090048101928261372f5760008555613776565b82601f1061374857803560ff1916838001178555613776565b82800160010185558215613776579182015b8281111561377557823582559160200191906001019061375a565b5b50905061378391906137c1565b5090565b6040518060400160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681525090565b5b808211156137da5760008160009055506001016137c2565b5090565b60006137f16137ec846147fc565b6147d7565b9050808382526020820190508285602086028201111561381457613813614d28565b5b60005b85811015613844578161382a8882613890565b845260208401935060208301925050600181019050613817565b5050509392505050565b600061386161385c84614828565b6147d7565b90508281526020810184848401111561387d5761387c614d2d565b5b613888848285614aea565b509392505050565b60008135905061389f816154f3565b92915050565b600082601f8301126138ba576138b9614d23565b5b81356138ca8482602086016137de565b91505092915050565b6000813590506138e28161550a565b92915050565b6000813590506138f781615521565b92915050565b60008151905061390c81615521565b92915050565b600082601f83011261392757613926614d23565b5b813561393784826020860161384e565b91505092915050565b60008083601f84011261395657613955614d23565b5b8235905067ffffffffffffffff81111561397357613972614d1e565b5b60208301915083600182028301111561398f5761398e614d28565b5b9250929050565b6000813590506139a581615538565b92915050565b6000813590506139ba8161554f565b92915050565b6000813590506139cf81615566565b92915050565b6000602082840312156139eb576139ea614d37565b5b60006139f984828501613890565b91505092915050565b60008060408385031215613a1957613a18614d37565b5b6000613a2785828601613890565b9250506020613a3885828601613890565b9150509250929050565b600080600060608486031215613a5b57613a5a614d37565b5b6000613a6986828701613890565b9350506020613a7a86828701613890565b9250506040613a8b86828701613996565b9150509250925092565b60008060008060808587031215613aaf57613aae614d37565b5b6000613abd87828801613890565b9450506020613ace87828801613890565b9350506040613adf87828801613996565b925050606085013567ffffffffffffffff811115613b0057613aff614d32565b5b613b0c87828801613912565b91505092959194509250565b60008060408385031215613b2f57613b2e614d37565b5b6000613b3d85828601613890565b9250506020613b4e858286016138d3565b9150509250929050565b60008060408385031215613b6f57613b6e614d37565b5b6000613b7d85828601613890565b9250506020613b8e85828601613996565b9150509250929050565b600060208284031215613bae57613bad614d37565b5b600082013567ffffffffffffffff811115613bcc57613bcb614d32565b5b613bd8848285016138a5565b91505092915050565b600060208284031215613bf757613bf6614d37565b5b6000613c05848285016138e8565b91505092915050565b600060208284031215613c2457613c23614d37565b5b6000613c32848285016138fd565b91505092915050565b60008060208385031215613c5257613c51614d37565b5b600083013567ffffffffffffffff811115613c7057613c6f614d32565b5b613c7c85828601613940565b92509250509250929050565b600060208284031215613c9e57613c9d614d37565b5b6000613cac84828501613996565b91505092915050565b60008060408385031215613ccc57613ccb614d37565b5b6000613cda85828601613996565b9250506020613ceb85828601613996565b9150509250929050565b60008060408385031215613d0c57613d0b614d37565b5b6000613d1a858286016139ab565b9250506020613d2b858286016139c0565b9150509250929050565b613d3e81614a36565b82525050565b613d4d81614a36565b82525050565b613d5c81614a48565b82525050565b6000613d6d82614859565b613d77818561486f565b9350613d87818560208601614af9565b613d9081614d3c565b840191505092915050565b6000613da682614864565b613db0818561488b565b9350613dc0818560208601614af9565b613dc981614d3c565b840191505092915050565b6000613ddf82614864565b613de9818561489c565b9350613df9818560208601614af9565b80840191505092915050565b6000613e1260228361488b565b9150613e1d82614d4d565b604082019050919050565b6000613e3560268361488b565b9150613e4082614d9c565b604082019050919050565b6000613e58602a8361488b565b9150613e6382614deb565b604082019050919050565b6000613e7b60238361488b565b9150613e8682614e3a565b604082019050919050565b6000613e9e60258361488b565b9150613ea982614e89565b604082019050919050565b6000613ec160318361488b565b9150613ecc82614ed8565b604082019050919050565b6000613ee4601e8361488b565b9150613eef82614f27565b602082019050919050565b6000613f0760208361488b565b9150613f1282614f50565b602082019050919050565b6000613f2a60398361488b565b9150613f3582614f79565b604082019050919050565b6000613f4d60188361488b565b9150613f5882614fc8565b602082019050919050565b6000613f70602b8361488b565b9150613f7b82614ff1565b604082019050919050565b6000613f9360128361488b565b9150613f9e82615040565b602082019050919050565b6000613fb660268361488b565b9150613fc182615069565b604082019050919050565b6000613fd960058361489c565b9150613fe4826150b8565b600582019050919050565b6000613ffc60208361488b565b9150614007826150e1565b602082019050919050565b600061401f602f8361488b565b915061402a8261510a565b604082019050919050565b6000614042601a8361488b565b915061404d82615159565b602082019050919050565b600061406560328361488b565b915061407082615182565b604082019050919050565b6000614088601d8361488b565b9150614093826151d1565b602082019050919050565b60006140ab60228361488b565b91506140b6826151fa565b604082019050919050565b60006140ce600083614880565b91506140d982615249565b600082019050919050565b60006140f160108361488b565b91506140fc8261524c565b602082019050919050565b600061411460338361488b565b915061411f82615275565b604082019050919050565b600061413760168361488b565b9150614142826152c4565b602082019050919050565b600061415a601d8361488b565b9150614165826152ed565b602082019050919050565b600061417d60218361488b565b915061418882615316565b604082019050919050565b60006141a060168361488b565b91506141ab82615365565b602082019050919050565b60006141c3602e8361488b565b91506141ce8261538e565b604082019050919050565b60006141e6601f8361488b565b91506141f1826153dd565b602082019050919050565b6000614209602f8361488b565b915061421482615406565b604082019050919050565b600061422c602d8361488b565b915061423782615455565b604082019050919050565b600061424f60228361488b565b915061425a826154a4565b604082019050919050565b60408201600082015161427b6000850182613d35565b50602082015161428e60208501826142b2565b50505050565b61429d81614abc565b82525050565b6142ac81614ac6565b82525050565b6142bb81614ad6565b82525050565b6142ca81614ad6565b82525050565b60006142dc8285613dd4565b91506142e88284613dd4565b91506142f382613fcc565b91508190509392505050565b600061430a826140c1565b9150819050919050565b60006020820190506143296000830184613d44565b92915050565b60006080820190506143446000830187613d44565b6143516020830186613d44565b61435e6040830185614294565b81810360608301526143708184613d62565b905095945050505050565b60006020820190506143906000830184613d53565b92915050565b600060208201905081810360008301526143b08184613d9b565b905092915050565b600060208201905081810360008301526143d181613e05565b9050919050565b600060208201905081810360008301526143f181613e28565b9050919050565b6000602082019050818103600083015261441181613e4b565b9050919050565b6000602082019050818103600083015261443181613e6e565b9050919050565b6000602082019050818103600083015261445181613e91565b9050919050565b6000602082019050818103600083015261447181613eb4565b9050919050565b6000602082019050818103600083015261449181613ed7565b9050919050565b600060208201905081810360008301526144b181613efa565b9050919050565b600060208201905081810360008301526144d181613f1d565b9050919050565b600060208201905081810360008301526144f181613f40565b9050919050565b6000602082019050818103600083015261451181613f63565b9050919050565b6000602082019050818103600083015261453181613f86565b9050919050565b6000602082019050818103600083015261455181613fa9565b9050919050565b6000602082019050818103600083015261457181613fef565b9050919050565b6000602082019050818103600083015261459181614012565b9050919050565b600060208201905081810360008301526145b181614035565b9050919050565b600060208201905081810360008301526145d181614058565b9050919050565b600060208201905081810360008301526145f18161407b565b9050919050565b600060208201905081810360008301526146118161409e565b9050919050565b60006020820190508181036000830152614631816140e4565b9050919050565b6000602082019050818103600083015261465181614107565b9050919050565b600060208201905081810360008301526146718161412a565b9050919050565b600060208201905081810360008301526146918161414d565b9050919050565b600060208201905081810360008301526146b181614170565b9050919050565b600060208201905081810360008301526146d181614193565b9050919050565b600060208201905081810360008301526146f1816141b6565b9050919050565b60006020820190508181036000830152614711816141d9565b9050919050565b60006020820190508181036000830152614731816141fc565b9050919050565b600060208201905081810360008301526147518161421f565b9050919050565b6000602082019050818103600083015261477181614242565b9050919050565b600060408201905061478d6000830184614265565b92915050565b60006020820190506147a86000830184614294565b92915050565b60006040820190506147c360008301856142a3565b6147d060208301846142c1565b9392505050565b60006147e16147f2565b90506147ed8282614b88565b919050565b6000604051905090565b600067ffffffffffffffff82111561481757614816614cef565b5b602082029050602081019050919050565b600067ffffffffffffffff82111561484357614842614cef565b5b61484c82614d3c565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b60006148b282614a80565b91506148bd83614a80565b9250826fffffffffffffffffffffffffffffffff038211156148e2576148e1614c33565b5b828201905092915050565b60006148f882614abc565b915061490383614abc565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561493857614937614c33565b5b828201905092915050565b600061494e82614abc565b915061495983614abc565b92508261496957614968614c62565b5b828204905092915050565b600061497f82614abc565b915061498a83614abc565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156149c3576149c2614c33565b5b828202905092915050565b60006149d982614a80565b91506149e483614a80565b9250828210156149f7576149f6614c33565b5b828203905092915050565b6000614a0d82614abc565b9150614a1883614abc565b925082821015614a2b57614a2a614c33565b5b828203905092915050565b6000614a4182614a9c565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b60006fffffffffffffffffffffffffffffffff82169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600063ffffffff82169050919050565b600067ffffffffffffffff82169050919050565b82818337600083830152505050565b60005b83811015614b17578082015181840152602081019050614afc565b83811115614b26576000848401525b50505050565b6000614b3782614abc565b91506000821415614b4b57614b4a614c33565b5b600182039050919050565b60006002820490506001821680614b6e57607f821691505b60208210811415614b8257614b81614c91565b5b50919050565b614b9182614d3c565b810181811067ffffffffffffffff82111715614bb057614baf614cef565b5b80604052505050565b6000614bc482614abc565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415614bf757614bf6614c33565b5b600182019050919050565b6000614c0d82614abc565b9150614c1883614abc565b925082614c2857614c27614c62565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f455243373231413a206f776e657220696e646578206f7574206f6620626f756e60008201527f6473000000000000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a206f776e657220717565727920666f72206e6f6e6578697360008201527f74656e7420746f6b656e00000000000000000000000000000000000000000000602082015250565b7f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f7560008201527f6e64730000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a206e756d626572206d696e74656420717565727920666f7260008201527f20746865207a65726f2061646472657373000000000000000000000000000000602082015250565b7f5468652063616c6c657220697320616e6f7468657220636f6e74726163740000600082015250565b7f616c6c6f776c697374206d696e7420686173206e6f7420626567756e20796574600082015250565b7f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000602082015250565b7f796f7520617265206e6f7420696e20616c6c6f776c6973740000000000000000600082015250565b7f455243373231413a2062616c616e636520717565727920666f7220746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b7f72656163686564206d617820737570706c790000000000000000000000000000600082015250565b7f455243373231413a207472616e736665722066726f6d20696e636f727265637460008201527f206f776e65720000000000000000000000000000000000000000000000000000602082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f455243373231413a20617070726f766520746f2063616c6c6572000000000000600082015250565b7f455243373231413a207472616e736665722063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b7f7075626c69632073616c6520686173206e6f7420626567756e20796574000000600082015250565b7f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60008201527f6572000000000000000000000000000000000000000000000000000000000000602082015250565b50565b7f5472616e73666572206661696c65642e00000000000000000000000000000000600082015250565b7f455243373231413a207472616e7366657220746f206e6f6e204552433732315260008201527f6563656976657220696d706c656d656e74657200000000000000000000000000602082015250565b7f4e65656420746f2073656e64206d6f7265204554482e00000000000000000000600082015250565b7f455243373231413a20746f6b656e20616c7265616479206d696e746564000000600082015250565b7f455243373231413a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f63616e206e6f74206d696e742074686973206d616e7900000000000000000000600082015250565b7f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060008201527f6f776e657220627920696e646578000000000000000000000000000000000000602082015250565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b7f455243373231413a20756e61626c6520746f2064657465726d696e652074686560008201527f206f776e6572206f6620746f6b656e0000000000000000000000000000000000602082015250565b7f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560008201527f78697374656e7420746f6b656e00000000000000000000000000000000000000602082015250565b7f455243373231413a207175616e7469747920746f206d696e7420746f6f20686960008201527f6768000000000000000000000000000000000000000000000000000000000000602082015250565b6154fc81614a36565b811461550757600080fd5b50565b61551381614a48565b811461551e57600080fd5b50565b61552a81614a54565b811461553557600080fd5b50565b61554181614abc565b811461554c57600080fd5b50565b61555881614ac6565b811461556357600080fd5b50565b61556f81614ad6565b811461557a57600080fd5b5056fea2646970667358221220154d30b712e506e014a7a581c4aa9582eac236361955532007dd4e8e855bf93e64736f6c63430008070033000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000000002710

Deployed Bytecode

0x60806040526004361061020f5760003560e01c806388c206f711610118578063b3ab66b0116100a0578063d7224ba01161006f578063d7224ba0146107a8578063dbcad76f146107d3578063dc33e68114610810578063e985e9c51461084d578063f2fde38b1461088a5761020f565b8063b3ab66b01461070a578063b88d4fde14610726578063c180526a1461074f578063c87b56dd1461076b5761020f565b80639231ab2a116100e75780639231ab2a1461062557806395d89b4114610662578063a22cb4651461068d578063a7cd52cb146106b6578063ac446002146106f35761020f565b806388c206f71461057a5780638bc35c2f146105a35780638da5cb5b146105ce57806390aa0b0f146105f95761020f565b80632f745c591161019b57806355f804b31161016a57806355f804b3146104955780636352211e146104be5780636b6f356b146104fb57806370a0823114610526578063715018a6146105635761020f565b80632f745c59146103c957806342842e0e146104065780634f6ccce71461042f57806351f4237c1461046c5761020f565b8063081812fc116101e2578063081812fc146102e4578063095ea7b314610321578063109e81ce1461034a57806318160ddd1461037557806323b872dd146103a05761020f565b806301d96c541461021457806301ffc9a71461023f57806305e9eb1a1461027c57806306fdde03146102b9575b600080fd5b34801561022057600080fd5b506102296108b3565b6040516102369190614793565b60405180910390f35b34801561024b57600080fd5b5061026660048036038101906102619190613be1565b6108d7565b604051610273919061437b565b60405180910390f35b34801561028857600080fd5b506102a3600480360381019061029e91906139d5565b610a21565b6040516102b09190614793565b60405180910390f35b3480156102c557600080fd5b506102ce610a39565b6040516102db9190614396565b60405180910390f35b3480156102f057600080fd5b5061030b60048036038101906103069190613c88565b610acb565b6040516103189190614314565b60405180910390f35b34801561032d57600080fd5b5061034860048036038101906103439190613b58565b610b50565b005b34801561035657600080fd5b5061035f610c69565b60405161036c9190614793565b60405180910390f35b34801561038157600080fd5b5061038a610c6f565b6040516103979190614793565b60405180910390f35b3480156103ac57600080fd5b506103c760048036038101906103c29190613a42565b610c79565b005b3480156103d557600080fd5b506103f060048036038101906103eb9190613b58565b610c89565b6040516103fd9190614793565b60405180910390f35b34801561041257600080fd5b5061042d60048036038101906104289190613a42565b610e87565b005b34801561043b57600080fd5b5061045660048036038101906104519190613c88565b610ea7565b6040516104639190614793565b60405180910390f35b34801561047857600080fd5b50610493600480360381019061048e9190613cf5565b610efa565b005b3480156104a157600080fd5b506104bc60048036038101906104b79190613c3b565b610ffa565b005b3480156104ca57600080fd5b506104e560048036038101906104e09190613c88565b61108c565b6040516104f29190614314565b60405180910390f35b34801561050757600080fd5b506105106110a2565b60405161051d9190614793565b60405180910390f35b34801561053257600080fd5b5061054d600480360381019061054891906139d5565b6110c6565b60405161055a9190614793565b60405180910390f35b34801561056f57600080fd5b506105786111af565b005b34801561058657600080fd5b506105a1600480360381019061059c9190613b98565b611237565b005b3480156105af57600080fd5b506105b8611335565b6040516105c59190614793565b60405180910390f35b3480156105da57600080fd5b506105e3611359565b6040516105f09190614314565b60405180910390f35b34801561060557600080fd5b5061060e611382565b60405161061c9291906147ae565b60405180910390f35b34801561063157600080fd5b5061064c60048036038101906106479190613c88565b6113b8565b6040516106599190614778565b60405180910390f35b34801561066e57600080fd5b506106776113d0565b6040516106849190614396565b60405180910390f35b34801561069957600080fd5b506106b460048036038101906106af9190613b18565b611462565b005b3480156106c257600080fd5b506106dd60048036038101906106d891906139d5565b6115e3565b6040516106ea9190614793565b60405180910390f35b3480156106ff57600080fd5b506107086115fb565b005b610724600480360381019061071f9190613c88565b61177c565b005b34801561073257600080fd5b5061074d60048036038101906107489190613a95565b611b41565b005b61076960048036038101906107649190613c88565b611b9d565b005b34801561077757600080fd5b50610792600480360381019061078d9190613c88565b611fcf565b60405161079f9190614396565b60405180910390f35b3480156107b457600080fd5b506107bd612051565b6040516107ca9190614793565b60405180910390f35b3480156107df57600080fd5b506107fa60048036038101906107f59190613cb5565b612057565b604051610807919061437b565b60405180910390f35b34801561081c57600080fd5b50610837600480360381019061083291906139d5565b612071565b6040516108449190614793565b60405180910390f35b34801561085957600080fd5b50610874600480360381019061086f9190613a02565b612083565b604051610881919061437b565b60405180910390f35b34801561089657600080fd5b506108b160048036038101906108ac91906139d5565b612117565b005b7f00000000000000000000000000000000000000000000000000000000000003e781565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806109a257507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610a0a57507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610a1a5750610a198261220f565b5b9050919050565b600a6020528060005260406000206000915090505481565b606060028054610a4890614b56565b80601f0160208091040260200160405190810160405280929190818152602001828054610a7490614b56565b8015610ac15780601f10610a9657610100808354040283529160200191610ac1565b820191906000526020600020905b815481529060010190602001808311610aa457829003601f168201915b5050505050905090565b6000610ad682612279565b610b15576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b0c90614738565b60405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610b5b8261108c565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610bcc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bc3906145f8565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610beb612287565b73ffffffffffffffffffffffffffffffffffffffff161480610c1a5750610c1981610c14612287565b612083565b5b610c59576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c50906144b8565b60405180910390fd5b610c6483838361228f565b505050565b600b5481565b6000600154905090565b610c84838383612341565b505050565b6000610c94836110c6565b8210610cd5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ccc906143b8565b60405180910390fd5b6000610cdf610c6f565b905060008060005b83811015610e45576000600460008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614610dd957806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610e315786841415610e22578195505050505050610e81565b8380610e2d90614bb9565b9450505b508080610e3d90614bb9565b915050610ce7565b506040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e78906146d8565b60405180910390fd5b92915050565b610ea283838360405180602001604052806000815250611b41565b505050565b6000610eb1610c6f565b8210610ef2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ee990614418565b60405180910390fd5b819050919050565b610f02612287565b73ffffffffffffffffffffffffffffffffffffffff16610f20611359565b73ffffffffffffffffffffffffffffffffffffffff1614610f76576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f6d90614558565b60405180910390fd5b60405180604001604052808363ffffffff1681526020018267ffffffffffffffff16815250600d60008201518160000160006101000a81548163ffffffff021916908363ffffffff16021790555060208201518160000160046101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055509050505050565b611002612287565b73ffffffffffffffffffffffffffffffffffffffff16611020611359565b73ffffffffffffffffffffffffffffffffffffffff1614611076576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161106d90614558565b60405180910390fd5b8181600e9190611087929190613701565b505050565b6000611097826128fa565b600001519050919050565b7f000000000000000000000000000000000000000000000000000000000000000081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611137576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161112e906144f8565b60405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b6111b7612287565b73ffffffffffffffffffffffffffffffffffffffff166111d5611359565b73ffffffffffffffffffffffffffffffffffffffff161461122b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161122290614558565b60405180910390fd5b6112356000612afd565b565b61123f612287565b73ffffffffffffffffffffffffffffffffffffffff1661125d611359565b73ffffffffffffffffffffffffffffffffffffffff16146112b3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112aa90614558565b60405180910390fd5b60005b8151811015611331576001600c60008484815181106112d8576112d7614cc0565b5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550808061132990614bb9565b9150506112b6565b5050565b7f000000000000000000000000000000000000000000000000000000000000000a81565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600d8060000160009054906101000a900463ffffffff16908060000160049054906101000a900467ffffffffffffffff16905082565b6113c0613787565b6113c9826128fa565b9050919050565b6060600380546113df90614b56565b80601f016020809104026020016040519081016040528092919081815260200182805461140b90614b56565b80156114585780601f1061142d57610100808354040283529160200191611458565b820191906000526020600020905b81548152906001019060200180831161143b57829003601f168201915b5050505050905090565b61146a612287565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156114d8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114cf90614598565b60405180910390fd5b80600760006114e5612287565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611592612287565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516115d7919061437b565b60405180910390a35050565b600c6020528060005260406000206000915090505481565b611603612287565b73ffffffffffffffffffffffffffffffffffffffff16611621611359565b73ffffffffffffffffffffffffffffffffffffffff1614611677576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161166e90614558565b60405180910390fd5b600260095414156116bd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116b4906146f8565b60405180910390fd5b600260098190555060003373ffffffffffffffffffffffffffffffffffffffff16476040516116eb906142ff565b60006040518083038185875af1925050503d8060008114611728576040519150601f19603f3d011682016040523d82523d6000602084013e61172d565b606091505b5050905080611771576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161176890614618565b60405180910390fd5b506001600981905550565b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff16146117ea576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117e190614478565b60405180910390fd5b6000600d6040518060400160405290816000820160009054906101000a900463ffffffff1663ffffffff1663ffffffff1681526020016000820160049054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff168152505090506000816020015167ffffffffffffffff1690506000826000015163ffffffff16905061187f8282612057565b6118be576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118b5906145d8565b60405180910390fd5b7f0000000000000000000000000000000000000000000000000000000000002710846118e8610c6f565b6118f291906148ed565b1115611933576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161192a90614518565b60405180910390fd5b7f000000000000000000000000000000000000000000000000000000000000000a8461195e33612071565b61196891906148ed565b11156119a9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119a0906146b8565b60405180910390fd5b60006119b3610c6f565b90506000600186836119c591906148ed565b6119cf9190614a02565b905060006119de838389612bc1565b90506000811115611a445780600a60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611a3891906148ed565b92505081905550611b0f565b6000600a60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054148015611a9657506103e8600b54105b15611b0e576001905080600a60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611aee91906148ed565b92505081905550600b6000815480929190611b0890614bb9565b91905055505b5b611b193388612cc0565b611b388188611b289190614a02565b86611b339190614974565b612cde565b50505050505050565b611b4c848484612341565b611b5884848484612d7f565b611b97576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b8e90614638565b60405180910390fd5b50505050565b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614611c0b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c0290614478565b60405180910390fd5b6000600d6040518060400160405290816000820160009054906101000a900463ffffffff1663ffffffff1663ffffffff1681526020016000820160049054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff168152505090506000816020015167ffffffffffffffff1690506001600c60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205414611d09576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d00906144d8565b60405180910390fd5b6000811415611d4d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d4490614498565b60405180910390fd5b7f000000000000000000000000000000000000000000000000000000000000271083611d77610c6f565b611d8191906148ed565b1115611dc2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611db990614518565b60405180910390fd5b7f000000000000000000000000000000000000000000000000000000000000000a83611ded33612071565b611df791906148ed565b1115611e38576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e2f906146b8565b60405180910390fd5b6000611e42610c6f565b9050600060018583611e5491906148ed565b611e5e9190614a02565b90506000611e6d838388612bc1565b90506000811115611ed35780600a60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611ec791906148ed565b92505081905550611f9e565b6000600a60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054148015611f2557506103e8600b54105b15611f9d576001905080600a60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611f7d91906148ed565b92505081905550600b6000815480929190611f9790614bb9565b91905055505b5b611fa83387612cc0565b611fc78187611fb79190614a02565b85611fc29190614974565b612cde565b505050505050565b6060611fda82612279565b612019576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161201090614578565b60405180910390fd5b612021612f16565b61202a83612fa8565b60405160200161203b9291906142d0565b6040516020818303038152906040529050919050565b60085481565b60008083141580156120695750814210155b905092915050565b600061207c82613109565b9050919050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61211f612287565b73ffffffffffffffffffffffffffffffffffffffff1661213d611359565b73ffffffffffffffffffffffffffffffffffffffff1614612193576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161218a90614558565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612203576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121fa906143d8565b60405180910390fd5b61220c81612afd565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600060015482109050919050565b600033905090565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600061234c826128fa565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff16612373612287565b73ffffffffffffffffffffffffffffffffffffffff1614806123cf5750612398612287565b73ffffffffffffffffffffffffffffffffffffffff166123b784610acb565b73ffffffffffffffffffffffffffffffffffffffff16145b806123eb57506123ea82600001516123e5612287565b612083565b5b90508061242d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612424906145b8565b60405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff161461249f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161249690614538565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16141561250f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161250690614438565b60405180910390fd5b61251c85858560016131f2565b61252c600084846000015161228f565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff1661259a91906149ce565b92506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff1661263e91906148a7565b92506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060405180604001604052808573ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506004600085815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550905050600060018461274491906148ed565b9050600073ffffffffffffffffffffffffffffffffffffffff166004600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16141561288a576127ba81612279565b15612889576040518060400160405280846000015173ffffffffffffffffffffffffffffffffffffffff168152602001846020015167ffffffffffffffff168152506004600083815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055509050505b5b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46128f286868660016131f8565b505050505050565b612902613787565b61290b82612279565b61294a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612941906143f8565b60405180910390fd5b60007f000000000000000000000000000000000000000000000000000000000000000a83106129ae5760017f000000000000000000000000000000000000000000000000000000000000000a846129a19190614a02565b6129ab91906148ed565b90505b60008390505b818110612abc576000600460008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612aa857809350505050612af8565b508080612ab490614b2c565b9150506129b4565b506040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612aef90614718565b60405180910390fd5b919050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60007f00000000000000000000000000000000000000000000000000000000000000008410158015612c1357507f00000000000000000000000000000000000000000000000000000000000003e78311155b15612c2057819050612cb9565b7f00000000000000000000000000000000000000000000000000000000000003e78411158015612c7057507f00000000000000000000000000000000000000000000000000000000000003e78310155b15612cb4576001847f00000000000000000000000000000000000000000000000000000000000003e7612ca39190614a02565b612cad91906148ed565b9050612cb9565b600090505b9392505050565b612cda8282604051806020016040528060008152506131fe565b5050565b80341015612d21576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d1890614658565b60405180910390fd5b80341115612d7c573373ffffffffffffffffffffffffffffffffffffffff166108fc8234612d4f9190614a02565b9081150290604051600060405180830381858888f19350505050158015612d7a573d6000803e3d6000fd5b505b50565b6000612da08473ffffffffffffffffffffffffffffffffffffffff166136de565b15612f09578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612dc9612287565b8786866040518563ffffffff1660e01b8152600401612deb949392919061432f565b602060405180830381600087803b158015612e0557600080fd5b505af1925050508015612e3657506040513d601f19601f82011682018060405250810190612e339190613c0e565b60015b612eb9573d8060008114612e66576040519150601f19603f3d011682016040523d82523d6000602084013e612e6b565b606091505b50600081511415612eb1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ea890614638565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612f0e565b600190505b949350505050565b6060600e8054612f2590614b56565b80601f0160208091040260200160405190810160405280929190818152602001828054612f5190614b56565b8015612f9e5780601f10612f7357610100808354040283529160200191612f9e565b820191906000526020600020905b815481529060010190602001808311612f8157829003601f168201915b5050505050905090565b60606000821415612ff0576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050613104565b600082905060005b6000821461302257808061300b90614bb9565b915050600a8261301b9190614943565b9150612ff8565b60008167ffffffffffffffff81111561303e5761303d614cef565b5b6040519080825280601f01601f1916602001820160405280156130705781602001600182028036833780820191505090505b5090505b600085146130fd576001826130899190614a02565b9150600a856130989190614c02565b60306130a491906148ed565b60f81b8183815181106130ba576130b9614cc0565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856130f69190614943565b9450613074565b8093505050505b919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561317a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161317190614458565b60405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160109054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b50505050565b50505050565b60006001549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415613275576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161326c90614698565b60405180910390fd5b61327e81612279565b156132be576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016132b590614678565b60405180910390fd5b7f000000000000000000000000000000000000000000000000000000000000000a831115613321576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161331890614758565b60405180910390fd5b61332e60008583866131f2565b6000600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206040518060400160405290816000820160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff1681526020016000820160109054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff16815250509050604051806040016040528085836000015161342b91906148a7565b6fffffffffffffffffffffffffffffffff16815260200185836020015161345291906148a7565b6fffffffffffffffffffffffffffffffff16815250600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008201518160000160006101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060208201518160000160106101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555090505060405180604001604052808673ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506004600084815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550905050600082905060005b858110156136c157818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46136616000888488612d7f565b6136a0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161369790614638565b60405180910390fd5b81806136ab90614bb9565b92505080806136b990614bb9565b9150506135f0565b50806001819055506136d660008785886131f8565b505050505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b82805461370d90614b56565b90600052602060002090601f01602090048101928261372f5760008555613776565b82601f1061374857803560ff1916838001178555613776565b82800160010185558215613776579182015b8281111561377557823582559160200191906001019061375a565b5b50905061378391906137c1565b5090565b6040518060400160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681525090565b5b808211156137da5760008160009055506001016137c2565b5090565b60006137f16137ec846147fc565b6147d7565b9050808382526020820190508285602086028201111561381457613813614d28565b5b60005b85811015613844578161382a8882613890565b845260208401935060208301925050600181019050613817565b5050509392505050565b600061386161385c84614828565b6147d7565b90508281526020810184848401111561387d5761387c614d2d565b5b613888848285614aea565b509392505050565b60008135905061389f816154f3565b92915050565b600082601f8301126138ba576138b9614d23565b5b81356138ca8482602086016137de565b91505092915050565b6000813590506138e28161550a565b92915050565b6000813590506138f781615521565b92915050565b60008151905061390c81615521565b92915050565b600082601f83011261392757613926614d23565b5b813561393784826020860161384e565b91505092915050565b60008083601f84011261395657613955614d23565b5b8235905067ffffffffffffffff81111561397357613972614d1e565b5b60208301915083600182028301111561398f5761398e614d28565b5b9250929050565b6000813590506139a581615538565b92915050565b6000813590506139ba8161554f565b92915050565b6000813590506139cf81615566565b92915050565b6000602082840312156139eb576139ea614d37565b5b60006139f984828501613890565b91505092915050565b60008060408385031215613a1957613a18614d37565b5b6000613a2785828601613890565b9250506020613a3885828601613890565b9150509250929050565b600080600060608486031215613a5b57613a5a614d37565b5b6000613a6986828701613890565b9350506020613a7a86828701613890565b9250506040613a8b86828701613996565b9150509250925092565b60008060008060808587031215613aaf57613aae614d37565b5b6000613abd87828801613890565b9450506020613ace87828801613890565b9350506040613adf87828801613996565b925050606085013567ffffffffffffffff811115613b0057613aff614d32565b5b613b0c87828801613912565b91505092959194509250565b60008060408385031215613b2f57613b2e614d37565b5b6000613b3d85828601613890565b9250506020613b4e858286016138d3565b9150509250929050565b60008060408385031215613b6f57613b6e614d37565b5b6000613b7d85828601613890565b9250506020613b8e85828601613996565b9150509250929050565b600060208284031215613bae57613bad614d37565b5b600082013567ffffffffffffffff811115613bcc57613bcb614d32565b5b613bd8848285016138a5565b91505092915050565b600060208284031215613bf757613bf6614d37565b5b6000613c05848285016138e8565b91505092915050565b600060208284031215613c2457613c23614d37565b5b6000613c32848285016138fd565b91505092915050565b60008060208385031215613c5257613c51614d37565b5b600083013567ffffffffffffffff811115613c7057613c6f614d32565b5b613c7c85828601613940565b92509250509250929050565b600060208284031215613c9e57613c9d614d37565b5b6000613cac84828501613996565b91505092915050565b60008060408385031215613ccc57613ccb614d37565b5b6000613cda85828601613996565b9250506020613ceb85828601613996565b9150509250929050565b60008060408385031215613d0c57613d0b614d37565b5b6000613d1a858286016139ab565b9250506020613d2b858286016139c0565b9150509250929050565b613d3e81614a36565b82525050565b613d4d81614a36565b82525050565b613d5c81614a48565b82525050565b6000613d6d82614859565b613d77818561486f565b9350613d87818560208601614af9565b613d9081614d3c565b840191505092915050565b6000613da682614864565b613db0818561488b565b9350613dc0818560208601614af9565b613dc981614d3c565b840191505092915050565b6000613ddf82614864565b613de9818561489c565b9350613df9818560208601614af9565b80840191505092915050565b6000613e1260228361488b565b9150613e1d82614d4d565b604082019050919050565b6000613e3560268361488b565b9150613e4082614d9c565b604082019050919050565b6000613e58602a8361488b565b9150613e6382614deb565b604082019050919050565b6000613e7b60238361488b565b9150613e8682614e3a565b604082019050919050565b6000613e9e60258361488b565b9150613ea982614e89565b604082019050919050565b6000613ec160318361488b565b9150613ecc82614ed8565b604082019050919050565b6000613ee4601e8361488b565b9150613eef82614f27565b602082019050919050565b6000613f0760208361488b565b9150613f1282614f50565b602082019050919050565b6000613f2a60398361488b565b9150613f3582614f79565b604082019050919050565b6000613f4d60188361488b565b9150613f5882614fc8565b602082019050919050565b6000613f70602b8361488b565b9150613f7b82614ff1565b604082019050919050565b6000613f9360128361488b565b9150613f9e82615040565b602082019050919050565b6000613fb660268361488b565b9150613fc182615069565b604082019050919050565b6000613fd960058361489c565b9150613fe4826150b8565b600582019050919050565b6000613ffc60208361488b565b9150614007826150e1565b602082019050919050565b600061401f602f8361488b565b915061402a8261510a565b604082019050919050565b6000614042601a8361488b565b915061404d82615159565b602082019050919050565b600061406560328361488b565b915061407082615182565b604082019050919050565b6000614088601d8361488b565b9150614093826151d1565b602082019050919050565b60006140ab60228361488b565b91506140b6826151fa565b604082019050919050565b60006140ce600083614880565b91506140d982615249565b600082019050919050565b60006140f160108361488b565b91506140fc8261524c565b602082019050919050565b600061411460338361488b565b915061411f82615275565b604082019050919050565b600061413760168361488b565b9150614142826152c4565b602082019050919050565b600061415a601d8361488b565b9150614165826152ed565b602082019050919050565b600061417d60218361488b565b915061418882615316565b604082019050919050565b60006141a060168361488b565b91506141ab82615365565b602082019050919050565b60006141c3602e8361488b565b91506141ce8261538e565b604082019050919050565b60006141e6601f8361488b565b91506141f1826153dd565b602082019050919050565b6000614209602f8361488b565b915061421482615406565b604082019050919050565b600061422c602d8361488b565b915061423782615455565b604082019050919050565b600061424f60228361488b565b915061425a826154a4565b604082019050919050565b60408201600082015161427b6000850182613d35565b50602082015161428e60208501826142b2565b50505050565b61429d81614abc565b82525050565b6142ac81614ac6565b82525050565b6142bb81614ad6565b82525050565b6142ca81614ad6565b82525050565b60006142dc8285613dd4565b91506142e88284613dd4565b91506142f382613fcc565b91508190509392505050565b600061430a826140c1565b9150819050919050565b60006020820190506143296000830184613d44565b92915050565b60006080820190506143446000830187613d44565b6143516020830186613d44565b61435e6040830185614294565b81810360608301526143708184613d62565b905095945050505050565b60006020820190506143906000830184613d53565b92915050565b600060208201905081810360008301526143b08184613d9b565b905092915050565b600060208201905081810360008301526143d181613e05565b9050919050565b600060208201905081810360008301526143f181613e28565b9050919050565b6000602082019050818103600083015261441181613e4b565b9050919050565b6000602082019050818103600083015261443181613e6e565b9050919050565b6000602082019050818103600083015261445181613e91565b9050919050565b6000602082019050818103600083015261447181613eb4565b9050919050565b6000602082019050818103600083015261449181613ed7565b9050919050565b600060208201905081810360008301526144b181613efa565b9050919050565b600060208201905081810360008301526144d181613f1d565b9050919050565b600060208201905081810360008301526144f181613f40565b9050919050565b6000602082019050818103600083015261451181613f63565b9050919050565b6000602082019050818103600083015261453181613f86565b9050919050565b6000602082019050818103600083015261455181613fa9565b9050919050565b6000602082019050818103600083015261457181613fef565b9050919050565b6000602082019050818103600083015261459181614012565b9050919050565b600060208201905081810360008301526145b181614035565b9050919050565b600060208201905081810360008301526145d181614058565b9050919050565b600060208201905081810360008301526145f18161407b565b9050919050565b600060208201905081810360008301526146118161409e565b9050919050565b60006020820190508181036000830152614631816140e4565b9050919050565b6000602082019050818103600083015261465181614107565b9050919050565b600060208201905081810360008301526146718161412a565b9050919050565b600060208201905081810360008301526146918161414d565b9050919050565b600060208201905081810360008301526146b181614170565b9050919050565b600060208201905081810360008301526146d181614193565b9050919050565b600060208201905081810360008301526146f1816141b6565b9050919050565b60006020820190508181036000830152614711816141d9565b9050919050565b60006020820190508181036000830152614731816141fc565b9050919050565b600060208201905081810360008301526147518161421f565b9050919050565b6000602082019050818103600083015261477181614242565b9050919050565b600060408201905061478d6000830184614265565b92915050565b60006020820190506147a86000830184614294565b92915050565b60006040820190506147c360008301856142a3565b6147d060208301846142c1565b9392505050565b60006147e16147f2565b90506147ed8282614b88565b919050565b6000604051905090565b600067ffffffffffffffff82111561481757614816614cef565b5b602082029050602081019050919050565b600067ffffffffffffffff82111561484357614842614cef565b5b61484c82614d3c565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b60006148b282614a80565b91506148bd83614a80565b9250826fffffffffffffffffffffffffffffffff038211156148e2576148e1614c33565b5b828201905092915050565b60006148f882614abc565b915061490383614abc565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561493857614937614c33565b5b828201905092915050565b600061494e82614abc565b915061495983614abc565b92508261496957614968614c62565b5b828204905092915050565b600061497f82614abc565b915061498a83614abc565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156149c3576149c2614c33565b5b828202905092915050565b60006149d982614a80565b91506149e483614a80565b9250828210156149f7576149f6614c33565b5b828203905092915050565b6000614a0d82614abc565b9150614a1883614abc565b925082821015614a2b57614a2a614c33565b5b828203905092915050565b6000614a4182614a9c565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b60006fffffffffffffffffffffffffffffffff82169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600063ffffffff82169050919050565b600067ffffffffffffffff82169050919050565b82818337600083830152505050565b60005b83811015614b17578082015181840152602081019050614afc565b83811115614b26576000848401525b50505050565b6000614b3782614abc565b91506000821415614b4b57614b4a614c33565b5b600182039050919050565b60006002820490506001821680614b6e57607f821691505b60208210811415614b8257614b81614c91565b5b50919050565b614b9182614d3c565b810181811067ffffffffffffffff82111715614bb057614baf614cef565b5b80604052505050565b6000614bc482614abc565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415614bf757614bf6614c33565b5b600182019050919050565b6000614c0d82614abc565b9150614c1883614abc565b925082614c2857614c27614c62565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f455243373231413a206f776e657220696e646578206f7574206f6620626f756e60008201527f6473000000000000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a206f776e657220717565727920666f72206e6f6e6578697360008201527f74656e7420746f6b656e00000000000000000000000000000000000000000000602082015250565b7f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f7560008201527f6e64730000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a206e756d626572206d696e74656420717565727920666f7260008201527f20746865207a65726f2061646472657373000000000000000000000000000000602082015250565b7f5468652063616c6c657220697320616e6f7468657220636f6e74726163740000600082015250565b7f616c6c6f776c697374206d696e7420686173206e6f7420626567756e20796574600082015250565b7f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000602082015250565b7f796f7520617265206e6f7420696e20616c6c6f776c6973740000000000000000600082015250565b7f455243373231413a2062616c616e636520717565727920666f7220746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b7f72656163686564206d617820737570706c790000000000000000000000000000600082015250565b7f455243373231413a207472616e736665722066726f6d20696e636f727265637460008201527f206f776e65720000000000000000000000000000000000000000000000000000602082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f455243373231413a20617070726f766520746f2063616c6c6572000000000000600082015250565b7f455243373231413a207472616e736665722063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b7f7075626c69632073616c6520686173206e6f7420626567756e20796574000000600082015250565b7f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60008201527f6572000000000000000000000000000000000000000000000000000000000000602082015250565b50565b7f5472616e73666572206661696c65642e00000000000000000000000000000000600082015250565b7f455243373231413a207472616e7366657220746f206e6f6e204552433732315260008201527f6563656976657220696d706c656d656e74657200000000000000000000000000602082015250565b7f4e65656420746f2073656e64206d6f7265204554482e00000000000000000000600082015250565b7f455243373231413a20746f6b656e20616c7265616479206d696e746564000000600082015250565b7f455243373231413a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f63616e206e6f74206d696e742074686973206d616e7900000000000000000000600082015250565b7f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060008201527f6f776e657220627920696e646578000000000000000000000000000000000000602082015250565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b7f455243373231413a20756e61626c6520746f2064657465726d696e652074686560008201527f206f776e6572206f6620746f6b656e0000000000000000000000000000000000602082015250565b7f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560008201527f78697374656e7420746f6b656e00000000000000000000000000000000000000602082015250565b7f455243373231413a207175616e7469747920746f206d696e7420746f6f20686960008201527f6768000000000000000000000000000000000000000000000000000000000000602082015250565b6154fc81614a36565b811461550757600080fd5b50565b61551381614a48565b811461551e57600080fd5b50565b61552a81614a54565b811461553557600080fd5b50565b61554181614abc565b811461554c57600080fd5b50565b61555881614ac6565b811461556357600080fd5b50565b61556f81614ad6565b811461557a57600080fd5b5056fea2646970667358221220154d30b712e506e014a7a581c4aa9582eac236361955532007dd4e8e855bf93e64736f6c63430008070033

Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)

000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000000002710

-----Decoded View---------------
Arg [0] : maxBatchSize_ (uint256): 10
Arg [1] : collectionSize_ (uint256): 10000

-----Encoded View---------------
2 Constructor Arguments found :
Arg [0] : 000000000000000000000000000000000000000000000000000000000000000a
Arg [1] : 0000000000000000000000000000000000000000000000000000000000002710


Deployed Bytecode Sourcemap

42746:6025:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42944:35;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27837:370;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42986:46;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29563:94;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31088:204;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30651:379;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;43039:34;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26398:94;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31938:142;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;27029:744;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32143:157;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;26561:177;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43736:199;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;47791:106;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;29386:118;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42900:37;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28263:211;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41852:103;;;;;;;;;;;;;:::i;:::-;;47414:189;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;42845:48;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41201:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43233:28;;;;;;;;;;;;;:::i;:::-;;;;;;;;:::i;:::-;;;;;;;;48601:167;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29718:98;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31356:274;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;43080:44;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48281:191;;;;;;;;;;;;;:::i;:::-;;45228:1309;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;32363:311;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;43943:1277;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;47905:368;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36778:43;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47183:223;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48480:113;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31693:186;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42110:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;42944:35;;;:::o;27837:370::-;27964:4;28009:25;27994:40;;;:11;:40;;;;:99;;;;28060:33;28045:48;;;:11;:48;;;;27994:99;:160;;;;28119:35;28104:50;;;:11;:50;;;;27994:160;:207;;;;28165:36;28189:11;28165:23;:36::i;:::-;27994:207;27980:221;;27837:370;;;:::o;42986:46::-;;;;;;;;;;;;;;;;;:::o;29563:94::-;29617:13;29646:5;29639:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29563:94;:::o;31088:204::-;31156:7;31180:16;31188:7;31180;:16::i;:::-;31172:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;31262:15;:24;31278:7;31262:24;;;;;;;;;;;;;;;;;;;;;31255:31;;31088:204;;;:::o;30651:379::-;30720:13;30736:24;30752:7;30736:15;:24::i;:::-;30720:40;;30781:5;30775:11;;:2;:11;;;;30767:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;30866:5;30850:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;30875:37;30892:5;30899:12;:10;:12::i;:::-;30875:16;:37::i;:::-;30850:62;30834:153;;;;;;;;;;;;:::i;:::-;;;;;;;;;30996:28;31005:2;31009:7;31018:5;30996:8;:28::i;:::-;30713:317;30651:379;;:::o;43039:34::-;;;;:::o;26398:94::-;26451:7;26474:12;;26467:19;;26398:94;:::o;31938:142::-;32046:28;32056:4;32062:2;32066:7;32046:9;:28::i;:::-;31938:142;;;:::o;27029:744::-;27138:7;27173:16;27183:5;27173:9;:16::i;:::-;27165:5;:24;27157:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;27235:22;27260:13;:11;:13::i;:::-;27235:38;;27280:19;27310:25;27360:9;27355:350;27379:14;27375:1;:18;27355:350;;;27409:31;27443:11;:14;27455:1;27443:14;;;;;;;;;;;27409:48;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27496:1;27470:28;;:9;:14;;;:28;;;27466:89;;27531:9;:14;;;27511:34;;27466:89;27588:5;27567:26;;:17;:26;;;27563:135;;;27625:5;27610:11;:20;27606:59;;;27652:1;27645:8;;;;;;;;;27606:59;27675:13;;;;;:::i;:::-;;;;27563:135;27400:305;27395:3;;;;;:::i;:::-;;;;27355:350;;;;27711:56;;;;;;;;;;:::i;:::-;;;;;;;;27029:744;;;;;:::o;32143:157::-;32255:39;32272:4;32278:2;32282:7;32255:39;;;;;;;;;;;;:16;:39::i;:::-;32143:157;;;:::o;26561:177::-;26628:7;26660:13;:11;:13::i;:::-;26652:5;:21;26644:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;26727:5;26720:12;;26561:177;;;:::o;43736:199::-;41432:12;:10;:12::i;:::-;41421:23;;:7;:5;:7::i;:::-;:23;;;41413:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;43878:49:::1;;;;;;;;43889:20;43878:49;;;;;;43911:15;43878:49;;;;::::0;43865:10:::1;:62;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43736:199:::0;;:::o;47791:106::-;41432:12;:10;:12::i;:::-;41421:23;;:7;:5;:7::i;:::-;:23;;;41413:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;47882:7:::1;;47866:13;:23;;;;;;;:::i;:::-;;47791:106:::0;;:::o;29386:118::-;29450:7;29473:20;29485:7;29473:11;:20::i;:::-;:25;;;29466:32;;29386:118;;;:::o;42900:37::-;;;:::o;28263:211::-;28327:7;28368:1;28351:19;;:5;:19;;;;28343:75;;;;;;;;;;;;:::i;:::-;;;;;;;;;28440:12;:19;28453:5;28440:19;;;;;;;;;;;;;;;:27;;;;;;;;;;;;28432:36;;28425:43;;28263:211;;;:::o;41852:103::-;41432:12;:10;:12::i;:::-;41421:23;;:7;:5;:7::i;:::-;:23;;;41413:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;41917:30:::1;41944:1;41917:18;:30::i;:::-;41852:103::o:0;47414:189::-;41432:12;:10;:12::i;:::-;41421:23;;:7;:5;:7::i;:::-;:23;;;41413:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;47500:9:::1;47495:101;47519:9;:16;47515:1;:20;47495:101;;;47583:1;47557:9;:23;47567:9;47577:1;47567:12;;;;;;;;:::i;:::-;;;;;;;;47557:23;;;;;;;;;;;;;;;:27;;;;47537:3;;;;;:::i;:::-;;;;47495:101;;;;47414:189:::0;:::o;42845:48::-;;;:::o;41201:87::-;41247:7;41274:6;;;;;;;;;;;41267:13;;41201:87;:::o;43233:28::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;48601:167::-;48694:21;;:::i;:::-;48740:20;48752:7;48740:11;:20::i;:::-;48733:27;;48601:167;;;:::o;29718:98::-;29774:13;29803:7;29796:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29718:98;:::o;31356:274::-;31459:12;:10;:12::i;:::-;31447:24;;:8;:24;;;;31439:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;31556:8;31511:18;:32;31530:12;:10;:12::i;:::-;31511:32;;;;;;;;;;;;;;;:42;31544:8;31511:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;31605:8;31576:48;;31591:12;:10;:12::i;:::-;31576:48;;;31615:8;31576:48;;;;;;:::i;:::-;;;;;;;;31356:274;;:::o;43080:44::-;;;;;;;;;;;;;;;;;:::o;48281:191::-;41432:12;:10;:12::i;:::-;41421:23;;:7;:5;:7::i;:::-;:23;;;41413:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;22242:1:::1;22840:7;;:19;;22832:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;22242:1;22973:7;:18;;;;48350:12:::2;48368:10;:15;;48391:21;48368:49;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48349:68;;;48436:7;48428:36;;;;;;;;;;;;:::i;:::-;;;;;;;;;48338:134;22198:1:::1;23152:7;:22;;;;48281:191::o:0;45228:1309::-;43663:10;43650:23;;:9;:23;;;43642:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;45311:24:::1;45338:10;45311:37;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;45359:19;45389:6;:18;;;45381:27;;45359:49;;45419:27;45457:6;:26;;;45449:35;;45419:65;;45519:48;45534:11;45547:19;45519:14;:48::i;:::-;45497:127;;;;;;;;;;;;:::i;:::-;;;;;;;;;45685:14;45673:8;45657:13;:11;:13::i;:::-;:24;;;;:::i;:::-;:42;;45635:110;;;;;;;;;;;;:::i;:::-;;;;;;;;;45817:23;45805:8;45778:24;45791:10;45778:12;:24::i;:::-;:35;;;;:::i;:::-;:62;;45756:134;;;;;;;;;;;;:::i;:::-;;;;;;;;;45903:12;45918:13;:11;:13::i;:::-;45903:28;;45942:10;45976:1;45965:8;45955:7;:18;;;;:::i;:::-;:22;;;;:::i;:::-;45942:35;;45988:14;46005:39;46019:7;46028:5;46035:8;46005:13;:39::i;:::-;45988:56;;46073:1;46061:9;:13;46057:368;;;46121:9;46091:14;:26;46106:10;46091:26;;;;;;;;;;;;;;;;:39;;;;;;;:::i;:::-;;;;;;;;46057:368;;;46215:1;46185:14;:26;46200:10;46185:26;;;;;;;;;;;;;;;;:31;:64;;;;;46245:4;46220:22;;:29;46185:64;46163:251;;;46296:1;46284:13;;46346:9;46316:14;:26;46331:10;46316:26;;;;;;;;;;;;;;;;:39;;;;;;;:::i;:::-;;;;;;;;46374:22;;:24;;;;;;;;;:::i;:::-;;;;;;46163:251;46057:368;46437:31;46447:10;46459:8;46437:9;:31::i;:::-;46479:50;46518:9;46507:8;:20;;;;:::i;:::-;46492:11;:36;;;;:::i;:::-;46479:12;:50::i;:::-;45300:1237;;;;;;45228:1309:::0;:::o;32363:311::-;32500:28;32510:4;32516:2;32520:7;32500:9;:28::i;:::-;32551:48;32574:4;32580:2;32584:7;32593:5;32551:22;:48::i;:::-;32535:133;;;;;;;;;;;;:::i;:::-;;;;;;;;;32363:311;;;;:::o;43943:1277::-;43663:10;43650:23;;:9;:23;;;43642:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;44025:24:::1;44052:10;44025:37;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;44073:19;44103:6;:18;;;44095:27;;44073:49;;44168:1;44143:9;:21;44153:10;44143:21;;;;;;;;;;;;;;;;:26;44135:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;44246:1;44231:11;:16;;44209:98;;;;;;;;;;;;:::i;:::-;;;;;;;;;44368:14;44356:8;44340:13;:11;:13::i;:::-;:24;;;;:::i;:::-;:42;;44318:110;;;;;;;;;;;;:::i;:::-;;;;;;;;;44500:23;44488:8;44461:24;44474:10;44461:12;:24::i;:::-;:35;;;;:::i;:::-;:62;;44439:134;;;;;;;;;;;;:::i;:::-;;;;;;;;;44586:12;44601:13;:11;:13::i;:::-;44586:28;;44625:10;44659:1;44648:8;44638:7;:18;;;;:::i;:::-;:22;;;;:::i;:::-;44625:35;;44671:14;44688:39;44702:7;44711:5;44718:8;44688:13;:39::i;:::-;44671:56;;44756:1;44744:9;:13;44740:368;;;44804:9;44774:14;:26;44789:10;44774:26;;;;;;;;;;;;;;;;:39;;;;;;;:::i;:::-;;;;;;;;44740:368;;;44898:1;44868:14;:26;44883:10;44868:26;;;;;;;;;;;;;;;;:31;:64;;;;;44928:4;44903:22;;:29;44868:64;44846:251;;;44979:1;44967:13;;45029:9;44999:14;:26;45014:10;44999:26;;;;;;;;;;;;;;;;:39;;;;;;;:::i;:::-;;;;;;;;45057:22;;:24;;;;;;;;;:::i;:::-;;;;;;44846:251;44740:368;45120:31;45130:10;45142:8;45120:9;:31::i;:::-;45162:50;45201:9;45190:8;:20;;;;:::i;:::-;45175:11;:36;;;;:::i;:::-;45162:12;:50::i;:::-;44014:1206;;;;;43943:1277:::0;:::o;47905:368::-;48023:13;48076:16;48084:7;48076;:16::i;:::-;48054:113;;;;;;;;;;;;:::i;:::-;;;;;;;;;48224:10;:8;:10::i;:::-;48236:18;:7;:16;:18::i;:::-;48207:57;;;;;;;;;:::i;:::-;;;;;;;;;;;;;48180:85;;47905:368;;;:::o;36778:43::-;;;;:::o;47183:223::-;47308:4;47355:1;47337:14;:19;;:61;;;;;47379:19;47360:15;:38;;47337:61;47330:68;;47183:223;;;;:::o;48480:113::-;48538:7;48565:20;48579:5;48565:13;:20::i;:::-;48558:27;;48480:113;;;:::o;31693:186::-;31815:4;31838:18;:25;31857:5;31838:25;;;;;;;;;;;;;;;:35;31864:8;31838:35;;;;;;;;;;;;;;;;;;;;;;;;;31831:42;;31693:186;;;;:::o;42110:201::-;41432:12;:10;:12::i;:::-;41421:23;;:7;:5;:7::i;:::-;:23;;;41413:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;42219:1:::1;42199:22;;:8;:22;;;;42191:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;42275:28;42294:8;42275:18;:28::i;:::-;42110:201:::0;:::o;13496:157::-;13581:4;13620:25;13605:40;;;:11;:40;;;;13598:47;;13496:157;;;:::o;32913:105::-;32970:4;33000:12;;32990:7;:22;32983:29;;32913:105;;;:::o;23868:98::-;23921:7;23948:10;23941:17;;23868:98;:::o;36600:172::-;36724:2;36697:15;:24;36713:7;36697:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;36758:7;36754:2;36738:28;;36747:5;36738:28;;;;;;;;;;;;36600:172;;;:::o;34965:1529::-;35062:35;35100:20;35112:7;35100:11;:20::i;:::-;35062:58;;35129:22;35171:13;:18;;;35155:34;;:12;:10;:12::i;:::-;:34;;;:81;;;;35224:12;:10;:12::i;:::-;35200:36;;:20;35212:7;35200:11;:20::i;:::-;:36;;;35155:81;:142;;;;35247:50;35264:13;:18;;;35284:12;:10;:12::i;:::-;35247:16;:50::i;:::-;35155:142;35129:169;;35323:17;35307:101;;;;;;;;;;;;:::i;:::-;;;;;;;;;35455:4;35433:26;;:13;:18;;;:26;;;35417:98;;;;;;;;;;;;:::i;:::-;;;;;;;;;35544:1;35530:16;;:2;:16;;;;35522:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;35597:43;35619:4;35625:2;35629:7;35638:1;35597:21;:43::i;:::-;35697:49;35714:1;35718:7;35727:13;:18;;;35697:8;:49::i;:::-;35785:1;35755:12;:18;35768:4;35755:18;;;;;;;;;;;;;;;:26;;;:31;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;35821:1;35793:12;:16;35806:2;35793:16;;;;;;;;;;;;;;;:24;;;:29;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;35852:43;;;;;;;;35867:2;35852:43;;;;;;35878:15;35852:43;;;;;35829:11;:20;35841:7;35829:20;;;;;;;;;;;:66;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36123:19;36155:1;36145:7;:11;;;;:::i;:::-;36123:33;;36208:1;36167:43;;:11;:24;36179:11;36167:24;;;;;;;;;;;:29;;;;;;;;;;;;:43;;;36163:236;;;36225:20;36233:11;36225:7;:20::i;:::-;36221:171;;;36285:97;;;;;;;;36312:13;:18;;;36285:97;;;;;;36343:13;:28;;;36285:97;;;;;36258:11;:24;36270:11;36258:24;;;;;;;;;;;:124;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36221:171;36163:236;36431:7;36427:2;36412:27;;36421:4;36412:27;;;;;;;;;;;;36446:42;36467:4;36473:2;36477:7;36486:1;36446:20;:42::i;:::-;35055:1439;;;34965:1529;;;:::o;28726:606::-;28802:21;;:::i;:::-;28843:16;28851:7;28843;:16::i;:::-;28835:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;28915:26;28963:12;28952:7;:23;28948:93;;29032:1;29017:12;29007:7;:22;;;;:::i;:::-;:26;;;;:::i;:::-;28986:47;;28948:93;29054:12;29069:7;29054:22;;29049:212;29086:18;29078:4;:26;29049:212;;29123:31;29157:11;:17;29169:4;29157:17;;;;;;;;;;;29123:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29213:1;29187:28;;:9;:14;;;:28;;;29183:71;;29235:9;29228:16;;;;;;;29183:71;29114:147;29106:6;;;;;:::i;:::-;;;;29049:212;;;;29269:57;;;;;;;;;;:::i;:::-;;;;;;;;28726:606;;;;:::o;42471:191::-;42545:16;42564:6;;;;;;;;;;;42545:25;;42590:8;42581:6;;:17;;;;;;;;;;;;;;;;;;42645:8;42614:40;;42635:8;42614:40;;;;;;;;;;;;42534:128;42471:191;:::o;46545:398::-;46669:4;46701:15;46690:7;:26;;:52;;;;;46729:13;46720:5;:22;;46690:52;46686:100;;;46766:8;46759:15;;;;46686:100;46813:13;46802:7;:24;;:50;;;;;46839:13;46830:5;:22;;46802:50;46798:117;;;46902:1;46892:7;46876:13;:23;;;;:::i;:::-;:27;;;;:::i;:::-;46869:34;;;;46798:117;46934:1;46927:8;;46545:398;;;;;;:::o;33024:98::-;33089:27;33099:2;33103:8;33089:27;;;;;;;;;;;;:9;:27::i;:::-;33024:98;;:::o;46951:224::-;47028:5;47015:9;:18;;47007:53;;;;;;;;;;;;:::i;:::-;;;;;;;;;47087:5;47075:9;:17;47071:97;;;47117:10;47109:28;;:47;47150:5;47138:9;:17;;;;:::i;:::-;47109:47;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47071:97;46951:224;:::o;38315:690::-;38452:4;38469:15;:2;:13;;;:15::i;:::-;38465:535;;;38524:2;38508:36;;;38545:12;:10;:12::i;:::-;38559:4;38565:7;38574:5;38508:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;38495:464;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38756:1;38739:6;:13;:18;38735:215;;;38772:61;;;;;;;;;;:::i;:::-;;;;;;;;38735:215;38918:6;38912:13;38903:6;38899:2;38895:15;38888:38;38495:464;38640:45;;;38630:55;;;:6;:55;;;;38623:62;;;;;38465:535;38988:4;38981:11;;38315:690;;;;;;;:::o;47669:114::-;47729:13;47762;47755:20;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47669:114;:::o;398:723::-;454:13;684:1;675:5;:10;671:53;;;702:10;;;;;;;;;;;;;;;;;;;;;671:53;734:12;749:5;734:20;;765:14;790:78;805:1;797:4;:9;790:78;;823:8;;;;;:::i;:::-;;;;854:2;846:10;;;;;:::i;:::-;;;790:78;;;878:19;910:6;900:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;878:39;;928:154;944:1;935:5;:10;928:154;;972:1;962:11;;;;;:::i;:::-;;;1039:2;1031:5;:10;;;;:::i;:::-;1018:2;:24;;;;:::i;:::-;1005:39;;988:6;995;988:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;1068:2;1059:11;;;;;:::i;:::-;;;928:154;;;1106:6;1092:21;;;;;398:723;;;;:::o;28480:240::-;28541:7;28590:1;28573:19;;:5;:19;;;;28557:102;;;;;;;;;;;;:::i;:::-;;;;;;;;;28681:12;:19;28694:5;28681:19;;;;;;;;;;;;;;;:32;;;;;;;;;;;;28673:41;;28666:48;;28480:240;;;:::o;39467:141::-;;;;;:::o;39994:140::-;;;;;:::o;33461:1272::-;33566:20;33589:12;;33566:35;;33630:1;33616:16;;:2;:16;;;;33608:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;33807:21;33815:12;33807:7;:21::i;:::-;33806:22;33798:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;33889:12;33877:8;:24;;33869:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;33949:61;33979:1;33983:2;33987:12;34001:8;33949:21;:61::i;:::-;34019:30;34052:12;:16;34065:2;34052:16;;;;;;;;;;;;;;;34019:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34094:119;;;;;;;;34144:8;34114:11;:19;;;:39;;;;:::i;:::-;34094:119;;;;;;34197:8;34162:11;:24;;;:44;;;;:::i;:::-;34094:119;;;;;34075:12;:16;34088:2;34075:16;;;;;;;;;;;;;;;:138;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34248:43;;;;;;;;34263:2;34248:43;;;;;;34274:15;34248:43;;;;;34220:11;:25;34232:12;34220:25;;;;;;;;;;;:71;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34300:20;34323:12;34300:35;;34349:9;34344:281;34368:8;34364:1;:12;34344:281;;;34422:12;34418:2;34397:38;;34414:1;34397:38;;;;;;;;;;;;34462:59;34493:1;34497:2;34501:12;34515:5;34462:22;:59::i;:::-;34444:150;;;;;;;;;;;;:::i;:::-;;;;;;;;;34603:14;;;;;:::i;:::-;;;;34378:3;;;;;:::i;:::-;;;;34344:281;;;;34648:12;34633;:27;;;;34667:60;34696:1;34700:2;34704:12;34718:8;34667:20;:60::i;:::-;33559:1174;;;33461:1272;;;:::o;3390:326::-;3450:4;3707:1;3685:7;:19;;;:23;3678:30;;3390:326;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;24:722:1:-;120:5;145:81;161:64;218:6;161:64;:::i;:::-;145:81;:::i;:::-;136:90;;246:5;275:6;268:5;261:21;309:4;302:5;298:16;291:23;;335:6;385:3;377:4;369:6;365:17;360:3;356:27;353:36;350:143;;;404:79;;:::i;:::-;350:143;517:1;502:238;527:6;524:1;521:13;502:238;;;595:3;624:37;657:3;645:10;624:37;:::i;:::-;619:3;612:50;691:4;686:3;682:14;675:21;;725:4;720:3;716:14;709:21;;562:178;549:1;546;542:9;537:14;;502:238;;;506:14;126:620;;24:722;;;;;:::o;752:410::-;829:5;854:65;870:48;911:6;870:48;:::i;:::-;854:65;:::i;:::-;845:74;;942:6;935:5;928:21;980:4;973:5;969:16;1018:3;1009:6;1004:3;1000:16;997:25;994:112;;;1025:79;;:::i;:::-;994:112;1115:41;1149:6;1144:3;1139;1115:41;:::i;:::-;835:327;752:410;;;;;:::o;1168:139::-;1214:5;1252:6;1239:20;1230:29;;1268:33;1295:5;1268:33;:::i;:::-;1168:139;;;;:::o;1330:370::-;1401:5;1450:3;1443:4;1435:6;1431:17;1427:27;1417:122;;1458:79;;:::i;:::-;1417:122;1575:6;1562:20;1600:94;1690:3;1682:6;1675:4;1667:6;1663:17;1600:94;:::i;:::-;1591:103;;1407:293;1330:370;;;;:::o;1706:133::-;1749:5;1787:6;1774:20;1765:29;;1803:30;1827:5;1803:30;:::i;:::-;1706:133;;;;:::o;1845:137::-;1890:5;1928:6;1915:20;1906:29;;1944:32;1970:5;1944:32;:::i;:::-;1845:137;;;;:::o;1988:141::-;2044:5;2075:6;2069:13;2060:22;;2091:32;2117:5;2091:32;:::i;:::-;1988:141;;;;:::o;2148:338::-;2203:5;2252:3;2245:4;2237:6;2233:17;2229:27;2219:122;;2260:79;;:::i;:::-;2219:122;2377:6;2364:20;2402:78;2476:3;2468:6;2461:4;2453:6;2449:17;2402:78;:::i;:::-;2393:87;;2209:277;2148:338;;;;:::o;2506:553::-;2564:8;2574:6;2624:3;2617:4;2609:6;2605:17;2601:27;2591:122;;2632:79;;:::i;:::-;2591:122;2745:6;2732:20;2722:30;;2775:18;2767:6;2764:30;2761:117;;;2797:79;;:::i;:::-;2761:117;2911:4;2903:6;2899:17;2887:29;;2965:3;2957:4;2949:6;2945:17;2935:8;2931:32;2928:41;2925:128;;;2972:79;;:::i;:::-;2925:128;2506:553;;;;;:::o;3065:139::-;3111:5;3149:6;3136:20;3127:29;;3165:33;3192:5;3165:33;:::i;:::-;3065:139;;;;:::o;3210:137::-;3255:5;3293:6;3280:20;3271:29;;3309:32;3335:5;3309:32;:::i;:::-;3210:137;;;;:::o;3353:::-;3398:5;3436:6;3423:20;3414:29;;3452:32;3478:5;3452:32;:::i;:::-;3353:137;;;;:::o;3496:329::-;3555:6;3604:2;3592:9;3583:7;3579:23;3575:32;3572:119;;;3610:79;;:::i;:::-;3572:119;3730:1;3755:53;3800:7;3791:6;3780:9;3776:22;3755:53;:::i;:::-;3745:63;;3701:117;3496:329;;;;:::o;3831:474::-;3899:6;3907;3956:2;3944:9;3935:7;3931:23;3927:32;3924:119;;;3962:79;;:::i;:::-;3924:119;4082:1;4107:53;4152:7;4143:6;4132:9;4128:22;4107:53;:::i;:::-;4097:63;;4053:117;4209:2;4235:53;4280:7;4271:6;4260:9;4256:22;4235:53;:::i;:::-;4225:63;;4180:118;3831:474;;;;;:::o;4311:619::-;4388:6;4396;4404;4453:2;4441:9;4432:7;4428:23;4424:32;4421:119;;;4459:79;;:::i;:::-;4421:119;4579:1;4604:53;4649:7;4640:6;4629:9;4625:22;4604:53;:::i;:::-;4594:63;;4550:117;4706:2;4732:53;4777:7;4768:6;4757:9;4753:22;4732:53;:::i;:::-;4722:63;;4677:118;4834:2;4860:53;4905:7;4896:6;4885:9;4881:22;4860:53;:::i;:::-;4850:63;;4805:118;4311:619;;;;;:::o;4936:943::-;5031:6;5039;5047;5055;5104:3;5092:9;5083:7;5079:23;5075:33;5072:120;;;5111:79;;:::i;:::-;5072:120;5231:1;5256:53;5301:7;5292:6;5281:9;5277:22;5256:53;:::i;:::-;5246:63;;5202:117;5358:2;5384:53;5429:7;5420:6;5409:9;5405:22;5384:53;:::i;:::-;5374:63;;5329:118;5486:2;5512:53;5557:7;5548:6;5537:9;5533:22;5512:53;:::i;:::-;5502:63;;5457:118;5642:2;5631:9;5627:18;5614:32;5673:18;5665:6;5662:30;5659:117;;;5695:79;;:::i;:::-;5659:117;5800:62;5854:7;5845:6;5834:9;5830:22;5800:62;:::i;:::-;5790:72;;5585:287;4936:943;;;;;;;:::o;5885:468::-;5950:6;5958;6007:2;5995:9;5986:7;5982:23;5978:32;5975:119;;;6013:79;;:::i;:::-;5975:119;6133:1;6158:53;6203:7;6194:6;6183:9;6179:22;6158:53;:::i;:::-;6148:63;;6104:117;6260:2;6286:50;6328:7;6319:6;6308:9;6304:22;6286:50;:::i;:::-;6276:60;;6231:115;5885:468;;;;;:::o;6359:474::-;6427:6;6435;6484:2;6472:9;6463:7;6459:23;6455:32;6452:119;;;6490:79;;:::i;:::-;6452:119;6610:1;6635:53;6680:7;6671:6;6660:9;6656:22;6635:53;:::i;:::-;6625:63;;6581:117;6737:2;6763:53;6808:7;6799:6;6788:9;6784:22;6763:53;:::i;:::-;6753:63;;6708:118;6359:474;;;;;:::o;6839:539::-;6923:6;6972:2;6960:9;6951:7;6947:23;6943:32;6940:119;;;6978:79;;:::i;:::-;6940:119;7126:1;7115:9;7111:17;7098:31;7156:18;7148:6;7145:30;7142:117;;;7178:79;;:::i;:::-;7142:117;7283:78;7353:7;7344:6;7333:9;7329:22;7283:78;:::i;:::-;7273:88;;7069:302;6839:539;;;;:::o;7384:327::-;7442:6;7491:2;7479:9;7470:7;7466:23;7462:32;7459:119;;;7497:79;;:::i;:::-;7459:119;7617:1;7642:52;7686:7;7677:6;7666:9;7662:22;7642:52;:::i;:::-;7632:62;;7588:116;7384:327;;;;:::o;7717:349::-;7786:6;7835:2;7823:9;7814:7;7810:23;7806:32;7803:119;;;7841:79;;:::i;:::-;7803:119;7961:1;7986:63;8041:7;8032:6;8021:9;8017:22;7986:63;:::i;:::-;7976:73;;7932:127;7717:349;;;;:::o;8072:529::-;8143:6;8151;8200:2;8188:9;8179:7;8175:23;8171:32;8168:119;;;8206:79;;:::i;:::-;8168:119;8354:1;8343:9;8339:17;8326:31;8384:18;8376:6;8373:30;8370:117;;;8406:79;;:::i;:::-;8370:117;8519:65;8576:7;8567:6;8556:9;8552:22;8519:65;:::i;:::-;8501:83;;;;8297:297;8072:529;;;;;:::o;8607:329::-;8666:6;8715:2;8703:9;8694:7;8690:23;8686:32;8683:119;;;8721:79;;:::i;:::-;8683:119;8841:1;8866:53;8911:7;8902:6;8891:9;8887:22;8866:53;:::i;:::-;8856:63;;8812:117;8607:329;;;;:::o;8942:474::-;9010:6;9018;9067:2;9055:9;9046:7;9042:23;9038:32;9035:119;;;9073:79;;:::i;:::-;9035:119;9193:1;9218:53;9263:7;9254:6;9243:9;9239:22;9218:53;:::i;:::-;9208:63;;9164:117;9320:2;9346:53;9391:7;9382:6;9371:9;9367:22;9346:53;:::i;:::-;9336:63;;9291:118;8942:474;;;;;:::o;9422:470::-;9488:6;9496;9545:2;9533:9;9524:7;9520:23;9516:32;9513:119;;;9551:79;;:::i;:::-;9513:119;9671:1;9696:52;9740:7;9731:6;9720:9;9716:22;9696:52;:::i;:::-;9686:62;;9642:116;9797:2;9823:52;9867:7;9858:6;9847:9;9843:22;9823:52;:::i;:::-;9813:62;;9768:117;9422:470;;;;;:::o;9898:108::-;9975:24;9993:5;9975:24;:::i;:::-;9970:3;9963:37;9898:108;;:::o;10012:118::-;10099:24;10117:5;10099:24;:::i;:::-;10094:3;10087:37;10012:118;;:::o;10136:109::-;10217:21;10232:5;10217:21;:::i;:::-;10212:3;10205:34;10136:109;;:::o;10251:360::-;10337:3;10365:38;10397:5;10365:38;:::i;:::-;10419:70;10482:6;10477:3;10419:70;:::i;:::-;10412:77;;10498:52;10543:6;10538:3;10531:4;10524:5;10520:16;10498:52;:::i;:::-;10575:29;10597:6;10575:29;:::i;:::-;10570:3;10566:39;10559:46;;10341:270;10251:360;;;;:::o;10617:364::-;10705:3;10733:39;10766:5;10733:39;:::i;:::-;10788:71;10852:6;10847:3;10788:71;:::i;:::-;10781:78;;10868:52;10913:6;10908:3;10901:4;10894:5;10890:16;10868:52;:::i;:::-;10945:29;10967:6;10945:29;:::i;:::-;10940:3;10936:39;10929:46;;10709:272;10617:364;;;;:::o;10987:377::-;11093:3;11121:39;11154:5;11121:39;:::i;:::-;11176:89;11258:6;11253:3;11176:89;:::i;:::-;11169:96;;11274:52;11319:6;11314:3;11307:4;11300:5;11296:16;11274:52;:::i;:::-;11351:6;11346:3;11342:16;11335:23;;11097:267;10987:377;;;;:::o;11370:366::-;11512:3;11533:67;11597:2;11592:3;11533:67;:::i;:::-;11526:74;;11609:93;11698:3;11609:93;:::i;:::-;11727:2;11722:3;11718:12;11711:19;;11370:366;;;:::o;11742:::-;11884:3;11905:67;11969:2;11964:3;11905:67;:::i;:::-;11898:74;;11981:93;12070:3;11981:93;:::i;:::-;12099:2;12094:3;12090:12;12083:19;;11742:366;;;:::o;12114:::-;12256:3;12277:67;12341:2;12336:3;12277:67;:::i;:::-;12270:74;;12353:93;12442:3;12353:93;:::i;:::-;12471:2;12466:3;12462:12;12455:19;;12114:366;;;:::o;12486:::-;12628:3;12649:67;12713:2;12708:3;12649:67;:::i;:::-;12642:74;;12725:93;12814:3;12725:93;:::i;:::-;12843:2;12838:3;12834:12;12827:19;;12486:366;;;:::o;12858:::-;13000:3;13021:67;13085:2;13080:3;13021:67;:::i;:::-;13014:74;;13097:93;13186:3;13097:93;:::i;:::-;13215:2;13210:3;13206:12;13199:19;;12858:366;;;:::o;13230:::-;13372:3;13393:67;13457:2;13452:3;13393:67;:::i;:::-;13386:74;;13469:93;13558:3;13469:93;:::i;:::-;13587:2;13582:3;13578:12;13571:19;;13230:366;;;:::o;13602:::-;13744:3;13765:67;13829:2;13824:3;13765:67;:::i;:::-;13758:74;;13841:93;13930:3;13841:93;:::i;:::-;13959:2;13954:3;13950:12;13943:19;;13602:366;;;:::o;13974:::-;14116:3;14137:67;14201:2;14196:3;14137:67;:::i;:::-;14130:74;;14213:93;14302:3;14213:93;:::i;:::-;14331:2;14326:3;14322:12;14315:19;;13974:366;;;:::o;14346:::-;14488:3;14509:67;14573:2;14568:3;14509:67;:::i;:::-;14502:74;;14585:93;14674:3;14585:93;:::i;:::-;14703:2;14698:3;14694:12;14687:19;;14346:366;;;:::o;14718:::-;14860:3;14881:67;14945:2;14940:3;14881:67;:::i;:::-;14874:74;;14957:93;15046:3;14957:93;:::i;:::-;15075:2;15070:3;15066:12;15059:19;;14718:366;;;:::o;15090:::-;15232:3;15253:67;15317:2;15312:3;15253:67;:::i;:::-;15246:74;;15329:93;15418:3;15329:93;:::i;:::-;15447:2;15442:3;15438:12;15431:19;;15090:366;;;:::o;15462:::-;15604:3;15625:67;15689:2;15684:3;15625:67;:::i;:::-;15618:74;;15701:93;15790:3;15701:93;:::i;:::-;15819:2;15814:3;15810:12;15803:19;;15462:366;;;:::o;15834:::-;15976:3;15997:67;16061:2;16056:3;15997:67;:::i;:::-;15990:74;;16073:93;16162:3;16073:93;:::i;:::-;16191:2;16186:3;16182:12;16175:19;;15834:366;;;:::o;16206:400::-;16366:3;16387:84;16469:1;16464:3;16387:84;:::i;:::-;16380:91;;16480:93;16569:3;16480:93;:::i;:::-;16598:1;16593:3;16589:11;16582:18;;16206:400;;;:::o;16612:366::-;16754:3;16775:67;16839:2;16834:3;16775:67;:::i;:::-;16768:74;;16851:93;16940:3;16851:93;:::i;:::-;16969:2;16964:3;16960:12;16953:19;;16612:366;;;:::o;16984:::-;17126:3;17147:67;17211:2;17206:3;17147:67;:::i;:::-;17140:74;;17223:93;17312:3;17223:93;:::i;:::-;17341:2;17336:3;17332:12;17325:19;;16984:366;;;:::o;17356:::-;17498:3;17519:67;17583:2;17578:3;17519:67;:::i;:::-;17512:74;;17595:93;17684:3;17595:93;:::i;:::-;17713:2;17708:3;17704:12;17697:19;;17356:366;;;:::o;17728:::-;17870:3;17891:67;17955:2;17950:3;17891:67;:::i;:::-;17884:74;;17967:93;18056:3;17967:93;:::i;:::-;18085:2;18080:3;18076:12;18069:19;;17728:366;;;:::o;18100:::-;18242:3;18263:67;18327:2;18322:3;18263:67;:::i;:::-;18256:74;;18339:93;18428:3;18339:93;:::i;:::-;18457:2;18452:3;18448:12;18441:19;;18100:366;;;:::o;18472:::-;18614:3;18635:67;18699:2;18694:3;18635:67;:::i;:::-;18628:74;;18711:93;18800:3;18711:93;:::i;:::-;18829:2;18824:3;18820:12;18813:19;;18472:366;;;:::o;18844:398::-;19003:3;19024:83;19105:1;19100:3;19024:83;:::i;:::-;19017:90;;19116:93;19205:3;19116:93;:::i;:::-;19234:1;19229:3;19225:11;19218:18;;18844:398;;;:::o;19248:366::-;19390:3;19411:67;19475:2;19470:3;19411:67;:::i;:::-;19404:74;;19487:93;19576:3;19487:93;:::i;:::-;19605:2;19600:3;19596:12;19589:19;;19248:366;;;:::o;19620:::-;19762:3;19783:67;19847:2;19842:3;19783:67;:::i;:::-;19776:74;;19859:93;19948:3;19859:93;:::i;:::-;19977:2;19972:3;19968:12;19961:19;;19620:366;;;:::o;19992:::-;20134:3;20155:67;20219:2;20214:3;20155:67;:::i;:::-;20148:74;;20231:93;20320:3;20231:93;:::i;:::-;20349:2;20344:3;20340:12;20333:19;;19992:366;;;:::o;20364:::-;20506:3;20527:67;20591:2;20586:3;20527:67;:::i;:::-;20520:74;;20603:93;20692:3;20603:93;:::i;:::-;20721:2;20716:3;20712:12;20705:19;;20364:366;;;:::o;20736:::-;20878:3;20899:67;20963:2;20958:3;20899:67;:::i;:::-;20892:74;;20975:93;21064:3;20975:93;:::i;:::-;21093:2;21088:3;21084:12;21077:19;;20736:366;;;:::o;21108:::-;21250:3;21271:67;21335:2;21330:3;21271:67;:::i;:::-;21264:74;;21347:93;21436:3;21347:93;:::i;:::-;21465:2;21460:3;21456:12;21449:19;;21108:366;;;:::o;21480:::-;21622:3;21643:67;21707:2;21702:3;21643:67;:::i;:::-;21636:74;;21719:93;21808:3;21719:93;:::i;:::-;21837:2;21832:3;21828:12;21821:19;;21480:366;;;:::o;21852:::-;21994:3;22015:67;22079:2;22074:3;22015:67;:::i;:::-;22008:74;;22091:93;22180:3;22091:93;:::i;:::-;22209:2;22204:3;22200:12;22193:19;;21852:366;;;:::o;22224:::-;22366:3;22387:67;22451:2;22446:3;22387:67;:::i;:::-;22380:74;;22463:93;22552:3;22463:93;:::i;:::-;22581:2;22576:3;22572:12;22565:19;;22224:366;;;:::o;22596:::-;22738:3;22759:67;22823:2;22818:3;22759:67;:::i;:::-;22752:74;;22835:93;22924:3;22835:93;:::i;:::-;22953:2;22948:3;22944:12;22937:19;;22596:366;;;:::o;22968:::-;23110:3;23131:67;23195:2;23190:3;23131:67;:::i;:::-;23124:74;;23207:93;23296:3;23207:93;:::i;:::-;23325:2;23320:3;23316:12;23309:19;;22968:366;;;:::o;23410:527::-;23569:4;23564:3;23560:14;23656:4;23649:5;23645:16;23639:23;23675:63;23732:4;23727:3;23723:14;23709:12;23675:63;:::i;:::-;23584:164;23840:4;23833:5;23829:16;23823:23;23859:61;23914:4;23909:3;23905:14;23891:12;23859:61;:::i;:::-;23758:172;23538:399;23410:527;;:::o;23943:118::-;24030:24;24048:5;24030:24;:::i;:::-;24025:3;24018:37;23943:118;;:::o;24067:115::-;24152:23;24169:5;24152:23;:::i;:::-;24147:3;24140:36;24067:115;;:::o;24188:105::-;24263:23;24280:5;24263:23;:::i;:::-;24258:3;24251:36;24188:105;;:::o;24299:115::-;24384:23;24401:5;24384:23;:::i;:::-;24379:3;24372:36;24299:115;;:::o;24420:701::-;24701:3;24723:95;24814:3;24805:6;24723:95;:::i;:::-;24716:102;;24835:95;24926:3;24917:6;24835:95;:::i;:::-;24828:102;;24947:148;25091:3;24947:148;:::i;:::-;24940:155;;25112:3;25105:10;;24420:701;;;;;:::o;25127:379::-;25311:3;25333:147;25476:3;25333:147;:::i;:::-;25326:154;;25497:3;25490:10;;25127:379;;;:::o;25512:222::-;25605:4;25643:2;25632:9;25628:18;25620:26;;25656:71;25724:1;25713:9;25709:17;25700:6;25656:71;:::i;:::-;25512:222;;;;:::o;25740:640::-;25935:4;25973:3;25962:9;25958:19;25950:27;;25987:71;26055:1;26044:9;26040:17;26031:6;25987:71;:::i;:::-;26068:72;26136:2;26125:9;26121:18;26112:6;26068:72;:::i;:::-;26150;26218:2;26207:9;26203:18;26194:6;26150:72;:::i;:::-;26269:9;26263:4;26259:20;26254:2;26243:9;26239:18;26232:48;26297:76;26368:4;26359:6;26297:76;:::i;:::-;26289:84;;25740:640;;;;;;;:::o;26386:210::-;26473:4;26511:2;26500:9;26496:18;26488:26;;26524:65;26586:1;26575:9;26571:17;26562:6;26524:65;:::i;:::-;26386:210;;;;:::o;26602:313::-;26715:4;26753:2;26742:9;26738:18;26730:26;;26802:9;26796:4;26792:20;26788:1;26777:9;26773:17;26766:47;26830:78;26903:4;26894:6;26830:78;:::i;:::-;26822:86;;26602:313;;;;:::o;26921:419::-;27087:4;27125:2;27114:9;27110:18;27102:26;;27174:9;27168:4;27164:20;27160:1;27149:9;27145:17;27138:47;27202:131;27328:4;27202:131;:::i;:::-;27194:139;;26921:419;;;:::o;27346:::-;27512:4;27550:2;27539:9;27535:18;27527:26;;27599:9;27593:4;27589:20;27585:1;27574:9;27570:17;27563:47;27627:131;27753:4;27627:131;:::i;:::-;27619:139;;27346:419;;;:::o;27771:::-;27937:4;27975:2;27964:9;27960:18;27952:26;;28024:9;28018:4;28014:20;28010:1;27999:9;27995:17;27988:47;28052:131;28178:4;28052:131;:::i;:::-;28044:139;;27771:419;;;:::o;28196:::-;28362:4;28400:2;28389:9;28385:18;28377:26;;28449:9;28443:4;28439:20;28435:1;28424:9;28420:17;28413:47;28477:131;28603:4;28477:131;:::i;:::-;28469:139;;28196:419;;;:::o;28621:::-;28787:4;28825:2;28814:9;28810:18;28802:26;;28874:9;28868:4;28864:20;28860:1;28849:9;28845:17;28838:47;28902:131;29028:4;28902:131;:::i;:::-;28894:139;;28621:419;;;:::o;29046:::-;29212:4;29250:2;29239:9;29235:18;29227:26;;29299:9;29293:4;29289:20;29285:1;29274:9;29270:17;29263:47;29327:131;29453:4;29327:131;:::i;:::-;29319:139;;29046:419;;;:::o;29471:::-;29637:4;29675:2;29664:9;29660:18;29652:26;;29724:9;29718:4;29714:20;29710:1;29699:9;29695:17;29688:47;29752:131;29878:4;29752:131;:::i;:::-;29744:139;;29471:419;;;:::o;29896:::-;30062:4;30100:2;30089:9;30085:18;30077:26;;30149:9;30143:4;30139:20;30135:1;30124:9;30120:17;30113:47;30177:131;30303:4;30177:131;:::i;:::-;30169:139;;29896:419;;;:::o;30321:::-;30487:4;30525:2;30514:9;30510:18;30502:26;;30574:9;30568:4;30564:20;30560:1;30549:9;30545:17;30538:47;30602:131;30728:4;30602:131;:::i;:::-;30594:139;;30321:419;;;:::o;30746:::-;30912:4;30950:2;30939:9;30935:18;30927:26;;30999:9;30993:4;30989:20;30985:1;30974:9;30970:17;30963:47;31027:131;31153:4;31027:131;:::i;:::-;31019:139;;30746:419;;;:::o;31171:::-;31337:4;31375:2;31364:9;31360:18;31352:26;;31424:9;31418:4;31414:20;31410:1;31399:9;31395:17;31388:47;31452:131;31578:4;31452:131;:::i;:::-;31444:139;;31171:419;;;:::o;31596:::-;31762:4;31800:2;31789:9;31785:18;31777:26;;31849:9;31843:4;31839:20;31835:1;31824:9;31820:17;31813:47;31877:131;32003:4;31877:131;:::i;:::-;31869:139;;31596:419;;;:::o;32021:::-;32187:4;32225:2;32214:9;32210:18;32202:26;;32274:9;32268:4;32264:20;32260:1;32249:9;32245:17;32238:47;32302:131;32428:4;32302:131;:::i;:::-;32294:139;;32021:419;;;:::o;32446:::-;32612:4;32650:2;32639:9;32635:18;32627:26;;32699:9;32693:4;32689:20;32685:1;32674:9;32670:17;32663:47;32727:131;32853:4;32727:131;:::i;:::-;32719:139;;32446:419;;;:::o;32871:::-;33037:4;33075:2;33064:9;33060:18;33052:26;;33124:9;33118:4;33114:20;33110:1;33099:9;33095:17;33088:47;33152:131;33278:4;33152:131;:::i;:::-;33144:139;;32871:419;;;:::o;33296:::-;33462:4;33500:2;33489:9;33485:18;33477:26;;33549:9;33543:4;33539:20;33535:1;33524:9;33520:17;33513:47;33577:131;33703:4;33577:131;:::i;:::-;33569:139;;33296:419;;;:::o;33721:::-;33887:4;33925:2;33914:9;33910:18;33902:26;;33974:9;33968:4;33964:20;33960:1;33949:9;33945:17;33938:47;34002:131;34128:4;34002:131;:::i;:::-;33994:139;;33721:419;;;:::o;34146:::-;34312:4;34350:2;34339:9;34335:18;34327:26;;34399:9;34393:4;34389:20;34385:1;34374:9;34370:17;34363:47;34427:131;34553:4;34427:131;:::i;:::-;34419:139;;34146:419;;;:::o;34571:::-;34737:4;34775:2;34764:9;34760:18;34752:26;;34824:9;34818:4;34814:20;34810:1;34799:9;34795:17;34788:47;34852:131;34978:4;34852:131;:::i;:::-;34844:139;;34571:419;;;:::o;34996:::-;35162:4;35200:2;35189:9;35185:18;35177:26;;35249:9;35243:4;35239:20;35235:1;35224:9;35220:17;35213:47;35277:131;35403:4;35277:131;:::i;:::-;35269:139;;34996:419;;;:::o;35421:::-;35587:4;35625:2;35614:9;35610:18;35602:26;;35674:9;35668:4;35664:20;35660:1;35649:9;35645:17;35638:47;35702:131;35828:4;35702:131;:::i;:::-;35694:139;;35421:419;;;:::o;35846:::-;36012:4;36050:2;36039:9;36035:18;36027:26;;36099:9;36093:4;36089:20;36085:1;36074:9;36070:17;36063:47;36127:131;36253:4;36127:131;:::i;:::-;36119:139;;35846:419;;;:::o;36271:::-;36437:4;36475:2;36464:9;36460:18;36452:26;;36524:9;36518:4;36514:20;36510:1;36499:9;36495:17;36488:47;36552:131;36678:4;36552:131;:::i;:::-;36544:139;;36271:419;;;:::o;36696:::-;36862:4;36900:2;36889:9;36885:18;36877:26;;36949:9;36943:4;36939:20;36935:1;36924:9;36920:17;36913:47;36977:131;37103:4;36977:131;:::i;:::-;36969:139;;36696:419;;;:::o;37121:::-;37287:4;37325:2;37314:9;37310:18;37302:26;;37374:9;37368:4;37364:20;37360:1;37349:9;37345:17;37338:47;37402:131;37528:4;37402:131;:::i;:::-;37394:139;;37121:419;;;:::o;37546:::-;37712:4;37750:2;37739:9;37735:18;37727:26;;37799:9;37793:4;37789:20;37785:1;37774:9;37770:17;37763:47;37827:131;37953:4;37827:131;:::i;:::-;37819:139;;37546:419;;;:::o;37971:::-;38137:4;38175:2;38164:9;38160:18;38152:26;;38224:9;38218:4;38214:20;38210:1;38199:9;38195:17;38188:47;38252:131;38378:4;38252:131;:::i;:::-;38244:139;;37971:419;;;:::o;38396:::-;38562:4;38600:2;38589:9;38585:18;38577:26;;38649:9;38643:4;38639:20;38635:1;38624:9;38620:17;38613:47;38677:131;38803:4;38677:131;:::i;:::-;38669:139;;38396:419;;;:::o;38821:::-;38987:4;39025:2;39014:9;39010:18;39002:26;;39074:9;39068:4;39064:20;39060:1;39049:9;39045:17;39038:47;39102:131;39228:4;39102:131;:::i;:::-;39094:139;;38821:419;;;:::o;39246:::-;39412:4;39450:2;39439:9;39435:18;39427:26;;39499:9;39493:4;39489:20;39485:1;39474:9;39470:17;39463:47;39527:131;39653:4;39527:131;:::i;:::-;39519:139;;39246:419;;;:::o;39671:346::-;39826:4;39864:2;39853:9;39849:18;39841:26;;39877:133;40007:1;39996:9;39992:17;39983:6;39877:133;:::i;:::-;39671:346;;;;:::o;40023:222::-;40116:4;40154:2;40143:9;40139:18;40131:26;;40167:71;40235:1;40224:9;40220:17;40211:6;40167:71;:::i;:::-;40023:222;;;;:::o;40251:324::-;40368:4;40406:2;40395:9;40391:18;40383:26;;40419:69;40485:1;40474:9;40470:17;40461:6;40419:69;:::i;:::-;40498:70;40564:2;40553:9;40549:18;40540:6;40498:70;:::i;:::-;40251:324;;;;;:::o;40581:129::-;40615:6;40642:20;;:::i;:::-;40632:30;;40671:33;40699:4;40691:6;40671:33;:::i;:::-;40581:129;;;:::o;40716:75::-;40749:6;40782:2;40776:9;40766:19;;40716:75;:::o;40797:311::-;40874:4;40964:18;40956:6;40953:30;40950:56;;;40986:18;;:::i;:::-;40950:56;41036:4;41028:6;41024:17;41016:25;;41096:4;41090;41086:15;41078:23;;40797:311;;;:::o;41114:307::-;41175:4;41265:18;41257:6;41254:30;41251:56;;;41287:18;;:::i;:::-;41251:56;41325:29;41347:6;41325:29;:::i;:::-;41317:37;;41409:4;41403;41399:15;41391:23;;41114:307;;;:::o;41427:98::-;41478:6;41512:5;41506:12;41496:22;;41427:98;;;:::o;41531:99::-;41583:6;41617:5;41611:12;41601:22;;41531:99;;;:::o;41636:168::-;41719:11;41753:6;41748:3;41741:19;41793:4;41788:3;41784:14;41769:29;;41636:168;;;;:::o;41810:147::-;41911:11;41948:3;41933:18;;41810:147;;;;:::o;41963:169::-;42047:11;42081:6;42076:3;42069:19;42121:4;42116:3;42112:14;42097:29;;41963:169;;;;:::o;42138:148::-;42240:11;42277:3;42262:18;;42138:148;;;;:::o;42292:273::-;42332:3;42351:20;42369:1;42351:20;:::i;:::-;42346:25;;42385:20;42403:1;42385:20;:::i;:::-;42380:25;;42507:1;42471:34;42467:42;42464:1;42461:49;42458:75;;;42513:18;;:::i;:::-;42458:75;42557:1;42554;42550:9;42543:16;;42292:273;;;;:::o;42571:305::-;42611:3;42630:20;42648:1;42630:20;:::i;:::-;42625:25;;42664:20;42682:1;42664:20;:::i;:::-;42659:25;;42818:1;42750:66;42746:74;42743:1;42740:81;42737:107;;;42824:18;;:::i;:::-;42737:107;42868:1;42865;42861:9;42854:16;;42571:305;;;;:::o;42882:185::-;42922:1;42939:20;42957:1;42939:20;:::i;:::-;42934:25;;42973:20;42991:1;42973:20;:::i;:::-;42968:25;;43012:1;43002:35;;43017:18;;:::i;:::-;43002:35;43059:1;43056;43052:9;43047:14;;42882:185;;;;:::o;43073:348::-;43113:7;43136:20;43154:1;43136:20;:::i;:::-;43131:25;;43170:20;43188:1;43170:20;:::i;:::-;43165:25;;43358:1;43290:66;43286:74;43283:1;43280:81;43275:1;43268:9;43261:17;43257:105;43254:131;;;43365:18;;:::i;:::-;43254:131;43413:1;43410;43406:9;43395:20;;43073:348;;;;:::o;43427:191::-;43467:4;43487:20;43505:1;43487:20;:::i;:::-;43482:25;;43521:20;43539:1;43521:20;:::i;:::-;43516:25;;43560:1;43557;43554:8;43551:34;;;43565:18;;:::i;:::-;43551:34;43610:1;43607;43603:9;43595:17;;43427:191;;;;:::o;43624:::-;43664:4;43684:20;43702:1;43684:20;:::i;:::-;43679:25;;43718:20;43736:1;43718:20;:::i;:::-;43713:25;;43757:1;43754;43751:8;43748:34;;;43762:18;;:::i;:::-;43748:34;43807:1;43804;43800:9;43792:17;;43624:191;;;;:::o;43821:96::-;43858:7;43887:24;43905:5;43887:24;:::i;:::-;43876:35;;43821:96;;;:::o;43923:90::-;43957:7;44000:5;43993:13;43986:21;43975:32;;43923:90;;;:::o;44019:149::-;44055:7;44095:66;44088:5;44084:78;44073:89;;44019:149;;;:::o;44174:118::-;44211:7;44251:34;44244:5;44240:46;44229:57;;44174:118;;;:::o;44298:126::-;44335:7;44375:42;44368:5;44364:54;44353:65;;44298:126;;;:::o;44430:77::-;44467:7;44496:5;44485:16;;44430:77;;;:::o;44513:93::-;44549:7;44589:10;44582:5;44578:22;44567:33;;44513:93;;;:::o;44612:101::-;44648:7;44688:18;44681:5;44677:30;44666:41;;44612:101;;;:::o;44719:154::-;44803:6;44798:3;44793;44780:30;44865:1;44856:6;44851:3;44847:16;44840:27;44719:154;;;:::o;44879:307::-;44947:1;44957:113;44971:6;44968:1;44965:13;44957:113;;;45056:1;45051:3;45047:11;45041:18;45037:1;45032:3;45028:11;45021:39;44993:2;44990:1;44986:10;44981:15;;44957:113;;;45088:6;45085:1;45082:13;45079:101;;;45168:1;45159:6;45154:3;45150:16;45143:27;45079:101;44928:258;44879:307;;;:::o;45192:171::-;45231:3;45254:24;45272:5;45254:24;:::i;:::-;45245:33;;45300:4;45293:5;45290:15;45287:41;;;45308:18;;:::i;:::-;45287:41;45355:1;45348:5;45344:13;45337:20;;45192:171;;;:::o;45369:320::-;45413:6;45450:1;45444:4;45440:12;45430:22;;45497:1;45491:4;45487:12;45518:18;45508:81;;45574:4;45566:6;45562:17;45552:27;;45508:81;45636:2;45628:6;45625:14;45605:18;45602:38;45599:84;;;45655:18;;:::i;:::-;45599:84;45420:269;45369:320;;;:::o;45695:281::-;45778:27;45800:4;45778:27;:::i;:::-;45770:6;45766:40;45908:6;45896:10;45893:22;45872:18;45860:10;45857:34;45854:62;45851:88;;;45919:18;;:::i;:::-;45851:88;45959:10;45955:2;45948:22;45738:238;45695:281;;:::o;45982:233::-;46021:3;46044:24;46062:5;46044:24;:::i;:::-;46035:33;;46090:66;46083:5;46080:77;46077:103;;;46160:18;;:::i;:::-;46077:103;46207:1;46200:5;46196:13;46189:20;;45982:233;;;:::o;46221:176::-;46253:1;46270:20;46288:1;46270:20;:::i;:::-;46265:25;;46304:20;46322:1;46304:20;:::i;:::-;46299:25;;46343:1;46333:35;;46348:18;;:::i;:::-;46333:35;46389:1;46386;46382:9;46377:14;;46221:176;;;;:::o;46403:180::-;46451:77;46448:1;46441:88;46548:4;46545:1;46538:15;46572:4;46569:1;46562:15;46589:180;46637:77;46634:1;46627:88;46734:4;46731:1;46724:15;46758:4;46755:1;46748:15;46775:180;46823:77;46820:1;46813:88;46920:4;46917:1;46910:15;46944:4;46941:1;46934:15;46961:180;47009:77;47006:1;46999:88;47106:4;47103:1;47096:15;47130:4;47127:1;47120:15;47147:180;47195:77;47192:1;47185:88;47292:4;47289:1;47282:15;47316:4;47313:1;47306:15;47333:117;47442:1;47439;47432:12;47456:117;47565:1;47562;47555:12;47579:117;47688:1;47685;47678:12;47702:117;47811:1;47808;47801:12;47825:117;47934:1;47931;47924:12;47948:117;48057:1;48054;48047:12;48071:102;48112:6;48163:2;48159:7;48154:2;48147:5;48143:14;48139:28;48129:38;;48071:102;;;:::o;48179:221::-;48319:34;48315:1;48307:6;48303:14;48296:58;48388:4;48383:2;48375:6;48371:15;48364:29;48179:221;:::o;48406:225::-;48546:34;48542:1;48534:6;48530:14;48523:58;48615:8;48610:2;48602:6;48598:15;48591:33;48406:225;:::o;48637:229::-;48777:34;48773:1;48765:6;48761:14;48754:58;48846:12;48841:2;48833:6;48829:15;48822:37;48637:229;:::o;48872:222::-;49012:34;49008:1;49000:6;48996:14;48989:58;49081:5;49076:2;49068:6;49064:15;49057:30;48872:222;:::o;49100:224::-;49240:34;49236:1;49228:6;49224:14;49217:58;49309:7;49304:2;49296:6;49292:15;49285:32;49100:224;:::o;49330:236::-;49470:34;49466:1;49458:6;49454:14;49447:58;49539:19;49534:2;49526:6;49522:15;49515:44;49330:236;:::o;49572:180::-;49712:32;49708:1;49700:6;49696:14;49689:56;49572:180;:::o;49758:182::-;49898:34;49894:1;49886:6;49882:14;49875:58;49758:182;:::o;49946:244::-;50086:34;50082:1;50074:6;50070:14;50063:58;50155:27;50150:2;50142:6;50138:15;50131:52;49946:244;:::o;50196:174::-;50336:26;50332:1;50324:6;50320:14;50313:50;50196:174;:::o;50376:230::-;50516:34;50512:1;50504:6;50500:14;50493:58;50585:13;50580:2;50572:6;50568:15;50561:38;50376:230;:::o;50612:168::-;50752:20;50748:1;50740:6;50736:14;50729:44;50612:168;:::o;50786:225::-;50926:34;50922:1;50914:6;50910:14;50903:58;50995:8;50990:2;50982:6;50978:15;50971:33;50786:225;:::o;51017:155::-;51157:7;51153:1;51145:6;51141:14;51134:31;51017:155;:::o;51178:182::-;51318:34;51314:1;51306:6;51302:14;51295:58;51178:182;:::o;51366:234::-;51506:34;51502:1;51494:6;51490:14;51483:58;51575:17;51570:2;51562:6;51558:15;51551:42;51366:234;:::o;51606:176::-;51746:28;51742:1;51734:6;51730:14;51723:52;51606:176;:::o;51788:237::-;51928:34;51924:1;51916:6;51912:14;51905:58;51997:20;51992:2;51984:6;51980:15;51973:45;51788:237;:::o;52031:179::-;52171:31;52167:1;52159:6;52155:14;52148:55;52031:179;:::o;52216:221::-;52356:34;52352:1;52344:6;52340:14;52333:58;52425:4;52420:2;52412:6;52408:15;52401:29;52216:221;:::o;52443:114::-;;:::o;52563:166::-;52703:18;52699:1;52691:6;52687:14;52680:42;52563:166;:::o;52735:238::-;52875:34;52871:1;52863:6;52859:14;52852:58;52944:21;52939:2;52931:6;52927:15;52920:46;52735:238;:::o;52979:172::-;53119:24;53115:1;53107:6;53103:14;53096:48;52979:172;:::o;53157:179::-;53297:31;53293:1;53285:6;53281:14;53274:55;53157:179;:::o;53342:220::-;53482:34;53478:1;53470:6;53466:14;53459:58;53551:3;53546:2;53538:6;53534:15;53527:28;53342:220;:::o;53568:172::-;53708:24;53704:1;53696:6;53692:14;53685:48;53568:172;:::o;53746:233::-;53886:34;53882:1;53874:6;53870:14;53863:58;53955:16;53950:2;53942:6;53938:15;53931:41;53746:233;:::o;53985:181::-;54125:33;54121:1;54113:6;54109:14;54102:57;53985:181;:::o;54172:234::-;54312:34;54308:1;54300:6;54296:14;54289:58;54381:17;54376:2;54368:6;54364:15;54357:42;54172:234;:::o;54412:232::-;54552:34;54548:1;54540:6;54536:14;54529:58;54621:15;54616:2;54608:6;54604:15;54597:40;54412:232;:::o;54650:221::-;54790:34;54786:1;54778:6;54774:14;54767:58;54859:4;54854:2;54846:6;54842:15;54835:29;54650:221;:::o;54877:122::-;54950:24;54968:5;54950:24;:::i;:::-;54943:5;54940:35;54930:63;;54989:1;54986;54979:12;54930:63;54877:122;:::o;55005:116::-;55075:21;55090:5;55075:21;:::i;:::-;55068:5;55065:32;55055:60;;55111:1;55108;55101:12;55055:60;55005:116;:::o;55127:120::-;55199:23;55216:5;55199:23;:::i;:::-;55192:5;55189:34;55179:62;;55237:1;55234;55227:12;55179:62;55127:120;:::o;55253:122::-;55326:24;55344:5;55326:24;:::i;:::-;55319:5;55316:35;55306:63;;55365:1;55362;55355:12;55306:63;55253:122;:::o;55381:120::-;55453:23;55470:5;55453:23;:::i;:::-;55446:5;55443:34;55433:62;;55491:1;55488;55481:12;55433:62;55381:120;:::o;55507:::-;55579:23;55596:5;55579:23;:::i;:::-;55572:5;55569:34;55559:62;;55617:1;55614;55607:12;55559:62;55507:120;:::o

Swarm Source

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