ETH Price: $2,618.82 (+0.72%)
Gas: 2 Gwei

Token

DoodMfers (Doodle Mfers)
 

Overview

Max Total Supply

503 Doodle Mfers

Holders

27

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
20 Doodle Mfers
0xcffcda3a7f804147872d91a0a88bbd5eb45ee3fc
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:
DoodleMfers

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-02-23
*/

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


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

pragma solidity ^0.8.0;

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

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

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

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

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

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


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

pragma solidity ^0.8.1;

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

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;


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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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


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

pragma solidity ^0.8.0;

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

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

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

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

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

        _;

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

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


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

pragma solidity ^0.8.0;

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

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

// File: contracts/ERC721A.sol



pragma solidity ^0.8.0;









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

  struct TokenOwnership {
    address addr;
    uint64 startTimestamp;
  }

  struct AddressData {
    uint128 balance;
    uint128 numberMinted;
  }

  uint256 private currentIndex = 1;

  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 - 1;
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    _approve(to, tokenId, owner);
  }

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

    return _tokenApprovals[tokenId];
  }

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

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

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

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

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

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

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

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

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

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

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

    uint256 updatedIndex = startTokenId;

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

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

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

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

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

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

    _beforeTokenTransfers(from, to, tokenId, 1);

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

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

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

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

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

  uint256 public nextOwnerToExplicitlySet = 0;

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

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

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

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



pragma solidity ^0.8.0;





contract DoodleMfers is Ownable, ERC721A, ReentrancyGuard {
  uint256 public maxPerTx = 20;
  uint256 public maxFree = 500;

  uint64 publicPrice = 0.0069 ether;
  bool public publicSaleIsActive = false;
  
  //Team and community wallet
  address address1 = 0xc58E3c85207F933Ab5E48D047929856e8E65ef4F;
  address communityWallet = 0x2dcc762101406Ee4c3384Cb2015420cc8ecb1375;
  

  //mapping(address => uint256) public allowlist;

  constructor(
    uint256 maxBatchSize_,
    uint256 collectionSize_
  ) ERC721A("DoodMfers", "Doodle Mfers", maxBatchSize_, collectionSize_) {

  }

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

  function togglePublicSale() public onlyOwner {
        publicSaleIsActive = !publicSaleIsActive;
    }


function publicSaleMint(uint256 quantity)  
    external
    payable
    callerIsUser
  {
    require(publicSaleIsActive, "public sale has not begun yet");
    require(totalSupply() + quantity <= collectionSize, "reached max supply");
    require(quantity <= maxPerTx, "cannot mint this many at once");
    uint256 ts = totalSupply();
        if(ts >= maxFree)
        {
            require(msg.value >= publicPrice * quantity, "Need to send more ETH.");
        }
        if(ts + quantity >= maxFree)
        {
            uint256 remainderMint = (ts+quantity)-maxFree;
            require(msg.value >= publicPrice * remainderMint, "Need to send more ETH to cover amount over the free limit.");
        }
    _safeMint(msg.sender, quantity);

  }


  // // 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 withdraw() public payable onlyOwner {
    uint256 fifteenPercent = address(this).balance * 15 / 100;
    payable(address1).transfer(fifteenPercent);
    payable(communityWallet).transfer(address(this).balance);
  }

  function setOwnersExplicit(uint256 quantity) external onlyOwner nonReentrant {
    _setOwnersExplicit(quantity);
  }

  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":"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":[{"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":[],"name":"maxFree","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPerTx","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":[],"name":"publicSaleIsActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":[{"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":"uint256","name":"quantity","type":"uint256"}],"name":"setOwnersExplicit","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":[],"name":"togglePublicSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"payable","type":"function"}]

60c06040526001805560006008556014600a556101f4600b556618838370f34000600c60006101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600c60086101000a81548160ff02191690831515021790555073c58e3c85207f933ab5e48d047929856e8e65ef4f600c60096101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550732dcc762101406ee4c3384cb2015420cc8ecb1375600d60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055503480156200011a57600080fd5b50604051620052fa380380620052fa833981810160405281019062000140919062000443565b6040518060400160405280600981526020017f446f6f644d6665727300000000000000000000000000000000000000000000008152506040518060400160405280600c81526020017f446f6f646c65204d6665727300000000000000000000000000000000000000008152508383620001ce620001c2620002b060201b60201c565b620002b860201b60201c565b6000811162000214576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200020b90620004fa565b60405180910390fd5b600082116200025a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200025190620004d8565b60405180910390fd5b8360029080519060200190620002729291906200037c565b5082600390805190602001906200028b9291906200037c565b508160a081815250508060808181525050505050506001600981905550505062000659565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8280546200038a9062000537565b90600052602060002090601f016020900481019282620003ae5760008555620003fa565b82601f10620003c957805160ff1916838001178555620003fa565b82800160010185558215620003fa579182015b82811115620003f9578251825591602001919060010190620003dc565b5b5090506200040991906200040d565b5090565b5b80821115620004285760008160009055506001016200040e565b5090565b6000815190506200043d816200063f565b92915050565b600080604083850312156200045d576200045c6200059c565b5b60006200046d858286016200042c565b925050602062000480858286016200042c565b9150509250929050565b6000620004996027836200051c565b9150620004a682620005a1565b604082019050919050565b6000620004c0602e836200051c565b9150620004cd82620005f0565b604082019050919050565b60006020820190508181036000830152620004f3816200048a565b9050919050565b600060208201905081810360008301526200051581620004b1565b9050919050565b600082825260208201905092915050565b6000819050919050565b600060028204905060018216806200055057607f821691505b602082108114156200056757620005666200056d565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600080fd5b7f455243373231413a206d61782062617463682073697a65206d7573742062652060008201527f6e6f6e7a65726f00000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a20636f6c6c656374696f6e206d757374206861766520612060008201527f6e6f6e7a65726f20737570706c79000000000000000000000000000000000000602082015250565b6200064a816200052d565b81146200065657600080fd5b50565b60805160a051614c5f6200069b600039600081816123d6015281816123ff0152612ba80152600081816114c90152818161215e01526121920152614c5f6000f3fe6080604052600436106101cd5760003560e01c806370a08231116100f7578063b88d4fde11610095578063e222c7f911610064578063e222c7f914610680578063e985e9c514610697578063f2fde38b146106d4578063f968adbe146106fd576101cd565b8063b88d4fde146105b2578063c87b56dd146105db578063d7224ba014610618578063dc33e68114610643576101cd565b80639231ab2a116100d15780639231ab2a1461050557806395d89b4114610542578063a22cb4651461056d578063b3ab66b014610596576101cd565b806370a0823114610486578063715018a6146104c35780638da5cb5b146104da576101cd565b80632d20fb601161016f578063485a68a31161013e578063485a68a3146103b85780634f6ccce7146103e357806355f804b3146104205780636352211e14610449576101cd565b80632d20fb601461031f5780632f745c59146103485780633ccfd60b1461038557806342842e0e1461038f576101cd565b8063095ea7b3116101ab578063095ea7b3146102775780630fcf2e75146102a057806318160ddd146102cb57806323b872dd146102f6576101cd565b806301ffc9a7146101d257806306fdde031461020f578063081812fc1461023a575b600080fd5b3480156101de57600080fd5b506101f960048036038101906101f491906133b8565b610728565b6040516102069190613a7c565b60405180910390f35b34801561021b57600080fd5b50610224610872565b6040516102319190613a97565b60405180910390f35b34801561024657600080fd5b50610261600480360381019061025c919061345f565b610904565b60405161026e9190613a15565b60405180910390f35b34801561028357600080fd5b5061029e60048036038101906102999190613378565b610989565b005b3480156102ac57600080fd5b506102b5610aa2565b6040516102c29190613a7c565b60405180910390f35b3480156102d757600080fd5b506102e0610ab5565b6040516102ed9190613e94565b60405180910390f35b34801561030257600080fd5b5061031d60048036038101906103189190613262565b610aca565b005b34801561032b57600080fd5b506103466004803603810190610341919061345f565b610ada565b005b34801561035457600080fd5b5061036f600480360381019061036a9190613378565b610bb8565b60405161037c9190613e94565b60405180910390f35b61038d610db6565b005b34801561039b57600080fd5b506103b660048036038101906103b19190613262565b610f24565b005b3480156103c457600080fd5b506103cd610f44565b6040516103da9190613e94565b60405180910390f35b3480156103ef57600080fd5b5061040a6004803603810190610405919061345f565b610f4a565b6040516104179190613e94565b60405180910390f35b34801561042c57600080fd5b5061044760048036038101906104429190613412565b610f9d565b005b34801561045557600080fd5b50610470600480360381019061046b919061345f565b61102f565b60405161047d9190613a15565b60405180910390f35b34801561049257600080fd5b506104ad60048036038101906104a891906131f5565b611045565b6040516104ba9190613e94565b60405180910390f35b3480156104cf57600080fd5b506104d861112e565b005b3480156104e657600080fd5b506104ef6111b6565b6040516104fc9190613a15565b60405180910390f35b34801561051157600080fd5b5061052c6004803603810190610527919061345f565b6111df565b6040516105399190613e79565b60405180910390f35b34801561054e57600080fd5b506105576111f7565b6040516105649190613a97565b60405180910390f35b34801561057957600080fd5b50610594600480360381019061058f9190613338565b611289565b005b6105b060048036038101906105ab919061345f565b61140a565b005b3480156105be57600080fd5b506105d960048036038101906105d491906132b5565b6116b4565b005b3480156105e757600080fd5b5061060260048036038101906105fd919061345f565b611710565b60405161060f9190613a97565b60405180910390f35b34801561062457600080fd5b5061062d6117b7565b60405161063a9190613e94565b60405180910390f35b34801561064f57600080fd5b5061066a600480360381019061066591906131f5565b6117bd565b6040516106779190613e94565b60405180910390f35b34801561068c57600080fd5b506106956117cf565b005b3480156106a357600080fd5b506106be60048036038101906106b99190613222565b611877565b6040516106cb9190613a7c565b60405180910390f35b3480156106e057600080fd5b506106fb60048036038101906106f691906131f5565b61190b565b005b34801561070957600080fd5b50610712611a03565b60405161071f9190613e94565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806107f357507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061085b57507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061086b575061086a82611a09565b5b9050919050565b606060028054610881906141e7565b80601f01602080910402602001604051908101604052809291908181526020018280546108ad906141e7565b80156108fa5780601f106108cf576101008083540402835291602001916108fa565b820191906000526020600020905b8154815290600101906020018083116108dd57829003601f168201915b5050505050905090565b600061090f82611a73565b61094e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161094590613e19565b60405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006109948261102f565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610a05576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109fc90613cf9565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610a24611a81565b73ffffffffffffffffffffffffffffffffffffffff161480610a535750610a5281610a4d611a81565b611877565b5b610a92576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a8990613bb9565b60405180910390fd5b610a9d838383611a89565b505050565b600c60089054906101000a900460ff1681565b600060018054610ac591906140a3565b905090565b610ad5838383611b3b565b505050565b610ae2611a81565b73ffffffffffffffffffffffffffffffffffffffff16610b006111b6565b73ffffffffffffffffffffffffffffffffffffffff1614610b56576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b4d90613c59565b60405180910390fd5b60026009541415610b9c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b9390613dd9565b60405180910390fd5b6002600981905550610bad816120f4565b600160098190555050565b6000610bc383611045565b8210610c04576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bfb90613ab9565b60405180910390fd5b6000610c0e610ab5565b905060008060005b83811015610d74576000600460008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614610d0857806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610d605786841415610d51578195505050505050610db0565b8380610d5c9061424a565b9450505b508080610d6c9061424a565b915050610c16565b506040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610da790613d99565b60405180910390fd5b92915050565b610dbe611a81565b73ffffffffffffffffffffffffffffffffffffffff16610ddc6111b6565b73ffffffffffffffffffffffffffffffffffffffff1614610e32576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e2990613c59565b60405180910390fd5b60006064600f47610e439190614015565b610e4d9190613fe4565b9050600c60099054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015610eb7573d6000803e3d6000fd5b50600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015610f20573d6000803e3d6000fd5b5050565b610f3f838383604051806020016040528060008152506116b4565b505050565b600b5481565b6000610f54610ab5565b8210610f95576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f8c90613b39565b60405180910390fd5b819050919050565b610fa5611a81565b73ffffffffffffffffffffffffffffffffffffffff16610fc36111b6565b73ffffffffffffffffffffffffffffffffffffffff1614611019576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161101090613c59565b60405180910390fd5b8181600e919061102a929190612fe9565b505050565b600061103a82612382565b600001519050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156110b6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110ad90613bf9565b60405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b611136611a81565b73ffffffffffffffffffffffffffffffffffffffff166111546111b6565b73ffffffffffffffffffffffffffffffffffffffff16146111aa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111a190613c59565b60405180910390fd5b6111b46000612585565b565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6111e761306f565b6111f082612382565b9050919050565b606060038054611206906141e7565b80601f0160208091040260200160405190810160405280929190818152602001828054611232906141e7565b801561127f5780601f106112545761010080835404028352916020019161127f565b820191906000526020600020905b81548152906001019060200180831161126257829003601f168201915b5050505050905090565b611291611a81565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156112ff576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112f690613c99565b60405180910390fd5b806007600061130c611a81565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166113b9611a81565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516113fe9190613a7c565b60405180910390a35050565b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614611478576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161146f90613b99565b60405180910390fd5b600c60089054906101000a900460ff166114c7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114be90613cd9565b60405180910390fd5b7f0000000000000000000000000000000000000000000000000000000000000000816114f1610ab5565b6114fb9190613f8e565b111561153c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161153390613c19565b60405180910390fd5b600a54811115611581576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161157890613ad9565b60405180910390fd5b600061158b610ab5565b9050600b5481106116055781600c60009054906101000a900467ffffffffffffffff1667ffffffffffffffff166115c29190614015565b341015611604576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115fb90613d39565b60405180910390fd5b5b600b5482826116149190613f8e565b106116a6576000600b54838361162a9190613f8e565b61163491906140a3565b905080600c60009054906101000a900467ffffffffffffffff1667ffffffffffffffff166116629190614015565b3410156116a4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161169b90613e39565b60405180910390fd5b505b6116b03383612649565b5050565b6116bf848484611b3b565b6116cb84848484612667565b61170a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161170190613d19565b60405180910390fd5b50505050565b606061171b82611a73565b61175a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161175190613c79565b60405180910390fd5b60006117646127fe565b9050600081511161178457604051806020016040528060008152506117af565b8061178e84612890565b60405160200161179f9291906139e6565b6040516020818303038152906040525b915050919050565b60085481565b60006117c8826129f1565b9050919050565b6117d7611a81565b73ffffffffffffffffffffffffffffffffffffffff166117f56111b6565b73ffffffffffffffffffffffffffffffffffffffff161461184b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161184290613c59565b60405180910390fd5b600c60089054906101000a900460ff1615600c60086101000a81548160ff021916908315150217905550565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611913611a81565b73ffffffffffffffffffffffffffffffffffffffff166119316111b6565b73ffffffffffffffffffffffffffffffffffffffff1614611987576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161197e90613c59565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156119f7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119ee90613af9565b60405180910390fd5b611a0081612585565b50565b600a5481565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600060015482109050919050565b600033905090565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b6000611b4682612382565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff16611b6d611a81565b73ffffffffffffffffffffffffffffffffffffffff161480611bc95750611b92611a81565b73ffffffffffffffffffffffffffffffffffffffff16611bb184610904565b73ffffffffffffffffffffffffffffffffffffffff16145b80611be55750611be48260000151611bdf611a81565b611877565b5b905080611c27576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c1e90613cb9565b60405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff1614611c99576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c9090613c39565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611d09576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d0090613b59565b60405180910390fd5b611d168585856001612ada565b611d266000848460000151611a89565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff16611d94919061406f565b92506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff16611e389190613f48565b92506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060405180604001604052808573ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506004600085815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055509050506000600184611f3e9190613f8e565b9050600073ffffffffffffffffffffffffffffffffffffffff166004600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16141561208457611fb481611a73565b15612083576040518060400160405280846000015173ffffffffffffffffffffffffffffffffffffffff168152602001846020015167ffffffffffffffff168152506004600083815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055509050505b5b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46120ec8686866001612ae0565b505050505050565b600060085490506000821161213e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161213590613bd9565b60405180910390fd5b60006001838361214e9190613f8e565b61215891906140a3565b905060017f000000000000000000000000000000000000000000000000000000000000000061218791906140a3565b8111156121be5760017f00000000000000000000000000000000000000000000000000000000000000006121bb91906140a3565b90505b6121c781611a73565b612206576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121fd90613db9565b60405180910390fd5b60008290505b81811161236957600073ffffffffffffffffffffffffffffffffffffffff166004600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16141561235657600061228982612382565b90506040518060400160405280826000015173ffffffffffffffffffffffffffffffffffffffff168152602001826020015167ffffffffffffffff168152506004600084815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550905050505b80806123619061424a565b91505061220c565b506001816123779190613f8e565b600881905550505050565b61238a61306f565b61239382611a73565b6123d2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123c990613b19565b60405180910390fd5b60007f000000000000000000000000000000000000000000000000000000000000000083106124365760017f00000000000000000000000000000000000000000000000000000000000000008461242991906140a3565b6124339190613f8e565b90505b60008390505b818110612544576000600460008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461253057809350505050612580565b50808061253c906141bd565b91505061243c565b506040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161257790613df9565b60405180910390fd5b919050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b612663828260405180602001604052806000815250612ae6565b5050565b60006126888473ffffffffffffffffffffffffffffffffffffffff16612fc6565b156127f1578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026126b1611a81565b8786866040518563ffffffff1660e01b81526004016126d39493929190613a30565b602060405180830381600087803b1580156126ed57600080fd5b505af192505050801561271e57506040513d601f19601f8201168201806040525081019061271b91906133e5565b60015b6127a1573d806000811461274e576040519150601f19603f3d011682016040523d82523d6000602084013e612753565b606091505b50600081511415612799576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161279090613d19565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506127f6565b600190505b949350505050565b6060600e805461280d906141e7565b80601f0160208091040260200160405190810160405280929190818152602001828054612839906141e7565b80156128865780601f1061285b57610100808354040283529160200191612886565b820191906000526020600020905b81548152906001019060200180831161286957829003601f168201915b5050505050905090565b606060008214156128d8576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506129ec565b600082905060005b6000821461290a5780806128f39061424a565b915050600a826129039190613fe4565b91506128e0565b60008167ffffffffffffffff81111561292657612925614380565b5b6040519080825280601f01601f1916602001820160405280156129585781602001600182028036833780820191505090505b5090505b600085146129e55760018261297191906140a3565b9150600a856129809190614293565b603061298c9190613f8e565b60f81b8183815181106129a2576129a1614351565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856129de9190613fe4565b945061295c565b8093505050505b919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612a62576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a5990613b79565b60405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160109054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b50505050565b50505050565b60006001549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612b5d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b5490613d79565b60405180910390fd5b612b6681611a73565b15612ba6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b9d90613d59565b60405180910390fd5b7f0000000000000000000000000000000000000000000000000000000000000000831115612c09576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c0090613e59565b60405180910390fd5b612c166000858386612ada565b6000600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206040518060400160405290816000820160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff1681526020016000820160109054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff168152505090506040518060400160405280858360000151612d139190613f48565b6fffffffffffffffffffffffffffffffff168152602001858360200151612d3a9190613f48565b6fffffffffffffffffffffffffffffffff16815250600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008201518160000160006101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060208201518160000160106101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555090505060405180604001604052808673ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506004600084815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550905050600082905060005b85811015612fa957818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612f496000888488612667565b612f88576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f7f90613d19565b60405180910390fd5b8180612f939061424a565b9250508080612fa19061424a565b915050612ed8565b5080600181905550612fbe6000878588612ae0565b505050505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b828054612ff5906141e7565b90600052602060002090601f016020900481019282613017576000855561305e565b82601f1061303057803560ff191683800117855561305e565b8280016001018555821561305e579182015b8281111561305d578235825591602001919060010190613042565b5b50905061306b91906130a9565b5090565b6040518060400160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681525090565b5b808211156130c25760008160009055506001016130aa565b5090565b60006130d96130d484613ed4565b613eaf565b9050828152602081018484840111156130f5576130f46143be565b5b61310084828561417b565b509392505050565b60008135905061311781614bcd565b92915050565b60008135905061312c81614be4565b92915050565b60008135905061314181614bfb565b92915050565b60008151905061315681614bfb565b92915050565b600082601f830112613171576131706143b4565b5b81356131818482602086016130c6565b91505092915050565b60008083601f8401126131a05761319f6143b4565b5b8235905067ffffffffffffffff8111156131bd576131bc6143af565b5b6020830191508360018202830111156131d9576131d86143b9565b5b9250929050565b6000813590506131ef81614c12565b92915050565b60006020828403121561320b5761320a6143c8565b5b600061321984828501613108565b91505092915050565b60008060408385031215613239576132386143c8565b5b600061324785828601613108565b925050602061325885828601613108565b9150509250929050565b60008060006060848603121561327b5761327a6143c8565b5b600061328986828701613108565b935050602061329a86828701613108565b92505060406132ab868287016131e0565b9150509250925092565b600080600080608085870312156132cf576132ce6143c8565b5b60006132dd87828801613108565b94505060206132ee87828801613108565b93505060406132ff878288016131e0565b925050606085013567ffffffffffffffff8111156133205761331f6143c3565b5b61332c8782880161315c565b91505092959194509250565b6000806040838503121561334f5761334e6143c8565b5b600061335d85828601613108565b925050602061336e8582860161311d565b9150509250929050565b6000806040838503121561338f5761338e6143c8565b5b600061339d85828601613108565b92505060206133ae858286016131e0565b9150509250929050565b6000602082840312156133ce576133cd6143c8565b5b60006133dc84828501613132565b91505092915050565b6000602082840312156133fb576133fa6143c8565b5b600061340984828501613147565b91505092915050565b60008060208385031215613429576134286143c8565b5b600083013567ffffffffffffffff811115613447576134466143c3565b5b6134538582860161318a565b92509250509250929050565b600060208284031215613475576134746143c8565b5b6000613483848285016131e0565b91505092915050565b613495816140d7565b82525050565b6134a4816140d7565b82525050565b6134b3816140e9565b82525050565b60006134c482613f05565b6134ce8185613f1b565b93506134de81856020860161418a565b6134e7816143cd565b840191505092915050565b60006134fd82613f10565b6135078185613f2c565b935061351781856020860161418a565b613520816143cd565b840191505092915050565b600061353682613f10565b6135408185613f3d565b935061355081856020860161418a565b80840191505092915050565b6000613569602283613f2c565b9150613574826143de565b604082019050919050565b600061358c601d83613f2c565b91506135978261442d565b602082019050919050565b60006135af602683613f2c565b91506135ba82614456565b604082019050919050565b60006135d2602a83613f2c565b91506135dd826144a5565b604082019050919050565b60006135f5602383613f2c565b9150613600826144f4565b604082019050919050565b6000613618602583613f2c565b915061362382614543565b604082019050919050565b600061363b603183613f2c565b915061364682614592565b604082019050919050565b600061365e601e83613f2c565b9150613669826145e1565b602082019050919050565b6000613681603983613f2c565b915061368c8261460a565b604082019050919050565b60006136a4601883613f2c565b91506136af82614659565b602082019050919050565b60006136c7602b83613f2c565b91506136d282614682565b604082019050919050565b60006136ea601283613f2c565b91506136f5826146d1565b602082019050919050565b600061370d602683613f2c565b9150613718826146fa565b604082019050919050565b6000613730600583613f3d565b915061373b82614749565b600582019050919050565b6000613753602083613f2c565b915061375e82614772565b602082019050919050565b6000613776602f83613f2c565b91506137818261479b565b604082019050919050565b6000613799601a83613f2c565b91506137a4826147ea565b602082019050919050565b60006137bc603283613f2c565b91506137c782614813565b604082019050919050565b60006137df601d83613f2c565b91506137ea82614862565b602082019050919050565b6000613802602283613f2c565b915061380d8261488b565b604082019050919050565b6000613825603383613f2c565b9150613830826148da565b604082019050919050565b6000613848601683613f2c565b915061385382614929565b602082019050919050565b600061386b601d83613f2c565b915061387682614952565b602082019050919050565b600061388e602183613f2c565b91506138998261497b565b604082019050919050565b60006138b1602e83613f2c565b91506138bc826149ca565b604082019050919050565b60006138d4602683613f2c565b91506138df82614a19565b604082019050919050565b60006138f7601f83613f2c565b915061390282614a68565b602082019050919050565b600061391a602f83613f2c565b915061392582614a91565b604082019050919050565b600061393d602d83613f2c565b915061394882614ae0565b604082019050919050565b6000613960603a83613f2c565b915061396b82614b2f565b604082019050919050565b6000613983602283613f2c565b915061398e82614b7e565b604082019050919050565b6040820160008201516139af600085018261348c565b5060208201516139c260208501826139d7565b50505050565b6139d18161415d565b82525050565b6139e081614167565b82525050565b60006139f2828561352b565b91506139fe828461352b565b9150613a0982613723565b91508190509392505050565b6000602082019050613a2a600083018461349b565b92915050565b6000608082019050613a45600083018761349b565b613a52602083018661349b565b613a5f60408301856139c8565b8181036060830152613a7181846134b9565b905095945050505050565b6000602082019050613a9160008301846134aa565b92915050565b60006020820190508181036000830152613ab181846134f2565b905092915050565b60006020820190508181036000830152613ad28161355c565b9050919050565b60006020820190508181036000830152613af28161357f565b9050919050565b60006020820190508181036000830152613b12816135a2565b9050919050565b60006020820190508181036000830152613b32816135c5565b9050919050565b60006020820190508181036000830152613b52816135e8565b9050919050565b60006020820190508181036000830152613b728161360b565b9050919050565b60006020820190508181036000830152613b928161362e565b9050919050565b60006020820190508181036000830152613bb281613651565b9050919050565b60006020820190508181036000830152613bd281613674565b9050919050565b60006020820190508181036000830152613bf281613697565b9050919050565b60006020820190508181036000830152613c12816136ba565b9050919050565b60006020820190508181036000830152613c32816136dd565b9050919050565b60006020820190508181036000830152613c5281613700565b9050919050565b60006020820190508181036000830152613c7281613746565b9050919050565b60006020820190508181036000830152613c9281613769565b9050919050565b60006020820190508181036000830152613cb28161378c565b9050919050565b60006020820190508181036000830152613cd2816137af565b9050919050565b60006020820190508181036000830152613cf2816137d2565b9050919050565b60006020820190508181036000830152613d12816137f5565b9050919050565b60006020820190508181036000830152613d3281613818565b9050919050565b60006020820190508181036000830152613d528161383b565b9050919050565b60006020820190508181036000830152613d728161385e565b9050919050565b60006020820190508181036000830152613d9281613881565b9050919050565b60006020820190508181036000830152613db2816138a4565b9050919050565b60006020820190508181036000830152613dd2816138c7565b9050919050565b60006020820190508181036000830152613df2816138ea565b9050919050565b60006020820190508181036000830152613e128161390d565b9050919050565b60006020820190508181036000830152613e3281613930565b9050919050565b60006020820190508181036000830152613e5281613953565b9050919050565b60006020820190508181036000830152613e7281613976565b9050919050565b6000604082019050613e8e6000830184613999565b92915050565b6000602082019050613ea960008301846139c8565b92915050565b6000613eb9613eca565b9050613ec58282614219565b919050565b6000604051905090565b600067ffffffffffffffff821115613eef57613eee614380565b5b613ef8826143cd565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000613f5382614121565b9150613f5e83614121565b9250826fffffffffffffffffffffffffffffffff03821115613f8357613f826142c4565b5b828201905092915050565b6000613f998261415d565b9150613fa48361415d565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613fd957613fd86142c4565b5b828201905092915050565b6000613fef8261415d565b9150613ffa8361415d565b92508261400a576140096142f3565b5b828204905092915050565b60006140208261415d565b915061402b8361415d565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615614064576140636142c4565b5b828202905092915050565b600061407a82614121565b915061408583614121565b925082821015614098576140976142c4565b5b828203905092915050565b60006140ae8261415d565b91506140b98361415d565b9250828210156140cc576140cb6142c4565b5b828203905092915050565b60006140e28261413d565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b60006fffffffffffffffffffffffffffffffff82169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600067ffffffffffffffff82169050919050565b82818337600083830152505050565b60005b838110156141a857808201518184015260208101905061418d565b838111156141b7576000848401525b50505050565b60006141c88261415d565b915060008214156141dc576141db6142c4565b5b600182039050919050565b600060028204905060018216806141ff57607f821691505b6020821081141561421357614212614322565b5b50919050565b614222826143cd565b810181811067ffffffffffffffff8211171561424157614240614380565b5b80604052505050565b60006142558261415d565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415614288576142876142c4565b5b600182019050919050565b600061429e8261415d565b91506142a98361415d565b9250826142b9576142b86142f3565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f455243373231413a206f776e657220696e646578206f7574206f6620626f756e60008201527f6473000000000000000000000000000000000000000000000000000000000000602082015250565b7f63616e6e6f74206d696e742074686973206d616e79206174206f6e6365000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a206f776e657220717565727920666f72206e6f6e6578697360008201527f74656e7420746f6b656e00000000000000000000000000000000000000000000602082015250565b7f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f7560008201527f6e64730000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a206e756d626572206d696e74656420717565727920666f7260008201527f20746865207a65726f2061646472657373000000000000000000000000000000602082015250565b7f5468652063616c6c657220697320616e6f7468657220636f6e74726163740000600082015250565b7f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000602082015250565b7f7175616e74697479206d757374206265206e6f6e7a65726f0000000000000000600082015250565b7f455243373231413a2062616c616e636520717565727920666f7220746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b7f72656163686564206d617820737570706c790000000000000000000000000000600082015250565b7f455243373231413a207472616e736665722066726f6d20696e636f727265637460008201527f206f776e65720000000000000000000000000000000000000000000000000000602082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f455243373231413a20617070726f766520746f2063616c6c6572000000000000600082015250565b7f455243373231413a207472616e736665722063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b7f7075626c69632073616c6520686173206e6f7420626567756e20796574000000600082015250565b7f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60008201527f6572000000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e7366657220746f206e6f6e204552433732315260008201527f6563656976657220696d706c656d656e74657200000000000000000000000000602082015250565b7f4e65656420746f2073656e64206d6f7265204554482e00000000000000000000600082015250565b7f455243373231413a20746f6b656e20616c7265616479206d696e746564000000600082015250565b7f455243373231413a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060008201527f6f776e657220627920696e646578000000000000000000000000000000000000602082015250565b7f6e6f7420656e6f756768206d696e7465642079657420666f722074686973206360008201527f6c65616e75700000000000000000000000000000000000000000000000000000602082015250565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b7f455243373231413a20756e61626c6520746f2064657465726d696e652074686560008201527f206f776e6572206f6620746f6b656e0000000000000000000000000000000000602082015250565b7f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560008201527f78697374656e7420746f6b656e00000000000000000000000000000000000000602082015250565b7f4e65656420746f2073656e64206d6f72652045544820746f20636f766572206160008201527f6d6f756e74206f766572207468652066726565206c696d69742e000000000000602082015250565b7f455243373231413a207175616e7469747920746f206d696e7420746f6f20686960008201527f6768000000000000000000000000000000000000000000000000000000000000602082015250565b614bd6816140d7565b8114614be157600080fd5b50565b614bed816140e9565b8114614bf857600080fd5b50565b614c04816140f5565b8114614c0f57600080fd5b50565b614c1b8161415d565b8114614c2657600080fd5b5056fea264697066735822122013a11e4f597c066c3f4c85b1da6d5f3244d530e067856edc8f9b8c3c718eeb0464736f6c6343000807003300000000000000000000000000000000000000000000000000000000000000140000000000000000000000000000000000000000000000000000000000001388

Deployed Bytecode

0x6080604052600436106101cd5760003560e01c806370a08231116100f7578063b88d4fde11610095578063e222c7f911610064578063e222c7f914610680578063e985e9c514610697578063f2fde38b146106d4578063f968adbe146106fd576101cd565b8063b88d4fde146105b2578063c87b56dd146105db578063d7224ba014610618578063dc33e68114610643576101cd565b80639231ab2a116100d15780639231ab2a1461050557806395d89b4114610542578063a22cb4651461056d578063b3ab66b014610596576101cd565b806370a0823114610486578063715018a6146104c35780638da5cb5b146104da576101cd565b80632d20fb601161016f578063485a68a31161013e578063485a68a3146103b85780634f6ccce7146103e357806355f804b3146104205780636352211e14610449576101cd565b80632d20fb601461031f5780632f745c59146103485780633ccfd60b1461038557806342842e0e1461038f576101cd565b8063095ea7b3116101ab578063095ea7b3146102775780630fcf2e75146102a057806318160ddd146102cb57806323b872dd146102f6576101cd565b806301ffc9a7146101d257806306fdde031461020f578063081812fc1461023a575b600080fd5b3480156101de57600080fd5b506101f960048036038101906101f491906133b8565b610728565b6040516102069190613a7c565b60405180910390f35b34801561021b57600080fd5b50610224610872565b6040516102319190613a97565b60405180910390f35b34801561024657600080fd5b50610261600480360381019061025c919061345f565b610904565b60405161026e9190613a15565b60405180910390f35b34801561028357600080fd5b5061029e60048036038101906102999190613378565b610989565b005b3480156102ac57600080fd5b506102b5610aa2565b6040516102c29190613a7c565b60405180910390f35b3480156102d757600080fd5b506102e0610ab5565b6040516102ed9190613e94565b60405180910390f35b34801561030257600080fd5b5061031d60048036038101906103189190613262565b610aca565b005b34801561032b57600080fd5b506103466004803603810190610341919061345f565b610ada565b005b34801561035457600080fd5b5061036f600480360381019061036a9190613378565b610bb8565b60405161037c9190613e94565b60405180910390f35b61038d610db6565b005b34801561039b57600080fd5b506103b660048036038101906103b19190613262565b610f24565b005b3480156103c457600080fd5b506103cd610f44565b6040516103da9190613e94565b60405180910390f35b3480156103ef57600080fd5b5061040a6004803603810190610405919061345f565b610f4a565b6040516104179190613e94565b60405180910390f35b34801561042c57600080fd5b5061044760048036038101906104429190613412565b610f9d565b005b34801561045557600080fd5b50610470600480360381019061046b919061345f565b61102f565b60405161047d9190613a15565b60405180910390f35b34801561049257600080fd5b506104ad60048036038101906104a891906131f5565b611045565b6040516104ba9190613e94565b60405180910390f35b3480156104cf57600080fd5b506104d861112e565b005b3480156104e657600080fd5b506104ef6111b6565b6040516104fc9190613a15565b60405180910390f35b34801561051157600080fd5b5061052c6004803603810190610527919061345f565b6111df565b6040516105399190613e79565b60405180910390f35b34801561054e57600080fd5b506105576111f7565b6040516105649190613a97565b60405180910390f35b34801561057957600080fd5b50610594600480360381019061058f9190613338565b611289565b005b6105b060048036038101906105ab919061345f565b61140a565b005b3480156105be57600080fd5b506105d960048036038101906105d491906132b5565b6116b4565b005b3480156105e757600080fd5b5061060260048036038101906105fd919061345f565b611710565b60405161060f9190613a97565b60405180910390f35b34801561062457600080fd5b5061062d6117b7565b60405161063a9190613e94565b60405180910390f35b34801561064f57600080fd5b5061066a600480360381019061066591906131f5565b6117bd565b6040516106779190613e94565b60405180910390f35b34801561068c57600080fd5b506106956117cf565b005b3480156106a357600080fd5b506106be60048036038101906106b99190613222565b611877565b6040516106cb9190613a7c565b60405180910390f35b3480156106e057600080fd5b506106fb60048036038101906106f691906131f5565b61190b565b005b34801561070957600080fd5b50610712611a03565b60405161071f9190613e94565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806107f357507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061085b57507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061086b575061086a82611a09565b5b9050919050565b606060028054610881906141e7565b80601f01602080910402602001604051908101604052809291908181526020018280546108ad906141e7565b80156108fa5780601f106108cf576101008083540402835291602001916108fa565b820191906000526020600020905b8154815290600101906020018083116108dd57829003601f168201915b5050505050905090565b600061090f82611a73565b61094e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161094590613e19565b60405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006109948261102f565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610a05576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109fc90613cf9565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610a24611a81565b73ffffffffffffffffffffffffffffffffffffffff161480610a535750610a5281610a4d611a81565b611877565b5b610a92576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a8990613bb9565b60405180910390fd5b610a9d838383611a89565b505050565b600c60089054906101000a900460ff1681565b600060018054610ac591906140a3565b905090565b610ad5838383611b3b565b505050565b610ae2611a81565b73ffffffffffffffffffffffffffffffffffffffff16610b006111b6565b73ffffffffffffffffffffffffffffffffffffffff1614610b56576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b4d90613c59565b60405180910390fd5b60026009541415610b9c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b9390613dd9565b60405180910390fd5b6002600981905550610bad816120f4565b600160098190555050565b6000610bc383611045565b8210610c04576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bfb90613ab9565b60405180910390fd5b6000610c0e610ab5565b905060008060005b83811015610d74576000600460008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614610d0857806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610d605786841415610d51578195505050505050610db0565b8380610d5c9061424a565b9450505b508080610d6c9061424a565b915050610c16565b506040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610da790613d99565b60405180910390fd5b92915050565b610dbe611a81565b73ffffffffffffffffffffffffffffffffffffffff16610ddc6111b6565b73ffffffffffffffffffffffffffffffffffffffff1614610e32576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e2990613c59565b60405180910390fd5b60006064600f47610e439190614015565b610e4d9190613fe4565b9050600c60099054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015610eb7573d6000803e3d6000fd5b50600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015610f20573d6000803e3d6000fd5b5050565b610f3f838383604051806020016040528060008152506116b4565b505050565b600b5481565b6000610f54610ab5565b8210610f95576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f8c90613b39565b60405180910390fd5b819050919050565b610fa5611a81565b73ffffffffffffffffffffffffffffffffffffffff16610fc36111b6565b73ffffffffffffffffffffffffffffffffffffffff1614611019576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161101090613c59565b60405180910390fd5b8181600e919061102a929190612fe9565b505050565b600061103a82612382565b600001519050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156110b6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110ad90613bf9565b60405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b611136611a81565b73ffffffffffffffffffffffffffffffffffffffff166111546111b6565b73ffffffffffffffffffffffffffffffffffffffff16146111aa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111a190613c59565b60405180910390fd5b6111b46000612585565b565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6111e761306f565b6111f082612382565b9050919050565b606060038054611206906141e7565b80601f0160208091040260200160405190810160405280929190818152602001828054611232906141e7565b801561127f5780601f106112545761010080835404028352916020019161127f565b820191906000526020600020905b81548152906001019060200180831161126257829003601f168201915b5050505050905090565b611291611a81565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156112ff576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112f690613c99565b60405180910390fd5b806007600061130c611a81565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166113b9611a81565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516113fe9190613a7c565b60405180910390a35050565b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614611478576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161146f90613b99565b60405180910390fd5b600c60089054906101000a900460ff166114c7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114be90613cd9565b60405180910390fd5b7f0000000000000000000000000000000000000000000000000000000000001388816114f1610ab5565b6114fb9190613f8e565b111561153c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161153390613c19565b60405180910390fd5b600a54811115611581576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161157890613ad9565b60405180910390fd5b600061158b610ab5565b9050600b5481106116055781600c60009054906101000a900467ffffffffffffffff1667ffffffffffffffff166115c29190614015565b341015611604576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115fb90613d39565b60405180910390fd5b5b600b5482826116149190613f8e565b106116a6576000600b54838361162a9190613f8e565b61163491906140a3565b905080600c60009054906101000a900467ffffffffffffffff1667ffffffffffffffff166116629190614015565b3410156116a4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161169b90613e39565b60405180910390fd5b505b6116b03383612649565b5050565b6116bf848484611b3b565b6116cb84848484612667565b61170a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161170190613d19565b60405180910390fd5b50505050565b606061171b82611a73565b61175a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161175190613c79565b60405180910390fd5b60006117646127fe565b9050600081511161178457604051806020016040528060008152506117af565b8061178e84612890565b60405160200161179f9291906139e6565b6040516020818303038152906040525b915050919050565b60085481565b60006117c8826129f1565b9050919050565b6117d7611a81565b73ffffffffffffffffffffffffffffffffffffffff166117f56111b6565b73ffffffffffffffffffffffffffffffffffffffff161461184b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161184290613c59565b60405180910390fd5b600c60089054906101000a900460ff1615600c60086101000a81548160ff021916908315150217905550565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611913611a81565b73ffffffffffffffffffffffffffffffffffffffff166119316111b6565b73ffffffffffffffffffffffffffffffffffffffff1614611987576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161197e90613c59565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156119f7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119ee90613af9565b60405180910390fd5b611a0081612585565b50565b600a5481565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600060015482109050919050565b600033905090565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b6000611b4682612382565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff16611b6d611a81565b73ffffffffffffffffffffffffffffffffffffffff161480611bc95750611b92611a81565b73ffffffffffffffffffffffffffffffffffffffff16611bb184610904565b73ffffffffffffffffffffffffffffffffffffffff16145b80611be55750611be48260000151611bdf611a81565b611877565b5b905080611c27576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c1e90613cb9565b60405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff1614611c99576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c9090613c39565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611d09576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d0090613b59565b60405180910390fd5b611d168585856001612ada565b611d266000848460000151611a89565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff16611d94919061406f565b92506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff16611e389190613f48565b92506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060405180604001604052808573ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506004600085815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055509050506000600184611f3e9190613f8e565b9050600073ffffffffffffffffffffffffffffffffffffffff166004600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16141561208457611fb481611a73565b15612083576040518060400160405280846000015173ffffffffffffffffffffffffffffffffffffffff168152602001846020015167ffffffffffffffff168152506004600083815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055509050505b5b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46120ec8686866001612ae0565b505050505050565b600060085490506000821161213e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161213590613bd9565b60405180910390fd5b60006001838361214e9190613f8e565b61215891906140a3565b905060017f000000000000000000000000000000000000000000000000000000000000138861218791906140a3565b8111156121be5760017f00000000000000000000000000000000000000000000000000000000000013886121bb91906140a3565b90505b6121c781611a73565b612206576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121fd90613db9565b60405180910390fd5b60008290505b81811161236957600073ffffffffffffffffffffffffffffffffffffffff166004600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16141561235657600061228982612382565b90506040518060400160405280826000015173ffffffffffffffffffffffffffffffffffffffff168152602001826020015167ffffffffffffffff168152506004600084815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550905050505b80806123619061424a565b91505061220c565b506001816123779190613f8e565b600881905550505050565b61238a61306f565b61239382611a73565b6123d2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123c990613b19565b60405180910390fd5b60007f000000000000000000000000000000000000000000000000000000000000001483106124365760017f00000000000000000000000000000000000000000000000000000000000000148461242991906140a3565b6124339190613f8e565b90505b60008390505b818110612544576000600460008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461253057809350505050612580565b50808061253c906141bd565b91505061243c565b506040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161257790613df9565b60405180910390fd5b919050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b612663828260405180602001604052806000815250612ae6565b5050565b60006126888473ffffffffffffffffffffffffffffffffffffffff16612fc6565b156127f1578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026126b1611a81565b8786866040518563ffffffff1660e01b81526004016126d39493929190613a30565b602060405180830381600087803b1580156126ed57600080fd5b505af192505050801561271e57506040513d601f19601f8201168201806040525081019061271b91906133e5565b60015b6127a1573d806000811461274e576040519150601f19603f3d011682016040523d82523d6000602084013e612753565b606091505b50600081511415612799576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161279090613d19565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506127f6565b600190505b949350505050565b6060600e805461280d906141e7565b80601f0160208091040260200160405190810160405280929190818152602001828054612839906141e7565b80156128865780601f1061285b57610100808354040283529160200191612886565b820191906000526020600020905b81548152906001019060200180831161286957829003601f168201915b5050505050905090565b606060008214156128d8576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506129ec565b600082905060005b6000821461290a5780806128f39061424a565b915050600a826129039190613fe4565b91506128e0565b60008167ffffffffffffffff81111561292657612925614380565b5b6040519080825280601f01601f1916602001820160405280156129585781602001600182028036833780820191505090505b5090505b600085146129e55760018261297191906140a3565b9150600a856129809190614293565b603061298c9190613f8e565b60f81b8183815181106129a2576129a1614351565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856129de9190613fe4565b945061295c565b8093505050505b919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612a62576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a5990613b79565b60405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160109054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b50505050565b50505050565b60006001549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612b5d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b5490613d79565b60405180910390fd5b612b6681611a73565b15612ba6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b9d90613d59565b60405180910390fd5b7f0000000000000000000000000000000000000000000000000000000000000014831115612c09576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c0090613e59565b60405180910390fd5b612c166000858386612ada565b6000600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206040518060400160405290816000820160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff1681526020016000820160109054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff168152505090506040518060400160405280858360000151612d139190613f48565b6fffffffffffffffffffffffffffffffff168152602001858360200151612d3a9190613f48565b6fffffffffffffffffffffffffffffffff16815250600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008201518160000160006101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060208201518160000160106101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555090505060405180604001604052808673ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506004600084815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550905050600082905060005b85811015612fa957818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612f496000888488612667565b612f88576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f7f90613d19565b60405180910390fd5b8180612f939061424a565b9250508080612fa19061424a565b915050612ed8565b5080600181905550612fbe6000878588612ae0565b505050505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b828054612ff5906141e7565b90600052602060002090601f016020900481019282613017576000855561305e565b82601f1061303057803560ff191683800117855561305e565b8280016001018555821561305e579182015b8281111561305d578235825591602001919060010190613042565b5b50905061306b91906130a9565b5090565b6040518060400160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681525090565b5b808211156130c25760008160009055506001016130aa565b5090565b60006130d96130d484613ed4565b613eaf565b9050828152602081018484840111156130f5576130f46143be565b5b61310084828561417b565b509392505050565b60008135905061311781614bcd565b92915050565b60008135905061312c81614be4565b92915050565b60008135905061314181614bfb565b92915050565b60008151905061315681614bfb565b92915050565b600082601f830112613171576131706143b4565b5b81356131818482602086016130c6565b91505092915050565b60008083601f8401126131a05761319f6143b4565b5b8235905067ffffffffffffffff8111156131bd576131bc6143af565b5b6020830191508360018202830111156131d9576131d86143b9565b5b9250929050565b6000813590506131ef81614c12565b92915050565b60006020828403121561320b5761320a6143c8565b5b600061321984828501613108565b91505092915050565b60008060408385031215613239576132386143c8565b5b600061324785828601613108565b925050602061325885828601613108565b9150509250929050565b60008060006060848603121561327b5761327a6143c8565b5b600061328986828701613108565b935050602061329a86828701613108565b92505060406132ab868287016131e0565b9150509250925092565b600080600080608085870312156132cf576132ce6143c8565b5b60006132dd87828801613108565b94505060206132ee87828801613108565b93505060406132ff878288016131e0565b925050606085013567ffffffffffffffff8111156133205761331f6143c3565b5b61332c8782880161315c565b91505092959194509250565b6000806040838503121561334f5761334e6143c8565b5b600061335d85828601613108565b925050602061336e8582860161311d565b9150509250929050565b6000806040838503121561338f5761338e6143c8565b5b600061339d85828601613108565b92505060206133ae858286016131e0565b9150509250929050565b6000602082840312156133ce576133cd6143c8565b5b60006133dc84828501613132565b91505092915050565b6000602082840312156133fb576133fa6143c8565b5b600061340984828501613147565b91505092915050565b60008060208385031215613429576134286143c8565b5b600083013567ffffffffffffffff811115613447576134466143c3565b5b6134538582860161318a565b92509250509250929050565b600060208284031215613475576134746143c8565b5b6000613483848285016131e0565b91505092915050565b613495816140d7565b82525050565b6134a4816140d7565b82525050565b6134b3816140e9565b82525050565b60006134c482613f05565b6134ce8185613f1b565b93506134de81856020860161418a565b6134e7816143cd565b840191505092915050565b60006134fd82613f10565b6135078185613f2c565b935061351781856020860161418a565b613520816143cd565b840191505092915050565b600061353682613f10565b6135408185613f3d565b935061355081856020860161418a565b80840191505092915050565b6000613569602283613f2c565b9150613574826143de565b604082019050919050565b600061358c601d83613f2c565b91506135978261442d565b602082019050919050565b60006135af602683613f2c565b91506135ba82614456565b604082019050919050565b60006135d2602a83613f2c565b91506135dd826144a5565b604082019050919050565b60006135f5602383613f2c565b9150613600826144f4565b604082019050919050565b6000613618602583613f2c565b915061362382614543565b604082019050919050565b600061363b603183613f2c565b915061364682614592565b604082019050919050565b600061365e601e83613f2c565b9150613669826145e1565b602082019050919050565b6000613681603983613f2c565b915061368c8261460a565b604082019050919050565b60006136a4601883613f2c565b91506136af82614659565b602082019050919050565b60006136c7602b83613f2c565b91506136d282614682565b604082019050919050565b60006136ea601283613f2c565b91506136f5826146d1565b602082019050919050565b600061370d602683613f2c565b9150613718826146fa565b604082019050919050565b6000613730600583613f3d565b915061373b82614749565b600582019050919050565b6000613753602083613f2c565b915061375e82614772565b602082019050919050565b6000613776602f83613f2c565b91506137818261479b565b604082019050919050565b6000613799601a83613f2c565b91506137a4826147ea565b602082019050919050565b60006137bc603283613f2c565b91506137c782614813565b604082019050919050565b60006137df601d83613f2c565b91506137ea82614862565b602082019050919050565b6000613802602283613f2c565b915061380d8261488b565b604082019050919050565b6000613825603383613f2c565b9150613830826148da565b604082019050919050565b6000613848601683613f2c565b915061385382614929565b602082019050919050565b600061386b601d83613f2c565b915061387682614952565b602082019050919050565b600061388e602183613f2c565b91506138998261497b565b604082019050919050565b60006138b1602e83613f2c565b91506138bc826149ca565b604082019050919050565b60006138d4602683613f2c565b91506138df82614a19565b604082019050919050565b60006138f7601f83613f2c565b915061390282614a68565b602082019050919050565b600061391a602f83613f2c565b915061392582614a91565b604082019050919050565b600061393d602d83613f2c565b915061394882614ae0565b604082019050919050565b6000613960603a83613f2c565b915061396b82614b2f565b604082019050919050565b6000613983602283613f2c565b915061398e82614b7e565b604082019050919050565b6040820160008201516139af600085018261348c565b5060208201516139c260208501826139d7565b50505050565b6139d18161415d565b82525050565b6139e081614167565b82525050565b60006139f2828561352b565b91506139fe828461352b565b9150613a0982613723565b91508190509392505050565b6000602082019050613a2a600083018461349b565b92915050565b6000608082019050613a45600083018761349b565b613a52602083018661349b565b613a5f60408301856139c8565b8181036060830152613a7181846134b9565b905095945050505050565b6000602082019050613a9160008301846134aa565b92915050565b60006020820190508181036000830152613ab181846134f2565b905092915050565b60006020820190508181036000830152613ad28161355c565b9050919050565b60006020820190508181036000830152613af28161357f565b9050919050565b60006020820190508181036000830152613b12816135a2565b9050919050565b60006020820190508181036000830152613b32816135c5565b9050919050565b60006020820190508181036000830152613b52816135e8565b9050919050565b60006020820190508181036000830152613b728161360b565b9050919050565b60006020820190508181036000830152613b928161362e565b9050919050565b60006020820190508181036000830152613bb281613651565b9050919050565b60006020820190508181036000830152613bd281613674565b9050919050565b60006020820190508181036000830152613bf281613697565b9050919050565b60006020820190508181036000830152613c12816136ba565b9050919050565b60006020820190508181036000830152613c32816136dd565b9050919050565b60006020820190508181036000830152613c5281613700565b9050919050565b60006020820190508181036000830152613c7281613746565b9050919050565b60006020820190508181036000830152613c9281613769565b9050919050565b60006020820190508181036000830152613cb28161378c565b9050919050565b60006020820190508181036000830152613cd2816137af565b9050919050565b60006020820190508181036000830152613cf2816137d2565b9050919050565b60006020820190508181036000830152613d12816137f5565b9050919050565b60006020820190508181036000830152613d3281613818565b9050919050565b60006020820190508181036000830152613d528161383b565b9050919050565b60006020820190508181036000830152613d728161385e565b9050919050565b60006020820190508181036000830152613d9281613881565b9050919050565b60006020820190508181036000830152613db2816138a4565b9050919050565b60006020820190508181036000830152613dd2816138c7565b9050919050565b60006020820190508181036000830152613df2816138ea565b9050919050565b60006020820190508181036000830152613e128161390d565b9050919050565b60006020820190508181036000830152613e3281613930565b9050919050565b60006020820190508181036000830152613e5281613953565b9050919050565b60006020820190508181036000830152613e7281613976565b9050919050565b6000604082019050613e8e6000830184613999565b92915050565b6000602082019050613ea960008301846139c8565b92915050565b6000613eb9613eca565b9050613ec58282614219565b919050565b6000604051905090565b600067ffffffffffffffff821115613eef57613eee614380565b5b613ef8826143cd565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000613f5382614121565b9150613f5e83614121565b9250826fffffffffffffffffffffffffffffffff03821115613f8357613f826142c4565b5b828201905092915050565b6000613f998261415d565b9150613fa48361415d565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613fd957613fd86142c4565b5b828201905092915050565b6000613fef8261415d565b9150613ffa8361415d565b92508261400a576140096142f3565b5b828204905092915050565b60006140208261415d565b915061402b8361415d565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615614064576140636142c4565b5b828202905092915050565b600061407a82614121565b915061408583614121565b925082821015614098576140976142c4565b5b828203905092915050565b60006140ae8261415d565b91506140b98361415d565b9250828210156140cc576140cb6142c4565b5b828203905092915050565b60006140e28261413d565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b60006fffffffffffffffffffffffffffffffff82169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600067ffffffffffffffff82169050919050565b82818337600083830152505050565b60005b838110156141a857808201518184015260208101905061418d565b838111156141b7576000848401525b50505050565b60006141c88261415d565b915060008214156141dc576141db6142c4565b5b600182039050919050565b600060028204905060018216806141ff57607f821691505b6020821081141561421357614212614322565b5b50919050565b614222826143cd565b810181811067ffffffffffffffff8211171561424157614240614380565b5b80604052505050565b60006142558261415d565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415614288576142876142c4565b5b600182019050919050565b600061429e8261415d565b91506142a98361415d565b9250826142b9576142b86142f3565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f455243373231413a206f776e657220696e646578206f7574206f6620626f756e60008201527f6473000000000000000000000000000000000000000000000000000000000000602082015250565b7f63616e6e6f74206d696e742074686973206d616e79206174206f6e6365000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a206f776e657220717565727920666f72206e6f6e6578697360008201527f74656e7420746f6b656e00000000000000000000000000000000000000000000602082015250565b7f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f7560008201527f6e64730000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a206e756d626572206d696e74656420717565727920666f7260008201527f20746865207a65726f2061646472657373000000000000000000000000000000602082015250565b7f5468652063616c6c657220697320616e6f7468657220636f6e74726163740000600082015250565b7f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000602082015250565b7f7175616e74697479206d757374206265206e6f6e7a65726f0000000000000000600082015250565b7f455243373231413a2062616c616e636520717565727920666f7220746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b7f72656163686564206d617820737570706c790000000000000000000000000000600082015250565b7f455243373231413a207472616e736665722066726f6d20696e636f727265637460008201527f206f776e65720000000000000000000000000000000000000000000000000000602082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f455243373231413a20617070726f766520746f2063616c6c6572000000000000600082015250565b7f455243373231413a207472616e736665722063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b7f7075626c69632073616c6520686173206e6f7420626567756e20796574000000600082015250565b7f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60008201527f6572000000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e7366657220746f206e6f6e204552433732315260008201527f6563656976657220696d706c656d656e74657200000000000000000000000000602082015250565b7f4e65656420746f2073656e64206d6f7265204554482e00000000000000000000600082015250565b7f455243373231413a20746f6b656e20616c7265616479206d696e746564000000600082015250565b7f455243373231413a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060008201527f6f776e657220627920696e646578000000000000000000000000000000000000602082015250565b7f6e6f7420656e6f756768206d696e7465642079657420666f722074686973206360008201527f6c65616e75700000000000000000000000000000000000000000000000000000602082015250565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b7f455243373231413a20756e61626c6520746f2064657465726d696e652074686560008201527f206f776e6572206f6620746f6b656e0000000000000000000000000000000000602082015250565b7f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560008201527f78697374656e7420746f6b656e00000000000000000000000000000000000000602082015250565b7f4e65656420746f2073656e64206d6f72652045544820746f20636f766572206160008201527f6d6f756e74206f766572207468652066726565206c696d69742e000000000000602082015250565b7f455243373231413a207175616e7469747920746f206d696e7420746f6f20686960008201527f6768000000000000000000000000000000000000000000000000000000000000602082015250565b614bd6816140d7565b8114614be157600080fd5b50565b614bed816140e9565b8114614bf857600080fd5b50565b614c04816140f5565b8114614c0f57600080fd5b50565b614c1b8161415d565b8114614c2657600080fd5b5056fea264697066735822122013a11e4f597c066c3f4c85b1da6d5f3244d530e067856edc8f9b8c3c718eeb0464736f6c63430008070033

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

00000000000000000000000000000000000000000000000000000000000000140000000000000000000000000000000000000000000000000000000000001388

-----Decoded View---------------
Arg [0] : maxBatchSize_ (uint256): 20
Arg [1] : collectionSize_ (uint256): 5000

-----Encoded View---------------
2 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000014
Arg [1] : 0000000000000000000000000000000000000000000000000000000000001388


Deployed Bytecode Sourcemap

42687:2504:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27770:370;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29496:94;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31029:204;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30592:379;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;42856:38;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26327:98;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31879:142;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;44804:118;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;26962:744;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44571:227;;;:::i;:::-;;32084:157;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;42783:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26494:177;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44463:100;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;29319:118;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28196:211;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41793:103;;;;;;;;;;;;;:::i;:::-;;41142:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45041:147;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29651:98;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31297:274;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;43517:767;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;32304:311;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;29812:402;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36719:43;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44928:107;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43407:104;;;;;;;;;;;;;:::i;:::-;;31634:186;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42051:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;42750:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27770:370;27897:4;27942:25;27927:40;;;:11;:40;;;;:99;;;;27993:33;27978:48;;;:11;:48;;;;27927:99;:160;;;;28052:35;28037:50;;;:11;:50;;;;27927:160;:207;;;;28098:36;28122:11;28098:23;:36::i;:::-;27927:207;27913:221;;27770:370;;;:::o;29496:94::-;29550:13;29579:5;29572:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29496:94;:::o;31029:204::-;31097:7;31121:16;31129:7;31121;:16::i;:::-;31113:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;31203:15;:24;31219:7;31203:24;;;;;;;;;;;;;;;;;;;;;31196:31;;31029:204;;;:::o;30592:379::-;30661:13;30677:24;30693:7;30677:15;:24::i;:::-;30661:40;;30722:5;30716:11;;:2;:11;;;;30708:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;30807:5;30791:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;30816:37;30833:5;30840:12;:10;:12::i;:::-;30816:16;:37::i;:::-;30791:62;30775:153;;;;;;;;;;;;:::i;:::-;;;;;;;;;30937:28;30946:2;30950:7;30959:5;30937:8;:28::i;:::-;30654:317;30592:379;;:::o;42856:38::-;;;;;;;;;;;;;:::o;26327:98::-;26380:7;26418:1;26403:12;;:16;;;;:::i;:::-;26396:23;;26327:98;:::o;31879:142::-;31987:28;31997:4;32003:2;32007:7;31987:9;:28::i;:::-;31879:142;;;:::o;44804:118::-;41373:12;:10;:12::i;:::-;41362:23;;:7;:5;:7::i;:::-;:23;;;41354:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;22171:1:::1;22769:7;;:19;;22761:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;22171:1;22902:7;:18;;;;44888:28:::2;44907:8;44888:18;:28::i;:::-;22127:1:::1;23081:7;:22;;;;44804:118:::0;:::o;26962:744::-;27071:7;27106:16;27116:5;27106:9;:16::i;:::-;27098:5;:24;27090:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;27168:22;27193:13;:11;:13::i;:::-;27168:38;;27213:19;27243:25;27293:9;27288:350;27312:14;27308:1;:18;27288:350;;;27342:31;27376:11;:14;27388:1;27376:14;;;;;;;;;;;27342:48;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27429:1;27403:28;;:9;:14;;;:28;;;27399:89;;27464:9;:14;;;27444:34;;27399:89;27521:5;27500:26;;:17;:26;;;27496:135;;;27558:5;27543:11;:20;27539:59;;;27585:1;27578:8;;;;;;;;;27539:59;27608:13;;;;;:::i;:::-;;;;27496:135;27333:305;27328:3;;;;;:::i;:::-;;;;27288:350;;;;27644:56;;;;;;;;;;:::i;:::-;;;;;;;;26962:744;;;;;:::o;44571:227::-;41373:12;:10;:12::i;:::-;41362:23;;:7;:5;:7::i;:::-;:23;;;41354:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;44623:22:::1;44677:3;44672:2;44648:21;:26;;;;:::i;:::-;:32;;;;:::i;:::-;44623:57;;44695:8;;;;;;;;;;;44687:26;;:42;44714:14;44687:42;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;44744:15;;;;;;;;;;;44736:33;;:56;44770:21;44736:56;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;44616:182;44571:227::o:0;32084:157::-;32196:39;32213:4;32219:2;32223:7;32196:39;;;;;;;;;;;;:16;:39::i;:::-;32084:157;;;:::o;42783:28::-;;;;:::o;26494:177::-;26561:7;26593:13;:11;:13::i;:::-;26585:5;:21;26577:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;26660:5;26653:12;;26494:177;;;:::o;44463:100::-;41373:12;:10;:12::i;:::-;41362:23;;:7;:5;:7::i;:::-;:23;;;41354:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;44550:7:::1;;44534:13;:23;;;;;;;:::i;:::-;;44463:100:::0;;:::o;29319:118::-;29383:7;29406:20;29418:7;29406:11;:20::i;:::-;:25;;;29399:32;;29319:118;;;:::o;28196:211::-;28260:7;28301:1;28284:19;;:5;:19;;;;28276:75;;;;;;;;;;;;:::i;:::-;;;;;;;;;28373:12;:19;28386:5;28373:19;;;;;;;;;;;;;;;:27;;;;;;;;;;;;28365:36;;28358:43;;28196:211;;;:::o;41793:103::-;41373:12;:10;:12::i;:::-;41362:23;;:7;:5;:7::i;:::-;:23;;;41354:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;41858:30:::1;41885:1;41858:18;:30::i;:::-;41793:103::o:0;41142:87::-;41188:7;41215:6;;;;;;;;;;;41208:13;;41142:87;:::o;45041:147::-;45122:21;;:::i;:::-;45162:20;45174:7;45162:11;:20::i;:::-;45155:27;;45041:147;;;:::o;29651:98::-;29707:13;29736:7;29729:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29651:98;:::o;31297:274::-;31400:12;:10;:12::i;:::-;31388:24;;:8;:24;;;;31380:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;31497:8;31452:18;:32;31471:12;:10;:12::i;:::-;31452:32;;;;;;;;;;;;;;;:42;31485:8;31452:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;31546:8;31517:48;;31532:12;:10;:12::i;:::-;31517:48;;;31556:8;31517:48;;;;;;:::i;:::-;;;;;;;;31297:274;;:::o;43517:767::-;43342:10;43329:23;;:9;:23;;;43321:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;43624:18:::1;;;;;;;;;;;43616:60;;;;;;;;;;;;:::i;:::-;;;;;;;;;43719:14;43707:8;43691:13;:11;:13::i;:::-;:24;;;;:::i;:::-;:42;;43683:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;43783:8;;43771;:20;;43763:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;43832:10;43845:13;:11;:13::i;:::-;43832:26;;43878:7;;43872:2;:13;43869:124;;43946:8;43932:11;;;;;;;;;;;:22;;;;;;:::i;:::-;43919:9;:35;;43911:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;43869:124;44023:7;;44011:8;44006:2;:13;;;;:::i;:::-;:24;44003:236;;44056:21;44094:7;;44084:8;44081:2;:11;;;;:::i;:::-;44080:21;;;;:::i;:::-;44056:45;;44151:13;44137:11;;;;;;;;;;;:27;;;;;;:::i;:::-;44124:9;:40;;44116:111;;;;;;;;;;;;:::i;:::-;;;;;;;;;44041:198;44003:236;44245:31;44255:10;44267:8;44245:9;:31::i;:::-;43609:675;43517:767:::0;:::o;32304:311::-;32441:28;32451:4;32457:2;32461:7;32441:9;:28::i;:::-;32492:48;32515:4;32521:2;32525:7;32534:5;32492:22;:48::i;:::-;32476:133;;;;;;;;;;;;:::i;:::-;;;;;;;;;32304:311;;;;:::o;29812:402::-;29910:13;29951:16;29959:7;29951;:16::i;:::-;29935:97;;;;;;;;;;;;:::i;:::-;;;;;;;;;30041:21;30065:10;:8;:10::i;:::-;30041:34;;30120:1;30102:7;30096:21;:25;:112;;;;;;;;;;;;;;;;;30157:7;30166:18;:7;:16;:18::i;:::-;30140:53;;;;;;;;;:::i;:::-;;;;;;;;;;;;;30096:112;30082:126;;;29812:402;;;:::o;36719:43::-;;;;:::o;44928:107::-;44986:7;45009:20;45023:5;45009:13;:20::i;:::-;45002:27;;44928:107;;;:::o;43407:104::-;41373:12;:10;:12::i;:::-;41362:23;;:7;:5;:7::i;:::-;:23;;;41354:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;43485:18:::1;;;;;;;;;;;43484:19;43463:18;;:40;;;;;;;;;;;;;;;;;;43407:104::o:0;31634:186::-;31756:4;31779:18;:25;31798:5;31779:25;;;;;;;;;;;;;;;:35;31805:8;31779:35;;;;;;;;;;;;;;;;;;;;;;;;;31772:42;;31634:186;;;;:::o;42051:201::-;41373:12;:10;:12::i;:::-;41362:23;;:7;:5;:7::i;:::-;:23;;;41354:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;42160:1:::1;42140:22;;:8;:22;;;;42132:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;42216:28;42235:8;42216:18;:28::i;:::-;42051:201:::0;:::o;42750:28::-;;;;:::o;13440:157::-;13525:4;13564:25;13549:40;;;:11;:40;;;;13542:47;;13440:157;;;:::o;32854:105::-;32911:4;32941:12;;32931:7;:22;32924:29;;32854:105;;;:::o;23797:98::-;23850:7;23877:10;23870:17;;23797:98;:::o;36541:172::-;36665:2;36638:15;:24;36654:7;36638:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;36699:7;36695:2;36679:28;;36688:5;36679:28;;;;;;;;;;;;36541:172;;;:::o;34906:1529::-;35003:35;35041:20;35053:7;35041:11;:20::i;:::-;35003:58;;35070:22;35112:13;:18;;;35096:34;;:12;:10;:12::i;:::-;:34;;;:81;;;;35165:12;:10;:12::i;:::-;35141:36;;:20;35153:7;35141:11;:20::i;:::-;:36;;;35096:81;:142;;;;35188:50;35205:13;:18;;;35225:12;:10;:12::i;:::-;35188:16;:50::i;:::-;35096:142;35070:169;;35264:17;35248:101;;;;;;;;;;;;:::i;:::-;;;;;;;;;35396:4;35374:26;;:13;:18;;;:26;;;35358:98;;;;;;;;;;;;:::i;:::-;;;;;;;;;35485:1;35471:16;;:2;:16;;;;35463:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;35538:43;35560:4;35566:2;35570:7;35579:1;35538:21;:43::i;:::-;35638:49;35655:1;35659:7;35668:13;:18;;;35638:8;:49::i;:::-;35726:1;35696:12;:18;35709:4;35696:18;;;;;;;;;;;;;;;:26;;;:31;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;35762:1;35734:12;:16;35747:2;35734:16;;;;;;;;;;;;;;;:24;;;:29;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;35793:43;;;;;;;;35808:2;35793:43;;;;;;35819:15;35793:43;;;;;35770:11;:20;35782:7;35770:20;;;;;;;;;;;:66;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36064:19;36096:1;36086:7;:11;;;;:::i;:::-;36064:33;;36149:1;36108:43;;:11;:24;36120:11;36108:24;;;;;;;;;;;:29;;;;;;;;;;;;:43;;;36104:236;;;36166:20;36174:11;36166:7;:20::i;:::-;36162:171;;;36226:97;;;;;;;;36253:13;:18;;;36226:97;;;;;;36284:13;:28;;;36226:97;;;;;36199:11;:24;36211:11;36199:24;;;;;;;;;;;:124;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36162:171;36104:236;36372:7;36368:2;36353:27;;36362:4;36353:27;;;;;;;;;;;;36387:42;36408:4;36414:2;36418:7;36427:1;36387:20;:42::i;:::-;34996:1439;;;34906:1529;;;:::o;36867:846::-;36929:25;36957:24;;36929:52;;37007:1;36996:8;:12;36988:49;;;;;;;;;;;;:::i;:::-;;;;;;;;;37044:16;37094:1;37083:8;37063:17;:28;;;;:::i;:::-;:32;;;;:::i;:::-;37044:51;;37134:1;37117:14;:18;;;;:::i;:::-;37106:8;:29;37102:81;;;37174:1;37157:14;:18;;;;:::i;:::-;37146:29;;37102:81;37298:17;37306:8;37298:7;:17::i;:::-;37290:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;37370:9;37382:17;37370:29;;37365:297;37406:8;37401:1;:13;37365:297;;37465:1;37434:33;;:11;:14;37446:1;37434:14;;;;;;;;;;;:19;;;;;;;;;;;;:33;;;37430:225;;;37480:31;37514:14;37526:1;37514:11;:14::i;:::-;37480:48;;37556:89;;;;;;;;37583:9;:14;;;37556:89;;;;;;37610:9;:24;;;37556:89;;;;;37539:11;:14;37551:1;37539:14;;;;;;;;;;;:106;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37469:186;37430:225;37416:3;;;;;:::i;:::-;;;;37365:297;;;;37706:1;37695:8;:12;;;;:::i;:::-;37668:24;:39;;;;36922:791;;36867:846;:::o;28659:606::-;28735:21;;:::i;:::-;28776:16;28784:7;28776;:16::i;:::-;28768:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;28848:26;28896:12;28885:7;:23;28881:93;;28965:1;28950:12;28940:7;:22;;;;:::i;:::-;:26;;;;:::i;:::-;28919:47;;28881:93;28987:12;29002:7;28987:22;;28982:212;29019:18;29011:4;:26;28982:212;;29056:31;29090:11;:17;29102:4;29090:17;;;;;;;;;;;29056:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29146:1;29120:28;;:9;:14;;;:28;;;29116:71;;29168:9;29161:16;;;;;;;29116:71;29047:147;29039:6;;;;;:::i;:::-;;;;28982:212;;;;29202:57;;;;;;;;;;:::i;:::-;;;;;;;;28659:606;;;;:::o;42412:191::-;42486:16;42505:6;;;;;;;;;;;42486:25;;42531:8;42522:6;;:17;;;;;;;;;;;;;;;;;;42586:8;42555:40;;42576:8;42555:40;;;;;;;;;;;;42475:128;42412:191;:::o;32965:98::-;33030:27;33040:2;33044:8;33030:27;;;;;;;;;;;;:9;:27::i;:::-;32965:98;;:::o;38256:690::-;38393:4;38410:15;:2;:13;;;:15::i;:::-;38406:535;;;38465:2;38449:36;;;38486:12;:10;:12::i;:::-;38500:4;38506:7;38515:5;38449:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;38436:464;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38697:1;38680:6;:13;:18;38676:215;;;38713:61;;;;;;;;;;:::i;:::-;;;;;;;;38676:215;38859:6;38853:13;38844:6;38840:2;38836:15;38829:38;38436:464;38581:45;;;38571:55;;;:6;:55;;;;38564:62;;;;;38406:535;38929:4;38922:11;;38256:690;;;;;;;:::o;44349:108::-;44409:13;44438;44431:20;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44349:108;:::o;365:723::-;421:13;651:1;642:5;:10;638:53;;;669:10;;;;;;;;;;;;;;;;;;;;;638:53;701:12;716:5;701:20;;732:14;757:78;772:1;764:4;:9;757:78;;790:8;;;;;:::i;:::-;;;;821:2;813:10;;;;;:::i;:::-;;;757:78;;;845:19;877:6;867:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;845:39;;895:154;911:1;902:5;:10;895:154;;939:1;929:11;;;;;:::i;:::-;;;1006:2;998:5;:10;;;;:::i;:::-;985:2;:24;;;;:::i;:::-;972:39;;955:6;962;955:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;1035:2;1026:11;;;;;:::i;:::-;;;895:154;;;1073:6;1059:21;;;;;365:723;;;;:::o;28413:240::-;28474:7;28523:1;28506:19;;:5;:19;;;;28490:102;;;;;;;;;;;;:::i;:::-;;;;;;;;;28614:12;:19;28627:5;28614:19;;;;;;;;;;;;;;;:32;;;;;;;;;;;;28606:41;;28599:48;;28413:240;;;:::o;39408:141::-;;;;;:::o;39935:140::-;;;;;:::o;33402:1272::-;33507:20;33530:12;;33507:35;;33571:1;33557:16;;:2;:16;;;;33549:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;33748:21;33756:12;33748:7;:21::i;:::-;33747:22;33739:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;33830:12;33818:8;:24;;33810:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;33890:61;33920:1;33924:2;33928:12;33942:8;33890:21;:61::i;:::-;33960:30;33993:12;:16;34006:2;33993:16;;;;;;;;;;;;;;;33960:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34035:119;;;;;;;;34085:8;34055:11;:19;;;:39;;;;:::i;:::-;34035:119;;;;;;34138:8;34103:11;:24;;;:44;;;;:::i;:::-;34035:119;;;;;34016:12;:16;34029:2;34016:16;;;;;;;;;;;;;;;:138;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34189:43;;;;;;;;34204:2;34189:43;;;;;;34215:15;34189:43;;;;;34161:11;:25;34173:12;34161:25;;;;;;;;;;;:71;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34241:20;34264:12;34241:35;;34290:9;34285:281;34309:8;34305:1;:12;34285:281;;;34363:12;34359:2;34338:38;;34355:1;34338:38;;;;;;;;;;;;34403:59;34434:1;34438:2;34442:12;34456:5;34403:22;:59::i;:::-;34385:150;;;;;;;;;;;;:::i;:::-;;;;;;;;;34544:14;;;;;:::i;:::-;;;;34319:3;;;;;:::i;:::-;;;;34285:281;;;;34589:12;34574;:27;;;;34608:60;34637:1;34641:2;34645:12;34659:8;34608:20;:60::i;:::-;33500:1174;;;33402:1272;;;:::o;3357:326::-;3417:4;3674:1;3652:7;:19;;;:23;3645:30;;3357:326;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:410:1:-;84:5;109:65;125:48;166:6;125:48;:::i;:::-;109:65;:::i;:::-;100:74;;197:6;190:5;183:21;235:4;228:5;224:16;273:3;264:6;259:3;255:16;252:25;249:112;;;280:79;;:::i;:::-;249:112;370:41;404:6;399:3;394;370:41;:::i;:::-;90:327;7:410;;;;;:::o;423:139::-;469:5;507:6;494:20;485:29;;523:33;550:5;523:33;:::i;:::-;423:139;;;;:::o;568:133::-;611:5;649:6;636:20;627:29;;665:30;689:5;665:30;:::i;:::-;568:133;;;;:::o;707:137::-;752:5;790:6;777:20;768:29;;806:32;832:5;806:32;:::i;:::-;707:137;;;;:::o;850:141::-;906:5;937:6;931:13;922:22;;953:32;979:5;953:32;:::i;:::-;850:141;;;;:::o;1010:338::-;1065:5;1114:3;1107:4;1099:6;1095:17;1091:27;1081:122;;1122:79;;:::i;:::-;1081:122;1239:6;1226:20;1264:78;1338:3;1330:6;1323:4;1315:6;1311:17;1264:78;:::i;:::-;1255:87;;1071:277;1010:338;;;;:::o;1368:553::-;1426:8;1436:6;1486:3;1479:4;1471:6;1467:17;1463:27;1453:122;;1494:79;;:::i;:::-;1453:122;1607:6;1594:20;1584:30;;1637:18;1629:6;1626:30;1623:117;;;1659:79;;:::i;:::-;1623:117;1773:4;1765:6;1761:17;1749:29;;1827:3;1819:4;1811:6;1807:17;1797:8;1793:32;1790:41;1787:128;;;1834:79;;:::i;:::-;1787:128;1368:553;;;;;:::o;1927:139::-;1973:5;2011:6;1998:20;1989:29;;2027:33;2054:5;2027:33;:::i;:::-;1927:139;;;;:::o;2072:329::-;2131:6;2180:2;2168:9;2159:7;2155:23;2151:32;2148:119;;;2186:79;;:::i;:::-;2148:119;2306:1;2331:53;2376:7;2367:6;2356:9;2352:22;2331:53;:::i;:::-;2321:63;;2277:117;2072:329;;;;:::o;2407:474::-;2475:6;2483;2532:2;2520:9;2511:7;2507:23;2503:32;2500:119;;;2538:79;;:::i;:::-;2500:119;2658:1;2683:53;2728:7;2719:6;2708:9;2704:22;2683:53;:::i;:::-;2673:63;;2629:117;2785:2;2811:53;2856:7;2847:6;2836:9;2832:22;2811:53;:::i;:::-;2801:63;;2756:118;2407:474;;;;;:::o;2887:619::-;2964:6;2972;2980;3029:2;3017:9;3008:7;3004:23;3000:32;2997:119;;;3035:79;;:::i;:::-;2997:119;3155:1;3180:53;3225:7;3216:6;3205:9;3201:22;3180:53;:::i;:::-;3170:63;;3126:117;3282:2;3308:53;3353:7;3344:6;3333:9;3329:22;3308:53;:::i;:::-;3298:63;;3253:118;3410:2;3436:53;3481:7;3472:6;3461:9;3457:22;3436:53;:::i;:::-;3426:63;;3381:118;2887:619;;;;;:::o;3512:943::-;3607:6;3615;3623;3631;3680:3;3668:9;3659:7;3655:23;3651:33;3648:120;;;3687:79;;:::i;:::-;3648:120;3807:1;3832:53;3877:7;3868:6;3857:9;3853:22;3832:53;:::i;:::-;3822:63;;3778:117;3934:2;3960:53;4005:7;3996:6;3985:9;3981:22;3960:53;:::i;:::-;3950:63;;3905:118;4062:2;4088:53;4133:7;4124:6;4113:9;4109:22;4088:53;:::i;:::-;4078:63;;4033:118;4218:2;4207:9;4203:18;4190:32;4249:18;4241:6;4238:30;4235:117;;;4271:79;;:::i;:::-;4235:117;4376:62;4430:7;4421:6;4410:9;4406:22;4376:62;:::i;:::-;4366:72;;4161:287;3512:943;;;;;;;:::o;4461:468::-;4526:6;4534;4583:2;4571:9;4562:7;4558:23;4554:32;4551:119;;;4589:79;;:::i;:::-;4551:119;4709:1;4734:53;4779:7;4770:6;4759:9;4755:22;4734:53;:::i;:::-;4724:63;;4680:117;4836:2;4862:50;4904:7;4895:6;4884:9;4880:22;4862:50;:::i;:::-;4852:60;;4807:115;4461:468;;;;;:::o;4935:474::-;5003:6;5011;5060:2;5048:9;5039:7;5035:23;5031:32;5028:119;;;5066:79;;:::i;:::-;5028:119;5186:1;5211:53;5256:7;5247:6;5236:9;5232:22;5211:53;:::i;:::-;5201:63;;5157:117;5313:2;5339:53;5384:7;5375:6;5364:9;5360:22;5339:53;:::i;:::-;5329:63;;5284:118;4935:474;;;;;:::o;5415:327::-;5473:6;5522:2;5510:9;5501:7;5497:23;5493:32;5490:119;;;5528:79;;:::i;:::-;5490:119;5648:1;5673:52;5717:7;5708:6;5697:9;5693:22;5673:52;:::i;:::-;5663:62;;5619:116;5415:327;;;;:::o;5748:349::-;5817:6;5866:2;5854:9;5845:7;5841:23;5837:32;5834:119;;;5872:79;;:::i;:::-;5834:119;5992:1;6017:63;6072:7;6063:6;6052:9;6048:22;6017:63;:::i;:::-;6007:73;;5963:127;5748:349;;;;:::o;6103:529::-;6174:6;6182;6231:2;6219:9;6210:7;6206:23;6202:32;6199:119;;;6237:79;;:::i;:::-;6199:119;6385:1;6374:9;6370:17;6357:31;6415:18;6407:6;6404:30;6401:117;;;6437:79;;:::i;:::-;6401:117;6550:65;6607:7;6598:6;6587:9;6583:22;6550:65;:::i;:::-;6532:83;;;;6328:297;6103:529;;;;;:::o;6638:329::-;6697:6;6746:2;6734:9;6725:7;6721:23;6717:32;6714:119;;;6752:79;;:::i;:::-;6714:119;6872:1;6897:53;6942:7;6933:6;6922:9;6918:22;6897:53;:::i;:::-;6887:63;;6843:117;6638:329;;;;:::o;6973:108::-;7050:24;7068:5;7050:24;:::i;:::-;7045:3;7038:37;6973:108;;:::o;7087:118::-;7174:24;7192:5;7174:24;:::i;:::-;7169:3;7162:37;7087:118;;:::o;7211:109::-;7292:21;7307:5;7292:21;:::i;:::-;7287:3;7280:34;7211:109;;:::o;7326:360::-;7412:3;7440:38;7472:5;7440:38;:::i;:::-;7494:70;7557:6;7552:3;7494:70;:::i;:::-;7487:77;;7573:52;7618:6;7613:3;7606:4;7599:5;7595:16;7573:52;:::i;:::-;7650:29;7672:6;7650:29;:::i;:::-;7645:3;7641:39;7634:46;;7416:270;7326:360;;;;:::o;7692:364::-;7780:3;7808:39;7841:5;7808:39;:::i;:::-;7863:71;7927:6;7922:3;7863:71;:::i;:::-;7856:78;;7943:52;7988:6;7983:3;7976:4;7969:5;7965:16;7943:52;:::i;:::-;8020:29;8042:6;8020:29;:::i;:::-;8015:3;8011:39;8004:46;;7784:272;7692:364;;;;:::o;8062:377::-;8168:3;8196:39;8229:5;8196:39;:::i;:::-;8251:89;8333:6;8328:3;8251:89;:::i;:::-;8244:96;;8349:52;8394:6;8389:3;8382:4;8375:5;8371:16;8349:52;:::i;:::-;8426:6;8421:3;8417:16;8410:23;;8172:267;8062:377;;;;:::o;8445:366::-;8587:3;8608:67;8672:2;8667:3;8608:67;:::i;:::-;8601:74;;8684:93;8773:3;8684:93;:::i;:::-;8802:2;8797:3;8793:12;8786:19;;8445:366;;;:::o;8817:::-;8959:3;8980:67;9044:2;9039:3;8980:67;:::i;:::-;8973:74;;9056:93;9145:3;9056:93;:::i;:::-;9174:2;9169:3;9165:12;9158:19;;8817:366;;;:::o;9189:::-;9331:3;9352:67;9416:2;9411:3;9352:67;:::i;:::-;9345:74;;9428:93;9517:3;9428:93;:::i;:::-;9546:2;9541:3;9537:12;9530:19;;9189:366;;;:::o;9561:::-;9703:3;9724:67;9788:2;9783:3;9724:67;:::i;:::-;9717:74;;9800:93;9889:3;9800:93;:::i;:::-;9918:2;9913:3;9909:12;9902:19;;9561:366;;;:::o;9933:::-;10075:3;10096:67;10160:2;10155:3;10096:67;:::i;:::-;10089:74;;10172:93;10261:3;10172:93;:::i;:::-;10290:2;10285:3;10281:12;10274:19;;9933:366;;;:::o;10305:::-;10447:3;10468:67;10532:2;10527:3;10468:67;:::i;:::-;10461:74;;10544:93;10633:3;10544:93;:::i;:::-;10662:2;10657:3;10653:12;10646:19;;10305:366;;;:::o;10677:::-;10819:3;10840:67;10904:2;10899:3;10840:67;:::i;:::-;10833:74;;10916:93;11005:3;10916:93;:::i;:::-;11034:2;11029:3;11025:12;11018:19;;10677:366;;;:::o;11049:::-;11191:3;11212:67;11276:2;11271:3;11212:67;:::i;:::-;11205:74;;11288:93;11377:3;11288:93;:::i;:::-;11406:2;11401:3;11397:12;11390:19;;11049:366;;;:::o;11421:::-;11563:3;11584:67;11648:2;11643:3;11584:67;:::i;:::-;11577:74;;11660:93;11749:3;11660:93;:::i;:::-;11778:2;11773:3;11769:12;11762:19;;11421:366;;;:::o;11793:::-;11935:3;11956:67;12020:2;12015:3;11956:67;:::i;:::-;11949:74;;12032:93;12121:3;12032:93;:::i;:::-;12150:2;12145:3;12141:12;12134:19;;11793:366;;;:::o;12165:::-;12307:3;12328:67;12392:2;12387:3;12328:67;:::i;:::-;12321:74;;12404:93;12493:3;12404:93;:::i;:::-;12522:2;12517:3;12513:12;12506:19;;12165:366;;;:::o;12537:::-;12679:3;12700:67;12764:2;12759:3;12700:67;:::i;:::-;12693:74;;12776:93;12865:3;12776:93;:::i;:::-;12894:2;12889:3;12885:12;12878:19;;12537:366;;;:::o;12909:::-;13051:3;13072:67;13136:2;13131:3;13072:67;:::i;:::-;13065:74;;13148:93;13237:3;13148:93;:::i;:::-;13266:2;13261:3;13257:12;13250:19;;12909:366;;;:::o;13281:400::-;13441:3;13462:84;13544:1;13539:3;13462:84;:::i;:::-;13455:91;;13555:93;13644:3;13555:93;:::i;:::-;13673:1;13668:3;13664:11;13657:18;;13281:400;;;:::o;13687:366::-;13829:3;13850:67;13914:2;13909:3;13850:67;:::i;:::-;13843:74;;13926:93;14015:3;13926:93;:::i;:::-;14044:2;14039:3;14035:12;14028:19;;13687:366;;;:::o;14059:::-;14201:3;14222:67;14286:2;14281:3;14222:67;:::i;:::-;14215:74;;14298:93;14387:3;14298:93;:::i;:::-;14416:2;14411:3;14407:12;14400:19;;14059:366;;;:::o;14431:::-;14573:3;14594:67;14658:2;14653:3;14594:67;:::i;:::-;14587:74;;14670:93;14759:3;14670:93;:::i;:::-;14788:2;14783:3;14779:12;14772:19;;14431:366;;;:::o;14803:::-;14945:3;14966:67;15030:2;15025:3;14966:67;:::i;:::-;14959:74;;15042:93;15131:3;15042:93;:::i;:::-;15160:2;15155:3;15151:12;15144:19;;14803:366;;;:::o;15175:::-;15317:3;15338:67;15402:2;15397:3;15338:67;:::i;:::-;15331:74;;15414:93;15503:3;15414:93;:::i;:::-;15532:2;15527:3;15523:12;15516:19;;15175:366;;;:::o;15547:::-;15689:3;15710:67;15774:2;15769:3;15710:67;:::i;:::-;15703:74;;15786:93;15875:3;15786:93;:::i;:::-;15904:2;15899:3;15895:12;15888:19;;15547:366;;;:::o;15919:::-;16061:3;16082:67;16146:2;16141:3;16082:67;:::i;:::-;16075:74;;16158:93;16247:3;16158:93;:::i;:::-;16276:2;16271:3;16267:12;16260:19;;15919:366;;;:::o;16291:::-;16433:3;16454:67;16518:2;16513:3;16454:67;:::i;:::-;16447:74;;16530:93;16619:3;16530:93;:::i;:::-;16648:2;16643:3;16639:12;16632:19;;16291:366;;;:::o;16663:::-;16805:3;16826:67;16890:2;16885:3;16826:67;:::i;:::-;16819:74;;16902:93;16991:3;16902:93;:::i;:::-;17020:2;17015:3;17011:12;17004:19;;16663:366;;;:::o;17035:::-;17177:3;17198:67;17262:2;17257:3;17198:67;:::i;:::-;17191:74;;17274:93;17363:3;17274:93;:::i;:::-;17392:2;17387:3;17383:12;17376:19;;17035:366;;;:::o;17407:::-;17549:3;17570:67;17634:2;17629:3;17570:67;:::i;:::-;17563:74;;17646:93;17735:3;17646:93;:::i;:::-;17764:2;17759:3;17755:12;17748:19;;17407:366;;;:::o;17779:::-;17921:3;17942:67;18006:2;18001:3;17942:67;:::i;:::-;17935:74;;18018:93;18107:3;18018:93;:::i;:::-;18136:2;18131:3;18127:12;18120:19;;17779:366;;;:::o;18151:::-;18293:3;18314:67;18378:2;18373:3;18314:67;:::i;:::-;18307:74;;18390:93;18479:3;18390:93;:::i;:::-;18508:2;18503:3;18499:12;18492:19;;18151:366;;;:::o;18523:::-;18665:3;18686:67;18750:2;18745:3;18686:67;:::i;:::-;18679:74;;18762:93;18851:3;18762:93;:::i;:::-;18880:2;18875:3;18871:12;18864:19;;18523:366;;;:::o;18895:::-;19037:3;19058:67;19122:2;19117:3;19058:67;:::i;:::-;19051:74;;19134:93;19223:3;19134:93;:::i;:::-;19252:2;19247:3;19243:12;19236:19;;18895:366;;;:::o;19267:::-;19409:3;19430:67;19494:2;19489:3;19430:67;:::i;:::-;19423:74;;19506:93;19595:3;19506:93;:::i;:::-;19624:2;19619:3;19615:12;19608:19;;19267:366;;;:::o;19639:::-;19781:3;19802:67;19866:2;19861:3;19802:67;:::i;:::-;19795:74;;19878:93;19967:3;19878:93;:::i;:::-;19996:2;19991:3;19987:12;19980:19;;19639:366;;;:::o;20081:527::-;20240:4;20235:3;20231:14;20327:4;20320:5;20316:16;20310:23;20346:63;20403:4;20398:3;20394:14;20380:12;20346:63;:::i;:::-;20255:164;20511:4;20504:5;20500:16;20494:23;20530:61;20585:4;20580:3;20576:14;20562:12;20530:61;:::i;:::-;20429:172;20209:399;20081:527;;:::o;20614:118::-;20701:24;20719:5;20701:24;:::i;:::-;20696:3;20689:37;20614:118;;:::o;20738:105::-;20813:23;20830:5;20813:23;:::i;:::-;20808:3;20801:36;20738:105;;:::o;20849:701::-;21130:3;21152:95;21243:3;21234:6;21152:95;:::i;:::-;21145:102;;21264:95;21355:3;21346:6;21264:95;:::i;:::-;21257:102;;21376:148;21520:3;21376:148;:::i;:::-;21369:155;;21541:3;21534:10;;20849:701;;;;;:::o;21556:222::-;21649:4;21687:2;21676:9;21672:18;21664:26;;21700:71;21768:1;21757:9;21753:17;21744:6;21700:71;:::i;:::-;21556:222;;;;:::o;21784:640::-;21979:4;22017:3;22006:9;22002:19;21994:27;;22031:71;22099:1;22088:9;22084:17;22075:6;22031:71;:::i;:::-;22112:72;22180:2;22169:9;22165:18;22156:6;22112:72;:::i;:::-;22194;22262:2;22251:9;22247:18;22238:6;22194:72;:::i;:::-;22313:9;22307:4;22303:20;22298:2;22287:9;22283:18;22276:48;22341:76;22412:4;22403:6;22341:76;:::i;:::-;22333:84;;21784:640;;;;;;;:::o;22430:210::-;22517:4;22555:2;22544:9;22540:18;22532:26;;22568:65;22630:1;22619:9;22615:17;22606:6;22568:65;:::i;:::-;22430:210;;;;:::o;22646:313::-;22759:4;22797:2;22786:9;22782:18;22774:26;;22846:9;22840:4;22836:20;22832:1;22821:9;22817:17;22810:47;22874:78;22947:4;22938:6;22874:78;:::i;:::-;22866:86;;22646:313;;;;:::o;22965:419::-;23131:4;23169:2;23158:9;23154:18;23146:26;;23218:9;23212:4;23208:20;23204:1;23193:9;23189:17;23182:47;23246:131;23372:4;23246:131;:::i;:::-;23238:139;;22965:419;;;:::o;23390:::-;23556:4;23594:2;23583:9;23579:18;23571:26;;23643:9;23637:4;23633:20;23629:1;23618:9;23614:17;23607:47;23671:131;23797:4;23671:131;:::i;:::-;23663:139;;23390:419;;;:::o;23815:::-;23981:4;24019:2;24008:9;24004:18;23996:26;;24068:9;24062:4;24058:20;24054:1;24043:9;24039:17;24032:47;24096:131;24222:4;24096:131;:::i;:::-;24088:139;;23815:419;;;:::o;24240:::-;24406:4;24444:2;24433:9;24429:18;24421:26;;24493:9;24487:4;24483:20;24479:1;24468:9;24464:17;24457:47;24521:131;24647:4;24521:131;:::i;:::-;24513:139;;24240:419;;;:::o;24665:::-;24831:4;24869:2;24858:9;24854:18;24846:26;;24918:9;24912:4;24908:20;24904:1;24893:9;24889:17;24882:47;24946:131;25072:4;24946:131;:::i;:::-;24938:139;;24665:419;;;:::o;25090:::-;25256:4;25294:2;25283:9;25279:18;25271:26;;25343:9;25337:4;25333:20;25329:1;25318:9;25314:17;25307:47;25371:131;25497:4;25371:131;:::i;:::-;25363:139;;25090:419;;;:::o;25515:::-;25681:4;25719:2;25708:9;25704:18;25696:26;;25768:9;25762:4;25758:20;25754:1;25743:9;25739:17;25732:47;25796:131;25922:4;25796:131;:::i;:::-;25788:139;;25515:419;;;:::o;25940:::-;26106:4;26144:2;26133:9;26129:18;26121:26;;26193:9;26187:4;26183:20;26179:1;26168:9;26164:17;26157:47;26221:131;26347:4;26221:131;:::i;:::-;26213:139;;25940:419;;;:::o;26365:::-;26531:4;26569:2;26558:9;26554:18;26546:26;;26618:9;26612:4;26608:20;26604:1;26593:9;26589:17;26582:47;26646:131;26772:4;26646:131;:::i;:::-;26638:139;;26365:419;;;:::o;26790:::-;26956:4;26994:2;26983:9;26979:18;26971:26;;27043:9;27037:4;27033:20;27029:1;27018:9;27014:17;27007:47;27071:131;27197:4;27071:131;:::i;:::-;27063:139;;26790:419;;;:::o;27215:::-;27381:4;27419:2;27408:9;27404:18;27396:26;;27468:9;27462:4;27458:20;27454:1;27443:9;27439:17;27432:47;27496:131;27622:4;27496:131;:::i;:::-;27488:139;;27215:419;;;:::o;27640:::-;27806:4;27844:2;27833:9;27829:18;27821:26;;27893:9;27887:4;27883:20;27879:1;27868:9;27864:17;27857:47;27921:131;28047:4;27921:131;:::i;:::-;27913:139;;27640:419;;;:::o;28065:::-;28231:4;28269:2;28258:9;28254:18;28246:26;;28318:9;28312:4;28308:20;28304:1;28293:9;28289:17;28282:47;28346:131;28472:4;28346:131;:::i;:::-;28338:139;;28065:419;;;:::o;28490:::-;28656:4;28694:2;28683:9;28679:18;28671:26;;28743:9;28737:4;28733:20;28729:1;28718:9;28714:17;28707:47;28771:131;28897:4;28771:131;:::i;:::-;28763:139;;28490:419;;;:::o;28915:::-;29081:4;29119:2;29108:9;29104:18;29096:26;;29168:9;29162:4;29158:20;29154:1;29143:9;29139:17;29132:47;29196:131;29322:4;29196:131;:::i;:::-;29188:139;;28915:419;;;:::o;29340:::-;29506:4;29544:2;29533:9;29529:18;29521:26;;29593:9;29587:4;29583:20;29579:1;29568:9;29564:17;29557:47;29621:131;29747:4;29621:131;:::i;:::-;29613:139;;29340:419;;;:::o;29765:::-;29931:4;29969:2;29958:9;29954:18;29946:26;;30018:9;30012:4;30008:20;30004:1;29993:9;29989:17;29982:47;30046:131;30172:4;30046:131;:::i;:::-;30038:139;;29765:419;;;:::o;30190:::-;30356:4;30394:2;30383:9;30379:18;30371:26;;30443:9;30437:4;30433:20;30429:1;30418:9;30414:17;30407:47;30471:131;30597:4;30471:131;:::i;:::-;30463:139;;30190:419;;;:::o;30615:::-;30781:4;30819:2;30808:9;30804:18;30796:26;;30868:9;30862:4;30858:20;30854:1;30843:9;30839:17;30832:47;30896:131;31022:4;30896:131;:::i;:::-;30888:139;;30615:419;;;:::o;31040:::-;31206:4;31244:2;31233:9;31229:18;31221:26;;31293:9;31287:4;31283:20;31279:1;31268:9;31264:17;31257:47;31321:131;31447:4;31321:131;:::i;:::-;31313:139;;31040:419;;;:::o;31465:::-;31631:4;31669:2;31658:9;31654:18;31646:26;;31718:9;31712:4;31708:20;31704:1;31693:9;31689:17;31682:47;31746:131;31872:4;31746:131;:::i;:::-;31738:139;;31465:419;;;:::o;31890:::-;32056:4;32094:2;32083:9;32079:18;32071:26;;32143:9;32137:4;32133:20;32129:1;32118:9;32114:17;32107:47;32171:131;32297:4;32171:131;:::i;:::-;32163:139;;31890:419;;;:::o;32315:::-;32481:4;32519:2;32508:9;32504:18;32496:26;;32568:9;32562:4;32558:20;32554:1;32543:9;32539:17;32532:47;32596:131;32722:4;32596:131;:::i;:::-;32588:139;;32315:419;;;:::o;32740:::-;32906:4;32944:2;32933:9;32929:18;32921:26;;32993:9;32987:4;32983:20;32979:1;32968:9;32964:17;32957:47;33021:131;33147:4;33021:131;:::i;:::-;33013:139;;32740:419;;;:::o;33165:::-;33331:4;33369:2;33358:9;33354:18;33346:26;;33418:9;33412:4;33408:20;33404:1;33393:9;33389:17;33382:47;33446:131;33572:4;33446:131;:::i;:::-;33438:139;;33165:419;;;:::o;33590:::-;33756:4;33794:2;33783:9;33779:18;33771:26;;33843:9;33837:4;33833:20;33829:1;33818:9;33814:17;33807:47;33871:131;33997:4;33871:131;:::i;:::-;33863:139;;33590:419;;;:::o;34015:::-;34181:4;34219:2;34208:9;34204:18;34196:26;;34268:9;34262:4;34258:20;34254:1;34243:9;34239:17;34232:47;34296:131;34422:4;34296:131;:::i;:::-;34288:139;;34015:419;;;:::o;34440:::-;34606:4;34644:2;34633:9;34629:18;34621:26;;34693:9;34687:4;34683:20;34679:1;34668:9;34664:17;34657:47;34721:131;34847:4;34721:131;:::i;:::-;34713:139;;34440:419;;;:::o;34865:::-;35031:4;35069:2;35058:9;35054:18;35046:26;;35118:9;35112:4;35108:20;35104:1;35093:9;35089:17;35082:47;35146:131;35272:4;35146:131;:::i;:::-;35138:139;;34865:419;;;:::o;35290:::-;35456:4;35494:2;35483:9;35479:18;35471:26;;35543:9;35537:4;35533:20;35529:1;35518:9;35514:17;35507:47;35571:131;35697:4;35571:131;:::i;:::-;35563:139;;35290:419;;;:::o;35715:346::-;35870:4;35908:2;35897:9;35893:18;35885:26;;35921:133;36051:1;36040:9;36036:17;36027:6;35921:133;:::i;:::-;35715:346;;;;:::o;36067:222::-;36160:4;36198:2;36187:9;36183:18;36175:26;;36211:71;36279:1;36268:9;36264:17;36255:6;36211:71;:::i;:::-;36067:222;;;;:::o;36295:129::-;36329:6;36356:20;;:::i;:::-;36346:30;;36385:33;36413:4;36405:6;36385:33;:::i;:::-;36295:129;;;:::o;36430:75::-;36463:6;36496:2;36490:9;36480:19;;36430:75;:::o;36511:307::-;36572:4;36662:18;36654:6;36651:30;36648:56;;;36684:18;;:::i;:::-;36648:56;36722:29;36744:6;36722:29;:::i;:::-;36714:37;;36806:4;36800;36796:15;36788:23;;36511:307;;;:::o;36824:98::-;36875:6;36909:5;36903:12;36893:22;;36824:98;;;:::o;36928:99::-;36980:6;37014:5;37008:12;36998:22;;36928:99;;;:::o;37033:168::-;37116:11;37150:6;37145:3;37138:19;37190:4;37185:3;37181:14;37166:29;;37033:168;;;;:::o;37207:169::-;37291:11;37325:6;37320:3;37313:19;37365:4;37360:3;37356:14;37341:29;;37207:169;;;;:::o;37382:148::-;37484:11;37521:3;37506:18;;37382:148;;;;:::o;37536:273::-;37576:3;37595:20;37613:1;37595:20;:::i;:::-;37590:25;;37629:20;37647:1;37629:20;:::i;:::-;37624:25;;37751:1;37715:34;37711:42;37708:1;37705:49;37702:75;;;37757:18;;:::i;:::-;37702:75;37801:1;37798;37794:9;37787:16;;37536:273;;;;:::o;37815:305::-;37855:3;37874:20;37892:1;37874:20;:::i;:::-;37869:25;;37908:20;37926:1;37908:20;:::i;:::-;37903:25;;38062:1;37994:66;37990:74;37987:1;37984:81;37981:107;;;38068:18;;:::i;:::-;37981:107;38112:1;38109;38105:9;38098:16;;37815:305;;;;:::o;38126:185::-;38166:1;38183:20;38201:1;38183:20;:::i;:::-;38178:25;;38217:20;38235:1;38217:20;:::i;:::-;38212:25;;38256:1;38246:35;;38261:18;;:::i;:::-;38246:35;38303:1;38300;38296:9;38291:14;;38126:185;;;;:::o;38317:348::-;38357:7;38380:20;38398:1;38380:20;:::i;:::-;38375:25;;38414:20;38432:1;38414:20;:::i;:::-;38409:25;;38602:1;38534:66;38530:74;38527:1;38524:81;38519:1;38512:9;38505:17;38501:105;38498:131;;;38609:18;;:::i;:::-;38498:131;38657:1;38654;38650:9;38639:20;;38317:348;;;;:::o;38671:191::-;38711:4;38731:20;38749:1;38731:20;:::i;:::-;38726:25;;38765:20;38783:1;38765:20;:::i;:::-;38760:25;;38804:1;38801;38798:8;38795:34;;;38809:18;;:::i;:::-;38795:34;38854:1;38851;38847:9;38839:17;;38671:191;;;;:::o;38868:::-;38908:4;38928:20;38946:1;38928:20;:::i;:::-;38923:25;;38962:20;38980:1;38962:20;:::i;:::-;38957:25;;39001:1;38998;38995:8;38992:34;;;39006:18;;:::i;:::-;38992:34;39051:1;39048;39044:9;39036:17;;38868:191;;;;:::o;39065:96::-;39102:7;39131:24;39149:5;39131:24;:::i;:::-;39120:35;;39065:96;;;:::o;39167:90::-;39201:7;39244:5;39237:13;39230:21;39219:32;;39167:90;;;:::o;39263:149::-;39299:7;39339:66;39332:5;39328:78;39317:89;;39263:149;;;:::o;39418:118::-;39455:7;39495:34;39488:5;39484:46;39473:57;;39418:118;;;:::o;39542:126::-;39579:7;39619:42;39612:5;39608:54;39597:65;;39542:126;;;:::o;39674:77::-;39711:7;39740:5;39729:16;;39674:77;;;:::o;39757:101::-;39793:7;39833:18;39826:5;39822:30;39811:41;;39757:101;;;:::o;39864:154::-;39948:6;39943:3;39938;39925:30;40010:1;40001:6;39996:3;39992:16;39985:27;39864:154;;;:::o;40024:307::-;40092:1;40102:113;40116:6;40113:1;40110:13;40102:113;;;40201:1;40196:3;40192:11;40186:18;40182:1;40177:3;40173:11;40166:39;40138:2;40135:1;40131:10;40126:15;;40102:113;;;40233:6;40230:1;40227:13;40224:101;;;40313:1;40304:6;40299:3;40295:16;40288:27;40224:101;40073:258;40024:307;;;:::o;40337:171::-;40376:3;40399:24;40417:5;40399:24;:::i;:::-;40390:33;;40445:4;40438:5;40435:15;40432:41;;;40453:18;;:::i;:::-;40432:41;40500:1;40493:5;40489:13;40482:20;;40337:171;;;:::o;40514:320::-;40558:6;40595:1;40589:4;40585:12;40575:22;;40642:1;40636:4;40632:12;40663:18;40653:81;;40719:4;40711:6;40707:17;40697:27;;40653:81;40781:2;40773:6;40770:14;40750:18;40747:38;40744:84;;;40800:18;;:::i;:::-;40744:84;40565:269;40514:320;;;:::o;40840:281::-;40923:27;40945:4;40923:27;:::i;:::-;40915:6;40911:40;41053:6;41041:10;41038:22;41017:18;41005:10;41002:34;40999:62;40996:88;;;41064:18;;:::i;:::-;40996:88;41104:10;41100:2;41093:22;40883:238;40840:281;;:::o;41127:233::-;41166:3;41189:24;41207:5;41189:24;:::i;:::-;41180:33;;41235:66;41228:5;41225:77;41222:103;;;41305:18;;:::i;:::-;41222:103;41352:1;41345:5;41341:13;41334:20;;41127:233;;;:::o;41366:176::-;41398:1;41415:20;41433:1;41415:20;:::i;:::-;41410:25;;41449:20;41467:1;41449:20;:::i;:::-;41444:25;;41488:1;41478:35;;41493:18;;:::i;:::-;41478:35;41534:1;41531;41527:9;41522:14;;41366:176;;;;:::o;41548:180::-;41596:77;41593:1;41586:88;41693:4;41690:1;41683:15;41717:4;41714:1;41707:15;41734:180;41782:77;41779:1;41772:88;41879:4;41876:1;41869:15;41903:4;41900:1;41893:15;41920:180;41968:77;41965:1;41958:88;42065:4;42062:1;42055:15;42089:4;42086:1;42079:15;42106:180;42154:77;42151:1;42144:88;42251:4;42248:1;42241:15;42275:4;42272:1;42265:15;42292:180;42340:77;42337:1;42330:88;42437:4;42434:1;42427:15;42461:4;42458:1;42451:15;42478:117;42587:1;42584;42577:12;42601:117;42710:1;42707;42700:12;42724:117;42833:1;42830;42823:12;42847:117;42956:1;42953;42946:12;42970:117;43079:1;43076;43069:12;43093:117;43202:1;43199;43192:12;43216:102;43257:6;43308:2;43304:7;43299:2;43292:5;43288:14;43284:28;43274:38;;43216:102;;;:::o;43324:221::-;43464:34;43460:1;43452:6;43448:14;43441:58;43533:4;43528:2;43520:6;43516:15;43509:29;43324:221;:::o;43551:179::-;43691:31;43687:1;43679:6;43675:14;43668:55;43551:179;:::o;43736:225::-;43876:34;43872:1;43864:6;43860:14;43853:58;43945:8;43940:2;43932:6;43928:15;43921:33;43736:225;:::o;43967:229::-;44107:34;44103:1;44095:6;44091:14;44084:58;44176:12;44171:2;44163:6;44159:15;44152:37;43967:229;:::o;44202:222::-;44342:34;44338:1;44330:6;44326:14;44319:58;44411:5;44406:2;44398:6;44394:15;44387:30;44202:222;:::o;44430:224::-;44570:34;44566:1;44558:6;44554:14;44547:58;44639:7;44634:2;44626:6;44622:15;44615:32;44430:224;:::o;44660:236::-;44800:34;44796:1;44788:6;44784:14;44777:58;44869:19;44864:2;44856:6;44852:15;44845:44;44660:236;:::o;44902:180::-;45042:32;45038:1;45030:6;45026:14;45019:56;44902:180;:::o;45088:244::-;45228:34;45224:1;45216:6;45212:14;45205:58;45297:27;45292:2;45284:6;45280:15;45273:52;45088:244;:::o;45338:174::-;45478:26;45474:1;45466:6;45462:14;45455:50;45338:174;:::o;45518:230::-;45658:34;45654:1;45646:6;45642:14;45635:58;45727:13;45722:2;45714:6;45710:15;45703:38;45518:230;:::o;45754:168::-;45894:20;45890:1;45882:6;45878:14;45871:44;45754:168;:::o;45928:225::-;46068:34;46064:1;46056:6;46052:14;46045:58;46137:8;46132:2;46124:6;46120:15;46113:33;45928:225;:::o;46159:155::-;46299:7;46295:1;46287:6;46283:14;46276:31;46159:155;:::o;46320:182::-;46460:34;46456:1;46448:6;46444:14;46437:58;46320:182;:::o;46508:234::-;46648:34;46644:1;46636:6;46632:14;46625:58;46717:17;46712:2;46704:6;46700:15;46693:42;46508:234;:::o;46748:176::-;46888:28;46884:1;46876:6;46872:14;46865:52;46748:176;:::o;46930:237::-;47070:34;47066:1;47058:6;47054:14;47047:58;47139:20;47134:2;47126:6;47122:15;47115:45;46930:237;:::o;47173:179::-;47313:31;47309:1;47301:6;47297:14;47290:55;47173:179;:::o;47358:221::-;47498:34;47494:1;47486:6;47482:14;47475:58;47567:4;47562:2;47554:6;47550:15;47543:29;47358:221;:::o;47585:238::-;47725:34;47721:1;47713:6;47709:14;47702:58;47794:21;47789:2;47781:6;47777:15;47770:46;47585:238;:::o;47829:172::-;47969:24;47965:1;47957:6;47953:14;47946:48;47829:172;:::o;48007:179::-;48147:31;48143:1;48135:6;48131:14;48124:55;48007:179;:::o;48192:220::-;48332:34;48328:1;48320:6;48316:14;48309:58;48401:3;48396:2;48388:6;48384:15;48377:28;48192:220;:::o;48418:233::-;48558:34;48554:1;48546:6;48542:14;48535:58;48627:16;48622:2;48614:6;48610:15;48603:41;48418:233;:::o;48657:225::-;48797:34;48793:1;48785:6;48781:14;48774:58;48866:8;48861:2;48853:6;48849:15;48842:33;48657:225;:::o;48888:181::-;49028:33;49024:1;49016:6;49012:14;49005:57;48888:181;:::o;49075:234::-;49215:34;49211:1;49203:6;49199:14;49192:58;49284:17;49279:2;49271:6;49267:15;49260:42;49075:234;:::o;49315:232::-;49455:34;49451:1;49443:6;49439:14;49432:58;49524:15;49519:2;49511:6;49507:15;49500:40;49315:232;:::o;49553:245::-;49693:34;49689:1;49681:6;49677:14;49670:58;49762:28;49757:2;49749:6;49745:15;49738:53;49553:245;:::o;49804:221::-;49944:34;49940:1;49932:6;49928:14;49921:58;50013:4;50008:2;50000:6;49996:15;49989:29;49804:221;:::o;50031:122::-;50104:24;50122:5;50104:24;:::i;:::-;50097:5;50094:35;50084:63;;50143:1;50140;50133:12;50084:63;50031:122;:::o;50159:116::-;50229:21;50244:5;50229:21;:::i;:::-;50222:5;50219:32;50209:60;;50265:1;50262;50255:12;50209:60;50159:116;:::o;50281:120::-;50353:23;50370:5;50353:23;:::i;:::-;50346:5;50343:34;50333:62;;50391:1;50388;50381:12;50333:62;50281:120;:::o;50407:122::-;50480:24;50498:5;50480:24;:::i;:::-;50473:5;50470:35;50460:63;;50519:1;50516;50509:12;50460:63;50407:122;:::o

Swarm Source

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