ETH Price: $2,974.79 (+3.83%)
Gas: 2 Gwei

Token

LarvaDads (LDAD)
 

Overview

Max Total Supply

5,000 LDAD

Holders

1,420

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
5 LDAD
0x6584b48ccebd9c3e4413a1dd4cdbc38b2500cdf3
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:
LarvaDads

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

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

pragma solidity ^0.8.0;

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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



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

pragma solidity ^0.8.0;

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


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

pragma solidity ^0.8.0;


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

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

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


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

pragma solidity ^0.8.0;


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


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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;

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

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

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

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

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


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

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(), ".json")) : "";
    }

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

    /**
     * @dev See {IERC721-approve}.
     */
    function approve(address to, uint256 tokenId) public 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 {
        _setApprovalForAll(_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 Approve `operator` to operate on all of `owner` tokens
     *
     * Emits a {ApprovalForAll} event.
     */
    function _setApprovalForAll(
        address owner,
        address operator,
        bool approved
    ) internal virtual {
        require(owner != operator, "ERC721: approve to caller");
        _operatorApprovals[owner][operator] = approved;
        emit ApprovalForAll(owner, operator, approved);
    }

    /**
     * @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.onERC721Received.selector;
            } catch (bytes memory reason) {
                if (reason.length == 0) {
                    revert("ERC721: transfer to non ERC721Receiver implementer");
                } else {
                    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` and `to` are never both zero.
     *
     * 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 {}
}


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

pragma solidity ^0.8.0;

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

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

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



pragma solidity ^0.8.0;


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

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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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


pragma solidity ^0.8.0;


contract LarvaDads is ERC721Enumerable, Ownable {

    uint256 public dadPrice = 20000000000000000;
    uint public maxFreeDadPurchase = 5;
    uint public maxDadPurchase = 10;
    uint public dadSupply = 5001;
    bool public drop_is_active = false;
    string public baseURI = "";
    uint256 public tokensMinted = 1;
    uint256 public freeMints = 1001;
    uint256 public freeTokensMinted = 0;

    mapping(address => uint) addressesThatMintedFree;

    constructor() ERC721("LarvaDads", "LDAD"){
    
    }

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

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

    function freeMintLDAD(uint numberOfTokens) public {
        require(drop_is_active, "Please wait until the drop is active to mint");
        require(numberOfTokens > 0 && numberOfTokens <= maxFreeDadPurchase, "Mint count is too little or too high");
        require(tokensMinted + numberOfTokens <= freeMints, "There are no more free mints left");
        require(addressesThatMintedFree[msg.sender] + numberOfTokens <= 5, "You have already minted 5 free LarvaDads");

        uint256 tokenIndex = tokensMinted;
        tokensMinted += numberOfTokens;
        addressesThatMintedFree[msg.sender] += numberOfTokens;

        for (uint i = 0; i < numberOfTokens; i++){
            _safeMint(msg.sender, tokenIndex);
            freeTokensMinted++;
            tokenIndex++;
        }
    }

    function mintLDAD(uint numberOfTokens) public payable {
        require(drop_is_active, "Please wait until the drop is active to mint");
        require(numberOfTokens > 0 && numberOfTokens <= maxDadPurchase, "Mint count is too little or too high");
        require(tokensMinted + numberOfTokens <= dadSupply, "Purchase would exceed max supply of LarvaDads");
        require(msg.value >= dadPrice * numberOfTokens, "ETH value sent is too little for this many LarvaDads");

        uint256 tokenIndex = tokensMinted;
        tokensMinted += numberOfTokens;

        for (uint i = 0; i < numberOfTokens; i++){
            _safeMint(msg.sender, tokenIndex);
            tokenIndex++;
        }
    }

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

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

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

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

    function setMaxFreeMint(uint256 newFree)public onlyOwner{
        freeMints = newFree;
    }

    function setMaxPerFreeTxn(uint256 newMax)public onlyOwner{
        maxFreeDadPurchase = newMax;
    }

    function setMaxPerTxn(uint256 newMax)public onlyOwner{
        maxDadPurchase = newMax;
    }

}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"dadPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"dadSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"drop_is_active","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"flipDropState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"numberOfTokens","type":"uint256"}],"name":"freeMintLDAD","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"freeMints","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"freeTokensMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxDadPurchase","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxFreeDadPurchase","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"numberOfTokens","type":"uint256"}],"name":"mintLDAD","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":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newFree","type":"uint256"}],"name":"setMaxFreeMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newMax","type":"uint256"}],"name":"setMaxPerFreeTxn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newMax","type":"uint256"}],"name":"setMaxPerTxn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newPrice","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newSupply","type":"uint256"}],"name":"setSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

608060405266470de4df820000600b556005600c55600a600d55611389600e556000600f60006101000a81548160ff02191690831515021790555060405180602001604052806000815250601090805190602001906200006192919062000214565b5060016011556103e960125560006013553480156200007f57600080fd5b506040518060400160405280600981526020017f4c617276614461647300000000000000000000000000000000000000000000008152506040518060400160405280600481526020017f4c4441440000000000000000000000000000000000000000000000000000000081525081600090805190602001906200010492919062000214565b5080600190805190602001906200011d92919062000214565b50505062000140620001346200014660201b60201c565b6200014e60201b60201c565b62000329565b600033905090565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8280546200022290620002c4565b90600052602060002090601f01602090048101928262000246576000855562000292565b82601f106200026157805160ff191683800117855562000292565b8280016001018555821562000292579182015b828111156200029157825182559160200191906001019062000274565b5b509050620002a19190620002a5565b5090565b5b80821115620002c0576000816000905550600101620002a6565b5090565b60006002820490506001821680620002dd57607f821691505b60208210811415620002f457620002f3620002fa565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6146ce80620003396000396000f3fe6080604052600436106102255760003560e01c806370a0823111610123578063b6f3ce00116100ab578063da4acf841161006f578063da4acf84146107d2578063dbcaa52c146107fb578063e985e9c514610826578063eb20ebff14610863578063f2fde38b1461088e57610225565b8063b6f3ce00146106fe578063b88d4fde14610727578063c87b56dd14610750578063ca98a7331461078d578063d554440f146107b657610225565b80638da5cb5b116100f25780638da5cb5b1461063f57806391b7f5ed1461066a57806395d89b411461069357806396f8f6dd146106be578063a22cb465146106d557610225565b806370a0823114610597578063715018a6146105d4578063742a4c9b146105eb57806380b173351461061457610225565b80633b4c4b25116101b157806352bbe9141161017557806352bbe914146104b057806355f804b3146104db5780636352211e146105045780636c0360eb146105415780636de9f32b1461056c57610225565b80633b4c4b25146103df5780633ccfd60b1461040857806342842e0e1461041f5780634c419a29146104485780634f6ccce71461047357610225565b8063095ea7b3116101f8578063095ea7b3146102fa57806318160ddd146103235780631e8024861461034e57806323b872dd146103795780632f745c59146103a257610225565b806301ffc9a71461022a578063052939051461026757806306fdde0314610292578063081812fc146102bd575b600080fd5b34801561023657600080fd5b50610251600480360381019061024c9190613199565b6108b7565b60405161025e919061373a565b60405180910390f35b34801561027357600080fd5b5061027c610931565b604051610289919061373a565b60405180910390f35b34801561029e57600080fd5b506102a7610944565b6040516102b49190613755565b60405180910390f35b3480156102c957600080fd5b506102e460048036038101906102df919061323c565b6109d6565b6040516102f191906136d3565b60405180910390f35b34801561030657600080fd5b50610321600480360381019061031c9190613159565b610a5b565b005b34801561032f57600080fd5b50610338610b73565b6040516103459190613a77565b60405180910390f35b34801561035a57600080fd5b50610363610b80565b6040516103709190613a77565b60405180910390f35b34801561038557600080fd5b506103a0600480360381019061039b9190613043565b610b86565b005b3480156103ae57600080fd5b506103c960048036038101906103c49190613159565b610be6565b6040516103d69190613a77565b60405180910390f35b3480156103eb57600080fd5b506104066004803603810190610401919061323c565b610c8b565b005b34801561041457600080fd5b5061041d610d11565b005b34801561042b57600080fd5b5061044660048036038101906104419190613043565b610dcd565b005b34801561045457600080fd5b5061045d610ded565b60405161046a9190613a77565b60405180910390f35b34801561047f57600080fd5b5061049a6004803603810190610495919061323c565b610df3565b6040516104a79190613a77565b60405180910390f35b3480156104bc57600080fd5b506104c5610e64565b6040516104d29190613a77565b60405180910390f35b3480156104e757600080fd5b5061050260048036038101906104fd91906131f3565b610e6a565b005b34801561051057600080fd5b5061052b6004803603810190610526919061323c565b610f00565b60405161053891906136d3565b60405180910390f35b34801561054d57600080fd5b50610556610fb2565b6040516105639190613755565b60405180910390f35b34801561057857600080fd5b50610581611040565b60405161058e9190613a77565b60405180910390f35b3480156105a357600080fd5b506105be60048036038101906105b99190612fd6565b611046565b6040516105cb9190613a77565b60405180910390f35b3480156105e057600080fd5b506105e96110fe565b005b3480156105f757600080fd5b50610612600480360381019061060d919061323c565b611186565b005b34801561062057600080fd5b5061062961120c565b6040516106369190613a77565b60405180910390f35b34801561064b57600080fd5b50610654611212565b60405161066191906136d3565b60405180910390f35b34801561067657600080fd5b50610691600480360381019061068c919061323c565b61123c565b005b34801561069f57600080fd5b506106a86112c2565b6040516106b59190613755565b60405180910390f35b3480156106ca57600080fd5b506106d3611354565b005b3480156106e157600080fd5b506106fc60048036038101906106f79190613119565b6113fc565b005b34801561070a57600080fd5b506107256004803603810190610720919061323c565b611412565b005b34801561073357600080fd5b5061074e60048036038101906107499190613096565b611498565b005b34801561075c57600080fd5b506107776004803603810190610772919061323c565b6114fa565b6040516107849190613755565b60405180910390f35b34801561079957600080fd5b506107b460048036038101906107af919061323c565b6115a1565b005b6107d060048036038101906107cb919061323c565b611627565b005b3480156107de57600080fd5b506107f960048036038101906107f4919061323c565b6117c4565b005b34801561080757600080fd5b50610810611a0d565b60405161081d9190613a77565b60405180910390f35b34801561083257600080fd5b5061084d60048036038101906108489190613003565b611a13565b60405161085a919061373a565b60405180910390f35b34801561086f57600080fd5b50610878611aa7565b6040516108859190613a77565b60405180910390f35b34801561089a57600080fd5b506108b560048036038101906108b09190612fd6565b611aad565b005b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061092a575061092982611ba5565b5b9050919050565b600f60009054906101000a900460ff1681565b60606000805461095390613d27565b80601f016020809104026020016040519081016040528092919081815260200182805461097f90613d27565b80156109cc5780601f106109a1576101008083540402835291602001916109cc565b820191906000526020600020905b8154815290600101906020018083116109af57829003601f168201915b5050505050905090565b60006109e182611c87565b610a20576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a1790613917565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610a6682610f00565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610ad7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ace906139d7565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610af6611cf3565b73ffffffffffffffffffffffffffffffffffffffff161480610b255750610b2481610b1f611cf3565b611a13565b5b610b64576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b5b90613877565b60405180910390fd5b610b6e8383611cfb565b505050565b6000600880549050905090565b600c5481565b610b97610b91611cf3565b82611db4565b610bd6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bcd90613a37565b60405180910390fd5b610be1838383611e92565b505050565b6000610bf183611046565b8210610c32576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c2990613777565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b610c93611cf3565b73ffffffffffffffffffffffffffffffffffffffff16610cb1611212565b73ffffffffffffffffffffffffffffffffffffffff1614610d07576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cfe90613937565b60405180910390fd5b80600e8190555050565b610d19611cf3565b73ffffffffffffffffffffffffffffffffffffffff16610d37611212565b73ffffffffffffffffffffffffffffffffffffffff1614610d8d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d8490613937565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050610dcb57600080fd5b565b610de883838360405180602001604052806000815250611498565b505050565b600b5481565b6000610dfd610b73565b8210610e3e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e3590613a57565b60405180910390fd5b60088281548110610e5257610e51613ec0565b5b90600052602060002001549050919050565b600e5481565b610e72611cf3565b73ffffffffffffffffffffffffffffffffffffffff16610e90611212565b73ffffffffffffffffffffffffffffffffffffffff1614610ee6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610edd90613937565b60405180910390fd5b8060109080519060200190610efc929190612dea565b5050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610fa9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fa0906138b7565b60405180910390fd5b80915050919050565b60108054610fbf90613d27565b80601f0160208091040260200160405190810160405280929190818152602001828054610feb90613d27565b80156110385780601f1061100d57610100808354040283529160200191611038565b820191906000526020600020905b81548152906001019060200180831161101b57829003601f168201915b505050505081565b60115481565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156110b7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110ae90613897565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611106611cf3565b73ffffffffffffffffffffffffffffffffffffffff16611124611212565b73ffffffffffffffffffffffffffffffffffffffff161461117a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161117190613937565b60405180910390fd5b61118460006120ee565b565b61118e611cf3565b73ffffffffffffffffffffffffffffffffffffffff166111ac611212565b73ffffffffffffffffffffffffffffffffffffffff1614611202576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111f990613937565b60405180910390fd5b8060128190555050565b60125481565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b611244611cf3565b73ffffffffffffffffffffffffffffffffffffffff16611262611212565b73ffffffffffffffffffffffffffffffffffffffff16146112b8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112af90613937565b60405180910390fd5b80600b8190555050565b6060600180546112d190613d27565b80601f01602080910402602001604051908101604052809291908181526020018280546112fd90613d27565b801561134a5780601f1061131f5761010080835404028352916020019161134a565b820191906000526020600020905b81548152906001019060200180831161132d57829003601f168201915b5050505050905090565b61135c611cf3565b73ffffffffffffffffffffffffffffffffffffffff1661137a611212565b73ffffffffffffffffffffffffffffffffffffffff16146113d0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113c790613937565b60405180910390fd5b600f60009054906101000a900460ff1615600f60006101000a81548160ff021916908315150217905550565b61140e611407611cf3565b83836121b4565b5050565b61141a611cf3565b73ffffffffffffffffffffffffffffffffffffffff16611438611212565b73ffffffffffffffffffffffffffffffffffffffff161461148e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161148590613937565b60405180910390fd5b80600d8190555050565b6114a96114a3611cf3565b83611db4565b6114e8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114df90613a37565b60405180910390fd5b6114f484848484612321565b50505050565b606061150582611c87565b611544576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161153b90613977565b60405180910390fd5b600061154e61237d565b9050600081511161156e5760405180602001604052806000815250611599565b806115788461240f565b6040516020016115899291906136a4565b6040516020818303038152906040525b915050919050565b6115a9611cf3565b73ffffffffffffffffffffffffffffffffffffffff166115c7611212565b73ffffffffffffffffffffffffffffffffffffffff161461161d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161161490613937565b60405180910390fd5b80600c8190555050565b600f60009054906101000a900460ff16611676576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161166d906139f7565b60405180910390fd5b6000811180156116885750600d548111155b6116c7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116be906139b7565b60405180910390fd5b600e54816011546116d89190613b5c565b1115611719576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161171090613a17565b60405180910390fd5b80600b546117279190613be3565b341015611769576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611760906138d7565b60405180910390fd5b6000601154905081601160008282546117829190613b5c565b9250508190555060005b828110156117bf5761179e3383612570565b81806117a990613d8a565b92505080806117b790613d8a565b91505061178c565b505050565b600f60009054906101000a900460ff16611813576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161180a906139f7565b60405180910390fd5b6000811180156118255750600c548111155b611864576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161185b906139b7565b60405180910390fd5b601254816011546118759190613b5c565b11156118b6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118ad90613997565b60405180910390fd5b600581601460003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546119039190613b5c565b1115611944576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161193b90613817565b60405180910390fd5b60006011549050816011600082825461195d9190613b5c565b9250508190555081601460003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546119b39190613b5c565b9250508190555060005b82811015611a08576119cf3383612570565b601360008154809291906119e290613d8a565b919050555081806119f290613d8a565b9250508080611a0090613d8a565b9150506119bd565b505050565b60135481565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600d5481565b611ab5611cf3565b73ffffffffffffffffffffffffffffffffffffffff16611ad3611212565b73ffffffffffffffffffffffffffffffffffffffff1614611b29576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b2090613937565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611b99576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b90906137b7565b60405180910390fd5b611ba2816120ee565b50565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480611c7057507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80611c805750611c7f8261258e565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16611d6e83610f00565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000611dbf82611c87565b611dfe576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611df590613857565b60405180910390fd5b6000611e0983610f00565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611e7857508373ffffffffffffffffffffffffffffffffffffffff16611e60846109d6565b73ffffffffffffffffffffffffffffffffffffffff16145b80611e895750611e888185611a13565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16611eb282610f00565b73ffffffffffffffffffffffffffffffffffffffff1614611f08576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611eff90613957565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611f78576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f6f906137f7565b60405180910390fd5b611f838383836125f8565b611f8e600082611cfb565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611fde9190613c3d565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546120359190613b5c565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612223576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161221a90613837565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051612314919061373a565b60405180910390a3505050565b61232c848484611e92565b6123388484848461270c565b612377576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161236e90613797565b60405180910390fd5b50505050565b60606010805461238c90613d27565b80601f01602080910402602001604051908101604052809291908181526020018280546123b890613d27565b80156124055780601f106123da57610100808354040283529160200191612405565b820191906000526020600020905b8154815290600101906020018083116123e857829003601f168201915b5050505050905090565b60606000821415612457576040518060400160405280600181526020017f3000000000000000000000000000000000000000000000000000000000000000815250905061256b565b600082905060005b6000821461248957808061247290613d8a565b915050600a826124829190613bb2565b915061245f565b60008167ffffffffffffffff8111156124a5576124a4613eef565b5b6040519080825280601f01601f1916602001820160405280156124d75781602001600182028036833780820191505090505b5090505b60008514612564576001826124f09190613c3d565b9150600a856124ff9190613dd3565b603061250b9190613b5c565b60f81b81838151811061252157612520613ec0565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561255d9190613bb2565b94506124db565b8093505050505b919050565b61258a8282604051806020016040528060008152506128a3565b5050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6126038383836128fe565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156126465761264181612903565b612685565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161461268457612683838261294c565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156126c8576126c381612ab9565b612707565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614612706576127058282612b8a565b5b5b505050565b600061272d8473ffffffffffffffffffffffffffffffffffffffff16612c09565b15612896578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612756611cf3565b8786866040518563ffffffff1660e01b815260040161277894939291906136ee565b602060405180830381600087803b15801561279257600080fd5b505af19250505080156127c357506040513d601f19601f820116820180604052508101906127c091906131c6565b60015b612846573d80600081146127f3576040519150601f19603f3d011682016040523d82523d6000602084013e6127f8565b606091505b5060008151141561283e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161283590613797565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161491505061289b565b600190505b949350505050565b6128ad8383612c1c565b6128ba600084848461270c565b6128f9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128f090613797565b60405180910390fd5b505050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b6000600161295984611046565b6129639190613c3d565b9050600060076000848152602001908152602001600020549050818114612a48576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b60006001600880549050612acd9190613c3d565b9050600060096000848152602001908152602001600020549050600060088381548110612afd57612afc613ec0565b5b906000526020600020015490508060088381548110612b1f57612b1e613ec0565b5b906000526020600020018190555081600960008381526020019081526020016000208190555060096000858152602001908152602001600020600090556008805480612b6e57612b6d613e91565b5b6001900381819060005260206000200160009055905550505050565b6000612b9583611046565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b600080823b905060008111915050919050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612c8c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c83906138f7565b60405180910390fd5b612c9581611c87565b15612cd5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ccc906137d7565b60405180910390fd5b612ce1600083836125f8565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612d319190613b5c565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b828054612df690613d27565b90600052602060002090601f016020900481019282612e185760008555612e5f565b82601f10612e3157805160ff1916838001178555612e5f565b82800160010185558215612e5f579182015b82811115612e5e578251825591602001919060010190612e43565b5b509050612e6c9190612e70565b5090565b5b80821115612e89576000816000905550600101612e71565b5090565b6000612ea0612e9b84613ab7565b613a92565b905082815260208101848484011115612ebc57612ebb613f23565b5b612ec7848285613ce5565b509392505050565b6000612ee2612edd84613ae8565b613a92565b905082815260208101848484011115612efe57612efd613f23565b5b612f09848285613ce5565b509392505050565b600081359050612f208161463c565b92915050565b600081359050612f3581614653565b92915050565b600081359050612f4a8161466a565b92915050565b600081519050612f5f8161466a565b92915050565b600082601f830112612f7a57612f79613f1e565b5b8135612f8a848260208601612e8d565b91505092915050565b600082601f830112612fa857612fa7613f1e565b5b8135612fb8848260208601612ecf565b91505092915050565b600081359050612fd081614681565b92915050565b600060208284031215612fec57612feb613f2d565b5b6000612ffa84828501612f11565b91505092915050565b6000806040838503121561301a57613019613f2d565b5b600061302885828601612f11565b925050602061303985828601612f11565b9150509250929050565b60008060006060848603121561305c5761305b613f2d565b5b600061306a86828701612f11565b935050602061307b86828701612f11565b925050604061308c86828701612fc1565b9150509250925092565b600080600080608085870312156130b0576130af613f2d565b5b60006130be87828801612f11565b94505060206130cf87828801612f11565b93505060406130e087828801612fc1565b925050606085013567ffffffffffffffff81111561310157613100613f28565b5b61310d87828801612f65565b91505092959194509250565b600080604083850312156131305761312f613f2d565b5b600061313e85828601612f11565b925050602061314f85828601612f26565b9150509250929050565b600080604083850312156131705761316f613f2d565b5b600061317e85828601612f11565b925050602061318f85828601612fc1565b9150509250929050565b6000602082840312156131af576131ae613f2d565b5b60006131bd84828501612f3b565b91505092915050565b6000602082840312156131dc576131db613f2d565b5b60006131ea84828501612f50565b91505092915050565b60006020828403121561320957613208613f2d565b5b600082013567ffffffffffffffff81111561322757613226613f28565b5b61323384828501612f93565b91505092915050565b60006020828403121561325257613251613f2d565b5b600061326084828501612fc1565b91505092915050565b61327281613c71565b82525050565b61328181613c83565b82525050565b600061329282613b19565b61329c8185613b2f565b93506132ac818560208601613cf4565b6132b581613f32565b840191505092915050565b60006132cb82613b24565b6132d58185613b40565b93506132e5818560208601613cf4565b6132ee81613f32565b840191505092915050565b600061330482613b24565b61330e8185613b51565b935061331e818560208601613cf4565b80840191505092915050565b6000613337602b83613b40565b915061334282613f43565b604082019050919050565b600061335a603283613b40565b915061336582613f92565b604082019050919050565b600061337d602683613b40565b915061338882613fe1565b604082019050919050565b60006133a0601c83613b40565b91506133ab82614030565b602082019050919050565b60006133c3602483613b40565b91506133ce82614059565b604082019050919050565b60006133e6602883613b40565b91506133f1826140a8565b604082019050919050565b6000613409601983613b40565b9150613414826140f7565b602082019050919050565b600061342c602c83613b40565b915061343782614120565b604082019050919050565b600061344f603883613b40565b915061345a8261416f565b604082019050919050565b6000613472602a83613b40565b915061347d826141be565b604082019050919050565b6000613495602983613b40565b91506134a08261420d565b604082019050919050565b60006134b8603483613b40565b91506134c38261425c565b604082019050919050565b60006134db602083613b40565b91506134e6826142ab565b602082019050919050565b60006134fe602c83613b40565b9150613509826142d4565b604082019050919050565b6000613521600583613b51565b915061352c82614323565b600582019050919050565b6000613544602083613b40565b915061354f8261434c565b602082019050919050565b6000613567602983613b40565b915061357282614375565b604082019050919050565b600061358a602f83613b40565b9150613595826143c4565b604082019050919050565b60006135ad602183613b40565b91506135b882614413565b604082019050919050565b60006135d0602483613b40565b91506135db82614462565b604082019050919050565b60006135f3602183613b40565b91506135fe826144b1565b604082019050919050565b6000613616602c83613b40565b915061362182614500565b604082019050919050565b6000613639602d83613b40565b91506136448261454f565b604082019050919050565b600061365c603183613b40565b91506136678261459e565b604082019050919050565b600061367f602c83613b40565b915061368a826145ed565b604082019050919050565b61369e81613cdb565b82525050565b60006136b082856132f9565b91506136bc82846132f9565b91506136c782613514565b91508190509392505050565b60006020820190506136e86000830184613269565b92915050565b60006080820190506137036000830187613269565b6137106020830186613269565b61371d6040830185613695565b818103606083015261372f8184613287565b905095945050505050565b600060208201905061374f6000830184613278565b92915050565b6000602082019050818103600083015261376f81846132c0565b905092915050565b600060208201905081810360008301526137908161332a565b9050919050565b600060208201905081810360008301526137b08161334d565b9050919050565b600060208201905081810360008301526137d081613370565b9050919050565b600060208201905081810360008301526137f081613393565b9050919050565b60006020820190508181036000830152613810816133b6565b9050919050565b60006020820190508181036000830152613830816133d9565b9050919050565b60006020820190508181036000830152613850816133fc565b9050919050565b600060208201905081810360008301526138708161341f565b9050919050565b6000602082019050818103600083015261389081613442565b9050919050565b600060208201905081810360008301526138b081613465565b9050919050565b600060208201905081810360008301526138d081613488565b9050919050565b600060208201905081810360008301526138f0816134ab565b9050919050565b60006020820190508181036000830152613910816134ce565b9050919050565b60006020820190508181036000830152613930816134f1565b9050919050565b6000602082019050818103600083015261395081613537565b9050919050565b600060208201905081810360008301526139708161355a565b9050919050565b600060208201905081810360008301526139908161357d565b9050919050565b600060208201905081810360008301526139b0816135a0565b9050919050565b600060208201905081810360008301526139d0816135c3565b9050919050565b600060208201905081810360008301526139f0816135e6565b9050919050565b60006020820190508181036000830152613a1081613609565b9050919050565b60006020820190508181036000830152613a308161362c565b9050919050565b60006020820190508181036000830152613a508161364f565b9050919050565b60006020820190508181036000830152613a7081613672565b9050919050565b6000602082019050613a8c6000830184613695565b92915050565b6000613a9c613aad565b9050613aa88282613d59565b919050565b6000604051905090565b600067ffffffffffffffff821115613ad257613ad1613eef565b5b613adb82613f32565b9050602081019050919050565b600067ffffffffffffffff821115613b0357613b02613eef565b5b613b0c82613f32565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000613b6782613cdb565b9150613b7283613cdb565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613ba757613ba6613e04565b5b828201905092915050565b6000613bbd82613cdb565b9150613bc883613cdb565b925082613bd857613bd7613e33565b5b828204905092915050565b6000613bee82613cdb565b9150613bf983613cdb565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613c3257613c31613e04565b5b828202905092915050565b6000613c4882613cdb565b9150613c5383613cdb565b925082821015613c6657613c65613e04565b5b828203905092915050565b6000613c7c82613cbb565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015613d12578082015181840152602081019050613cf7565b83811115613d21576000848401525b50505050565b60006002820490506001821680613d3f57607f821691505b60208210811415613d5357613d52613e62565b5b50919050565b613d6282613f32565b810181811067ffffffffffffffff82111715613d8157613d80613eef565b5b80604052505050565b6000613d9582613cdb565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613dc857613dc7613e04565b5b600182019050919050565b6000613dde82613cdb565b9150613de983613cdb565b925082613df957613df8613e33565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f596f75206861766520616c7265616479206d696e74656420352066726565204c60008201527f6172766144616473000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4554482076616c75652073656e7420697320746f6f206c6974746c6520666f7260008201527f2074686973206d616e79204c6172766144616473000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f546865726520617265206e6f206d6f72652066726565206d696e7473206c656660008201527f7400000000000000000000000000000000000000000000000000000000000000602082015250565b7f4d696e7420636f756e7420697320746f6f206c6974746c65206f7220746f6f2060008201527f6869676800000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f506c65617365207761697420756e74696c207468652064726f7020697320616360008201527f7469766520746f206d696e740000000000000000000000000000000000000000602082015250565b7f507572636861736520776f756c6420657863656564206d617820737570706c7960008201527f206f66204c617276614461647300000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b61464581613c71565b811461465057600080fd5b50565b61465c81613c83565b811461466757600080fd5b50565b61467381613c8f565b811461467e57600080fd5b50565b61468a81613cdb565b811461469557600080fd5b5056fea2646970667358221220f4eaa58f46a3a7e2b9dd0a6497cbadbc2b79471373b6ea17487b083021fce3dd64736f6c63430008070033

Deployed Bytecode

0x6080604052600436106102255760003560e01c806370a0823111610123578063b6f3ce00116100ab578063da4acf841161006f578063da4acf84146107d2578063dbcaa52c146107fb578063e985e9c514610826578063eb20ebff14610863578063f2fde38b1461088e57610225565b8063b6f3ce00146106fe578063b88d4fde14610727578063c87b56dd14610750578063ca98a7331461078d578063d554440f146107b657610225565b80638da5cb5b116100f25780638da5cb5b1461063f57806391b7f5ed1461066a57806395d89b411461069357806396f8f6dd146106be578063a22cb465146106d557610225565b806370a0823114610597578063715018a6146105d4578063742a4c9b146105eb57806380b173351461061457610225565b80633b4c4b25116101b157806352bbe9141161017557806352bbe914146104b057806355f804b3146104db5780636352211e146105045780636c0360eb146105415780636de9f32b1461056c57610225565b80633b4c4b25146103df5780633ccfd60b1461040857806342842e0e1461041f5780634c419a29146104485780634f6ccce71461047357610225565b8063095ea7b3116101f8578063095ea7b3146102fa57806318160ddd146103235780631e8024861461034e57806323b872dd146103795780632f745c59146103a257610225565b806301ffc9a71461022a578063052939051461026757806306fdde0314610292578063081812fc146102bd575b600080fd5b34801561023657600080fd5b50610251600480360381019061024c9190613199565b6108b7565b60405161025e919061373a565b60405180910390f35b34801561027357600080fd5b5061027c610931565b604051610289919061373a565b60405180910390f35b34801561029e57600080fd5b506102a7610944565b6040516102b49190613755565b60405180910390f35b3480156102c957600080fd5b506102e460048036038101906102df919061323c565b6109d6565b6040516102f191906136d3565b60405180910390f35b34801561030657600080fd5b50610321600480360381019061031c9190613159565b610a5b565b005b34801561032f57600080fd5b50610338610b73565b6040516103459190613a77565b60405180910390f35b34801561035a57600080fd5b50610363610b80565b6040516103709190613a77565b60405180910390f35b34801561038557600080fd5b506103a0600480360381019061039b9190613043565b610b86565b005b3480156103ae57600080fd5b506103c960048036038101906103c49190613159565b610be6565b6040516103d69190613a77565b60405180910390f35b3480156103eb57600080fd5b506104066004803603810190610401919061323c565b610c8b565b005b34801561041457600080fd5b5061041d610d11565b005b34801561042b57600080fd5b5061044660048036038101906104419190613043565b610dcd565b005b34801561045457600080fd5b5061045d610ded565b60405161046a9190613a77565b60405180910390f35b34801561047f57600080fd5b5061049a6004803603810190610495919061323c565b610df3565b6040516104a79190613a77565b60405180910390f35b3480156104bc57600080fd5b506104c5610e64565b6040516104d29190613a77565b60405180910390f35b3480156104e757600080fd5b5061050260048036038101906104fd91906131f3565b610e6a565b005b34801561051057600080fd5b5061052b6004803603810190610526919061323c565b610f00565b60405161053891906136d3565b60405180910390f35b34801561054d57600080fd5b50610556610fb2565b6040516105639190613755565b60405180910390f35b34801561057857600080fd5b50610581611040565b60405161058e9190613a77565b60405180910390f35b3480156105a357600080fd5b506105be60048036038101906105b99190612fd6565b611046565b6040516105cb9190613a77565b60405180910390f35b3480156105e057600080fd5b506105e96110fe565b005b3480156105f757600080fd5b50610612600480360381019061060d919061323c565b611186565b005b34801561062057600080fd5b5061062961120c565b6040516106369190613a77565b60405180910390f35b34801561064b57600080fd5b50610654611212565b60405161066191906136d3565b60405180910390f35b34801561067657600080fd5b50610691600480360381019061068c919061323c565b61123c565b005b34801561069f57600080fd5b506106a86112c2565b6040516106b59190613755565b60405180910390f35b3480156106ca57600080fd5b506106d3611354565b005b3480156106e157600080fd5b506106fc60048036038101906106f79190613119565b6113fc565b005b34801561070a57600080fd5b506107256004803603810190610720919061323c565b611412565b005b34801561073357600080fd5b5061074e60048036038101906107499190613096565b611498565b005b34801561075c57600080fd5b506107776004803603810190610772919061323c565b6114fa565b6040516107849190613755565b60405180910390f35b34801561079957600080fd5b506107b460048036038101906107af919061323c565b6115a1565b005b6107d060048036038101906107cb919061323c565b611627565b005b3480156107de57600080fd5b506107f960048036038101906107f4919061323c565b6117c4565b005b34801561080757600080fd5b50610810611a0d565b60405161081d9190613a77565b60405180910390f35b34801561083257600080fd5b5061084d60048036038101906108489190613003565b611a13565b60405161085a919061373a565b60405180910390f35b34801561086f57600080fd5b50610878611aa7565b6040516108859190613a77565b60405180910390f35b34801561089a57600080fd5b506108b560048036038101906108b09190612fd6565b611aad565b005b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061092a575061092982611ba5565b5b9050919050565b600f60009054906101000a900460ff1681565b60606000805461095390613d27565b80601f016020809104026020016040519081016040528092919081815260200182805461097f90613d27565b80156109cc5780601f106109a1576101008083540402835291602001916109cc565b820191906000526020600020905b8154815290600101906020018083116109af57829003601f168201915b5050505050905090565b60006109e182611c87565b610a20576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a1790613917565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610a6682610f00565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610ad7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ace906139d7565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610af6611cf3565b73ffffffffffffffffffffffffffffffffffffffff161480610b255750610b2481610b1f611cf3565b611a13565b5b610b64576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b5b90613877565b60405180910390fd5b610b6e8383611cfb565b505050565b6000600880549050905090565b600c5481565b610b97610b91611cf3565b82611db4565b610bd6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bcd90613a37565b60405180910390fd5b610be1838383611e92565b505050565b6000610bf183611046565b8210610c32576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c2990613777565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b610c93611cf3565b73ffffffffffffffffffffffffffffffffffffffff16610cb1611212565b73ffffffffffffffffffffffffffffffffffffffff1614610d07576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cfe90613937565b60405180910390fd5b80600e8190555050565b610d19611cf3565b73ffffffffffffffffffffffffffffffffffffffff16610d37611212565b73ffffffffffffffffffffffffffffffffffffffff1614610d8d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d8490613937565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050610dcb57600080fd5b565b610de883838360405180602001604052806000815250611498565b505050565b600b5481565b6000610dfd610b73565b8210610e3e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e3590613a57565b60405180910390fd5b60088281548110610e5257610e51613ec0565b5b90600052602060002001549050919050565b600e5481565b610e72611cf3565b73ffffffffffffffffffffffffffffffffffffffff16610e90611212565b73ffffffffffffffffffffffffffffffffffffffff1614610ee6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610edd90613937565b60405180910390fd5b8060109080519060200190610efc929190612dea565b5050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610fa9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fa0906138b7565b60405180910390fd5b80915050919050565b60108054610fbf90613d27565b80601f0160208091040260200160405190810160405280929190818152602001828054610feb90613d27565b80156110385780601f1061100d57610100808354040283529160200191611038565b820191906000526020600020905b81548152906001019060200180831161101b57829003601f168201915b505050505081565b60115481565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156110b7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110ae90613897565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611106611cf3565b73ffffffffffffffffffffffffffffffffffffffff16611124611212565b73ffffffffffffffffffffffffffffffffffffffff161461117a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161117190613937565b60405180910390fd5b61118460006120ee565b565b61118e611cf3565b73ffffffffffffffffffffffffffffffffffffffff166111ac611212565b73ffffffffffffffffffffffffffffffffffffffff1614611202576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111f990613937565b60405180910390fd5b8060128190555050565b60125481565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b611244611cf3565b73ffffffffffffffffffffffffffffffffffffffff16611262611212565b73ffffffffffffffffffffffffffffffffffffffff16146112b8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112af90613937565b60405180910390fd5b80600b8190555050565b6060600180546112d190613d27565b80601f01602080910402602001604051908101604052809291908181526020018280546112fd90613d27565b801561134a5780601f1061131f5761010080835404028352916020019161134a565b820191906000526020600020905b81548152906001019060200180831161132d57829003601f168201915b5050505050905090565b61135c611cf3565b73ffffffffffffffffffffffffffffffffffffffff1661137a611212565b73ffffffffffffffffffffffffffffffffffffffff16146113d0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113c790613937565b60405180910390fd5b600f60009054906101000a900460ff1615600f60006101000a81548160ff021916908315150217905550565b61140e611407611cf3565b83836121b4565b5050565b61141a611cf3565b73ffffffffffffffffffffffffffffffffffffffff16611438611212565b73ffffffffffffffffffffffffffffffffffffffff161461148e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161148590613937565b60405180910390fd5b80600d8190555050565b6114a96114a3611cf3565b83611db4565b6114e8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114df90613a37565b60405180910390fd5b6114f484848484612321565b50505050565b606061150582611c87565b611544576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161153b90613977565b60405180910390fd5b600061154e61237d565b9050600081511161156e5760405180602001604052806000815250611599565b806115788461240f565b6040516020016115899291906136a4565b6040516020818303038152906040525b915050919050565b6115a9611cf3565b73ffffffffffffffffffffffffffffffffffffffff166115c7611212565b73ffffffffffffffffffffffffffffffffffffffff161461161d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161161490613937565b60405180910390fd5b80600c8190555050565b600f60009054906101000a900460ff16611676576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161166d906139f7565b60405180910390fd5b6000811180156116885750600d548111155b6116c7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116be906139b7565b60405180910390fd5b600e54816011546116d89190613b5c565b1115611719576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161171090613a17565b60405180910390fd5b80600b546117279190613be3565b341015611769576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611760906138d7565b60405180910390fd5b6000601154905081601160008282546117829190613b5c565b9250508190555060005b828110156117bf5761179e3383612570565b81806117a990613d8a565b92505080806117b790613d8a565b91505061178c565b505050565b600f60009054906101000a900460ff16611813576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161180a906139f7565b60405180910390fd5b6000811180156118255750600c548111155b611864576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161185b906139b7565b60405180910390fd5b601254816011546118759190613b5c565b11156118b6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118ad90613997565b60405180910390fd5b600581601460003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546119039190613b5c565b1115611944576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161193b90613817565b60405180910390fd5b60006011549050816011600082825461195d9190613b5c565b9250508190555081601460003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546119b39190613b5c565b9250508190555060005b82811015611a08576119cf3383612570565b601360008154809291906119e290613d8a565b919050555081806119f290613d8a565b9250508080611a0090613d8a565b9150506119bd565b505050565b60135481565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600d5481565b611ab5611cf3565b73ffffffffffffffffffffffffffffffffffffffff16611ad3611212565b73ffffffffffffffffffffffffffffffffffffffff1614611b29576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b2090613937565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611b99576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b90906137b7565b60405180910390fd5b611ba2816120ee565b50565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480611c7057507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80611c805750611c7f8261258e565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16611d6e83610f00565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000611dbf82611c87565b611dfe576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611df590613857565b60405180910390fd5b6000611e0983610f00565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611e7857508373ffffffffffffffffffffffffffffffffffffffff16611e60846109d6565b73ffffffffffffffffffffffffffffffffffffffff16145b80611e895750611e888185611a13565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16611eb282610f00565b73ffffffffffffffffffffffffffffffffffffffff1614611f08576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611eff90613957565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611f78576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f6f906137f7565b60405180910390fd5b611f838383836125f8565b611f8e600082611cfb565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611fde9190613c3d565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546120359190613b5c565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612223576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161221a90613837565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051612314919061373a565b60405180910390a3505050565b61232c848484611e92565b6123388484848461270c565b612377576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161236e90613797565b60405180910390fd5b50505050565b60606010805461238c90613d27565b80601f01602080910402602001604051908101604052809291908181526020018280546123b890613d27565b80156124055780601f106123da57610100808354040283529160200191612405565b820191906000526020600020905b8154815290600101906020018083116123e857829003601f168201915b5050505050905090565b60606000821415612457576040518060400160405280600181526020017f3000000000000000000000000000000000000000000000000000000000000000815250905061256b565b600082905060005b6000821461248957808061247290613d8a565b915050600a826124829190613bb2565b915061245f565b60008167ffffffffffffffff8111156124a5576124a4613eef565b5b6040519080825280601f01601f1916602001820160405280156124d75781602001600182028036833780820191505090505b5090505b60008514612564576001826124f09190613c3d565b9150600a856124ff9190613dd3565b603061250b9190613b5c565b60f81b81838151811061252157612520613ec0565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561255d9190613bb2565b94506124db565b8093505050505b919050565b61258a8282604051806020016040528060008152506128a3565b5050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6126038383836128fe565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156126465761264181612903565b612685565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161461268457612683838261294c565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156126c8576126c381612ab9565b612707565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614612706576127058282612b8a565b5b5b505050565b600061272d8473ffffffffffffffffffffffffffffffffffffffff16612c09565b15612896578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612756611cf3565b8786866040518563ffffffff1660e01b815260040161277894939291906136ee565b602060405180830381600087803b15801561279257600080fd5b505af19250505080156127c357506040513d601f19601f820116820180604052508101906127c091906131c6565b60015b612846573d80600081146127f3576040519150601f19603f3d011682016040523d82523d6000602084013e6127f8565b606091505b5060008151141561283e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161283590613797565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161491505061289b565b600190505b949350505050565b6128ad8383612c1c565b6128ba600084848461270c565b6128f9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128f090613797565b60405180910390fd5b505050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b6000600161295984611046565b6129639190613c3d565b9050600060076000848152602001908152602001600020549050818114612a48576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b60006001600880549050612acd9190613c3d565b9050600060096000848152602001908152602001600020549050600060088381548110612afd57612afc613ec0565b5b906000526020600020015490508060088381548110612b1f57612b1e613ec0565b5b906000526020600020018190555081600960008381526020019081526020016000208190555060096000858152602001908152602001600020600090556008805480612b6e57612b6d613e91565b5b6001900381819060005260206000200160009055905550505050565b6000612b9583611046565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b600080823b905060008111915050919050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612c8c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c83906138f7565b60405180910390fd5b612c9581611c87565b15612cd5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ccc906137d7565b60405180910390fd5b612ce1600083836125f8565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612d319190613b5c565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b828054612df690613d27565b90600052602060002090601f016020900481019282612e185760008555612e5f565b82601f10612e3157805160ff1916838001178555612e5f565b82800160010185558215612e5f579182015b82811115612e5e578251825591602001919060010190612e43565b5b509050612e6c9190612e70565b5090565b5b80821115612e89576000816000905550600101612e71565b5090565b6000612ea0612e9b84613ab7565b613a92565b905082815260208101848484011115612ebc57612ebb613f23565b5b612ec7848285613ce5565b509392505050565b6000612ee2612edd84613ae8565b613a92565b905082815260208101848484011115612efe57612efd613f23565b5b612f09848285613ce5565b509392505050565b600081359050612f208161463c565b92915050565b600081359050612f3581614653565b92915050565b600081359050612f4a8161466a565b92915050565b600081519050612f5f8161466a565b92915050565b600082601f830112612f7a57612f79613f1e565b5b8135612f8a848260208601612e8d565b91505092915050565b600082601f830112612fa857612fa7613f1e565b5b8135612fb8848260208601612ecf565b91505092915050565b600081359050612fd081614681565b92915050565b600060208284031215612fec57612feb613f2d565b5b6000612ffa84828501612f11565b91505092915050565b6000806040838503121561301a57613019613f2d565b5b600061302885828601612f11565b925050602061303985828601612f11565b9150509250929050565b60008060006060848603121561305c5761305b613f2d565b5b600061306a86828701612f11565b935050602061307b86828701612f11565b925050604061308c86828701612fc1565b9150509250925092565b600080600080608085870312156130b0576130af613f2d565b5b60006130be87828801612f11565b94505060206130cf87828801612f11565b93505060406130e087828801612fc1565b925050606085013567ffffffffffffffff81111561310157613100613f28565b5b61310d87828801612f65565b91505092959194509250565b600080604083850312156131305761312f613f2d565b5b600061313e85828601612f11565b925050602061314f85828601612f26565b9150509250929050565b600080604083850312156131705761316f613f2d565b5b600061317e85828601612f11565b925050602061318f85828601612fc1565b9150509250929050565b6000602082840312156131af576131ae613f2d565b5b60006131bd84828501612f3b565b91505092915050565b6000602082840312156131dc576131db613f2d565b5b60006131ea84828501612f50565b91505092915050565b60006020828403121561320957613208613f2d565b5b600082013567ffffffffffffffff81111561322757613226613f28565b5b61323384828501612f93565b91505092915050565b60006020828403121561325257613251613f2d565b5b600061326084828501612fc1565b91505092915050565b61327281613c71565b82525050565b61328181613c83565b82525050565b600061329282613b19565b61329c8185613b2f565b93506132ac818560208601613cf4565b6132b581613f32565b840191505092915050565b60006132cb82613b24565b6132d58185613b40565b93506132e5818560208601613cf4565b6132ee81613f32565b840191505092915050565b600061330482613b24565b61330e8185613b51565b935061331e818560208601613cf4565b80840191505092915050565b6000613337602b83613b40565b915061334282613f43565b604082019050919050565b600061335a603283613b40565b915061336582613f92565b604082019050919050565b600061337d602683613b40565b915061338882613fe1565b604082019050919050565b60006133a0601c83613b40565b91506133ab82614030565b602082019050919050565b60006133c3602483613b40565b91506133ce82614059565b604082019050919050565b60006133e6602883613b40565b91506133f1826140a8565b604082019050919050565b6000613409601983613b40565b9150613414826140f7565b602082019050919050565b600061342c602c83613b40565b915061343782614120565b604082019050919050565b600061344f603883613b40565b915061345a8261416f565b604082019050919050565b6000613472602a83613b40565b915061347d826141be565b604082019050919050565b6000613495602983613b40565b91506134a08261420d565b604082019050919050565b60006134b8603483613b40565b91506134c38261425c565b604082019050919050565b60006134db602083613b40565b91506134e6826142ab565b602082019050919050565b60006134fe602c83613b40565b9150613509826142d4565b604082019050919050565b6000613521600583613b51565b915061352c82614323565b600582019050919050565b6000613544602083613b40565b915061354f8261434c565b602082019050919050565b6000613567602983613b40565b915061357282614375565b604082019050919050565b600061358a602f83613b40565b9150613595826143c4565b604082019050919050565b60006135ad602183613b40565b91506135b882614413565b604082019050919050565b60006135d0602483613b40565b91506135db82614462565b604082019050919050565b60006135f3602183613b40565b91506135fe826144b1565b604082019050919050565b6000613616602c83613b40565b915061362182614500565b604082019050919050565b6000613639602d83613b40565b91506136448261454f565b604082019050919050565b600061365c603183613b40565b91506136678261459e565b604082019050919050565b600061367f602c83613b40565b915061368a826145ed565b604082019050919050565b61369e81613cdb565b82525050565b60006136b082856132f9565b91506136bc82846132f9565b91506136c782613514565b91508190509392505050565b60006020820190506136e86000830184613269565b92915050565b60006080820190506137036000830187613269565b6137106020830186613269565b61371d6040830185613695565b818103606083015261372f8184613287565b905095945050505050565b600060208201905061374f6000830184613278565b92915050565b6000602082019050818103600083015261376f81846132c0565b905092915050565b600060208201905081810360008301526137908161332a565b9050919050565b600060208201905081810360008301526137b08161334d565b9050919050565b600060208201905081810360008301526137d081613370565b9050919050565b600060208201905081810360008301526137f081613393565b9050919050565b60006020820190508181036000830152613810816133b6565b9050919050565b60006020820190508181036000830152613830816133d9565b9050919050565b60006020820190508181036000830152613850816133fc565b9050919050565b600060208201905081810360008301526138708161341f565b9050919050565b6000602082019050818103600083015261389081613442565b9050919050565b600060208201905081810360008301526138b081613465565b9050919050565b600060208201905081810360008301526138d081613488565b9050919050565b600060208201905081810360008301526138f0816134ab565b9050919050565b60006020820190508181036000830152613910816134ce565b9050919050565b60006020820190508181036000830152613930816134f1565b9050919050565b6000602082019050818103600083015261395081613537565b9050919050565b600060208201905081810360008301526139708161355a565b9050919050565b600060208201905081810360008301526139908161357d565b9050919050565b600060208201905081810360008301526139b0816135a0565b9050919050565b600060208201905081810360008301526139d0816135c3565b9050919050565b600060208201905081810360008301526139f0816135e6565b9050919050565b60006020820190508181036000830152613a1081613609565b9050919050565b60006020820190508181036000830152613a308161362c565b9050919050565b60006020820190508181036000830152613a508161364f565b9050919050565b60006020820190508181036000830152613a7081613672565b9050919050565b6000602082019050613a8c6000830184613695565b92915050565b6000613a9c613aad565b9050613aa88282613d59565b919050565b6000604051905090565b600067ffffffffffffffff821115613ad257613ad1613eef565b5b613adb82613f32565b9050602081019050919050565b600067ffffffffffffffff821115613b0357613b02613eef565b5b613b0c82613f32565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000613b6782613cdb565b9150613b7283613cdb565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613ba757613ba6613e04565b5b828201905092915050565b6000613bbd82613cdb565b9150613bc883613cdb565b925082613bd857613bd7613e33565b5b828204905092915050565b6000613bee82613cdb565b9150613bf983613cdb565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613c3257613c31613e04565b5b828202905092915050565b6000613c4882613cdb565b9150613c5383613cdb565b925082821015613c6657613c65613e04565b5b828203905092915050565b6000613c7c82613cbb565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015613d12578082015181840152602081019050613cf7565b83811115613d21576000848401525b50505050565b60006002820490506001821680613d3f57607f821691505b60208210811415613d5357613d52613e62565b5b50919050565b613d6282613f32565b810181811067ffffffffffffffff82111715613d8157613d80613eef565b5b80604052505050565b6000613d9582613cdb565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613dc857613dc7613e04565b5b600182019050919050565b6000613dde82613cdb565b9150613de983613cdb565b925082613df957613df8613e33565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f596f75206861766520616c7265616479206d696e74656420352066726565204c60008201527f6172766144616473000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4554482076616c75652073656e7420697320746f6f206c6974746c6520666f7260008201527f2074686973206d616e79204c6172766144616473000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f546865726520617265206e6f206d6f72652066726565206d696e7473206c656660008201527f7400000000000000000000000000000000000000000000000000000000000000602082015250565b7f4d696e7420636f756e7420697320746f6f206c6974746c65206f7220746f6f2060008201527f6869676800000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f506c65617365207761697420756e74696c207468652064726f7020697320616360008201527f7469766520746f206d696e740000000000000000000000000000000000000000602082015250565b7f507572636861736520776f756c6420657863656564206d617820737570706c7960008201527f206f66204c617276614461647300000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b61464581613c71565b811461465057600080fd5b50565b61465c81613c83565b811461466757600080fd5b50565b61467381613c8f565b811461467e57600080fd5b50565b61468a81613cdb565b811461469557600080fd5b5056fea2646970667358221220f4eaa58f46a3a7e2b9dd0a6497cbadbc2b79471373b6ea17487b083021fce3dd64736f6c63430008070033

Deployed Bytecode Sourcemap

43599:3019:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34947:224;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43820:34;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21607:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23175:221;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22698:411;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;35587:113;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43706:34;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23925:339;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;35255:256;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46204:93;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;44134:112;;;;;;;;;;;;;:::i;:::-;;24335:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;43656:43;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35777:233;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43785:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45999:100;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;21301:239;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43861:26;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43894:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21031:208;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42751:103;;;;;;;;;;;;;:::i;:::-;;46305:94;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;43932:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42100:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46107:89;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;21776:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44254:93;;;;;;;;;;;;;:::i;:::-;;23468:155;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;46518:95;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;24591:328;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;21951:343;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46407:103;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;45165:710;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;44355:802;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;43970:35;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23694:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43747:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43009:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;34947:224;35049:4;35088:35;35073:50;;;:11;:50;;;;:90;;;;35127:36;35151:11;35127:23;:36::i;:::-;35073:90;35066:97;;34947:224;;;:::o;43820:34::-;;;;;;;;;;;;;:::o;21607:100::-;21661:13;21694:5;21687:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21607:100;:::o;23175:221::-;23251:7;23279:16;23287:7;23279;:16::i;:::-;23271:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;23364:15;:24;23380:7;23364:24;;;;;;;;;;;;;;;;;;;;;23357:31;;23175:221;;;:::o;22698:411::-;22779:13;22795:23;22810:7;22795:14;:23::i;:::-;22779:39;;22843:5;22837:11;;:2;:11;;;;22829:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;22937:5;22921:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;22946:37;22963:5;22970:12;:10;:12::i;:::-;22946:16;:37::i;:::-;22921:62;22899:168;;;;;;;;;;;;:::i;:::-;;;;;;;;;23080:21;23089:2;23093:7;23080:8;:21::i;:::-;22768:341;22698:411;;:::o;35587:113::-;35648:7;35675:10;:17;;;;35668:24;;35587:113;:::o;43706:34::-;;;;:::o;23925:339::-;24120:41;24139:12;:10;:12::i;:::-;24153:7;24120:18;:41::i;:::-;24112:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;24228:28;24238:4;24244:2;24248:7;24228:9;:28::i;:::-;23925:339;;;:::o;35255:256::-;35352:7;35388:23;35405:5;35388:16;:23::i;:::-;35380:5;:31;35372:87;;;;;;;;;;;;:::i;:::-;;;;;;;;;35477:12;:19;35490:5;35477:19;;;;;;;;;;;;;;;:26;35497:5;35477:26;;;;;;;;;;;;35470:33;;35255:256;;;;:::o;46204:93::-;42331:12;:10;:12::i;:::-;42320:23;;:7;:5;:7::i;:::-;:23;;;42312:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;46280:9:::1;46268;:21;;;;46204:93:::0;:::o;44134:112::-;42331:12;:10;:12::i;:::-;42320:23;;:7;:5;:7::i;:::-;:23;;;42312:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;44198:10:::1;44190:24;;:47;44215:21;44190:47;;;;;;;;;;;;;;;;;;;;;;;44182:56;;;::::0;::::1;;44134:112::o:0;24335:185::-;24473:39;24490:4;24496:2;24500:7;24473:39;;;;;;;;;;;;:16;:39::i;:::-;24335:185;;;:::o;43656:43::-;;;;:::o;35777:233::-;35852:7;35888:30;:28;:30::i;:::-;35880:5;:38;35872:95;;;;;;;;;;;;:::i;:::-;;;;;;;;;35985:10;35996:5;35985:17;;;;;;;;:::i;:::-;;;;;;;;;;35978:24;;35777:233;;;:::o;43785:28::-;;;;:::o;45999:100::-;42331:12;:10;:12::i;:::-;42320:23;;:7;:5;:7::i;:::-;:23;;;42312:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;46081:10:::1;46071:7;:20;;;;;;;;;;;;:::i;:::-;;45999:100:::0;:::o;21301:239::-;21373:7;21393:13;21409:7;:16;21417:7;21409:16;;;;;;;;;;;;;;;;;;;;;21393:32;;21461:1;21444:19;;:5;:19;;;;21436:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;21527:5;21520:12;;;21301:239;;;:::o;43861:26::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;43894:31::-;;;;:::o;21031:208::-;21103:7;21148:1;21131:19;;:5;:19;;;;21123:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;21215:9;:16;21225:5;21215:16;;;;;;;;;;;;;;;;21208:23;;21031:208;;;:::o;42751:103::-;42331:12;:10;:12::i;:::-;42320:23;;:7;:5;:7::i;:::-;:23;;;42312:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;42816:30:::1;42843:1;42816:18;:30::i;:::-;42751:103::o:0;46305:94::-;42331:12;:10;:12::i;:::-;42320:23;;:7;:5;:7::i;:::-;:23;;;42312:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;46384:7:::1;46372:9;:19;;;;46305:94:::0;:::o;43932:31::-;;;;:::o;42100:87::-;42146:7;42173:6;;;;;;;;;;;42166:13;;42100:87;:::o;46107:89::-;42331:12;:10;:12::i;:::-;42320:23;;:7;:5;:7::i;:::-;:23;;;42312:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;46180:8:::1;46169;:19;;;;46107:89:::0;:::o;21776:104::-;21832:13;21865:7;21858:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21776:104;:::o;44254:93::-;42331:12;:10;:12::i;:::-;42320:23;;:7;:5;:7::i;:::-;:23;;;42312:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;44325:14:::1;;;;;;;;;;;44324:15;44307:14;;:32;;;;;;;;;;;;;;;;;;44254:93::o:0;23468:155::-;23563:52;23582:12;:10;:12::i;:::-;23596:8;23606;23563:18;:52::i;:::-;23468:155;;:::o;46518:95::-;42331:12;:10;:12::i;:::-;42320:23;;:7;:5;:7::i;:::-;:23;;;42312:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;46599:6:::1;46582:14;:23;;;;46518:95:::0;:::o;24591:328::-;24766:41;24785:12;:10;:12::i;:::-;24799:7;24766:18;:41::i;:::-;24758:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;24872:39;24886:4;24892:2;24896:7;24905:5;24872:13;:39::i;:::-;24591:328;;;;:::o;21951:343::-;22024:13;22058:16;22066:7;22058;:16::i;:::-;22050:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;22139:21;22163:10;:8;:10::i;:::-;22139:34;;22215:1;22197:7;22191:21;:25;:95;;;;;;;;;;;;;;;;;22243:7;22252:18;:7;:16;:18::i;:::-;22226:54;;;;;;;;;:::i;:::-;;;;;;;;;;;;;22191:95;22184:102;;;21951:343;;;:::o;46407:103::-;42331:12;:10;:12::i;:::-;42320:23;;:7;:5;:7::i;:::-;:23;;;42312:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;46496:6:::1;46475:18;:27;;;;46407:103:::0;:::o;45165:710::-;45238:14;;;;;;;;;;;45230:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;45337:1;45320:14;:18;:54;;;;;45360:14;;45342;:32;;45320:54;45312:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;45467:9;;45449:14;45434:12;;:29;;;;:::i;:::-;:42;;45426:100;;;;;;;;;;;;:::i;:::-;;;;;;;;;45569:14;45558:8;;:25;;;;:::i;:::-;45545:9;:38;;45537:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;45653:18;45674:12;;45653:33;;45713:14;45697:12;;:30;;;;;;;:::i;:::-;;;;;;;;45745:6;45740:128;45761:14;45757:1;:18;45740:128;;;45796:33;45806:10;45818;45796:9;:33::i;:::-;45844:12;;;;;:::i;:::-;;;;45777:3;;;;;:::i;:::-;;;;45740:128;;;;45219:656;45165:710;:::o;44355:802::-;44424:14;;;;;;;;;;;44416:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;44523:1;44506:14;:18;:58;;;;;44546:18;;44528:14;:36;;44506:58;44498:107;;;;;;;;;;;;:::i;:::-;;;;;;;;;44657:9;;44639:14;44624:12;;:29;;;;:::i;:::-;:42;;44616:88;;;;;;;;;;;;:::i;:::-;;;;;;;;;44779:1;44761:14;44723:23;:35;44747:10;44723:35;;;;;;;;;;;;;;;;:52;;;;:::i;:::-;:57;;44715:110;;;;;;;;;;;;:::i;:::-;;;;;;;;;44838:18;44859:12;;44838:33;;44898:14;44882:12;;:30;;;;;;;:::i;:::-;;;;;;;;44962:14;44923:23;:35;44947:10;44923:35;;;;;;;;;;;;;;;;:53;;;;;;;:::i;:::-;;;;;;;;44994:6;44989:161;45010:14;45006:1;:18;44989:161;;;45045:33;45055:10;45067;45045:9;:33::i;:::-;45093:16;;:18;;;;;;;;;:::i;:::-;;;;;;45126:12;;;;;:::i;:::-;;;;45026:3;;;;;:::i;:::-;;;;44989:161;;;;44405:752;44355:802;:::o;43970:35::-;;;;:::o;23694:164::-;23791:4;23815:18;:25;23834:5;23815:25;;;;;;;;;;;;;;;:35;23841:8;23815:35;;;;;;;;;;;;;;;;;;;;;;;;;23808:42;;23694:164;;;;:::o;43747:31::-;;;;:::o;43009:201::-;42331:12;:10;:12::i;:::-;42320:23;;:7;:5;:7::i;:::-;:23;;;42312:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;43118:1:::1;43098:22;;:8;:22;;;;43090:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;43174:28;43193:8;43174:18;:28::i;:::-;43009:201:::0;:::o;20662:305::-;20764:4;20816:25;20801:40;;;:11;:40;;;;:105;;;;20873:33;20858:48;;;:11;:48;;;;20801:105;:158;;;;20923:36;20947:11;20923:23;:36::i;:::-;20801:158;20781:178;;20662:305;;;:::o;26429:127::-;26494:4;26546:1;26518:30;;:7;:16;26526:7;26518:16;;;;;;;;;;;;;;;;;;;;;:30;;;;26511:37;;26429:127;;;:::o;17058:98::-;17111:7;17138:10;17131:17;;17058:98;:::o;30411:174::-;30513:2;30486:15;:24;30502:7;30486:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;30569:7;30565:2;30531:46;;30540:23;30555:7;30540:14;:23::i;:::-;30531:46;;;;;;;;;;;;30411:174;;:::o;26723:348::-;26816:4;26841:16;26849:7;26841;:16::i;:::-;26833:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;26917:13;26933:23;26948:7;26933:14;:23::i;:::-;26917:39;;26986:5;26975:16;;:7;:16;;;:51;;;;27019:7;26995:31;;:20;27007:7;26995:11;:20::i;:::-;:31;;;26975:51;:87;;;;27030:32;27047:5;27054:7;27030:16;:32::i;:::-;26975:87;26967:96;;;26723:348;;;;:::o;29715:578::-;29874:4;29847:31;;:23;29862:7;29847:14;:23::i;:::-;:31;;;29839:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;29957:1;29943:16;;:2;:16;;;;29935:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;30013:39;30034:4;30040:2;30044:7;30013:20;:39::i;:::-;30117:29;30134:1;30138:7;30117:8;:29::i;:::-;30178:1;30159:9;:15;30169:4;30159:15;;;;;;;;;;;;;;;;:20;;;;;;;:::i;:::-;;;;;;;;30207:1;30190:9;:13;30200:2;30190:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;30238:2;30219:7;:16;30227:7;30219:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;30277:7;30273:2;30258:27;;30267:4;30258:27;;;;;;;;;;;;29715:578;;;:::o;43370:191::-;43444:16;43463:6;;;;;;;;;;;43444:25;;43489:8;43480:6;;:17;;;;;;;;;;;;;;;;;;43544:8;43513:40;;43534:8;43513:40;;;;;;;;;;;;43433:128;43370:191;:::o;30727:315::-;30882:8;30873:17;;:5;:17;;;;30865:55;;;;;;;;;;;;:::i;:::-;;;;;;;;;30969:8;30931:18;:25;30950:5;30931:25;;;;;;;;;;;;;;;:35;30957:8;30931:35;;;;;;;;;;;;;;;;:46;;;;;;;;;;;;;;;;;;31015:8;30993:41;;31008:5;30993:41;;;31025:8;30993:41;;;;;;:::i;:::-;;;;;;;;30727:315;;;:::o;25801:::-;25958:28;25968:4;25974:2;25978:7;25958:9;:28::i;:::-;26005:48;26028:4;26034:2;26038:7;26047:5;26005:22;:48::i;:::-;25997:111;;;;;;;;;;;;:::i;:::-;;;;;;;;;25801:315;;;;:::o;45883:108::-;45943:13;45976:7;45969:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45883:108;:::o;17583:723::-;17639:13;17869:1;17860:5;:10;17856:53;;;17887:10;;;;;;;;;;;;;;;;;;;;;17856:53;17919:12;17934:5;17919:20;;17950:14;17975:78;17990:1;17982:4;:9;17975:78;;18008:8;;;;;:::i;:::-;;;;18039:2;18031:10;;;;;:::i;:::-;;;17975:78;;;18063:19;18095:6;18085:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18063:39;;18113:154;18129:1;18120:5;:10;18113:154;;18157:1;18147:11;;;;;:::i;:::-;;;18224:2;18216:5;:10;;;;:::i;:::-;18203:2;:24;;;;:::i;:::-;18190:39;;18173:6;18180;18173:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;18253:2;18244:11;;;;;:::i;:::-;;;18113:154;;;18291:6;18277:21;;;;;17583:723;;;;:::o;27413:110::-;27489:26;27499:2;27503:7;27489:26;;;;;;;;;;;;:9;:26::i;:::-;27413:110;;:::o;8172:157::-;8257:4;8296:25;8281:40;;;:11;:40;;;;8274:47;;8172:157;;;:::o;36623:589::-;36767:45;36794:4;36800:2;36804:7;36767:26;:45::i;:::-;36845:1;36829:18;;:4;:18;;;36825:187;;;36864:40;36896:7;36864:31;:40::i;:::-;36825:187;;;36934:2;36926:10;;:4;:10;;;36922:90;;36953:47;36986:4;36992:7;36953:32;:47::i;:::-;36922:90;36825:187;37040:1;37026:16;;:2;:16;;;37022:183;;;37059:45;37096:7;37059:36;:45::i;:::-;37022:183;;;37132:4;37126:10;;:2;:10;;;37122:83;;37153:40;37181:2;37185:7;37153:27;:40::i;:::-;37122:83;37022:183;36623:589;;;:::o;31607:799::-;31762:4;31783:15;:2;:13;;;:15::i;:::-;31779:620;;;31835:2;31819:36;;;31856:12;:10;:12::i;:::-;31870:4;31876:7;31885:5;31819:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;31815:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32078:1;32061:6;:13;:18;32057:272;;;32104:60;;;;;;;;;;:::i;:::-;;;;;;;;32057:272;32279:6;32273:13;32264:6;32260:2;32256:15;32249:38;31815:529;31952:41;;;31942:51;;;:6;:51;;;;31935:58;;;;;31779:620;32383:4;32376:11;;31607:799;;;;;;;:::o;27750:321::-;27880:18;27886:2;27890:7;27880:5;:18::i;:::-;27931:54;27962:1;27966:2;27970:7;27979:5;27931:22;:54::i;:::-;27909:154;;;;;;;;;;;;:::i;:::-;;;;;;;;;27750:321;;;:::o;32978:126::-;;;;:::o;37935:164::-;38039:10;:17;;;;38012:15;:24;38028:7;38012:24;;;;;;;;;;;:44;;;;38067:10;38083:7;38067:24;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37935:164;:::o;38726:988::-;38992:22;39042:1;39017:22;39034:4;39017:16;:22::i;:::-;:26;;;;:::i;:::-;38992:51;;39054:18;39075:17;:26;39093:7;39075:26;;;;;;;;;;;;39054:47;;39222:14;39208:10;:28;39204:328;;39253:19;39275:12;:18;39288:4;39275:18;;;;;;;;;;;;;;;:34;39294:14;39275:34;;;;;;;;;;;;39253:56;;39359:11;39326:12;:18;39339:4;39326:18;;;;;;;;;;;;;;;:30;39345:10;39326:30;;;;;;;;;;;:44;;;;39476:10;39443:17;:30;39461:11;39443:30;;;;;;;;;;;:43;;;;39238:294;39204:328;39628:17;:26;39646:7;39628:26;;;;;;;;;;;39621:33;;;39672:12;:18;39685:4;39672:18;;;;;;;;;;;;;;;:34;39691:14;39672:34;;;;;;;;;;;39665:41;;;38807:907;;38726:988;;:::o;40009:1079::-;40262:22;40307:1;40287:10;:17;;;;:21;;;;:::i;:::-;40262:46;;40319:18;40340:15;:24;40356:7;40340:24;;;;;;;;;;;;40319:45;;40691:19;40713:10;40724:14;40713:26;;;;;;;;:::i;:::-;;;;;;;;;;40691:48;;40777:11;40752:10;40763;40752:22;;;;;;;;:::i;:::-;;;;;;;;;:36;;;;40888:10;40857:15;:28;40873:11;40857:28;;;;;;;;;;;:41;;;;41029:15;:24;41045:7;41029:24;;;;;;;;;;;41022:31;;;41064:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;40080:1008;;;40009:1079;:::o;37513:221::-;37598:14;37615:20;37632:2;37615:16;:20::i;:::-;37598:37;;37673:7;37646:12;:16;37659:2;37646:16;;;;;;;;;;;;;;;:24;37663:6;37646:24;;;;;;;;;;;:34;;;;37720:6;37691:17;:26;37709:7;37691:26;;;;;;;;;;;:35;;;;37587:147;37513:221;;:::o;9102:387::-;9162:4;9370:12;9437:7;9425:20;9417:28;;9480:1;9473:4;:8;9466:15;;;9102:387;;;:::o;28407:382::-;28501:1;28487:16;;:2;:16;;;;28479:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;28560:16;28568:7;28560;:16::i;:::-;28559:17;28551:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;28622:45;28651:1;28655:2;28659:7;28622:20;:45::i;:::-;28697:1;28680:9;:13;28690:2;28680:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;28728:2;28709:7;:16;28717:7;28709:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;28773:7;28769:2;28748:33;;28765:1;28748:33;;;;;;;;;;;;28407:382;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:410:1:-;84:5;109:65;125:48;166:6;125:48;:::i;:::-;109:65;:::i;:::-;100:74;;197:6;190:5;183:21;235:4;228:5;224:16;273:3;264:6;259:3;255:16;252:25;249:112;;;280:79;;:::i;:::-;249:112;370:41;404:6;399:3;394;370:41;:::i;:::-;90:327;7:410;;;;;:::o;423:412::-;501:5;526:66;542:49;584:6;542:49;:::i;:::-;526:66;:::i;:::-;517:75;;615:6;608:5;601:21;653:4;646:5;642:16;691:3;682:6;677:3;673:16;670:25;667:112;;;698:79;;:::i;:::-;667:112;788:41;822:6;817:3;812;788:41;:::i;:::-;507:328;423:412;;;;;:::o;841:139::-;887:5;925:6;912:20;903:29;;941:33;968:5;941:33;:::i;:::-;841:139;;;;:::o;986:133::-;1029:5;1067:6;1054:20;1045:29;;1083:30;1107:5;1083:30;:::i;:::-;986:133;;;;:::o;1125:137::-;1170:5;1208:6;1195:20;1186:29;;1224:32;1250:5;1224:32;:::i;:::-;1125:137;;;;:::o;1268:141::-;1324:5;1355:6;1349:13;1340:22;;1371:32;1397:5;1371:32;:::i;:::-;1268:141;;;;:::o;1428:338::-;1483:5;1532:3;1525:4;1517:6;1513:17;1509:27;1499:122;;1540:79;;:::i;:::-;1499:122;1657:6;1644:20;1682:78;1756:3;1748:6;1741:4;1733:6;1729:17;1682:78;:::i;:::-;1673:87;;1489:277;1428:338;;;;:::o;1786:340::-;1842:5;1891:3;1884:4;1876:6;1872:17;1868:27;1858:122;;1899:79;;:::i;:::-;1858:122;2016:6;2003:20;2041:79;2116:3;2108:6;2101:4;2093:6;2089:17;2041:79;:::i;:::-;2032:88;;1848:278;1786:340;;;;:::o;2132:139::-;2178:5;2216:6;2203:20;2194:29;;2232:33;2259:5;2232:33;:::i;:::-;2132:139;;;;:::o;2277:329::-;2336:6;2385:2;2373:9;2364:7;2360:23;2356:32;2353:119;;;2391:79;;:::i;:::-;2353:119;2511:1;2536:53;2581:7;2572:6;2561:9;2557:22;2536:53;:::i;:::-;2526:63;;2482:117;2277:329;;;;:::o;2612:474::-;2680:6;2688;2737:2;2725:9;2716:7;2712:23;2708:32;2705:119;;;2743:79;;:::i;:::-;2705:119;2863:1;2888:53;2933:7;2924:6;2913:9;2909:22;2888:53;:::i;:::-;2878:63;;2834:117;2990:2;3016:53;3061:7;3052:6;3041:9;3037:22;3016:53;:::i;:::-;3006:63;;2961:118;2612:474;;;;;:::o;3092:619::-;3169:6;3177;3185;3234:2;3222:9;3213:7;3209:23;3205:32;3202:119;;;3240:79;;:::i;:::-;3202:119;3360:1;3385:53;3430:7;3421:6;3410:9;3406:22;3385:53;:::i;:::-;3375:63;;3331:117;3487:2;3513:53;3558:7;3549:6;3538:9;3534:22;3513:53;:::i;:::-;3503:63;;3458:118;3615:2;3641:53;3686:7;3677:6;3666:9;3662:22;3641:53;:::i;:::-;3631:63;;3586:118;3092:619;;;;;:::o;3717:943::-;3812:6;3820;3828;3836;3885:3;3873:9;3864:7;3860:23;3856:33;3853:120;;;3892:79;;:::i;:::-;3853:120;4012:1;4037:53;4082:7;4073:6;4062:9;4058:22;4037:53;:::i;:::-;4027:63;;3983:117;4139:2;4165:53;4210:7;4201:6;4190:9;4186:22;4165:53;:::i;:::-;4155:63;;4110:118;4267:2;4293:53;4338:7;4329:6;4318:9;4314:22;4293:53;:::i;:::-;4283:63;;4238:118;4423:2;4412:9;4408:18;4395:32;4454:18;4446:6;4443:30;4440:117;;;4476:79;;:::i;:::-;4440:117;4581:62;4635:7;4626:6;4615:9;4611:22;4581:62;:::i;:::-;4571:72;;4366:287;3717:943;;;;;;;:::o;4666:468::-;4731:6;4739;4788:2;4776:9;4767:7;4763:23;4759:32;4756:119;;;4794:79;;:::i;:::-;4756:119;4914:1;4939:53;4984:7;4975:6;4964:9;4960:22;4939:53;:::i;:::-;4929:63;;4885:117;5041:2;5067:50;5109:7;5100:6;5089:9;5085:22;5067:50;:::i;:::-;5057:60;;5012:115;4666:468;;;;;:::o;5140:474::-;5208:6;5216;5265:2;5253:9;5244:7;5240:23;5236:32;5233:119;;;5271:79;;:::i;:::-;5233:119;5391:1;5416:53;5461:7;5452:6;5441:9;5437:22;5416:53;:::i;:::-;5406:63;;5362:117;5518:2;5544:53;5589:7;5580:6;5569:9;5565:22;5544:53;:::i;:::-;5534:63;;5489:118;5140:474;;;;;:::o;5620:327::-;5678:6;5727:2;5715:9;5706:7;5702:23;5698:32;5695:119;;;5733:79;;:::i;:::-;5695:119;5853:1;5878:52;5922:7;5913:6;5902:9;5898:22;5878:52;:::i;:::-;5868:62;;5824:116;5620:327;;;;:::o;5953:349::-;6022:6;6071:2;6059:9;6050:7;6046:23;6042:32;6039:119;;;6077:79;;:::i;:::-;6039:119;6197:1;6222:63;6277:7;6268:6;6257:9;6253:22;6222:63;:::i;:::-;6212:73;;6168:127;5953:349;;;;:::o;6308:509::-;6377:6;6426:2;6414:9;6405:7;6401:23;6397:32;6394:119;;;6432:79;;:::i;:::-;6394:119;6580:1;6569:9;6565:17;6552:31;6610:18;6602:6;6599:30;6596:117;;;6632:79;;:::i;:::-;6596:117;6737:63;6792:7;6783:6;6772:9;6768:22;6737:63;:::i;:::-;6727:73;;6523:287;6308:509;;;;:::o;6823:329::-;6882:6;6931:2;6919:9;6910:7;6906:23;6902:32;6899:119;;;6937:79;;:::i;:::-;6899:119;7057:1;7082:53;7127:7;7118:6;7107:9;7103:22;7082:53;:::i;:::-;7072:63;;7028:117;6823:329;;;;:::o;7158:118::-;7245:24;7263:5;7245:24;:::i;:::-;7240:3;7233:37;7158:118;;:::o;7282:109::-;7363:21;7378:5;7363:21;:::i;:::-;7358:3;7351:34;7282:109;;:::o;7397:360::-;7483:3;7511:38;7543:5;7511:38;:::i;:::-;7565:70;7628:6;7623:3;7565:70;:::i;:::-;7558:77;;7644:52;7689:6;7684:3;7677:4;7670:5;7666:16;7644:52;:::i;:::-;7721:29;7743:6;7721:29;:::i;:::-;7716:3;7712:39;7705:46;;7487:270;7397:360;;;;:::o;7763:364::-;7851:3;7879:39;7912:5;7879:39;:::i;:::-;7934:71;7998:6;7993:3;7934:71;:::i;:::-;7927:78;;8014:52;8059:6;8054:3;8047:4;8040:5;8036:16;8014:52;:::i;:::-;8091:29;8113:6;8091:29;:::i;:::-;8086:3;8082:39;8075:46;;7855:272;7763:364;;;;:::o;8133:377::-;8239:3;8267:39;8300:5;8267:39;:::i;:::-;8322:89;8404:6;8399:3;8322:89;:::i;:::-;8315:96;;8420:52;8465:6;8460:3;8453:4;8446:5;8442:16;8420:52;:::i;:::-;8497:6;8492:3;8488:16;8481:23;;8243:267;8133:377;;;;:::o;8516:366::-;8658:3;8679:67;8743:2;8738:3;8679:67;:::i;:::-;8672:74;;8755:93;8844:3;8755:93;:::i;:::-;8873:2;8868:3;8864:12;8857:19;;8516:366;;;:::o;8888:::-;9030:3;9051:67;9115:2;9110:3;9051:67;:::i;:::-;9044:74;;9127:93;9216:3;9127:93;:::i;:::-;9245:2;9240:3;9236:12;9229:19;;8888:366;;;:::o;9260:::-;9402:3;9423:67;9487:2;9482:3;9423:67;:::i;:::-;9416:74;;9499:93;9588:3;9499:93;:::i;:::-;9617:2;9612:3;9608:12;9601:19;;9260:366;;;:::o;9632:::-;9774:3;9795:67;9859:2;9854:3;9795:67;:::i;:::-;9788:74;;9871:93;9960:3;9871:93;:::i;:::-;9989:2;9984:3;9980:12;9973:19;;9632:366;;;:::o;10004:::-;10146:3;10167:67;10231:2;10226:3;10167:67;:::i;:::-;10160:74;;10243:93;10332:3;10243:93;:::i;:::-;10361:2;10356:3;10352:12;10345:19;;10004:366;;;:::o;10376:::-;10518:3;10539:67;10603:2;10598:3;10539:67;:::i;:::-;10532:74;;10615:93;10704:3;10615:93;:::i;:::-;10733:2;10728:3;10724:12;10717:19;;10376:366;;;:::o;10748:::-;10890:3;10911:67;10975:2;10970:3;10911:67;:::i;:::-;10904:74;;10987:93;11076:3;10987:93;:::i;:::-;11105:2;11100:3;11096:12;11089:19;;10748:366;;;:::o;11120:::-;11262:3;11283:67;11347:2;11342:3;11283:67;:::i;:::-;11276:74;;11359:93;11448:3;11359:93;:::i;:::-;11477:2;11472:3;11468:12;11461:19;;11120:366;;;:::o;11492:::-;11634:3;11655:67;11719:2;11714:3;11655:67;:::i;:::-;11648:74;;11731:93;11820:3;11731:93;:::i;:::-;11849:2;11844:3;11840:12;11833:19;;11492:366;;;:::o;11864:::-;12006:3;12027:67;12091:2;12086:3;12027:67;:::i;:::-;12020:74;;12103:93;12192:3;12103:93;:::i;:::-;12221:2;12216:3;12212:12;12205:19;;11864:366;;;:::o;12236:::-;12378:3;12399:67;12463:2;12458:3;12399:67;:::i;:::-;12392:74;;12475:93;12564:3;12475:93;:::i;:::-;12593:2;12588:3;12584:12;12577:19;;12236:366;;;:::o;12608:::-;12750:3;12771:67;12835:2;12830:3;12771:67;:::i;:::-;12764:74;;12847:93;12936:3;12847:93;:::i;:::-;12965:2;12960:3;12956:12;12949:19;;12608:366;;;:::o;12980:::-;13122:3;13143:67;13207:2;13202:3;13143:67;:::i;:::-;13136:74;;13219:93;13308:3;13219:93;:::i;:::-;13337:2;13332:3;13328:12;13321:19;;12980:366;;;:::o;13352:::-;13494:3;13515:67;13579:2;13574:3;13515:67;:::i;:::-;13508:74;;13591:93;13680:3;13591:93;:::i;:::-;13709:2;13704:3;13700:12;13693:19;;13352:366;;;:::o;13724:400::-;13884:3;13905:84;13987:1;13982:3;13905:84;:::i;:::-;13898:91;;13998:93;14087:3;13998:93;:::i;:::-;14116:1;14111:3;14107:11;14100:18;;13724:400;;;:::o;14130:366::-;14272:3;14293:67;14357:2;14352:3;14293:67;:::i;:::-;14286:74;;14369:93;14458:3;14369:93;:::i;:::-;14487:2;14482:3;14478:12;14471:19;;14130:366;;;:::o;14502:::-;14644:3;14665:67;14729:2;14724:3;14665:67;:::i;:::-;14658:74;;14741:93;14830:3;14741:93;:::i;:::-;14859:2;14854:3;14850:12;14843:19;;14502:366;;;:::o;14874:::-;15016:3;15037:67;15101:2;15096:3;15037:67;:::i;:::-;15030:74;;15113:93;15202:3;15113:93;:::i;:::-;15231:2;15226:3;15222:12;15215:19;;14874:366;;;:::o;15246:::-;15388:3;15409:67;15473:2;15468:3;15409:67;:::i;:::-;15402:74;;15485:93;15574:3;15485:93;:::i;:::-;15603:2;15598:3;15594:12;15587:19;;15246:366;;;:::o;15618:::-;15760:3;15781:67;15845:2;15840:3;15781:67;:::i;:::-;15774:74;;15857:93;15946:3;15857:93;:::i;:::-;15975:2;15970:3;15966:12;15959:19;;15618:366;;;:::o;15990:::-;16132:3;16153:67;16217:2;16212:3;16153:67;:::i;:::-;16146:74;;16229:93;16318:3;16229:93;:::i;:::-;16347:2;16342:3;16338:12;16331:19;;15990:366;;;:::o;16362:::-;16504:3;16525:67;16589:2;16584:3;16525:67;:::i;:::-;16518:74;;16601:93;16690:3;16601:93;:::i;:::-;16719:2;16714:3;16710:12;16703:19;;16362:366;;;:::o;16734:::-;16876:3;16897:67;16961:2;16956:3;16897:67;:::i;:::-;16890:74;;16973:93;17062:3;16973:93;:::i;:::-;17091:2;17086:3;17082:12;17075:19;;16734:366;;;:::o;17106:::-;17248:3;17269:67;17333:2;17328:3;17269:67;:::i;:::-;17262:74;;17345:93;17434:3;17345:93;:::i;:::-;17463:2;17458:3;17454:12;17447:19;;17106:366;;;:::o;17478:::-;17620:3;17641:67;17705:2;17700:3;17641:67;:::i;:::-;17634:74;;17717:93;17806:3;17717:93;:::i;:::-;17835:2;17830:3;17826:12;17819:19;;17478:366;;;:::o;17850:118::-;17937:24;17955:5;17937:24;:::i;:::-;17932:3;17925:37;17850:118;;:::o;17974:701::-;18255:3;18277:95;18368:3;18359:6;18277:95;:::i;:::-;18270:102;;18389:95;18480:3;18471:6;18389:95;:::i;:::-;18382:102;;18501:148;18645:3;18501:148;:::i;:::-;18494:155;;18666:3;18659:10;;17974:701;;;;;:::o;18681:222::-;18774:4;18812:2;18801:9;18797:18;18789:26;;18825:71;18893:1;18882:9;18878:17;18869:6;18825:71;:::i;:::-;18681:222;;;;:::o;18909:640::-;19104:4;19142:3;19131:9;19127:19;19119:27;;19156:71;19224:1;19213:9;19209:17;19200:6;19156:71;:::i;:::-;19237:72;19305:2;19294:9;19290:18;19281:6;19237:72;:::i;:::-;19319;19387:2;19376:9;19372:18;19363:6;19319:72;:::i;:::-;19438:9;19432:4;19428:20;19423:2;19412:9;19408:18;19401:48;19466:76;19537:4;19528:6;19466:76;:::i;:::-;19458:84;;18909:640;;;;;;;:::o;19555:210::-;19642:4;19680:2;19669:9;19665:18;19657:26;;19693:65;19755:1;19744:9;19740:17;19731:6;19693:65;:::i;:::-;19555:210;;;;:::o;19771:313::-;19884:4;19922:2;19911:9;19907:18;19899:26;;19971:9;19965:4;19961:20;19957:1;19946:9;19942:17;19935:47;19999:78;20072:4;20063:6;19999:78;:::i;:::-;19991:86;;19771:313;;;;:::o;20090:419::-;20256:4;20294:2;20283:9;20279:18;20271:26;;20343:9;20337:4;20333:20;20329:1;20318:9;20314:17;20307:47;20371:131;20497:4;20371:131;:::i;:::-;20363:139;;20090:419;;;:::o;20515:::-;20681:4;20719:2;20708:9;20704:18;20696:26;;20768:9;20762:4;20758:20;20754:1;20743:9;20739:17;20732:47;20796:131;20922:4;20796:131;:::i;:::-;20788:139;;20515:419;;;:::o;20940:::-;21106:4;21144:2;21133:9;21129:18;21121:26;;21193:9;21187:4;21183:20;21179:1;21168:9;21164:17;21157:47;21221:131;21347:4;21221:131;:::i;:::-;21213:139;;20940:419;;;:::o;21365:::-;21531:4;21569:2;21558:9;21554:18;21546:26;;21618:9;21612:4;21608:20;21604:1;21593:9;21589:17;21582:47;21646:131;21772:4;21646:131;:::i;:::-;21638:139;;21365:419;;;:::o;21790:::-;21956:4;21994:2;21983:9;21979:18;21971:26;;22043:9;22037:4;22033:20;22029:1;22018:9;22014:17;22007:47;22071:131;22197:4;22071:131;:::i;:::-;22063:139;;21790:419;;;:::o;22215:::-;22381:4;22419:2;22408:9;22404:18;22396:26;;22468:9;22462:4;22458:20;22454:1;22443:9;22439:17;22432:47;22496:131;22622:4;22496:131;:::i;:::-;22488:139;;22215:419;;;:::o;22640:::-;22806:4;22844:2;22833:9;22829:18;22821:26;;22893:9;22887:4;22883:20;22879:1;22868:9;22864:17;22857:47;22921:131;23047:4;22921:131;:::i;:::-;22913:139;;22640:419;;;:::o;23065:::-;23231:4;23269:2;23258:9;23254:18;23246:26;;23318:9;23312:4;23308:20;23304:1;23293:9;23289:17;23282:47;23346:131;23472:4;23346:131;:::i;:::-;23338:139;;23065:419;;;:::o;23490:::-;23656:4;23694:2;23683:9;23679:18;23671:26;;23743:9;23737:4;23733:20;23729:1;23718:9;23714:17;23707:47;23771:131;23897:4;23771:131;:::i;:::-;23763:139;;23490:419;;;:::o;23915:::-;24081:4;24119:2;24108:9;24104:18;24096:26;;24168:9;24162:4;24158:20;24154:1;24143:9;24139:17;24132:47;24196:131;24322:4;24196:131;:::i;:::-;24188:139;;23915:419;;;:::o;24340:::-;24506:4;24544:2;24533:9;24529:18;24521:26;;24593:9;24587:4;24583:20;24579:1;24568:9;24564:17;24557:47;24621:131;24747:4;24621:131;:::i;:::-;24613:139;;24340:419;;;:::o;24765:::-;24931:4;24969:2;24958:9;24954:18;24946:26;;25018:9;25012:4;25008:20;25004:1;24993:9;24989:17;24982:47;25046:131;25172:4;25046:131;:::i;:::-;25038:139;;24765:419;;;:::o;25190:::-;25356:4;25394:2;25383:9;25379:18;25371:26;;25443:9;25437:4;25433:20;25429:1;25418:9;25414:17;25407:47;25471:131;25597:4;25471:131;:::i;:::-;25463:139;;25190:419;;;:::o;25615:::-;25781:4;25819:2;25808:9;25804:18;25796:26;;25868:9;25862:4;25858:20;25854:1;25843:9;25839:17;25832:47;25896:131;26022:4;25896:131;:::i;:::-;25888:139;;25615:419;;;:::o;26040:::-;26206:4;26244:2;26233:9;26229:18;26221:26;;26293:9;26287:4;26283:20;26279:1;26268:9;26264:17;26257:47;26321:131;26447:4;26321:131;:::i;:::-;26313:139;;26040:419;;;:::o;26465:::-;26631:4;26669:2;26658:9;26654:18;26646:26;;26718:9;26712:4;26708:20;26704:1;26693:9;26689:17;26682:47;26746:131;26872:4;26746:131;:::i;:::-;26738:139;;26465:419;;;:::o;26890:::-;27056:4;27094:2;27083:9;27079:18;27071:26;;27143:9;27137:4;27133:20;27129:1;27118:9;27114:17;27107:47;27171:131;27297:4;27171:131;:::i;:::-;27163:139;;26890:419;;;:::o;27315:::-;27481:4;27519:2;27508:9;27504:18;27496:26;;27568:9;27562:4;27558:20;27554:1;27543:9;27539:17;27532:47;27596:131;27722:4;27596:131;:::i;:::-;27588:139;;27315:419;;;:::o;27740:::-;27906:4;27944:2;27933:9;27929:18;27921:26;;27993:9;27987:4;27983:20;27979:1;27968:9;27964:17;27957:47;28021:131;28147:4;28021:131;:::i;:::-;28013:139;;27740:419;;;:::o;28165:::-;28331:4;28369:2;28358:9;28354:18;28346:26;;28418:9;28412:4;28408:20;28404:1;28393:9;28389:17;28382:47;28446:131;28572:4;28446:131;:::i;:::-;28438:139;;28165:419;;;:::o;28590:::-;28756:4;28794:2;28783:9;28779:18;28771:26;;28843:9;28837:4;28833:20;28829:1;28818:9;28814:17;28807:47;28871:131;28997:4;28871:131;:::i;:::-;28863:139;;28590:419;;;:::o;29015:::-;29181:4;29219:2;29208:9;29204:18;29196:26;;29268:9;29262:4;29258:20;29254:1;29243:9;29239:17;29232:47;29296:131;29422:4;29296:131;:::i;:::-;29288:139;;29015:419;;;:::o;29440:::-;29606:4;29644:2;29633:9;29629:18;29621:26;;29693:9;29687:4;29683:20;29679:1;29668:9;29664:17;29657:47;29721:131;29847:4;29721:131;:::i;:::-;29713:139;;29440:419;;;:::o;29865:::-;30031:4;30069:2;30058:9;30054:18;30046:26;;30118:9;30112:4;30108:20;30104:1;30093:9;30089:17;30082:47;30146:131;30272:4;30146:131;:::i;:::-;30138:139;;29865:419;;;:::o;30290:222::-;30383:4;30421:2;30410:9;30406:18;30398:26;;30434:71;30502:1;30491:9;30487:17;30478:6;30434:71;:::i;:::-;30290:222;;;;:::o;30518:129::-;30552:6;30579:20;;:::i;:::-;30569:30;;30608:33;30636:4;30628:6;30608:33;:::i;:::-;30518:129;;;:::o;30653:75::-;30686:6;30719:2;30713:9;30703:19;;30653:75;:::o;30734:307::-;30795:4;30885:18;30877:6;30874:30;30871:56;;;30907:18;;:::i;:::-;30871:56;30945:29;30967:6;30945:29;:::i;:::-;30937:37;;31029:4;31023;31019:15;31011:23;;30734:307;;;:::o;31047:308::-;31109:4;31199:18;31191:6;31188:30;31185:56;;;31221:18;;:::i;:::-;31185:56;31259:29;31281:6;31259:29;:::i;:::-;31251:37;;31343:4;31337;31333:15;31325:23;;31047:308;;;:::o;31361:98::-;31412:6;31446:5;31440:12;31430:22;;31361:98;;;:::o;31465:99::-;31517:6;31551:5;31545:12;31535:22;;31465:99;;;:::o;31570:168::-;31653:11;31687:6;31682:3;31675:19;31727:4;31722:3;31718:14;31703:29;;31570:168;;;;:::o;31744:169::-;31828:11;31862:6;31857:3;31850:19;31902:4;31897:3;31893:14;31878:29;;31744:169;;;;:::o;31919:148::-;32021:11;32058:3;32043:18;;31919:148;;;;:::o;32073:305::-;32113:3;32132:20;32150:1;32132:20;:::i;:::-;32127:25;;32166:20;32184:1;32166:20;:::i;:::-;32161:25;;32320:1;32252:66;32248:74;32245:1;32242:81;32239:107;;;32326:18;;:::i;:::-;32239:107;32370:1;32367;32363:9;32356:16;;32073:305;;;;:::o;32384:185::-;32424:1;32441:20;32459:1;32441:20;:::i;:::-;32436:25;;32475:20;32493:1;32475:20;:::i;:::-;32470:25;;32514:1;32504:35;;32519:18;;:::i;:::-;32504:35;32561:1;32558;32554:9;32549:14;;32384:185;;;;:::o;32575:348::-;32615:7;32638:20;32656:1;32638:20;:::i;:::-;32633:25;;32672:20;32690:1;32672:20;:::i;:::-;32667:25;;32860:1;32792:66;32788:74;32785:1;32782:81;32777:1;32770:9;32763:17;32759:105;32756:131;;;32867:18;;:::i;:::-;32756:131;32915:1;32912;32908:9;32897:20;;32575:348;;;;:::o;32929:191::-;32969:4;32989:20;33007:1;32989:20;:::i;:::-;32984:25;;33023:20;33041:1;33023:20;:::i;:::-;33018:25;;33062:1;33059;33056:8;33053:34;;;33067:18;;:::i;:::-;33053:34;33112:1;33109;33105:9;33097:17;;32929:191;;;;:::o;33126:96::-;33163:7;33192:24;33210:5;33192:24;:::i;:::-;33181:35;;33126:96;;;:::o;33228:90::-;33262:7;33305:5;33298:13;33291:21;33280:32;;33228:90;;;:::o;33324:149::-;33360:7;33400:66;33393:5;33389:78;33378:89;;33324:149;;;:::o;33479:126::-;33516:7;33556:42;33549:5;33545:54;33534:65;;33479:126;;;:::o;33611:77::-;33648:7;33677:5;33666:16;;33611:77;;;:::o;33694:154::-;33778:6;33773:3;33768;33755:30;33840:1;33831:6;33826:3;33822:16;33815:27;33694:154;;;:::o;33854:307::-;33922:1;33932:113;33946:6;33943:1;33940:13;33932:113;;;34031:1;34026:3;34022:11;34016:18;34012:1;34007:3;34003:11;33996:39;33968:2;33965:1;33961:10;33956:15;;33932:113;;;34063:6;34060:1;34057:13;34054:101;;;34143:1;34134:6;34129:3;34125:16;34118:27;34054:101;33903:258;33854:307;;;:::o;34167:320::-;34211:6;34248:1;34242:4;34238:12;34228:22;;34295:1;34289:4;34285:12;34316:18;34306:81;;34372:4;34364:6;34360:17;34350:27;;34306:81;34434:2;34426:6;34423:14;34403:18;34400:38;34397:84;;;34453:18;;:::i;:::-;34397:84;34218:269;34167:320;;;:::o;34493:281::-;34576:27;34598:4;34576:27;:::i;:::-;34568:6;34564:40;34706:6;34694:10;34691:22;34670:18;34658:10;34655:34;34652:62;34649:88;;;34717:18;;:::i;:::-;34649:88;34757:10;34753:2;34746:22;34536:238;34493:281;;:::o;34780:233::-;34819:3;34842:24;34860:5;34842:24;:::i;:::-;34833:33;;34888:66;34881:5;34878:77;34875:103;;;34958:18;;:::i;:::-;34875:103;35005:1;34998:5;34994:13;34987:20;;34780:233;;;:::o;35019:176::-;35051:1;35068:20;35086:1;35068:20;:::i;:::-;35063:25;;35102:20;35120:1;35102:20;:::i;:::-;35097:25;;35141:1;35131:35;;35146:18;;:::i;:::-;35131:35;35187:1;35184;35180:9;35175:14;;35019:176;;;;:::o;35201:180::-;35249:77;35246:1;35239:88;35346:4;35343:1;35336:15;35370:4;35367:1;35360:15;35387:180;35435:77;35432:1;35425:88;35532:4;35529:1;35522:15;35556:4;35553:1;35546:15;35573:180;35621:77;35618:1;35611:88;35718:4;35715:1;35708:15;35742:4;35739:1;35732:15;35759:180;35807:77;35804:1;35797:88;35904:4;35901:1;35894:15;35928:4;35925:1;35918:15;35945:180;35993:77;35990:1;35983:88;36090:4;36087:1;36080:15;36114:4;36111:1;36104:15;36131:180;36179:77;36176:1;36169:88;36276:4;36273:1;36266:15;36300:4;36297:1;36290:15;36317:117;36426:1;36423;36416:12;36440:117;36549:1;36546;36539:12;36563:117;36672:1;36669;36662:12;36686:117;36795:1;36792;36785:12;36809:102;36850:6;36901:2;36897:7;36892:2;36885:5;36881:14;36877:28;36867:38;;36809:102;;;:::o;36917:230::-;37057:34;37053:1;37045:6;37041:14;37034:58;37126:13;37121:2;37113:6;37109:15;37102:38;36917:230;:::o;37153:237::-;37293:34;37289:1;37281:6;37277:14;37270:58;37362:20;37357:2;37349:6;37345:15;37338:45;37153:237;:::o;37396:225::-;37536:34;37532:1;37524:6;37520:14;37513:58;37605:8;37600:2;37592:6;37588:15;37581:33;37396:225;:::o;37627:178::-;37767:30;37763:1;37755:6;37751:14;37744:54;37627:178;:::o;37811:223::-;37951:34;37947:1;37939:6;37935:14;37928:58;38020:6;38015:2;38007:6;38003:15;37996:31;37811:223;:::o;38040:227::-;38180:34;38176:1;38168:6;38164:14;38157:58;38249:10;38244:2;38236:6;38232:15;38225:35;38040:227;:::o;38273:175::-;38413:27;38409:1;38401:6;38397:14;38390:51;38273:175;:::o;38454:231::-;38594:34;38590:1;38582:6;38578:14;38571:58;38663:14;38658:2;38650:6;38646:15;38639:39;38454:231;:::o;38691:243::-;38831:34;38827:1;38819:6;38815:14;38808:58;38900:26;38895:2;38887:6;38883:15;38876:51;38691:243;:::o;38940:229::-;39080:34;39076:1;39068:6;39064:14;39057:58;39149:12;39144:2;39136:6;39132:15;39125:37;38940:229;:::o;39175:228::-;39315:34;39311:1;39303:6;39299:14;39292:58;39384:11;39379:2;39371:6;39367:15;39360:36;39175:228;:::o;39409:239::-;39549:34;39545:1;39537:6;39533:14;39526:58;39618:22;39613:2;39605:6;39601:15;39594:47;39409:239;:::o;39654:182::-;39794:34;39790:1;39782:6;39778:14;39771:58;39654:182;:::o;39842:231::-;39982:34;39978:1;39970:6;39966:14;39959:58;40051:14;40046:2;40038:6;40034:15;40027:39;39842:231;:::o;40079:155::-;40219:7;40215:1;40207:6;40203:14;40196:31;40079:155;:::o;40240:182::-;40380:34;40376:1;40368:6;40364:14;40357:58;40240:182;:::o;40428:228::-;40568:34;40564:1;40556:6;40552:14;40545:58;40637:11;40632:2;40624:6;40620:15;40613:36;40428:228;:::o;40662:234::-;40802:34;40798:1;40790:6;40786:14;40779:58;40871:17;40866:2;40858:6;40854:15;40847:42;40662:234;:::o;40902:220::-;41042:34;41038:1;41030:6;41026:14;41019:58;41111:3;41106:2;41098:6;41094:15;41087:28;40902:220;:::o;41128:223::-;41268:34;41264:1;41256:6;41252:14;41245:58;41337:6;41332:2;41324:6;41320:15;41313:31;41128:223;:::o;41357:220::-;41497:34;41493:1;41485:6;41481:14;41474:58;41566:3;41561:2;41553:6;41549:15;41542:28;41357:220;:::o;41583:231::-;41723:34;41719:1;41711:6;41707:14;41700:58;41792:14;41787:2;41779:6;41775:15;41768:39;41583:231;:::o;41820:232::-;41960:34;41956:1;41948:6;41944:14;41937:58;42029:15;42024:2;42016:6;42012:15;42005:40;41820:232;:::o;42058:236::-;42198:34;42194:1;42186:6;42182:14;42175:58;42267:19;42262:2;42254:6;42250:15;42243:44;42058:236;:::o;42300:231::-;42440:34;42436:1;42428:6;42424:14;42417:58;42509:14;42504:2;42496:6;42492:15;42485:39;42300:231;:::o;42537:122::-;42610:24;42628:5;42610:24;:::i;:::-;42603:5;42600:35;42590:63;;42649:1;42646;42639:12;42590:63;42537:122;:::o;42665:116::-;42735:21;42750:5;42735:21;:::i;:::-;42728:5;42725:32;42715:60;;42771:1;42768;42761:12;42715:60;42665:116;:::o;42787:120::-;42859:23;42876:5;42859:23;:::i;:::-;42852:5;42849:34;42839:62;;42897:1;42894;42887:12;42839:62;42787:120;:::o;42913:122::-;42986:24;43004:5;42986:24;:::i;:::-;42979:5;42976:35;42966:63;;43025:1;43022;43015:12;42966:63;42913:122;:::o

Swarm Source

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