ETH Price: $3,340.95 (-1.08%)

Token

FlyFrogDoodlePond (FFDP)
 

Overview

Max Total Supply

0 FFDP

Holders

37

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
anychain.eth
Balance
1 FFDP
0x61751BC401f4EABe10A238661B4A60ba84910059
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:
FlyFrogDoodlePond

Compiler Version
v0.8.4+commit.c7e474f2

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

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

// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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


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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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


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

pragma solidity ^0.8.0;

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

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

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


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

pragma solidity ^0.8.0;

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

        uint256 size;
        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);
            }
        }
    }
}


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

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;

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

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

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

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

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


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

pragma solidity ^0.8.0;

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


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

pragma solidity ^0.8.0;







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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

    // Mapping from token ID to approved address
    mapping(uint256 => address) private _tokenApprovals;

    // Mapping from owner to operator approvals
    mapping(address => mapping(address => bool)) private _operatorApprovals;

    /**
     * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection.
     */
    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

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

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

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

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

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

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

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

    /**
     * @dev Base URI for computing {tokenURI}. 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 {
        require(operator != _msgSender(), "ERC721: approve to caller");

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

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

    /**
     * @dev See {IERC721-transferFrom}.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        //solhint-disable-next-line max-line-length
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved");

        _transfer(from, to, tokenId);
    }

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

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

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients
     * are aware of the ERC721 protocol to prevent tokens from being forever locked.
     *
     * `_data` is additional data, it has no specified format and it is sent in call to `to`.
     *
     * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g.
     * implement alternative mechanisms to perform token transfer, such as signature-based.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function _safeTransfer(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) internal virtual {
        _transfer(from, to, tokenId);
        require(_checkOnERC721Received(from, to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer");
    }

    /**
     * @dev Returns whether `tokenId` exists.
     *
     * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}.
     *
     * Tokens start existing when they are minted (`_mint`),
     * and stop existing when they are burned (`_burn`).
     */
    function _exists(uint256 tokenId) internal view virtual returns (bool) {
        return _owners[tokenId] != address(0);
    }

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

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

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

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

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

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

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

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

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

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

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

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

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *  As opposed to {transferFrom}, this imposes no restrictions on msg.sender.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     *
     * Emits a {Transfer} event.
     */
    function _transfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {
        require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer of token that is not own");
        require(to != address(0), "ERC721: transfer to the zero address");

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);
    }

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

    /**
     * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address.
     * The call is not executed if the target address is not a contract.
     *
     * @param from address representing the previous owner of the given token ID
     * @param to target address that will receive the tokens
     * @param tokenId uint256 ID of the token to be transferred
     * @param _data bytes optional data to send along with the call
     * @return bool whether the call correctly returned the expected magic value
     */
    function _checkOnERC721Received(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) private returns (bool) {
        if (to.isContract()) {
            try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) {
                return retval == IERC721Receiver.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 {}
}


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

pragma solidity ^0.8.0;

/**
 * @dev ERC721 token with storage based token URI management.
 */
abstract contract ERC721URIStorage is ERC721 {
    using Strings for uint256;

    // Optional mapping for token URIs
    mapping(uint256 => string) private _tokenURIs;

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

        string memory _tokenURI = _tokenURIs[tokenId];
        string memory base = _baseURI();

        // If there is no base URI, return the token URI.
        if (bytes(base).length == 0) {
            return _tokenURI;
        }
        // If both are set, concatenate the baseURI and tokenURI (via abi.encodePacked).
        if (bytes(_tokenURI).length > 0) {
            return string(abi.encodePacked(base, _tokenURI));
        }

        return super.tokenURI(tokenId);
    }

    /**
     * @dev Sets `_tokenURI` as the tokenURI of `tokenId`.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function _setTokenURI(uint256 tokenId, string memory _tokenURI) internal virtual {
        require(_exists(tokenId), "ERC721URIStorage: URI set of nonexistent token");
        _tokenURIs[tokenId] = _tokenURI;
    }

    /**
     * @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 override {
        super._burn(tokenId);

        if (bytes(_tokenURIs[tokenId]).length != 0) {
            delete _tokenURIs[tokenId];
        }
    }
}


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

pragma solidity ^0.8.0;

/**
 * @title Counters
 * @author Matt Condon (@shrugs)
 * @dev Provides counters that can only be incremented, decremented or reset. This can be used e.g. to track the number
 * of elements in a mapping, issuing ERC721 ids, or counting request ids.
 *
 * Include with `using Counters for Counters.Counter;`
 */
library Counters {
    struct Counter {
        // This variable should never be directly accessed by users of the library: interactions must be restricted to
        // the library's function. As of Solidity v0.5.2, this cannot be enforced, though there is a proposal to add
        // this feature: see https://github.com/ethereum/solidity/issues/4637
        uint256 _value; // default: 0
    }

    function current(Counter storage counter) internal view returns (uint256) {
        return counter._value;
    }

    function increment(Counter storage counter) internal {
        unchecked {
            counter._value += 1;
        }
    }

    function decrement(Counter storage counter) internal {
        uint256 value = counter._value;
        require(value > 0, "Counter: decrement overflow");
        unchecked {
            counter._value = value - 1;
        }
    }

    function reset(Counter storage counter) internal {
        counter._value = 0;
    }
}


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

pragma solidity ^0.8.0;

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

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

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor() {
        _setOwner(_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 {
        _setOwner(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");
        _setOwner(newOwner);
    }

    function _setOwner(address newOwner) private {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}


// File contracts/FlyFrogDoodlePond.sol

pragma solidity ^0.8.0;



contract FlyFrogDoodlePond is ERC721URIStorage, Ownable {
  using Counters for Counters.Counter;
  Counters.Counter private _tokenIds;

  constructor() ERC721("FlyFrogDoodlePond", "FFDP") {}

  function mintItem(address to, string memory tokenURI)
      public
      onlyOwner
      returns (uint256)
  {
      _tokenIds.increment();

      uint256 id = _tokenIds.current();
      _mint(to, id);
      _setTokenURI(id, tokenURI);

      return id;
  }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"string","name":"tokenURI","type":"string"}],"name":"mintItem","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"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":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"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"}]

60806040523480156200001157600080fd5b506040518060400160405280601181526020017f466c7946726f67446f6f646c65506f6e640000000000000000000000000000008152506040518060400160405280600481526020017f4646445000000000000000000000000000000000000000000000000000000000815250816000908051906020019062000096929190620001a6565b508060019080519060200190620000af929190620001a6565b505050620000d2620000c6620000d860201b60201c565b620000e060201b60201c565b620002bb565b600033905090565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b828054620001b49062000256565b90600052602060002090601f016020900481019282620001d8576000855562000224565b82601f10620001f357805160ff191683800117855562000224565b8280016001018555821562000224579182015b828111156200022357825182559160200191906001019062000206565b5b50905062000233919062000237565b5090565b5b808211156200025257600081600090555060010162000238565b5090565b600060028204905060018216806200026f57607f821691505b602082108114156200028657620002856200028c565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b612fbb80620002cb6000396000f3fe608060405234801561001057600080fd5b506004361061010b5760003560e01c806370a08231116100a2578063a22cb46511610071578063a22cb465146102b8578063b88d4fde146102d4578063c87b56dd146102f0578063e985e9c514610320578063f2fde38b146103505761010b565b806370a0823114610242578063715018a6146102725780638da5cb5b1461027c57806395d89b411461029a5761010b565b8063110bcd45116100de578063110bcd45146101aa57806323b872dd146101da57806342842e0e146101f65780636352211e146102125761010b565b806301ffc9a71461011057806306fdde0314610140578063081812fc1461015e578063095ea7b31461018e575b600080fd5b61012a60048036038101906101259190611f6a565b61036c565b60405161013791906123b6565b60405180910390f35b61014861044e565b60405161015591906123d1565b60405180910390f35b61017860048036038101906101739190611fbc565b6104e0565b604051610185919061234f565b60405180910390f35b6101a860048036038101906101a39190611f2e565b610565565b005b6101c460048036038101906101bf9190611eda565b61067d565b6040516101d19190612633565b60405180910390f35b6101f460048036038101906101ef9190611dd4565b610731565b005b610210600480360381019061020b9190611dd4565b610791565b005b61022c60048036038101906102279190611fbc565b6107b1565b604051610239919061234f565b60405180910390f35b61025c60048036038101906102579190611d6f565b610863565b6040516102699190612633565b60405180910390f35b61027a61091b565b005b6102846109a3565b604051610291919061234f565b60405180910390f35b6102a26109cd565b6040516102af91906123d1565b60405180910390f35b6102d260048036038101906102cd9190611e9e565b610a5f565b005b6102ee60048036038101906102e99190611e23565b610be0565b005b61030a60048036038101906103059190611fbc565b610c42565b60405161031791906123d1565b60405180910390f35b61033a60048036038101906103359190611d98565b610d94565b60405161034791906123b6565b60405180910390f35b61036a60048036038101906103659190611d6f565b610e28565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061043757507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610447575061044682610f20565b5b9050919050565b60606000805461045d90612889565b80601f016020809104026020016040519081016040528092919081815260200182805461048990612889565b80156104d65780601f106104ab576101008083540402835291602001916104d6565b820191906000526020600020905b8154815290600101906020018083116104b957829003601f168201915b5050505050905090565b60006104eb82610f8a565b61052a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161052190612573565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610570826107b1565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156105e1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016105d8906125f3565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610600610ff6565b73ffffffffffffffffffffffffffffffffffffffff16148061062f575061062e81610629610ff6565b610d94565b5b61066e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610665906124b3565b60405180910390fd5b6106788383610ffe565b505050565b6000610687610ff6565b73ffffffffffffffffffffffffffffffffffffffff166106a56109a3565b73ffffffffffffffffffffffffffffffffffffffff16146106fb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106f290612593565b60405180910390fd5b61070560086110b7565b600061071160086110cd565b905061071d84826110db565b61072781846112a9565b8091505092915050565b61074261073c610ff6565b8261131d565b610781576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161077890612613565b60405180910390fd5b61078c8383836113fb565b505050565b6107ac83838360405180602001604052806000815250610be0565b505050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561085a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610851906124f3565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156108d4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108cb906124d3565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610923610ff6565b73ffffffffffffffffffffffffffffffffffffffff166109416109a3565b73ffffffffffffffffffffffffffffffffffffffff1614610997576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161098e90612593565b60405180910390fd5b6109a16000611657565b565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600180546109dc90612889565b80601f0160208091040260200160405190810160405280929190818152602001828054610a0890612889565b8015610a555780601f10610a2a57610100808354040283529160200191610a55565b820191906000526020600020905b815481529060010190602001808311610a3857829003601f168201915b5050505050905090565b610a67610ff6565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610ad5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610acc90612473565b60405180910390fd5b8060056000610ae2610ff6565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16610b8f610ff6565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051610bd491906123b6565b60405180910390a35050565b610bf1610beb610ff6565b8361131d565b610c30576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c2790612613565b60405180910390fd5b610c3c8484848461171d565b50505050565b6060610c4d82610f8a565b610c8c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c8390612553565b60405180910390fd5b6000600660008481526020019081526020016000208054610cac90612889565b80601f0160208091040260200160405190810160405280929190818152602001828054610cd890612889565b8015610d255780601f10610cfa57610100808354040283529160200191610d25565b820191906000526020600020905b815481529060010190602001808311610d0857829003601f168201915b505050505090506000610d36611779565b9050600081511415610d4c578192505050610d8f565b600082511115610d81578082604051602001610d6992919061232b565b60405160208183030381529060405292505050610d8f565b610d8a84611790565b925050505b919050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b610e30610ff6565b73ffffffffffffffffffffffffffffffffffffffff16610e4e6109a3565b73ffffffffffffffffffffffffffffffffffffffff1614610ea4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e9b90612593565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610f14576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f0b90612413565b60405180910390fd5b610f1d81611657565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16611071836107b1565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6001816000016000828254019250508190555050565b600081600001549050919050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561114b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161114290612533565b60405180910390fd5b61115481610f8a565b15611194576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161118b90612433565b60405180910390fd5b6111a060008383611837565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546111f09190612718565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b6112b282610f8a565b6112f1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112e890612513565b60405180910390fd5b80600660008481526020019081526020016000209080519060200190611318929190611b93565b505050565b600061132882610f8a565b611367576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161135e90612493565b60405180910390fd5b6000611372836107b1565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614806113e157508373ffffffffffffffffffffffffffffffffffffffff166113c9846104e0565b73ffffffffffffffffffffffffffffffffffffffff16145b806113f257506113f18185610d94565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff1661141b826107b1565b73ffffffffffffffffffffffffffffffffffffffff1614611471576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611468906125b3565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156114e1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114d890612453565b60405180910390fd5b6114ec838383611837565b6114f7600082610ffe565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611547919061279f565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461159e9190612718565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6117288484846113fb565b6117348484848461183c565b611773576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161176a906123f3565b60405180910390fd5b50505050565b606060405180602001604052806000815250905090565b606061179b82610f8a565b6117da576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117d1906125d3565b60405180910390fd5b60006117e4611779565b90506000815111611804576040518060200160405280600081525061182f565b8061180e846119d3565b60405160200161181f92919061232b565b6040516020818303038152906040525b915050919050565b505050565b600061185d8473ffffffffffffffffffffffffffffffffffffffff16611b80565b156119c6578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611886610ff6565b8786866040518563ffffffff1660e01b81526004016118a8949392919061236a565b602060405180830381600087803b1580156118c257600080fd5b505af19250505080156118f357506040513d601f19601f820116820180604052508101906118f09190611f93565b60015b611976573d8060008114611923576040519150601f19603f3d011682016040523d82523d6000602084013e611928565b606091505b5060008151141561196e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611965906123f3565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506119cb565b600190505b949350505050565b60606000821415611a1b576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050611b7b565b600082905060005b60008214611a4d578080611a36906128ec565b915050600a82611a46919061276e565b9150611a23565b60008167ffffffffffffffff811115611a8f577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015611ac15781602001600182028036833780820191505090505b5090505b60008514611b7457600182611ada919061279f565b9150600a85611ae99190612935565b6030611af59190612718565b60f81b818381518110611b31577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85611b6d919061276e565b9450611ac5565b8093505050505b919050565b600080823b905060008111915050919050565b828054611b9f90612889565b90600052602060002090601f016020900481019282611bc15760008555611c08565b82601f10611bda57805160ff1916838001178555611c08565b82800160010185558215611c08579182015b82811115611c07578251825591602001919060010190611bec565b5b509050611c159190611c19565b5090565b5b80821115611c32576000816000905550600101611c1a565b5090565b6000611c49611c4484612673565b61264e565b905082815260208101848484011115611c6157600080fd5b611c6c848285612847565b509392505050565b6000611c87611c82846126a4565b61264e565b905082815260208101848484011115611c9f57600080fd5b611caa848285612847565b509392505050565b600081359050611cc181612f29565b92915050565b600081359050611cd681612f40565b92915050565b600081359050611ceb81612f57565b92915050565b600081519050611d0081612f57565b92915050565b600082601f830112611d1757600080fd5b8135611d27848260208601611c36565b91505092915050565b600082601f830112611d4157600080fd5b8135611d51848260208601611c74565b91505092915050565b600081359050611d6981612f6e565b92915050565b600060208284031215611d8157600080fd5b6000611d8f84828501611cb2565b91505092915050565b60008060408385031215611dab57600080fd5b6000611db985828601611cb2565b9250506020611dca85828601611cb2565b9150509250929050565b600080600060608486031215611de957600080fd5b6000611df786828701611cb2565b9350506020611e0886828701611cb2565b9250506040611e1986828701611d5a565b9150509250925092565b60008060008060808587031215611e3957600080fd5b6000611e4787828801611cb2565b9450506020611e5887828801611cb2565b9350506040611e6987828801611d5a565b925050606085013567ffffffffffffffff811115611e8657600080fd5b611e9287828801611d06565b91505092959194509250565b60008060408385031215611eb157600080fd5b6000611ebf85828601611cb2565b9250506020611ed085828601611cc7565b9150509250929050565b60008060408385031215611eed57600080fd5b6000611efb85828601611cb2565b925050602083013567ffffffffffffffff811115611f1857600080fd5b611f2485828601611d30565b9150509250929050565b60008060408385031215611f4157600080fd5b6000611f4f85828601611cb2565b9250506020611f6085828601611d5a565b9150509250929050565b600060208284031215611f7c57600080fd5b6000611f8a84828501611cdc565b91505092915050565b600060208284031215611fa557600080fd5b6000611fb384828501611cf1565b91505092915050565b600060208284031215611fce57600080fd5b6000611fdc84828501611d5a565b91505092915050565b611fee816127d3565b82525050565b611ffd816127e5565b82525050565b600061200e826126d5565b61201881856126eb565b9350612028818560208601612856565b61203181612a22565b840191505092915050565b6000612047826126e0565b61205181856126fc565b9350612061818560208601612856565b61206a81612a22565b840191505092915050565b6000612080826126e0565b61208a818561270d565b935061209a818560208601612856565b80840191505092915050565b60006120b36032836126fc565b91506120be82612a33565b604082019050919050565b60006120d66026836126fc565b91506120e182612a82565b604082019050919050565b60006120f9601c836126fc565b915061210482612ad1565b602082019050919050565b600061211c6024836126fc565b915061212782612afa565b604082019050919050565b600061213f6019836126fc565b915061214a82612b49565b602082019050919050565b6000612162602c836126fc565b915061216d82612b72565b604082019050919050565b60006121856038836126fc565b915061219082612bc1565b604082019050919050565b60006121a8602a836126fc565b91506121b382612c10565b604082019050919050565b60006121cb6029836126fc565b91506121d682612c5f565b604082019050919050565b60006121ee602e836126fc565b91506121f982612cae565b604082019050919050565b60006122116020836126fc565b915061221c82612cfd565b602082019050919050565b60006122346031836126fc565b915061223f82612d26565b604082019050919050565b6000612257602c836126fc565b915061226282612d75565b604082019050919050565b600061227a6020836126fc565b915061228582612dc4565b602082019050919050565b600061229d6029836126fc565b91506122a882612ded565b604082019050919050565b60006122c0602f836126fc565b91506122cb82612e3c565b604082019050919050565b60006122e36021836126fc565b91506122ee82612e8b565b604082019050919050565b60006123066031836126fc565b915061231182612eda565b604082019050919050565b6123258161283d565b82525050565b60006123378285612075565b91506123438284612075565b91508190509392505050565b60006020820190506123646000830184611fe5565b92915050565b600060808201905061237f6000830187611fe5565b61238c6020830186611fe5565b612399604083018561231c565b81810360608301526123ab8184612003565b905095945050505050565b60006020820190506123cb6000830184611ff4565b92915050565b600060208201905081810360008301526123eb818461203c565b905092915050565b6000602082019050818103600083015261240c816120a6565b9050919050565b6000602082019050818103600083015261242c816120c9565b9050919050565b6000602082019050818103600083015261244c816120ec565b9050919050565b6000602082019050818103600083015261246c8161210f565b9050919050565b6000602082019050818103600083015261248c81612132565b9050919050565b600060208201905081810360008301526124ac81612155565b9050919050565b600060208201905081810360008301526124cc81612178565b9050919050565b600060208201905081810360008301526124ec8161219b565b9050919050565b6000602082019050818103600083015261250c816121be565b9050919050565b6000602082019050818103600083015261252c816121e1565b9050919050565b6000602082019050818103600083015261254c81612204565b9050919050565b6000602082019050818103600083015261256c81612227565b9050919050565b6000602082019050818103600083015261258c8161224a565b9050919050565b600060208201905081810360008301526125ac8161226d565b9050919050565b600060208201905081810360008301526125cc81612290565b9050919050565b600060208201905081810360008301526125ec816122b3565b9050919050565b6000602082019050818103600083015261260c816122d6565b9050919050565b6000602082019050818103600083015261262c816122f9565b9050919050565b6000602082019050612648600083018461231c565b92915050565b6000612658612669565b905061266482826128bb565b919050565b6000604051905090565b600067ffffffffffffffff82111561268e5761268d6129f3565b5b61269782612a22565b9050602081019050919050565b600067ffffffffffffffff8211156126bf576126be6129f3565b5b6126c882612a22565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b60006127238261283d565b915061272e8361283d565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561276357612762612966565b5b828201905092915050565b60006127798261283d565b91506127848361283d565b92508261279457612793612995565b5b828204905092915050565b60006127aa8261283d565b91506127b58361283d565b9250828210156127c8576127c7612966565b5b828203905092915050565b60006127de8261281d565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015612874578082015181840152602081019050612859565b83811115612883576000848401525b50505050565b600060028204905060018216806128a157607f821691505b602082108114156128b5576128b46129c4565b5b50919050565b6128c482612a22565b810181811067ffffffffffffffff821117156128e3576128e26129f3565b5b80604052505050565b60006128f78261283d565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561292a57612929612966565b5b600182019050919050565b60006129408261283d565b915061294b8361283d565b92508261295b5761295a612995565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f45524337323155524953746f726167653a2055524920736574206f66206e6f6e60008201527f6578697374656e7420746f6b656e000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f45524337323155524953746f726167653a2055524920717565727920666f722060008201527f6e6f6e6578697374656e7420746f6b656e000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b612f32816127d3565b8114612f3d57600080fd5b50565b612f49816127e5565b8114612f5457600080fd5b50565b612f60816127f1565b8114612f6b57600080fd5b50565b612f778161283d565b8114612f8257600080fd5b5056fea2646970667358221220f404857f89bbc60daa1956bd6dfd2a9edd00d23b00fdae512142cade31aa852564736f6c63430008040033

Deployed Bytecode

0x608060405234801561001057600080fd5b506004361061010b5760003560e01c806370a08231116100a2578063a22cb46511610071578063a22cb465146102b8578063b88d4fde146102d4578063c87b56dd146102f0578063e985e9c514610320578063f2fde38b146103505761010b565b806370a0823114610242578063715018a6146102725780638da5cb5b1461027c57806395d89b411461029a5761010b565b8063110bcd45116100de578063110bcd45146101aa57806323b872dd146101da57806342842e0e146101f65780636352211e146102125761010b565b806301ffc9a71461011057806306fdde0314610140578063081812fc1461015e578063095ea7b31461018e575b600080fd5b61012a60048036038101906101259190611f6a565b61036c565b60405161013791906123b6565b60405180910390f35b61014861044e565b60405161015591906123d1565b60405180910390f35b61017860048036038101906101739190611fbc565b6104e0565b604051610185919061234f565b60405180910390f35b6101a860048036038101906101a39190611f2e565b610565565b005b6101c460048036038101906101bf9190611eda565b61067d565b6040516101d19190612633565b60405180910390f35b6101f460048036038101906101ef9190611dd4565b610731565b005b610210600480360381019061020b9190611dd4565b610791565b005b61022c60048036038101906102279190611fbc565b6107b1565b604051610239919061234f565b60405180910390f35b61025c60048036038101906102579190611d6f565b610863565b6040516102699190612633565b60405180910390f35b61027a61091b565b005b6102846109a3565b604051610291919061234f565b60405180910390f35b6102a26109cd565b6040516102af91906123d1565b60405180910390f35b6102d260048036038101906102cd9190611e9e565b610a5f565b005b6102ee60048036038101906102e99190611e23565b610be0565b005b61030a60048036038101906103059190611fbc565b610c42565b60405161031791906123d1565b60405180910390f35b61033a60048036038101906103359190611d98565b610d94565b60405161034791906123b6565b60405180910390f35b61036a60048036038101906103659190611d6f565b610e28565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061043757507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610447575061044682610f20565b5b9050919050565b60606000805461045d90612889565b80601f016020809104026020016040519081016040528092919081815260200182805461048990612889565b80156104d65780601f106104ab576101008083540402835291602001916104d6565b820191906000526020600020905b8154815290600101906020018083116104b957829003601f168201915b5050505050905090565b60006104eb82610f8a565b61052a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161052190612573565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610570826107b1565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156105e1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016105d8906125f3565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610600610ff6565b73ffffffffffffffffffffffffffffffffffffffff16148061062f575061062e81610629610ff6565b610d94565b5b61066e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610665906124b3565b60405180910390fd5b6106788383610ffe565b505050565b6000610687610ff6565b73ffffffffffffffffffffffffffffffffffffffff166106a56109a3565b73ffffffffffffffffffffffffffffffffffffffff16146106fb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106f290612593565b60405180910390fd5b61070560086110b7565b600061071160086110cd565b905061071d84826110db565b61072781846112a9565b8091505092915050565b61074261073c610ff6565b8261131d565b610781576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161077890612613565b60405180910390fd5b61078c8383836113fb565b505050565b6107ac83838360405180602001604052806000815250610be0565b505050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561085a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610851906124f3565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156108d4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108cb906124d3565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610923610ff6565b73ffffffffffffffffffffffffffffffffffffffff166109416109a3565b73ffffffffffffffffffffffffffffffffffffffff1614610997576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161098e90612593565b60405180910390fd5b6109a16000611657565b565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600180546109dc90612889565b80601f0160208091040260200160405190810160405280929190818152602001828054610a0890612889565b8015610a555780601f10610a2a57610100808354040283529160200191610a55565b820191906000526020600020905b815481529060010190602001808311610a3857829003601f168201915b5050505050905090565b610a67610ff6565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610ad5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610acc90612473565b60405180910390fd5b8060056000610ae2610ff6565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16610b8f610ff6565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051610bd491906123b6565b60405180910390a35050565b610bf1610beb610ff6565b8361131d565b610c30576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c2790612613565b60405180910390fd5b610c3c8484848461171d565b50505050565b6060610c4d82610f8a565b610c8c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c8390612553565b60405180910390fd5b6000600660008481526020019081526020016000208054610cac90612889565b80601f0160208091040260200160405190810160405280929190818152602001828054610cd890612889565b8015610d255780601f10610cfa57610100808354040283529160200191610d25565b820191906000526020600020905b815481529060010190602001808311610d0857829003601f168201915b505050505090506000610d36611779565b9050600081511415610d4c578192505050610d8f565b600082511115610d81578082604051602001610d6992919061232b565b60405160208183030381529060405292505050610d8f565b610d8a84611790565b925050505b919050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b610e30610ff6565b73ffffffffffffffffffffffffffffffffffffffff16610e4e6109a3565b73ffffffffffffffffffffffffffffffffffffffff1614610ea4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e9b90612593565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610f14576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f0b90612413565b60405180910390fd5b610f1d81611657565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16611071836107b1565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6001816000016000828254019250508190555050565b600081600001549050919050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561114b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161114290612533565b60405180910390fd5b61115481610f8a565b15611194576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161118b90612433565b60405180910390fd5b6111a060008383611837565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546111f09190612718565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b6112b282610f8a565b6112f1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112e890612513565b60405180910390fd5b80600660008481526020019081526020016000209080519060200190611318929190611b93565b505050565b600061132882610f8a565b611367576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161135e90612493565b60405180910390fd5b6000611372836107b1565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614806113e157508373ffffffffffffffffffffffffffffffffffffffff166113c9846104e0565b73ffffffffffffffffffffffffffffffffffffffff16145b806113f257506113f18185610d94565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff1661141b826107b1565b73ffffffffffffffffffffffffffffffffffffffff1614611471576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611468906125b3565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156114e1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114d890612453565b60405180910390fd5b6114ec838383611837565b6114f7600082610ffe565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611547919061279f565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461159e9190612718565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6117288484846113fb565b6117348484848461183c565b611773576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161176a906123f3565b60405180910390fd5b50505050565b606060405180602001604052806000815250905090565b606061179b82610f8a565b6117da576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117d1906125d3565b60405180910390fd5b60006117e4611779565b90506000815111611804576040518060200160405280600081525061182f565b8061180e846119d3565b60405160200161181f92919061232b565b6040516020818303038152906040525b915050919050565b505050565b600061185d8473ffffffffffffffffffffffffffffffffffffffff16611b80565b156119c6578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611886610ff6565b8786866040518563ffffffff1660e01b81526004016118a8949392919061236a565b602060405180830381600087803b1580156118c257600080fd5b505af19250505080156118f357506040513d601f19601f820116820180604052508101906118f09190611f93565b60015b611976573d8060008114611923576040519150601f19603f3d011682016040523d82523d6000602084013e611928565b606091505b5060008151141561196e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611965906123f3565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506119cb565b600190505b949350505050565b60606000821415611a1b576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050611b7b565b600082905060005b60008214611a4d578080611a36906128ec565b915050600a82611a46919061276e565b9150611a23565b60008167ffffffffffffffff811115611a8f577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015611ac15781602001600182028036833780820191505090505b5090505b60008514611b7457600182611ada919061279f565b9150600a85611ae99190612935565b6030611af59190612718565b60f81b818381518110611b31577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85611b6d919061276e565b9450611ac5565b8093505050505b919050565b600080823b905060008111915050919050565b828054611b9f90612889565b90600052602060002090601f016020900481019282611bc15760008555611c08565b82601f10611bda57805160ff1916838001178555611c08565b82800160010185558215611c08579182015b82811115611c07578251825591602001919060010190611bec565b5b509050611c159190611c19565b5090565b5b80821115611c32576000816000905550600101611c1a565b5090565b6000611c49611c4484612673565b61264e565b905082815260208101848484011115611c6157600080fd5b611c6c848285612847565b509392505050565b6000611c87611c82846126a4565b61264e565b905082815260208101848484011115611c9f57600080fd5b611caa848285612847565b509392505050565b600081359050611cc181612f29565b92915050565b600081359050611cd681612f40565b92915050565b600081359050611ceb81612f57565b92915050565b600081519050611d0081612f57565b92915050565b600082601f830112611d1757600080fd5b8135611d27848260208601611c36565b91505092915050565b600082601f830112611d4157600080fd5b8135611d51848260208601611c74565b91505092915050565b600081359050611d6981612f6e565b92915050565b600060208284031215611d8157600080fd5b6000611d8f84828501611cb2565b91505092915050565b60008060408385031215611dab57600080fd5b6000611db985828601611cb2565b9250506020611dca85828601611cb2565b9150509250929050565b600080600060608486031215611de957600080fd5b6000611df786828701611cb2565b9350506020611e0886828701611cb2565b9250506040611e1986828701611d5a565b9150509250925092565b60008060008060808587031215611e3957600080fd5b6000611e4787828801611cb2565b9450506020611e5887828801611cb2565b9350506040611e6987828801611d5a565b925050606085013567ffffffffffffffff811115611e8657600080fd5b611e9287828801611d06565b91505092959194509250565b60008060408385031215611eb157600080fd5b6000611ebf85828601611cb2565b9250506020611ed085828601611cc7565b9150509250929050565b60008060408385031215611eed57600080fd5b6000611efb85828601611cb2565b925050602083013567ffffffffffffffff811115611f1857600080fd5b611f2485828601611d30565b9150509250929050565b60008060408385031215611f4157600080fd5b6000611f4f85828601611cb2565b9250506020611f6085828601611d5a565b9150509250929050565b600060208284031215611f7c57600080fd5b6000611f8a84828501611cdc565b91505092915050565b600060208284031215611fa557600080fd5b6000611fb384828501611cf1565b91505092915050565b600060208284031215611fce57600080fd5b6000611fdc84828501611d5a565b91505092915050565b611fee816127d3565b82525050565b611ffd816127e5565b82525050565b600061200e826126d5565b61201881856126eb565b9350612028818560208601612856565b61203181612a22565b840191505092915050565b6000612047826126e0565b61205181856126fc565b9350612061818560208601612856565b61206a81612a22565b840191505092915050565b6000612080826126e0565b61208a818561270d565b935061209a818560208601612856565b80840191505092915050565b60006120b36032836126fc565b91506120be82612a33565b604082019050919050565b60006120d66026836126fc565b91506120e182612a82565b604082019050919050565b60006120f9601c836126fc565b915061210482612ad1565b602082019050919050565b600061211c6024836126fc565b915061212782612afa565b604082019050919050565b600061213f6019836126fc565b915061214a82612b49565b602082019050919050565b6000612162602c836126fc565b915061216d82612b72565b604082019050919050565b60006121856038836126fc565b915061219082612bc1565b604082019050919050565b60006121a8602a836126fc565b91506121b382612c10565b604082019050919050565b60006121cb6029836126fc565b91506121d682612c5f565b604082019050919050565b60006121ee602e836126fc565b91506121f982612cae565b604082019050919050565b60006122116020836126fc565b915061221c82612cfd565b602082019050919050565b60006122346031836126fc565b915061223f82612d26565b604082019050919050565b6000612257602c836126fc565b915061226282612d75565b604082019050919050565b600061227a6020836126fc565b915061228582612dc4565b602082019050919050565b600061229d6029836126fc565b91506122a882612ded565b604082019050919050565b60006122c0602f836126fc565b91506122cb82612e3c565b604082019050919050565b60006122e36021836126fc565b91506122ee82612e8b565b604082019050919050565b60006123066031836126fc565b915061231182612eda565b604082019050919050565b6123258161283d565b82525050565b60006123378285612075565b91506123438284612075565b91508190509392505050565b60006020820190506123646000830184611fe5565b92915050565b600060808201905061237f6000830187611fe5565b61238c6020830186611fe5565b612399604083018561231c565b81810360608301526123ab8184612003565b905095945050505050565b60006020820190506123cb6000830184611ff4565b92915050565b600060208201905081810360008301526123eb818461203c565b905092915050565b6000602082019050818103600083015261240c816120a6565b9050919050565b6000602082019050818103600083015261242c816120c9565b9050919050565b6000602082019050818103600083015261244c816120ec565b9050919050565b6000602082019050818103600083015261246c8161210f565b9050919050565b6000602082019050818103600083015261248c81612132565b9050919050565b600060208201905081810360008301526124ac81612155565b9050919050565b600060208201905081810360008301526124cc81612178565b9050919050565b600060208201905081810360008301526124ec8161219b565b9050919050565b6000602082019050818103600083015261250c816121be565b9050919050565b6000602082019050818103600083015261252c816121e1565b9050919050565b6000602082019050818103600083015261254c81612204565b9050919050565b6000602082019050818103600083015261256c81612227565b9050919050565b6000602082019050818103600083015261258c8161224a565b9050919050565b600060208201905081810360008301526125ac8161226d565b9050919050565b600060208201905081810360008301526125cc81612290565b9050919050565b600060208201905081810360008301526125ec816122b3565b9050919050565b6000602082019050818103600083015261260c816122d6565b9050919050565b6000602082019050818103600083015261262c816122f9565b9050919050565b6000602082019050612648600083018461231c565b92915050565b6000612658612669565b905061266482826128bb565b919050565b6000604051905090565b600067ffffffffffffffff82111561268e5761268d6129f3565b5b61269782612a22565b9050602081019050919050565b600067ffffffffffffffff8211156126bf576126be6129f3565b5b6126c882612a22565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b60006127238261283d565b915061272e8361283d565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561276357612762612966565b5b828201905092915050565b60006127798261283d565b91506127848361283d565b92508261279457612793612995565b5b828204905092915050565b60006127aa8261283d565b91506127b58361283d565b9250828210156127c8576127c7612966565b5b828203905092915050565b60006127de8261281d565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015612874578082015181840152602081019050612859565b83811115612883576000848401525b50505050565b600060028204905060018216806128a157607f821691505b602082108114156128b5576128b46129c4565b5b50919050565b6128c482612a22565b810181811067ffffffffffffffff821117156128e3576128e26129f3565b5b80604052505050565b60006128f78261283d565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561292a57612929612966565b5b600182019050919050565b60006129408261283d565b915061294b8361283d565b92508261295b5761295a612995565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f45524337323155524953746f726167653a2055524920736574206f66206e6f6e60008201527f6578697374656e7420746f6b656e000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f45524337323155524953746f726167653a2055524920717565727920666f722060008201527f6e6f6e6578697374656e7420746f6b656e000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b612f32816127d3565b8114612f3d57600080fd5b50565b612f49816127e5565b8114612f5457600080fd5b50565b612f60816127f1565b8114612f6b57600080fd5b50565b612f778161283d565b8114612f8257600080fd5b5056fea2646970667358221220f404857f89bbc60daa1956bd6dfd2a9edd00d23b00fdae512142cade31aa852564736f6c63430008040033

Deployed Bytecode Sourcemap

38525:472:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20706:305;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21651:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23210:221;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22733:411;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;38725:269;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24100:339;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;24510:185;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;21345:239;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21075:208;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37820:94;;;:::i;:::-;;37169:87;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21820:104;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23503:295;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;24766:328;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;33261:679;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23869:164;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38069:192;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;20706:305;20808:4;20860:25;20845:40;;;:11;:40;;;;:105;;;;20917:33;20902:48;;;:11;:48;;;;20845:105;:158;;;;20967:36;20991:11;20967:23;:36::i;:::-;20845:158;20825:178;;20706:305;;;:::o;21651:100::-;21705:13;21738:5;21731:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21651:100;:::o;23210:221::-;23286:7;23314:16;23322:7;23314;:16::i;:::-;23306:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;23399:15;:24;23415:7;23399:24;;;;;;;;;;;;;;;;;;;;;23392:31;;23210:221;;;:::o;22733:411::-;22814:13;22830:23;22845:7;22830:14;:23::i;:::-;22814:39;;22878:5;22872:11;;:2;:11;;;;22864:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;22972:5;22956:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;22981:37;22998:5;23005:12;:10;:12::i;:::-;22981:16;:37::i;:::-;22956:62;22934:168;;;;;;;;;;;;:::i;:::-;;;;;;;;;23115:21;23124:2;23128:7;23115:8;:21::i;:::-;22733:411;;;:::o;38725:269::-;38826:7;37400:12;:10;:12::i;:::-;37389:23;;:7;:5;:7::i;:::-;:23;;;37381:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;38847:21:::1;:9;:19;:21::i;:::-;38879:10;38892:19;:9;:17;:19::i;:::-;38879:32;;38920:13;38926:2;38930;38920:5;:13::i;:::-;38942:26;38955:2;38959:8;38942:12;:26::i;:::-;38986:2;38979:9;;;38725:269:::0;;;;:::o;24100:339::-;24295:41;24314:12;:10;:12::i;:::-;24328:7;24295:18;:41::i;:::-;24287:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;24403:28;24413:4;24419:2;24423:7;24403:9;:28::i;:::-;24100:339;;;:::o;24510:185::-;24648:39;24665:4;24671:2;24675:7;24648:39;;;;;;;;;;;;:16;:39::i;:::-;24510:185;;;:::o;21345:239::-;21417:7;21437:13;21453:7;:16;21461:7;21453:16;;;;;;;;;;;;;;;;;;;;;21437:32;;21505:1;21488:19;;:5;:19;;;;21480:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;21571:5;21564:12;;;21345:239;;;:::o;21075:208::-;21147:7;21192:1;21175:19;;:5;:19;;;;21167:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;21259:9;:16;21269:5;21259:16;;;;;;;;;;;;;;;;21252:23;;21075:208;;;:::o;37820:94::-;37400:12;:10;:12::i;:::-;37389:23;;:7;:5;:7::i;:::-;:23;;;37381:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;37885:21:::1;37903:1;37885:9;:21::i;:::-;37820:94::o:0;37169:87::-;37215:7;37242:6;;;;;;;;;;;37235:13;;37169:87;:::o;21820:104::-;21876:13;21909:7;21902:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21820:104;:::o;23503:295::-;23618:12;:10;:12::i;:::-;23606:24;;:8;:24;;;;23598:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;23718:8;23673:18;:32;23692:12;:10;:12::i;:::-;23673:32;;;;;;;;;;;;;;;:42;23706:8;23673:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;23771:8;23742:48;;23757:12;:10;:12::i;:::-;23742:48;;;23781:8;23742:48;;;;;;:::i;:::-;;;;;;;;23503:295;;:::o;24766:328::-;24941:41;24960:12;:10;:12::i;:::-;24974:7;24941:18;:41::i;:::-;24933:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;25047:39;25061:4;25067:2;25071:7;25080:5;25047:13;:39::i;:::-;24766:328;;;;:::o;33261:679::-;33334:13;33368:16;33376:7;33368;:16::i;:::-;33360:78;;;;;;;;;;;;:::i;:::-;;;;;;;;;33451:23;33477:10;:19;33488:7;33477:19;;;;;;;;;;;33451:45;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33507:18;33528:10;:8;:10::i;:::-;33507:31;;33636:1;33620:4;33614:18;:23;33610:72;;;33661:9;33654:16;;;;;;33610:72;33812:1;33792:9;33786:23;:27;33782:108;;;33861:4;33867:9;33844:33;;;;;;;;;:::i;:::-;;;;;;;;;;;;;33830:48;;;;;;33782:108;33909:23;33924:7;33909:14;:23::i;:::-;33902:30;;;;33261:679;;;;:::o;23869:164::-;23966:4;23990:18;:25;24009:5;23990:25;;;;;;;;;;;;;;;:35;24016:8;23990:35;;;;;;;;;;;;;;;;;;;;;;;;;23983:42;;23869:164;;;;:::o;38069:192::-;37400:12;:10;:12::i;:::-;37389:23;;:7;:5;:7::i;:::-;:23;;;37381:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;38178:1:::1;38158:22;;:8;:22;;;;38150:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;38234:19;38244:8;38234:9;:19::i;:::-;38069:192:::0;:::o;19208:157::-;19293:4;19332:25;19317:40;;;:11;:40;;;;19310:47;;19208:157;;;:::o;26604:127::-;26669:4;26721:1;26693:30;;:7;:16;26701:7;26693:16;;;;;;;;;;;;;;;;;;;;;:30;;;;26686:37;;26604:127;;;:::o;16120:98::-;16173:7;16200:10;16193:17;;16120:98;:::o;30586:174::-;30688:2;30661:15;:24;30677:7;30661:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;30744:7;30740:2;30706:46;;30715:23;30730:7;30715:14;:23::i;:::-;30706:46;;;;;;;;;;;;30586:174;;:::o;35698:127::-;35805:1;35787:7;:14;;;:19;;;;;;;;;;;35698:127;:::o;35576:114::-;35641:7;35668;:14;;;35661:21;;35576:114;;;:::o;28582:382::-;28676:1;28662:16;;:2;:16;;;;28654:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;28735:16;28743:7;28735;:16::i;:::-;28734:17;28726:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;28797:45;28826:1;28830:2;28834:7;28797:20;:45::i;:::-;28872:1;28855:9;:13;28865:2;28855:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;28903:2;28884:7;:16;28892:7;28884:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;28948:7;28944:2;28923:33;;28940:1;28923:33;;;;;;;;;;;;28582:382;;:::o;34096:217::-;34196:16;34204:7;34196;:16::i;:::-;34188:75;;;;;;;;;;;;:::i;:::-;;;;;;;;;34296:9;34274:10;:19;34285:7;34274:19;;;;;;;;;;;:31;;;;;;;;;;;;:::i;:::-;;34096:217;;:::o;26898:348::-;26991:4;27016:16;27024:7;27016;:16::i;:::-;27008:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;27092:13;27108:23;27123:7;27108:14;:23::i;:::-;27092:39;;27161:5;27150:16;;:7;:16;;;:51;;;;27194:7;27170:31;;:20;27182:7;27170:11;:20::i;:::-;:31;;;27150:51;:87;;;;27205:32;27222:5;27229:7;27205:16;:32::i;:::-;27150:87;27142:96;;;26898:348;;;;:::o;29890:578::-;30049:4;30022:31;;:23;30037:7;30022:14;:23::i;:::-;:31;;;30014:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;30132:1;30118:16;;:2;:16;;;;30110:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;30188:39;30209:4;30215:2;30219:7;30188:20;:39::i;:::-;30292:29;30309:1;30313:7;30292:8;:29::i;:::-;30353:1;30334:9;:15;30344:4;30334:15;;;;;;;;;;;;;;;;:20;;;;;;;:::i;:::-;;;;;;;;30382:1;30365:9;:13;30375:2;30365:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;30413:2;30394:7;:16;30402:7;30394:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;30452:7;30448:2;30433:27;;30442:4;30433:27;;;;;;;;;;;;29890:578;;;:::o;38269:173::-;38325:16;38344:6;;;;;;;;;;;38325:25;;38370:8;38361:6;;:17;;;;;;;;;;;;;;;;;;38425:8;38394:40;;38415:8;38394:40;;;;;;;;;;;;38269:173;;:::o;25976:315::-;26133:28;26143:4;26149:2;26153:7;26133:9;:28::i;:::-;26180:48;26203:4;26209:2;26213:7;26222:5;26180:22;:48::i;:::-;26172:111;;;;;;;;;;;;:::i;:::-;;;;;;;;;25976:315;;;;:::o;22577:94::-;22628:13;22654:9;;;;;;;;;;;;;;22577:94;:::o;21995:334::-;22068:13;22102:16;22110:7;22102;:16::i;:::-;22094:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;22183:21;22207:10;:8;:10::i;:::-;22183:34;;22259:1;22241:7;22235:21;:25;:86;;;;;;;;;;;;;;;;;22287:7;22296:18;:7;:16;:18::i;:::-;22270:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;22235:86;22228:93;;;21995:334;;;:::o;32696:126::-;;;;:::o;31325:799::-;31480:4;31501:15;:2;:13;;;:15::i;:::-;31497:620;;;31553:2;31537:36;;;31574:12;:10;:12::i;:::-;31588:4;31594:7;31603:5;31537:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;31533:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31796:1;31779:6;:13;:18;31775:272;;;31822:60;;;;;;;;;;:::i;:::-;;;;;;;;31775:272;31997:6;31991:13;31982:6;31978:2;31974:15;31967:38;31533:529;31670:41;;;31660:51;;;:6;:51;;;;31653:58;;;;;31497:620;32101:4;32094:11;;31325:799;;;;;;;:::o;16649:723::-;16705:13;16935:1;16926:5;:10;16922:53;;;16953:10;;;;;;;;;;;;;;;;;;;;;16922:53;16985:12;17000:5;16985:20;;17016:14;17041:78;17056:1;17048:4;:9;17041:78;;17074:8;;;;;:::i;:::-;;;;17105:2;17097:10;;;;;:::i;:::-;;;17041:78;;;17129:19;17161:6;17151:17;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17129:39;;17179:154;17195:1;17186:5;:10;17179:154;;17223:1;17213:11;;;;;:::i;:::-;;;17290:2;17282:5;:10;;;;:::i;:::-;17269:2;:24;;;;:::i;:::-;17256:39;;17239:6;17246;17239:14;;;;;;;;;;;;;;;;;;;:56;;;;;;;;;;;17319:2;17310:11;;;;;:::i;:::-;;;17179:154;;;17357:6;17343:21;;;;;16649:723;;;;:::o;8160:387::-;8220:4;8428:12;8495:7;8483:20;8475:28;;8538:1;8531:4;:8;8524:15;;;8160:387;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:343:1:-;84:5;109:65;125:48;166:6;125:48;:::i;:::-;109:65;:::i;:::-;100:74;;197:6;190:5;183:21;235:4;228:5;224:16;273:3;264:6;259:3;255:16;252:25;249:2;;;290:1;287;280:12;249:2;303:41;337:6;332:3;327;303:41;:::i;:::-;90:260;;;;;;:::o;356:345::-;434:5;459:66;475:49;517:6;475:49;:::i;:::-;459:66;:::i;:::-;450:75;;548:6;541:5;534:21;586:4;579:5;575:16;624:3;615:6;610:3;606:16;603:25;600:2;;;641:1;638;631:12;600:2;654:41;688:6;683:3;678;654:41;:::i;:::-;440:261;;;;;;:::o;707:139::-;753:5;791:6;778:20;769:29;;807:33;834:5;807:33;:::i;:::-;759:87;;;;:::o;852:133::-;895:5;933:6;920:20;911:29;;949:30;973:5;949:30;:::i;:::-;901:84;;;;:::o;991:137::-;1036:5;1074:6;1061:20;1052:29;;1090:32;1116:5;1090:32;:::i;:::-;1042:86;;;;:::o;1134:141::-;1190:5;1221:6;1215:13;1206:22;;1237:32;1263:5;1237:32;:::i;:::-;1196:79;;;;:::o;1294:271::-;1349:5;1398:3;1391:4;1383:6;1379:17;1375:27;1365:2;;1416:1;1413;1406:12;1365:2;1456:6;1443:20;1481:78;1555:3;1547:6;1540:4;1532:6;1528:17;1481:78;:::i;:::-;1472:87;;1355:210;;;;;:::o;1585:273::-;1641:5;1690:3;1683:4;1675:6;1671:17;1667:27;1657:2;;1708:1;1705;1698:12;1657:2;1748:6;1735:20;1773:79;1848:3;1840:6;1833:4;1825:6;1821:17;1773:79;:::i;:::-;1764:88;;1647:211;;;;;:::o;1864:139::-;1910:5;1948:6;1935:20;1926:29;;1964:33;1991:5;1964:33;:::i;:::-;1916:87;;;;:::o;2009:262::-;2068:6;2117:2;2105:9;2096:7;2092:23;2088:32;2085:2;;;2133:1;2130;2123:12;2085:2;2176:1;2201:53;2246:7;2237:6;2226:9;2222:22;2201:53;:::i;:::-;2191:63;;2147:117;2075:196;;;;:::o;2277:407::-;2345:6;2353;2402:2;2390:9;2381:7;2377:23;2373:32;2370:2;;;2418:1;2415;2408:12;2370:2;2461:1;2486:53;2531:7;2522:6;2511:9;2507:22;2486:53;:::i;:::-;2476:63;;2432:117;2588:2;2614:53;2659:7;2650:6;2639:9;2635:22;2614:53;:::i;:::-;2604:63;;2559:118;2360:324;;;;;:::o;2690:552::-;2767:6;2775;2783;2832:2;2820:9;2811:7;2807:23;2803:32;2800:2;;;2848:1;2845;2838:12;2800:2;2891:1;2916:53;2961:7;2952:6;2941:9;2937:22;2916:53;:::i;:::-;2906:63;;2862:117;3018:2;3044:53;3089:7;3080:6;3069:9;3065:22;3044:53;:::i;:::-;3034:63;;2989:118;3146:2;3172:53;3217:7;3208:6;3197:9;3193:22;3172:53;:::i;:::-;3162:63;;3117:118;2790:452;;;;;:::o;3248:809::-;3343:6;3351;3359;3367;3416:3;3404:9;3395:7;3391:23;3387:33;3384:2;;;3433:1;3430;3423:12;3384:2;3476:1;3501:53;3546:7;3537:6;3526:9;3522:22;3501:53;:::i;:::-;3491:63;;3447:117;3603:2;3629:53;3674:7;3665:6;3654:9;3650:22;3629:53;:::i;:::-;3619:63;;3574:118;3731:2;3757:53;3802:7;3793:6;3782:9;3778:22;3757:53;:::i;:::-;3747:63;;3702:118;3887:2;3876:9;3872:18;3859:32;3918:18;3910:6;3907:30;3904:2;;;3950:1;3947;3940:12;3904:2;3978:62;4032:7;4023:6;4012:9;4008:22;3978:62;:::i;:::-;3968:72;;3830:220;3374:683;;;;;;;:::o;4063:401::-;4128:6;4136;4185:2;4173:9;4164:7;4160:23;4156:32;4153:2;;;4201:1;4198;4191:12;4153:2;4244:1;4269:53;4314:7;4305:6;4294:9;4290:22;4269:53;:::i;:::-;4259:63;;4215:117;4371:2;4397:50;4439:7;4430:6;4419:9;4415:22;4397:50;:::i;:::-;4387:60;;4342:115;4143:321;;;;;:::o;4470:520::-;4548:6;4556;4605:2;4593:9;4584:7;4580:23;4576:32;4573:2;;;4621:1;4618;4611:12;4573:2;4664:1;4689:53;4734:7;4725:6;4714:9;4710:22;4689:53;:::i;:::-;4679:63;;4635:117;4819:2;4808:9;4804:18;4791:32;4850:18;4842:6;4839:30;4836:2;;;4882:1;4879;4872:12;4836:2;4910:63;4965:7;4956:6;4945:9;4941:22;4910:63;:::i;:::-;4900:73;;4762:221;4563:427;;;;;:::o;4996:407::-;5064:6;5072;5121:2;5109:9;5100:7;5096:23;5092:32;5089:2;;;5137:1;5134;5127:12;5089:2;5180:1;5205:53;5250:7;5241:6;5230:9;5226:22;5205:53;:::i;:::-;5195:63;;5151:117;5307:2;5333:53;5378:7;5369:6;5358:9;5354:22;5333:53;:::i;:::-;5323:63;;5278:118;5079:324;;;;;:::o;5409:260::-;5467:6;5516:2;5504:9;5495:7;5491:23;5487:32;5484:2;;;5532:1;5529;5522:12;5484:2;5575:1;5600:52;5644:7;5635:6;5624:9;5620:22;5600:52;:::i;:::-;5590:62;;5546:116;5474:195;;;;:::o;5675:282::-;5744:6;5793:2;5781:9;5772:7;5768:23;5764:32;5761:2;;;5809:1;5806;5799:12;5761:2;5852:1;5877:63;5932:7;5923:6;5912:9;5908:22;5877:63;:::i;:::-;5867:73;;5823:127;5751:206;;;;:::o;5963:262::-;6022:6;6071:2;6059:9;6050:7;6046:23;6042:32;6039:2;;;6087:1;6084;6077:12;6039:2;6130:1;6155:53;6200:7;6191:6;6180:9;6176:22;6155:53;:::i;:::-;6145:63;;6101:117;6029:196;;;;:::o;6231:118::-;6318:24;6336:5;6318:24;:::i;:::-;6313:3;6306:37;6296:53;;:::o;6355:109::-;6436:21;6451:5;6436:21;:::i;:::-;6431:3;6424:34;6414:50;;:::o;6470:360::-;6556:3;6584:38;6616:5;6584:38;:::i;:::-;6638:70;6701:6;6696:3;6638:70;:::i;:::-;6631:77;;6717:52;6762:6;6757:3;6750:4;6743:5;6739:16;6717:52;:::i;:::-;6794:29;6816:6;6794:29;:::i;:::-;6789:3;6785:39;6778:46;;6560:270;;;;;:::o;6836:364::-;6924:3;6952:39;6985:5;6952:39;:::i;:::-;7007:71;7071:6;7066:3;7007:71;:::i;:::-;7000:78;;7087:52;7132:6;7127:3;7120:4;7113:5;7109:16;7087:52;:::i;:::-;7164:29;7186:6;7164:29;:::i;:::-;7159:3;7155:39;7148:46;;6928:272;;;;;:::o;7206:377::-;7312:3;7340:39;7373:5;7340:39;:::i;:::-;7395:89;7477:6;7472:3;7395:89;:::i;:::-;7388:96;;7493:52;7538:6;7533:3;7526:4;7519:5;7515:16;7493:52;:::i;:::-;7570:6;7565:3;7561:16;7554:23;;7316:267;;;;;:::o;7589:366::-;7731:3;7752:67;7816:2;7811:3;7752:67;:::i;:::-;7745:74;;7828:93;7917:3;7828:93;:::i;:::-;7946:2;7941:3;7937:12;7930:19;;7735:220;;;:::o;7961:366::-;8103:3;8124:67;8188:2;8183:3;8124:67;:::i;:::-;8117:74;;8200:93;8289:3;8200:93;:::i;:::-;8318:2;8313:3;8309:12;8302:19;;8107:220;;;:::o;8333:366::-;8475:3;8496:67;8560:2;8555:3;8496:67;:::i;:::-;8489:74;;8572:93;8661:3;8572:93;:::i;:::-;8690:2;8685:3;8681:12;8674:19;;8479:220;;;:::o;8705:366::-;8847:3;8868:67;8932:2;8927:3;8868:67;:::i;:::-;8861:74;;8944:93;9033:3;8944:93;:::i;:::-;9062:2;9057:3;9053:12;9046:19;;8851:220;;;:::o;9077:366::-;9219:3;9240:67;9304:2;9299:3;9240:67;:::i;:::-;9233:74;;9316:93;9405:3;9316:93;:::i;:::-;9434:2;9429:3;9425:12;9418:19;;9223:220;;;:::o;9449:366::-;9591:3;9612:67;9676:2;9671:3;9612:67;:::i;:::-;9605:74;;9688:93;9777:3;9688:93;:::i;:::-;9806:2;9801:3;9797:12;9790:19;;9595:220;;;:::o;9821:366::-;9963:3;9984:67;10048:2;10043:3;9984:67;:::i;:::-;9977:74;;10060:93;10149:3;10060:93;:::i;:::-;10178:2;10173:3;10169:12;10162:19;;9967:220;;;:::o;10193:366::-;10335:3;10356:67;10420:2;10415:3;10356:67;:::i;:::-;10349:74;;10432:93;10521:3;10432:93;:::i;:::-;10550:2;10545:3;10541:12;10534:19;;10339:220;;;:::o;10565:366::-;10707:3;10728:67;10792:2;10787:3;10728:67;:::i;:::-;10721:74;;10804:93;10893:3;10804:93;:::i;:::-;10922:2;10917:3;10913:12;10906:19;;10711:220;;;:::o;10937:366::-;11079:3;11100:67;11164:2;11159:3;11100:67;:::i;:::-;11093:74;;11176:93;11265:3;11176:93;:::i;:::-;11294:2;11289:3;11285:12;11278:19;;11083:220;;;:::o;11309:366::-;11451:3;11472:67;11536:2;11531:3;11472:67;:::i;:::-;11465:74;;11548:93;11637:3;11548:93;:::i;:::-;11666:2;11661:3;11657:12;11650:19;;11455:220;;;:::o;11681:366::-;11823:3;11844:67;11908:2;11903:3;11844:67;:::i;:::-;11837:74;;11920:93;12009:3;11920:93;:::i;:::-;12038:2;12033:3;12029:12;12022:19;;11827:220;;;:::o;12053:366::-;12195:3;12216:67;12280:2;12275:3;12216:67;:::i;:::-;12209:74;;12292:93;12381:3;12292:93;:::i;:::-;12410:2;12405:3;12401:12;12394:19;;12199:220;;;:::o;12425:366::-;12567:3;12588:67;12652:2;12647:3;12588:67;:::i;:::-;12581:74;;12664:93;12753:3;12664:93;:::i;:::-;12782:2;12777:3;12773:12;12766:19;;12571:220;;;:::o;12797:366::-;12939:3;12960:67;13024:2;13019:3;12960:67;:::i;:::-;12953:74;;13036:93;13125:3;13036:93;:::i;:::-;13154:2;13149:3;13145:12;13138:19;;12943:220;;;:::o;13169:366::-;13311:3;13332:67;13396:2;13391:3;13332:67;:::i;:::-;13325:74;;13408:93;13497:3;13408:93;:::i;:::-;13526:2;13521:3;13517:12;13510:19;;13315:220;;;:::o;13541:366::-;13683:3;13704:67;13768:2;13763:3;13704:67;:::i;:::-;13697:74;;13780:93;13869:3;13780:93;:::i;:::-;13898:2;13893:3;13889:12;13882:19;;13687:220;;;:::o;13913:366::-;14055:3;14076:67;14140:2;14135:3;14076:67;:::i;:::-;14069:74;;14152:93;14241:3;14152:93;:::i;:::-;14270:2;14265:3;14261:12;14254:19;;14059:220;;;:::o;14285:118::-;14372:24;14390:5;14372:24;:::i;:::-;14367:3;14360:37;14350:53;;:::o;14409:435::-;14589:3;14611:95;14702:3;14693:6;14611:95;:::i;:::-;14604:102;;14723:95;14814:3;14805:6;14723:95;:::i;:::-;14716:102;;14835:3;14828:10;;14593:251;;;;;:::o;14850:222::-;14943:4;14981:2;14970:9;14966:18;14958:26;;14994:71;15062:1;15051:9;15047:17;15038:6;14994:71;:::i;:::-;14948:124;;;;:::o;15078:640::-;15273:4;15311:3;15300:9;15296:19;15288:27;;15325:71;15393:1;15382:9;15378:17;15369:6;15325:71;:::i;:::-;15406:72;15474:2;15463:9;15459:18;15450:6;15406:72;:::i;:::-;15488;15556:2;15545:9;15541:18;15532:6;15488:72;:::i;:::-;15607:9;15601:4;15597:20;15592:2;15581:9;15577:18;15570:48;15635:76;15706:4;15697:6;15635:76;:::i;:::-;15627:84;;15278:440;;;;;;;:::o;15724:210::-;15811:4;15849:2;15838:9;15834:18;15826:26;;15862:65;15924:1;15913:9;15909:17;15900:6;15862:65;:::i;:::-;15816:118;;;;:::o;15940:313::-;16053:4;16091:2;16080:9;16076:18;16068:26;;16140:9;16134:4;16130:20;16126:1;16115:9;16111:17;16104:47;16168:78;16241:4;16232:6;16168:78;:::i;:::-;16160:86;;16058:195;;;;:::o;16259:419::-;16425:4;16463:2;16452:9;16448:18;16440:26;;16512:9;16506:4;16502:20;16498:1;16487:9;16483:17;16476:47;16540:131;16666:4;16540:131;:::i;:::-;16532:139;;16430:248;;;:::o;16684:419::-;16850:4;16888:2;16877:9;16873:18;16865:26;;16937:9;16931:4;16927:20;16923:1;16912:9;16908:17;16901:47;16965:131;17091:4;16965:131;:::i;:::-;16957:139;;16855:248;;;:::o;17109:419::-;17275:4;17313:2;17302:9;17298:18;17290:26;;17362:9;17356:4;17352:20;17348:1;17337:9;17333:17;17326:47;17390:131;17516:4;17390:131;:::i;:::-;17382:139;;17280:248;;;:::o;17534:419::-;17700:4;17738:2;17727:9;17723:18;17715:26;;17787:9;17781:4;17777:20;17773:1;17762:9;17758:17;17751:47;17815:131;17941:4;17815:131;:::i;:::-;17807:139;;17705:248;;;:::o;17959:419::-;18125:4;18163:2;18152:9;18148:18;18140:26;;18212:9;18206:4;18202:20;18198:1;18187:9;18183:17;18176:47;18240:131;18366:4;18240:131;:::i;:::-;18232:139;;18130:248;;;:::o;18384:419::-;18550:4;18588:2;18577:9;18573:18;18565:26;;18637:9;18631:4;18627:20;18623:1;18612:9;18608:17;18601:47;18665:131;18791:4;18665:131;:::i;:::-;18657:139;;18555:248;;;:::o;18809:419::-;18975:4;19013:2;19002:9;18998:18;18990:26;;19062:9;19056:4;19052:20;19048:1;19037:9;19033:17;19026:47;19090:131;19216:4;19090:131;:::i;:::-;19082:139;;18980:248;;;:::o;19234:419::-;19400:4;19438:2;19427:9;19423:18;19415:26;;19487:9;19481:4;19477:20;19473:1;19462:9;19458:17;19451:47;19515:131;19641:4;19515:131;:::i;:::-;19507:139;;19405:248;;;:::o;19659:419::-;19825:4;19863:2;19852:9;19848:18;19840:26;;19912:9;19906:4;19902:20;19898:1;19887:9;19883:17;19876:47;19940:131;20066:4;19940:131;:::i;:::-;19932:139;;19830:248;;;:::o;20084:419::-;20250:4;20288:2;20277:9;20273:18;20265:26;;20337:9;20331:4;20327:20;20323:1;20312:9;20308:17;20301:47;20365:131;20491:4;20365:131;:::i;:::-;20357:139;;20255:248;;;:::o;20509:419::-;20675:4;20713:2;20702:9;20698:18;20690:26;;20762:9;20756:4;20752:20;20748:1;20737:9;20733:17;20726:47;20790:131;20916:4;20790:131;:::i;:::-;20782:139;;20680:248;;;:::o;20934:419::-;21100:4;21138:2;21127:9;21123:18;21115:26;;21187:9;21181:4;21177:20;21173:1;21162:9;21158:17;21151:47;21215:131;21341:4;21215:131;:::i;:::-;21207:139;;21105:248;;;:::o;21359:419::-;21525:4;21563:2;21552:9;21548:18;21540:26;;21612:9;21606:4;21602:20;21598:1;21587:9;21583:17;21576:47;21640:131;21766:4;21640:131;:::i;:::-;21632:139;;21530:248;;;:::o;21784:419::-;21950:4;21988:2;21977:9;21973:18;21965:26;;22037:9;22031:4;22027:20;22023:1;22012:9;22008:17;22001:47;22065:131;22191:4;22065:131;:::i;:::-;22057:139;;21955:248;;;:::o;22209:419::-;22375:4;22413:2;22402:9;22398:18;22390:26;;22462:9;22456:4;22452:20;22448:1;22437:9;22433:17;22426:47;22490:131;22616:4;22490:131;:::i;:::-;22482:139;;22380:248;;;:::o;22634:419::-;22800:4;22838:2;22827:9;22823:18;22815:26;;22887:9;22881:4;22877:20;22873:1;22862:9;22858:17;22851:47;22915:131;23041:4;22915:131;:::i;:::-;22907:139;;22805:248;;;:::o;23059:419::-;23225:4;23263:2;23252:9;23248:18;23240:26;;23312:9;23306:4;23302:20;23298:1;23287:9;23283:17;23276:47;23340:131;23466:4;23340:131;:::i;:::-;23332:139;;23230:248;;;:::o;23484:419::-;23650:4;23688:2;23677:9;23673:18;23665:26;;23737:9;23731:4;23727:20;23723:1;23712:9;23708:17;23701:47;23765:131;23891:4;23765:131;:::i;:::-;23757:139;;23655:248;;;:::o;23909:222::-;24002:4;24040:2;24029:9;24025:18;24017:26;;24053:71;24121:1;24110:9;24106:17;24097:6;24053:71;:::i;:::-;24007:124;;;;:::o;24137:129::-;24171:6;24198:20;;:::i;:::-;24188:30;;24227:33;24255:4;24247:6;24227:33;:::i;:::-;24178:88;;;:::o;24272:75::-;24305:6;24338:2;24332:9;24322:19;;24312:35;:::o;24353:307::-;24414:4;24504:18;24496:6;24493:30;24490:2;;;24526:18;;:::i;:::-;24490:2;24564:29;24586:6;24564:29;:::i;:::-;24556:37;;24648:4;24642;24638:15;24630:23;;24419:241;;;:::o;24666:308::-;24728:4;24818:18;24810:6;24807:30;24804:2;;;24840:18;;:::i;:::-;24804:2;24878:29;24900:6;24878:29;:::i;:::-;24870:37;;24962:4;24956;24952:15;24944:23;;24733:241;;;:::o;24980:98::-;25031:6;25065:5;25059:12;25049:22;;25038:40;;;:::o;25084:99::-;25136:6;25170:5;25164:12;25154:22;;25143:40;;;:::o;25189:168::-;25272:11;25306:6;25301:3;25294:19;25346:4;25341:3;25337:14;25322:29;;25284:73;;;;:::o;25363:169::-;25447:11;25481:6;25476:3;25469:19;25521:4;25516:3;25512:14;25497:29;;25459:73;;;;:::o;25538:148::-;25640:11;25677:3;25662:18;;25652:34;;;;:::o;25692:305::-;25732:3;25751:20;25769:1;25751:20;:::i;:::-;25746:25;;25785:20;25803:1;25785:20;:::i;:::-;25780:25;;25939:1;25871:66;25867:74;25864:1;25861:81;25858:2;;;25945:18;;:::i;:::-;25858:2;25989:1;25986;25982:9;25975:16;;25736:261;;;;:::o;26003:185::-;26043:1;26060:20;26078:1;26060:20;:::i;:::-;26055:25;;26094:20;26112:1;26094:20;:::i;:::-;26089:25;;26133:1;26123:2;;26138:18;;:::i;:::-;26123:2;26180:1;26177;26173:9;26168:14;;26045:143;;;;:::o;26194:191::-;26234:4;26254:20;26272:1;26254:20;:::i;:::-;26249:25;;26288:20;26306:1;26288:20;:::i;:::-;26283:25;;26327:1;26324;26321:8;26318:2;;;26332:18;;:::i;:::-;26318:2;26377:1;26374;26370:9;26362:17;;26239:146;;;;:::o;26391:96::-;26428:7;26457:24;26475:5;26457:24;:::i;:::-;26446:35;;26436:51;;;:::o;26493:90::-;26527:7;26570:5;26563:13;26556:21;26545:32;;26535:48;;;:::o;26589:149::-;26625:7;26665:66;26658:5;26654:78;26643:89;;26633:105;;;:::o;26744:126::-;26781:7;26821:42;26814:5;26810:54;26799:65;;26789:81;;;:::o;26876:77::-;26913:7;26942:5;26931:16;;26921:32;;;:::o;26959:154::-;27043:6;27038:3;27033;27020:30;27105:1;27096:6;27091:3;27087:16;27080:27;27010:103;;;:::o;27119:307::-;27187:1;27197:113;27211:6;27208:1;27205:13;27197:113;;;27296:1;27291:3;27287:11;27281:18;27277:1;27272:3;27268:11;27261:39;27233:2;27230:1;27226:10;27221:15;;27197:113;;;27328:6;27325:1;27322:13;27319:2;;;27408:1;27399:6;27394:3;27390:16;27383:27;27319:2;27168:258;;;;:::o;27432:320::-;27476:6;27513:1;27507:4;27503:12;27493:22;;27560:1;27554:4;27550:12;27581:18;27571:2;;27637:4;27629:6;27625:17;27615:27;;27571:2;27699;27691:6;27688:14;27668:18;27665:38;27662:2;;;27718:18;;:::i;:::-;27662:2;27483:269;;;;:::o;27758:281::-;27841:27;27863:4;27841:27;:::i;:::-;27833:6;27829:40;27971:6;27959:10;27956:22;27935:18;27923:10;27920:34;27917:62;27914:2;;;27982:18;;:::i;:::-;27914:2;28022:10;28018:2;28011:22;27801:238;;;:::o;28045:233::-;28084:3;28107:24;28125:5;28107:24;:::i;:::-;28098:33;;28153:66;28146:5;28143:77;28140:2;;;28223:18;;:::i;:::-;28140:2;28270:1;28263:5;28259:13;28252:20;;28088:190;;;:::o;28284:176::-;28316:1;28333:20;28351:1;28333:20;:::i;:::-;28328:25;;28367:20;28385:1;28367:20;:::i;:::-;28362:25;;28406:1;28396:2;;28411:18;;:::i;:::-;28396:2;28452:1;28449;28445:9;28440:14;;28318:142;;;;:::o;28466:180::-;28514:77;28511:1;28504:88;28611:4;28608:1;28601:15;28635:4;28632:1;28625:15;28652:180;28700:77;28697:1;28690:88;28797:4;28794:1;28787:15;28821:4;28818:1;28811:15;28838:180;28886:77;28883:1;28876:88;28983:4;28980:1;28973:15;29007:4;29004:1;28997:15;29024:180;29072:77;29069:1;29062:88;29169:4;29166:1;29159:15;29193:4;29190:1;29183:15;29210:102;29251:6;29302:2;29298:7;29293:2;29286:5;29282:14;29278:28;29268:38;;29258:54;;;:::o;29318:237::-;29458:34;29454:1;29446:6;29442:14;29435:58;29527:20;29522:2;29514:6;29510:15;29503:45;29424:131;:::o;29561:225::-;29701:34;29697:1;29689:6;29685:14;29678:58;29770:8;29765:2;29757:6;29753:15;29746:33;29667:119;:::o;29792:178::-;29932:30;29928:1;29920:6;29916:14;29909:54;29898:72;:::o;29976:223::-;30116:34;30112:1;30104:6;30100:14;30093:58;30185:6;30180:2;30172:6;30168:15;30161:31;30082:117;:::o;30205:175::-;30345:27;30341:1;30333:6;30329:14;30322:51;30311:69;:::o;30386:231::-;30526:34;30522:1;30514:6;30510:14;30503:58;30595:14;30590:2;30582:6;30578:15;30571:39;30492:125;:::o;30623:243::-;30763:34;30759:1;30751:6;30747:14;30740:58;30832:26;30827:2;30819:6;30815:15;30808:51;30729:137;:::o;30872:229::-;31012:34;31008:1;31000:6;30996:14;30989:58;31081:12;31076:2;31068:6;31064:15;31057:37;30978:123;:::o;31107:228::-;31247:34;31243:1;31235:6;31231:14;31224:58;31316:11;31311:2;31303:6;31299:15;31292:36;31213:122;:::o;31341:233::-;31481:34;31477:1;31469:6;31465:14;31458:58;31550:16;31545:2;31537:6;31533:15;31526:41;31447:127;:::o;31580:182::-;31720:34;31716:1;31708:6;31704:14;31697:58;31686:76;:::o;31768:236::-;31908:34;31904:1;31896:6;31892:14;31885:58;31977:19;31972:2;31964:6;31960:15;31953:44;31874:130;:::o;32010:231::-;32150:34;32146:1;32138:6;32134:14;32127:58;32219:14;32214:2;32206:6;32202:15;32195:39;32116:125;:::o;32247:182::-;32387:34;32383:1;32375:6;32371:14;32364:58;32353:76;:::o;32435:228::-;32575:34;32571:1;32563:6;32559:14;32552:58;32644:11;32639:2;32631:6;32627:15;32620:36;32541:122;:::o;32669:234::-;32809:34;32805:1;32797:6;32793:14;32786:58;32878:17;32873:2;32865:6;32861:15;32854:42;32775:128;:::o;32909:220::-;33049:34;33045:1;33037:6;33033:14;33026:58;33118:3;33113:2;33105:6;33101:15;33094:28;33015:114;:::o;33135:236::-;33275:34;33271:1;33263:6;33259:14;33252:58;33344:19;33339:2;33331:6;33327:15;33320:44;33241:130;:::o;33377:122::-;33450:24;33468:5;33450:24;:::i;:::-;33443:5;33440:35;33430:2;;33489:1;33486;33479:12;33430:2;33420:79;:::o;33505:116::-;33575:21;33590:5;33575:21;:::i;:::-;33568:5;33565:32;33555:2;;33611:1;33608;33601:12;33555:2;33545:76;:::o;33627:120::-;33699:23;33716:5;33699:23;:::i;:::-;33692:5;33689:34;33679:2;;33737:1;33734;33727:12;33679:2;33669:78;:::o;33753:122::-;33826:24;33844:5;33826:24;:::i;:::-;33819:5;33816:35;33806:2;;33865:1;33862;33855:12;33806:2;33796:79;:::o

Swarm Source

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