ETH Price: $3,452.53 (+0.09%)
Gas: 6 Gwei

Token

KOOLKOALAS (KK)
 

Overview

Max Total Supply

397 KK

Holders

125

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
sacro.eth
Balance
2 KK
0xbf05cca381a8ad0177fb967341d040c6fa980335
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:
KoolKoalas

Compiler Version
v0.8.4+commit.c7e474f2

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2021-08-29
*/

/**
 *Submitted for verification at Etherscan.io on 2021-08-08
*/

/**
 *Submitted for verification at Etherscan.io on 2021-07-13
*/

/**
 *Submitted for verification at Etherscan.io on 2021-06-29
*/

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/token/ERC721/[email protected]

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/[email protected]

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/token/ERC721/extensions/[email protected]

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/utils/[email protected]

pragma solidity ^0.8.0;

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

        uint256 size;
        // solhint-disable-next-line no-inline-assembly
        assembly { size := extcodesize(account) }
        return size > 0;
    }

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

        // solhint-disable-next-line avoid-low-level-calls, avoid-call-value
        (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");

        // solhint-disable-next-line avoid-low-level-calls
        (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");

        // solhint-disable-next-line avoid-low-level-calls
        (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");

        // solhint-disable-next-line avoid-low-level-calls
        (bool success, bytes memory returndata) = target.delegatecall(data);
        return _verifyCallResult(success, returndata, errorMessage);
    }

    function _verifyCallResult(bool success, bytes memory returndata, string memory errorMessage) private 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

                // solhint-disable-next-line no-inline-assembly
                assembly {
                    let returndata_size := mload(returndata)
                    revert(add(32, returndata), returndata_size)
                }
            } else {
                revert(errorMessage);
            }
        }
    }
}


// File @openzeppelin/contracts/utils/[email protected]

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) {
        this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691
        return msg.data;
    }
}


// File @openzeppelin/contracts/utils/[email protected]


pragma solidity ^0.8.0;

/**
 * @dev String operations.
 */
library Strings {
    bytes16 private constant alphabet = "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] = alphabet[value & 0xf];
            value >>= 4;
        }
        require(value == 0, "Strings: hex length insufficient");
        return string(buffer);
    }

}


// File @openzeppelin/contracts/utils/introspection/[email protected]


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/[email protected]


pragma solidity ^0.8.0;







/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
 * the Metadata extension, but not including the Enumerable extension, which is available separately as
 * {ERC721Enumerable}.
 */
contract ERC721 is Context, ERC165, IERC721, IERC721Metadata {
    using Address for address;
    using Strings for uint256;

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

    // Mapping from token ID to owner address
    mapping (uint256 => address) private _owners;

    // Mapping owner address to token count
    mapping (address => uint256) private _balances;

    // 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 Initializes the contract by setting a `name` and a `symbol` to the token collection.
     */
    constructor (string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

    /**
     * @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
            || super.supportsInterface(interfaceId);
    }

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

    /**
     * @dev See {IERC721-ownerOf}.
     */
    function ownerOf(uint256 tokenId) public view virtual override returns (address) {
        address owner = _owners[tokenId];
        require(owner != address(0), "ERC721: owner query for nonexistent token");
        return owner;
    }

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

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

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

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

    /**
     * @dev Base URI for computing {tokenURI}. 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 virtual override {
        address owner = ERC721.ownerOf(tokenId);
        require(to != owner, "ERC721: approval to current owner");

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public virtual override {
        require(operator != _msgSender(), "ERC721: 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 virtual override {
        //solhint-disable-next-line max-line-length
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved");

        _transfer(from, to, tokenId);
    }

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

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(address from, address to, uint256 tokenId, bytes memory _data) public virtual override {
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved");
        _safeTransfer(from, to, tokenId, _data);
    }

    /**
     * @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.
     *
     * `_data` is additional data, it has no specified format and it is sent in call to `to`.
     *
     * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g.
     * implement alternative mechanisms to perform token transfer, such as signature-based.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function _safeTransfer(address from, address to, uint256 tokenId, bytes memory _data) internal virtual {
        _transfer(from, to, tokenId);
        require(_checkOnERC721Received(from, to, tokenId, _data), "ERC721: 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`),
     * and stop existing when they are burned (`_burn`).
     */
    function _exists(uint256 tokenId) internal view virtual returns (bool) {
        return _owners[tokenId] != address(0);
    }

    /**
     * @dev Returns whether `spender` is allowed to manage `tokenId`.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) {
        require(_exists(tokenId), "ERC721: operator query for nonexistent token");
        address owner = ERC721.ownerOf(tokenId);
        return (spender == owner || getApproved(tokenId) == spender || isApprovedForAll(owner, spender));
    }

    /**
     * @dev Safely mints `tokenId` and transfers it to `to`.
     *
     * Requirements:
     *
     * - `tokenId` must not exist.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function _safeMint(address to, uint256 tokenId) internal virtual {
        _safeMint(to, tokenId, "");
    }

    /**
     * @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is
     * forwarded in {IERC721Receiver-onERC721Received} to contract recipients.
     */
    function _safeMint(address to, uint256 tokenId, bytes memory _data) internal virtual {
        _mint(to, tokenId);
        require(_checkOnERC721Received(address(0), to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer");
    }

    /**
     * @dev Mints `tokenId` and transfers it to `to`.
     *
     * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible
     *
     * Requirements:
     *
     * - `tokenId` must not exist.
     * - `to` cannot be the zero address.
     *
     * Emits a {Transfer} event.
     */
    function _mint(address to, uint256 tokenId) internal virtual {
        require(to != address(0), "ERC721: mint to the zero address");
        require(!_exists(tokenId), "ERC721: token already minted");

        _beforeTokenTransfer(address(0), to, tokenId);

        _balances[to] += 1;
        _owners[tokenId] = to;

        emit Transfer(address(0), to, tokenId);
    }

    /**
     * @dev Destroys `tokenId`.
     * The approval is cleared when the token is burned.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     *
     * Emits a {Transfer} event.
     */
    function _burn(uint256 tokenId) internal virtual {
        address owner = ERC721.ownerOf(tokenId);

        _beforeTokenTransfer(owner, address(0), tokenId);

        // Clear approvals
        _approve(address(0), tokenId);

        _balances[owner] -= 1;
        delete _owners[tokenId];

        emit Transfer(owner, address(0), tokenId);
    }

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *  As opposed to {transferFrom}, this imposes no restrictions on msg.sender.
     *
     * 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) internal virtual {
        require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer of token that is not own");
        require(to != address(0), "ERC721: transfer to the zero address");

        _beforeTokenTransfer(from, to, tokenId);

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

        _balances[from] -= 1;
        _balances[to] += 1;
        _owners[tokenId] = to;

        emit Transfer(from, to, tokenId);
    }

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

    /**
     * @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("ERC721: transfer to non ERC721Receiver implementer");
                } else {
                    // solhint-disable-next-line no-inline-assembly
                    assembly {
                        revert(add(32, reason), mload(reason))
                    }
                }
            }
        } else {
            return true;
        }
    }

    /**
     * @dev Hook that is called before any token transfer. This includes minting
     * and burning.
     *
     * 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`.
     * - When `to` is zero, ``from``'s `tokenId` will be burned.
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(address from, address to, uint256 tokenId) internal virtual { }
}


// File @openzeppelin/contracts/token/ERC721/extensions/[email protected]


pragma solidity ^0.8.0;

/**
 * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721Enumerable is IERC721 {

    /**
     * @dev Returns the total amount of tokens stored by the contract.
     */
    function totalSupply() external view returns (uint256);

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

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


// File @openzeppelin/contracts/token/ERC721/extensions/[email protected]


pragma solidity ^0.8.0;


/**
 * @dev This implements an optional extension of {ERC721} defined in the EIP that adds
 * enumerability of all the token ids in the contract as well as all token ids owned by each
 * account.
 */
abstract contract ERC721Enumerable is ERC721, IERC721Enumerable {
    // Mapping from owner to list of owned token IDs
    mapping(address => mapping(uint256 => uint256)) private _ownedTokens;

    // Mapping from token ID to index of the owner tokens list
    mapping(uint256 => uint256) private _ownedTokensIndex;

    // Array with all token ids, used for enumeration
    uint256[] private _allTokens;

    // Mapping from token id to position in the allTokens array
    mapping(uint256 => uint256) private _allTokensIndex;

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

    /**
     * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) public view virtual override returns (uint256) {
        require(index < ERC721.balanceOf(owner), "ERC721Enumerable: owner index out of bounds");
        return _ownedTokens[owner][index];
    }

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

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

    /**
     * @dev Hook that is called before any token transfer. This includes minting
     * and burning.
     *
     * 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`.
     * - When `to` is zero, ``from``'s `tokenId` will be burned.
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(address from, address to, uint256 tokenId) internal virtual override {
        super._beforeTokenTransfer(from, to, tokenId);

        if (from == address(0)) {
            _addTokenToAllTokensEnumeration(tokenId);
        } else if (from != to) {
            _removeTokenFromOwnerEnumeration(from, tokenId);
        }
        if (to == address(0)) {
            _removeTokenFromAllTokensEnumeration(tokenId);
        } else if (to != from) {
            _addTokenToOwnerEnumeration(to, tokenId);
        }
    }

    /**
     * @dev Private function to add a token to this extension's ownership-tracking data structures.
     * @param to address representing the new owner of the given token ID
     * @param tokenId uint256 ID of the token to be added to the tokens list of the given address
     */
    function _addTokenToOwnerEnumeration(address to, uint256 tokenId) private {
        uint256 length = ERC721.balanceOf(to);
        _ownedTokens[to][length] = tokenId;
        _ownedTokensIndex[tokenId] = length;
    }

    /**
     * @dev Private function to add a token to this extension's token tracking data structures.
     * @param tokenId uint256 ID of the token to be added to the tokens list
     */
    function _addTokenToAllTokensEnumeration(uint256 tokenId) private {
        _allTokensIndex[tokenId] = _allTokens.length;
        _allTokens.push(tokenId);
    }

    /**
     * @dev Private function to remove a token from this extension's ownership-tracking data structures. Note that
     * while the token is not assigned a new owner, the `_ownedTokensIndex` mapping is _not_ updated: this allows for
     * gas optimizations e.g. when performing a transfer operation (avoiding double writes).
     * This has O(1) time complexity, but alters the order of the _ownedTokens array.
     * @param from address representing the previous owner of the given token ID
     * @param tokenId uint256 ID of the token to be removed from the tokens list of the given address
     */
    function _removeTokenFromOwnerEnumeration(address from, uint256 tokenId) private {
        // To prevent a gap in from's tokens array, we store the last token in the index of the token to delete, and
        // then delete the last slot (swap and pop).

        uint256 lastTokenIndex = ERC721.balanceOf(from) - 1;
        uint256 tokenIndex = _ownedTokensIndex[tokenId];

        // When the token to delete is the last token, the swap operation is unnecessary
        if (tokenIndex != lastTokenIndex) {
            uint256 lastTokenId = _ownedTokens[from][lastTokenIndex];

            _ownedTokens[from][tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token
            _ownedTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index
        }

        // This also deletes the contents at the last position of the array
        delete _ownedTokensIndex[tokenId];
        delete _ownedTokens[from][lastTokenIndex];
    }

    /**
     * @dev Private function to remove a token from this extension's token tracking data structures.
     * This has O(1) time complexity, but alters the order of the _allTokens array.
     * @param tokenId uint256 ID of the token to be removed from the tokens list
     */
    function _removeTokenFromAllTokensEnumeration(uint256 tokenId) private {
        // To prevent a gap in the tokens array, we store the last token in the index of the token to delete, and
        // then delete the last slot (swap and pop).

        uint256 lastTokenIndex = _allTokens.length - 1;
        uint256 tokenIndex = _allTokensIndex[tokenId];

        // When the token to delete is the last token, the swap operation is unnecessary. However, since this occurs so
        // rarely (when the last minted token is burnt) that we still do the swap here to avoid the gas cost of adding
        // an 'if' statement (like in _removeTokenFromOwnerEnumeration)
        uint256 lastTokenId = _allTokens[lastTokenIndex];

        _allTokens[tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token
        _allTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index

        // This also deletes the contents at the last position of the array
        delete _allTokensIndex[tokenId];
        _allTokens.pop();
    }
}


// File @openzeppelin/contracts/access/[email protected]


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 () {
        address msgSender = _msgSender();
        _owner = msgSender;
        emit OwnershipTransferred(address(0), 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 {
        emit OwnershipTransferred(_owner, address(0));
        _owner = 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");
        emit OwnershipTransferred(_owner, newOwner);
        _owner = newOwner;
    }
}



/*

██╗░░██╗░█████╗░░█████╗░██╗░░░░░░░░░░░██╗░░██╗░█████╗░░█████╗░██╗░░░░░░█████╗░░██████╗
██║░██╔╝██╔══██╗██╔══██╗██║░░░░░░░░░░░██║░██╔╝██╔══██╗██╔══██╗██║░░░░░██╔══██╗██╔════╝
█████═╝░██║░░██║██║░░██║██║░░░░░█████╗█████═╝░██║░░██║███████║██║░░░░░███████║╚█████╗░
██╔═██╗░██║░░██║██║░░██║██║░░░░░╚════╝██╔═██╗░██║░░██║██╔══██║██║░░░░░██╔══██║░╚═══██╗
██║░╚██╗╚█████╔╝╚█████╔╝███████╗░░░░░░██║░╚██╗╚█████╔╝██║░░██║███████╗██║░░██║██████╔╝
╚═╝░░╚═╝░╚════╝░░╚════╝░╚══════╝░░░░░░╚═╝░░╚═╝░╚════╝░╚═╝░░╚═╝╚══════╝╚═╝░░╚═╝╚═════╝░
*/


pragma solidity ^0.8.0;
contract KoolKoalas is ERC721Enumerable, Ownable {
    uint public constant MAX_KOALAS = 1818;
    string _baseTokenURI;
    bool public paused = false;

    constructor(string memory baseURI) ERC721("KOOLKOALAS", "KK")  {
        setBaseURI(baseURI);
    }

    modifier saleIsOpen{
        require(totalSupply() < MAX_KOALAS, "No more eucalyptus leaves left");
        _;
    }
    
     function reserve1Koala() public onlyOwner {
        uint supply = totalSupply();
        uint i;
        for (i = 0; i < 1; i++) {
            _safeMint(msg.sender, supply + i);
        }
    }
    
    
     function reserve5Koalas() public onlyOwner {
        uint supply = totalSupply();
        uint i;
        for (i = 0; i < 5; i++) {
            _safeMint(msg.sender, supply + i);
        }
    }
    
    
    function reserve20Koalas() public onlyOwner {
        uint supply = totalSupply();
        uint i;
        for (i = 0; i < 20; i++) {
            _safeMint(msg.sender, supply + i);
        }
    }
    



    function mintKoalas(address _to, uint _count) public payable saleIsOpen {
        if(msg.sender != owner()){
            require(!paused, "Paused");
        }
        require(totalSupply() + _count <= MAX_KOALAS, "Lower your mints");
        require(totalSupply() < MAX_KOALAS, "All koalas have picked their trees");
        require(_count <= 18, "18 ain't enough for ya???");
        require(msg.value >= price(_count), "It's already 0.01 mate");

        for(uint i = 0; i < _count; i++){
            _safeMint(_to, totalSupply());
        }
    }

    function price(uint _count) public view returns (uint256) {
        uint _id = totalSupply();
        return 10000000000000000 * _count;      // 0.01 etheroos
    }

    function contractURI() public view returns (string memory) {
        return "https://gateway.pinata.cloud/ipfs/QmSvWzexnqi9Uztpqi8PNxChi5jiyqMbb9DSsAqeXeX1ME";
    }

    function _baseURI() internal view virtual override returns (string memory) {
        return _baseTokenURI;
    }
    function setBaseURI(string memory baseURI) public onlyOwner {
        _baseTokenURI = baseURI;
    }

    function walletOfOwner(address _owner) external view returns(uint256[] memory) {
        uint tokenCount = balanceOf(_owner);

        uint256[] memory tokensId = new uint256[](tokenCount);
        for(uint i = 0; i < tokenCount; i++){
            tokensId[i] = tokenOfOwnerByIndex(_owner, i);
        }

        return tokensId;
    }

    function pause(bool val) public onlyOwner {
        paused = val;
    }

    function withdrawAll() public payable onlyOwner {
        require(payable(_msgSender()).send(address(this).balance));
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"MAX_KOALAS","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"contractURI","outputs":[{"internalType":"string","name":"","type":"string"}],"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":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_count","type":"uint256"}],"name":"mintKoalas","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"val","type":"bool"}],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_count","type":"uint256"}],"name":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"reserve1Koala","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"reserve20Koalas","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"reserve5Koalas","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":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"walletOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdrawAll","outputs":[],"stateMutability":"payable","type":"function"}]

60806040526000600c60006101000a81548160ff0219169083151502179055503480156200002c57600080fd5b5060405162004ae538038062004ae58339818101604052810190620000529190620003ba565b6040518060400160405280600a81526020017f4b4f4f4c4b4f414c4153000000000000000000000000000000000000000000008152506040518060400160405280600281526020017f4b4b0000000000000000000000000000000000000000000000000000000000008152508160009080519060200190620000d692919062000298565b508060019080519060200190620000ef92919062000298565b505050600062000104620001bb60201b60201c565b905080600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a350620001b481620001c360201b60201c565b50620005f2565b600033905090565b620001d3620001bb60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620001f96200026e60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff161462000252576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620002499062000426565b60405180910390fd5b80600b90805190602001906200026a92919062000298565b5050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b828054620002a690620004ee565b90600052602060002090601f016020900481019282620002ca576000855562000316565b82601f10620002e557805160ff191683800117855562000316565b8280016001018555821562000316579182015b8281111562000315578251825591602001919060010190620002f8565b5b50905062000325919062000329565b5090565b5b80821115620003445760008160009055506001016200032a565b5090565b60006200035f620003598462000471565b62000448565b9050828152602081018484840111156200037857600080fd5b62000385848285620004b8565b509392505050565b600082601f8301126200039f57600080fd5b8151620003b184826020860162000348565b91505092915050565b600060208284031215620003cd57600080fd5b600082015167ffffffffffffffff811115620003e857600080fd5b620003f6848285016200038d565b91505092915050565b60006200040e602083620004a7565b91506200041b82620005c9565b602082019050919050565b600060208201905081810360008301526200044181620003ff565b9050919050565b60006200045462000467565b905062000462828262000524565b919050565b6000604051905090565b600067ffffffffffffffff8211156200048f576200048e62000589565b5b6200049a82620005b8565b9050602081019050919050565b600082825260208201905092915050565b60005b83811015620004d8578082015181840152602081019050620004bb565b83811115620004e8576000848401525b50505050565b600060028204905060018216806200050757607f821691505b602082108114156200051e576200051d6200055a565b5b50919050565b6200052f82620005b8565b810181811067ffffffffffffffff8211171562000551576200055062000589565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6144e380620006026000396000f3fe6080604052600436106101d85760003560e01c80635c975abb11610102578063a22cb46511610095578063e8a3d48511610064578063e8a3d4851461067a578063e985e9c5146106a5578063ea44acfd146106e2578063f2fde38b1461070d576101d8565b8063a22cb465146105cf578063b88d4fde146105f8578063b981d1df14610621578063c87b56dd1461063d576101d8565b80637e945cb8116100d15780637e945cb814610558578063853828b61461056f5780638da5cb5b1461057957806395d89b41146105a4576101d8565b80635c975abb1461049c5780636352211e146104c757806370a0823114610504578063715018a614610541576101d8565b806318160ddd1161017a57806342842e0e1161014957806342842e0e146103d0578063438b6300146103f95780634f6ccce71461043657806355f804b314610473576101d8565b806318160ddd1461030257806323b872dd1461032d57806326a49e37146103565780632f745c5914610393576101d8565b806303ad7c21116101b657806303ad7c211461025a57806306fdde0314610271578063081812fc1461029c578063095ea7b3146102d9576101d8565b806301ffc9a7146101dd57806302329a291461021a578063038be50a14610243575b600080fd5b3480156101e957600080fd5b5061020460048036038101906101ff9190613019565b610736565b604051610211919061361f565b60405180910390f35b34801561022657600080fd5b50610241600480360381019061023c9190612ff0565b6107b0565b005b34801561024f57600080fd5b50610258610849565b005b34801561026657600080fd5b5061026f610909565b005b34801561027d57600080fd5b506102866109c9565b604051610293919061363a565b60405180910390f35b3480156102a857600080fd5b506102c360048036038101906102be91906130ac565b610a5b565b6040516102d09190613596565b60405180910390f35b3480156102e557600080fd5b5061030060048036038101906102fb9190612fb4565b610ae0565b005b34801561030e57600080fd5b50610317610bf8565b604051610324919061395c565b60405180910390f35b34801561033957600080fd5b50610354600480360381019061034f9190612eae565b610c05565b005b34801561036257600080fd5b5061037d600480360381019061037891906130ac565b610c65565b60405161038a919061395c565b60405180910390f35b34801561039f57600080fd5b506103ba60048036038101906103b59190612fb4565b610c8d565b6040516103c7919061395c565b60405180910390f35b3480156103dc57600080fd5b506103f760048036038101906103f29190612eae565b610d32565b005b34801561040557600080fd5b50610420600480360381019061041b9190612e49565b610d52565b60405161042d91906135fd565b60405180910390f35b34801561044257600080fd5b5061045d600480360381019061045891906130ac565b610e4c565b60405161046a919061395c565b60405180910390f35b34801561047f57600080fd5b5061049a6004803603810190610495919061306b565b610ee3565b005b3480156104a857600080fd5b506104b1610f79565b6040516104be919061361f565b60405180910390f35b3480156104d357600080fd5b506104ee60048036038101906104e991906130ac565b610f8c565b6040516104fb9190613596565b60405180910390f35b34801561051057600080fd5b5061052b60048036038101906105269190612e49565b61103e565b604051610538919061395c565b60405180910390f35b34801561054d57600080fd5b506105566110f6565b005b34801561056457600080fd5b5061056d611233565b005b6105776112f3565b005b34801561058557600080fd5b5061058e6113b6565b60405161059b9190613596565b60405180910390f35b3480156105b057600080fd5b506105b96113e0565b6040516105c6919061363a565b60405180910390f35b3480156105db57600080fd5b506105f660048036038101906105f19190612f78565b611472565b005b34801561060457600080fd5b5061061f600480360381019061061a9190612efd565b6115f3565b005b61063b60048036038101906106369190612fb4565b611655565b005b34801561064957600080fd5b50610664600480360381019061065f91906130ac565b611890565b604051610671919061363a565b60405180910390f35b34801561068657600080fd5b5061068f611937565b60405161069c919061363a565b60405180910390f35b3480156106b157600080fd5b506106cc60048036038101906106c79190612e72565b611957565b6040516106d9919061361f565b60405180910390f35b3480156106ee57600080fd5b506106f76119eb565b604051610704919061395c565b60405180910390f35b34801561071957600080fd5b50610734600480360381019061072f9190612e49565b6119f1565b005b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806107a957506107a882611b9d565b5b9050919050565b6107b8611c7f565b73ffffffffffffffffffffffffffffffffffffffff166107d66113b6565b73ffffffffffffffffffffffffffffffffffffffff161461082c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108239061387c565b60405180910390fd5b80600c60006101000a81548160ff02191690831515021790555050565b610851611c7f565b73ffffffffffffffffffffffffffffffffffffffff1661086f6113b6565b73ffffffffffffffffffffffffffffffffffffffff16146108c5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108bc9061387c565b60405180910390fd5b60006108cf610bf8565b905060005b6005811015610905576108f23382846108ed9190613a7a565b611c87565b80806108fd90613ca8565b9150506108d4565b5050565b610911611c7f565b73ffffffffffffffffffffffffffffffffffffffff1661092f6113b6565b73ffffffffffffffffffffffffffffffffffffffff1614610985576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161097c9061387c565b60405180910390fd5b600061098f610bf8565b905060005b60018110156109c5576109b23382846109ad9190613a7a565b611c87565b80806109bd90613ca8565b915050610994565b5050565b6060600080546109d890613c45565b80601f0160208091040260200160405190810160405280929190818152602001828054610a0490613c45565b8015610a515780601f10610a2657610100808354040283529160200191610a51565b820191906000526020600020905b815481529060010190602001808311610a3457829003601f168201915b5050505050905090565b6000610a6682611ca5565b610aa5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a9c9061385c565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610aeb82610f8c565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610b5c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b53906138dc565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610b7b611c7f565b73ffffffffffffffffffffffffffffffffffffffff161480610baa5750610ba981610ba4611c7f565b611957565b5b610be9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610be0906137dc565b60405180910390fd5b610bf38383611d11565b505050565b6000600880549050905090565b610c16610c10611c7f565b82611dca565b610c55576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c4c9061391c565b60405180910390fd5b610c60838383611ea8565b505050565b600080610c70610bf8565b905082662386f26fc10000610c859190613b01565b915050919050565b6000610c988361103e565b8210610cd9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cd09061367c565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b610d4d838383604051806020016040528060008152506115f3565b505050565b60606000610d5f8361103e565b905060008167ffffffffffffffff811115610da3577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b604051908082528060200260200182016040528015610dd15781602001602082028036833780820191505090505b50905060005b82811015610e4157610de98582610c8d565b828281518110610e22577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010181815250508080610e3990613ca8565b915050610dd7565b508092505050919050565b6000610e56610bf8565b8210610e97576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e8e9061393c565b60405180910390fd5b60088281548110610ed1577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002001549050919050565b610eeb611c7f565b73ffffffffffffffffffffffffffffffffffffffff16610f096113b6565b73ffffffffffffffffffffffffffffffffffffffff1614610f5f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f569061387c565b60405180910390fd5b80600b9080519060200190610f75929190612c6d565b5050565b600c60009054906101000a900460ff1681565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611035576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161102c9061381c565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156110af576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110a6906137fc565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6110fe611c7f565b73ffffffffffffffffffffffffffffffffffffffff1661111c6113b6565b73ffffffffffffffffffffffffffffffffffffffff1614611172576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111699061387c565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36000600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b61123b611c7f565b73ffffffffffffffffffffffffffffffffffffffff166112596113b6565b73ffffffffffffffffffffffffffffffffffffffff16146112af576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112a69061387c565b60405180910390fd5b60006112b9610bf8565b905060005b60148110156112ef576112dc3382846112d79190613a7a565b611c87565b80806112e790613ca8565b9150506112be565b5050565b6112fb611c7f565b73ffffffffffffffffffffffffffffffffffffffff166113196113b6565b73ffffffffffffffffffffffffffffffffffffffff161461136f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113669061387c565b60405180910390fd5b611377611c7f565b73ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f193505050506113b457600080fd5b565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600180546113ef90613c45565b80601f016020809104026020016040519081016040528092919081815260200182805461141b90613c45565b80156114685780601f1061143d57610100808354040283529160200191611468565b820191906000526020600020905b81548152906001019060200180831161144b57829003601f168201915b5050505050905090565b61147a611c7f565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156114e8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114df9061375c565b60405180910390fd5b80600560006114f5611c7f565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166115a2611c7f565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516115e7919061361f565b60405180910390a35050565b6116046115fe611c7f565b83611dca565b611643576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161163a9061391c565b60405180910390fd5b61164f84848484612104565b50505050565b61071a611660610bf8565b106116a0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116979061371c565b60405180910390fd5b6116a86113b6565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461172b57600c60009054906101000a900460ff161561172a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117219061365c565b60405180910390fd5b5b61071a81611737610bf8565b6117419190613a7a565b1115611782576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611779906136bc565b60405180910390fd5b61071a61178d610bf8565b106117cd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117c4906138fc565b60405180910390fd5b6012811115611811576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118089061377c565b60405180910390fd5b61181a81610c65565b34101561185c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611853906137bc565b60405180910390fd5b60005b8181101561188b5761187883611873610bf8565b611c87565b808061188390613ca8565b91505061185f565b505050565b606061189b82611ca5565b6118da576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118d1906138bc565b60405180910390fd5b60006118e4612160565b90506000815111611904576040518060200160405280600081525061192f565b8061190e846121f2565b60405160200161191f929190613572565b6040516020818303038152906040525b915050919050565b606060405180608001604052806050815260200161445e60509139905090565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61071a81565b6119f9611c7f565b73ffffffffffffffffffffffffffffffffffffffff16611a176113b6565b73ffffffffffffffffffffffffffffffffffffffff1614611a6d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a649061387c565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611add576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ad4906136dc565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480611c6857507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80611c785750611c778261239f565b5b9050919050565b600033905090565b611ca1828260405180602001604052806000815250612409565b5050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16611d8483610f8c565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000611dd582611ca5565b611e14576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e0b9061379c565b60405180910390fd5b6000611e1f83610f8c565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611e8e57508373ffffffffffffffffffffffffffffffffffffffff16611e7684610a5b565b73ffffffffffffffffffffffffffffffffffffffff16145b80611e9f5750611e9e8185611957565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16611ec882610f8c565b73ffffffffffffffffffffffffffffffffffffffff1614611f1e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f159061389c565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611f8e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f859061373c565b60405180910390fd5b611f99838383612464565b611fa4600082611d11565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611ff49190613b5b565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461204b9190613a7a565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b61210f848484611ea8565b61211b84848484612578565b61215a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121519061369c565b60405180910390fd5b50505050565b6060600b805461216f90613c45565b80601f016020809104026020016040519081016040528092919081815260200182805461219b90613c45565b80156121e85780601f106121bd576101008083540402835291602001916121e8565b820191906000526020600020905b8154815290600101906020018083116121cb57829003601f168201915b5050505050905090565b6060600082141561223a576040518060400160405280600181526020017f3000000000000000000000000000000000000000000000000000000000000000815250905061239a565b600082905060005b6000821461226c57808061225590613ca8565b915050600a826122659190613ad0565b9150612242565b60008167ffffffffffffffff8111156122ae577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156122e05781602001600182028036833780820191505090505b5090505b60008514612393576001826122f99190613b5b565b9150600a856123089190613cf1565b60306123149190613a7a565b60f81b818381518110612350577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561238c9190613ad0565b94506122e4565b8093505050505b919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b612413838361270f565b6124206000848484612578565b61245f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124569061369c565b60405180910390fd5b505050565b61246f8383836128dd565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156124b2576124ad816128e2565b6124f1565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16146124f0576124ef838261292b565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156125345761252f81612a98565b612573565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614612572576125718282612bdb565b5b5b505050565b60006125998473ffffffffffffffffffffffffffffffffffffffff16612c5a565b15612702578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026125c2611c7f565b8786866040518563ffffffff1660e01b81526004016125e494939291906135b1565b602060405180830381600087803b1580156125fe57600080fd5b505af192505050801561262f57506040513d601f19601f8201168201806040525081019061262c9190613042565b60015b6126b2573d806000811461265f576040519150601f19603f3d011682016040523d82523d6000602084013e612664565b606091505b506000815114156126aa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126a19061369c565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612707565b600190505b949350505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561277f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127769061383c565b60405180910390fd5b61278881611ca5565b156127c8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127bf906136fc565b60405180910390fd5b6127d460008383612464565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546128249190613a7a565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b600060016129388461103e565b6129429190613b5b565b9050600060076000848152602001908152602001600020549050818114612a27576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b60006001600880549050612aac9190613b5b565b9050600060096000848152602001908152602001600020549050600060088381548110612b02577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b906000526020600020015490508060088381548110612b4a577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b906000526020600020018190555081600960008381526020019081526020016000208190555060096000858152602001908152602001600020600090556008805480612bbf577f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b6000612be68361103e565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b600080823b905060008111915050919050565b828054612c7990613c45565b90600052602060002090601f016020900481019282612c9b5760008555612ce2565b82601f10612cb457805160ff1916838001178555612ce2565b82800160010185558215612ce2579182015b82811115612ce1578251825591602001919060010190612cc6565b5b509050612cef9190612cf3565b5090565b5b80821115612d0c576000816000905550600101612cf4565b5090565b6000612d23612d1e8461399c565b613977565b905082815260208101848484011115612d3b57600080fd5b612d46848285613c03565b509392505050565b6000612d61612d5c846139cd565b613977565b905082815260208101848484011115612d7957600080fd5b612d84848285613c03565b509392505050565b600081359050612d9b81614401565b92915050565b600081359050612db081614418565b92915050565b600081359050612dc58161442f565b92915050565b600081519050612dda8161442f565b92915050565b600082601f830112612df157600080fd5b8135612e01848260208601612d10565b91505092915050565b600082601f830112612e1b57600080fd5b8135612e2b848260208601612d4e565b91505092915050565b600081359050612e4381614446565b92915050565b600060208284031215612e5b57600080fd5b6000612e6984828501612d8c565b91505092915050565b60008060408385031215612e8557600080fd5b6000612e9385828601612d8c565b9250506020612ea485828601612d8c565b9150509250929050565b600080600060608486031215612ec357600080fd5b6000612ed186828701612d8c565b9350506020612ee286828701612d8c565b9250506040612ef386828701612e34565b9150509250925092565b60008060008060808587031215612f1357600080fd5b6000612f2187828801612d8c565b9450506020612f3287828801612d8c565b9350506040612f4387828801612e34565b925050606085013567ffffffffffffffff811115612f6057600080fd5b612f6c87828801612de0565b91505092959194509250565b60008060408385031215612f8b57600080fd5b6000612f9985828601612d8c565b9250506020612faa85828601612da1565b9150509250929050565b60008060408385031215612fc757600080fd5b6000612fd585828601612d8c565b9250506020612fe685828601612e34565b9150509250929050565b60006020828403121561300257600080fd5b600061301084828501612da1565b91505092915050565b60006020828403121561302b57600080fd5b600061303984828501612db6565b91505092915050565b60006020828403121561305457600080fd5b600061306284828501612dcb565b91505092915050565b60006020828403121561307d57600080fd5b600082013567ffffffffffffffff81111561309757600080fd5b6130a384828501612e0a565b91505092915050565b6000602082840312156130be57600080fd5b60006130cc84828501612e34565b91505092915050565b60006130e18383613554565b60208301905092915050565b6130f681613b8f565b82525050565b600061310782613a0e565b6131118185613a3c565b935061311c836139fe565b8060005b8381101561314d57815161313488826130d5565b975061313f83613a2f565b925050600181019050613120565b5085935050505092915050565b61316381613ba1565b82525050565b600061317482613a19565b61317e8185613a4d565b935061318e818560208601613c12565b61319781613dde565b840191505092915050565b60006131ad82613a24565b6131b78185613a5e565b93506131c7818560208601613c12565b6131d081613dde565b840191505092915050565b60006131e682613a24565b6131f08185613a6f565b9350613200818560208601613c12565b80840191505092915050565b6000613219600683613a5e565b915061322482613def565b602082019050919050565b600061323c602b83613a5e565b915061324782613e18565b604082019050919050565b600061325f603283613a5e565b915061326a82613e67565b604082019050919050565b6000613282601083613a5e565b915061328d82613eb6565b602082019050919050565b60006132a5602683613a5e565b91506132b082613edf565b604082019050919050565b60006132c8601c83613a5e565b91506132d382613f2e565b602082019050919050565b60006132eb601e83613a5e565b91506132f682613f57565b602082019050919050565b600061330e602483613a5e565b915061331982613f80565b604082019050919050565b6000613331601983613a5e565b915061333c82613fcf565b602082019050919050565b6000613354601983613a5e565b915061335f82613ff8565b602082019050919050565b6000613377602c83613a5e565b915061338282614021565b604082019050919050565b600061339a601683613a5e565b91506133a582614070565b602082019050919050565b60006133bd603883613a5e565b91506133c882614099565b604082019050919050565b60006133e0602a83613a5e565b91506133eb826140e8565b604082019050919050565b6000613403602983613a5e565b915061340e82614137565b604082019050919050565b6000613426602083613a5e565b915061343182614186565b602082019050919050565b6000613449602c83613a5e565b9150613454826141af565b604082019050919050565b600061346c602083613a5e565b9150613477826141fe565b602082019050919050565b600061348f602983613a5e565b915061349a82614227565b604082019050919050565b60006134b2602f83613a5e565b91506134bd82614276565b604082019050919050565b60006134d5602183613a5e565b91506134e0826142c5565b604082019050919050565b60006134f8602283613a5e565b915061350382614314565b604082019050919050565b600061351b603183613a5e565b915061352682614363565b604082019050919050565b600061353e602c83613a5e565b9150613549826143b2565b604082019050919050565b61355d81613bf9565b82525050565b61356c81613bf9565b82525050565b600061357e82856131db565b915061358a82846131db565b91508190509392505050565b60006020820190506135ab60008301846130ed565b92915050565b60006080820190506135c660008301876130ed565b6135d360208301866130ed565b6135e06040830185613563565b81810360608301526135f28184613169565b905095945050505050565b6000602082019050818103600083015261361781846130fc565b905092915050565b6000602082019050613634600083018461315a565b92915050565b6000602082019050818103600083015261365481846131a2565b905092915050565b600060208201905081810360008301526136758161320c565b9050919050565b600060208201905081810360008301526136958161322f565b9050919050565b600060208201905081810360008301526136b581613252565b9050919050565b600060208201905081810360008301526136d581613275565b9050919050565b600060208201905081810360008301526136f581613298565b9050919050565b60006020820190508181036000830152613715816132bb565b9050919050565b60006020820190508181036000830152613735816132de565b9050919050565b6000602082019050818103600083015261375581613301565b9050919050565b6000602082019050818103600083015261377581613324565b9050919050565b6000602082019050818103600083015261379581613347565b9050919050565b600060208201905081810360008301526137b58161336a565b9050919050565b600060208201905081810360008301526137d58161338d565b9050919050565b600060208201905081810360008301526137f5816133b0565b9050919050565b60006020820190508181036000830152613815816133d3565b9050919050565b60006020820190508181036000830152613835816133f6565b9050919050565b6000602082019050818103600083015261385581613419565b9050919050565b600060208201905081810360008301526138758161343c565b9050919050565b600060208201905081810360008301526138958161345f565b9050919050565b600060208201905081810360008301526138b581613482565b9050919050565b600060208201905081810360008301526138d5816134a5565b9050919050565b600060208201905081810360008301526138f5816134c8565b9050919050565b60006020820190508181036000830152613915816134eb565b9050919050565b600060208201905081810360008301526139358161350e565b9050919050565b6000602082019050818103600083015261395581613531565b9050919050565b60006020820190506139716000830184613563565b92915050565b6000613981613992565b905061398d8282613c77565b919050565b6000604051905090565b600067ffffffffffffffff8211156139b7576139b6613daf565b5b6139c082613dde565b9050602081019050919050565b600067ffffffffffffffff8211156139e8576139e7613daf565b5b6139f182613dde565b9050602081019050919050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000613a8582613bf9565b9150613a9083613bf9565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613ac557613ac4613d22565b5b828201905092915050565b6000613adb82613bf9565b9150613ae683613bf9565b925082613af657613af5613d51565b5b828204905092915050565b6000613b0c82613bf9565b9150613b1783613bf9565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613b5057613b4f613d22565b5b828202905092915050565b6000613b6682613bf9565b9150613b7183613bf9565b925082821015613b8457613b83613d22565b5b828203905092915050565b6000613b9a82613bd9565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015613c30578082015181840152602081019050613c15565b83811115613c3f576000848401525b50505050565b60006002820490506001821680613c5d57607f821691505b60208210811415613c7157613c70613d80565b5b50919050565b613c8082613dde565b810181811067ffffffffffffffff82111715613c9f57613c9e613daf565b5b80604052505050565b6000613cb382613bf9565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613ce657613ce5613d22565b5b600182019050919050565b6000613cfc82613bf9565b9150613d0783613bf9565b925082613d1757613d16613d51565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b7f5061757365640000000000000000000000000000000000000000000000000000600082015250565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4c6f77657220796f7572206d696e747300000000000000000000000000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4e6f206d6f726520657563616c7970747573206c6561766573206c6566740000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f31382061696e277420656e6f75676820666f722079613f3f3f00000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4974277320616c726561647920302e3031206d61746500000000000000000000600082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f416c6c206b6f616c61732068617665207069636b65642074686569722074726560008201527f6573000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b61440a81613b8f565b811461441557600080fd5b50565b61442181613ba1565b811461442c57600080fd5b50565b61443881613bad565b811461444357600080fd5b50565b61444f81613bf9565b811461445a57600080fd5b5056fe68747470733a2f2f676174657761792e70696e6174612e636c6f75642f697066732f516d5376577a65786e716939557a7470716938504e78436869356a6979714d626239445373417165586558314d45a2646970667358221220a363c2fc27be131758a58f94b2708b38ea1e93b364862641528237cb43289cce64736f6c634300080400330000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000002468747470733a2f2f6b6f6f6c6b6f616c61732e776f726c642f6a736f6e2f6b6f616c617300000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106101d85760003560e01c80635c975abb11610102578063a22cb46511610095578063e8a3d48511610064578063e8a3d4851461067a578063e985e9c5146106a5578063ea44acfd146106e2578063f2fde38b1461070d576101d8565b8063a22cb465146105cf578063b88d4fde146105f8578063b981d1df14610621578063c87b56dd1461063d576101d8565b80637e945cb8116100d15780637e945cb814610558578063853828b61461056f5780638da5cb5b1461057957806395d89b41146105a4576101d8565b80635c975abb1461049c5780636352211e146104c757806370a0823114610504578063715018a614610541576101d8565b806318160ddd1161017a57806342842e0e1161014957806342842e0e146103d0578063438b6300146103f95780634f6ccce71461043657806355f804b314610473576101d8565b806318160ddd1461030257806323b872dd1461032d57806326a49e37146103565780632f745c5914610393576101d8565b806303ad7c21116101b657806303ad7c211461025a57806306fdde0314610271578063081812fc1461029c578063095ea7b3146102d9576101d8565b806301ffc9a7146101dd57806302329a291461021a578063038be50a14610243575b600080fd5b3480156101e957600080fd5b5061020460048036038101906101ff9190613019565b610736565b604051610211919061361f565b60405180910390f35b34801561022657600080fd5b50610241600480360381019061023c9190612ff0565b6107b0565b005b34801561024f57600080fd5b50610258610849565b005b34801561026657600080fd5b5061026f610909565b005b34801561027d57600080fd5b506102866109c9565b604051610293919061363a565b60405180910390f35b3480156102a857600080fd5b506102c360048036038101906102be91906130ac565b610a5b565b6040516102d09190613596565b60405180910390f35b3480156102e557600080fd5b5061030060048036038101906102fb9190612fb4565b610ae0565b005b34801561030e57600080fd5b50610317610bf8565b604051610324919061395c565b60405180910390f35b34801561033957600080fd5b50610354600480360381019061034f9190612eae565b610c05565b005b34801561036257600080fd5b5061037d600480360381019061037891906130ac565b610c65565b60405161038a919061395c565b60405180910390f35b34801561039f57600080fd5b506103ba60048036038101906103b59190612fb4565b610c8d565b6040516103c7919061395c565b60405180910390f35b3480156103dc57600080fd5b506103f760048036038101906103f29190612eae565b610d32565b005b34801561040557600080fd5b50610420600480360381019061041b9190612e49565b610d52565b60405161042d91906135fd565b60405180910390f35b34801561044257600080fd5b5061045d600480360381019061045891906130ac565b610e4c565b60405161046a919061395c565b60405180910390f35b34801561047f57600080fd5b5061049a6004803603810190610495919061306b565b610ee3565b005b3480156104a857600080fd5b506104b1610f79565b6040516104be919061361f565b60405180910390f35b3480156104d357600080fd5b506104ee60048036038101906104e991906130ac565b610f8c565b6040516104fb9190613596565b60405180910390f35b34801561051057600080fd5b5061052b60048036038101906105269190612e49565b61103e565b604051610538919061395c565b60405180910390f35b34801561054d57600080fd5b506105566110f6565b005b34801561056457600080fd5b5061056d611233565b005b6105776112f3565b005b34801561058557600080fd5b5061058e6113b6565b60405161059b9190613596565b60405180910390f35b3480156105b057600080fd5b506105b96113e0565b6040516105c6919061363a565b60405180910390f35b3480156105db57600080fd5b506105f660048036038101906105f19190612f78565b611472565b005b34801561060457600080fd5b5061061f600480360381019061061a9190612efd565b6115f3565b005b61063b60048036038101906106369190612fb4565b611655565b005b34801561064957600080fd5b50610664600480360381019061065f91906130ac565b611890565b604051610671919061363a565b60405180910390f35b34801561068657600080fd5b5061068f611937565b60405161069c919061363a565b60405180910390f35b3480156106b157600080fd5b506106cc60048036038101906106c79190612e72565b611957565b6040516106d9919061361f565b60405180910390f35b3480156106ee57600080fd5b506106f76119eb565b604051610704919061395c565b60405180910390f35b34801561071957600080fd5b50610734600480360381019061072f9190612e49565b6119f1565b005b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806107a957506107a882611b9d565b5b9050919050565b6107b8611c7f565b73ffffffffffffffffffffffffffffffffffffffff166107d66113b6565b73ffffffffffffffffffffffffffffffffffffffff161461082c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108239061387c565b60405180910390fd5b80600c60006101000a81548160ff02191690831515021790555050565b610851611c7f565b73ffffffffffffffffffffffffffffffffffffffff1661086f6113b6565b73ffffffffffffffffffffffffffffffffffffffff16146108c5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108bc9061387c565b60405180910390fd5b60006108cf610bf8565b905060005b6005811015610905576108f23382846108ed9190613a7a565b611c87565b80806108fd90613ca8565b9150506108d4565b5050565b610911611c7f565b73ffffffffffffffffffffffffffffffffffffffff1661092f6113b6565b73ffffffffffffffffffffffffffffffffffffffff1614610985576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161097c9061387c565b60405180910390fd5b600061098f610bf8565b905060005b60018110156109c5576109b23382846109ad9190613a7a565b611c87565b80806109bd90613ca8565b915050610994565b5050565b6060600080546109d890613c45565b80601f0160208091040260200160405190810160405280929190818152602001828054610a0490613c45565b8015610a515780601f10610a2657610100808354040283529160200191610a51565b820191906000526020600020905b815481529060010190602001808311610a3457829003601f168201915b5050505050905090565b6000610a6682611ca5565b610aa5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a9c9061385c565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610aeb82610f8c565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610b5c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b53906138dc565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610b7b611c7f565b73ffffffffffffffffffffffffffffffffffffffff161480610baa5750610ba981610ba4611c7f565b611957565b5b610be9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610be0906137dc565b60405180910390fd5b610bf38383611d11565b505050565b6000600880549050905090565b610c16610c10611c7f565b82611dca565b610c55576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c4c9061391c565b60405180910390fd5b610c60838383611ea8565b505050565b600080610c70610bf8565b905082662386f26fc10000610c859190613b01565b915050919050565b6000610c988361103e565b8210610cd9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cd09061367c565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b610d4d838383604051806020016040528060008152506115f3565b505050565b60606000610d5f8361103e565b905060008167ffffffffffffffff811115610da3577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b604051908082528060200260200182016040528015610dd15781602001602082028036833780820191505090505b50905060005b82811015610e4157610de98582610c8d565b828281518110610e22577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010181815250508080610e3990613ca8565b915050610dd7565b508092505050919050565b6000610e56610bf8565b8210610e97576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e8e9061393c565b60405180910390fd5b60088281548110610ed1577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002001549050919050565b610eeb611c7f565b73ffffffffffffffffffffffffffffffffffffffff16610f096113b6565b73ffffffffffffffffffffffffffffffffffffffff1614610f5f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f569061387c565b60405180910390fd5b80600b9080519060200190610f75929190612c6d565b5050565b600c60009054906101000a900460ff1681565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611035576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161102c9061381c565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156110af576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110a6906137fc565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6110fe611c7f565b73ffffffffffffffffffffffffffffffffffffffff1661111c6113b6565b73ffffffffffffffffffffffffffffffffffffffff1614611172576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111699061387c565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36000600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b61123b611c7f565b73ffffffffffffffffffffffffffffffffffffffff166112596113b6565b73ffffffffffffffffffffffffffffffffffffffff16146112af576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112a69061387c565b60405180910390fd5b60006112b9610bf8565b905060005b60148110156112ef576112dc3382846112d79190613a7a565b611c87565b80806112e790613ca8565b9150506112be565b5050565b6112fb611c7f565b73ffffffffffffffffffffffffffffffffffffffff166113196113b6565b73ffffffffffffffffffffffffffffffffffffffff161461136f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113669061387c565b60405180910390fd5b611377611c7f565b73ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f193505050506113b457600080fd5b565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600180546113ef90613c45565b80601f016020809104026020016040519081016040528092919081815260200182805461141b90613c45565b80156114685780601f1061143d57610100808354040283529160200191611468565b820191906000526020600020905b81548152906001019060200180831161144b57829003601f168201915b5050505050905090565b61147a611c7f565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156114e8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114df9061375c565b60405180910390fd5b80600560006114f5611c7f565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166115a2611c7f565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516115e7919061361f565b60405180910390a35050565b6116046115fe611c7f565b83611dca565b611643576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161163a9061391c565b60405180910390fd5b61164f84848484612104565b50505050565b61071a611660610bf8565b106116a0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116979061371c565b60405180910390fd5b6116a86113b6565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461172b57600c60009054906101000a900460ff161561172a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117219061365c565b60405180910390fd5b5b61071a81611737610bf8565b6117419190613a7a565b1115611782576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611779906136bc565b60405180910390fd5b61071a61178d610bf8565b106117cd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117c4906138fc565b60405180910390fd5b6012811115611811576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118089061377c565b60405180910390fd5b61181a81610c65565b34101561185c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611853906137bc565b60405180910390fd5b60005b8181101561188b5761187883611873610bf8565b611c87565b808061188390613ca8565b91505061185f565b505050565b606061189b82611ca5565b6118da576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118d1906138bc565b60405180910390fd5b60006118e4612160565b90506000815111611904576040518060200160405280600081525061192f565b8061190e846121f2565b60405160200161191f929190613572565b6040516020818303038152906040525b915050919050565b606060405180608001604052806050815260200161445e60509139905090565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61071a81565b6119f9611c7f565b73ffffffffffffffffffffffffffffffffffffffff16611a176113b6565b73ffffffffffffffffffffffffffffffffffffffff1614611a6d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a649061387c565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611add576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ad4906136dc565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480611c6857507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80611c785750611c778261239f565b5b9050919050565b600033905090565b611ca1828260405180602001604052806000815250612409565b5050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16611d8483610f8c565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000611dd582611ca5565b611e14576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e0b9061379c565b60405180910390fd5b6000611e1f83610f8c565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611e8e57508373ffffffffffffffffffffffffffffffffffffffff16611e7684610a5b565b73ffffffffffffffffffffffffffffffffffffffff16145b80611e9f5750611e9e8185611957565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16611ec882610f8c565b73ffffffffffffffffffffffffffffffffffffffff1614611f1e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f159061389c565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611f8e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f859061373c565b60405180910390fd5b611f99838383612464565b611fa4600082611d11565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611ff49190613b5b565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461204b9190613a7a565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b61210f848484611ea8565b61211b84848484612578565b61215a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121519061369c565b60405180910390fd5b50505050565b6060600b805461216f90613c45565b80601f016020809104026020016040519081016040528092919081815260200182805461219b90613c45565b80156121e85780601f106121bd576101008083540402835291602001916121e8565b820191906000526020600020905b8154815290600101906020018083116121cb57829003601f168201915b5050505050905090565b6060600082141561223a576040518060400160405280600181526020017f3000000000000000000000000000000000000000000000000000000000000000815250905061239a565b600082905060005b6000821461226c57808061225590613ca8565b915050600a826122659190613ad0565b9150612242565b60008167ffffffffffffffff8111156122ae577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156122e05781602001600182028036833780820191505090505b5090505b60008514612393576001826122f99190613b5b565b9150600a856123089190613cf1565b60306123149190613a7a565b60f81b818381518110612350577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561238c9190613ad0565b94506122e4565b8093505050505b919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b612413838361270f565b6124206000848484612578565b61245f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124569061369c565b60405180910390fd5b505050565b61246f8383836128dd565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156124b2576124ad816128e2565b6124f1565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16146124f0576124ef838261292b565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156125345761252f81612a98565b612573565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614612572576125718282612bdb565b5b5b505050565b60006125998473ffffffffffffffffffffffffffffffffffffffff16612c5a565b15612702578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026125c2611c7f565b8786866040518563ffffffff1660e01b81526004016125e494939291906135b1565b602060405180830381600087803b1580156125fe57600080fd5b505af192505050801561262f57506040513d601f19601f8201168201806040525081019061262c9190613042565b60015b6126b2573d806000811461265f576040519150601f19603f3d011682016040523d82523d6000602084013e612664565b606091505b506000815114156126aa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126a19061369c565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612707565b600190505b949350505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561277f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127769061383c565b60405180910390fd5b61278881611ca5565b156127c8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127bf906136fc565b60405180910390fd5b6127d460008383612464565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546128249190613a7a565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b600060016129388461103e565b6129429190613b5b565b9050600060076000848152602001908152602001600020549050818114612a27576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b60006001600880549050612aac9190613b5b565b9050600060096000848152602001908152602001600020549050600060088381548110612b02577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b906000526020600020015490508060088381548110612b4a577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b906000526020600020018190555081600960008381526020019081526020016000208190555060096000858152602001908152602001600020600090556008805480612bbf577f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b6000612be68361103e565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b600080823b905060008111915050919050565b828054612c7990613c45565b90600052602060002090601f016020900481019282612c9b5760008555612ce2565b82601f10612cb457805160ff1916838001178555612ce2565b82800160010185558215612ce2579182015b82811115612ce1578251825591602001919060010190612cc6565b5b509050612cef9190612cf3565b5090565b5b80821115612d0c576000816000905550600101612cf4565b5090565b6000612d23612d1e8461399c565b613977565b905082815260208101848484011115612d3b57600080fd5b612d46848285613c03565b509392505050565b6000612d61612d5c846139cd565b613977565b905082815260208101848484011115612d7957600080fd5b612d84848285613c03565b509392505050565b600081359050612d9b81614401565b92915050565b600081359050612db081614418565b92915050565b600081359050612dc58161442f565b92915050565b600081519050612dda8161442f565b92915050565b600082601f830112612df157600080fd5b8135612e01848260208601612d10565b91505092915050565b600082601f830112612e1b57600080fd5b8135612e2b848260208601612d4e565b91505092915050565b600081359050612e4381614446565b92915050565b600060208284031215612e5b57600080fd5b6000612e6984828501612d8c565b91505092915050565b60008060408385031215612e8557600080fd5b6000612e9385828601612d8c565b9250506020612ea485828601612d8c565b9150509250929050565b600080600060608486031215612ec357600080fd5b6000612ed186828701612d8c565b9350506020612ee286828701612d8c565b9250506040612ef386828701612e34565b9150509250925092565b60008060008060808587031215612f1357600080fd5b6000612f2187828801612d8c565b9450506020612f3287828801612d8c565b9350506040612f4387828801612e34565b925050606085013567ffffffffffffffff811115612f6057600080fd5b612f6c87828801612de0565b91505092959194509250565b60008060408385031215612f8b57600080fd5b6000612f9985828601612d8c565b9250506020612faa85828601612da1565b9150509250929050565b60008060408385031215612fc757600080fd5b6000612fd585828601612d8c565b9250506020612fe685828601612e34565b9150509250929050565b60006020828403121561300257600080fd5b600061301084828501612da1565b91505092915050565b60006020828403121561302b57600080fd5b600061303984828501612db6565b91505092915050565b60006020828403121561305457600080fd5b600061306284828501612dcb565b91505092915050565b60006020828403121561307d57600080fd5b600082013567ffffffffffffffff81111561309757600080fd5b6130a384828501612e0a565b91505092915050565b6000602082840312156130be57600080fd5b60006130cc84828501612e34565b91505092915050565b60006130e18383613554565b60208301905092915050565b6130f681613b8f565b82525050565b600061310782613a0e565b6131118185613a3c565b935061311c836139fe565b8060005b8381101561314d57815161313488826130d5565b975061313f83613a2f565b925050600181019050613120565b5085935050505092915050565b61316381613ba1565b82525050565b600061317482613a19565b61317e8185613a4d565b935061318e818560208601613c12565b61319781613dde565b840191505092915050565b60006131ad82613a24565b6131b78185613a5e565b93506131c7818560208601613c12565b6131d081613dde565b840191505092915050565b60006131e682613a24565b6131f08185613a6f565b9350613200818560208601613c12565b80840191505092915050565b6000613219600683613a5e565b915061322482613def565b602082019050919050565b600061323c602b83613a5e565b915061324782613e18565b604082019050919050565b600061325f603283613a5e565b915061326a82613e67565b604082019050919050565b6000613282601083613a5e565b915061328d82613eb6565b602082019050919050565b60006132a5602683613a5e565b91506132b082613edf565b604082019050919050565b60006132c8601c83613a5e565b91506132d382613f2e565b602082019050919050565b60006132eb601e83613a5e565b91506132f682613f57565b602082019050919050565b600061330e602483613a5e565b915061331982613f80565b604082019050919050565b6000613331601983613a5e565b915061333c82613fcf565b602082019050919050565b6000613354601983613a5e565b915061335f82613ff8565b602082019050919050565b6000613377602c83613a5e565b915061338282614021565b604082019050919050565b600061339a601683613a5e565b91506133a582614070565b602082019050919050565b60006133bd603883613a5e565b91506133c882614099565b604082019050919050565b60006133e0602a83613a5e565b91506133eb826140e8565b604082019050919050565b6000613403602983613a5e565b915061340e82614137565b604082019050919050565b6000613426602083613a5e565b915061343182614186565b602082019050919050565b6000613449602c83613a5e565b9150613454826141af565b604082019050919050565b600061346c602083613a5e565b9150613477826141fe565b602082019050919050565b600061348f602983613a5e565b915061349a82614227565b604082019050919050565b60006134b2602f83613a5e565b91506134bd82614276565b604082019050919050565b60006134d5602183613a5e565b91506134e0826142c5565b604082019050919050565b60006134f8602283613a5e565b915061350382614314565b604082019050919050565b600061351b603183613a5e565b915061352682614363565b604082019050919050565b600061353e602c83613a5e565b9150613549826143b2565b604082019050919050565b61355d81613bf9565b82525050565b61356c81613bf9565b82525050565b600061357e82856131db565b915061358a82846131db565b91508190509392505050565b60006020820190506135ab60008301846130ed565b92915050565b60006080820190506135c660008301876130ed565b6135d360208301866130ed565b6135e06040830185613563565b81810360608301526135f28184613169565b905095945050505050565b6000602082019050818103600083015261361781846130fc565b905092915050565b6000602082019050613634600083018461315a565b92915050565b6000602082019050818103600083015261365481846131a2565b905092915050565b600060208201905081810360008301526136758161320c565b9050919050565b600060208201905081810360008301526136958161322f565b9050919050565b600060208201905081810360008301526136b581613252565b9050919050565b600060208201905081810360008301526136d581613275565b9050919050565b600060208201905081810360008301526136f581613298565b9050919050565b60006020820190508181036000830152613715816132bb565b9050919050565b60006020820190508181036000830152613735816132de565b9050919050565b6000602082019050818103600083015261375581613301565b9050919050565b6000602082019050818103600083015261377581613324565b9050919050565b6000602082019050818103600083015261379581613347565b9050919050565b600060208201905081810360008301526137b58161336a565b9050919050565b600060208201905081810360008301526137d58161338d565b9050919050565b600060208201905081810360008301526137f5816133b0565b9050919050565b60006020820190508181036000830152613815816133d3565b9050919050565b60006020820190508181036000830152613835816133f6565b9050919050565b6000602082019050818103600083015261385581613419565b9050919050565b600060208201905081810360008301526138758161343c565b9050919050565b600060208201905081810360008301526138958161345f565b9050919050565b600060208201905081810360008301526138b581613482565b9050919050565b600060208201905081810360008301526138d5816134a5565b9050919050565b600060208201905081810360008301526138f5816134c8565b9050919050565b60006020820190508181036000830152613915816134eb565b9050919050565b600060208201905081810360008301526139358161350e565b9050919050565b6000602082019050818103600083015261395581613531565b9050919050565b60006020820190506139716000830184613563565b92915050565b6000613981613992565b905061398d8282613c77565b919050565b6000604051905090565b600067ffffffffffffffff8211156139b7576139b6613daf565b5b6139c082613dde565b9050602081019050919050565b600067ffffffffffffffff8211156139e8576139e7613daf565b5b6139f182613dde565b9050602081019050919050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000613a8582613bf9565b9150613a9083613bf9565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613ac557613ac4613d22565b5b828201905092915050565b6000613adb82613bf9565b9150613ae683613bf9565b925082613af657613af5613d51565b5b828204905092915050565b6000613b0c82613bf9565b9150613b1783613bf9565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613b5057613b4f613d22565b5b828202905092915050565b6000613b6682613bf9565b9150613b7183613bf9565b925082821015613b8457613b83613d22565b5b828203905092915050565b6000613b9a82613bd9565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015613c30578082015181840152602081019050613c15565b83811115613c3f576000848401525b50505050565b60006002820490506001821680613c5d57607f821691505b60208210811415613c7157613c70613d80565b5b50919050565b613c8082613dde565b810181811067ffffffffffffffff82111715613c9f57613c9e613daf565b5b80604052505050565b6000613cb382613bf9565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613ce657613ce5613d22565b5b600182019050919050565b6000613cfc82613bf9565b9150613d0783613bf9565b925082613d1757613d16613d51565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b7f5061757365640000000000000000000000000000000000000000000000000000600082015250565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4c6f77657220796f7572206d696e747300000000000000000000000000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4e6f206d6f726520657563616c7970747573206c6561766573206c6566740000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f31382061696e277420656e6f75676820666f722079613f3f3f00000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4974277320616c726561647920302e3031206d61746500000000000000000000600082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f416c6c206b6f616c61732068617665207069636b65642074686569722074726560008201527f6573000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b61440a81613b8f565b811461441557600080fd5b50565b61442181613ba1565b811461442c57600080fd5b50565b61443881613bad565b811461444357600080fd5b50565b61444f81613bf9565b811461445a57600080fd5b5056fe68747470733a2f2f676174657761792e70696e6174612e636c6f75642f697066732f516d5376577a65786e716939557a7470716938504e78436869356a6979714d626239445373417165586558314d45a2646970667358221220a363c2fc27be131758a58f94b2708b38ea1e93b364862641528237cb43289cce64736f6c63430008040033

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

0000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000002468747470733a2f2f6b6f6f6c6b6f616c61732e776f726c642f6a736f6e2f6b6f616c617300000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : baseURI (string): https://koolkoalas.world/json/koalas

-----Encoded View---------------
4 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000020
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000024
Arg [2] : 68747470733a2f2f6b6f6f6c6b6f616c61732e776f726c642f6a736f6e2f6b6f
Arg [3] : 616c617300000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

44507:2770:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34472:237;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47068:73;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;45129:200;;;;;;;;;;;;;:::i;:::-;;44911:199;;;;;;;;;;;;;:::i;:::-;;21669:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23129:221;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22666:397;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;35125:113;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24019:305;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;46136:167;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34793:256;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24395:151;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;46716:344;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35315:233;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46606:102;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;44635:26;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21363:239;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21093:208;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42350:148;;;;;;;;;;;;;:::i;:::-;;45347:202;;;;;;;;;;;;;:::i;:::-;;47149:125;;;:::i;:::-;;41699:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21838:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23422:295;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;24617:285;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;45567:561;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;22013:360;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46311:167;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23788:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44563:38;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42653:244;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;34472:237;34574:4;34613:35;34598:50;;;:11;:50;;;;:103;;;;34665:36;34689:11;34665:23;:36::i;:::-;34598:103;34591:110;;34472:237;;;:::o;47068:73::-;41930:12;:10;:12::i;:::-;41919:23;;:7;:5;:7::i;:::-;:23;;;41911:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;47130:3:::1;47121:6;;:12;;;;;;;;;;;;;;;;;;47068:73:::0;:::o;45129:200::-;41930:12;:10;:12::i;:::-;41919:23;;:7;:5;:7::i;:::-;:23;;;41911:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;45183:11:::1;45197:13;:11;:13::i;:::-;45183:27;;45221:6;45238:84;45254:1;45250;:5;45238:84;;;45277:33;45287:10;45308:1;45299:6;:10;;;;:::i;:::-;45277:9;:33::i;:::-;45257:3;;;;;:::i;:::-;;;;45238:84;;;41990:1;;45129:200::o:0;44911:199::-;41930:12;:10;:12::i;:::-;41919:23;;:7;:5;:7::i;:::-;:23;;;41911:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;44964:11:::1;44978:13;:11;:13::i;:::-;44964:27;;45002:6;45019:84;45035:1;45031;:5;45019:84;;;45058:33;45068:10;45089:1;45080:6;:10;;;;:::i;:::-;45058:9;:33::i;:::-;45038:3;;;;;:::i;:::-;;;;45019:84;;;41990:1;;44911:199::o:0;21669:100::-;21723:13;21756:5;21749:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21669:100;:::o;23129:221::-;23205:7;23233:16;23241:7;23233;:16::i;:::-;23225:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;23318:15;:24;23334:7;23318:24;;;;;;;;;;;;;;;;;;;;;23311:31;;23129:221;;;:::o;22666:397::-;22747:13;22763:23;22778:7;22763:14;:23::i;:::-;22747:39;;22811:5;22805:11;;:2;:11;;;;22797:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;22891:5;22875:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;22900:37;22917:5;22924:12;:10;:12::i;:::-;22900:16;:37::i;:::-;22875:62;22867:154;;;;;;;;;;;;:::i;:::-;;;;;;;;;23034:21;23043:2;23047:7;23034:8;:21::i;:::-;22666:397;;;:::o;35125:113::-;35186:7;35213:10;:17;;;;35206:24;;35125:113;:::o;24019:305::-;24180:41;24199:12;:10;:12::i;:::-;24213:7;24180:18;:41::i;:::-;24172:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;24288:28;24298:4;24304:2;24308:7;24288:9;:28::i;:::-;24019:305;;;:::o;46136:167::-;46185:7;46205:8;46216:13;:11;:13::i;:::-;46205:24;;46267:6;46247:17;:26;;;;:::i;:::-;46240:33;;;46136:167;;;:::o;34793:256::-;34890:7;34926:23;34943:5;34926:16;:23::i;:::-;34918:5;:31;34910:87;;;;;;;;;;;;:::i;:::-;;;;;;;;;35015:12;:19;35028:5;35015:19;;;;;;;;;;;;;;;:26;35035:5;35015:26;;;;;;;;;;;;35008:33;;34793:256;;;;:::o;24395:151::-;24499:39;24516:4;24522:2;24526:7;24499:39;;;;;;;;;;;;:16;:39::i;:::-;24395:151;;;:::o;46716:344::-;46777:16;46806:15;46824:17;46834:6;46824:9;:17::i;:::-;46806:35;;46854:25;46896:10;46882:25;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46854:53;;46922:6;46918:107;46938:10;46934:1;:14;46918:107;;;46983:30;47003:6;47011:1;46983:19;:30::i;:::-;46969:8;46978:1;46969:11;;;;;;;;;;;;;;;;;;;;;:44;;;;;46950:3;;;;;:::i;:::-;;;;46918:107;;;;47044:8;47037:15;;;;46716:344;;;:::o;35315:233::-;35390:7;35426:30;:28;:30::i;:::-;35418:5;:38;35410:95;;;;;;;;;;;;:::i;:::-;;;;;;;;;35523:10;35534:5;35523:17;;;;;;;;;;;;;;;;;;;;;;;;35516:24;;35315:233;;;:::o;46606:102::-;41930:12;:10;:12::i;:::-;41919:23;;:7;:5;:7::i;:::-;:23;;;41911:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;46693:7:::1;46677:13;:23;;;;;;;;;;;;:::i;:::-;;46606:102:::0;:::o;44635:26::-;;;;;;;;;;;;;:::o;21363:239::-;21435:7;21455:13;21471:7;:16;21479:7;21471:16;;;;;;;;;;;;;;;;;;;;;21455:32;;21523:1;21506:19;;:5;:19;;;;21498:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;21589:5;21582:12;;;21363:239;;;:::o;21093:208::-;21165:7;21210:1;21193:19;;:5;:19;;;;21185:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;21277:9;:16;21287:5;21277:16;;;;;;;;;;;;;;;;21270:23;;21093:208;;;:::o;42350:148::-;41930:12;:10;:12::i;:::-;41919:23;;:7;:5;:7::i;:::-;:23;;;41911:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;42457:1:::1;42420:40;;42441:6;;;;;;;;;;;42420:40;;;;;;;;;;;;42488:1;42471:6;;:19;;;;;;;;;;;;;;;;;;42350:148::o:0;45347:202::-;41930:12;:10;:12::i;:::-;41919:23;;:7;:5;:7::i;:::-;:23;;;41911:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;45402:11:::1;45416:13;:11;:13::i;:::-;45402:27;;45440:6;45457:85;45473:2;45469:1;:6;45457:85;;;45497:33;45507:10;45528:1;45519:6;:10;;;;:::i;:::-;45497:9;:33::i;:::-;45477:3;;;;;:::i;:::-;;;;45457:85;;;41990:1;;45347:202::o:0;47149:125::-;41930:12;:10;:12::i;:::-;41919:23;;:7;:5;:7::i;:::-;:23;;;41911:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;47224:12:::1;:10;:12::i;:::-;47216:26;;:49;47243:21;47216:49;;;;;;;;;;;;;;;;;;;;;;;47208:58;;;::::0;::::1;;47149:125::o:0;41699:87::-;41745:7;41772:6;;;;;;;;;;;41765:13;;41699:87;:::o;21838:104::-;21894:13;21927:7;21920:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21838:104;:::o;23422:295::-;23537:12;:10;:12::i;:::-;23525:24;;:8;:24;;;;23517:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;23637:8;23592:18;:32;23611:12;:10;:12::i;:::-;23592:32;;;;;;;;;;;;;;;:42;23625:8;23592:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;23690:8;23661:48;;23676:12;:10;:12::i;:::-;23661:48;;;23700:8;23661:48;;;;;;:::i;:::-;;;;;;;;23422:295;;:::o;24617:285::-;24749:41;24768:12;:10;:12::i;:::-;24782:7;24749:18;:41::i;:::-;24741:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;24855:39;24869:4;24875:2;24879:7;24888:5;24855:13;:39::i;:::-;24617:285;;;;:::o;45567:561::-;44597:4;44817:13;:11;:13::i;:::-;:26;44809:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;45667:7:::1;:5;:7::i;:::-;45653:21;;:10;:21;;;45650:78;;45699:6;;;;;;;;;;;45698:7;45690:26;;;;;;;;;;;;:::i;:::-;;;;;;;;;45650:78;44597:4;45762:6;45746:13;:11;:13::i;:::-;:22;;;;:::i;:::-;:36;;45738:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;44597:4;45822:13;:11;:13::i;:::-;:26;45814:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;45916:2;45906:6;:12;;45898:50;;;;;;;;;;;;:::i;:::-;;;;;;;;;45980:13;45986:6;45980:5;:13::i;:::-;45967:9;:26;;45959:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;46037:6;46033:88;46053:6;46049:1;:10;46033:88;;;46080:29;46090:3;46095:13;:11;:13::i;:::-;46080:9;:29::i;:::-;46061:3;;;;;:::i;:::-;;;;46033:88;;;;45567:561:::0;;:::o;22013:360::-;22086:13;22120:16;22128:7;22120;:16::i;:::-;22112:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;22201:21;22225:10;:8;:10::i;:::-;22201:34;;22277:1;22259:7;22253:21;:25;:112;;;;;;;;;;;;;;;;;22318:7;22327:18;:7;:16;:18::i;:::-;22301:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;22253:112;22246:119;;;22013:360;;;:::o;46311:167::-;46355:13;46381:89;;;;;;;;;;;;;;;;;;;46311:167;:::o;23788:164::-;23885:4;23909:18;:25;23928:5;23909:25;;;;;;;;;;;;;;;:35;23935:8;23909:35;;;;;;;;;;;;;;;;;;;;;;;;;23902:42;;23788:164;;;;:::o;44563:38::-;44597:4;44563:38;:::o;42653:244::-;41930:12;:10;:12::i;:::-;41919:23;;:7;:5;:7::i;:::-;:23;;;41911:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;42762:1:::1;42742:22;;:8;:22;;;;42734:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;42852:8;42823:38;;42844:6;;;;;;;;;;;42823:38;;;;;;;;;;;;42881:8;42872:6;;:17;;;;;;;;;;;;;;;;;;42653:244:::0;:::o;20737:292::-;20839:4;20878:25;20863:40;;;:11;:40;;;;:105;;;;20935:33;20920:48;;;:11;:48;;;;20863:105;:158;;;;20985:36;21009:11;20985:23;:36::i;:::-;20863:158;20856:165;;20737:292;;;:::o;16011:98::-;16064:7;16091:10;16084:17;;16011:98;:::o;27353:110::-;27429:26;27439:2;27443:7;27429:26;;;;;;;;;;;;:9;:26::i;:::-;27353:110;;:::o;26369:127::-;26434:4;26486:1;26458:30;;:7;:16;26466:7;26458:16;;;;;;;;;;;;;;;;;;;;;:30;;;;26451:37;;26369:127;;;:::o;30246:174::-;30348:2;30321:15;:24;30337:7;30321:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;30404:7;30400:2;30366:46;;30375:23;30390:7;30375:14;:23::i;:::-;30366:46;;;;;;;;;;;;30246:174;;:::o;26663:348::-;26756:4;26781:16;26789:7;26781;:16::i;:::-;26773:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;26857:13;26873:23;26888:7;26873:14;:23::i;:::-;26857:39;;26926:5;26915:16;;:7;:16;;;:51;;;;26959:7;26935:31;;:20;26947:7;26935:11;:20::i;:::-;:31;;;26915:51;:87;;;;26970:32;26987:5;26994:7;26970:16;:32::i;:::-;26915:87;26907:96;;;26663:348;;;;:::o;29584:544::-;29709:4;29682:31;;:23;29697:7;29682:14;:23::i;:::-;:31;;;29674:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;29792:1;29778:16;;:2;:16;;;;29770:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;29848:39;29869:4;29875:2;29879:7;29848:20;:39::i;:::-;29952:29;29969:1;29973:7;29952:8;:29::i;:::-;30013:1;29994:9;:15;30004:4;29994:15;;;;;;;;;;;;;;;;:20;;;;;;;:::i;:::-;;;;;;;;30042:1;30025:9;:13;30035:2;30025:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;30073:2;30054:7;:16;30062:7;30054:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;30112:7;30108:2;30093:27;;30102:4;30093:27;;;;;;;;;;;;29584:544;;;:::o;25784:272::-;25898:28;25908:4;25914:2;25918:7;25898:9;:28::i;:::-;25945:48;25968:4;25974:2;25978:7;25987:5;25945:22;:48::i;:::-;25937:111;;;;;;;;;;;;:::i;:::-;;;;;;;;;25784:272;;;;:::o;46486:114::-;46546:13;46579;46572:20;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46486:114;:::o;16672:723::-;16728:13;16958:1;16949:5;:10;16945:53;;;16976:10;;;;;;;;;;;;;;;;;;;;;16945:53;17008:12;17023:5;17008:20;;17039:14;17064:78;17079:1;17071:4;:9;17064:78;;17097:8;;;;;:::i;:::-;;;;17128:2;17120:10;;;;;:::i;:::-;;;17064:78;;;17152:19;17184:6;17174:17;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17152:39;;17202:154;17218:1;17209:5;:10;17202:154;;17246:1;17236:11;;;;;:::i;:::-;;;17313:2;17305:5;:10;;;;:::i;:::-;17292:2;:24;;;;:::i;:::-;17279:39;;17262:6;17269;17262:14;;;;;;;;;;;;;;;;;;;:56;;;;;;;;;;;17342:2;17333:11;;;;;:::i;:::-;;;17202:154;;;17380:6;17366:21;;;;;16672:723;;;;:::o;19231:157::-;19316:4;19355:25;19340:40;;;:11;:40;;;;19333:47;;19231:157;;;:::o;27690:250::-;27786:18;27792:2;27796:7;27786:5;:18::i;:::-;27823:54;27854:1;27858:2;27862:7;27871:5;27823:22;:54::i;:::-;27815:117;;;;;;;;;;;;:::i;:::-;;;;;;;;;27690:250;;;:::o;36161:555::-;36271:45;36298:4;36304:2;36308:7;36271:26;:45::i;:::-;36349:1;36333:18;;:4;:18;;;36329:187;;;36368:40;36400:7;36368:31;:40::i;:::-;36329:187;;;36438:2;36430:10;;:4;:10;;;36426:90;;36457:47;36490:4;36496:7;36457:32;:47::i;:::-;36426:90;36329:187;36544:1;36530:16;;:2;:16;;;36526:183;;;36563:45;36600:7;36563:36;:45::i;:::-;36526:183;;;36636:4;36630:10;;:2;:10;;;36626:83;;36657:40;36685:2;36689:7;36657:27;:40::i;:::-;36626:83;36526:183;36161:555;;;:::o;30985:843::-;31106:4;31132:15;:2;:13;;;:15::i;:::-;31128:693;;;31184:2;31168:36;;;31205:12;:10;:12::i;:::-;31219:4;31225:7;31234:5;31168:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;31164:602;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31431:1;31414:6;:13;:18;31410:341;;;31457:60;;;;;;;;;;:::i;:::-;;;;;;;;31410:341;31701:6;31695:13;31686:6;31682:2;31678:15;31671:38;31164:602;31301:45;;;31291:55;;;:6;:55;;;;31284:62;;;;;31128:693;31805:4;31798:11;;30985:843;;;;;;;:::o;28276:382::-;28370:1;28356:16;;:2;:16;;;;28348:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;28429:16;28437:7;28429;:16::i;:::-;28428:17;28420:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;28491:45;28520:1;28524:2;28528:7;28491:20;:45::i;:::-;28566:1;28549:9;:13;28559:2;28549:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;28597:2;28578:7;:16;28586:7;28578:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;28642:7;28638:2;28617:33;;28634:1;28617:33;;;;;;;;;;;;28276:382;;:::o;32441:93::-;;;;:::o;37439:164::-;37543:10;:17;;;;37516:15;:24;37532:7;37516:24;;;;;;;;;;;:44;;;;37571:10;37587:7;37571:24;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37439:164;:::o;38230:988::-;38496:22;38546:1;38521:22;38538:4;38521:16;:22::i;:::-;:26;;;;:::i;:::-;38496:51;;38558:18;38579:17;:26;38597:7;38579:26;;;;;;;;;;;;38558:47;;38726:14;38712:10;:28;38708:328;;38757:19;38779:12;:18;38792:4;38779:18;;;;;;;;;;;;;;;:34;38798:14;38779:34;;;;;;;;;;;;38757:56;;38863:11;38830:12;:18;38843:4;38830:18;;;;;;;;;;;;;;;:30;38849:10;38830:30;;;;;;;;;;;:44;;;;38980:10;38947:17;:30;38965:11;38947:30;;;;;;;;;;;:43;;;;38708:328;;39132:17;:26;39150:7;39132:26;;;;;;;;;;;39125:33;;;39176:12;:18;39189:4;39176:18;;;;;;;;;;;;;;;:34;39195:14;39176:34;;;;;;;;;;;39169:41;;;38230:988;;;;:::o;39513:1079::-;39766:22;39811:1;39791:10;:17;;;;:21;;;;:::i;:::-;39766:46;;39823:18;39844:15;:24;39860:7;39844:24;;;;;;;;;;;;39823:45;;40195:19;40217:10;40228:14;40217:26;;;;;;;;;;;;;;;;;;;;;;;;40195:48;;40281:11;40256:10;40267;40256:22;;;;;;;;;;;;;;;;;;;;;;;:36;;;;40392:10;40361:15;:28;40377:11;40361:28;;;;;;;;;;;:41;;;;40533:15;:24;40549:7;40533:24;;;;;;;;;;;40526:31;;;40568:10;:16;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39513:1079;;;;:::o;37017:221::-;37102:14;37119:20;37136:2;37119:16;:20::i;:::-;37102:37;;37177:7;37150:12;:16;37163:2;37150:16;;;;;;;;;;;;;;;:24;37167:6;37150:24;;;;;;;;;;;:34;;;;37224:6;37195:17;:26;37213:7;37195:26;;;;;;;;;;;:35;;;;37017:221;;;:::o;8124:422::-;8184:4;8392:12;8503:7;8491:20;8483:28;;8537:1;8530:4;:8;8523:15;;;8124:422;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:343: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:2;;;290:1;287;280:12;249:2;303:41;337:6;332:3;327;303:41;:::i;:::-;90:260;;;;;;:::o;356:345::-;434:5;459:66;475:49;517:6;475:49;:::i;:::-;459:66;:::i;:::-;450:75;;548:6;541:5;534:21;586:4;579:5;575:16;624:3;615:6;610:3;606:16;603:25;600:2;;;641:1;638;631:12;600:2;654:41;688:6;683:3;678;654:41;:::i;:::-;440:261;;;;;;:::o;707:139::-;753:5;791:6;778:20;769:29;;807:33;834:5;807:33;:::i;:::-;759:87;;;;:::o;852:133::-;895:5;933:6;920:20;911:29;;949:30;973:5;949:30;:::i;:::-;901:84;;;;:::o;991:137::-;1036:5;1074:6;1061:20;1052:29;;1090:32;1116:5;1090:32;:::i;:::-;1042:86;;;;:::o;1134:141::-;1190:5;1221:6;1215:13;1206:22;;1237:32;1263:5;1237:32;:::i;:::-;1196:79;;;;:::o;1294:271::-;1349:5;1398:3;1391:4;1383:6;1379:17;1375:27;1365:2;;1416:1;1413;1406:12;1365:2;1456:6;1443:20;1481:78;1555:3;1547:6;1540:4;1532:6;1528:17;1481:78;:::i;:::-;1472:87;;1355:210;;;;;:::o;1585:273::-;1641:5;1690:3;1683:4;1675:6;1671:17;1667:27;1657:2;;1708:1;1705;1698:12;1657:2;1748:6;1735:20;1773:79;1848:3;1840:6;1833:4;1825:6;1821:17;1773:79;:::i;:::-;1764:88;;1647:211;;;;;:::o;1864:139::-;1910:5;1948:6;1935:20;1926:29;;1964:33;1991:5;1964:33;:::i;:::-;1916:87;;;;:::o;2009:262::-;2068:6;2117:2;2105:9;2096:7;2092:23;2088:32;2085:2;;;2133:1;2130;2123:12;2085:2;2176:1;2201:53;2246:7;2237:6;2226:9;2222:22;2201:53;:::i;:::-;2191:63;;2147:117;2075:196;;;;:::o;2277:407::-;2345:6;2353;2402:2;2390:9;2381:7;2377:23;2373:32;2370:2;;;2418:1;2415;2408:12;2370:2;2461:1;2486:53;2531:7;2522:6;2511:9;2507:22;2486:53;:::i;:::-;2476:63;;2432:117;2588:2;2614:53;2659:7;2650:6;2639:9;2635:22;2614:53;:::i;:::-;2604:63;;2559:118;2360:324;;;;;:::o;2690:552::-;2767:6;2775;2783;2832:2;2820:9;2811:7;2807:23;2803:32;2800:2;;;2848:1;2845;2838:12;2800:2;2891:1;2916:53;2961:7;2952:6;2941:9;2937:22;2916:53;:::i;:::-;2906:63;;2862:117;3018:2;3044:53;3089:7;3080:6;3069:9;3065:22;3044:53;:::i;:::-;3034:63;;2989:118;3146:2;3172:53;3217:7;3208:6;3197:9;3193:22;3172:53;:::i;:::-;3162:63;;3117:118;2790:452;;;;;:::o;3248:809::-;3343:6;3351;3359;3367;3416:3;3404:9;3395:7;3391:23;3387:33;3384:2;;;3433:1;3430;3423:12;3384:2;3476:1;3501:53;3546:7;3537:6;3526:9;3522:22;3501:53;:::i;:::-;3491:63;;3447:117;3603:2;3629:53;3674:7;3665:6;3654:9;3650:22;3629:53;:::i;:::-;3619:63;;3574:118;3731:2;3757:53;3802:7;3793:6;3782:9;3778:22;3757:53;:::i;:::-;3747:63;;3702:118;3887:2;3876:9;3872:18;3859:32;3918:18;3910:6;3907:30;3904:2;;;3950:1;3947;3940:12;3904:2;3978:62;4032:7;4023:6;4012:9;4008:22;3978:62;:::i;:::-;3968:72;;3830:220;3374:683;;;;;;;:::o;4063:401::-;4128:6;4136;4185:2;4173:9;4164:7;4160:23;4156:32;4153:2;;;4201:1;4198;4191:12;4153:2;4244:1;4269:53;4314:7;4305:6;4294:9;4290:22;4269:53;:::i;:::-;4259:63;;4215:117;4371:2;4397:50;4439:7;4430:6;4419:9;4415:22;4397:50;:::i;:::-;4387:60;;4342:115;4143:321;;;;;:::o;4470:407::-;4538:6;4546;4595:2;4583:9;4574:7;4570:23;4566:32;4563:2;;;4611:1;4608;4601:12;4563:2;4654:1;4679:53;4724:7;4715:6;4704:9;4700:22;4679:53;:::i;:::-;4669:63;;4625:117;4781:2;4807:53;4852:7;4843:6;4832:9;4828:22;4807:53;:::i;:::-;4797:63;;4752:118;4553:324;;;;;:::o;4883:256::-;4939:6;4988:2;4976:9;4967:7;4963:23;4959:32;4956:2;;;5004:1;5001;4994:12;4956:2;5047:1;5072:50;5114:7;5105:6;5094:9;5090:22;5072:50;:::i;:::-;5062:60;;5018:114;4946:193;;;;:::o;5145:260::-;5203:6;5252:2;5240:9;5231:7;5227:23;5223:32;5220:2;;;5268:1;5265;5258:12;5220:2;5311:1;5336:52;5380:7;5371:6;5360:9;5356:22;5336:52;:::i;:::-;5326:62;;5282:116;5210:195;;;;:::o;5411:282::-;5480:6;5529:2;5517:9;5508:7;5504:23;5500:32;5497:2;;;5545:1;5542;5535:12;5497:2;5588:1;5613:63;5668:7;5659:6;5648:9;5644:22;5613:63;:::i;:::-;5603:73;;5559:127;5487:206;;;;:::o;5699:375::-;5768:6;5817:2;5805:9;5796:7;5792:23;5788:32;5785:2;;;5833:1;5830;5823:12;5785:2;5904:1;5893:9;5889:17;5876:31;5934:18;5926:6;5923:30;5920:2;;;5966:1;5963;5956:12;5920:2;5994:63;6049:7;6040:6;6029:9;6025:22;5994:63;:::i;:::-;5984:73;;5847:220;5775:299;;;;:::o;6080:262::-;6139:6;6188:2;6176:9;6167:7;6163:23;6159:32;6156:2;;;6204:1;6201;6194:12;6156:2;6247:1;6272:53;6317:7;6308:6;6297:9;6293:22;6272:53;:::i;:::-;6262:63;;6218:117;6146:196;;;;:::o;6348:179::-;6417:10;6438:46;6480:3;6472:6;6438:46;:::i;:::-;6516:4;6511:3;6507:14;6493:28;;6428:99;;;;:::o;6533:118::-;6620:24;6638:5;6620:24;:::i;:::-;6615:3;6608:37;6598:53;;:::o;6687:732::-;6806:3;6835:54;6883:5;6835:54;:::i;:::-;6905:86;6984:6;6979:3;6905:86;:::i;:::-;6898:93;;7015:56;7065:5;7015:56;:::i;:::-;7094:7;7125:1;7110:284;7135:6;7132:1;7129:13;7110:284;;;7211:6;7205:13;7238:63;7297:3;7282:13;7238:63;:::i;:::-;7231:70;;7324:60;7377:6;7324:60;:::i;:::-;7314:70;;7170:224;7157:1;7154;7150:9;7145:14;;7110:284;;;7114:14;7410:3;7403:10;;6811:608;;;;;;;:::o;7425:109::-;7506:21;7521:5;7506:21;:::i;:::-;7501:3;7494:34;7484:50;;:::o;7540:360::-;7626:3;7654:38;7686:5;7654:38;:::i;:::-;7708:70;7771:6;7766:3;7708:70;:::i;:::-;7701:77;;7787:52;7832:6;7827:3;7820:4;7813:5;7809:16;7787:52;:::i;:::-;7864:29;7886:6;7864:29;:::i;:::-;7859:3;7855:39;7848:46;;7630:270;;;;;:::o;7906:364::-;7994:3;8022:39;8055:5;8022:39;:::i;:::-;8077:71;8141:6;8136:3;8077:71;:::i;:::-;8070:78;;8157:52;8202:6;8197:3;8190:4;8183:5;8179:16;8157:52;:::i;:::-;8234:29;8256:6;8234:29;:::i;:::-;8229:3;8225:39;8218:46;;7998:272;;;;;:::o;8276:377::-;8382:3;8410:39;8443:5;8410:39;:::i;:::-;8465:89;8547:6;8542:3;8465:89;:::i;:::-;8458:96;;8563:52;8608:6;8603:3;8596:4;8589:5;8585:16;8563:52;:::i;:::-;8640:6;8635:3;8631:16;8624:23;;8386:267;;;;;:::o;8659:365::-;8801:3;8822:66;8886:1;8881:3;8822:66;:::i;:::-;8815:73;;8897:93;8986:3;8897:93;:::i;:::-;9015:2;9010:3;9006:12;8999:19;;8805:219;;;:::o;9030:366::-;9172:3;9193:67;9257:2;9252:3;9193:67;:::i;:::-;9186:74;;9269:93;9358:3;9269:93;:::i;:::-;9387:2;9382:3;9378:12;9371:19;;9176:220;;;:::o;9402:366::-;9544:3;9565:67;9629:2;9624:3;9565:67;:::i;:::-;9558:74;;9641:93;9730:3;9641:93;:::i;:::-;9759:2;9754:3;9750:12;9743:19;;9548:220;;;:::o;9774:366::-;9916:3;9937:67;10001:2;9996:3;9937:67;:::i;:::-;9930:74;;10013:93;10102:3;10013:93;:::i;:::-;10131:2;10126:3;10122:12;10115:19;;9920:220;;;:::o;10146:366::-;10288:3;10309:67;10373:2;10368:3;10309:67;:::i;:::-;10302:74;;10385:93;10474:3;10385:93;:::i;:::-;10503:2;10498:3;10494:12;10487:19;;10292:220;;;:::o;10518:366::-;10660:3;10681:67;10745:2;10740:3;10681:67;:::i;:::-;10674:74;;10757:93;10846:3;10757:93;:::i;:::-;10875:2;10870:3;10866:12;10859:19;;10664:220;;;:::o;10890:366::-;11032:3;11053:67;11117:2;11112:3;11053:67;:::i;:::-;11046:74;;11129:93;11218:3;11129:93;:::i;:::-;11247:2;11242:3;11238:12;11231:19;;11036:220;;;:::o;11262:366::-;11404:3;11425:67;11489:2;11484:3;11425:67;:::i;:::-;11418:74;;11501:93;11590:3;11501:93;:::i;:::-;11619:2;11614:3;11610:12;11603:19;;11408:220;;;:::o;11634:366::-;11776:3;11797:67;11861:2;11856:3;11797:67;:::i;:::-;11790:74;;11873:93;11962:3;11873:93;:::i;:::-;11991:2;11986:3;11982:12;11975:19;;11780:220;;;:::o;12006:366::-;12148:3;12169:67;12233:2;12228:3;12169:67;:::i;:::-;12162:74;;12245:93;12334:3;12245:93;:::i;:::-;12363:2;12358:3;12354:12;12347:19;;12152:220;;;:::o;12378:366::-;12520:3;12541:67;12605:2;12600:3;12541:67;:::i;:::-;12534:74;;12617:93;12706:3;12617:93;:::i;:::-;12735:2;12730:3;12726:12;12719:19;;12524:220;;;:::o;12750:366::-;12892:3;12913:67;12977:2;12972:3;12913:67;:::i;:::-;12906:74;;12989:93;13078:3;12989:93;:::i;:::-;13107:2;13102:3;13098:12;13091:19;;12896:220;;;:::o;13122:366::-;13264:3;13285:67;13349:2;13344:3;13285:67;:::i;:::-;13278:74;;13361:93;13450:3;13361:93;:::i;:::-;13479:2;13474:3;13470:12;13463:19;;13268:220;;;:::o;13494:366::-;13636:3;13657:67;13721:2;13716:3;13657:67;:::i;:::-;13650:74;;13733:93;13822:3;13733:93;:::i;:::-;13851:2;13846:3;13842:12;13835:19;;13640:220;;;:::o;13866:366::-;14008:3;14029:67;14093:2;14088:3;14029:67;:::i;:::-;14022:74;;14105:93;14194:3;14105:93;:::i;:::-;14223:2;14218:3;14214:12;14207:19;;14012:220;;;:::o;14238:366::-;14380:3;14401:67;14465:2;14460:3;14401:67;:::i;:::-;14394:74;;14477:93;14566:3;14477:93;:::i;:::-;14595:2;14590:3;14586:12;14579:19;;14384:220;;;:::o;14610:366::-;14752:3;14773:67;14837:2;14832:3;14773:67;:::i;:::-;14766:74;;14849:93;14938:3;14849:93;:::i;:::-;14967:2;14962:3;14958:12;14951:19;;14756:220;;;:::o;14982:366::-;15124:3;15145:67;15209:2;15204:3;15145:67;:::i;:::-;15138:74;;15221:93;15310:3;15221:93;:::i;:::-;15339:2;15334:3;15330:12;15323:19;;15128:220;;;:::o;15354:366::-;15496:3;15517:67;15581:2;15576:3;15517:67;:::i;:::-;15510:74;;15593:93;15682:3;15593:93;:::i;:::-;15711:2;15706:3;15702:12;15695:19;;15500:220;;;:::o;15726:366::-;15868:3;15889:67;15953:2;15948:3;15889:67;:::i;:::-;15882:74;;15965:93;16054:3;15965:93;:::i;:::-;16083:2;16078:3;16074:12;16067:19;;15872:220;;;:::o;16098:366::-;16240:3;16261:67;16325:2;16320:3;16261:67;:::i;:::-;16254:74;;16337:93;16426:3;16337:93;:::i;:::-;16455:2;16450:3;16446:12;16439:19;;16244:220;;;:::o;16470:366::-;16612:3;16633:67;16697:2;16692:3;16633:67;:::i;:::-;16626:74;;16709:93;16798:3;16709:93;:::i;:::-;16827:2;16822:3;16818:12;16811:19;;16616:220;;;:::o;16842:366::-;16984:3;17005:67;17069:2;17064:3;17005:67;:::i;:::-;16998:74;;17081:93;17170:3;17081:93;:::i;:::-;17199:2;17194:3;17190:12;17183:19;;16988:220;;;:::o;17214:366::-;17356:3;17377:67;17441:2;17436:3;17377:67;:::i;:::-;17370:74;;17453:93;17542:3;17453:93;:::i;:::-;17571:2;17566:3;17562:12;17555:19;;17360:220;;;:::o;17586:108::-;17663:24;17681:5;17663:24;:::i;:::-;17658:3;17651:37;17641:53;;:::o;17700:118::-;17787:24;17805:5;17787:24;:::i;:::-;17782:3;17775:37;17765:53;;:::o;17824:435::-;18004:3;18026:95;18117:3;18108:6;18026:95;:::i;:::-;18019:102;;18138:95;18229:3;18220:6;18138:95;:::i;:::-;18131:102;;18250:3;18243:10;;18008:251;;;;;:::o;18265:222::-;18358:4;18396:2;18385:9;18381:18;18373:26;;18409:71;18477:1;18466:9;18462:17;18453:6;18409:71;:::i;:::-;18363:124;;;;:::o;18493:640::-;18688:4;18726:3;18715:9;18711:19;18703:27;;18740:71;18808:1;18797:9;18793:17;18784:6;18740:71;:::i;:::-;18821:72;18889:2;18878:9;18874:18;18865:6;18821:72;:::i;:::-;18903;18971:2;18960:9;18956:18;18947:6;18903:72;:::i;:::-;19022:9;19016:4;19012:20;19007:2;18996:9;18992:18;18985:48;19050:76;19121:4;19112:6;19050:76;:::i;:::-;19042:84;;18693:440;;;;;;;:::o;19139:373::-;19282:4;19320:2;19309:9;19305:18;19297:26;;19369:9;19363:4;19359:20;19355:1;19344:9;19340:17;19333:47;19397:108;19500:4;19491:6;19397:108;:::i;:::-;19389:116;;19287:225;;;;:::o;19518:210::-;19605:4;19643:2;19632:9;19628:18;19620:26;;19656:65;19718:1;19707:9;19703:17;19694:6;19656:65;:::i;:::-;19610:118;;;;:::o;19734:313::-;19847:4;19885:2;19874:9;19870:18;19862:26;;19934:9;19928:4;19924:20;19920:1;19909:9;19905:17;19898:47;19962:78;20035:4;20026:6;19962:78;:::i;:::-;19954:86;;19852:195;;;;:::o;20053:419::-;20219:4;20257:2;20246:9;20242:18;20234:26;;20306:9;20300:4;20296:20;20292:1;20281:9;20277:17;20270:47;20334:131;20460:4;20334:131;:::i;:::-;20326:139;;20224:248;;;:::o;20478:419::-;20644:4;20682:2;20671:9;20667:18;20659:26;;20731:9;20725:4;20721:20;20717:1;20706:9;20702:17;20695:47;20759:131;20885:4;20759:131;:::i;:::-;20751:139;;20649:248;;;:::o;20903:419::-;21069:4;21107:2;21096:9;21092:18;21084:26;;21156:9;21150:4;21146:20;21142:1;21131:9;21127:17;21120:47;21184:131;21310:4;21184:131;:::i;:::-;21176:139;;21074:248;;;:::o;21328:419::-;21494:4;21532:2;21521:9;21517:18;21509:26;;21581:9;21575:4;21571:20;21567:1;21556:9;21552:17;21545:47;21609:131;21735:4;21609:131;:::i;:::-;21601:139;;21499:248;;;:::o;21753:419::-;21919:4;21957:2;21946:9;21942:18;21934:26;;22006:9;22000:4;21996:20;21992:1;21981:9;21977:17;21970:47;22034:131;22160:4;22034:131;:::i;:::-;22026:139;;21924:248;;;:::o;22178:419::-;22344:4;22382:2;22371:9;22367:18;22359:26;;22431:9;22425:4;22421:20;22417:1;22406:9;22402:17;22395:47;22459:131;22585:4;22459:131;:::i;:::-;22451:139;;22349:248;;;:::o;22603:419::-;22769:4;22807:2;22796:9;22792:18;22784:26;;22856:9;22850:4;22846:20;22842:1;22831:9;22827:17;22820:47;22884:131;23010:4;22884:131;:::i;:::-;22876:139;;22774:248;;;:::o;23028:419::-;23194:4;23232:2;23221:9;23217:18;23209:26;;23281:9;23275:4;23271:20;23267:1;23256:9;23252:17;23245:47;23309:131;23435:4;23309:131;:::i;:::-;23301:139;;23199:248;;;:::o;23453:419::-;23619:4;23657:2;23646:9;23642:18;23634:26;;23706:9;23700:4;23696:20;23692:1;23681:9;23677:17;23670:47;23734:131;23860:4;23734:131;:::i;:::-;23726:139;;23624:248;;;:::o;23878:419::-;24044:4;24082:2;24071:9;24067:18;24059:26;;24131:9;24125:4;24121:20;24117:1;24106:9;24102:17;24095:47;24159:131;24285:4;24159:131;:::i;:::-;24151:139;;24049:248;;;:::o;24303:419::-;24469:4;24507:2;24496:9;24492:18;24484:26;;24556:9;24550:4;24546:20;24542:1;24531:9;24527:17;24520:47;24584:131;24710:4;24584:131;:::i;:::-;24576:139;;24474:248;;;:::o;24728:419::-;24894:4;24932:2;24921:9;24917:18;24909:26;;24981:9;24975:4;24971:20;24967:1;24956:9;24952:17;24945:47;25009:131;25135:4;25009:131;:::i;:::-;25001:139;;24899:248;;;:::o;25153:419::-;25319:4;25357:2;25346:9;25342:18;25334:26;;25406:9;25400:4;25396:20;25392:1;25381:9;25377:17;25370:47;25434:131;25560:4;25434:131;:::i;:::-;25426:139;;25324:248;;;:::o;25578:419::-;25744:4;25782:2;25771:9;25767:18;25759:26;;25831:9;25825:4;25821:20;25817:1;25806:9;25802:17;25795:47;25859:131;25985:4;25859:131;:::i;:::-;25851:139;;25749:248;;;:::o;26003:419::-;26169:4;26207:2;26196:9;26192:18;26184:26;;26256:9;26250:4;26246:20;26242:1;26231:9;26227:17;26220:47;26284:131;26410:4;26284:131;:::i;:::-;26276:139;;26174:248;;;:::o;26428:419::-;26594:4;26632:2;26621:9;26617:18;26609:26;;26681:9;26675:4;26671:20;26667:1;26656:9;26652:17;26645:47;26709:131;26835:4;26709:131;:::i;:::-;26701:139;;26599:248;;;:::o;26853:419::-;27019:4;27057:2;27046:9;27042:18;27034:26;;27106:9;27100:4;27096:20;27092:1;27081:9;27077:17;27070:47;27134:131;27260:4;27134:131;:::i;:::-;27126:139;;27024:248;;;:::o;27278:419::-;27444:4;27482:2;27471:9;27467:18;27459:26;;27531:9;27525:4;27521:20;27517:1;27506:9;27502:17;27495:47;27559:131;27685:4;27559:131;:::i;:::-;27551:139;;27449:248;;;:::o;27703:419::-;27869:4;27907:2;27896:9;27892:18;27884:26;;27956:9;27950:4;27946:20;27942:1;27931:9;27927:17;27920:47;27984:131;28110:4;27984:131;:::i;:::-;27976:139;;27874:248;;;:::o;28128:419::-;28294:4;28332:2;28321:9;28317:18;28309:26;;28381:9;28375:4;28371:20;28367:1;28356:9;28352:17;28345:47;28409:131;28535:4;28409:131;:::i;:::-;28401:139;;28299:248;;;:::o;28553:419::-;28719:4;28757:2;28746:9;28742:18;28734:26;;28806:9;28800:4;28796:20;28792:1;28781:9;28777:17;28770:47;28834:131;28960:4;28834:131;:::i;:::-;28826:139;;28724:248;;;:::o;28978:419::-;29144:4;29182:2;29171:9;29167:18;29159:26;;29231:9;29225:4;29221:20;29217:1;29206:9;29202:17;29195:47;29259:131;29385:4;29259:131;:::i;:::-;29251:139;;29149:248;;;:::o;29403:419::-;29569:4;29607:2;29596:9;29592:18;29584:26;;29656:9;29650:4;29646:20;29642:1;29631:9;29627:17;29620:47;29684:131;29810:4;29684:131;:::i;:::-;29676:139;;29574:248;;;:::o;29828:419::-;29994:4;30032:2;30021:9;30017:18;30009:26;;30081:9;30075:4;30071:20;30067:1;30056:9;30052:17;30045:47;30109:131;30235:4;30109:131;:::i;:::-;30101:139;;29999:248;;;:::o;30253:222::-;30346:4;30384:2;30373:9;30369:18;30361:26;;30397:71;30465:1;30454:9;30450:17;30441:6;30397:71;:::i;:::-;30351:124;;;;:::o;30481:129::-;30515:6;30542:20;;:::i;:::-;30532:30;;30571:33;30599:4;30591:6;30571:33;:::i;:::-;30522:88;;;:::o;30616:75::-;30649:6;30682:2;30676:9;30666:19;;30656:35;:::o;30697:307::-;30758:4;30848:18;30840:6;30837:30;30834:2;;;30870:18;;:::i;:::-;30834:2;30908:29;30930:6;30908:29;:::i;:::-;30900:37;;30992:4;30986;30982:15;30974:23;;30763:241;;;:::o;31010:308::-;31072:4;31162:18;31154:6;31151:30;31148:2;;;31184:18;;:::i;:::-;31148:2;31222:29;31244:6;31222:29;:::i;:::-;31214:37;;31306:4;31300;31296:15;31288:23;;31077:241;;;:::o;31324:132::-;31391:4;31414:3;31406:11;;31444:4;31439:3;31435:14;31427:22;;31396:60;;;:::o;31462:114::-;31529:6;31563:5;31557:12;31547:22;;31536:40;;;:::o;31582:98::-;31633:6;31667:5;31661:12;31651:22;;31640:40;;;:::o;31686:99::-;31738:6;31772:5;31766:12;31756:22;;31745:40;;;:::o;31791:113::-;31861:4;31893;31888:3;31884:14;31876:22;;31866:38;;;:::o;31910:184::-;32009:11;32043:6;32038:3;32031:19;32083:4;32078:3;32074:14;32059:29;;32021:73;;;;:::o;32100:168::-;32183:11;32217:6;32212:3;32205:19;32257:4;32252:3;32248:14;32233:29;;32195:73;;;;:::o;32274:169::-;32358:11;32392:6;32387:3;32380:19;32432:4;32427:3;32423:14;32408:29;;32370:73;;;;:::o;32449:148::-;32551:11;32588:3;32573:18;;32563:34;;;;:::o;32603:305::-;32643:3;32662:20;32680:1;32662:20;:::i;:::-;32657:25;;32696:20;32714:1;32696:20;:::i;:::-;32691:25;;32850:1;32782:66;32778:74;32775:1;32772:81;32769:2;;;32856:18;;:::i;:::-;32769:2;32900:1;32897;32893:9;32886:16;;32647:261;;;;:::o;32914:185::-;32954:1;32971:20;32989:1;32971:20;:::i;:::-;32966:25;;33005:20;33023:1;33005:20;:::i;:::-;33000:25;;33044:1;33034:2;;33049:18;;:::i;:::-;33034:2;33091:1;33088;33084:9;33079:14;;32956:143;;;;:::o;33105:348::-;33145:7;33168:20;33186:1;33168:20;:::i;:::-;33163:25;;33202:20;33220:1;33202:20;:::i;:::-;33197:25;;33390:1;33322:66;33318:74;33315:1;33312:81;33307:1;33300:9;33293:17;33289:105;33286:2;;;33397:18;;:::i;:::-;33286:2;33445:1;33442;33438:9;33427:20;;33153:300;;;;:::o;33459:191::-;33499:4;33519:20;33537:1;33519:20;:::i;:::-;33514:25;;33553:20;33571:1;33553:20;:::i;:::-;33548:25;;33592:1;33589;33586:8;33583:2;;;33597:18;;:::i;:::-;33583:2;33642:1;33639;33635:9;33627:17;;33504:146;;;;:::o;33656:96::-;33693:7;33722:24;33740:5;33722:24;:::i;:::-;33711:35;;33701:51;;;:::o;33758:90::-;33792:7;33835:5;33828:13;33821:21;33810:32;;33800:48;;;:::o;33854:149::-;33890:7;33930:66;33923:5;33919:78;33908:89;;33898:105;;;:::o;34009:126::-;34046:7;34086:42;34079:5;34075:54;34064:65;;34054:81;;;:::o;34141:77::-;34178:7;34207:5;34196:16;;34186:32;;;:::o;34224:154::-;34308:6;34303:3;34298;34285:30;34370:1;34361:6;34356:3;34352:16;34345:27;34275:103;;;:::o;34384:307::-;34452:1;34462:113;34476:6;34473:1;34470:13;34462:113;;;34561:1;34556:3;34552:11;34546:18;34542:1;34537:3;34533:11;34526:39;34498:2;34495:1;34491:10;34486:15;;34462:113;;;34593:6;34590:1;34587:13;34584:2;;;34673:1;34664:6;34659:3;34655:16;34648:27;34584:2;34433:258;;;;:::o;34697:320::-;34741:6;34778:1;34772:4;34768:12;34758:22;;34825:1;34819:4;34815:12;34846:18;34836:2;;34902:4;34894:6;34890:17;34880:27;;34836:2;34964;34956:6;34953:14;34933:18;34930:38;34927:2;;;34983:18;;:::i;:::-;34927:2;34748:269;;;;:::o;35023:281::-;35106:27;35128:4;35106:27;:::i;:::-;35098:6;35094:40;35236:6;35224:10;35221:22;35200:18;35188:10;35185:34;35182:62;35179:2;;;35247:18;;:::i;:::-;35179:2;35287:10;35283:2;35276:22;35066:238;;;:::o;35310:233::-;35349:3;35372:24;35390:5;35372:24;:::i;:::-;35363:33;;35418:66;35411:5;35408:77;35405:2;;;35488:18;;:::i;:::-;35405:2;35535:1;35528:5;35524:13;35517:20;;35353:190;;;:::o;35549:176::-;35581:1;35598:20;35616:1;35598:20;:::i;:::-;35593:25;;35632:20;35650:1;35632:20;:::i;:::-;35627:25;;35671:1;35661:2;;35676:18;;:::i;:::-;35661:2;35717:1;35714;35710:9;35705:14;;35583:142;;;;:::o;35731:180::-;35779:77;35776:1;35769:88;35876:4;35873:1;35866:15;35900:4;35897:1;35890:15;35917:180;35965:77;35962:1;35955:88;36062:4;36059:1;36052:15;36086:4;36083:1;36076:15;36103:180;36151:77;36148:1;36141:88;36248:4;36245:1;36238:15;36272:4;36269:1;36262:15;36289:180;36337:77;36334:1;36327:88;36434:4;36431:1;36424:15;36458:4;36455:1;36448:15;36475:102;36516:6;36567:2;36563:7;36558:2;36551:5;36547:14;36543:28;36533:38;;36523:54;;;:::o;36583:156::-;36723:8;36719:1;36711:6;36707:14;36700:32;36689:50;:::o;36745:230::-;36885:34;36881:1;36873:6;36869:14;36862:58;36954:13;36949:2;36941:6;36937:15;36930:38;36851:124;:::o;36981:237::-;37121:34;37117:1;37109:6;37105:14;37098:58;37190:20;37185:2;37177:6;37173:15;37166:45;37087:131;:::o;37224:166::-;37364:18;37360:1;37352:6;37348:14;37341:42;37330:60;:::o;37396:225::-;37536:34;37532:1;37524:6;37520:14;37513:58;37605:8;37600:2;37592:6;37588:15;37581:33;37502:119;:::o;37627:178::-;37767:30;37763:1;37755:6;37751:14;37744:54;37733:72;:::o;37811:180::-;37951:32;37947:1;37939:6;37935:14;37928:56;37917:74;:::o;37997:223::-;38137:34;38133:1;38125:6;38121:14;38114:58;38206:6;38201:2;38193:6;38189:15;38182:31;38103:117;:::o;38226:175::-;38366:27;38362:1;38354:6;38350:14;38343:51;38332:69;:::o;38407:175::-;38547:27;38543:1;38535:6;38531:14;38524:51;38513:69;:::o;38588:231::-;38728:34;38724:1;38716:6;38712:14;38705:58;38797:14;38792:2;38784:6;38780:15;38773:39;38694:125;:::o;38825:172::-;38965:24;38961:1;38953:6;38949:14;38942:48;38931:66;:::o;39003:243::-;39143:34;39139:1;39131:6;39127:14;39120:58;39212:26;39207:2;39199:6;39195:15;39188:51;39109:137;:::o;39252:229::-;39392:34;39388:1;39380:6;39376:14;39369:58;39461:12;39456:2;39448:6;39444:15;39437:37;39358:123;:::o;39487:228::-;39627:34;39623:1;39615:6;39611:14;39604:58;39696:11;39691:2;39683:6;39679:15;39672:36;39593:122;:::o;39721:182::-;39861:34;39857:1;39849:6;39845:14;39838:58;39827:76;:::o;39909:231::-;40049:34;40045:1;40037:6;40033:14;40026:58;40118:14;40113:2;40105:6;40101:15;40094:39;40015:125;:::o;40146:182::-;40286:34;40282:1;40274:6;40270:14;40263:58;40252:76;:::o;40334:228::-;40474:34;40470:1;40462:6;40458:14;40451:58;40543:11;40538:2;40530:6;40526:15;40519:36;40440:122;:::o;40568:234::-;40708:34;40704:1;40696:6;40692:14;40685:58;40777:17;40772:2;40764:6;40760:15;40753:42;40674:128;:::o;40808:220::-;40948:34;40944:1;40936:6;40932:14;40925:58;41017:3;41012:2;41004:6;41000:15;40993:28;40914:114;:::o;41034:221::-;41174:34;41170:1;41162:6;41158:14;41151:58;41243:4;41238:2;41230:6;41226:15;41219:29;41140:115;:::o;41261:236::-;41401:34;41397:1;41389:6;41385:14;41378:58;41470:19;41465:2;41457:6;41453:15;41446:44;41367:130;:::o;41503:231::-;41643:34;41639:1;41631:6;41627:14;41620:58;41712:14;41707:2;41699:6;41695:15;41688:39;41609:125;:::o;41740:122::-;41813:24;41831:5;41813:24;:::i;:::-;41806:5;41803:35;41793:2;;41852:1;41849;41842:12;41793:2;41783:79;:::o;41868:116::-;41938:21;41953:5;41938:21;:::i;:::-;41931:5;41928:32;41918:2;;41974:1;41971;41964:12;41918:2;41908:76;:::o;41990:120::-;42062:23;42079:5;42062:23;:::i;:::-;42055:5;42052:34;42042:2;;42100:1;42097;42090:12;42042:2;42032:78;:::o;42116:122::-;42189:24;42207:5;42189:24;:::i;:::-;42182:5;42179:35;42169:2;;42228:1;42225;42218:12;42169:2;42159:79;:::o

Swarm Source

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