ETH Price: $3,300.82 (-3.25%)
Gas: 23 Gwei

Token

OtteyOtters (Otters)
 

Overview

Max Total Supply

3,758 Otters

Holders

995

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
2 Otters
0x97821acdf69ce7e147236d4243e63ca8183279db
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:
OtteyOtters

Compiler Version
v0.8.0+commit.c7dfd78e

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-04
*/

// 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 OtteyOtters is ERC721Enumerable, Ownable {

    uint256 public otterPrice = 20000000000000000;
    uint256 public OTTER_SUPPLY = 5000;
    uint256 public FREE_OTTER_SUPPLY = 3000;
    uint public MAX_FREE_PURCHASE = 5;
    uint public MAX_PURCHASE = 10;

    bool public dropActive = false;

    string public baseURI = "";
    uint256 public tokensMinted = 0;
    uint256 public freeTokensMinted = 0;

    mapping(address => uint) addressesThatMintedFree;

    constructor() ERC721("OtteyOtters", "Otters"){
    
    }

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

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

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

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

        uint256 tokenIndex = tokensMinted;
        tokensMinted += numTokens;

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

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

    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{
        otterPrice = newPrice;
    }

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

    function setFreeSupply(uint256 newFree)public onlyOwner{
        FREE_OTTER_SUPPLY = newFree;
    }

    function setMaxFreePurchase(uint256 newMax)public onlyOwner{
        MAX_FREE_PURCHASE = newMax;
    }

    function setMaxPurchase(uint256 newMax)public onlyOwner{
        MAX_PURCHASE = newMax;
    }

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

}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"FREE_OTTER_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_FREE_PURCHASE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_PURCHASE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"OTTER_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"dropActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"flipDropState","outputs":[],"stateMutability":"nonpayable","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":[{"internalType":"uint256","name":"numTokens","type":"uint256"}],"name":"mintOtters","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"numTokens","type":"uint256"}],"name":"mintfreeOtters","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"otterPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"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":"setFreeSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newMax","type":"uint256"}],"name":"setMaxFreePurchase","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newMax","type":"uint256"}],"name":"setMaxPurchase","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"}]

608060405266470de4df820000600b55611388600c55610bb8600d556005600e55600a600f556000601060006101000a81548160ff02191690831515021790555060405180602001604052806000815250601190805190602001906200006792919062000214565b50600060125560006013553480156200007f57600080fd5b506040518060400160405280600b81526020017f4f747465794f74746572730000000000000000000000000000000000000000008152506040518060400160405280600681526020017f4f7474657273000000000000000000000000000000000000000000000000000081525081600090805190602001906200010492919062000214565b5080600190805190602001906200011d92919062000214565b50505062000140620001346200014660201b60201c565b6200014e60201b60201c565b62000329565b600033905090565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8280546200022290620002c4565b90600052602060002090601f01602090048101928262000246576000855562000292565b82601f106200026157805160ff191683800117855562000292565b8280016001018555821562000292579182015b828111156200029157825182559160200191906001019062000274565b5b509050620002a19190620002a5565b5090565b5b80821115620002c0576000816000905550600101620002a6565b5090565b60006002820490506001821680620002dd57607f821691505b60208210811415620002f457620002f3620002fa565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6145c680620003396000396000f3fe6080604052600436106102255760003560e01c80636de9f32b11610123578063a22cb465116100ab578063dbcaa52c1161006f578063dbcaa52c146107d2578063e985e9c5146107fd578063f0f1a9c41461083a578063f2fde38b14610865578063f676308a1461088e57610225565b8063a22cb465146106fc578063b30d0e6f14610725578063b88d4fde14610750578063c798319f14610779578063c87b56dd1461079557610225565b8063715018a6116100f2578063715018a61461064f5780638da5cb5b1461066657806391b7f5ed1461069157806395d89b41146106ba57806396f8f6dd146106e557610225565b80636de9f32b1461059357806370a08231146105be57806371189742146105fb5780637146bd081461062457610225565b806336a51191116101b157806355f804b31161017557806355f804b3146104ae57806358795a7b146104d75780636352211e1461050057806363e999e51461053d5780636c0360eb1461056857610225565b806336a51191146103dd5780633b4c4b25146104085780633ccfd60b1461043157806342842e0e146104485780634f6ccce71461047157610225565b80630c5b908c116101f85780630c5b908c146102f85780630f1bd1761461032157806318160ddd1461034c57806323b872dd146103775780632f745c59146103a057610225565b806301ffc9a71461022a57806306fdde0314610267578063081812fc14610292578063095ea7b3146102cf575b600080fd5b34801561023657600080fd5b50610251600480360381019061024c919061326a565b6108b7565b60405161025e9190613dc4565b60405180910390f35b34801561027357600080fd5b5061027c610931565b6040516102899190613ddf565b60405180910390f35b34801561029e57600080fd5b506102b960048036038101906102b491906132fd565b6109c3565b6040516102c69190613d5d565b60405180910390f35b3480156102db57600080fd5b506102f660048036038101906102f1919061322e565b610a48565b005b34801561030457600080fd5b5061031f600480360381019061031a91906132fd565b610b60565b005b34801561032d57600080fd5b50610336610db6565b6040516103439190614101565b60405180910390f35b34801561035857600080fd5b50610361610dbc565b60405161036e9190614101565b60405180910390f35b34801561038357600080fd5b5061039e60048036038101906103999190613128565b610dc9565b005b3480156103ac57600080fd5b506103c760048036038101906103c2919061322e565b610e29565b6040516103d49190614101565b60405180910390f35b3480156103e957600080fd5b506103f2610ece565b6040516103ff9190614101565b60405180910390f35b34801561041457600080fd5b5061042f600480360381019061042a91906132fd565b610ed4565b005b34801561043d57600080fd5b50610446610f5a565b005b34801561045457600080fd5b5061046f600480360381019061046a9190613128565b611016565b005b34801561047d57600080fd5b50610498600480360381019061049391906132fd565b611036565b6040516104a59190614101565b60405180910390f35b3480156104ba57600080fd5b506104d560048036038101906104d091906132bc565b6110cd565b005b3480156104e357600080fd5b506104fe60048036038101906104f991906132fd565b611163565b005b34801561050c57600080fd5b50610527600480360381019061052291906132fd565b6111e9565b6040516105349190613d5d565b60405180910390f35b34801561054957600080fd5b5061055261129b565b60405161055f9190613dc4565b60405180910390f35b34801561057457600080fd5b5061057d6112ae565b60405161058a9190613ddf565b60405180910390f35b34801561059f57600080fd5b506105a861133c565b6040516105b59190614101565b60405180910390f35b3480156105ca57600080fd5b506105e560048036038101906105e091906130c3565b611342565b6040516105f29190614101565b60405180910390f35b34801561060757600080fd5b50610622600480360381019061061d91906132fd565b6113fa565b005b34801561063057600080fd5b50610639611480565b6040516106469190614101565b60405180910390f35b34801561065b57600080fd5b50610664611486565b005b34801561067257600080fd5b5061067b61150e565b6040516106889190613d5d565b60405180910390f35b34801561069d57600080fd5b506106b860048036038101906106b391906132fd565b611538565b005b3480156106c657600080fd5b506106cf6115be565b6040516106dc9190613ddf565b60405180910390f35b3480156106f157600080fd5b506106fa611650565b005b34801561070857600080fd5b50610723600480360381019061071e91906131f2565b6116f8565b005b34801561073157600080fd5b5061073a61170e565b6040516107479190614101565b60405180910390f35b34801561075c57600080fd5b5061077760048036038101906107729190613177565b611714565b005b610793600480360381019061078e91906132fd565b611776565b005b3480156107a157600080fd5b506107bc60048036038101906107b791906132fd565b61191f565b6040516107c99190613ddf565b60405180910390f35b3480156107de57600080fd5b506107e76119c6565b6040516107f49190614101565b60405180910390f35b34801561080957600080fd5b50610824600480360381019061081f91906130ec565b6119cc565b6040516108319190613dc4565b60405180910390f35b34801561084657600080fd5b5061084f611a60565b60405161085c9190614101565b60405180910390f35b34801561087157600080fd5b5061088c600480360381019061088791906130c3565b611a66565b005b34801561089a57600080fd5b506108b560048036038101906108b091906132fd565b611b5e565b005b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061092a575061092982611be4565b5b9050919050565b606060008054610940906143bb565b80601f016020809104026020016040519081016040528092919081815260200182805461096c906143bb565b80156109b95780601f1061098e576101008083540402835291602001916109b9565b820191906000526020600020905b81548152906001019060200180831161099c57829003601f168201915b5050505050905090565b60006109ce82611cc6565b610a0d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a0490613fa1565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610a53826111e9565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610ac4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610abb90614061565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610ae3611d32565b73ffffffffffffffffffffffffffffffffffffffff161480610b125750610b1181610b0c611d32565b6119cc565b5b610b51576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b4890613f01565b60405180910390fd5b610b5b8383611d3a565b505050565b601060009054906101000a900460ff16610baf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ba690614081565b60405180910390fd5b600081118015610bc15750600e548111155b610c00576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bf790614041565b60405180910390fd5b600d5481601254610c1191906141f0565b1115610c52576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c4990614021565b60405180910390fd5b600e5481601460003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610ca091906141f0565b1115610ce1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cd890613ea1565b60405180910390fd5b600060125490508160126000828254610cfa91906141f0565b9250508190555081601460003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610d5091906141f0565b9250508190555060005b82811015610db157610d7833600184610d7391906141f0565b611df3565b60136000815480929190610d8b906143ed565b91905055508180610d9b906143ed565b9250508080610da9906143ed565b915050610d5a565b505050565b600d5481565b6000600880549050905090565b610dda610dd4611d32565b82611e11565b610e19576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e10906140c1565b60405180910390fd5b610e24838383611eef565b505050565b6000610e3483611342565b8210610e75576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e6c90613e01565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b600b5481565b610edc611d32565b73ffffffffffffffffffffffffffffffffffffffff16610efa61150e565b73ffffffffffffffffffffffffffffffffffffffff1614610f50576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f4790613fc1565b60405180910390fd5b80600c8190555050565b610f62611d32565b73ffffffffffffffffffffffffffffffffffffffff16610f8061150e565b73ffffffffffffffffffffffffffffffffffffffff1614610fd6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fcd90613fc1565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f1935050505061101457600080fd5b565b61103183838360405180602001604052806000815250611714565b505050565b6000611040610dbc565b8210611081576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611078906140e1565b60405180910390fd5b600882815481106110bb577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002001549050919050565b6110d5611d32565b73ffffffffffffffffffffffffffffffffffffffff166110f361150e565b73ffffffffffffffffffffffffffffffffffffffff1614611149576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161114090613fc1565b60405180910390fd5b806011908051906020019061115f929190612ee7565b5050565b61116b611d32565b73ffffffffffffffffffffffffffffffffffffffff1661118961150e565b73ffffffffffffffffffffffffffffffffffffffff16146111df576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111d690613fc1565b60405180910390fd5b80600e8190555050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611292576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161128990613f41565b60405180910390fd5b80915050919050565b601060009054906101000a900460ff1681565b601180546112bb906143bb565b80601f01602080910402602001604051908101604052809291908181526020018280546112e7906143bb565b80156113345780601f1061130957610100808354040283529160200191611334565b820191906000526020600020905b81548152906001019060200180831161131757829003601f168201915b505050505081565b60125481565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156113b3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113aa90613f21565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611402611d32565b73ffffffffffffffffffffffffffffffffffffffff1661142061150e565b73ffffffffffffffffffffffffffffffffffffffff1614611476576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161146d90613fc1565b60405180910390fd5b80600f8190555050565b600f5481565b61148e611d32565b73ffffffffffffffffffffffffffffffffffffffff166114ac61150e565b73ffffffffffffffffffffffffffffffffffffffff1614611502576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114f990613fc1565b60405180910390fd5b61150c600061214b565b565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b611540611d32565b73ffffffffffffffffffffffffffffffffffffffff1661155e61150e565b73ffffffffffffffffffffffffffffffffffffffff16146115b4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115ab90613fc1565b60405180910390fd5b80600b8190555050565b6060600180546115cd906143bb565b80601f01602080910402602001604051908101604052809291908181526020018280546115f9906143bb565b80156116465780601f1061161b57610100808354040283529160200191611646565b820191906000526020600020905b81548152906001019060200180831161162957829003601f168201915b5050505050905090565b611658611d32565b73ffffffffffffffffffffffffffffffffffffffff1661167661150e565b73ffffffffffffffffffffffffffffffffffffffff16146116cc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116c390613fc1565b60405180910390fd5b601060009054906101000a900460ff1615601060006101000a81548160ff021916908315150217905550565b61170a611703611d32565b8383612211565b5050565b600e5481565b61172561171f611d32565b83611e11565b611764576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161175b906140c1565b60405180910390fd5b6117708484848461237e565b50505050565b601060009054906101000a900460ff166117c5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117bc90614081565b60405180910390fd5b6000811180156117d75750600f548111155b611816576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161180d90614041565b60405180910390fd5b600c548160125461182791906141f0565b1115611868576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161185f906140a1565b60405180910390fd5b80600b546118769190614277565b3410156118b8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118af90613f61565b60405180910390fd5b6000601254905081601260008282546118d191906141f0565b9250508190555060005b8281101561191a576118f9336001846118f491906141f0565b611df3565b8180611904906143ed565b9250508080611912906143ed565b9150506118db565b505050565b606061192a82611cc6565b611969576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161196090614001565b60405180910390fd5b60006119736123da565b9050600081511161199357604051806020016040528060008152506119be565b8061199d8461246c565b6040516020016119ae929190613d2e565b6040516020818303038152906040525b915050919050565b60135481565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600c5481565b611a6e611d32565b73ffffffffffffffffffffffffffffffffffffffff16611a8c61150e565b73ffffffffffffffffffffffffffffffffffffffff1614611ae2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ad990613fc1565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611b52576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b4990613e41565b60405180910390fd5b611b5b8161214b565b50565b611b66611d32565b73ffffffffffffffffffffffffffffffffffffffff16611b8461150e565b73ffffffffffffffffffffffffffffffffffffffff1614611bda576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bd190613fc1565b60405180910390fd5b80600d8190555050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480611caf57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80611cbf5750611cbe82612619565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16611dad836111e9565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b611e0d828260405180602001604052806000815250612683565b5050565b6000611e1c82611cc6565b611e5b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e5290613ee1565b60405180910390fd5b6000611e66836111e9565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611ed557508373ffffffffffffffffffffffffffffffffffffffff16611ebd846109c3565b73ffffffffffffffffffffffffffffffffffffffff16145b80611ee65750611ee581856119cc565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16611f0f826111e9565b73ffffffffffffffffffffffffffffffffffffffff1614611f65576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f5c90613fe1565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611fd5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fcc90613e81565b60405180910390fd5b611fe08383836126de565b611feb600082611d3a565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461203b91906142d1565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461209291906141f0565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612280576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161227790613ec1565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516123719190613dc4565b60405180910390a3505050565b612389848484611eef565b612395848484846127f2565b6123d4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123cb90613e21565b60405180910390fd5b50505050565b6060601180546123e9906143bb565b80601f0160208091040260200160405190810160405280929190818152602001828054612415906143bb565b80156124625780601f1061243757610100808354040283529160200191612462565b820191906000526020600020905b81548152906001019060200180831161244557829003601f168201915b5050505050905090565b606060008214156124b4576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612614565b600082905060005b600082146124e65780806124cf906143ed565b915050600a826124df9190614246565b91506124bc565b60008167ffffffffffffffff811115612528577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f19166020018201604052801561255a5781602001600182028036833780820191505090505b5090505b6000851461260d5760018261257391906142d1565b9150600a856125829190614436565b603061258e91906141f0565b60f81b8183815181106125ca577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856126069190614246565b945061255e565b8093505050505b919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b61268d8383612989565b61269a60008484846127f2565b6126d9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126d090613e21565b60405180910390fd5b505050565b6126e9838383612b57565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561272c5761272781612b5c565b61276b565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161461276a576127698382612ba5565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156127ae576127a981612d12565b6127ed565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16146127ec576127eb8282612e55565b5b5b505050565b60006128138473ffffffffffffffffffffffffffffffffffffffff16612ed4565b1561297c578373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261283c611d32565b8786866040518563ffffffff1660e01b815260040161285e9493929190613d78565b602060405180830381600087803b15801561287857600080fd5b505af19250505080156128a957506040513d601f19601f820116820180604052508101906128a69190613293565b60015b61292c573d80600081146128d9576040519150601f19603f3d011682016040523d82523d6000602084013e6128de565b606091505b50600081511415612924576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161291b90613e21565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612981565b600190505b949350505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156129f9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129f090613f81565b60405180910390fd5b612a0281611cc6565b15612a42576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a3990613e61565b60405180910390fd5b612a4e600083836126de565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612a9e91906141f0565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b60006001612bb284611342565b612bbc91906142d1565b9050600060076000848152602001908152602001600020549050818114612ca1576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b60006001600880549050612d2691906142d1565b9050600060096000848152602001908152602001600020549050600060088381548110612d7c577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b906000526020600020015490508060088381548110612dc4577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b906000526020600020018190555081600960008381526020019081526020016000208190555060096000858152602001908152602001600020600090556008805480612e39577f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b6000612e6083611342565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b600080823b905060008111915050919050565b828054612ef3906143bb565b90600052602060002090601f016020900481019282612f155760008555612f5c565b82601f10612f2e57805160ff1916838001178555612f5c565b82800160010185558215612f5c579182015b82811115612f5b578251825591602001919060010190612f40565b5b509050612f699190612f6d565b5090565b5b80821115612f86576000816000905550600101612f6e565b5090565b6000612f9d612f988461414d565b61411c565b905082815260208101848484011115612fb557600080fd5b612fc0848285614379565b509392505050565b6000612fdb612fd68461417d565b61411c565b905082815260208101848484011115612ff357600080fd5b612ffe848285614379565b509392505050565b60008135905061301581614534565b92915050565b60008135905061302a8161454b565b92915050565b60008135905061303f81614562565b92915050565b60008151905061305481614562565b92915050565b600082601f83011261306b57600080fd5b813561307b848260208601612f8a565b91505092915050565b600082601f83011261309557600080fd5b81356130a5848260208601612fc8565b91505092915050565b6000813590506130bd81614579565b92915050565b6000602082840312156130d557600080fd5b60006130e384828501613006565b91505092915050565b600080604083850312156130ff57600080fd5b600061310d85828601613006565b925050602061311e85828601613006565b9150509250929050565b60008060006060848603121561313d57600080fd5b600061314b86828701613006565b935050602061315c86828701613006565b925050604061316d868287016130ae565b9150509250925092565b6000806000806080858703121561318d57600080fd5b600061319b87828801613006565b94505060206131ac87828801613006565b93505060406131bd878288016130ae565b925050606085013567ffffffffffffffff8111156131da57600080fd5b6131e68782880161305a565b91505092959194509250565b6000806040838503121561320557600080fd5b600061321385828601613006565b92505060206132248582860161301b565b9150509250929050565b6000806040838503121561324157600080fd5b600061324f85828601613006565b9250506020613260858286016130ae565b9150509250929050565b60006020828403121561327c57600080fd5b600061328a84828501613030565b91505092915050565b6000602082840312156132a557600080fd5b60006132b384828501613045565b91505092915050565b6000602082840312156132ce57600080fd5b600082013567ffffffffffffffff8111156132e857600080fd5b6132f484828501613084565b91505092915050565b60006020828403121561330f57600080fd5b600061331d848285016130ae565b91505092915050565b61332f81614305565b82525050565b61333e81614317565b82525050565b600061334f826141ad565b61335981856141c3565b9350613369818560208601614388565b61337281614523565b840191505092915050565b6000613388826141b8565b61339281856141d4565b93506133a2818560208601614388565b6133ab81614523565b840191505092915050565b60006133c1826141b8565b6133cb81856141e5565b93506133db818560208601614388565b80840191505092915050565b60006133f4602b836141d4565b91507f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008301527f74206f6620626f756e64730000000000000000000000000000000000000000006020830152604082019050919050565b600061345a6032836141d4565b91507f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008301527f63656976657220696d706c656d656e74657200000000000000000000000000006020830152604082019050919050565b60006134c06026836141d4565b91507f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008301527f64647265737300000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613526601c836141d4565b91507f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006000830152602082019050919050565b60006135666024836141d4565b91507f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008301527f72657373000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006135cc6028836141d4565b91507f596f75206861766520616c7265616479206d696e74656420352066726565204c60008301527f61727661446164730000000000000000000000000000000000000000000000006020830152604082019050919050565b60006136326019836141d4565b91507f4552433732313a20617070726f766520746f2063616c6c6572000000000000006000830152602082019050919050565b6000613672602c836141d4565b91507f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008301527f697374656e7420746f6b656e00000000000000000000000000000000000000006020830152604082019050919050565b60006136d86038836141d4565b91507f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008301527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006020830152604082019050919050565b600061373e602a836141d4565b91507f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008301527f726f2061646472657373000000000000000000000000000000000000000000006020830152604082019050919050565b60006137a46029836141d4565b91507f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008301527f656e7420746f6b656e00000000000000000000000000000000000000000000006020830152604082019050919050565b600061380a6034836141d4565b91507f4554482076616c75652073656e7420697320746f6f206c6974746c6520666f7260008301527f2074686973206d616e79204c61727661446164730000000000000000000000006020830152604082019050919050565b60006138706020836141d4565b91507f4552433732313a206d696e7420746f20746865207a65726f20616464726573736000830152602082019050919050565b60006138b0602c836141d4565b91507f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008301527f697374656e7420746f6b656e00000000000000000000000000000000000000006020830152604082019050919050565b60006139166005836141e5565b91507f2e6a736f6e0000000000000000000000000000000000000000000000000000006000830152600582019050919050565b60006139566020836141d4565b91507f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726000830152602082019050919050565b60006139966029836141d4565b91507f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008301527f73206e6f74206f776e00000000000000000000000000000000000000000000006020830152604082019050919050565b60006139fc602f836141d4565b91507f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008301527f6e6578697374656e7420746f6b656e00000000000000000000000000000000006020830152604082019050919050565b6000613a626021836141d4565b91507f546865726520617265206e6f206d6f72652066726565206d696e7473206c656660008301527f74000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613ac86024836141d4565b91507f4d696e7420636f756e7420697320746f6f206c6974746c65206f7220746f6f2060008301527f68696768000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613b2e6021836141d4565b91507f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008301527f72000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613b94602c836141d4565b91507f506c65617365207761697420756e74696c207468652064726f7020697320616360008301527f7469766520746f206d696e7400000000000000000000000000000000000000006020830152604082019050919050565b6000613bfa602d836141d4565b91507f507572636861736520776f756c6420657863656564206d617820737570706c7960008301527f206f66204c6172766144616473000000000000000000000000000000000000006020830152604082019050919050565b6000613c606031836141d4565b91507f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008301527f776e6572206e6f7220617070726f7665640000000000000000000000000000006020830152604082019050919050565b6000613cc6602c836141d4565b91507f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008301527f7574206f6620626f756e647300000000000000000000000000000000000000006020830152604082019050919050565b613d288161436f565b82525050565b6000613d3a82856133b6565b9150613d4682846133b6565b9150613d5182613909565b91508190509392505050565b6000602082019050613d726000830184613326565b92915050565b6000608082019050613d8d6000830187613326565b613d9a6020830186613326565b613da76040830185613d1f565b8181036060830152613db98184613344565b905095945050505050565b6000602082019050613dd96000830184613335565b92915050565b60006020820190508181036000830152613df9818461337d565b905092915050565b60006020820190508181036000830152613e1a816133e7565b9050919050565b60006020820190508181036000830152613e3a8161344d565b9050919050565b60006020820190508181036000830152613e5a816134b3565b9050919050565b60006020820190508181036000830152613e7a81613519565b9050919050565b60006020820190508181036000830152613e9a81613559565b9050919050565b60006020820190508181036000830152613eba816135bf565b9050919050565b60006020820190508181036000830152613eda81613625565b9050919050565b60006020820190508181036000830152613efa81613665565b9050919050565b60006020820190508181036000830152613f1a816136cb565b9050919050565b60006020820190508181036000830152613f3a81613731565b9050919050565b60006020820190508181036000830152613f5a81613797565b9050919050565b60006020820190508181036000830152613f7a816137fd565b9050919050565b60006020820190508181036000830152613f9a81613863565b9050919050565b60006020820190508181036000830152613fba816138a3565b9050919050565b60006020820190508181036000830152613fda81613949565b9050919050565b60006020820190508181036000830152613ffa81613989565b9050919050565b6000602082019050818103600083015261401a816139ef565b9050919050565b6000602082019050818103600083015261403a81613a55565b9050919050565b6000602082019050818103600083015261405a81613abb565b9050919050565b6000602082019050818103600083015261407a81613b21565b9050919050565b6000602082019050818103600083015261409a81613b87565b9050919050565b600060208201905081810360008301526140ba81613bed565b9050919050565b600060208201905081810360008301526140da81613c53565b9050919050565b600060208201905081810360008301526140fa81613cb9565b9050919050565b60006020820190506141166000830184613d1f565b92915050565b6000604051905081810181811067ffffffffffffffff82111715614143576141426144f4565b5b8060405250919050565b600067ffffffffffffffff821115614168576141676144f4565b5b601f19601f8301169050602081019050919050565b600067ffffffffffffffff821115614198576141976144f4565b5b601f19601f8301169050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b60006141fb8261436f565b91506142068361436f565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561423b5761423a614467565b5b828201905092915050565b60006142518261436f565b915061425c8361436f565b92508261426c5761426b614496565b5b828204905092915050565b60006142828261436f565b915061428d8361436f565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156142c6576142c5614467565b5b828202905092915050565b60006142dc8261436f565b91506142e78361436f565b9250828210156142fa576142f9614467565b5b828203905092915050565b60006143108261434f565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b838110156143a657808201518184015260208101905061438b565b838111156143b5576000848401525b50505050565b600060028204905060018216806143d357607f821691505b602082108114156143e7576143e66144c5565b5b50919050565b60006143f88261436f565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561442b5761442a614467565b5b600182019050919050565b60006144418261436f565b915061444c8361436f565b92508261445c5761445b614496565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b61453d81614305565b811461454857600080fd5b50565b61455481614317565b811461455f57600080fd5b50565b61456b81614323565b811461457657600080fd5b50565b6145828161436f565b811461458d57600080fd5b5056fea2646970667358221220a787934ca54be61214f6a92ff45a6f22183db787f17e5c164e82f8c226dcfcdb64736f6c63430008000033

Deployed Bytecode

0x6080604052600436106102255760003560e01c80636de9f32b11610123578063a22cb465116100ab578063dbcaa52c1161006f578063dbcaa52c146107d2578063e985e9c5146107fd578063f0f1a9c41461083a578063f2fde38b14610865578063f676308a1461088e57610225565b8063a22cb465146106fc578063b30d0e6f14610725578063b88d4fde14610750578063c798319f14610779578063c87b56dd1461079557610225565b8063715018a6116100f2578063715018a61461064f5780638da5cb5b1461066657806391b7f5ed1461069157806395d89b41146106ba57806396f8f6dd146106e557610225565b80636de9f32b1461059357806370a08231146105be57806371189742146105fb5780637146bd081461062457610225565b806336a51191116101b157806355f804b31161017557806355f804b3146104ae57806358795a7b146104d75780636352211e1461050057806363e999e51461053d5780636c0360eb1461056857610225565b806336a51191146103dd5780633b4c4b25146104085780633ccfd60b1461043157806342842e0e146104485780634f6ccce71461047157610225565b80630c5b908c116101f85780630c5b908c146102f85780630f1bd1761461032157806318160ddd1461034c57806323b872dd146103775780632f745c59146103a057610225565b806301ffc9a71461022a57806306fdde0314610267578063081812fc14610292578063095ea7b3146102cf575b600080fd5b34801561023657600080fd5b50610251600480360381019061024c919061326a565b6108b7565b60405161025e9190613dc4565b60405180910390f35b34801561027357600080fd5b5061027c610931565b6040516102899190613ddf565b60405180910390f35b34801561029e57600080fd5b506102b960048036038101906102b491906132fd565b6109c3565b6040516102c69190613d5d565b60405180910390f35b3480156102db57600080fd5b506102f660048036038101906102f1919061322e565b610a48565b005b34801561030457600080fd5b5061031f600480360381019061031a91906132fd565b610b60565b005b34801561032d57600080fd5b50610336610db6565b6040516103439190614101565b60405180910390f35b34801561035857600080fd5b50610361610dbc565b60405161036e9190614101565b60405180910390f35b34801561038357600080fd5b5061039e60048036038101906103999190613128565b610dc9565b005b3480156103ac57600080fd5b506103c760048036038101906103c2919061322e565b610e29565b6040516103d49190614101565b60405180910390f35b3480156103e957600080fd5b506103f2610ece565b6040516103ff9190614101565b60405180910390f35b34801561041457600080fd5b5061042f600480360381019061042a91906132fd565b610ed4565b005b34801561043d57600080fd5b50610446610f5a565b005b34801561045457600080fd5b5061046f600480360381019061046a9190613128565b611016565b005b34801561047d57600080fd5b50610498600480360381019061049391906132fd565b611036565b6040516104a59190614101565b60405180910390f35b3480156104ba57600080fd5b506104d560048036038101906104d091906132bc565b6110cd565b005b3480156104e357600080fd5b506104fe60048036038101906104f991906132fd565b611163565b005b34801561050c57600080fd5b50610527600480360381019061052291906132fd565b6111e9565b6040516105349190613d5d565b60405180910390f35b34801561054957600080fd5b5061055261129b565b60405161055f9190613dc4565b60405180910390f35b34801561057457600080fd5b5061057d6112ae565b60405161058a9190613ddf565b60405180910390f35b34801561059f57600080fd5b506105a861133c565b6040516105b59190614101565b60405180910390f35b3480156105ca57600080fd5b506105e560048036038101906105e091906130c3565b611342565b6040516105f29190614101565b60405180910390f35b34801561060757600080fd5b50610622600480360381019061061d91906132fd565b6113fa565b005b34801561063057600080fd5b50610639611480565b6040516106469190614101565b60405180910390f35b34801561065b57600080fd5b50610664611486565b005b34801561067257600080fd5b5061067b61150e565b6040516106889190613d5d565b60405180910390f35b34801561069d57600080fd5b506106b860048036038101906106b391906132fd565b611538565b005b3480156106c657600080fd5b506106cf6115be565b6040516106dc9190613ddf565b60405180910390f35b3480156106f157600080fd5b506106fa611650565b005b34801561070857600080fd5b50610723600480360381019061071e91906131f2565b6116f8565b005b34801561073157600080fd5b5061073a61170e565b6040516107479190614101565b60405180910390f35b34801561075c57600080fd5b5061077760048036038101906107729190613177565b611714565b005b610793600480360381019061078e91906132fd565b611776565b005b3480156107a157600080fd5b506107bc60048036038101906107b791906132fd565b61191f565b6040516107c99190613ddf565b60405180910390f35b3480156107de57600080fd5b506107e76119c6565b6040516107f49190614101565b60405180910390f35b34801561080957600080fd5b50610824600480360381019061081f91906130ec565b6119cc565b6040516108319190613dc4565b60405180910390f35b34801561084657600080fd5b5061084f611a60565b60405161085c9190614101565b60405180910390f35b34801561087157600080fd5b5061088c600480360381019061088791906130c3565b611a66565b005b34801561089a57600080fd5b506108b560048036038101906108b091906132fd565b611b5e565b005b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061092a575061092982611be4565b5b9050919050565b606060008054610940906143bb565b80601f016020809104026020016040519081016040528092919081815260200182805461096c906143bb565b80156109b95780601f1061098e576101008083540402835291602001916109b9565b820191906000526020600020905b81548152906001019060200180831161099c57829003601f168201915b5050505050905090565b60006109ce82611cc6565b610a0d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a0490613fa1565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610a53826111e9565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610ac4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610abb90614061565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610ae3611d32565b73ffffffffffffffffffffffffffffffffffffffff161480610b125750610b1181610b0c611d32565b6119cc565b5b610b51576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b4890613f01565b60405180910390fd5b610b5b8383611d3a565b505050565b601060009054906101000a900460ff16610baf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ba690614081565b60405180910390fd5b600081118015610bc15750600e548111155b610c00576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bf790614041565b60405180910390fd5b600d5481601254610c1191906141f0565b1115610c52576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c4990614021565b60405180910390fd5b600e5481601460003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610ca091906141f0565b1115610ce1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cd890613ea1565b60405180910390fd5b600060125490508160126000828254610cfa91906141f0565b9250508190555081601460003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610d5091906141f0565b9250508190555060005b82811015610db157610d7833600184610d7391906141f0565b611df3565b60136000815480929190610d8b906143ed565b91905055508180610d9b906143ed565b9250508080610da9906143ed565b915050610d5a565b505050565b600d5481565b6000600880549050905090565b610dda610dd4611d32565b82611e11565b610e19576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e10906140c1565b60405180910390fd5b610e24838383611eef565b505050565b6000610e3483611342565b8210610e75576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e6c90613e01565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b600b5481565b610edc611d32565b73ffffffffffffffffffffffffffffffffffffffff16610efa61150e565b73ffffffffffffffffffffffffffffffffffffffff1614610f50576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f4790613fc1565b60405180910390fd5b80600c8190555050565b610f62611d32565b73ffffffffffffffffffffffffffffffffffffffff16610f8061150e565b73ffffffffffffffffffffffffffffffffffffffff1614610fd6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fcd90613fc1565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f1935050505061101457600080fd5b565b61103183838360405180602001604052806000815250611714565b505050565b6000611040610dbc565b8210611081576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611078906140e1565b60405180910390fd5b600882815481106110bb577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002001549050919050565b6110d5611d32565b73ffffffffffffffffffffffffffffffffffffffff166110f361150e565b73ffffffffffffffffffffffffffffffffffffffff1614611149576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161114090613fc1565b60405180910390fd5b806011908051906020019061115f929190612ee7565b5050565b61116b611d32565b73ffffffffffffffffffffffffffffffffffffffff1661118961150e565b73ffffffffffffffffffffffffffffffffffffffff16146111df576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111d690613fc1565b60405180910390fd5b80600e8190555050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611292576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161128990613f41565b60405180910390fd5b80915050919050565b601060009054906101000a900460ff1681565b601180546112bb906143bb565b80601f01602080910402602001604051908101604052809291908181526020018280546112e7906143bb565b80156113345780601f1061130957610100808354040283529160200191611334565b820191906000526020600020905b81548152906001019060200180831161131757829003601f168201915b505050505081565b60125481565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156113b3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113aa90613f21565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611402611d32565b73ffffffffffffffffffffffffffffffffffffffff1661142061150e565b73ffffffffffffffffffffffffffffffffffffffff1614611476576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161146d90613fc1565b60405180910390fd5b80600f8190555050565b600f5481565b61148e611d32565b73ffffffffffffffffffffffffffffffffffffffff166114ac61150e565b73ffffffffffffffffffffffffffffffffffffffff1614611502576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114f990613fc1565b60405180910390fd5b61150c600061214b565b565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b611540611d32565b73ffffffffffffffffffffffffffffffffffffffff1661155e61150e565b73ffffffffffffffffffffffffffffffffffffffff16146115b4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115ab90613fc1565b60405180910390fd5b80600b8190555050565b6060600180546115cd906143bb565b80601f01602080910402602001604051908101604052809291908181526020018280546115f9906143bb565b80156116465780601f1061161b57610100808354040283529160200191611646565b820191906000526020600020905b81548152906001019060200180831161162957829003601f168201915b5050505050905090565b611658611d32565b73ffffffffffffffffffffffffffffffffffffffff1661167661150e565b73ffffffffffffffffffffffffffffffffffffffff16146116cc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116c390613fc1565b60405180910390fd5b601060009054906101000a900460ff1615601060006101000a81548160ff021916908315150217905550565b61170a611703611d32565b8383612211565b5050565b600e5481565b61172561171f611d32565b83611e11565b611764576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161175b906140c1565b60405180910390fd5b6117708484848461237e565b50505050565b601060009054906101000a900460ff166117c5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117bc90614081565b60405180910390fd5b6000811180156117d75750600f548111155b611816576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161180d90614041565b60405180910390fd5b600c548160125461182791906141f0565b1115611868576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161185f906140a1565b60405180910390fd5b80600b546118769190614277565b3410156118b8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118af90613f61565b60405180910390fd5b6000601254905081601260008282546118d191906141f0565b9250508190555060005b8281101561191a576118f9336001846118f491906141f0565b611df3565b8180611904906143ed565b9250508080611912906143ed565b9150506118db565b505050565b606061192a82611cc6565b611969576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161196090614001565b60405180910390fd5b60006119736123da565b9050600081511161199357604051806020016040528060008152506119be565b8061199d8461246c565b6040516020016119ae929190613d2e565b6040516020818303038152906040525b915050919050565b60135481565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600c5481565b611a6e611d32565b73ffffffffffffffffffffffffffffffffffffffff16611a8c61150e565b73ffffffffffffffffffffffffffffffffffffffff1614611ae2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ad990613fc1565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611b52576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b4990613e41565b60405180910390fd5b611b5b8161214b565b50565b611b66611d32565b73ffffffffffffffffffffffffffffffffffffffff16611b8461150e565b73ffffffffffffffffffffffffffffffffffffffff1614611bda576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bd190613fc1565b60405180910390fd5b80600d8190555050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480611caf57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80611cbf5750611cbe82612619565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16611dad836111e9565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b611e0d828260405180602001604052806000815250612683565b5050565b6000611e1c82611cc6565b611e5b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e5290613ee1565b60405180910390fd5b6000611e66836111e9565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611ed557508373ffffffffffffffffffffffffffffffffffffffff16611ebd846109c3565b73ffffffffffffffffffffffffffffffffffffffff16145b80611ee65750611ee581856119cc565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16611f0f826111e9565b73ffffffffffffffffffffffffffffffffffffffff1614611f65576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f5c90613fe1565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611fd5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fcc90613e81565b60405180910390fd5b611fe08383836126de565b611feb600082611d3a565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461203b91906142d1565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461209291906141f0565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612280576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161227790613ec1565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516123719190613dc4565b60405180910390a3505050565b612389848484611eef565b612395848484846127f2565b6123d4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123cb90613e21565b60405180910390fd5b50505050565b6060601180546123e9906143bb565b80601f0160208091040260200160405190810160405280929190818152602001828054612415906143bb565b80156124625780601f1061243757610100808354040283529160200191612462565b820191906000526020600020905b81548152906001019060200180831161244557829003601f168201915b5050505050905090565b606060008214156124b4576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612614565b600082905060005b600082146124e65780806124cf906143ed565b915050600a826124df9190614246565b91506124bc565b60008167ffffffffffffffff811115612528577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f19166020018201604052801561255a5781602001600182028036833780820191505090505b5090505b6000851461260d5760018261257391906142d1565b9150600a856125829190614436565b603061258e91906141f0565b60f81b8183815181106125ca577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856126069190614246565b945061255e565b8093505050505b919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b61268d8383612989565b61269a60008484846127f2565b6126d9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126d090613e21565b60405180910390fd5b505050565b6126e9838383612b57565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561272c5761272781612b5c565b61276b565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161461276a576127698382612ba5565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156127ae576127a981612d12565b6127ed565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16146127ec576127eb8282612e55565b5b5b505050565b60006128138473ffffffffffffffffffffffffffffffffffffffff16612ed4565b1561297c578373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261283c611d32565b8786866040518563ffffffff1660e01b815260040161285e9493929190613d78565b602060405180830381600087803b15801561287857600080fd5b505af19250505080156128a957506040513d601f19601f820116820180604052508101906128a69190613293565b60015b61292c573d80600081146128d9576040519150601f19603f3d011682016040523d82523d6000602084013e6128de565b606091505b50600081511415612924576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161291b90613e21565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612981565b600190505b949350505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156129f9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129f090613f81565b60405180910390fd5b612a0281611cc6565b15612a42576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a3990613e61565b60405180910390fd5b612a4e600083836126de565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612a9e91906141f0565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b60006001612bb284611342565b612bbc91906142d1565b9050600060076000848152602001908152602001600020549050818114612ca1576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b60006001600880549050612d2691906142d1565b9050600060096000848152602001908152602001600020549050600060088381548110612d7c577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b906000526020600020015490508060088381548110612dc4577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b906000526020600020018190555081600960008381526020019081526020016000208190555060096000858152602001908152602001600020600090556008805480612e39577f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b6000612e6083611342565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b600080823b905060008111915050919050565b828054612ef3906143bb565b90600052602060002090601f016020900481019282612f155760008555612f5c565b82601f10612f2e57805160ff1916838001178555612f5c565b82800160010185558215612f5c579182015b82811115612f5b578251825591602001919060010190612f40565b5b509050612f699190612f6d565b5090565b5b80821115612f86576000816000905550600101612f6e565b5090565b6000612f9d612f988461414d565b61411c565b905082815260208101848484011115612fb557600080fd5b612fc0848285614379565b509392505050565b6000612fdb612fd68461417d565b61411c565b905082815260208101848484011115612ff357600080fd5b612ffe848285614379565b509392505050565b60008135905061301581614534565b92915050565b60008135905061302a8161454b565b92915050565b60008135905061303f81614562565b92915050565b60008151905061305481614562565b92915050565b600082601f83011261306b57600080fd5b813561307b848260208601612f8a565b91505092915050565b600082601f83011261309557600080fd5b81356130a5848260208601612fc8565b91505092915050565b6000813590506130bd81614579565b92915050565b6000602082840312156130d557600080fd5b60006130e384828501613006565b91505092915050565b600080604083850312156130ff57600080fd5b600061310d85828601613006565b925050602061311e85828601613006565b9150509250929050565b60008060006060848603121561313d57600080fd5b600061314b86828701613006565b935050602061315c86828701613006565b925050604061316d868287016130ae565b9150509250925092565b6000806000806080858703121561318d57600080fd5b600061319b87828801613006565b94505060206131ac87828801613006565b93505060406131bd878288016130ae565b925050606085013567ffffffffffffffff8111156131da57600080fd5b6131e68782880161305a565b91505092959194509250565b6000806040838503121561320557600080fd5b600061321385828601613006565b92505060206132248582860161301b565b9150509250929050565b6000806040838503121561324157600080fd5b600061324f85828601613006565b9250506020613260858286016130ae565b9150509250929050565b60006020828403121561327c57600080fd5b600061328a84828501613030565b91505092915050565b6000602082840312156132a557600080fd5b60006132b384828501613045565b91505092915050565b6000602082840312156132ce57600080fd5b600082013567ffffffffffffffff8111156132e857600080fd5b6132f484828501613084565b91505092915050565b60006020828403121561330f57600080fd5b600061331d848285016130ae565b91505092915050565b61332f81614305565b82525050565b61333e81614317565b82525050565b600061334f826141ad565b61335981856141c3565b9350613369818560208601614388565b61337281614523565b840191505092915050565b6000613388826141b8565b61339281856141d4565b93506133a2818560208601614388565b6133ab81614523565b840191505092915050565b60006133c1826141b8565b6133cb81856141e5565b93506133db818560208601614388565b80840191505092915050565b60006133f4602b836141d4565b91507f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008301527f74206f6620626f756e64730000000000000000000000000000000000000000006020830152604082019050919050565b600061345a6032836141d4565b91507f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008301527f63656976657220696d706c656d656e74657200000000000000000000000000006020830152604082019050919050565b60006134c06026836141d4565b91507f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008301527f64647265737300000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613526601c836141d4565b91507f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006000830152602082019050919050565b60006135666024836141d4565b91507f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008301527f72657373000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006135cc6028836141d4565b91507f596f75206861766520616c7265616479206d696e74656420352066726565204c60008301527f61727661446164730000000000000000000000000000000000000000000000006020830152604082019050919050565b60006136326019836141d4565b91507f4552433732313a20617070726f766520746f2063616c6c6572000000000000006000830152602082019050919050565b6000613672602c836141d4565b91507f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008301527f697374656e7420746f6b656e00000000000000000000000000000000000000006020830152604082019050919050565b60006136d86038836141d4565b91507f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008301527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006020830152604082019050919050565b600061373e602a836141d4565b91507f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008301527f726f2061646472657373000000000000000000000000000000000000000000006020830152604082019050919050565b60006137a46029836141d4565b91507f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008301527f656e7420746f6b656e00000000000000000000000000000000000000000000006020830152604082019050919050565b600061380a6034836141d4565b91507f4554482076616c75652073656e7420697320746f6f206c6974746c6520666f7260008301527f2074686973206d616e79204c61727661446164730000000000000000000000006020830152604082019050919050565b60006138706020836141d4565b91507f4552433732313a206d696e7420746f20746865207a65726f20616464726573736000830152602082019050919050565b60006138b0602c836141d4565b91507f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008301527f697374656e7420746f6b656e00000000000000000000000000000000000000006020830152604082019050919050565b60006139166005836141e5565b91507f2e6a736f6e0000000000000000000000000000000000000000000000000000006000830152600582019050919050565b60006139566020836141d4565b91507f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726000830152602082019050919050565b60006139966029836141d4565b91507f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008301527f73206e6f74206f776e00000000000000000000000000000000000000000000006020830152604082019050919050565b60006139fc602f836141d4565b91507f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008301527f6e6578697374656e7420746f6b656e00000000000000000000000000000000006020830152604082019050919050565b6000613a626021836141d4565b91507f546865726520617265206e6f206d6f72652066726565206d696e7473206c656660008301527f74000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613ac86024836141d4565b91507f4d696e7420636f756e7420697320746f6f206c6974746c65206f7220746f6f2060008301527f68696768000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613b2e6021836141d4565b91507f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008301527f72000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613b94602c836141d4565b91507f506c65617365207761697420756e74696c207468652064726f7020697320616360008301527f7469766520746f206d696e7400000000000000000000000000000000000000006020830152604082019050919050565b6000613bfa602d836141d4565b91507f507572636861736520776f756c6420657863656564206d617820737570706c7960008301527f206f66204c6172766144616473000000000000000000000000000000000000006020830152604082019050919050565b6000613c606031836141d4565b91507f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008301527f776e6572206e6f7220617070726f7665640000000000000000000000000000006020830152604082019050919050565b6000613cc6602c836141d4565b91507f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008301527f7574206f6620626f756e647300000000000000000000000000000000000000006020830152604082019050919050565b613d288161436f565b82525050565b6000613d3a82856133b6565b9150613d4682846133b6565b9150613d5182613909565b91508190509392505050565b6000602082019050613d726000830184613326565b92915050565b6000608082019050613d8d6000830187613326565b613d9a6020830186613326565b613da76040830185613d1f565b8181036060830152613db98184613344565b905095945050505050565b6000602082019050613dd96000830184613335565b92915050565b60006020820190508181036000830152613df9818461337d565b905092915050565b60006020820190508181036000830152613e1a816133e7565b9050919050565b60006020820190508181036000830152613e3a8161344d565b9050919050565b60006020820190508181036000830152613e5a816134b3565b9050919050565b60006020820190508181036000830152613e7a81613519565b9050919050565b60006020820190508181036000830152613e9a81613559565b9050919050565b60006020820190508181036000830152613eba816135bf565b9050919050565b60006020820190508181036000830152613eda81613625565b9050919050565b60006020820190508181036000830152613efa81613665565b9050919050565b60006020820190508181036000830152613f1a816136cb565b9050919050565b60006020820190508181036000830152613f3a81613731565b9050919050565b60006020820190508181036000830152613f5a81613797565b9050919050565b60006020820190508181036000830152613f7a816137fd565b9050919050565b60006020820190508181036000830152613f9a81613863565b9050919050565b60006020820190508181036000830152613fba816138a3565b9050919050565b60006020820190508181036000830152613fda81613949565b9050919050565b60006020820190508181036000830152613ffa81613989565b9050919050565b6000602082019050818103600083015261401a816139ef565b9050919050565b6000602082019050818103600083015261403a81613a55565b9050919050565b6000602082019050818103600083015261405a81613abb565b9050919050565b6000602082019050818103600083015261407a81613b21565b9050919050565b6000602082019050818103600083015261409a81613b87565b9050919050565b600060208201905081810360008301526140ba81613bed565b9050919050565b600060208201905081810360008301526140da81613c53565b9050919050565b600060208201905081810360008301526140fa81613cb9565b9050919050565b60006020820190506141166000830184613d1f565b92915050565b6000604051905081810181811067ffffffffffffffff82111715614143576141426144f4565b5b8060405250919050565b600067ffffffffffffffff821115614168576141676144f4565b5b601f19601f8301169050602081019050919050565b600067ffffffffffffffff821115614198576141976144f4565b5b601f19601f8301169050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b60006141fb8261436f565b91506142068361436f565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561423b5761423a614467565b5b828201905092915050565b60006142518261436f565b915061425c8361436f565b92508261426c5761426b614496565b5b828204905092915050565b60006142828261436f565b915061428d8361436f565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156142c6576142c5614467565b5b828202905092915050565b60006142dc8261436f565b91506142e78361436f565b9250828210156142fa576142f9614467565b5b828203905092915050565b60006143108261434f565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b838110156143a657808201518184015260208101905061438b565b838111156143b5576000848401525b50505050565b600060028204905060018216806143d357607f821691505b602082108114156143e7576143e66144c5565b5b50919050565b60006143f88261436f565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561442b5761442a614467565b5b600182019050919050565b60006144418261436f565b915061444c8361436f565b92508261445c5761445b614496565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b61453d81614305565b811461454857600080fd5b50565b61455481614317565b811461455f57600080fd5b50565b61456b81614323565b811461457657600080fd5b50565b6145828161436f565b811461458d57600080fd5b5056fea2646970667358221220a787934ca54be61214f6a92ff45a6f22183db787f17e5c164e82f8c226dcfcdb64736f6c63430008000033

Deployed Bytecode Sourcemap

43599:2994:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34947:224;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21607:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23175:221;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22698:411;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;44153:785;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;43751:39;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35587:113;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23925:339;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;35255:256;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43658:45;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46048:96;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;46476:112;;;;;;;;;;;;;:::i;:::-;;24335:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;35777:233;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45841:100;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;46261:104;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;21301:239;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43875:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43914:26;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43947:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21031:208;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46373:95;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;43837:29;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42751:103;;;;;;;;;;;;;:::i;:::-;;42100:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45949:91;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;21776:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45632:85;;;;;;;;;;;;;:::i;:::-;;23468:155;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;43797:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24591:328;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;44946:678;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;21951:343;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43985:35;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23694:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43710:34;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43009:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;46152:101;;;;;;;;;;;;;;;;;;;;;;;:::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;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;:::-;22698:411;;;:::o;44153:785::-;44219:10;;;;;;;;;;;44211:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;44309:1;44297:9;:13;:47;;;;;44327:17;;44314:9;:30;;44297:47;44289:96;;;;;;;;;;;;:::i;:::-;;;;;;;;;44432:17;;44419:9;44404:12;;:24;;;;:::i;:::-;:45;;44396:91;;;;;;;;;;;;:::i;:::-;;;;;;;;;44557:17;;44544:9;44506:23;:35;44530:10;44506:35;;;;;;;;;;;;;;;;:47;;;;:::i;:::-;:68;;44498:121;;;;;;;;;;;;:::i;:::-;;;;;;;;;44632:18;44653:12;;44632:33;;44692:9;44676:12;;:25;;;;;;;:::i;:::-;;;;;;;;44751:9;44712:23;:35;44736:10;44712:35;;;;;;;;;;;;;;;;:48;;;;;;;:::i;:::-;;;;;;;;44778:6;44773:158;44794:9;44790:1;:13;44773:158;;;44824:35;44834:10;44857:1;44846:10;:12;;;;:::i;:::-;44824:9;:35::i;:::-;44874:16;;:18;;;;;;;;;:::i;:::-;;;;;;44907:12;;;;;:::i;:::-;;;;44805:3;;;;;:::i;:::-;;;;44773:158;;;;44153:785;;:::o;43751:39::-;;;;:::o;35587:113::-;35648:7;35675:10;:17;;;;35668:24;;35587:113;:::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;43658:45::-;;;;:::o;46048:96::-;42331:12;:10;:12::i;:::-;42320:23;;:7;:5;:7::i;:::-;:23;;;42312:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;46127:9:::1;46112:12;:24;;;;46048:96:::0;:::o;46476:112::-;42331:12;:10;:12::i;:::-;42320:23;;:7;:5;:7::i;:::-;:23;;;42312:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;46540:10:::1;46532:24;;:47;46557:21;46532:47;;;;;;;;;;;;;;;;;;;;;;;46524:56;;;::::0;::::1;;46476:112::o:0;24335:185::-;24473:39;24490:4;24496:2;24500:7;24473:39;;;;;;;;;;;;:16;:39::i;:::-;24335:185;;;:::o;35777:233::-;35852:7;35888:30;:28;:30::i;:::-;35880:5;:38;35872:95;;;;;;;;;;;;:::i;:::-;;;;;;;;;35985:10;35996:5;35985:17;;;;;;;;;;;;;;;;;;;;;;;;35978:24;;35777:233;;;:::o;45841:100::-;42331:12;:10;:12::i;:::-;42320:23;;:7;:5;:7::i;:::-;:23;;;42312:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;45923:10:::1;45913:7;:20;;;;;;;;;;;;:::i;:::-;;45841:100:::0;:::o;46261:104::-;42331:12;:10;:12::i;:::-;42320:23;;:7;:5;:7::i;:::-;:23;;;42312:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;46351:6:::1;46331:17;:26;;;;46261:104:::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;43875:30::-;;;;;;;;;;;;;:::o;43914:26::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;43947: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;46373:95::-;42331:12;:10;:12::i;:::-;42320:23;;:7;:5;:7::i;:::-;:23;;;42312:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;46454:6:::1;46439:12;:21;;;;46373:95:::0;:::o;43837:29::-;;;;:::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;42100:87::-;42146:7;42173:6;;;;;;;;;;;42166:13;;42100:87;:::o;45949:91::-;42331:12;:10;:12::i;:::-;42320:23;;:7;:5;:7::i;:::-;:23;;;42312:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;46024:8:::1;46011:10;:21;;;;45949:91:::0;:::o;21776:104::-;21832:13;21865:7;21858:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21776:104;:::o;45632:85::-;42331:12;:10;:12::i;:::-;42320:23;;:7;:5;:7::i;:::-;:23;;;42312:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;45699:10:::1;;;;;;;;;;;45698:11;45685:10;;:24;;;;;;;;;;;;;;;;;;45632:85::o:0;23468:155::-;23563:52;23582:12;:10;:12::i;:::-;23596:8;23606;23563:18;:52::i;:::-;23468:155;;:::o;43797:33::-;;;;:::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;44946:678::-;45016:10;;;;;;;;;;;45008:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;45106:1;45094:9;:13;:42;;;;;45124:12;;45111:9;:25;;45094:42;45086:91;;;;;;;;;;;;:::i;:::-;;;;;;;;;45224:12;;45211:9;45196:12;;:24;;;;:::i;:::-;:40;;45188:98;;;;;;;;;;;;:::i;:::-;;;;;;;;;45331:9;45318:10;;:22;;;;:::i;:::-;45305:9;:35;;45297:100;;;;;;;;;;;;:::i;:::-;;;;;;;;;45410:18;45431:12;;45410:33;;45470:9;45454:12;;:25;;;;;;;:::i;:::-;;;;;;;;45497:6;45492:125;45513:9;45509:1;:13;45492:125;;;45543:35;45553:10;45576:1;45565:10;:12;;;;:::i;:::-;45543:9;:35::i;:::-;45593:12;;;;;:::i;:::-;;;;45524:3;;;;;:::i;:::-;;;;45492:125;;;;44946:678;;:::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;43985:35::-;;;;:::o;23694:164::-;23791:4;23815:18;:25;23834:5;23815:25;;;;;;;;;;;;;;;:35;23841:8;23815:35;;;;;;;;;;;;;;;;;;;;;;;;;23808:42;;23694:164;;;;:::o;43710:34::-;;;;:::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;46152:101::-;42331:12;:10;:12::i;:::-;42320:23;;:7;:5;:7::i;:::-;:23;;;42312:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;46238:7:::1;46218:17;:27;;;;46152:101:::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;27413:110::-;27489:26;27499:2;27503:7;27489:26;;;;;;;;;;;;:9;:26::i;:::-;27413:110;;:::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;;;;;;;;;;;;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;45725:108::-;45785:13;45818:7;45811:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45725: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;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;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;;;;;;;;;;;;;;;;;;;:56;;;;;;;;;;;18253:2;18244:11;;;;;:::i;:::-;;;18113:154;;;18291:6;18277:21;;;;;17583:723;;;;:::o;8172:157::-;8257:4;8296:25;8281:40;;;:11;:40;;;;8274:47;;8172:157;;;:::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;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;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;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;;;;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;;;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;;;;;;;;;;;;;;;;;;;;;;;;40691:48;;40777:11;40752:10;40763;40752:22;;;;;;;;;;;;;;;;;;;;;;;:36;;;;40888:10;40857:15;:28;40873:11;40857:28;;;;;;;;;;;:41;;;;41029:15;:24;41045:7;41029:24;;;;;;;;;;;41022:31;;;41064:10;:16;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;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;;;;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;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:342:1:-;;109:64;124:48;165:6;124:48;:::i;:::-;109:64;:::i;:::-;100:73;;196:6;189:5;182:21;234:4;227:5;223:16;272:3;263:6;258:3;254:16;251:25;248:2;;;289:1;286;279:12;248:2;302:41;336:6;331:3;326;302:41;:::i;:::-;90:259;;;;;;:::o;355:344::-;;458:65;473:49;515:6;473:49;:::i;:::-;458:65;:::i;:::-;449:74;;546:6;539:5;532:21;584:4;577:5;573:16;622:3;613:6;608:3;604:16;601:25;598:2;;;639:1;636;629:12;598:2;652:41;686:6;681:3;676;652:41;:::i;:::-;439:260;;;;;;:::o;705:139::-;;789:6;776:20;767:29;;805:33;832:5;805:33;:::i;:::-;757:87;;;;:::o;850:133::-;;931:6;918:20;909:29;;947:30;971:5;947:30;:::i;:::-;899:84;;;;:::o;989:137::-;;1072:6;1059:20;1050:29;;1088:32;1114:5;1088:32;:::i;:::-;1040:86;;;;:::o;1132:141::-;;1219:6;1213:13;1204:22;;1235:32;1261:5;1235:32;:::i;:::-;1194:79;;;;:::o;1292:271::-;;1396:3;1389:4;1381:6;1377:17;1373:27;1363:2;;1414:1;1411;1404:12;1363:2;1454:6;1441:20;1479:78;1553:3;1545:6;1538:4;1530:6;1526:17;1479:78;:::i;:::-;1470:87;;1353:210;;;;;:::o;1583:273::-;;1688:3;1681:4;1673:6;1669:17;1665:27;1655:2;;1706:1;1703;1696:12;1655:2;1746:6;1733:20;1771:79;1846:3;1838:6;1831:4;1823:6;1819:17;1771:79;:::i;:::-;1762:88;;1645:211;;;;;:::o;1862:139::-;;1946:6;1933:20;1924:29;;1962:33;1989:5;1962:33;:::i;:::-;1914:87;;;;:::o;2007:262::-;;2115:2;2103:9;2094:7;2090:23;2086:32;2083:2;;;2131:1;2128;2121:12;2083:2;2174:1;2199:53;2244:7;2235:6;2224:9;2220:22;2199:53;:::i;:::-;2189:63;;2145:117;2073:196;;;;:::o;2275:407::-;;;2400:2;2388:9;2379:7;2375:23;2371:32;2368:2;;;2416:1;2413;2406:12;2368:2;2459:1;2484:53;2529:7;2520:6;2509:9;2505:22;2484:53;:::i;:::-;2474:63;;2430:117;2586:2;2612:53;2657:7;2648:6;2637:9;2633:22;2612:53;:::i;:::-;2602:63;;2557:118;2358:324;;;;;:::o;2688:552::-;;;;2830:2;2818:9;2809:7;2805:23;2801:32;2798:2;;;2846:1;2843;2836:12;2798:2;2889:1;2914:53;2959:7;2950:6;2939:9;2935:22;2914:53;:::i;:::-;2904:63;;2860:117;3016:2;3042:53;3087:7;3078:6;3067:9;3063:22;3042:53;:::i;:::-;3032:63;;2987:118;3144:2;3170:53;3215:7;3206:6;3195:9;3191:22;3170:53;:::i;:::-;3160:63;;3115:118;2788:452;;;;;:::o;3246:809::-;;;;;3414:3;3402:9;3393:7;3389:23;3385:33;3382:2;;;3431:1;3428;3421:12;3382:2;3474:1;3499:53;3544:7;3535:6;3524:9;3520:22;3499:53;:::i;:::-;3489:63;;3445:117;3601:2;3627:53;3672:7;3663:6;3652:9;3648:22;3627:53;:::i;:::-;3617:63;;3572:118;3729:2;3755:53;3800:7;3791:6;3780:9;3776:22;3755:53;:::i;:::-;3745:63;;3700:118;3885:2;3874:9;3870:18;3857:32;3916:18;3908:6;3905:30;3902:2;;;3948:1;3945;3938:12;3902:2;3976:62;4030:7;4021:6;4010:9;4006:22;3976:62;:::i;:::-;3966:72;;3828:220;3372:683;;;;;;;:::o;4061:401::-;;;4183:2;4171:9;4162:7;4158:23;4154:32;4151:2;;;4199:1;4196;4189:12;4151:2;4242:1;4267:53;4312:7;4303:6;4292:9;4288:22;4267:53;:::i;:::-;4257:63;;4213:117;4369:2;4395:50;4437:7;4428:6;4417:9;4413:22;4395:50;:::i;:::-;4385:60;;4340:115;4141:321;;;;;:::o;4468:407::-;;;4593:2;4581:9;4572:7;4568:23;4564:32;4561:2;;;4609:1;4606;4599:12;4561:2;4652:1;4677:53;4722:7;4713:6;4702:9;4698:22;4677:53;:::i;:::-;4667:63;;4623:117;4779:2;4805:53;4850:7;4841:6;4830:9;4826:22;4805:53;:::i;:::-;4795:63;;4750:118;4551:324;;;;;:::o;4881:260::-;;4988:2;4976:9;4967:7;4963:23;4959:32;4956:2;;;5004:1;5001;4994:12;4956:2;5047:1;5072:52;5116:7;5107:6;5096:9;5092:22;5072:52;:::i;:::-;5062:62;;5018:116;4946:195;;;;:::o;5147:282::-;;5265:2;5253:9;5244:7;5240:23;5236:32;5233:2;;;5281:1;5278;5271:12;5233:2;5324:1;5349:63;5404:7;5395:6;5384:9;5380:22;5349:63;:::i;:::-;5339:73;;5295:127;5223:206;;;;:::o;5435:375::-;;5553:2;5541:9;5532:7;5528:23;5524:32;5521:2;;;5569:1;5566;5559:12;5521:2;5640:1;5629:9;5625:17;5612:31;5670:18;5662:6;5659:30;5656:2;;;5702:1;5699;5692:12;5656:2;5730:63;5785:7;5776:6;5765:9;5761:22;5730:63;:::i;:::-;5720:73;;5583:220;5511:299;;;;:::o;5816:262::-;;5924:2;5912:9;5903:7;5899:23;5895:32;5892:2;;;5940:1;5937;5930:12;5892:2;5983:1;6008:53;6053:7;6044:6;6033:9;6029:22;6008:53;:::i;:::-;5998:63;;5954:117;5882:196;;;;:::o;6084:118::-;6171:24;6189:5;6171:24;:::i;:::-;6166:3;6159:37;6149:53;;:::o;6208:109::-;6289:21;6304:5;6289:21;:::i;:::-;6284:3;6277:34;6267:50;;:::o;6323:360::-;;6437:38;6469:5;6437:38;:::i;:::-;6491:70;6554:6;6549:3;6491:70;:::i;:::-;6484:77;;6570:52;6615:6;6610:3;6603:4;6596:5;6592:16;6570:52;:::i;:::-;6647:29;6669:6;6647:29;:::i;:::-;6642:3;6638:39;6631:46;;6413:270;;;;;:::o;6689:364::-;;6805:39;6838:5;6805:39;:::i;:::-;6860:71;6924:6;6919:3;6860:71;:::i;:::-;6853:78;;6940:52;6985:6;6980:3;6973:4;6966:5;6962:16;6940:52;:::i;:::-;7017:29;7039:6;7017:29;:::i;:::-;7012:3;7008:39;7001:46;;6781:272;;;;;:::o;7059:377::-;;7193:39;7226:5;7193:39;:::i;:::-;7248:89;7330:6;7325:3;7248:89;:::i;:::-;7241:96;;7346:52;7391:6;7386:3;7379:4;7372:5;7368:16;7346:52;:::i;:::-;7423:6;7418:3;7414:16;7407:23;;7169:267;;;;;:::o;7442:375::-;;7605:67;7669:2;7664:3;7605:67;:::i;:::-;7598:74;;7702:34;7698:1;7693:3;7689:11;7682:55;7768:13;7763:2;7758:3;7754:12;7747:35;7808:2;7803:3;7799:12;7792:19;;7588:229;;;:::o;7823:382::-;;7986:67;8050:2;8045:3;7986:67;:::i;:::-;7979:74;;8083:34;8079:1;8074:3;8070:11;8063:55;8149:20;8144:2;8139:3;8135:12;8128:42;8196:2;8191:3;8187:12;8180:19;;7969:236;;;:::o;8211:370::-;;8374:67;8438:2;8433:3;8374:67;:::i;:::-;8367:74;;8471:34;8467:1;8462:3;8458:11;8451:55;8537:8;8532:2;8527:3;8523:12;8516:30;8572:2;8567:3;8563:12;8556:19;;8357:224;;;:::o;8587:326::-;;8750:67;8814:2;8809:3;8750:67;:::i;:::-;8743:74;;8847:30;8843:1;8838:3;8834:11;8827:51;8904:2;8899:3;8895:12;8888:19;;8733:180;;;:::o;8919:368::-;;9082:67;9146:2;9141:3;9082:67;:::i;:::-;9075:74;;9179:34;9175:1;9170:3;9166:11;9159:55;9245:6;9240:2;9235:3;9231:12;9224:28;9278:2;9273:3;9269:12;9262:19;;9065:222;;;:::o;9293:372::-;;9456:67;9520:2;9515:3;9456:67;:::i;:::-;9449:74;;9553:34;9549:1;9544:3;9540:11;9533:55;9619:10;9614:2;9609:3;9605:12;9598:32;9656:2;9651:3;9647:12;9640:19;;9439:226;;;:::o;9671:323::-;;9834:67;9898:2;9893:3;9834:67;:::i;:::-;9827:74;;9931:27;9927:1;9922:3;9918:11;9911:48;9985:2;9980:3;9976:12;9969:19;;9817:177;;;:::o;10000:376::-;;10163:67;10227:2;10222:3;10163:67;:::i;:::-;10156:74;;10260:34;10256:1;10251:3;10247:11;10240:55;10326:14;10321:2;10316:3;10312:12;10305:36;10367:2;10362:3;10358:12;10351:19;;10146:230;;;:::o;10382:388::-;;10545:67;10609:2;10604:3;10545:67;:::i;:::-;10538:74;;10642:34;10638:1;10633:3;10629:11;10622:55;10708:26;10703:2;10698:3;10694:12;10687:48;10761:2;10756:3;10752:12;10745:19;;10528:242;;;:::o;10776:374::-;;10939:67;11003:2;10998:3;10939:67;:::i;:::-;10932:74;;11036:34;11032:1;11027:3;11023:11;11016:55;11102:12;11097:2;11092:3;11088:12;11081:34;11141:2;11136:3;11132:12;11125:19;;10922:228;;;:::o;11156:373::-;;11319:67;11383:2;11378:3;11319:67;:::i;:::-;11312:74;;11416:34;11412:1;11407:3;11403:11;11396:55;11482:11;11477:2;11472:3;11468:12;11461:33;11520:2;11515:3;11511:12;11504:19;;11302:227;;;:::o;11535:384::-;;11698:67;11762:2;11757:3;11698:67;:::i;:::-;11691:74;;11795:34;11791:1;11786:3;11782:11;11775:55;11861:22;11856:2;11851:3;11847:12;11840:44;11910:2;11905:3;11901:12;11894:19;;11681:238;;;:::o;11925:330::-;;12088:67;12152:2;12147:3;12088:67;:::i;:::-;12081:74;;12185:34;12181:1;12176:3;12172:11;12165:55;12246:2;12241:3;12237:12;12230:19;;12071:184;;;:::o;12261:376::-;;12424:67;12488:2;12483:3;12424:67;:::i;:::-;12417:74;;12521:34;12517:1;12512:3;12508:11;12501:55;12587:14;12582:2;12577:3;12573:12;12566:36;12628:2;12623:3;12619:12;12612:19;;12407:230;;;:::o;12643:337::-;;12824:84;12906:1;12901:3;12824:84;:::i;:::-;12817:91;;12938:7;12934:1;12929:3;12925:11;12918:28;12972:1;12967:3;12963:11;12956:18;;12807:173;;;:::o;12986:330::-;;13149:67;13213:2;13208:3;13149:67;:::i;:::-;13142:74;;13246:34;13242:1;13237:3;13233:11;13226:55;13307:2;13302:3;13298:12;13291:19;;13132:184;;;:::o;13322:373::-;;13485:67;13549:2;13544:3;13485:67;:::i;:::-;13478:74;;13582:34;13578:1;13573:3;13569:11;13562:55;13648:11;13643:2;13638:3;13634:12;13627:33;13686:2;13681:3;13677:12;13670:19;;13468:227;;;:::o;13701:379::-;;13864:67;13928:2;13923:3;13864:67;:::i;:::-;13857:74;;13961:34;13957:1;13952:3;13948:11;13941:55;14027:17;14022:2;14017:3;14013:12;14006:39;14071:2;14066:3;14062:12;14055:19;;13847:233;;;:::o;14086:365::-;;14249:67;14313:2;14308:3;14249:67;:::i;:::-;14242:74;;14346:34;14342:1;14337:3;14333:11;14326:55;14412:3;14407:2;14402:3;14398:12;14391:25;14442:2;14437:3;14433:12;14426:19;;14232:219;;;:::o;14457:368::-;;14620:67;14684:2;14679:3;14620:67;:::i;:::-;14613:74;;14717:34;14713:1;14708:3;14704:11;14697:55;14783:6;14778:2;14773:3;14769:12;14762:28;14816:2;14811:3;14807:12;14800:19;;14603:222;;;:::o;14831:365::-;;14994:67;15058:2;15053:3;14994:67;:::i;:::-;14987:74;;15091:34;15087:1;15082:3;15078:11;15071:55;15157:3;15152:2;15147:3;15143:12;15136:25;15187:2;15182:3;15178:12;15171:19;;14977:219;;;:::o;15202:376::-;;15365:67;15429:2;15424:3;15365:67;:::i;:::-;15358:74;;15462:34;15458:1;15453:3;15449:11;15442:55;15528:14;15523:2;15518:3;15514:12;15507:36;15569:2;15564:3;15560:12;15553:19;;15348:230;;;:::o;15584:377::-;;15747:67;15811:2;15806:3;15747:67;:::i;:::-;15740:74;;15844:34;15840:1;15835:3;15831:11;15824:55;15910:15;15905:2;15900:3;15896:12;15889:37;15952:2;15947:3;15943:12;15936:19;;15730:231;;;:::o;15967:381::-;;16130:67;16194:2;16189:3;16130:67;:::i;:::-;16123:74;;16227:34;16223:1;16218:3;16214:11;16207:55;16293:19;16288:2;16283:3;16279:12;16272:41;16339:2;16334:3;16330:12;16323:19;;16113:235;;;:::o;16354:376::-;;16517:67;16581:2;16576:3;16517:67;:::i;:::-;16510:74;;16614:34;16610:1;16605:3;16601:11;16594:55;16680:14;16675:2;16670:3;16666:12;16659:36;16721:2;16716:3;16712:12;16705:19;;16500:230;;;:::o;16736:118::-;16823:24;16841:5;16823:24;:::i;:::-;16818:3;16811:37;16801:53;;:::o;16860:701::-;;17163:95;17254:3;17245:6;17163:95;:::i;:::-;17156:102;;17275:95;17366:3;17357:6;17275:95;:::i;:::-;17268:102;;17387:148;17531:3;17387:148;:::i;:::-;17380:155;;17552:3;17545:10;;17145:416;;;;;:::o;17567:222::-;;17698:2;17687:9;17683:18;17675:26;;17711:71;17779:1;17768:9;17764:17;17755:6;17711:71;:::i;:::-;17665:124;;;;:::o;17795:640::-;;18028:3;18017:9;18013:19;18005:27;;18042:71;18110:1;18099:9;18095:17;18086:6;18042:71;:::i;:::-;18123:72;18191:2;18180:9;18176:18;18167:6;18123:72;:::i;:::-;18205;18273:2;18262:9;18258:18;18249:6;18205:72;:::i;:::-;18324:9;18318:4;18314:20;18309:2;18298:9;18294:18;18287:48;18352:76;18423:4;18414:6;18352:76;:::i;:::-;18344:84;;17995:440;;;;;;;:::o;18441:210::-;;18566:2;18555:9;18551:18;18543:26;;18579:65;18641:1;18630:9;18626:17;18617:6;18579:65;:::i;:::-;18533:118;;;;:::o;18657:313::-;;18808:2;18797:9;18793:18;18785:26;;18857:9;18851:4;18847:20;18843:1;18832:9;18828:17;18821:47;18885:78;18958:4;18949:6;18885:78;:::i;:::-;18877:86;;18775:195;;;;:::o;18976:419::-;;19180:2;19169:9;19165:18;19157:26;;19229:9;19223:4;19219:20;19215:1;19204:9;19200:17;19193:47;19257:131;19383:4;19257:131;:::i;:::-;19249:139;;19147:248;;;:::o;19401:419::-;;19605:2;19594:9;19590:18;19582:26;;19654:9;19648:4;19644:20;19640:1;19629:9;19625:17;19618:47;19682:131;19808:4;19682:131;:::i;:::-;19674:139;;19572:248;;;:::o;19826:419::-;;20030:2;20019:9;20015:18;20007:26;;20079:9;20073:4;20069:20;20065:1;20054:9;20050:17;20043:47;20107:131;20233:4;20107:131;:::i;:::-;20099:139;;19997:248;;;:::o;20251:419::-;;20455:2;20444:9;20440:18;20432:26;;20504:9;20498:4;20494:20;20490:1;20479:9;20475:17;20468:47;20532:131;20658:4;20532:131;:::i;:::-;20524:139;;20422:248;;;:::o;20676:419::-;;20880:2;20869:9;20865:18;20857:26;;20929:9;20923:4;20919:20;20915:1;20904:9;20900:17;20893:47;20957:131;21083:4;20957:131;:::i;:::-;20949:139;;20847:248;;;:::o;21101:419::-;;21305:2;21294:9;21290:18;21282:26;;21354:9;21348:4;21344:20;21340:1;21329:9;21325:17;21318:47;21382:131;21508:4;21382:131;:::i;:::-;21374:139;;21272:248;;;:::o;21526:419::-;;21730:2;21719:9;21715:18;21707:26;;21779:9;21773:4;21769:20;21765:1;21754:9;21750:17;21743:47;21807:131;21933:4;21807:131;:::i;:::-;21799:139;;21697:248;;;:::o;21951:419::-;;22155:2;22144:9;22140:18;22132:26;;22204:9;22198:4;22194:20;22190:1;22179:9;22175:17;22168:47;22232:131;22358:4;22232:131;:::i;:::-;22224:139;;22122:248;;;:::o;22376:419::-;;22580:2;22569:9;22565:18;22557:26;;22629:9;22623:4;22619:20;22615:1;22604:9;22600:17;22593:47;22657:131;22783:4;22657:131;:::i;:::-;22649:139;;22547:248;;;:::o;22801:419::-;;23005:2;22994:9;22990:18;22982:26;;23054:9;23048:4;23044:20;23040:1;23029:9;23025:17;23018:47;23082:131;23208:4;23082:131;:::i;:::-;23074:139;;22972:248;;;:::o;23226:419::-;;23430:2;23419:9;23415:18;23407:26;;23479:9;23473:4;23469:20;23465:1;23454:9;23450:17;23443:47;23507:131;23633:4;23507:131;:::i;:::-;23499:139;;23397:248;;;:::o;23651:419::-;;23855:2;23844:9;23840:18;23832:26;;23904:9;23898:4;23894:20;23890:1;23879:9;23875:17;23868:47;23932:131;24058:4;23932:131;:::i;:::-;23924:139;;23822:248;;;:::o;24076:419::-;;24280:2;24269:9;24265:18;24257:26;;24329:9;24323:4;24319:20;24315:1;24304:9;24300:17;24293:47;24357:131;24483:4;24357:131;:::i;:::-;24349:139;;24247:248;;;:::o;24501:419::-;;24705:2;24694:9;24690:18;24682:26;;24754:9;24748:4;24744:20;24740:1;24729:9;24725:17;24718:47;24782:131;24908:4;24782:131;:::i;:::-;24774:139;;24672:248;;;:::o;24926:419::-;;25130:2;25119:9;25115:18;25107:26;;25179:9;25173:4;25169:20;25165:1;25154:9;25150:17;25143:47;25207:131;25333:4;25207:131;:::i;:::-;25199:139;;25097:248;;;:::o;25351:419::-;;25555:2;25544:9;25540:18;25532:26;;25604:9;25598:4;25594:20;25590:1;25579:9;25575:17;25568:47;25632:131;25758:4;25632:131;:::i;:::-;25624:139;;25522:248;;;:::o;25776:419::-;;25980:2;25969:9;25965:18;25957:26;;26029:9;26023:4;26019:20;26015:1;26004:9;26000:17;25993:47;26057:131;26183:4;26057:131;:::i;:::-;26049:139;;25947:248;;;:::o;26201:419::-;;26405:2;26394:9;26390:18;26382:26;;26454:9;26448:4;26444:20;26440:1;26429:9;26425:17;26418:47;26482:131;26608:4;26482:131;:::i;:::-;26474:139;;26372:248;;;:::o;26626:419::-;;26830:2;26819:9;26815:18;26807:26;;26879:9;26873:4;26869:20;26865:1;26854:9;26850:17;26843:47;26907:131;27033:4;26907:131;:::i;:::-;26899:139;;26797:248;;;:::o;27051:419::-;;27255:2;27244:9;27240:18;27232:26;;27304:9;27298:4;27294:20;27290:1;27279:9;27275:17;27268:47;27332:131;27458:4;27332:131;:::i;:::-;27324:139;;27222:248;;;:::o;27476:419::-;;27680:2;27669:9;27665:18;27657:26;;27729:9;27723:4;27719:20;27715:1;27704:9;27700:17;27693:47;27757:131;27883:4;27757:131;:::i;:::-;27749:139;;27647:248;;;:::o;27901:419::-;;28105:2;28094:9;28090:18;28082:26;;28154:9;28148:4;28144:20;28140:1;28129:9;28125:17;28118:47;28182:131;28308:4;28182:131;:::i;:::-;28174:139;;28072:248;;;:::o;28326:419::-;;28530:2;28519:9;28515:18;28507:26;;28579:9;28573:4;28569:20;28565:1;28554:9;28550:17;28543:47;28607:131;28733:4;28607:131;:::i;:::-;28599:139;;28497:248;;;:::o;28751:419::-;;28955:2;28944:9;28940:18;28932:26;;29004:9;28998:4;28994:20;28990:1;28979:9;28975:17;28968:47;29032:131;29158:4;29032:131;:::i;:::-;29024:139;;28922:248;;;:::o;29176:222::-;;29307:2;29296:9;29292:18;29284:26;;29320:71;29388:1;29377:9;29373:17;29364:6;29320:71;:::i;:::-;29274:124;;;;:::o;29404:283::-;;29470:2;29464:9;29454:19;;29512:4;29504:6;29500:17;29619:6;29607:10;29604:22;29583:18;29571:10;29568:34;29565:62;29562:2;;;29630:18;;:::i;:::-;29562:2;29670:10;29666:2;29659:22;29444:243;;;;:::o;29693:331::-;;29844:18;29836:6;29833:30;29830:2;;;29866:18;;:::i;:::-;29830:2;29951:4;29947:9;29940:4;29932:6;29928:17;29924:33;29916:41;;30012:4;30006;30002:15;29994:23;;29759:265;;;:::o;30030:332::-;;30182:18;30174:6;30171:30;30168:2;;;30204:18;;:::i;:::-;30168:2;30289:4;30285:9;30278:4;30270:6;30266:17;30262:33;30254:41;;30350:4;30344;30340:15;30332:23;;30097:265;;;:::o;30368:98::-;;30453:5;30447:12;30437:22;;30426:40;;;:::o;30472:99::-;;30558:5;30552:12;30542:22;;30531:40;;;:::o;30577:168::-;;30694:6;30689:3;30682:19;30734:4;30729:3;30725:14;30710:29;;30672:73;;;;:::o;30751:169::-;;30869:6;30864:3;30857:19;30909:4;30904:3;30900:14;30885:29;;30847:73;;;;:::o;30926:148::-;;31065:3;31050:18;;31040:34;;;;:::o;31080:305::-;;31139:20;31157:1;31139:20;:::i;:::-;31134:25;;31173:20;31191:1;31173:20;:::i;:::-;31168:25;;31327:1;31259:66;31255:74;31252:1;31249:81;31246:2;;;31333:18;;:::i;:::-;31246:2;31377:1;31374;31370:9;31363:16;;31124:261;;;;:::o;31391:185::-;;31448:20;31466:1;31448:20;:::i;:::-;31443:25;;31482:20;31500:1;31482:20;:::i;:::-;31477:25;;31521:1;31511:2;;31526:18;;:::i;:::-;31511:2;31568:1;31565;31561:9;31556:14;;31433:143;;;;:::o;31582:348::-;;31645:20;31663:1;31645:20;:::i;:::-;31640:25;;31679:20;31697:1;31679:20;:::i;:::-;31674:25;;31867:1;31799:66;31795:74;31792:1;31789:81;31784:1;31777:9;31770:17;31766:105;31763:2;;;31874:18;;:::i;:::-;31763:2;31922:1;31919;31915:9;31904:20;;31630:300;;;;:::o;31936:191::-;;31996:20;32014:1;31996:20;:::i;:::-;31991:25;;32030:20;32048:1;32030:20;:::i;:::-;32025:25;;32069:1;32066;32063:8;32060:2;;;32074:18;;:::i;:::-;32060:2;32119:1;32116;32112:9;32104:17;;31981:146;;;;:::o;32133:96::-;;32199:24;32217:5;32199:24;:::i;:::-;32188:35;;32178:51;;;:::o;32235:90::-;;32312:5;32305:13;32298:21;32287:32;;32277:48;;;:::o;32331:149::-;;32407:66;32400:5;32396:78;32385:89;;32375:105;;;:::o;32486:126::-;;32563:42;32556:5;32552:54;32541:65;;32531:81;;;:::o;32618:77::-;;32684:5;32673:16;;32663:32;;;:::o;32701:154::-;32785:6;32780:3;32775;32762:30;32847:1;32838:6;32833:3;32829:16;32822:27;32752:103;;;:::o;32861:307::-;32929:1;32939:113;32953:6;32950:1;32947:13;32939:113;;;33038:1;33033:3;33029:11;33023:18;33019:1;33014:3;33010:11;33003:39;32975:2;32972:1;32968:10;32963:15;;32939:113;;;33070:6;33067:1;33064:13;33061:2;;;33150:1;33141:6;33136:3;33132:16;33125:27;33061:2;32910:258;;;;:::o;33174:320::-;;33255:1;33249:4;33245:12;33235:22;;33302:1;33296:4;33292:12;33323:18;33313:2;;33379:4;33371:6;33367:17;33357:27;;33313:2;33441;33433:6;33430:14;33410:18;33407:38;33404:2;;;33460:18;;:::i;:::-;33404:2;33225:269;;;;:::o;33500:233::-;;33562:24;33580:5;33562:24;:::i;:::-;33553:33;;33608:66;33601:5;33598:77;33595:2;;;33678:18;;:::i;:::-;33595:2;33725:1;33718:5;33714:13;33707:20;;33543:190;;;:::o;33739:176::-;;33788:20;33806:1;33788:20;:::i;:::-;33783:25;;33822:20;33840:1;33822:20;:::i;:::-;33817:25;;33861:1;33851:2;;33866:18;;:::i;:::-;33851:2;33907:1;33904;33900:9;33895:14;;33773:142;;;;:::o;33921:180::-;33969:77;33966:1;33959:88;34066:4;34063:1;34056:15;34090:4;34087:1;34080:15;34107:180;34155:77;34152:1;34145:88;34252:4;34249:1;34242:15;34276:4;34273:1;34266:15;34293:180;34341:77;34338:1;34331:88;34438:4;34435:1;34428:15;34462:4;34459:1;34452:15;34479:180;34527:77;34524:1;34517:88;34624:4;34621:1;34614:15;34648:4;34645:1;34638:15;34665:102;;34757:2;34753:7;34748:2;34741:5;34737:14;34733:28;34723:38;;34713:54;;;:::o;34773:122::-;34846:24;34864:5;34846:24;:::i;:::-;34839:5;34836:35;34826:2;;34885:1;34882;34875:12;34826:2;34816:79;:::o;34901:116::-;34971:21;34986:5;34971:21;:::i;:::-;34964:5;34961:32;34951:2;;35007:1;35004;34997:12;34951:2;34941:76;:::o;35023:120::-;35095:23;35112:5;35095:23;:::i;:::-;35088:5;35085:34;35075:2;;35133:1;35130;35123:12;35075:2;35065:78;:::o;35149:122::-;35222:24;35240:5;35222:24;:::i;:::-;35215:5;35212:35;35202:2;;35261:1;35258;35251:12;35202:2;35192:79;:::o

Swarm Source

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