ETH Price: $3,115.51 (+1.81%)
Gas: 3 Gwei

Token

NOUNDLES (NOUNDLES)
 

Overview

Max Total Supply

7,465 NOUNDLES

Holders

2,416

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
25 NOUNDLES
0xfccba679d3c8aaf521fbc69aedba9666174a7584
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

Noundles is based on Nouns with a twist in style via Doodles! Our mission is to build a more inclusive community with the help from bluechip communities around. All holder will be granted access to the Noundle Grail...

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
Noundles

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

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



pragma solidity ^0.8.0;

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

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

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

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

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

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



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/token/ERC721/IERC721Receiver.sol



pragma solidity ^0.8.0;

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

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



pragma solidity ^0.8.0;

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

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



pragma solidity ^0.8.0;


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

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



pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

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

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

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

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



pragma solidity ^0.8.0;


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

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

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

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



pragma solidity ^0.8.0;


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

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

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

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



pragma solidity ^0.8.0;

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

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

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



pragma solidity ^0.8.0;








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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

    /**
     * @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/ERC721Enumerable.sol



pragma solidity ^0.8.0;



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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// File: @openzeppelin/contracts/access/Ownable.sol



pragma solidity ^0.8.0;


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

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

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor() {
        _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/Noundles.sol

pragma solidity ^0.8.0;





interface InterfaceRainbows {
    function transferTokens(address _from, address _to) external;
} 

contract Noundles is ERC721, ERC721Enumerable, Ownable {
    
    InterfaceRainbows public Rainbows;

    // Constants.
    uint256 public constant MAX_NOUNDLES         = 8888;
    uint256 public constant MAX_FREE_MINT        = 1500;
    uint256 public constant MAX_RESERVE_NOUNDLES = 100;

    // Configuration.
    string  private baseURI;
    uint256 public  mintPrice        = 0.04 ether;
    uint256 public  saleTime         = 0;
    bool    private reservedNoundles = false;
    uint256 public  reserveMinted    = 0;
    bool    public  saleEnabled      = false;

    // presale for the noundle community :)
    uint256 public prenoundleCount = 0;
    mapping(address => bool) prenoundleAllowed;
    mapping(address => uint256) prenoundleMinted;

    mapping (address => uint256) public noundleBalance;

    // team wallets
    address public noundle1;
    address public noundle2;

    function _beforeTokenTransfer(address from, address to, uint256 tokenId) internal override(ERC721, ERC721Enumerable) {
        super._beforeTokenTransfer(from, to, tokenId);
    }

    function supportsInterface(bytes4 interfaceId) public view virtual override(ERC721, ERC721Enumerable) returns (bool) {
        return super.supportsInterface(interfaceId);
    }

    modifier isSaleStarted() {
        require(block.timestamp >= saleTime && saleTime > 0, "Sale hasn't started");
        _;
    }
    
    modifier isSaleEnabled() {
        require(saleEnabled, "Cannot be sold yet.");
        _;
    }

    constructor(string memory _noundles) ERC721("NOUNDLES", "NOUNDLES") {
        baseURI = _noundles;
    }

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

    function setMintPrice(uint256 _noundles) public onlyOwner {
        mintPrice = _noundles;
    }

    function setSaleTime(uint256 _noundles) public onlyOwner {
        saleTime = _noundles;
    }

    function addPrenoundles(address[] memory _noundles) public onlyOwner {
        for (uint256 __noundles;__noundles < _noundles.length;__noundles++) {
            prenoundleAllowed[_noundles[__noundles]] = true;
            prenoundleCount += 1;
        }
    }

    function checkPrenoundles(address _noundles) public view returns (bool) {
        return prenoundleAllowed[_noundles];
    }


    function setRainbow(address _rainbow) external onlyOwner { Rainbows = InterfaceRainbows(_rainbow); }

    function setSaleEnabled() public onlyOwner {
        saleEnabled = true;
    }

    function setPayoutAddresses(address[] memory _noundles) public onlyOwner {
        noundle1 = _noundles[0];
        noundle2 = _noundles[1];
    }

    function withdrawFunds(uint256 _noundles) public payable onlyOwner {
        uint256 percentle = _noundles / 100;

        require(payable(noundle1).send(percentle * 50));
        require(payable(noundle2).send(percentle * 50));
    }

    // gets the noundles you own and returns it for our staking dapp
    function getNoundlesFromWallet(address _noundles) external view returns (uint256[] memory) {
        uint256 __noundles = balanceOf(_noundles);

        uint256[] memory ___noundles = new uint256[](__noundles);
        for (uint256 i;i < __noundles;i++) {
            ___noundles[i] = tokenOfOwnerByIndex(_noundles, i);
        }

        return ___noundles;
    }

    // reserves some of the supply of the noundles for giveaways & the community
    function reserveNoundles(uint256 _noundles) public onlyOwner {
        uint256 ___noundles = totalSupply();

        require(reserveMinted + _noundles <= MAX_RESERVE_NOUNDLES, "Too many reserved ser");

        for (uint256 i; i < _noundles; i++) {
            _safeMint(msg.sender, ___noundles + i);
            noundleBalance[msg.sender]++;
            reserveMinted += 1;
        }
    }

    // Mint your doodled noun :)
    function freeMintNoundles() public payable isSaleStarted {
        uint256 __noundles = totalSupply();

        require(prenoundleCount + 1 <= MAX_FREE_MINT, "We ran out of noundles :(");
        require(prenoundleAllowed[msg.sender], "You are not on whitelist");
        require(prenoundleMinted[msg.sender] < 1, "You already minted your free noundle.");

        _safeMint(msg.sender, __noundles);
        noundleBalance[msg.sender]++;

        prenoundleMinted[msg.sender] = 1;
        prenoundleCount += 1;
    }

    // mint your doodled noun :)
    function mintNoundles(uint256 _noundles) public payable isSaleStarted {
        uint256 __noundles = totalSupply();

        require(_noundles > 0 && _noundles <= 10, "Your amount needs to be greater then 0 and can't exceed 10");
        require(_noundles * mintPrice <= msg.value, "Ser we need more money for your noundles");
        require(_noundles + __noundles <= (MAX_NOUNDLES - MAX_FREE_MINT - MAX_RESERVE_NOUNDLES), "We ran out of noundles! Try minting with less!");

        for (uint256 ___noundles;___noundles < _noundles;___noundles++) {
            _safeMint(msg.sender, __noundles + ___noundles);
            noundleBalance[msg.sender]++;
        }
    }
 
    function transferFrom(address from, address to, uint256 tokenId) public override isSaleEnabled {
        Rainbows.transferTokens(from, to);
        noundleBalance[from]--;
        noundleBalance[to]++;
        ERC721.transferFrom(from, to, tokenId);
    }

    function safeTransferFrom(address from, address to, uint256 tokenId) public override isSaleEnabled {
        Rainbows.transferTokens(from, to);
        noundleBalance[from]--;
        noundleBalance[to]++;
        ERC721.safeTransferFrom(from, to, tokenId);
    }

    function safeTransferFrom(address from, address to, uint256 tokenId, bytes memory data) public override isSaleEnabled {
        Rainbows.transferTokens(from, to);
        noundleBalance[from]--;
        noundleBalance[to]++;
        ERC721.safeTransferFrom(from, to, tokenId, data);
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_noundles","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"MAX_FREE_MINT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_NOUNDLES","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_RESERVE_NOUNDLES","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"Rainbows","outputs":[{"internalType":"contract InterfaceRainbows","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"_noundles","type":"address[]"}],"name":"addPrenoundles","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_noundles","type":"address"}],"name":"checkPrenoundles","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"freeMintNoundles","outputs":[],"stateMutability":"payable","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":"_noundles","type":"address"}],"name":"getNoundlesFromWallet","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_noundles","type":"uint256"}],"name":"mintNoundles","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"mintPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"noundle1","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"noundle2","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"noundleBalance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"prenoundleCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"reserveMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_noundles","type":"uint256"}],"name":"reserveNoundles","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":[],"name":"saleEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"saleTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_noundles","type":"uint256"}],"name":"setMintPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"_noundles","type":"address[]"}],"name":"setPayoutAddresses","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_rainbow","type":"address"}],"name":"setRainbow","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"setSaleEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_noundles","type":"uint256"}],"name":"setSaleTime","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_noundles","type":"uint256"}],"name":"withdrawFunds","outputs":[],"stateMutability":"payable","type":"function"}]

6080604052668e1bc9bf040000600d556000600e819055600f805460ff1990811690915560108290556011805490911690556012553480156200004157600080fd5b5060405162002e8f38038062002e8f8339810160408190526200006491620001f3565b6040805180820182526008808252674e4f554e444c455360c01b602080840182815285518087019096529285528401528151919291620000a7916000916200014d565b508051620000bd9060019060208401906200014d565b505050620000da620000d4620000f760201b60201c565b620000fb565b8051620000ef90600c9060208401906200014d565b505062000322565b3390565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b8280546200015b90620002cf565b90600052602060002090601f0160209004810192826200017f5760008555620001ca565b82601f106200019a57805160ff1916838001178555620001ca565b82800160010185558215620001ca579182015b82811115620001ca578251825591602001919060010190620001ad565b50620001d8929150620001dc565b5090565b5b80821115620001d85760008155600101620001dd565b600060208083850312156200020757600080fd5b82516001600160401b03808211156200021f57600080fd5b818501915085601f8301126200023457600080fd5b8151818111156200024957620002496200030c565b604051601f8201601f19908116603f011681019083821181831017156200027457620002746200030c565b8160405282815288868487010111156200028d57600080fd5b600093505b82841015620002b1578484018601518185018701529285019262000292565b82841115620002c35760008684830101525b98975050505050505050565b600181811c90821680620002e457607f821691505b602082108114156200030657634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052604160045260246000fd5b612b5d80620003326000396000f3fe60806040526004361061025c5760003560e01c80636817c76c11610144578063b88d4fde116100b6578063e985e9c51161007a578063e985e9c5146106c3578063ea2c736b1461070c578063ed16082514610739578063f2fde38b1461074f578063f4a0a5281461076f578063fa429ae11461078f57600080fd5b8063b88d4fde14610616578063b8f7443814610636578063c87b56dd14610663578063df477f4014610683578063e1b47e57146106a357600080fd5b806375fd0bb11161010857806375fd0bb11461056d5780638a59d5691461058d5780638da5cb5b146105ad57806395d89b41146105cb578063a22cb465146105e0578063afac02001461060057600080fd5b80636817c76c146104cf5780636c853398146104e557806370a082311461051e578063715018a61461053e57806371b9b6461461055357600080fd5b8063294ab94d116101dd5780633c16e419116101a15780633c16e4191461042357806341cda2031461044357806342842e0e146104595780634c81433f146104795780634f6ccce71461048f5780636352211e146104af57600080fd5b8063294ab94d1461039b57806329c8f9ff146103bb5780632dee1031146103ce5780632f745c59146103e35780633bd2b67d1461040357600080fd5b80631596facb116102245780631596facb1461032557806318160ddd1461034957806321cbc3671461035e57806323b872dd1461037357806323e1746c1461039357600080fd5b806301ffc9a71461026157806306fdde0314610296578063081812fc146102b8578063095ea7b3146102f0578063155dd5ee14610312575b600080fd5b34801561026d57600080fd5b5061028161027c36600461271c565b6107af565b60405190151581526020015b60405180910390f35b3480156102a257600080fd5b506102ab6107c0565b60405161028d919061284b565b3480156102c457600080fd5b506102d86102d3366004612756565b610852565b6040516001600160a01b03909116815260200161028d565b3480156102fc57600080fd5b5061031061030b36600461263e565b6108ec565b005b610310610320366004612756565b610a02565b34801561033157600080fd5b5061033b600e5481565b60405190815260200161028d565b34801561035557600080fd5b5060085461033b565b34801561036a57600080fd5b50610310610ab4565b34801561037f57600080fd5b5061031061038e366004612506565b610aed565b610310610bd3565b3480156103a757600080fd5b506017546102d8906001600160a01b031681565b6103106103c9366004612756565b610dbc565b3480156103da57600080fd5b5061033b606481565b3480156103ef57600080fd5b5061033b6103fe36600461263e565b610fea565b34801561040f57600080fd5b5061031061041e366004612756565b611080565b34801561042f57600080fd5b506016546102d8906001600160a01b031681565b34801561044f57600080fd5b5061033b6105dc81565b34801561046557600080fd5b50610310610474366004612506565b6110af565b34801561048557600080fd5b5061033b60105481565b34801561049b57600080fd5b5061033b6104aa366004612756565b611195565b3480156104bb57600080fd5b506102d86104ca366004612756565b611228565b3480156104db57600080fd5b5061033b600d5481565b3480156104f157600080fd5b506102816105003660046124b8565b6001600160a01b031660009081526013602052604090205460ff1690565b34801561052a57600080fd5b5061033b6105393660046124b8565b61129f565b34801561054a57600080fd5b50610310611326565b34801561055f57600080fd5b506011546102819060ff1681565b34801561057957600080fd5b50610310610588366004612668565b61135c565b34801561059957600080fd5b506103106105a83660046124b8565b61140b565b3480156105b957600080fd5b50600a546001600160a01b03166102d8565b3480156105d757600080fd5b506102ab611457565b3480156105ec57600080fd5b506103106105fb366004612602565b611466565b34801561060c57600080fd5b5061033b6122b881565b34801561062257600080fd5b50610310610631366004612542565b61152b565b34801561064257600080fd5b506106566106513660046124b8565b611618565b60405161028d9190612807565b34801561066f57600080fd5b506102ab61067e366004612756565b6116ba565b34801561068f57600080fd5b5061031061069e366004612668565b611795565b3480156106af57600080fd5b506103106106be366004612756565b61184d565b3480156106cf57600080fd5b506102816106de3660046124d3565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561071857600080fd5b5061033b6107273660046124b8565b60156020526000908152604090205481565b34801561074557600080fd5b5061033b60125481565b34801561075b57600080fd5b5061031061076a3660046124b8565b61193e565b34801561077b57600080fd5b5061031061078a366004612756565b6119d9565b34801561079b57600080fd5b50600b546102d8906001600160a01b031681565b60006107ba82611a08565b92915050565b6060600080546107cf90612a39565b80601f01602080910402602001604051908101604052809291908181526020018280546107fb90612a39565b80156108485780601f1061081d57610100808354040283529160200191610848565b820191906000526020600020905b81548152906001019060200180831161082b57829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166108d05760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b60006108f782611228565b9050806001600160a01b0316836001600160a01b031614156109655760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084016108c7565b336001600160a01b0382161480610981575061098181336106de565b6109f35760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c000000000000000060648201526084016108c7565b6109fd8383611a2d565b505050565b600a546001600160a01b03163314610a2c5760405162461bcd60e51b81526004016108c7906128dd565b6000610a396064836129ac565b6016549091506001600160a01b03166108fc610a568360326129c0565b6040518115909202916000818181858888f19350505050610a7657600080fd5b6017546001600160a01b03166108fc610a908360326129c0565b6040518115909202916000818181858888f19350505050610ab057600080fd5b5050565b600a546001600160a01b03163314610ade5760405162461bcd60e51b81526004016108c7906128dd565b6011805460ff19166001179055565b60115460ff16610b0f5760405162461bcd60e51b81526004016108c7906128b0565b600b54604051636a092e7960e01b81526001600160a01b038581166004830152848116602483015290911690636a092e7990604401600060405180830381600087803b158015610b5e57600080fd5b505af1158015610b72573d6000803e3d6000fd5b505050506001600160a01b0383166000908152601560205260408120805491610b9a83612a22565b90915550506001600160a01b0382166000908152601560205260408120805491610bc383612a74565b91905055506109fd838383611a9b565b600e544210158015610be757506000600e54115b610c295760405162461bcd60e51b815260206004820152601360248201527214d85b19481a185cdb89dd081cdd185c9d1959606a1b60448201526064016108c7565b6000610c3460085490565b90506105dc6012546001610c489190612994565b1115610c965760405162461bcd60e51b815260206004820152601960248201527f57652072616e206f7574206f66206e6f756e646c6573203a280000000000000060448201526064016108c7565b3360009081526013602052604090205460ff16610cf55760405162461bcd60e51b815260206004820152601860248201527f596f7520617265206e6f74206f6e2077686974656c697374000000000000000060448201526064016108c7565b33600090815260146020526040902054600111610d625760405162461bcd60e51b815260206004820152602560248201527f596f7520616c7265616479206d696e74656420796f75722066726565206e6f75604482015264373236329760d91b60648201526084016108c7565b610d6c3382611acc565b336000908152601560205260408120805491610d8783612a74565b90915550503360009081526014602052604081206001908190556012805491929091610db4908490612994565b909155505050565b600e544210158015610dd057506000600e54115b610e125760405162461bcd60e51b815260206004820152601360248201527214d85b19481a185cdb89dd081cdd185c9d1959606a1b60448201526064016108c7565b6000610e1d60085490565b9050600082118015610e305750600a8211155b610ea25760405162461bcd60e51b815260206004820152603a60248201527f596f757220616d6f756e74206e6565647320746f20626520677265617465722060448201527f7468656e203020616e642063616e27742065786365656420313000000000000060648201526084016108c7565b34600d5483610eb191906129c0565b1115610f105760405162461bcd60e51b815260206004820152602860248201527f536572207765206e656564206d6f7265206d6f6e657920666f7220796f7572206044820152676e6f756e646c657360c01b60648201526084016108c7565b6064610f206105dc6122b86129df565b610f2a91906129df565b610f348284612994565b1115610f995760405162461bcd60e51b815260206004820152602e60248201527f57652072616e206f7574206f66206e6f756e646c65732120547279206d696e7460448201526d696e672077697468206c6573732160901b60648201526084016108c7565b60005b828110156109fd57610fb733610fb28385612994565b611acc565b336000908152601560205260408120805491610fd283612a74565b91905055508080610fe290612a74565b915050610f9c565b6000610ff58361129f565b82106110575760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b60648201526084016108c7565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b600a546001600160a01b031633146110aa5760405162461bcd60e51b81526004016108c7906128dd565b600e55565b60115460ff166110d15760405162461bcd60e51b81526004016108c7906128b0565b600b54604051636a092e7960e01b81526001600160a01b038581166004830152848116602483015290911690636a092e7990604401600060405180830381600087803b15801561112057600080fd5b505af1158015611134573d6000803e3d6000fd5b505050506001600160a01b038316600090815260156020526040812080549161115c83612a22565b90915550506001600160a01b038216600090815260156020526040812080549161118583612a74565b91905055506109fd838383611ae6565b60006111a060085490565b82106112035760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b60648201526084016108c7565b6008828154811061121657611216612ae5565b90600052602060002001549050919050565b6000818152600260205260408120546001600160a01b0316806107ba5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b60648201526084016108c7565b60006001600160a01b03821661130a5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b60648201526084016108c7565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b031633146113505760405162461bcd60e51b81526004016108c7906128dd565b61135a6000611b01565b565b600a546001600160a01b031633146113865760405162461bcd60e51b81526004016108c7906128dd565b8060008151811061139957611399612ae5565b6020026020010151601660006101000a8154816001600160a01b0302191690836001600160a01b03160217905550806001815181106113da576113da612ae5565b6020026020010151601760006101000a8154816001600160a01b0302191690836001600160a01b0316021790555050565b600a546001600160a01b031633146114355760405162461bcd60e51b81526004016108c7906128dd565b600b80546001600160a01b0319166001600160a01b0392909216919091179055565b6060600180546107cf90612a39565b6001600160a01b0382163314156114bf5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c65720000000000000060448201526064016108c7565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b60115460ff1661154d5760405162461bcd60e51b81526004016108c7906128b0565b600b54604051636a092e7960e01b81526001600160a01b038681166004830152858116602483015290911690636a092e7990604401600060405180830381600087803b15801561159c57600080fd5b505af11580156115b0573d6000803e3d6000fd5b505050506001600160a01b03841660009081526015602052604081208054916115d883612a22565b90915550506001600160a01b038316600090815260156020526040812080549161160183612a74565b919050555061161284848484611b53565b50505050565b606060006116258361129f565b905060008167ffffffffffffffff81111561164257611642612afb565b60405190808252806020026020018201604052801561166b578160200160208202803683370190505b50905060005b828110156116b2576116838582610fea565b82828151811061169557611695612ae5565b6020908102919091010152806116aa81612a74565b915050611671565b509392505050565b6000818152600260205260409020546060906001600160a01b03166117395760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084016108c7565b6000611743611b85565b90506000815111611763576040518060200160405280600081525061178e565b8061176d84611b94565b60405160200161177e92919061279b565b6040516020818303038152906040525b9392505050565b600a546001600160a01b031633146117bf5760405162461bcd60e51b81526004016108c7906128dd565b60005b8151811015610ab0576001601360008484815181106117e3576117e3612ae5565b60200260200101516001600160a01b03166001600160a01b0316815260200190815260200160002060006101000a81548160ff0219169083151502179055506001601260008282546118359190612994565b9091555081905061184581612a74565b9150506117c2565b600a546001600160a01b031633146118775760405162461bcd60e51b81526004016108c7906128dd565b600061188260085490565b90506064826010546118949190612994565b11156118da5760405162461bcd60e51b81526020600482015260156024820152742a37b79036b0b73c903932b9b2b93b32b21039b2b960591b60448201526064016108c7565b60005b828110156109fd576118f333610fb28385612994565b33600090815260156020526040812080549161190e83612a74565b91905055506001601060008282546119269190612994565b9091555081905061193681612a74565b9150506118dd565b600a546001600160a01b031633146119685760405162461bcd60e51b81526004016108c7906128dd565b6001600160a01b0381166119cd5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016108c7565b6119d681611b01565b50565b600a546001600160a01b03163314611a035760405162461bcd60e51b81526004016108c7906128dd565b600d55565b60006001600160e01b0319821663780e9d6360e01b14806107ba57506107ba82611c9a565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190611a6282611228565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b611aa53382611cea565b611ac15760405162461bcd60e51b81526004016108c790612912565b6109fd838383611ddd565b610ab0828260405180602001604052806000815250611f88565b6109fd8383836040518060200160405280600081525061152b565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b611b5d3383611cea565b611b795760405162461bcd60e51b81526004016108c790612912565b61161284848484611fbb565b6060600c80546107cf90612a39565b606081611bb85750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611be25780611bcc81612a74565b9150611bdb9050600a836129ac565b9150611bbc565b60008167ffffffffffffffff811115611bfd57611bfd612afb565b6040519080825280601f01601f191660200182016040528015611c27576020820181803683370190505b5090505b8415611c9257611c3c6001836129df565b9150611c49600a86612a8f565b611c54906030612994565b60f81b818381518110611c6957611c69612ae5565b60200101906001600160f81b031916908160001a905350611c8b600a866129ac565b9450611c2b565b949350505050565b60006001600160e01b031982166380ac58cd60e01b1480611ccb57506001600160e01b03198216635b5e139f60e01b145b806107ba57506301ffc9a760e01b6001600160e01b03198316146107ba565b6000818152600260205260408120546001600160a01b0316611d635760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016108c7565b6000611d6e83611228565b9050806001600160a01b0316846001600160a01b03161480611da95750836001600160a01b0316611d9e84610852565b6001600160a01b0316145b80611c9257506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff16611c92565b826001600160a01b0316611df082611228565b6001600160a01b031614611e585760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b60648201526084016108c7565b6001600160a01b038216611eba5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b60648201526084016108c7565b611ec5838383611fee565b611ed0600082611a2d565b6001600160a01b0383166000908152600360205260408120805460019290611ef99084906129df565b90915550506001600160a01b0382166000908152600360205260408120805460019290611f27908490612994565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b611f928383611ff9565b611f9f6000848484612147565b6109fd5760405162461bcd60e51b81526004016108c79061285e565b611fc6848484611ddd565b611fd284848484612147565b6116125760405162461bcd60e51b81526004016108c79061285e565b6109fd838383612254565b6001600160a01b03821661204f5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016108c7565b6000818152600260205260409020546001600160a01b0316156120b45760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016108c7565b6120c060008383611fee565b6001600160a01b03821660009081526003602052604081208054600192906120e9908490612994565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b60006001600160a01b0384163b1561224957604051630a85bd0160e11b81526001600160a01b0385169063150b7a029061218b9033908990889088906004016127ca565b602060405180830381600087803b1580156121a557600080fd5b505af19250505080156121d5575060408051601f3d908101601f191682019092526121d291810190612739565b60015b61222f573d808015612203576040519150601f19603f3d011682016040523d82523d6000602084013e612208565b606091505b5080516122275760405162461bcd60e51b81526004016108c79061285e565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611c92565b506001949350505050565b6001600160a01b0383166122af576122aa81600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b6122d2565b816001600160a01b0316836001600160a01b0316146122d2576122d2838261230c565b6001600160a01b0382166122e9576109fd816123a9565b826001600160a01b0316826001600160a01b0316146109fd576109fd8282612458565b600060016123198461129f565b61232391906129df565b600083815260076020526040902054909150808214612376576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b6008546000906123bb906001906129df565b600083815260096020526040812054600880549394509092849081106123e3576123e3612ae5565b90600052602060002001549050806008838154811061240457612404612ae5565b600091825260208083209091019290925582815260099091526040808220849055858252812055600880548061243c5761243c612acf565b6001900381819060005260206000200160009055905550505050565b60006124638361129f565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b80356001600160a01b03811681146124b357600080fd5b919050565b6000602082840312156124ca57600080fd5b61178e8261249c565b600080604083850312156124e657600080fd5b6124ef8361249c565b91506124fd6020840161249c565b90509250929050565b60008060006060848603121561251b57600080fd5b6125248461249c565b92506125326020850161249c565b9150604084013590509250925092565b6000806000806080858703121561255857600080fd5b6125618561249c565b9350602061257081870161249c565b935060408601359250606086013567ffffffffffffffff8082111561259457600080fd5b818801915088601f8301126125a857600080fd5b8135818111156125ba576125ba612afb565b6125cc601f8201601f19168501612963565b915080825289848285010111156125e257600080fd5b808484018584013760008482840101525080935050505092959194509250565b6000806040838503121561261557600080fd5b61261e8361249c565b91506020830135801515811461263357600080fd5b809150509250929050565b6000806040838503121561265157600080fd5b61265a8361249c565b946020939093013593505050565b6000602080838503121561267b57600080fd5b823567ffffffffffffffff8082111561269357600080fd5b818501915085601f8301126126a757600080fd5b8135818111156126b9576126b9612afb565b8060051b91506126ca848301612963565b8181528481019084860184860187018a10156126e557600080fd5b600095505b8386101561270f576126fb8161249c565b8352600195909501949186019186016126ea565b5098975050505050505050565b60006020828403121561272e57600080fd5b813561178e81612b11565b60006020828403121561274b57600080fd5b815161178e81612b11565b60006020828403121561276857600080fd5b5035919050565b600081518084526127878160208601602086016129f6565b601f01601f19169290920160200192915050565b600083516127ad8184602088016129f6565b8351908301906127c18183602088016129f6565b01949350505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906127fd9083018461276f565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b8181101561283f57835183529284019291840191600101612823565b50909695505050505050565b60208152600061178e602083018461276f565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b60208082526013908201527221b0b73737ba1031329039b7b632103cb2ba1760691b604082015260600190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b604051601f8201601f1916810167ffffffffffffffff8111828210171561298c5761298c612afb565b604052919050565b600082198211156129a7576129a7612aa3565b500190565b6000826129bb576129bb612ab9565b500490565b60008160001904831182151516156129da576129da612aa3565b500290565b6000828210156129f1576129f1612aa3565b500390565b60005b83811015612a115781810151838201526020016129f9565b838111156116125750506000910152565b600081612a3157612a31612aa3565b506000190190565b600181811c90821680612a4d57607f821691505b60208210811415612a6e57634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415612a8857612a88612aa3565b5060010190565b600082612a9e57612a9e612ab9565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b0319811681146119d657600080fdfea26469706673582212207ddc102c351f495f1c335f9f436c2885bd1c89a94d1accad78ce30f2f364ce5664736f6c634300080700330000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000002168747470733a2f2f63646e2e6e6f756e646c65732e696f2f6d657461646174612f00000000000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x60806040526004361061025c5760003560e01c80636817c76c11610144578063b88d4fde116100b6578063e985e9c51161007a578063e985e9c5146106c3578063ea2c736b1461070c578063ed16082514610739578063f2fde38b1461074f578063f4a0a5281461076f578063fa429ae11461078f57600080fd5b8063b88d4fde14610616578063b8f7443814610636578063c87b56dd14610663578063df477f4014610683578063e1b47e57146106a357600080fd5b806375fd0bb11161010857806375fd0bb11461056d5780638a59d5691461058d5780638da5cb5b146105ad57806395d89b41146105cb578063a22cb465146105e0578063afac02001461060057600080fd5b80636817c76c146104cf5780636c853398146104e557806370a082311461051e578063715018a61461053e57806371b9b6461461055357600080fd5b8063294ab94d116101dd5780633c16e419116101a15780633c16e4191461042357806341cda2031461044357806342842e0e146104595780634c81433f146104795780634f6ccce71461048f5780636352211e146104af57600080fd5b8063294ab94d1461039b57806329c8f9ff146103bb5780632dee1031146103ce5780632f745c59146103e35780633bd2b67d1461040357600080fd5b80631596facb116102245780631596facb1461032557806318160ddd1461034957806321cbc3671461035e57806323b872dd1461037357806323e1746c1461039357600080fd5b806301ffc9a71461026157806306fdde0314610296578063081812fc146102b8578063095ea7b3146102f0578063155dd5ee14610312575b600080fd5b34801561026d57600080fd5b5061028161027c36600461271c565b6107af565b60405190151581526020015b60405180910390f35b3480156102a257600080fd5b506102ab6107c0565b60405161028d919061284b565b3480156102c457600080fd5b506102d86102d3366004612756565b610852565b6040516001600160a01b03909116815260200161028d565b3480156102fc57600080fd5b5061031061030b36600461263e565b6108ec565b005b610310610320366004612756565b610a02565b34801561033157600080fd5b5061033b600e5481565b60405190815260200161028d565b34801561035557600080fd5b5060085461033b565b34801561036a57600080fd5b50610310610ab4565b34801561037f57600080fd5b5061031061038e366004612506565b610aed565b610310610bd3565b3480156103a757600080fd5b506017546102d8906001600160a01b031681565b6103106103c9366004612756565b610dbc565b3480156103da57600080fd5b5061033b606481565b3480156103ef57600080fd5b5061033b6103fe36600461263e565b610fea565b34801561040f57600080fd5b5061031061041e366004612756565b611080565b34801561042f57600080fd5b506016546102d8906001600160a01b031681565b34801561044f57600080fd5b5061033b6105dc81565b34801561046557600080fd5b50610310610474366004612506565b6110af565b34801561048557600080fd5b5061033b60105481565b34801561049b57600080fd5b5061033b6104aa366004612756565b611195565b3480156104bb57600080fd5b506102d86104ca366004612756565b611228565b3480156104db57600080fd5b5061033b600d5481565b3480156104f157600080fd5b506102816105003660046124b8565b6001600160a01b031660009081526013602052604090205460ff1690565b34801561052a57600080fd5b5061033b6105393660046124b8565b61129f565b34801561054a57600080fd5b50610310611326565b34801561055f57600080fd5b506011546102819060ff1681565b34801561057957600080fd5b50610310610588366004612668565b61135c565b34801561059957600080fd5b506103106105a83660046124b8565b61140b565b3480156105b957600080fd5b50600a546001600160a01b03166102d8565b3480156105d757600080fd5b506102ab611457565b3480156105ec57600080fd5b506103106105fb366004612602565b611466565b34801561060c57600080fd5b5061033b6122b881565b34801561062257600080fd5b50610310610631366004612542565b61152b565b34801561064257600080fd5b506106566106513660046124b8565b611618565b60405161028d9190612807565b34801561066f57600080fd5b506102ab61067e366004612756565b6116ba565b34801561068f57600080fd5b5061031061069e366004612668565b611795565b3480156106af57600080fd5b506103106106be366004612756565b61184d565b3480156106cf57600080fd5b506102816106de3660046124d3565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561071857600080fd5b5061033b6107273660046124b8565b60156020526000908152604090205481565b34801561074557600080fd5b5061033b60125481565b34801561075b57600080fd5b5061031061076a3660046124b8565b61193e565b34801561077b57600080fd5b5061031061078a366004612756565b6119d9565b34801561079b57600080fd5b50600b546102d8906001600160a01b031681565b60006107ba82611a08565b92915050565b6060600080546107cf90612a39565b80601f01602080910402602001604051908101604052809291908181526020018280546107fb90612a39565b80156108485780601f1061081d57610100808354040283529160200191610848565b820191906000526020600020905b81548152906001019060200180831161082b57829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166108d05760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b60006108f782611228565b9050806001600160a01b0316836001600160a01b031614156109655760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084016108c7565b336001600160a01b0382161480610981575061098181336106de565b6109f35760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c000000000000000060648201526084016108c7565b6109fd8383611a2d565b505050565b600a546001600160a01b03163314610a2c5760405162461bcd60e51b81526004016108c7906128dd565b6000610a396064836129ac565b6016549091506001600160a01b03166108fc610a568360326129c0565b6040518115909202916000818181858888f19350505050610a7657600080fd5b6017546001600160a01b03166108fc610a908360326129c0565b6040518115909202916000818181858888f19350505050610ab057600080fd5b5050565b600a546001600160a01b03163314610ade5760405162461bcd60e51b81526004016108c7906128dd565b6011805460ff19166001179055565b60115460ff16610b0f5760405162461bcd60e51b81526004016108c7906128b0565b600b54604051636a092e7960e01b81526001600160a01b038581166004830152848116602483015290911690636a092e7990604401600060405180830381600087803b158015610b5e57600080fd5b505af1158015610b72573d6000803e3d6000fd5b505050506001600160a01b0383166000908152601560205260408120805491610b9a83612a22565b90915550506001600160a01b0382166000908152601560205260408120805491610bc383612a74565b91905055506109fd838383611a9b565b600e544210158015610be757506000600e54115b610c295760405162461bcd60e51b815260206004820152601360248201527214d85b19481a185cdb89dd081cdd185c9d1959606a1b60448201526064016108c7565b6000610c3460085490565b90506105dc6012546001610c489190612994565b1115610c965760405162461bcd60e51b815260206004820152601960248201527f57652072616e206f7574206f66206e6f756e646c6573203a280000000000000060448201526064016108c7565b3360009081526013602052604090205460ff16610cf55760405162461bcd60e51b815260206004820152601860248201527f596f7520617265206e6f74206f6e2077686974656c697374000000000000000060448201526064016108c7565b33600090815260146020526040902054600111610d625760405162461bcd60e51b815260206004820152602560248201527f596f7520616c7265616479206d696e74656420796f75722066726565206e6f75604482015264373236329760d91b60648201526084016108c7565b610d6c3382611acc565b336000908152601560205260408120805491610d8783612a74565b90915550503360009081526014602052604081206001908190556012805491929091610db4908490612994565b909155505050565b600e544210158015610dd057506000600e54115b610e125760405162461bcd60e51b815260206004820152601360248201527214d85b19481a185cdb89dd081cdd185c9d1959606a1b60448201526064016108c7565b6000610e1d60085490565b9050600082118015610e305750600a8211155b610ea25760405162461bcd60e51b815260206004820152603a60248201527f596f757220616d6f756e74206e6565647320746f20626520677265617465722060448201527f7468656e203020616e642063616e27742065786365656420313000000000000060648201526084016108c7565b34600d5483610eb191906129c0565b1115610f105760405162461bcd60e51b815260206004820152602860248201527f536572207765206e656564206d6f7265206d6f6e657920666f7220796f7572206044820152676e6f756e646c657360c01b60648201526084016108c7565b6064610f206105dc6122b86129df565b610f2a91906129df565b610f348284612994565b1115610f995760405162461bcd60e51b815260206004820152602e60248201527f57652072616e206f7574206f66206e6f756e646c65732120547279206d696e7460448201526d696e672077697468206c6573732160901b60648201526084016108c7565b60005b828110156109fd57610fb733610fb28385612994565b611acc565b336000908152601560205260408120805491610fd283612a74565b91905055508080610fe290612a74565b915050610f9c565b6000610ff58361129f565b82106110575760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b60648201526084016108c7565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b600a546001600160a01b031633146110aa5760405162461bcd60e51b81526004016108c7906128dd565b600e55565b60115460ff166110d15760405162461bcd60e51b81526004016108c7906128b0565b600b54604051636a092e7960e01b81526001600160a01b038581166004830152848116602483015290911690636a092e7990604401600060405180830381600087803b15801561112057600080fd5b505af1158015611134573d6000803e3d6000fd5b505050506001600160a01b038316600090815260156020526040812080549161115c83612a22565b90915550506001600160a01b038216600090815260156020526040812080549161118583612a74565b91905055506109fd838383611ae6565b60006111a060085490565b82106112035760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b60648201526084016108c7565b6008828154811061121657611216612ae5565b90600052602060002001549050919050565b6000818152600260205260408120546001600160a01b0316806107ba5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b60648201526084016108c7565b60006001600160a01b03821661130a5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b60648201526084016108c7565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b031633146113505760405162461bcd60e51b81526004016108c7906128dd565b61135a6000611b01565b565b600a546001600160a01b031633146113865760405162461bcd60e51b81526004016108c7906128dd565b8060008151811061139957611399612ae5565b6020026020010151601660006101000a8154816001600160a01b0302191690836001600160a01b03160217905550806001815181106113da576113da612ae5565b6020026020010151601760006101000a8154816001600160a01b0302191690836001600160a01b0316021790555050565b600a546001600160a01b031633146114355760405162461bcd60e51b81526004016108c7906128dd565b600b80546001600160a01b0319166001600160a01b0392909216919091179055565b6060600180546107cf90612a39565b6001600160a01b0382163314156114bf5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c65720000000000000060448201526064016108c7565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b60115460ff1661154d5760405162461bcd60e51b81526004016108c7906128b0565b600b54604051636a092e7960e01b81526001600160a01b038681166004830152858116602483015290911690636a092e7990604401600060405180830381600087803b15801561159c57600080fd5b505af11580156115b0573d6000803e3d6000fd5b505050506001600160a01b03841660009081526015602052604081208054916115d883612a22565b90915550506001600160a01b038316600090815260156020526040812080549161160183612a74565b919050555061161284848484611b53565b50505050565b606060006116258361129f565b905060008167ffffffffffffffff81111561164257611642612afb565b60405190808252806020026020018201604052801561166b578160200160208202803683370190505b50905060005b828110156116b2576116838582610fea565b82828151811061169557611695612ae5565b6020908102919091010152806116aa81612a74565b915050611671565b509392505050565b6000818152600260205260409020546060906001600160a01b03166117395760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084016108c7565b6000611743611b85565b90506000815111611763576040518060200160405280600081525061178e565b8061176d84611b94565b60405160200161177e92919061279b565b6040516020818303038152906040525b9392505050565b600a546001600160a01b031633146117bf5760405162461bcd60e51b81526004016108c7906128dd565b60005b8151811015610ab0576001601360008484815181106117e3576117e3612ae5565b60200260200101516001600160a01b03166001600160a01b0316815260200190815260200160002060006101000a81548160ff0219169083151502179055506001601260008282546118359190612994565b9091555081905061184581612a74565b9150506117c2565b600a546001600160a01b031633146118775760405162461bcd60e51b81526004016108c7906128dd565b600061188260085490565b90506064826010546118949190612994565b11156118da5760405162461bcd60e51b81526020600482015260156024820152742a37b79036b0b73c903932b9b2b93b32b21039b2b960591b60448201526064016108c7565b60005b828110156109fd576118f333610fb28385612994565b33600090815260156020526040812080549161190e83612a74565b91905055506001601060008282546119269190612994565b9091555081905061193681612a74565b9150506118dd565b600a546001600160a01b031633146119685760405162461bcd60e51b81526004016108c7906128dd565b6001600160a01b0381166119cd5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016108c7565b6119d681611b01565b50565b600a546001600160a01b03163314611a035760405162461bcd60e51b81526004016108c7906128dd565b600d55565b60006001600160e01b0319821663780e9d6360e01b14806107ba57506107ba82611c9a565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190611a6282611228565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b611aa53382611cea565b611ac15760405162461bcd60e51b81526004016108c790612912565b6109fd838383611ddd565b610ab0828260405180602001604052806000815250611f88565b6109fd8383836040518060200160405280600081525061152b565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b611b5d3383611cea565b611b795760405162461bcd60e51b81526004016108c790612912565b61161284848484611fbb565b6060600c80546107cf90612a39565b606081611bb85750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611be25780611bcc81612a74565b9150611bdb9050600a836129ac565b9150611bbc565b60008167ffffffffffffffff811115611bfd57611bfd612afb565b6040519080825280601f01601f191660200182016040528015611c27576020820181803683370190505b5090505b8415611c9257611c3c6001836129df565b9150611c49600a86612a8f565b611c54906030612994565b60f81b818381518110611c6957611c69612ae5565b60200101906001600160f81b031916908160001a905350611c8b600a866129ac565b9450611c2b565b949350505050565b60006001600160e01b031982166380ac58cd60e01b1480611ccb57506001600160e01b03198216635b5e139f60e01b145b806107ba57506301ffc9a760e01b6001600160e01b03198316146107ba565b6000818152600260205260408120546001600160a01b0316611d635760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016108c7565b6000611d6e83611228565b9050806001600160a01b0316846001600160a01b03161480611da95750836001600160a01b0316611d9e84610852565b6001600160a01b0316145b80611c9257506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff16611c92565b826001600160a01b0316611df082611228565b6001600160a01b031614611e585760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b60648201526084016108c7565b6001600160a01b038216611eba5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b60648201526084016108c7565b611ec5838383611fee565b611ed0600082611a2d565b6001600160a01b0383166000908152600360205260408120805460019290611ef99084906129df565b90915550506001600160a01b0382166000908152600360205260408120805460019290611f27908490612994565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b611f928383611ff9565b611f9f6000848484612147565b6109fd5760405162461bcd60e51b81526004016108c79061285e565b611fc6848484611ddd565b611fd284848484612147565b6116125760405162461bcd60e51b81526004016108c79061285e565b6109fd838383612254565b6001600160a01b03821661204f5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016108c7565b6000818152600260205260409020546001600160a01b0316156120b45760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016108c7565b6120c060008383611fee565b6001600160a01b03821660009081526003602052604081208054600192906120e9908490612994565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b60006001600160a01b0384163b1561224957604051630a85bd0160e11b81526001600160a01b0385169063150b7a029061218b9033908990889088906004016127ca565b602060405180830381600087803b1580156121a557600080fd5b505af19250505080156121d5575060408051601f3d908101601f191682019092526121d291810190612739565b60015b61222f573d808015612203576040519150601f19603f3d011682016040523d82523d6000602084013e612208565b606091505b5080516122275760405162461bcd60e51b81526004016108c79061285e565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611c92565b506001949350505050565b6001600160a01b0383166122af576122aa81600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b6122d2565b816001600160a01b0316836001600160a01b0316146122d2576122d2838261230c565b6001600160a01b0382166122e9576109fd816123a9565b826001600160a01b0316826001600160a01b0316146109fd576109fd8282612458565b600060016123198461129f565b61232391906129df565b600083815260076020526040902054909150808214612376576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b6008546000906123bb906001906129df565b600083815260096020526040812054600880549394509092849081106123e3576123e3612ae5565b90600052602060002001549050806008838154811061240457612404612ae5565b600091825260208083209091019290925582815260099091526040808220849055858252812055600880548061243c5761243c612acf565b6001900381819060005260206000200160009055905550505050565b60006124638361129f565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b80356001600160a01b03811681146124b357600080fd5b919050565b6000602082840312156124ca57600080fd5b61178e8261249c565b600080604083850312156124e657600080fd5b6124ef8361249c565b91506124fd6020840161249c565b90509250929050565b60008060006060848603121561251b57600080fd5b6125248461249c565b92506125326020850161249c565b9150604084013590509250925092565b6000806000806080858703121561255857600080fd5b6125618561249c565b9350602061257081870161249c565b935060408601359250606086013567ffffffffffffffff8082111561259457600080fd5b818801915088601f8301126125a857600080fd5b8135818111156125ba576125ba612afb565b6125cc601f8201601f19168501612963565b915080825289848285010111156125e257600080fd5b808484018584013760008482840101525080935050505092959194509250565b6000806040838503121561261557600080fd5b61261e8361249c565b91506020830135801515811461263357600080fd5b809150509250929050565b6000806040838503121561265157600080fd5b61265a8361249c565b946020939093013593505050565b6000602080838503121561267b57600080fd5b823567ffffffffffffffff8082111561269357600080fd5b818501915085601f8301126126a757600080fd5b8135818111156126b9576126b9612afb565b8060051b91506126ca848301612963565b8181528481019084860184860187018a10156126e557600080fd5b600095505b8386101561270f576126fb8161249c565b8352600195909501949186019186016126ea565b5098975050505050505050565b60006020828403121561272e57600080fd5b813561178e81612b11565b60006020828403121561274b57600080fd5b815161178e81612b11565b60006020828403121561276857600080fd5b5035919050565b600081518084526127878160208601602086016129f6565b601f01601f19169290920160200192915050565b600083516127ad8184602088016129f6565b8351908301906127c18183602088016129f6565b01949350505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906127fd9083018461276f565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b8181101561283f57835183529284019291840191600101612823565b50909695505050505050565b60208152600061178e602083018461276f565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b60208082526013908201527221b0b73737ba1031329039b7b632103cb2ba1760691b604082015260600190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b604051601f8201601f1916810167ffffffffffffffff8111828210171561298c5761298c612afb565b604052919050565b600082198211156129a7576129a7612aa3565b500190565b6000826129bb576129bb612ab9565b500490565b60008160001904831182151516156129da576129da612aa3565b500290565b6000828210156129f1576129f1612aa3565b500390565b60005b83811015612a115781810151838201526020016129f9565b838111156116125750506000910152565b600081612a3157612a31612aa3565b506000190190565b600181811c90821680612a4d57607f821691505b60208210811415612a6e57634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415612a8857612a88612aa3565b5060010190565b600082612a9e57612a9e612ab9565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b0319811681146119d657600080fdfea26469706673582212207ddc102c351f495f1c335f9f436c2885bd1c89a94d1accad78ce30f2f364ce5664736f6c63430008070033

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

0000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000002168747470733a2f2f63646e2e6e6f756e646c65732e696f2f6d657461646174612f00000000000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : _noundles (string): https://cdn.noundles.io/metadata/

-----Encoded View---------------
4 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000020
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000021
Arg [2] : 68747470733a2f2f63646e2e6e6f756e646c65732e696f2f6d65746164617461
Arg [3] : 2f00000000000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

43289:6060:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44399:179;;;;;;;;;;-1:-1:-1;44399:179:0;;;;;:::i;:::-;;:::i;:::-;;;6783:14:1;;6776:22;6758:41;;6746:2;6731:18;44399:179:0;;;;;;;;22581:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;24140:221::-;;;;;;;;;;-1:-1:-1;24140:221:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;5135:32:1;;;5117:51;;5105:2;5090:18;24140:221:0;4971:203:1;23663:411:0;;;;;;;;;;-1:-1:-1;23663:411:0;;;;;:::i;:::-;;:::i;:::-;;46029:239;;;;;;:::i;:::-;;:::i;43698:36::-;;;;;;;;;;;;;;;;;;;18031:25:1;;;18019:2;18004:18;43698:36:0;17885:177:1;35329:113:0;;;;;;;;;;-1:-1:-1;35417:10:0;:17;35329:113;;45784:80;;;;;;;;;;;;;:::i;48509:260::-;;;;;;;;;;-1:-1:-1;48509:260:0;;;;;:::i;:::-;;:::i;47251:528::-;;;:::i;44178:23::-;;;;;;;;;;-1:-1:-1;44178:23:0;;;;-1:-1:-1;;;;;44178:23:0;;;47821:679;;;;;;:::i;:::-;;:::i;43534:50::-;;;;;;;;;;;;43581:3;43534:50;;34997:256;;;;;;;;;;-1:-1:-1;34997:256:0;;;;;:::i;:::-;;:::i;45164:96::-;;;;;;;;;;-1:-1:-1;45164:96:0;;;;;:::i;:::-;;:::i;44148:23::-;;;;;;;;;;-1:-1:-1;44148:23:0;;;;-1:-1:-1;;;;;44148:23:0;;;43476:51;;;;;;;;;;;;43523:4;43476:51;;48777:268;;;;;;;;;;-1:-1:-1;48777:268:0;;;;;:::i;:::-;;:::i;43788:36::-;;;;;;;;;;;;;;;;35519:233;;;;;;;;;;-1:-1:-1;35519:233:0;;;;;:::i;:::-;;:::i;22275:239::-;;;;;;;;;;-1:-1:-1;22275:239:0;;;;;:::i;:::-;;:::i;43646:45::-;;;;;;;;;;;;;;;;45540:126;;;;;;;;;;-1:-1:-1;45540:126:0;;;;;:::i;:::-;-1:-1:-1;;;;;45630:28:0;45606:4;45630:28;;;:17;:28;;;;;;;;;45540:126;22005:208;;;;;;;;;;-1:-1:-1;22005:208:0;;;;;:::i;:::-;;:::i;42486:94::-;;;;;;;;;;;;;:::i;43831:40::-;;;;;;;;;;-1:-1:-1;43831:40:0;;;;;;;;45872:149;;;;;;;;;;-1:-1:-1;45872:149:0;;;;;:::i;:::-;;:::i;45676:100::-;;;;;;;;;;-1:-1:-1;45676:100:0;;;;;:::i;:::-;;:::i;41835:87::-;;;;;;;;;;-1:-1:-1;41908:6:0;;-1:-1:-1;;;;;41908:6:0;41835:87;;22750:104;;;;;;;;;;;;;:::i;24433:295::-;;;;;;;;;;-1:-1:-1;24433:295:0;;;;;:::i;:::-;;:::i;43418:51::-;;;;;;;;;;;;43465:4;43418:51;;49053:293;;;;;;;;;;-1:-1:-1;49053:293:0;;;;;:::i;:::-;;:::i;46346:373::-;;;;;;;;;;-1:-1:-1;46346:373:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;22925:334::-;;;;;;;;;;-1:-1:-1;22925:334:0;;;;;:::i;:::-;;:::i;45268:264::-;;;;;;;;;;-1:-1:-1;45268:264:0;;;;;:::i;:::-;;:::i;46809:400::-;;;;;;;;;;-1:-1:-1;46809:400:0;;;;;:::i;:::-;;:::i;24799:164::-;;;;;;;;;;-1:-1:-1;24799:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;24920:25:0;;;24896:4;24920:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;24799:164;44068:50;;;;;;;;;;-1:-1:-1;44068:50:0;;;;;:::i;:::-;;;;;;;;;;;;;;43925:34;;;;;;;;;;;;;;;;42735:192;;;;;;;;;;-1:-1:-1;42735:192:0;;;;;:::i;:::-;;:::i;45058:98::-;;;;;;;;;;-1:-1:-1;45058:98:0;;;;;:::i;:::-;;:::i;43357:33::-;;;;;;;;;;-1:-1:-1;43357:33:0;;;;-1:-1:-1;;;;;43357:33:0;;;44399:179;44510:4;44534:36;44558:11;44534:23;:36::i;:::-;44527:43;44399:179;-1:-1:-1;;44399:179:0:o;22581:100::-;22635:13;22668:5;22661:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22581:100;:::o;24140:221::-;24216:7;27623:16;;;:7;:16;;;;;;-1:-1:-1;;;;;27623:16:0;24236:73;;;;-1:-1:-1;;;24236:73:0;;13728:2:1;24236:73:0;;;13710:21:1;13767:2;13747:18;;;13740:30;13806:34;13786:18;;;13779:62;-1:-1:-1;;;13857:18:1;;;13850:42;13909:19;;24236:73:0;;;;;;;;;-1:-1:-1;24329:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;24329:24:0;;24140:221::o;23663:411::-;23744:13;23760:23;23775:7;23760:14;:23::i;:::-;23744:39;;23808:5;-1:-1:-1;;;;;23802:11:0;:2;-1:-1:-1;;;;;23802:11:0;;;23794:57;;;;-1:-1:-1;;;23794:57:0;;15328:2:1;23794:57:0;;;15310:21:1;15367:2;15347:18;;;15340:30;15406:34;15386:18;;;15379:62;-1:-1:-1;;;15457:18:1;;;15450:31;15498:19;;23794:57:0;15126:397:1;23794:57:0;20170:10;-1:-1:-1;;;;;23886:21:0;;;;:62;;-1:-1:-1;23911:37:0;23928:5;20170:10;24799:164;:::i;23911:37::-;23864:168;;;;-1:-1:-1;;;23864:168:0;;11420:2:1;23864:168:0;;;11402:21:1;11459:2;11439:18;;;11432:30;11498:34;11478:18;;;11471:62;11569:26;11549:18;;;11542:54;11613:19;;23864:168:0;11218:420:1;23864:168:0;24045:21;24054:2;24058:7;24045:8;:21::i;:::-;23733:341;23663:411;;:::o;46029:239::-;41908:6;;-1:-1:-1;;;;;41908:6:0;20170:10;42055:23;42047:68;;;;-1:-1:-1;;;42047:68:0;;;;;;;:::i;:::-;46107:17:::1;46127:15;46139:3;46127:9:::0;:15:::1;:::i;:::-;46171:8;::::0;46107:35;;-1:-1:-1;;;;;;46171:8:0::1;46163:38;46186:14;46107:35:::0;46198:2:::1;46186:14;:::i;:::-;46163:38;::::0;;::::1;::::0;;::::1;::::0;::::1;::::0;;;;;;::::1;;;;;;46155:47;;;::::0;::::1;;46229:8;::::0;-1:-1:-1;;;;;46229:8:0::1;46221:38;46244:14;:9:::0;46256:2:::1;46244:14;:::i;:::-;46221:38;::::0;;::::1;::::0;;::::1;::::0;::::1;::::0;;;;;;::::1;;;;;;46213:47;;;::::0;::::1;;46096:172;46029:239:::0;:::o;45784:80::-;41908:6;;-1:-1:-1;;;;;41908:6:0;20170:10;42055:23;42047:68;;;;-1:-1:-1;;;42047:68:0;;;;;;;:::i;:::-;45838:11:::1;:18:::0;;-1:-1:-1;;45838:18:0::1;45852:4;45838:18;::::0;;45784:80::o;48509:260::-;44773:11;;;;44765:43;;;;-1:-1:-1;;;44765:43:0;;;;;;;:::i;:::-;48615:8:::1;::::0;:33:::1;::::0;-1:-1:-1;;;48615:33:0;;-1:-1:-1;;;;;5409:15:1;;;48615:33:0::1;::::0;::::1;5391:34:1::0;5461:15;;;5441:18;;;5434:43;48615:8:0;;::::1;::::0;:23:::1;::::0;5326:18:1;;48615:33:0::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;-1:-1:-1::0;;;;;;;;;48659:20:0;::::1;;::::0;;;:14:::1;:20;::::0;;;;:22;;;::::1;::::0;::::1;:::i;:::-;::::0;;;-1:-1:-1;;;;;;;48692:18:0;::::1;;::::0;;;:14:::1;:18;::::0;;;;:20;;;::::1;::::0;::::1;:::i;:::-;;;;;;48723:38;48743:4;48749:2;48753:7;48723:19;:38::i;47251:528::-:0;44649:8;;44630:15;:27;;:43;;;;;44672:1;44661:8;;:12;44630:43;44622:75;;;;-1:-1:-1;;;44622:75:0;;17739:2:1;44622:75:0;;;17721:21:1;17778:2;17758:18;;;17751:30;-1:-1:-1;;;17797:18:1;;;17790:49;17856:18;;44622:75:0;17537:343:1;44622:75:0;47319:18:::1;47340:13;35417:10:::0;:17;;35329:113;47340:13:::1;47319:34;;43523:4;47374:15;;47392:1;47374:19;;;;:::i;:::-;:36;;47366:74;;;::::0;-1:-1:-1;;;47366:74:0;;17385:2:1;47366:74:0::1;::::0;::::1;17367:21:1::0;17424:2;17404:18;;;17397:30;17463:27;17443:18;;;17436:55;17508:18;;47366:74:0::1;17183:349:1::0;47366:74:0::1;47477:10;47459:29;::::0;;;:17:::1;:29;::::0;;;;;::::1;;47451:66;;;::::0;-1:-1:-1;;;47451:66:0;;13014:2:1;47451:66:0::1;::::0;::::1;12996:21:1::0;13053:2;13033:18;;;13026:30;13092:26;13072:18;;;13065:54;13136:18;;47451:66:0::1;12812:348:1::0;47451:66:0::1;47553:10;47536:28;::::0;;;:16:::1;:28;::::0;;;;;47567:1:::1;-1:-1:-1::0;47528:82:0::1;;;::::0;-1:-1:-1;;;47528:82:0;;8708:2:1;47528:82:0::1;::::0;::::1;8690:21:1::0;8747:2;8727:18;;;8720:30;8786:34;8766:18;;;8759:62;-1:-1:-1;;;8837:18:1;;;8830:35;8882:19;;47528:82:0::1;8506:401:1::0;47528:82:0::1;47623:33;47633:10;47645;47623:9;:33::i;:::-;47682:10;47667:26;::::0;;;:14:::1;:26;::::0;;;;:28;;;::::1;::::0;::::1;:::i;:::-;::::0;;;-1:-1:-1;;47725:10:0::1;47708:28;::::0;;;:16:::1;:28;::::0;;;;47739:1:::1;47708:32:::0;;;;47751:15:::1;:20:::0;;47739:1;;47751:15;;:20:::1;::::0;47739:1;;47751:20:::1;:::i;:::-;::::0;;;-1:-1:-1;;;47251:528:0:o;47821:679::-;44649:8;;44630:15;:27;;:43;;;;;44672:1;44661:8;;:12;44630:43;44622:75;;;;-1:-1:-1;;;44622:75:0;;17739:2:1;44622:75:0;;;17721:21:1;17778:2;17758:18;;;17751:30;-1:-1:-1;;;17797:18:1;;;17790:49;17856:18;;44622:75:0;17537:343:1;44622:75:0;47902:18:::1;47923:13;35417:10:::0;:17;;35329:113;47923:13:::1;47902:34;;47969:1;47957:9;:13;:32;;;;;47987:2;47974:9;:15;;47957:32;47949:103;;;::::0;-1:-1:-1;;;47949:103:0;;10230:2:1;47949:103:0::1;::::0;::::1;10212:21:1::0;10269:2;10249:18;;;10242:30;10308:34;10288:18;;;10281:62;10379:28;10359:18;;;10352:56;10425:19;;47949:103:0::1;10028:422:1::0;47949:103:0::1;48096:9;48083;;48071;:21;;;;:::i;:::-;:34;;48063:87;;;::::0;-1:-1:-1;;;48063:87:0;;16561:2:1;48063:87:0::1;::::0;::::1;16543:21:1::0;16600:2;16580:18;;;16573:30;16639:34;16619:18;;;16612:62;-1:-1:-1;;;16690:18:1;;;16683:38;16738:19;;48063:87:0::1;16359:404:1::0;48063:87:0::1;43581:3;48196:28;43523:4;43465;48196:28;:::i;:::-;:51;;;;:::i;:::-;48169:22;48181:10:::0;48169:9;:22:::1;:::i;:::-;:79;;48161:138;;;::::0;-1:-1:-1;;;48161:138:0;;16970:2:1;48161:138:0::1;::::0;::::1;16952:21:1::0;17009:2;16989:18;;;16982:30;17048:34;17028:18;;;17021:62;-1:-1:-1;;;17099:18:1;;;17092:44;17153:19;;48161:138:0::1;16768:410:1::0;48161:138:0::1;48317:19;48312:181;48351:9;48337:11;:23;48312:181;;;48391:47;48401:10;48413:24;48426:11:::0;48413:10;:24:::1;:::i;:::-;48391:9;:47::i;:::-;48468:10;48453:26;::::0;;;:14:::1;:26;::::0;;;;:28;;;::::1;::::0;::::1;:::i;:::-;;;;;;48361:13;;;;;:::i;:::-;;;;48312:181;;34997:256:::0;35094:7;35130:23;35147:5;35130:16;:23::i;:::-;35122:5;:31;35114:87;;;;-1:-1:-1;;;35114:87:0;;7470:2:1;35114:87:0;;;7452:21:1;7509:2;7489:18;;;7482:30;7548:34;7528:18;;;7521:62;-1:-1:-1;;;7599:18:1;;;7592:41;7650:19;;35114:87:0;7268:407:1;35114:87:0;-1:-1:-1;;;;;;35219:19:0;;;;;;;;:12;:19;;;;;;;;:26;;;;;;;;;34997:256::o;45164:96::-;41908:6;;-1:-1:-1;;;;;41908:6:0;20170:10;42055:23;42047:68;;;;-1:-1:-1;;;42047:68:0;;;;;;;:::i;:::-;45232:8:::1;:20:::0;45164:96::o;48777:268::-;44773:11;;;;44765:43;;;;-1:-1:-1;;;44765:43:0;;;;;;;:::i;:::-;48887:8:::1;::::0;:33:::1;::::0;-1:-1:-1;;;48887:33:0;;-1:-1:-1;;;;;5409:15:1;;;48887:33:0::1;::::0;::::1;5391:34:1::0;5461:15;;;5441:18;;;5434:43;48887:8:0;;::::1;::::0;:23:::1;::::0;5326:18:1;;48887:33:0::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;-1:-1:-1::0;;;;;;;;;48931:20:0;::::1;;::::0;;;:14:::1;:20;::::0;;;;:22;;;::::1;::::0;::::1;:::i;:::-;::::0;;;-1:-1:-1;;;;;;;48964:18:0;::::1;;::::0;;;:14:::1;:18;::::0;;;;:20;;;::::1;::::0;::::1;:::i;:::-;;;;;;48995:42;49019:4;49025:2;49029:7;48995:23;:42::i;35519:233::-:0;35594:7;35630:30;35417:10;:17;;35329:113;35630:30;35622:5;:38;35614:95;;;;-1:-1:-1;;;35614:95:0;;16148:2:1;35614:95:0;;;16130:21:1;16187:2;16167:18;;;16160:30;16226:34;16206:18;;;16199:62;-1:-1:-1;;;16277:18:1;;;16270:42;16329:19;;35614:95:0;15946:408:1;35614:95:0;35727:10;35738:5;35727:17;;;;;;;;:::i;:::-;;;;;;;;;35720:24;;35519:233;;;:::o;22275:239::-;22347:7;22383:16;;;:7;:16;;;;;;-1:-1:-1;;;;;22383:16:0;22418:19;22410:73;;;;-1:-1:-1;;;22410:73:0;;12256:2:1;22410:73:0;;;12238:21:1;12295:2;12275:18;;;12268:30;12334:34;12314:18;;;12307:62;-1:-1:-1;;;12385:18:1;;;12378:39;12434:19;;22410:73:0;12054:405:1;22005:208:0;22077:7;-1:-1:-1;;;;;22105:19:0;;22097:74;;;;-1:-1:-1;;;22097:74:0;;11845:2:1;22097:74:0;;;11827:21:1;11884:2;11864:18;;;11857:30;11923:34;11903:18;;;11896:62;-1:-1:-1;;;11974:18:1;;;11967:40;12024:19;;22097:74:0;11643:406:1;22097:74:0;-1:-1:-1;;;;;;22189:16:0;;;;;:9;:16;;;;;;;22005:208::o;42486:94::-;41908:6;;-1:-1:-1;;;;;41908:6:0;20170:10;42055:23;42047:68;;;;-1:-1:-1;;;42047:68:0;;;;;;;:::i;:::-;42551:21:::1;42569:1;42551:9;:21::i;:::-;42486:94::o:0;45872:149::-;41908:6;;-1:-1:-1;;;;;41908:6:0;20170:10;42055:23;42047:68;;;;-1:-1:-1;;;42047:68:0;;;;;;;:::i;:::-;45967:9:::1;45977:1;45967:12;;;;;;;;:::i;:::-;;;;;;;45956:8;;:23;;;;;-1:-1:-1::0;;;;;45956:23:0::1;;;;;-1:-1:-1::0;;;;;45956:23:0::1;;;;;;46001:9;46011:1;46001:12;;;;;;;;:::i;:::-;;;;;;;45990:8;;:23;;;;;-1:-1:-1::0;;;;;45990:23:0::1;;;;;-1:-1:-1::0;;;;;45990:23:0::1;;;;;;45872:149:::0;:::o;45676:100::-;41908:6;;-1:-1:-1;;;;;41908:6:0;20170:10;42055:23;42047:68;;;;-1:-1:-1;;;42047:68:0;;;;;;;:::i;:::-;45735:8:::1;:38:::0;;-1:-1:-1;;;;;;45735:38:0::1;-1:-1:-1::0;;;;;45735:38:0;;;::::1;::::0;;;::::1;::::0;;45676:100::o;22750:104::-;22806:13;22839:7;22832:14;;;;;:::i;24433:295::-;-1:-1:-1;;;;;24536:24:0;;20170:10;24536:24;;24528:62;;;;-1:-1:-1;;;24528:62:0;;9876:2:1;24528:62:0;;;9858:21:1;9915:2;9895:18;;;9888:30;9954:27;9934:18;;;9927:55;9999:18;;24528:62:0;9674:349:1;24528:62:0;20170:10;24603:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;24603:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;24603:53:0;;;;;;;;;;24672:48;;6758:41:1;;;24603:42:0;;20170:10;24672:48;;6731:18:1;24672:48:0;;;;;;;24433:295;;:::o;49053:293::-;44773:11;;;;44765:43;;;;-1:-1:-1;;;44765:43:0;;;;;;;:::i;:::-;49182:8:::1;::::0;:33:::1;::::0;-1:-1:-1;;;49182:33:0;;-1:-1:-1;;;;;5409:15:1;;;49182:33:0::1;::::0;::::1;5391:34:1::0;5461:15;;;5441:18;;;5434:43;49182:8:0;;::::1;::::0;:23:::1;::::0;5326:18:1;;49182:33:0::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;-1:-1:-1::0;;;;;;;;;49226:20:0;::::1;;::::0;;;:14:::1;:20;::::0;;;;:22;;;::::1;::::0;::::1;:::i;:::-;::::0;;;-1:-1:-1;;;;;;;49259:18:0;::::1;;::::0;;;:14:::1;:18;::::0;;;;:20;;;::::1;::::0;::::1;:::i;:::-;;;;;;49290:48;49314:4;49320:2;49324:7;49333:4;49290:23;:48::i;:::-;49053:293:::0;;;;:::o;46346:373::-;46419:16;46448:18;46469:20;46479:9;46469;:20::i;:::-;46448:41;;46502:28;46547:10;46533:25;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;46533:25:0;;46502:56;;46574:9;46569:112;46588:10;46584:1;:14;46569:112;;;46636:33;46656:9;46667:1;46636:19;:33::i;:::-;46619:11;46631:1;46619:14;;;;;;;;:::i;:::-;;;;;;;;;;:50;46599:3;;;;:::i;:::-;;;;46569:112;;;-1:-1:-1;46700:11:0;46346:373;-1:-1:-1;;;46346:373:0:o;22925:334::-;27599:4;27623:16;;;:7;:16;;;;;;22998:13;;-1:-1:-1;;;;;27623:16:0;23024:76;;;;-1:-1:-1;;;23024:76:0;;14912:2:1;23024:76:0;;;14894:21:1;14951:2;14931:18;;;14924:30;14990:34;14970:18;;;14963:62;-1:-1:-1;;;15041:18:1;;;15034:45;15096:19;;23024:76:0;14710:411:1;23024:76:0;23113:21;23137:10;:8;:10::i;:::-;23113:34;;23189:1;23171:7;23165:21;:25;:86;;;;;;;;;;;;;;;;;23217:7;23226:18;:7;:16;:18::i;:::-;23200:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;23165:86;23158:93;22925:334;-1:-1:-1;;;22925:334:0:o;45268:264::-;41908:6;;-1:-1:-1;;;;;41908:6:0;20170:10;42055:23;42047:68;;;;-1:-1:-1;;;42047:68:0;;;;;;;:::i;:::-;45353:18:::1;45348:177;45385:9;:16;45372:10;:29;45348:177;;;45474:4;45431:17;:40;45449:9;45459:10;45449:21;;;;;;;;:::i;:::-;;;;;;;-1:-1:-1::0;;;;;45431:40:0::1;-1:-1:-1::0;;;;;45431:40:0::1;;;;;;;;;;;;;:47;;;;;;;;;;;;;;;;;;45512:1;45493:15;;:20;;;;;;;:::i;:::-;::::0;;;-1:-1:-1;45402:12:0;;-1:-1:-1;45402:12:0::1;::::0;::::1;:::i;:::-;;;;45348:177;;46809:400:::0;41908:6;;-1:-1:-1;;;;;41908:6:0;20170:10;42055:23;42047:68;;;;-1:-1:-1;;;42047:68:0;;;;;;;:::i;:::-;46881:19:::1;46903:13;35417:10:::0;:17;;35329:113;46903:13:::1;46881:35;;43581:3;46953:9;46937:13;;:25;;;;:::i;:::-;:49;;46929:83;;;::::0;-1:-1:-1;;;46929:83:0;;10657:2:1;46929:83:0::1;::::0;::::1;10639:21:1::0;10696:2;10676:18;;;10669:30;-1:-1:-1;;;10715:18:1;;;10708:51;10776:18;;46929:83:0::1;10455:345:1::0;46929:83:0::1;47030:9;47025:177;47045:9;47041:1;:13;47025:177;;;47076:38;47086:10;47098:15;47112:1:::0;47098:11;:15:::1;:::i;47076:38::-;47144:10;47129:26;::::0;;;:14:::1;:26;::::0;;;;:28;;;::::1;::::0;::::1;:::i;:::-;;;;;;47189:1;47172:13;;:18;;;;;;;:::i;:::-;::::0;;;-1:-1:-1;47056:3:0;;-1:-1:-1;47056:3:0::1;::::0;::::1;:::i;:::-;;;;47025:177;;42735:192:::0;41908:6;;-1:-1:-1;;;;;41908:6:0;20170:10;42055:23;42047:68;;;;-1:-1:-1;;;42047:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;42824:22:0;::::1;42816:73;;;::::0;-1:-1:-1;;;42816:73:0;;8301:2:1;42816:73:0::1;::::0;::::1;8283:21:1::0;8340:2;8320:18;;;8313:30;8379:34;8359:18;;;8352:62;-1:-1:-1;;;8430:18:1;;;8423:36;8476:19;;42816:73:0::1;8099:402:1::0;42816:73:0::1;42900:19;42910:8;42900:9;:19::i;:::-;42735:192:::0;:::o;45058:98::-;41908:6;;-1:-1:-1;;;;;41908:6:0;20170:10;42055:23;42047:68;;;;-1:-1:-1;;;42047:68:0;;;;;;;:::i;:::-;45127:9:::1;:21:::0;45058:98::o;34689:224::-;34791:4;-1:-1:-1;;;;;;34815:50:0;;-1:-1:-1;;;34815:50:0;;:90;;;34869:36;34893:11;34869:23;:36::i;31516:174::-;31591:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;31591:29:0;-1:-1:-1;;;;;31591:29:0;;;;;;;;:24;;31645:23;31591:24;31645:14;:23::i;:::-;-1:-1:-1;;;;;31636:46:0;;;;;;;;;;;31516:174;;:::o;25030:339::-;25225:41;20170:10;25258:7;25225:18;:41::i;:::-;25217:103;;;;-1:-1:-1;;;25217:103:0;;;;;;;:::i;:::-;25333:28;25343:4;25349:2;25353:7;25333:9;:28::i;28518:110::-;28594:26;28604:2;28608:7;28594:26;;;;;;;;;;;;:9;:26::i;25440:185::-;25578:39;25595:4;25601:2;25605:7;25578:39;;;;;;;;;;;;:16;:39::i;42935:173::-;43010:6;;;-1:-1:-1;;;;;43027:17:0;;;-1:-1:-1;;;;;;43027:17:0;;;;;;;43060:40;;43010:6;;;43027:17;43010:6;;43060:40;;42991:16;;43060:40;42980:128;42935:173;:::o;25696:328::-;25871:41;20170:10;25904:7;25871:18;:41::i;:::-;25863:103;;;;-1:-1:-1;;;25863:103:0;;;;;;;:::i;:::-;25977:39;25991:4;25997:2;26001:7;26010:5;25977:13;:39::i;44950:100::-;45002:13;45035:7;45028:14;;;;;:::i;311:723::-;367:13;588:10;584:53;;-1:-1:-1;;615:10:0;;;;;;;;;;;;-1:-1:-1;;;615:10:0;;;;;311:723::o;584:53::-;662:5;647:12;703:78;710:9;;703:78;;736:8;;;;:::i;:::-;;-1:-1:-1;759:10:0;;-1:-1:-1;767:2:0;759:10;;:::i;:::-;;;703:78;;;791:19;823:6;813:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;813:17:0;;791:39;;841:154;848:10;;841:154;;875:11;885:1;875:11;;:::i;:::-;;-1:-1:-1;944:10:0;952:2;944:5;:10;:::i;:::-;931:24;;:2;:24;:::i;:::-;918:39;;901:6;908;901:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;901:56:0;;;;;;;;-1:-1:-1;972:11:0;981:2;972:11;;:::i;:::-;;;841:154;;;1019:6;311:723;-1:-1:-1;;;;311:723:0:o;21636:305::-;21738:4;-1:-1:-1;;;;;;21775:40:0;;-1:-1:-1;;;21775:40:0;;:105;;-1:-1:-1;;;;;;;21832:48:0;;-1:-1:-1;;;21832:48:0;21775:105;:158;;;-1:-1:-1;;;;;;;;;;12885:40:0;;;21897:36;12776:157;27828:348;27921:4;27623:16;;;:7;:16;;;;;;-1:-1:-1;;;;;27623:16:0;27938:73;;;;-1:-1:-1;;;27938:73:0;;11007:2:1;27938:73:0;;;10989:21:1;11046:2;11026:18;;;11019:30;11085:34;11065:18;;;11058:62;-1:-1:-1;;;11136:18:1;;;11129:42;11188:19;;27938:73:0;10805:408:1;27938:73:0;28022:13;28038:23;28053:7;28038:14;:23::i;:::-;28022:39;;28091:5;-1:-1:-1;;;;;28080:16:0;:7;-1:-1:-1;;;;;28080:16:0;;:51;;;;28124:7;-1:-1:-1;;;;;28100:31:0;:20;28112:7;28100:11;:20::i;:::-;-1:-1:-1;;;;;28100:31:0;;28080:51;:87;;;-1:-1:-1;;;;;;24920:25:0;;;24896:4;24920:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;28135:32;24799:164;30820:578;30979:4;-1:-1:-1;;;;;30952:31:0;:23;30967:7;30952:14;:23::i;:::-;-1:-1:-1;;;;;30952:31:0;;30944:85;;;;-1:-1:-1;;;30944:85:0;;14502:2:1;30944:85:0;;;14484:21:1;14541:2;14521:18;;;14514:30;14580:34;14560:18;;;14553:62;-1:-1:-1;;;14631:18:1;;;14624:39;14680:19;;30944:85:0;14300:405:1;30944:85:0;-1:-1:-1;;;;;31048:16:0;;31040:65;;;;-1:-1:-1;;;31040:65:0;;9471:2:1;31040:65:0;;;9453:21:1;9510:2;9490:18;;;9483:30;9549:34;9529:18;;;9522:62;-1:-1:-1;;;9600:18:1;;;9593:34;9644:19;;31040:65:0;9269:400:1;31040:65:0;31118:39;31139:4;31145:2;31149:7;31118:20;:39::i;:::-;31222:29;31239:1;31243:7;31222:8;:29::i;:::-;-1:-1:-1;;;;;31264:15:0;;;;;;:9;:15;;;;;:20;;31283:1;;31264:15;:20;;31283:1;;31264:20;:::i;:::-;;;;-1:-1:-1;;;;;;;31295:13:0;;;;;;:9;:13;;;;;:18;;31312:1;;31295:13;:18;;31312:1;;31295:18;:::i;:::-;;;;-1:-1:-1;;31324:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;31324:21:0;-1:-1:-1;;;;;31324:21:0;;;;;;;;;31363:27;;31324:16;;31363:27;;;;;;;30820:578;;;:::o;28855:321::-;28985:18;28991:2;28995:7;28985:5;:18::i;:::-;29036:54;29067:1;29071:2;29075:7;29084:5;29036:22;:54::i;:::-;29014:154;;;;-1:-1:-1;;;29014:154:0;;;;;;;:::i;26906:315::-;27063:28;27073:4;27079:2;27083:7;27063:9;:28::i;:::-;27110:48;27133:4;27139:2;27143:7;27152:5;27110:22;:48::i;:::-;27102:111;;;;-1:-1:-1;;;27102:111:0;;;;;;;:::i;44210:181::-;44338:45;44365:4;44371:2;44375:7;44338:26;:45::i;29512:382::-;-1:-1:-1;;;;;29592:16:0;;29584:61;;;;-1:-1:-1;;;29584:61:0;;13367:2:1;29584:61:0;;;13349:21:1;;;13386:18;;;13379:30;13445:34;13425:18;;;13418:62;13497:18;;29584:61:0;13165:356:1;29584:61:0;27599:4;27623:16;;;:7;:16;;;;;;-1:-1:-1;;;;;27623:16:0;:30;29656:58;;;;-1:-1:-1;;;29656:58:0;;9114:2:1;29656:58:0;;;9096:21:1;9153:2;9133:18;;;9126:30;9192;9172:18;;;9165:58;9240:18;;29656:58:0;8912:352:1;29656:58:0;29727:45;29756:1;29760:2;29764:7;29727:20;:45::i;:::-;-1:-1:-1;;;;;29785:13:0;;;;;;:9;:13;;;;;:18;;29802:1;;29785:13;:18;;29802:1;;29785:18;:::i;:::-;;;;-1:-1:-1;;29814:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;29814:21:0;-1:-1:-1;;;;;29814:21:0;;;;;;;;29853:33;;29814:16;;;29853:33;;29814:16;;29853:33;29512:382;;:::o;32255:799::-;32410:4;-1:-1:-1;;;;;32431:13:0;;3159:20;3207:8;32427:620;;32467:72;;-1:-1:-1;;;32467:72:0;;-1:-1:-1;;;;;32467:36:0;;;;;:72;;20170:10;;32518:4;;32524:7;;32533:5;;32467:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;32467:72:0;;;;;;;;-1:-1:-1;;32467:72:0;;;;;;;;;;;;:::i;:::-;;;32463:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;32709:13:0;;32705:272;;32752:60;;-1:-1:-1;;;32752:60:0;;;;;;;:::i;32705:272::-;32927:6;32921:13;32912:6;32908:2;32904:15;32897:38;32463:529;-1:-1:-1;;;;;;32590:51:0;-1:-1:-1;;;32590:51:0;;-1:-1:-1;32583:58:0;;32427:620;-1:-1:-1;33031:4:0;32255:799;;;;;;:::o;36365:589::-;-1:-1:-1;;;;;36571:18:0;;36567:187;;36606:40;36638:7;37781:10;:17;;37754:24;;;;:15;:24;;;;;:44;;;37809:24;;;;;;;;;;;;37677:164;36606:40;36567:187;;;36676:2;-1:-1:-1;;;;;36668:10:0;:4;-1:-1:-1;;;;;36668:10:0;;36664:90;;36695:47;36728:4;36734:7;36695:32;:47::i;:::-;-1:-1:-1;;;;;36768:16:0;;36764:183;;36801:45;36838:7;36801:36;:45::i;36764:183::-;36874:4;-1:-1:-1;;;;;36868:10:0;:2;-1:-1:-1;;;;;36868:10:0;;36864:83;;36895:40;36923:2;36927:7;36895:27;:40::i;38468:988::-;38734:22;38784:1;38759:22;38776:4;38759:16;:22::i;:::-;:26;;;;:::i;:::-;38796:18;38817:26;;;:17;:26;;;;;;38734:51;;-1:-1:-1;38950:28:0;;;38946:328;;-1:-1:-1;;;;;39017:18:0;;38995:19;39017:18;;;:12;:18;;;;;;;;:34;;;;;;;;;39068:30;;;;;;:44;;;39185:30;;:17;:30;;;;;:43;;;38946:328;-1:-1:-1;39370:26:0;;;;:17;:26;;;;;;;;39363:33;;;-1:-1:-1;;;;;39414:18:0;;;;;:12;:18;;;;;:34;;;;;;;39407:41;38468:988::o;39751:1079::-;40029:10;:17;40004:22;;40029:21;;40049:1;;40029:21;:::i;:::-;40061:18;40082:24;;;:15;:24;;;;;;40455:10;:26;;40004:46;;-1:-1:-1;40082:24:0;;40004:46;;40455:26;;;;;;:::i;:::-;;;;;;;;;40433:48;;40519:11;40494:10;40505;40494:22;;;;;;;;:::i;:::-;;;;;;;;;;;;:36;;;;40599:28;;;:15;:28;;;;;;;:41;;;40771:24;;;;;40764:31;40806:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;39822:1008;;;39751:1079;:::o;37255:221::-;37340:14;37357:20;37374:2;37357:16;:20::i;:::-;-1:-1:-1;;;;;37388:16:0;;;;;;;:12;:16;;;;;;;;:24;;;;;;;;:34;;;37433:26;;;:17;:26;;;;;;:35;;;;-1:-1:-1;37255:221:0:o;14:173:1:-;82:20;;-1:-1:-1;;;;;131:31:1;;121:42;;111:70;;177:1;174;167:12;111:70;14:173;;;:::o;192:186::-;251:6;304:2;292:9;283:7;279:23;275:32;272:52;;;320:1;317;310:12;272:52;343:29;362:9;343:29;:::i;383:260::-;451:6;459;512:2;500:9;491:7;487:23;483:32;480:52;;;528:1;525;518:12;480:52;551:29;570:9;551:29;:::i;:::-;541:39;;599:38;633:2;622:9;618:18;599:38;:::i;:::-;589:48;;383:260;;;;;:::o;648:328::-;725:6;733;741;794:2;782:9;773:7;769:23;765:32;762:52;;;810:1;807;800:12;762:52;833:29;852:9;833:29;:::i;:::-;823:39;;881:38;915:2;904:9;900:18;881:38;:::i;:::-;871:48;;966:2;955:9;951:18;938:32;928:42;;648:328;;;;;:::o;981:980::-;1076:6;1084;1092;1100;1153:3;1141:9;1132:7;1128:23;1124:33;1121:53;;;1170:1;1167;1160:12;1121:53;1193:29;1212:9;1193:29;:::i;:::-;1183:39;;1241:2;1262:38;1296:2;1285:9;1281:18;1262:38;:::i;:::-;1252:48;;1347:2;1336:9;1332:18;1319:32;1309:42;;1402:2;1391:9;1387:18;1374:32;1425:18;1466:2;1458:6;1455:14;1452:34;;;1482:1;1479;1472:12;1452:34;1520:6;1509:9;1505:22;1495:32;;1565:7;1558:4;1554:2;1550:13;1546:27;1536:55;;1587:1;1584;1577:12;1536:55;1623:2;1610:16;1645:2;1641;1638:10;1635:36;;;1651:18;;:::i;:::-;1693:53;1736:2;1717:13;;-1:-1:-1;;1713:27:1;1709:36;;1693:53;:::i;:::-;1680:66;;1769:2;1762:5;1755:17;1809:7;1804:2;1799;1795;1791:11;1787:20;1784:33;1781:53;;;1830:1;1827;1820:12;1781:53;1885:2;1880;1876;1872:11;1867:2;1860:5;1856:14;1843:45;1929:1;1924:2;1919;1912:5;1908:14;1904:23;1897:34;;1950:5;1940:15;;;;;981:980;;;;;;;:::o;1966:347::-;2031:6;2039;2092:2;2080:9;2071:7;2067:23;2063:32;2060:52;;;2108:1;2105;2098:12;2060:52;2131:29;2150:9;2131:29;:::i;:::-;2121:39;;2210:2;2199:9;2195:18;2182:32;2257:5;2250:13;2243:21;2236:5;2233:32;2223:60;;2279:1;2276;2269:12;2223:60;2302:5;2292:15;;;1966:347;;;;;:::o;2318:254::-;2386:6;2394;2447:2;2435:9;2426:7;2422:23;2418:32;2415:52;;;2463:1;2460;2453:12;2415:52;2486:29;2505:9;2486:29;:::i;:::-;2476:39;2562:2;2547:18;;;;2534:32;;-1:-1:-1;;;2318:254:1:o;2577:963::-;2661:6;2692:2;2735;2723:9;2714:7;2710:23;2706:32;2703:52;;;2751:1;2748;2741:12;2703:52;2791:9;2778:23;2820:18;2861:2;2853:6;2850:14;2847:34;;;2877:1;2874;2867:12;2847:34;2915:6;2904:9;2900:22;2890:32;;2960:7;2953:4;2949:2;2945:13;2941:27;2931:55;;2982:1;2979;2972:12;2931:55;3018:2;3005:16;3040:2;3036;3033:10;3030:36;;;3046:18;;:::i;:::-;3092:2;3089:1;3085:10;3075:20;;3115:28;3139:2;3135;3131:11;3115:28;:::i;:::-;3177:15;;;3208:12;;;;3240:11;;;3270;;;3266:20;;3263:33;-1:-1:-1;3260:53:1;;;3309:1;3306;3299:12;3260:53;3331:1;3322:10;;3341:169;3355:2;3352:1;3349:9;3341:169;;;3412:23;3431:3;3412:23;:::i;:::-;3400:36;;3373:1;3366:9;;;;;3456:12;;;;3488;;3341:169;;;-1:-1:-1;3529:5:1;2577:963;-1:-1:-1;;;;;;;;2577:963:1:o;3545:245::-;3603:6;3656:2;3644:9;3635:7;3631:23;3627:32;3624:52;;;3672:1;3669;3662:12;3624:52;3711:9;3698:23;3730:30;3754:5;3730:30;:::i;3795:249::-;3864:6;3917:2;3905:9;3896:7;3892:23;3888:32;3885:52;;;3933:1;3930;3923:12;3885:52;3965:9;3959:16;3984:30;4008:5;3984:30;:::i;4049:180::-;4108:6;4161:2;4149:9;4140:7;4136:23;4132:32;4129:52;;;4177:1;4174;4167:12;4129:52;-1:-1:-1;4200:23:1;;4049:180;-1:-1:-1;4049:180:1:o;4234:257::-;4275:3;4313:5;4307:12;4340:6;4335:3;4328:19;4356:63;4412:6;4405:4;4400:3;4396:14;4389:4;4382:5;4378:16;4356:63;:::i;:::-;4473:2;4452:15;-1:-1:-1;;4448:29:1;4439:39;;;;4480:4;4435:50;;4234:257;-1:-1:-1;;4234:257:1:o;4496:470::-;4675:3;4713:6;4707:13;4729:53;4775:6;4770:3;4763:4;4755:6;4751:17;4729:53;:::i;:::-;4845:13;;4804:16;;;;4867:57;4845:13;4804:16;4901:4;4889:17;;4867:57;:::i;:::-;4940:20;;4496:470;-1:-1:-1;;;;4496:470:1:o;5488:488::-;-1:-1:-1;;;;;5757:15:1;;;5739:34;;5809:15;;5804:2;5789:18;;5782:43;5856:2;5841:18;;5834:34;;;5904:3;5899:2;5884:18;;5877:31;;;5682:4;;5925:45;;5950:19;;5942:6;5925:45;:::i;:::-;5917:53;5488:488;-1:-1:-1;;;;;;5488:488:1:o;5981:632::-;6152:2;6204:21;;;6274:13;;6177:18;;;6296:22;;;6123:4;;6152:2;6375:15;;;;6349:2;6334:18;;;6123:4;6418:169;6432:6;6429:1;6426:13;6418:169;;;6493:13;;6481:26;;6562:15;;;;6527:12;;;;6454:1;6447:9;6418:169;;;-1:-1:-1;6604:3:1;;5981:632;-1:-1:-1;;;;;;5981:632:1:o;7044:219::-;7193:2;7182:9;7175:21;7156:4;7213:44;7253:2;7242:9;7238:18;7230:6;7213:44;:::i;7680:414::-;7882:2;7864:21;;;7921:2;7901:18;;;7894:30;7960:34;7955:2;7940:18;;7933:62;-1:-1:-1;;;8026:2:1;8011:18;;8004:48;8084:3;8069:19;;7680:414::o;12464:343::-;12666:2;12648:21;;;12705:2;12685:18;;;12678:30;-1:-1:-1;;;12739:2:1;12724:18;;12717:49;12798:2;12783:18;;12464:343::o;13939:356::-;14141:2;14123:21;;;14160:18;;;14153:30;14219:34;14214:2;14199:18;;14192:62;14286:2;14271:18;;13939:356::o;15528:413::-;15730:2;15712:21;;;15769:2;15749:18;;;15742:30;15808:34;15803:2;15788:18;;15781:62;-1:-1:-1;;;15874:2:1;15859:18;;15852:47;15931:3;15916:19;;15528:413::o;18067:275::-;18138:2;18132:9;18203:2;18184:13;;-1:-1:-1;;18180:27:1;18168:40;;18238:18;18223:34;;18259:22;;;18220:62;18217:88;;;18285:18;;:::i;:::-;18321:2;18314:22;18067:275;;-1:-1:-1;18067:275:1:o;18347:128::-;18387:3;18418:1;18414:6;18411:1;18408:13;18405:39;;;18424:18;;:::i;:::-;-1:-1:-1;18460:9:1;;18347:128::o;18480:120::-;18520:1;18546;18536:35;;18551:18;;:::i;:::-;-1:-1:-1;18585:9:1;;18480:120::o;18605:168::-;18645:7;18711:1;18707;18703:6;18699:14;18696:1;18693:21;18688:1;18681:9;18674:17;18670:45;18667:71;;;18718:18;;:::i;:::-;-1:-1:-1;18758:9:1;;18605:168::o;18778:125::-;18818:4;18846:1;18843;18840:8;18837:34;;;18851:18;;:::i;:::-;-1:-1:-1;18888:9:1;;18778:125::o;18908:258::-;18980:1;18990:113;19004:6;19001:1;18998:13;18990:113;;;19080:11;;;19074:18;19061:11;;;19054:39;19026:2;19019:10;18990:113;;;19121:6;19118:1;19115:13;19112:48;;;-1:-1:-1;;19156:1:1;19138:16;;19131:27;18908:258::o;19171:136::-;19210:3;19238:5;19228:39;;19247:18;;:::i;:::-;-1:-1:-1;;;19283:18:1;;19171:136::o;19312:380::-;19391:1;19387:12;;;;19434;;;19455:61;;19509:4;19501:6;19497:17;19487:27;;19455:61;19562:2;19554:6;19551:14;19531:18;19528:38;19525:161;;;19608:10;19603:3;19599:20;19596:1;19589:31;19643:4;19640:1;19633:15;19671:4;19668:1;19661:15;19525:161;;19312:380;;;:::o;19697:135::-;19736:3;-1:-1:-1;;19757:17:1;;19754:43;;;19777:18;;:::i;:::-;-1:-1:-1;19824:1:1;19813:13;;19697:135::o;19837:112::-;19869:1;19895;19885:35;;19900:18;;:::i;:::-;-1:-1:-1;19934:9:1;;19837:112::o;19954:127::-;20015:10;20010:3;20006:20;20003:1;19996:31;20046:4;20043:1;20036:15;20070:4;20067:1;20060:15;20086:127;20147:10;20142:3;20138:20;20135:1;20128:31;20178:4;20175:1;20168:15;20202:4;20199:1;20192:15;20218:127;20279:10;20274:3;20270:20;20267:1;20260:31;20310:4;20307:1;20300:15;20334:4;20331:1;20324:15;20350:127;20411:10;20406:3;20402:20;20399:1;20392:31;20442:4;20439:1;20432:15;20466:4;20463:1;20456:15;20482:127;20543:10;20538:3;20534:20;20531:1;20524:31;20574:4;20571:1;20564:15;20598:4;20595:1;20588:15;20614:131;-1:-1:-1;;;;;;20688:32:1;;20678:43;;20668:71;;20735:1;20732;20725:12

Swarm Source

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