ETH Price: $2,627.61 (-1.19%)
Gas: 2 Gwei

Token

NoFunToads (TOADS)
 

Overview

Max Total Supply

2,161 TOADS

Holders

636

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
snoopventures.eth
Balance
2 TOADS
0x60ced65a51922c9560d72631f658db0df85bff1f
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

No Fun Toads is a collection of 10000 toads who just want to have fun: 20% of sales donated toward #mentalhealth charities 20% of sales given as creator grants

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
NoFunToads

Compiler Version
v0.8.9+commit.e5eed63a

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

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

// Contract based on https://docs.openzeppelin.com/contracts/3.x/erc721
// SPDX-License-Identifier: None

// 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/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/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/NoFunToads.sol

// Contract based on https://docs.openzeppelin.com/contracts/3.x/erc721

pragma solidity ^0.8.0;



contract NoFunToads is ERC721, Ownable {
    // premint variables
    mapping (bytes32 => bool) public unique;
    bytes32[] public hashList;
    bool public hasPresaleStarted = false;
    uint256 public constant MAX_TOAD_PREMINT = 50;
    address public publicSigner = 0xCAcc5a38C1358270F41ae64BE39448eE5727638b;

    uint256 public constant TOTAL_TOADS = 10000;
    uint256 public constant MAX_TOAD_PURCHASE = 10;
    uint256 public constant RESERVED_TOADS_INDEX = 301;
    uint256 public constant PRICE = 0.04 ether;

    string public baseURI = "";
    uint256 private reserveIndex = 1;
    uint256 public curIndex = RESERVED_TOADS_INDEX;
    bool public hasSaleStarted = false;

    constructor() ERC721("NoFunToads", "TOADS") {}

    /** Premint */

    // splits flat 97 bit signatures
    function splitSignature(bytes memory sig) private pure 
    returns (uint8 v, bytes32 r, bytes32 s, bytes32 nonce) {
        require(sig.length == 97);

        assembly {
            // first 32 bytes, after the length prefix
            r := mload(add(sig, 32))
            // second 32 bytes
            s := mload(add(sig, 64))
            // first byte of the next 32 bytes
            v := byte(0, mload(add(sig, 96)))
            // bytes 65-97
            nonce := mload(add(sig, 97))
        }

        return (v, r, s, nonce);
    }

    // recover signer
    function verifyHash(uint8 v, bytes32 r, bytes32 s, bytes32 nonce) internal pure 
    returns (address signer) {

        bytes32 messageDigest = keccak256(abi.encodePacked("\x19Ethereum Signed Message:\n32", nonce));

        return ecrecover(messageDigest, v, r, s);
    }

    // set the public key of signer to be verified against
    function setPublicSigner(address _publicSigner) public onlyOwner {
        publicSigner = _publicSigner;
    }

    function flipPresaleState() external onlyOwner {
        hasPresaleStarted = !hasPresaleStarted;
    }

    function preMintToad(uint256 numToads, bytes memory signature) public payable {
        (uint8 v, bytes32 r, bytes32 s, bytes32 nonce) = splitSignature(signature);

        require(hasPresaleStarted, "Presale is not active.");
        require(
            numToads > 0 && numToads <= MAX_TOAD_PREMINT,
            "You may premint a minimum of 1 and a maximum of 100 Toads at a time."
        );
        require(
            curIndex + numToads - 1 <= TOTAL_TOADS,
            "Purchase exceeds max supply of Toads"
        );
        require(
            msg.value >= numToads * PRICE,
            "Insufficient ETH funds."
        );
        require(
            verifyHash(v, r, s, nonce) == publicSigner, 
            "Invalid hash signer."
        );

        // check nonce uniqueness
        require(!unique[nonce], "Signature has already been used.");
        unique[nonce] = true;

        for (uint256 i = 0; i < numToads; i++) {
            _safeMint(msg.sender, curIndex+i);
        }

        curIndex += numToads;
    }

    /* NFT */

    function mintToad(uint256 numToads) public payable {
        require(hasSaleStarted, "Sale is not active.");
        require(curIndex <= TOTAL_TOADS, "Sale has ended.");
        require(
            numToads > 0 && numToads <= MAX_TOAD_PURCHASE,
            "You may buy a minimum of 1 and a maximum of 10 Toads at a time."
        );
        require(
            curIndex + numToads - 1 <= TOTAL_TOADS,
            "Purchase exceeds max supply of Toads"
        );
        require(
            msg.value >= numToads * PRICE ,
            "Insufficient ETH funds."
        );
        for (uint256 i = 0; i < numToads; i++) {
            _safeMint(msg.sender, curIndex + i);
        }

        curIndex += numToads;
    }

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

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

    function flipSaleState() external onlyOwner {
        hasSaleStarted = !hasSaleStarted;
    }

    function totalSupply() public view returns (uint256) {
        // subtract 1 since reserveIndex begins at 1
        return curIndex - RESERVED_TOADS_INDEX + reserveIndex - 1;
    }

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

    function reserveToads(uint8 amount, address addr) public onlyOwner {
        require(reserveIndex + amount <= RESERVED_TOADS_INDEX, "All toads have been reserved.");
        for (uint i = 0; i < amount; i++) {
            _safeMint(addr, reserveIndex + i);
        }

        reserveIndex += amount;
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"MAX_TOAD_PREMINT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_TOAD_PURCHASE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"RESERVED_TOADS_INDEX","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"TOTAL_TOADS","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"curIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"flipPresaleState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"flipSaleState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"hasPresaleStarted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"hasSaleStarted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"hashList","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"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":"numToads","type":"uint256"}],"name":"mintToad","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"numToads","type":"uint256"},{"internalType":"bytes","name":"signature","type":"bytes"}],"name":"preMintToad","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"publicSigner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint8","name":"amount","type":"uint8"},{"internalType":"address","name":"addr","type":"address"}],"name":"reserveToads","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_publicSigner","type":"address"}],"name":"setPublicSigner","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"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":"bytes32","name":"","type":"bytes32"}],"name":"unique","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdrawAll","outputs":[],"stateMutability":"payable","type":"function"}]

600980546001600160a81b03191674cacc5a38c1358270f41ae64be39448ee5727638b0017905560a06040819052600060808190526200004291600a9162000144565b506001600b5561012d600c55600d805460ff191690553480156200006557600080fd5b50604080518082018252600a8152694e6f46756e546f61647360b01b602080830191825283518085019094526005845264544f41445360d81b908401528151919291620000b59160009162000144565b508051620000cb90600190602084019062000144565b505050620000e8620000e2620000ee60201b60201c565b620000f2565b62000227565b3390565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b8280546200015290620001ea565b90600052602060002090601f016020900481019282620001765760008555620001c1565b82601f106200019157805160ff1916838001178555620001c1565b82800160010185558215620001c1579182015b82811115620001c1578251825591602001919060010190620001a4565b50620001cf929150620001d3565b5090565b5b80821115620001cf5760008155600101620001d4565b600181811c90821680620001ff57607f821691505b602082108114156200022157634e487b7160e01b600052602260045260246000fd5b50919050565b61240a80620002376000396000f3fe60806040526004361061021a5760003560e01c8063853828b611610123578063b88d4fde116100ab578063e8070a1f1161006f578063e8070a1f146105d8578063e985e9c5146105ee578063f20baca614610637578063f2fde38b1461064c578063f81227d41461066c57600080fd5b8063b88d4fde1461054a578063bf3f21531461056a578063c87b56dd1461057d578063c912696c1461059d578063e5487535146105b357600080fd5b806397ef66ed116100f257806397ef66ed146104b8578063a22cb465146104cb578063a98d03b2146104eb578063b02200151461051b578063b73438e61461053557600080fd5b8063853828b6146104625780638d859f3e1461046a5780638da5cb5b1461048557806395d89b41146104a357600080fd5b806342842e0e116101a65780636900f2dc116101755780636900f2dc146103e25780636c0360eb1461040257806370a0823114610417578063715018a6146104375780637c3bb1a71461044c57600080fd5b806342842e0e1461036257806355f804b3146103825780636352211e146103a257806367ecd720146103c257600080fd5b806318160ddd116101ed57806318160ddd146102d05780631c8b232d146102f357806323b872dd1461030d5780632c8d41fd1461032d57806334918dfd1461034d57600080fd5b806301ffc9a71461021f57806306fdde0314610254578063081812fc14610276578063095ea7b3146102ae575b600080fd5b34801561022b57600080fd5b5061023f61023a366004611dac565b610681565b60405190151581526020015b60405180910390f35b34801561026057600080fd5b506102696106d3565b60405161024b9190611e21565b34801561028257600080fd5b50610296610291366004611e34565b610765565b6040516001600160a01b03909116815260200161024b565b3480156102ba57600080fd5b506102ce6102c9366004611e69565b6107ff565b005b3480156102dc57600080fd5b506102e5610915565b60405190815260200161024b565b3480156102ff57600080fd5b50600d5461023f9060ff1681565b34801561031957600080fd5b506102ce610328366004611e93565b610945565b34801561033957600080fd5b506102e5610348366004611e34565b610976565b34801561035957600080fd5b506102ce610997565b34801561036e57600080fd5b506102ce61037d366004611e93565b6109d5565b34801561038e57600080fd5b506102ce61039d366004611f5b565b6109f0565b3480156103ae57600080fd5b506102966103bd366004611e34565b610a31565b3480156103ce57600080fd5b506102ce6103dd366004611fa4565b610aa8565b3480156103ee57600080fd5b506102ce6103fd366004611fdf565b610b8a565b34801561040e57600080fd5b50610269610bdc565b34801561042357600080fd5b506102e5610432366004611fdf565b610c6a565b34801561044357600080fd5b506102ce610cf1565b34801561045857600080fd5b506102e561271081565b6102ce610d27565b34801561047657600080fd5b506102e5668e1bc9bf04000081565b34801561049157600080fd5b506006546001600160a01b0316610296565b3480156104af57600080fd5b50610269610d75565b6102ce6104c636600461201a565b610d84565b3480156104d757600080fd5b506102ce6104e6366004612061565b61103d565b3480156104f757600080fd5b5061023f610506366004611e34565b60076020526000908152604090205460ff1681565b34801561052757600080fd5b5060095461023f9060ff1681565b34801561054157600080fd5b506102e5600a81565b34801561055657600080fd5b506102ce61056536600461209d565b611102565b6102ce610578366004611e34565b61113a565b34801561058957600080fd5b50610269610598366004611e34565b61132a565b3480156105a957600080fd5b506102e5600c5481565b3480156105bf57600080fd5b506009546102969061010090046001600160a01b031681565b3480156105e457600080fd5b506102e561012d81565b3480156105fa57600080fd5b5061023f610609366004612105565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561064357600080fd5b506102e5603281565b34801561065857600080fd5b506102ce610667366004611fdf565b611405565b34801561067857600080fd5b506102ce6114a0565b60006001600160e01b031982166380ac58cd60e01b14806106b257506001600160e01b03198216635b5e139f60e01b145b806106cd57506301ffc9a760e01b6001600160e01b03198316145b92915050565b6060600080546106e290612121565b80601f016020809104026020016040519081016040528092919081815260200182805461070e90612121565b801561075b5780601f106107305761010080835404028352916020019161075b565b820191906000526020600020905b81548152906001019060200180831161073e57829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166107e35760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b600061080a82610a31565b9050806001600160a01b0316836001600160a01b031614156108785760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084016107da565b336001600160a01b038216148061089457506108948133610609565b6109065760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c000000000000000060648201526084016107da565b61091083836114de565b505050565b60006001600b5461012d600c5461092c9190612172565b6109369190612189565b6109409190612172565b905090565b61094f338261154c565b61096b5760405162461bcd60e51b81526004016107da906121a1565b610910838383611643565b6008818154811061098657600080fd5b600091825260209091200154905081565b6006546001600160a01b031633146109c15760405162461bcd60e51b81526004016107da906121f2565b600d805460ff19811660ff90911615179055565b61091083838360405180602001604052806000815250611102565b6006546001600160a01b03163314610a1a5760405162461bcd60e51b81526004016107da906121f2565b8051610a2d90600a906020840190611cfd565b5050565b6000818152600260205260408120546001600160a01b0316806106cd5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b60648201526084016107da565b6006546001600160a01b03163314610ad25760405162461bcd60e51b81526004016107da906121f2565b61012d8260ff16600b54610ae69190612189565b1115610b345760405162461bcd60e51b815260206004820152601d60248201527f416c6c20746f6164732068617665206265656e2072657365727665642e00000060448201526064016107da565b60005b8260ff16811015610b6b57610b598282600b54610b549190612189565b6117e3565b80610b6381612227565b915050610b37565b508160ff16600b6000828254610b819190612189565b90915550505050565b6006546001600160a01b03163314610bb45760405162461bcd60e51b81526004016107da906121f2565b600980546001600160a01b0390921661010002610100600160a81b0319909216919091179055565b600a8054610be990612121565b80601f0160208091040260200160405190810160405280929190818152602001828054610c1590612121565b8015610c625780601f10610c3757610100808354040283529160200191610c62565b820191906000526020600020905b815481529060010190602001808311610c4557829003601f168201915b505050505081565b60006001600160a01b038216610cd55760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b60648201526084016107da565b506001600160a01b031660009081526003602052604090205490565b6006546001600160a01b03163314610d1b5760405162461bcd60e51b81526004016107da906121f2565b610d2560006117fd565b565b6006546001600160a01b03163314610d515760405162461bcd60e51b81526004016107da906121f2565b60405133904780156108fc02916000818181858888f19350505050610d2557600080fd5b6060600180546106e290612121565b600080600080610d938561184f565b6009549397509195509350915060ff16610de85760405162461bcd60e51b8152602060048201526016602482015275283932b9b0b6329034b9903737ba1030b1ba34bb329760511b60448201526064016107da565b600086118015610df9575060328611155b610e795760405162461bcd60e51b8152602060048201526044602482018190527f596f75206d6179207072656d696e742061206d696e696d756d206f6620312061908201527f6e642061206d6178696d756d206f662031303020546f6164732061742061207460648201526334b6b29760e11b608482015260a4016107da565b612710600187600c54610e8c9190612189565b610e969190612172565b1115610eb45760405162461bcd60e51b81526004016107da90612242565b610ec5668e1bc9bf04000087612286565b341015610f0e5760405162461bcd60e51b815260206004820152601760248201527624b739bab33334b1b4b2b73a1022aa2410333ab732399760491b60448201526064016107da565b60095461010090046001600160a01b0316610f2b85858585611889565b6001600160a01b031614610f785760405162461bcd60e51b815260206004820152601460248201527324b73b30b634b2103430b9b41039b4b3b732b91760611b60448201526064016107da565b60008181526007602052604090205460ff1615610fd75760405162461bcd60e51b815260206004820181905260248201527f5369676e61747572652068617320616c7265616479206265656e20757365642e60448201526064016107da565b6000818152600760205260408120805460ff191660011790555b8681101561101d5761100b3382600c54610b549190612189565b8061101581612227565b915050610ff1565b5085600c60008282546110309190612189565b9091555050505050505050565b6001600160a01b0382163314156110965760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c65720000000000000060448201526064016107da565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b61110c338361154c565b6111285760405162461bcd60e51b81526004016107da906121a1565b6111348484848461193e565b50505050565b600d5460ff166111825760405162461bcd60e51b815260206004820152601360248201527229b0b6329034b9903737ba1030b1ba34bb329760691b60448201526064016107da565b612710600c5411156111c85760405162461bcd60e51b815260206004820152600f60248201526e29b0b632903430b99032b73232b21760891b60448201526064016107da565b6000811180156111d95750600a8111155b61124b5760405162461bcd60e51b815260206004820152603f60248201527f596f75206d6179206275792061206d696e696d756d206f66203120616e64206160448201527f206d6178696d756d206f6620313020546f61647320617420612074696d652e0060648201526084016107da565b612710600182600c5461125e9190612189565b6112689190612172565b11156112865760405162461bcd60e51b81526004016107da90612242565b611297668e1bc9bf04000082612286565b3410156112e05760405162461bcd60e51b815260206004820152601760248201527624b739bab33334b1b4b2b73a1022aa2410333ab732399760491b60448201526064016107da565b60005b8181101561130f576112fd3382600c54610b549190612189565b8061130781612227565b9150506112e3565b5080600c60008282546113229190612189565b909155505050565b6000818152600260205260409020546060906001600160a01b03166113a95760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084016107da565b60006113b3611971565b905060008151116113d357604051806020016040528060008152506113fe565b806113dd84611980565b6040516020016113ee9291906122a5565b6040516020818303038152906040525b9392505050565b6006546001600160a01b0316331461142f5760405162461bcd60e51b81526004016107da906121f2565b6001600160a01b0381166114945760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016107da565b61149d816117fd565b50565b6006546001600160a01b031633146114ca5760405162461bcd60e51b81526004016107da906121f2565b6009805460ff19811660ff90911615179055565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061151382610a31565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b03166115c55760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016107da565b60006115d083610a31565b9050806001600160a01b0316846001600160a01b0316148061160b5750836001600160a01b031661160084610765565b6001600160a01b0316145b8061163b57506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b031661165682610a31565b6001600160a01b0316146116be5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b60648201526084016107da565b6001600160a01b0382166117205760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b60648201526084016107da565b61172b6000826114de565b6001600160a01b0383166000908152600360205260408120805460019290611754908490612172565b90915550506001600160a01b0382166000908152600360205260408120805460019290611782908490612189565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b610a2d828260405180602001604052806000815250611a7e565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600080600080845160611461186357600080fd5b6020850151925060408501519150606085015160001a9350606185015190509193509193565b6040517f19457468657265756d205369676e6564204d6573736167653a0a3332000000006020820152603c81018290526000908190605c0160408051601f1981840301815282825280516020918201206000845290830180835281905260ff8916918301919091526060820187905260808201869052915060019060a0016020604051602081039080840390855afa158015611929573d6000803e3d6000fd5b5050604051601f190151979650505050505050565b611949848484611643565b61195584848484611ab1565b6111345760405162461bcd60e51b81526004016107da906122d4565b6060600a80546106e290612121565b6060816119a45750506040805180820190915260018152600360fc1b602082015290565b8160005b81156119ce57806119b881612227565b91506119c79050600a8361233c565b91506119a8565b60008167ffffffffffffffff8111156119e9576119e9611ecf565b6040519080825280601f01601f191660200182016040528015611a13576020820181803683370190505b5090505b841561163b57611a28600183612172565b9150611a35600a86612350565b611a40906030612189565b60f81b818381518110611a5557611a55612364565b60200101906001600160f81b031916908160001a905350611a77600a8661233c565b9450611a17565b611a888383611bbb565b611a956000848484611ab1565b6109105760405162461bcd60e51b81526004016107da906122d4565b60006001600160a01b0384163b15611bb357604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611af590339089908890889060040161237a565b602060405180830381600087803b158015611b0f57600080fd5b505af1925050508015611b3f575060408051601f3d908101601f19168201909252611b3c918101906123b7565b60015b611b99573d808015611b6d576040519150601f19603f3d011682016040523d82523d6000602084013e611b72565b606091505b508051611b915760405162461bcd60e51b81526004016107da906122d4565b805181602001fd5b6001600160e01b031916630a85bd0160e11b14905061163b565b50600161163b565b6001600160a01b038216611c115760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016107da565b6000818152600260205260409020546001600160a01b031615611c765760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016107da565b6001600160a01b0382166000908152600360205260408120805460019290611c9f908490612189565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b828054611d0990612121565b90600052602060002090601f016020900481019282611d2b5760008555611d71565b82601f10611d4457805160ff1916838001178555611d71565b82800160010185558215611d71579182015b82811115611d71578251825591602001919060010190611d56565b50611d7d929150611d81565b5090565b5b80821115611d7d5760008155600101611d82565b6001600160e01b03198116811461149d57600080fd5b600060208284031215611dbe57600080fd5b81356113fe81611d96565b60005b83811015611de4578181015183820152602001611dcc565b838111156111345750506000910152565b60008151808452611e0d816020860160208601611dc9565b601f01601f19169290920160200192915050565b6020815260006113fe6020830184611df5565b600060208284031215611e4657600080fd5b5035919050565b80356001600160a01b0381168114611e6457600080fd5b919050565b60008060408385031215611e7c57600080fd5b611e8583611e4d565b946020939093013593505050565b600080600060608486031215611ea857600080fd5b611eb184611e4d565b9250611ebf60208501611e4d565b9150604084013590509250925092565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff80841115611f0057611f00611ecf565b604051601f8501601f19908116603f01168101908282118183101715611f2857611f28611ecf565b81604052809350858152868686011115611f4157600080fd5b858560208301376000602087830101525050509392505050565b600060208284031215611f6d57600080fd5b813567ffffffffffffffff811115611f8457600080fd5b8201601f81018413611f9557600080fd5b61163b84823560208401611ee5565b60008060408385031215611fb757600080fd5b823560ff81168114611fc857600080fd5b9150611fd660208401611e4d565b90509250929050565b600060208284031215611ff157600080fd5b6113fe82611e4d565b600082601f83011261200b57600080fd5b6113fe83833560208501611ee5565b6000806040838503121561202d57600080fd5b82359150602083013567ffffffffffffffff81111561204b57600080fd5b61205785828601611ffa565b9150509250929050565b6000806040838503121561207457600080fd5b61207d83611e4d565b91506020830135801515811461209257600080fd5b809150509250929050565b600080600080608085870312156120b357600080fd5b6120bc85611e4d565b93506120ca60208601611e4d565b925060408501359150606085013567ffffffffffffffff8111156120ed57600080fd5b6120f987828801611ffa565b91505092959194509250565b6000806040838503121561211857600080fd5b611fc883611e4d565b600181811c9082168061213557607f821691505b6020821081141561215657634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b6000828210156121845761218461215c565b500390565b6000821982111561219c5761219c61215c565b500190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600060001982141561223b5761223b61215c565b5060010190565b60208082526024908201527f50757263686173652065786365656473206d617820737570706c79206f6620546040820152636f61647360e01b606082015260800190565b60008160001904831182151516156122a0576122a061215c565b500290565b600083516122b7818460208801611dc9565b8351908301906122cb818360208801611dc9565b01949350505050565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b634e487b7160e01b600052601260045260246000fd5b60008261234b5761234b612326565b500490565b60008261235f5761235f612326565b500690565b634e487b7160e01b600052603260045260246000fd5b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906123ad90830184611df5565b9695505050505050565b6000602082840312156123c957600080fd5b81516113fe81611d9656fea2646970667358221220ca906a2a3341bab463472e3b26eb0596c568f8c3662eeb69f3921c1f66b2ff5264736f6c63430008090033

Deployed Bytecode

0x60806040526004361061021a5760003560e01c8063853828b611610123578063b88d4fde116100ab578063e8070a1f1161006f578063e8070a1f146105d8578063e985e9c5146105ee578063f20baca614610637578063f2fde38b1461064c578063f81227d41461066c57600080fd5b8063b88d4fde1461054a578063bf3f21531461056a578063c87b56dd1461057d578063c912696c1461059d578063e5487535146105b357600080fd5b806397ef66ed116100f257806397ef66ed146104b8578063a22cb465146104cb578063a98d03b2146104eb578063b02200151461051b578063b73438e61461053557600080fd5b8063853828b6146104625780638d859f3e1461046a5780638da5cb5b1461048557806395d89b41146104a357600080fd5b806342842e0e116101a65780636900f2dc116101755780636900f2dc146103e25780636c0360eb1461040257806370a0823114610417578063715018a6146104375780637c3bb1a71461044c57600080fd5b806342842e0e1461036257806355f804b3146103825780636352211e146103a257806367ecd720146103c257600080fd5b806318160ddd116101ed57806318160ddd146102d05780631c8b232d146102f357806323b872dd1461030d5780632c8d41fd1461032d57806334918dfd1461034d57600080fd5b806301ffc9a71461021f57806306fdde0314610254578063081812fc14610276578063095ea7b3146102ae575b600080fd5b34801561022b57600080fd5b5061023f61023a366004611dac565b610681565b60405190151581526020015b60405180910390f35b34801561026057600080fd5b506102696106d3565b60405161024b9190611e21565b34801561028257600080fd5b50610296610291366004611e34565b610765565b6040516001600160a01b03909116815260200161024b565b3480156102ba57600080fd5b506102ce6102c9366004611e69565b6107ff565b005b3480156102dc57600080fd5b506102e5610915565b60405190815260200161024b565b3480156102ff57600080fd5b50600d5461023f9060ff1681565b34801561031957600080fd5b506102ce610328366004611e93565b610945565b34801561033957600080fd5b506102e5610348366004611e34565b610976565b34801561035957600080fd5b506102ce610997565b34801561036e57600080fd5b506102ce61037d366004611e93565b6109d5565b34801561038e57600080fd5b506102ce61039d366004611f5b565b6109f0565b3480156103ae57600080fd5b506102966103bd366004611e34565b610a31565b3480156103ce57600080fd5b506102ce6103dd366004611fa4565b610aa8565b3480156103ee57600080fd5b506102ce6103fd366004611fdf565b610b8a565b34801561040e57600080fd5b50610269610bdc565b34801561042357600080fd5b506102e5610432366004611fdf565b610c6a565b34801561044357600080fd5b506102ce610cf1565b34801561045857600080fd5b506102e561271081565b6102ce610d27565b34801561047657600080fd5b506102e5668e1bc9bf04000081565b34801561049157600080fd5b506006546001600160a01b0316610296565b3480156104af57600080fd5b50610269610d75565b6102ce6104c636600461201a565b610d84565b3480156104d757600080fd5b506102ce6104e6366004612061565b61103d565b3480156104f757600080fd5b5061023f610506366004611e34565b60076020526000908152604090205460ff1681565b34801561052757600080fd5b5060095461023f9060ff1681565b34801561054157600080fd5b506102e5600a81565b34801561055657600080fd5b506102ce61056536600461209d565b611102565b6102ce610578366004611e34565b61113a565b34801561058957600080fd5b50610269610598366004611e34565b61132a565b3480156105a957600080fd5b506102e5600c5481565b3480156105bf57600080fd5b506009546102969061010090046001600160a01b031681565b3480156105e457600080fd5b506102e561012d81565b3480156105fa57600080fd5b5061023f610609366004612105565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561064357600080fd5b506102e5603281565b34801561065857600080fd5b506102ce610667366004611fdf565b611405565b34801561067857600080fd5b506102ce6114a0565b60006001600160e01b031982166380ac58cd60e01b14806106b257506001600160e01b03198216635b5e139f60e01b145b806106cd57506301ffc9a760e01b6001600160e01b03198316145b92915050565b6060600080546106e290612121565b80601f016020809104026020016040519081016040528092919081815260200182805461070e90612121565b801561075b5780601f106107305761010080835404028352916020019161075b565b820191906000526020600020905b81548152906001019060200180831161073e57829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166107e35760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b600061080a82610a31565b9050806001600160a01b0316836001600160a01b031614156108785760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084016107da565b336001600160a01b038216148061089457506108948133610609565b6109065760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c000000000000000060648201526084016107da565b61091083836114de565b505050565b60006001600b5461012d600c5461092c9190612172565b6109369190612189565b6109409190612172565b905090565b61094f338261154c565b61096b5760405162461bcd60e51b81526004016107da906121a1565b610910838383611643565b6008818154811061098657600080fd5b600091825260209091200154905081565b6006546001600160a01b031633146109c15760405162461bcd60e51b81526004016107da906121f2565b600d805460ff19811660ff90911615179055565b61091083838360405180602001604052806000815250611102565b6006546001600160a01b03163314610a1a5760405162461bcd60e51b81526004016107da906121f2565b8051610a2d90600a906020840190611cfd565b5050565b6000818152600260205260408120546001600160a01b0316806106cd5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b60648201526084016107da565b6006546001600160a01b03163314610ad25760405162461bcd60e51b81526004016107da906121f2565b61012d8260ff16600b54610ae69190612189565b1115610b345760405162461bcd60e51b815260206004820152601d60248201527f416c6c20746f6164732068617665206265656e2072657365727665642e00000060448201526064016107da565b60005b8260ff16811015610b6b57610b598282600b54610b549190612189565b6117e3565b80610b6381612227565b915050610b37565b508160ff16600b6000828254610b819190612189565b90915550505050565b6006546001600160a01b03163314610bb45760405162461bcd60e51b81526004016107da906121f2565b600980546001600160a01b0390921661010002610100600160a81b0319909216919091179055565b600a8054610be990612121565b80601f0160208091040260200160405190810160405280929190818152602001828054610c1590612121565b8015610c625780601f10610c3757610100808354040283529160200191610c62565b820191906000526020600020905b815481529060010190602001808311610c4557829003601f168201915b505050505081565b60006001600160a01b038216610cd55760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b60648201526084016107da565b506001600160a01b031660009081526003602052604090205490565b6006546001600160a01b03163314610d1b5760405162461bcd60e51b81526004016107da906121f2565b610d2560006117fd565b565b6006546001600160a01b03163314610d515760405162461bcd60e51b81526004016107da906121f2565b60405133904780156108fc02916000818181858888f19350505050610d2557600080fd5b6060600180546106e290612121565b600080600080610d938561184f565b6009549397509195509350915060ff16610de85760405162461bcd60e51b8152602060048201526016602482015275283932b9b0b6329034b9903737ba1030b1ba34bb329760511b60448201526064016107da565b600086118015610df9575060328611155b610e795760405162461bcd60e51b8152602060048201526044602482018190527f596f75206d6179207072656d696e742061206d696e696d756d206f6620312061908201527f6e642061206d6178696d756d206f662031303020546f6164732061742061207460648201526334b6b29760e11b608482015260a4016107da565b612710600187600c54610e8c9190612189565b610e969190612172565b1115610eb45760405162461bcd60e51b81526004016107da90612242565b610ec5668e1bc9bf04000087612286565b341015610f0e5760405162461bcd60e51b815260206004820152601760248201527624b739bab33334b1b4b2b73a1022aa2410333ab732399760491b60448201526064016107da565b60095461010090046001600160a01b0316610f2b85858585611889565b6001600160a01b031614610f785760405162461bcd60e51b815260206004820152601460248201527324b73b30b634b2103430b9b41039b4b3b732b91760611b60448201526064016107da565b60008181526007602052604090205460ff1615610fd75760405162461bcd60e51b815260206004820181905260248201527f5369676e61747572652068617320616c7265616479206265656e20757365642e60448201526064016107da565b6000818152600760205260408120805460ff191660011790555b8681101561101d5761100b3382600c54610b549190612189565b8061101581612227565b915050610ff1565b5085600c60008282546110309190612189565b9091555050505050505050565b6001600160a01b0382163314156110965760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c65720000000000000060448201526064016107da565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b61110c338361154c565b6111285760405162461bcd60e51b81526004016107da906121a1565b6111348484848461193e565b50505050565b600d5460ff166111825760405162461bcd60e51b815260206004820152601360248201527229b0b6329034b9903737ba1030b1ba34bb329760691b60448201526064016107da565b612710600c5411156111c85760405162461bcd60e51b815260206004820152600f60248201526e29b0b632903430b99032b73232b21760891b60448201526064016107da565b6000811180156111d95750600a8111155b61124b5760405162461bcd60e51b815260206004820152603f60248201527f596f75206d6179206275792061206d696e696d756d206f66203120616e64206160448201527f206d6178696d756d206f6620313020546f61647320617420612074696d652e0060648201526084016107da565b612710600182600c5461125e9190612189565b6112689190612172565b11156112865760405162461bcd60e51b81526004016107da90612242565b611297668e1bc9bf04000082612286565b3410156112e05760405162461bcd60e51b815260206004820152601760248201527624b739bab33334b1b4b2b73a1022aa2410333ab732399760491b60448201526064016107da565b60005b8181101561130f576112fd3382600c54610b549190612189565b8061130781612227565b9150506112e3565b5080600c60008282546113229190612189565b909155505050565b6000818152600260205260409020546060906001600160a01b03166113a95760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084016107da565b60006113b3611971565b905060008151116113d357604051806020016040528060008152506113fe565b806113dd84611980565b6040516020016113ee9291906122a5565b6040516020818303038152906040525b9392505050565b6006546001600160a01b0316331461142f5760405162461bcd60e51b81526004016107da906121f2565b6001600160a01b0381166114945760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016107da565b61149d816117fd565b50565b6006546001600160a01b031633146114ca5760405162461bcd60e51b81526004016107da906121f2565b6009805460ff19811660ff90911615179055565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061151382610a31565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b03166115c55760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016107da565b60006115d083610a31565b9050806001600160a01b0316846001600160a01b0316148061160b5750836001600160a01b031661160084610765565b6001600160a01b0316145b8061163b57506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b031661165682610a31565b6001600160a01b0316146116be5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b60648201526084016107da565b6001600160a01b0382166117205760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b60648201526084016107da565b61172b6000826114de565b6001600160a01b0383166000908152600360205260408120805460019290611754908490612172565b90915550506001600160a01b0382166000908152600360205260408120805460019290611782908490612189565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b610a2d828260405180602001604052806000815250611a7e565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600080600080845160611461186357600080fd5b6020850151925060408501519150606085015160001a9350606185015190509193509193565b6040517f19457468657265756d205369676e6564204d6573736167653a0a3332000000006020820152603c81018290526000908190605c0160408051601f1981840301815282825280516020918201206000845290830180835281905260ff8916918301919091526060820187905260808201869052915060019060a0016020604051602081039080840390855afa158015611929573d6000803e3d6000fd5b5050604051601f190151979650505050505050565b611949848484611643565b61195584848484611ab1565b6111345760405162461bcd60e51b81526004016107da906122d4565b6060600a80546106e290612121565b6060816119a45750506040805180820190915260018152600360fc1b602082015290565b8160005b81156119ce57806119b881612227565b91506119c79050600a8361233c565b91506119a8565b60008167ffffffffffffffff8111156119e9576119e9611ecf565b6040519080825280601f01601f191660200182016040528015611a13576020820181803683370190505b5090505b841561163b57611a28600183612172565b9150611a35600a86612350565b611a40906030612189565b60f81b818381518110611a5557611a55612364565b60200101906001600160f81b031916908160001a905350611a77600a8661233c565b9450611a17565b611a888383611bbb565b611a956000848484611ab1565b6109105760405162461bcd60e51b81526004016107da906122d4565b60006001600160a01b0384163b15611bb357604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611af590339089908890889060040161237a565b602060405180830381600087803b158015611b0f57600080fd5b505af1925050508015611b3f575060408051601f3d908101601f19168201909252611b3c918101906123b7565b60015b611b99573d808015611b6d576040519150601f19603f3d011682016040523d82523d6000602084013e611b72565b606091505b508051611b915760405162461bcd60e51b81526004016107da906122d4565b805181602001fd5b6001600160e01b031916630a85bd0160e11b14905061163b565b50600161163b565b6001600160a01b038216611c115760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016107da565b6000818152600260205260409020546001600160a01b031615611c765760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016107da565b6001600160a01b0382166000908152600360205260408120805460019290611c9f908490612189565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b828054611d0990612121565b90600052602060002090601f016020900481019282611d2b5760008555611d71565b82601f10611d4457805160ff1916838001178555611d71565b82800160010185558215611d71579182015b82811115611d71578251825591602001919060010190611d56565b50611d7d929150611d81565b5090565b5b80821115611d7d5760008155600101611d82565b6001600160e01b03198116811461149d57600080fd5b600060208284031215611dbe57600080fd5b81356113fe81611d96565b60005b83811015611de4578181015183820152602001611dcc565b838111156111345750506000910152565b60008151808452611e0d816020860160208601611dc9565b601f01601f19169290920160200192915050565b6020815260006113fe6020830184611df5565b600060208284031215611e4657600080fd5b5035919050565b80356001600160a01b0381168114611e6457600080fd5b919050565b60008060408385031215611e7c57600080fd5b611e8583611e4d565b946020939093013593505050565b600080600060608486031215611ea857600080fd5b611eb184611e4d565b9250611ebf60208501611e4d565b9150604084013590509250925092565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff80841115611f0057611f00611ecf565b604051601f8501601f19908116603f01168101908282118183101715611f2857611f28611ecf565b81604052809350858152868686011115611f4157600080fd5b858560208301376000602087830101525050509392505050565b600060208284031215611f6d57600080fd5b813567ffffffffffffffff811115611f8457600080fd5b8201601f81018413611f9557600080fd5b61163b84823560208401611ee5565b60008060408385031215611fb757600080fd5b823560ff81168114611fc857600080fd5b9150611fd660208401611e4d565b90509250929050565b600060208284031215611ff157600080fd5b6113fe82611e4d565b600082601f83011261200b57600080fd5b6113fe83833560208501611ee5565b6000806040838503121561202d57600080fd5b82359150602083013567ffffffffffffffff81111561204b57600080fd5b61205785828601611ffa565b9150509250929050565b6000806040838503121561207457600080fd5b61207d83611e4d565b91506020830135801515811461209257600080fd5b809150509250929050565b600080600080608085870312156120b357600080fd5b6120bc85611e4d565b93506120ca60208601611e4d565b925060408501359150606085013567ffffffffffffffff8111156120ed57600080fd5b6120f987828801611ffa565b91505092959194509250565b6000806040838503121561211857600080fd5b611fc883611e4d565b600181811c9082168061213557607f821691505b6020821081141561215657634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b6000828210156121845761218461215c565b500390565b6000821982111561219c5761219c61215c565b500190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600060001982141561223b5761223b61215c565b5060010190565b60208082526024908201527f50757263686173652065786365656473206d617820737570706c79206f6620546040820152636f61647360e01b606082015260800190565b60008160001904831182151516156122a0576122a061215c565b500290565b600083516122b7818460208801611dc9565b8351908301906122cb818360208801611dc9565b01949350505050565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b634e487b7160e01b600052601260045260246000fd5b60008261234b5761234b612326565b500490565b60008261235f5761235f612326565b500690565b634e487b7160e01b600052603260045260246000fd5b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906123ad90830184611df5565b9695505050505050565b6000602082840312156123c957600080fd5b81516113fe81611d9656fea2646970667358221220ca906a2a3341bab463472e3b26eb0596c568f8c3662eeb69f3921c1f66b2ff5264736f6c63430008090033

Deployed Bytecode Sourcemap

35298:4790:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20754:305;;;;;;;;;;-1:-1:-1;20754:305:0;;;;;:::i;:::-;;:::i;:::-;;;565:14:1;;558:22;540:41;;528:2;513:18;20754:305:0;;;;;;;;21699:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;23258:221::-;;;;;;;;;;-1:-1:-1;23258:221:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;1692:32:1;;;1674:51;;1662:2;1647:18;23258:221:0;1528:203:1;22781:411:0;;;;;;;;;;-1:-1:-1;22781:411:0;;;;;:::i;:::-;;:::i;:::-;;39451:183;;;;;;;;;;;;;:::i;:::-;;;2319:25:1;;;2307:2;2292:18;39451:183:0;2173:177:1;35961:34:0;;;;;;;;;;-1:-1:-1;35961:34:0;;;;;;;;24148:339;;;;;;;;;;-1:-1:-1;24148:339:0;;;;;:::i;:::-;;:::i;35416:25::-;;;;;;;;;;-1:-1:-1;35416:25:0;;;;;:::i;:::-;;:::i;39348:95::-;;;;;;;;;;;;;:::i;24558:185::-;;;;;;;;;;-1:-1:-1;24558:185:0;;;;;:::i;:::-;;:::i;39122:102::-;;;;;;;;;;-1:-1:-1;39122:102:0;;;;;:::i;:::-;;:::i;21393:239::-;;;;;;;;;;-1:-1:-1;21393:239:0;;;;;:::i;:::-;;:::i;39773:312::-;;;;;;;;;;-1:-1:-1;39773:312:0;;;;;:::i;:::-;;:::i;37054:112::-;;;;;;;;;;-1:-1:-1;37054:112:0;;;;;:::i;:::-;;:::i;35836:26::-;;;;;;;;;;;;;:::i;21123:208::-;;;;;;;;;;-1:-1:-1;21123:208:0;;;;;:::i;:::-;;:::i;34526:94::-;;;;;;;;;;;;;:::i;35625:43::-;;;;;;;;;;;;35663:5;35625:43;;39642:123;;;:::i;35785:42::-;;;;;;;;;;;;35817:10;35785:42;;33875:87;;;;;;;;;;-1:-1:-1;33948:6:0;;-1:-1:-1;;;;;33948:6:0;33875:87;;21868:104;;;;;;;;;;;;;:::i;37286:1063::-;;;;;;:::i;:::-;;:::i;23551:295::-;;;;;;;;;;-1:-1:-1;23551:295:0;;;;;:::i;:::-;;:::i;35370:39::-;;;;;;;;;;-1:-1:-1;35370:39:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;35448:37;;;;;;;;;;-1:-1:-1;35448:37:0;;;;;;;;35675:46;;;;;;;;;;;;35719:2;35675:46;;24814:328;;;;;;;;;;-1:-1:-1;24814:328:0;;;;;:::i;:::-;;:::i;38374:740::-;;;;;;:::i;:::-;;:::i;22043:334::-;;;;;;;;;;-1:-1:-1;22043:334:0;;;;;:::i;:::-;;:::i;35908:46::-;;;;;;;;;;;;;;;;35544:72;;;;;;;;;;-1:-1:-1;35544:72:0;;;;;;;-1:-1:-1;;;;;35544:72:0;;;35728:50;;;;;;;;;;;;35775:3;35728:50;;23917:164;;;;;;;;;;-1:-1:-1;23917:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;24038:25:0;;;24014:4;24038:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;23917:164;35492:45;;;;;;;;;;;;35535:2;35492:45;;34775:192;;;;;;;;;;-1:-1:-1;34775:192:0;;;;;:::i;:::-;;:::i;37174:104::-;;;;;;;;;;;;;:::i;20754:305::-;20856:4;-1:-1:-1;;;;;;20893:40:0;;-1:-1:-1;;;20893:40:0;;:105;;-1:-1:-1;;;;;;;20950:48:0;;-1:-1:-1;;;20950:48:0;20893:105;:158;;;-1:-1:-1;;;;;;;;;;12994:40:0;;;21015:36;20873:178;20754:305;-1:-1:-1;;20754:305:0:o;21699:100::-;21753:13;21786:5;21779:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21699:100;:::o;23258:221::-;23334:7;26741:16;;;:7;:16;;;;;;-1:-1:-1;;;;;26741:16:0;23354:73;;;;-1:-1:-1;;;23354:73:0;;7184:2:1;23354:73:0;;;7166:21:1;7223:2;7203:18;;;7196:30;7262:34;7242:18;;;7235:62;-1:-1:-1;;;7313:18:1;;;7306:42;7365:19;;23354:73:0;;;;;;;;;-1:-1:-1;23447:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;23447:24:0;;23258:221::o;22781:411::-;22862:13;22878:23;22893:7;22878:14;:23::i;:::-;22862:39;;22926:5;-1:-1:-1;;;;;22920:11:0;:2;-1:-1:-1;;;;;22920:11:0;;;22912:57;;;;-1:-1:-1;;;22912:57:0;;7597:2:1;22912:57:0;;;7579:21:1;7636:2;7616:18;;;7609:30;7675:34;7655:18;;;7648:62;-1:-1:-1;;;7726:18:1;;;7719:31;7767:19;;22912:57:0;7395:397:1;22912:57:0;19288:10;-1:-1:-1;;;;;23004:21:0;;;;:62;;-1:-1:-1;23029:37:0;23046:5;19288:10;23917:164;:::i;23029:37::-;22982:168;;;;-1:-1:-1;;;22982:168:0;;7999:2:1;22982:168:0;;;7981:21:1;8038:2;8018:18;;;8011:30;8077:34;8057:18;;;8050:62;8148:26;8128:18;;;8121:54;8192:19;;22982:168:0;7797:420:1;22982:168:0;23163:21;23172:2;23176:7;23163:8;:21::i;:::-;22851:341;22781:411;;:::o;39451:183::-;39495:7;39625:1;39610:12;;35775:3;39576:8;;:31;;;;:::i;:::-;:46;;;;:::i;:::-;:50;;;;:::i;:::-;39569:57;;39451:183;:::o;24148:339::-;24343:41;19288:10;24376:7;24343:18;:41::i;:::-;24335:103;;;;-1:-1:-1;;;24335:103:0;;;;;;;:::i;:::-;24451:28;24461:4;24467:2;24471:7;24451:9;:28::i;35416:25::-;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;35416:25:0;:::o;39348:95::-;33948:6;;-1:-1:-1;;;;;33948:6:0;19288:10;34095:23;34087:68;;;;-1:-1:-1;;;34087:68:0;;;;;;;:::i;:::-;39421:14:::1;::::0;;-1:-1:-1;;39403:32:0;::::1;39421:14;::::0;;::::1;39420:15;39403:32;::::0;;39348:95::o;24558:185::-;24696:39;24713:4;24719:2;24723:7;24696:39;;;;;;;;;;;;:16;:39::i;39122:102::-;33948:6;;-1:-1:-1;;;;;33948:6:0;19288:10;34095:23;34087:68;;;;-1:-1:-1;;;34087:68:0;;;;;;;:::i;:::-;39196:20;;::::1;::::0;:7:::1;::::0;:20:::1;::::0;::::1;::::0;::::1;:::i;:::-;;39122:102:::0;:::o;21393:239::-;21465:7;21501:16;;;:7;:16;;;;;;-1:-1:-1;;;;;21501:16:0;21536:19;21528:73;;;;-1:-1:-1;;;21528:73:0;;9598:2:1;21528:73:0;;;9580:21:1;9637:2;9617:18;;;9610:30;9676:34;9656:18;;;9649:62;-1:-1:-1;;;9727:18:1;;;9720:39;9776:19;;21528:73:0;9396:405:1;39773:312:0;33948:6;;-1:-1:-1;;;;;33948:6:0;19288:10;34095:23;34087:68;;;;-1:-1:-1;;;34087:68:0;;;;;;;:::i;:::-;35775:3:::1;39874:6;39859:21;;:12;;:21;;;;:::i;:::-;:45;;39851:87;;;::::0;-1:-1:-1;;;39851:87:0;;10008:2:1;39851:87:0::1;::::0;::::1;9990:21:1::0;10047:2;10027:18;;;10020:30;10086:31;10066:18;;;10059:59;10135:18;;39851:87:0::1;9806:353:1::0;39851:87:0::1;39954:6;39949:94;39970:6;39966:10;;:1;:10;39949:94;;;39998:33;40008:4;40029:1;40014:12;;:16;;;;:::i;:::-;39998:9;:33::i;:::-;39978:3:::0;::::1;::::0;::::1;:::i;:::-;;;;39949:94;;;;40071:6;40055:22;;:12;;:22;;;;;;;:::i;:::-;::::0;;;-1:-1:-1;;;;39773:312:0:o;37054:112::-;33948:6;;-1:-1:-1;;;;;33948:6:0;19288:10;34095:23;34087:68;;;;-1:-1:-1;;;34087:68:0;;;;;;;:::i;:::-;37130:12:::1;:28:::0;;-1:-1:-1;;;;;37130:28:0;;::::1;;;-1:-1:-1::0;;;;;;37130:28:0;;::::1;::::0;;;::::1;::::0;;37054:112::o;35836:26::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;21123:208::-;21195:7;-1:-1:-1;;;;;21223:19:0;;21215:74;;;;-1:-1:-1;;;21215:74:0;;10506:2:1;21215:74:0;;;10488:21:1;10545:2;10525:18;;;10518:30;10584:34;10564:18;;;10557:62;-1:-1:-1;;;10635:18:1;;;10628:40;10685:19;;21215:74:0;10304:406:1;21215:74:0;-1:-1:-1;;;;;;21307:16:0;;;;;:9;:16;;;;;;;21123:208::o;34526:94::-;33948:6;;-1:-1:-1;;;;;33948:6:0;19288:10;34095:23;34087:68;;;;-1:-1:-1;;;34087:68:0;;;;;;;:::i;:::-;34591:21:::1;34609:1;34591:9;:21::i;:::-;34526:94::o:0;39642:123::-;33948:6;;-1:-1:-1;;;;;33948:6:0;19288:10;34095:23;34087:68;;;;-1:-1:-1;;;34087:68:0;;;;;;;:::i;:::-;39709:47:::1;::::0;39717:10:::1;::::0;39734:21:::1;39709:47:::0;::::1;;;::::0;::::1;::::0;;;39734:21;39717:10;39709:47;::::1;;;;;;39701:56;;;::::0;::::1;21868:104:::0;21924:13;21957:7;21950:14;;;;;:::i;37286:1063::-;37376:7;37385:9;37396;37407:13;37424:25;37439:9;37424:14;:25::i;:::-;37470:17;;37375:74;;-1:-1:-1;37375:74:0;;-1:-1:-1;37375:74:0;-1:-1:-1;37375:74:0;-1:-1:-1;37470:17:0;;37462:52;;;;-1:-1:-1;;;37462:52:0;;10917:2:1;37462:52:0;;;10899:21:1;10956:2;10936:18;;;10929:30;-1:-1:-1;;;10975:18:1;;;10968:52;11037:18;;37462:52:0;10715:346:1;37462:52:0;37558:1;37547:8;:12;:44;;;;;35535:2;37563:8;:28;;37547:44;37525:162;;;;-1:-1:-1;;;37525:162:0;;11268:2:1;37525:162:0;;;11250:21:1;11307:2;11287:18;;;11280:30;;;11346:34;11326:18;;;11319:62;11417:34;11397:18;;;11390:62;-1:-1:-1;;;11468:19:1;;;11461:35;11513:19;;37525:162:0;11066:472:1;37525:162:0;35663:5;37742:1;37731:8;37720;;:19;;;;:::i;:::-;:23;;;;:::i;:::-;:38;;37698:124;;;;-1:-1:-1;;;37698:124:0;;;;;;;:::i;:::-;37868:16;35817:10;37868:8;:16;:::i;:::-;37855:9;:29;;37833:102;;;;-1:-1:-1;;;37833:102:0;;12323:2:1;37833:102:0;;;12305:21:1;12362:2;12342:18;;;12335:30;-1:-1:-1;;;12381:18:1;;;12374:53;12444:18;;37833:102:0;12121:347:1;37833:102:0;37998:12;;;;;-1:-1:-1;;;;;37998:12:0;37968:26;37979:1;37982;37985;37988:5;37968:10;:26::i;:::-;-1:-1:-1;;;;;37968:42:0;;37946:113;;;;-1:-1:-1;;;37946:113:0;;12675:2:1;37946:113:0;;;12657:21:1;12714:2;12694:18;;;12687:30;-1:-1:-1;;;12733:18:1;;;12726:50;12793:18;;37946:113:0;12473:344:1;37946:113:0;38116:13;;;;:6;:13;;;;;;;;38115:14;38107:59;;;;-1:-1:-1;;;38107:59:0;;13024:2:1;38107:59:0;;;13006:21:1;;;13043:18;;;13036:30;13102:34;13082:18;;;13075:62;13154:18;;38107:59:0;12822:356:1;38107:59:0;38177:13;;;;:6;:13;;;;;:20;;-1:-1:-1;;38177:20:0;38193:4;38177:20;;;38210:99;38234:8;38230:1;:12;38210:99;;;38264:33;38274:10;38295:1;38286:8;;:10;;;;:::i;38264:33::-;38244:3;;;;:::i;:::-;;;;38210:99;;;;38333:8;38321;;:20;;;;;;;:::i;:::-;;;;-1:-1:-1;;;;;;;;37286:1063:0:o;23551:295::-;-1:-1:-1;;;;;23654:24:0;;19288:10;23654:24;;23646:62;;;;-1:-1:-1;;;23646:62:0;;13385:2:1;23646:62:0;;;13367:21:1;13424:2;13404:18;;;13397:30;13463:27;13443:18;;;13436:55;13508:18;;23646:62:0;13183:349:1;23646:62:0;19288:10;23721:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;23721:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;23721:53:0;;;;;;;;;;23790:48;;540:41:1;;;23721:42:0;;19288:10;23790:48;;513:18:1;23790:48:0;;;;;;;23551:295;;:::o;24814:328::-;24989:41;19288:10;25022:7;24989:18;:41::i;:::-;24981:103;;;;-1:-1:-1;;;24981:103:0;;;;;;;:::i;:::-;25095:39;25109:4;25115:2;25119:7;25128:5;25095:13;:39::i;:::-;24814:328;;;;:::o;38374:740::-;38444:14;;;;38436:46;;;;-1:-1:-1;;;38436:46:0;;13739:2:1;38436:46:0;;;13721:21:1;13778:2;13758:18;;;13751:30;-1:-1:-1;;;13797:18:1;;;13790:49;13856:18;;38436:46:0;13537:343:1;38436:46:0;35663:5;38501:8;;:23;;38493:51;;;;-1:-1:-1;;;38493:51:0;;14087:2:1;38493:51:0;;;14069:21:1;14126:2;14106:18;;;14099:30;-1:-1:-1;;;14145:18:1;;;14138:45;14200:18;;38493:51:0;13885:339:1;38493:51:0;38588:1;38577:8;:12;:45;;;;;35719:2;38593:8;:29;;38577:45;38555:158;;;;-1:-1:-1;;;38555:158:0;;14431:2:1;38555:158:0;;;14413:21:1;14470:2;14450:18;;;14443:30;14509:34;14489:18;;;14482:62;14580:33;14560:18;;;14553:61;14631:19;;38555:158:0;14229:427:1;38555:158:0;35663:5;38768:1;38757:8;38746;;:19;;;;:::i;:::-;:23;;;;:::i;:::-;:38;;38724:124;;;;-1:-1:-1;;;38724:124:0;;;;;;;:::i;:::-;38894:16;35817:10;38894:8;:16;:::i;:::-;38881:9;:29;;38859:103;;;;-1:-1:-1;;;38859:103:0;;12323:2:1;38859:103:0;;;12305:21:1;12362:2;12342:18;;;12335:30;-1:-1:-1;;;12381:18:1;;;12374:53;12444:18;;38859:103:0;12121:347:1;38859:103:0;38978:9;38973:101;38997:8;38993:1;:12;38973:101;;;39027:35;39037:10;39060:1;39049:8;;:12;;;;:::i;39027:35::-;39007:3;;;;:::i;:::-;;;;38973:101;;;;39098:8;39086;;:20;;;;;;;:::i;:::-;;;;-1:-1:-1;;;38374:740:0:o;22043:334::-;26717:4;26741:16;;;:7;:16;;;;;;22116:13;;-1:-1:-1;;;;;26741:16:0;22142:76;;;;-1:-1:-1;;;22142:76:0;;14863:2:1;22142:76:0;;;14845:21:1;14902:2;14882:18;;;14875:30;14941:34;14921:18;;;14914:62;-1:-1:-1;;;14992:18:1;;;14985:45;15047:19;;22142:76:0;14661:411:1;22142:76:0;22231:21;22255:10;:8;:10::i;:::-;22231:34;;22307:1;22289:7;22283:21;:25;:86;;;;;;;;;;;;;;;;;22335:7;22344:18;:7;:16;:18::i;:::-;22318:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;22283:86;22276:93;22043:334;-1:-1:-1;;;22043:334:0:o;34775:192::-;33948:6;;-1:-1:-1;;;;;33948:6:0;19288:10;34095:23;34087:68;;;;-1:-1:-1;;;34087:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;34864:22:0;::::1;34856:73;;;::::0;-1:-1:-1;;;34856:73:0;;15754:2:1;34856:73:0::1;::::0;::::1;15736:21:1::0;15793:2;15773:18;;;15766:30;15832:34;15812:18;;;15805:62;-1:-1:-1;;;15883:18:1;;;15876:36;15929:19;;34856:73:0::1;15552:402:1::0;34856:73:0::1;34940:19;34950:8;34940:9;:19::i;:::-;34775:192:::0;:::o;37174:104::-;33948:6;;-1:-1:-1;;;;;33948:6:0;19288:10;34095:23;34087:68;;;;-1:-1:-1;;;34087:68:0;;;;;;;:::i;:::-;37253:17:::1;::::0;;-1:-1:-1;;37232:38:0;::::1;37253:17;::::0;;::::1;37252:18;37232:38;::::0;;37174:104::o;30634:174::-;30709:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;30709:29:0;-1:-1:-1;;;;;30709:29:0;;;;;;;;:24;;30763:23;30709:24;30763:14;:23::i;:::-;-1:-1:-1;;;;;30754:46:0;;;;;;;;;;;30634:174;;:::o;26946:348::-;27039:4;26741:16;;;:7;:16;;;;;;-1:-1:-1;;;;;26741:16:0;27056:73;;;;-1:-1:-1;;;27056:73:0;;16161:2:1;27056:73:0;;;16143:21:1;16200:2;16180:18;;;16173:30;16239:34;16219:18;;;16212:62;-1:-1:-1;;;16290:18:1;;;16283:42;16342:19;;27056:73:0;15959:408:1;27056:73:0;27140:13;27156:23;27171:7;27156:14;:23::i;:::-;27140:39;;27209:5;-1:-1:-1;;;;;27198:16:0;:7;-1:-1:-1;;;;;27198:16:0;;:51;;;;27242:7;-1:-1:-1;;;;;27218:31:0;:20;27230:7;27218:11;:20::i;:::-;-1:-1:-1;;;;;27218:31:0;;27198:51;:87;;;-1:-1:-1;;;;;;24038:25:0;;;24014:4;24038:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;27253:32;27190:96;26946:348;-1:-1:-1;;;;26946:348:0:o;29938:578::-;30097:4;-1:-1:-1;;;;;30070:31:0;:23;30085:7;30070:14;:23::i;:::-;-1:-1:-1;;;;;30070:31:0;;30062:85;;;;-1:-1:-1;;;30062:85:0;;16574:2:1;30062:85:0;;;16556:21:1;16613:2;16593:18;;;16586:30;16652:34;16632:18;;;16625:62;-1:-1:-1;;;16703:18:1;;;16696:39;16752:19;;30062:85:0;16372:405:1;30062:85:0;-1:-1:-1;;;;;30166:16:0;;30158:65;;;;-1:-1:-1;;;30158:65:0;;16984:2:1;30158:65:0;;;16966:21:1;17023:2;17003:18;;;16996:30;17062:34;17042:18;;;17035:62;-1:-1:-1;;;17113:18:1;;;17106:34;17157:19;;30158:65:0;16782:400:1;30158:65:0;30340:29;30357:1;30361:7;30340:8;:29::i;:::-;-1:-1:-1;;;;;30382:15:0;;;;;;:9;:15;;;;;:20;;30401:1;;30382:15;:20;;30401:1;;30382:20;:::i;:::-;;;;-1:-1:-1;;;;;;;30413:13:0;;;;;;:9;:13;;;;;:18;;30430:1;;30413:13;:18;;30430:1;;30413:18;:::i;:::-;;;;-1:-1:-1;;30442:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;30442:21:0;-1:-1:-1;;;;;30442:21:0;;;;;;;;;30481:27;;30442:16;;30481:27;;;;;;;29938:578;;;:::o;27636:110::-;27712:26;27722:2;27726:7;27712:26;;;;;;;;;;;;:9;:26::i;34975:173::-;35050:6;;;-1:-1:-1;;;;;35067:17:0;;;-1:-1:-1;;;;;;35067:17:0;;;;;;;35100:40;;35050:6;;;35067:17;35050:6;;35100:40;;35031:16;;35100:40;35020:128;34975:173;:::o;36118:558::-;36188:7;36197:9;36208;36219:13;36253:3;:10;36267:2;36253:16;36245:25;;;;;;36383:2;36378:3;36374:12;36368:19;36363:24;;36453:2;36448:3;36444:12;36438:19;36433:24;;36547:2;36542:3;36538:12;36532:19;36529:1;36524:28;36519:33;;36618:2;36613:3;36609:12;36603:19;36594:28;;36118:558;;;;;:::o;36707:279::-;36865:59;;17429:66:1;36865:59:0;;;17417:79:1;17512:12;;;17505:28;;;36802:14:0;;;;17549:12:1;;36865:59:0;;;-1:-1:-1;;36865:59:0;;;;;;;;;36855:70;;36865:59;36855:70;;;;36945:33;;;;;;;;;17799:25:1;;;17872:4;17860:17;;17840:18;;;17833:45;;;;17894:18;;;17887:34;;;17937:18;;;17930:34;;;36855:70:0;-1:-1:-1;36945:33:0;;17771:19:1;;36945:33:0;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;36945:33:0;;-1:-1:-1;;36945:33:0;;;36707:279;-1:-1:-1;;;;;;;36707:279:0:o;26024:315::-;26181:28;26191:4;26197:2;26201:7;26181:9;:28::i;:::-;26228:48;26251:4;26257:2;26261:7;26270:5;26228:22;:48::i;:::-;26220:111;;;;-1:-1:-1;;;26220:111:0;;;;;;;:::i;39232:108::-;39292:13;39325:7;39318:14;;;;;:::i;420:723::-;476:13;697:10;693:53;;-1:-1:-1;;724:10:0;;;;;;;;;;;;-1:-1:-1;;;724:10:0;;;;;420:723::o;693:53::-;771:5;756:12;812:78;819:9;;812:78;;845:8;;;;:::i;:::-;;-1:-1:-1;868:10:0;;-1:-1:-1;876:2:0;868:10;;:::i;:::-;;;812:78;;;900:19;932:6;922:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;922:17:0;;900:39;;950:154;957:10;;950:154;;984:11;994:1;984:11;;:::i;:::-;;-1:-1:-1;1053:10:0;1061:2;1053:5;:10;:::i;:::-;1040:24;;:2;:24;:::i;:::-;1027:39;;1010:6;1017;1010:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;1010:56:0;;;;;;;;-1:-1:-1;1081:11:0;1090:2;1081:11;;:::i;:::-;;;950:154;;27973:321;28103:18;28109:2;28113:7;28103:5;:18::i;:::-;28154:54;28185:1;28189:2;28193:7;28202:5;28154:22;:54::i;:::-;28132:154;;;;-1:-1:-1;;;28132:154:0;;;;;;;:::i;31373:799::-;31528:4;-1:-1:-1;;;;;31549:13:0;;3268:20;3316:8;31545:620;;31585:72;;-1:-1:-1;;;31585:72:0;;-1:-1:-1;;;;;31585:36:0;;;;;:72;;19288:10;;31636:4;;31642:7;;31651:5;;31585:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;31585:72:0;;;;;;;;-1:-1:-1;;31585:72:0;;;;;;;;;;;;:::i;:::-;;;31581:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;31827:13:0;;31823:272;;31870:60;;-1:-1:-1;;;31870:60:0;;;;;;;:::i;31823:272::-;32045:6;32039:13;32030:6;32026:2;32022:15;32015:38;31581:529;-1:-1:-1;;;;;;31708:51:0;-1:-1:-1;;;31708:51:0;;-1:-1:-1;31701:58:0;;31545:620;-1:-1:-1;32149:4:0;32142:11;;28630:382;-1:-1:-1;;;;;28710:16:0;;28702:61;;;;-1:-1:-1;;;28702:61:0;;19850:2:1;28702:61:0;;;19832:21:1;;;19869:18;;;19862:30;19928:34;19908:18;;;19901:62;19980:18;;28702:61:0;19648:356:1;28702:61:0;26717:4;26741:16;;;:7;:16;;;;;;-1:-1:-1;;;;;26741:16:0;:30;28774:58;;;;-1:-1:-1;;;28774:58:0;;20211:2:1;28774:58:0;;;20193:21:1;20250:2;20230:18;;;20223:30;20289;20269:18;;;20262:58;20337:18;;28774:58:0;20009:352:1;28774:58:0;-1:-1:-1;;;;;28903:13:0;;;;;;:9;:13;;;;;:18;;28920:1;;28903:13;:18;;28920:1;;28903:18;:::i;:::-;;;;-1:-1:-1;;28932:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;28932:21:0;-1:-1:-1;;;;;28932:21:0;;;;;;;;28971:33;;28932:16;;;28971:33;;28932:16;;28971:33;28630:382;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:131:1;-1:-1:-1;;;;;;88:32:1;;78:43;;68:71;;135:1;132;125:12;150:245;208:6;261:2;249:9;240:7;236:23;232:32;229:52;;;277:1;274;267:12;229:52;316:9;303:23;335:30;359:5;335:30;:::i;592:258::-;664:1;674:113;688:6;685:1;682:13;674:113;;;764:11;;;758:18;745:11;;;738:39;710:2;703:10;674:113;;;805:6;802:1;799:13;796:48;;;-1:-1:-1;;840:1:1;822:16;;815:27;592:258::o;855:::-;897:3;935:5;929:12;962:6;957:3;950:19;978:63;1034:6;1027:4;1022:3;1018:14;1011:4;1004:5;1000:16;978:63;:::i;:::-;1095:2;1074:15;-1:-1:-1;;1070:29:1;1061:39;;;;1102:4;1057:50;;855:258;-1:-1:-1;;855:258:1:o;1118:220::-;1267:2;1256:9;1249:21;1230:4;1287:45;1328:2;1317:9;1313:18;1305:6;1287:45;:::i;1343:180::-;1402:6;1455:2;1443:9;1434:7;1430:23;1426:32;1423:52;;;1471:1;1468;1461:12;1423:52;-1:-1:-1;1494:23:1;;1343:180;-1:-1:-1;1343:180:1:o;1736:173::-;1804:20;;-1:-1:-1;;;;;1853:31:1;;1843:42;;1833:70;;1899:1;1896;1889:12;1833:70;1736:173;;;:::o;1914:254::-;1982:6;1990;2043:2;2031:9;2022:7;2018:23;2014:32;2011:52;;;2059:1;2056;2049:12;2011:52;2082:29;2101:9;2082:29;:::i;:::-;2072:39;2158:2;2143:18;;;;2130:32;;-1:-1:-1;;;1914:254:1:o;2355:328::-;2432:6;2440;2448;2501:2;2489:9;2480:7;2476:23;2472:32;2469:52;;;2517:1;2514;2507:12;2469:52;2540:29;2559:9;2540:29;:::i;:::-;2530:39;;2588:38;2622:2;2611:9;2607:18;2588:38;:::i;:::-;2578:48;;2673:2;2662:9;2658:18;2645:32;2635:42;;2355:328;;;;;:::o;2870:127::-;2931:10;2926:3;2922:20;2919:1;2912:31;2962:4;2959:1;2952:15;2986:4;2983:1;2976:15;3002:632;3067:5;3097:18;3138:2;3130:6;3127:14;3124:40;;;3144:18;;:::i;:::-;3219:2;3213:9;3187:2;3273:15;;-1:-1:-1;;3269:24:1;;;3295:2;3265:33;3261:42;3249:55;;;3319:18;;;3339:22;;;3316:46;3313:72;;;3365:18;;:::i;:::-;3405:10;3401:2;3394:22;3434:6;3425:15;;3464:6;3456;3449:22;3504:3;3495:6;3490:3;3486:16;3483:25;3480:45;;;3521:1;3518;3511:12;3480:45;3571:6;3566:3;3559:4;3551:6;3547:17;3534:44;3626:1;3619:4;3610:6;3602;3598:19;3594:30;3587:41;;;;3002:632;;;;;:::o;3639:451::-;3708:6;3761:2;3749:9;3740:7;3736:23;3732:32;3729:52;;;3777:1;3774;3767:12;3729:52;3817:9;3804:23;3850:18;3842:6;3839:30;3836:50;;;3882:1;3879;3872:12;3836:50;3905:22;;3958:4;3950:13;;3946:27;-1:-1:-1;3936:55:1;;3987:1;3984;3977:12;3936:55;4010:74;4076:7;4071:2;4058:16;4053:2;4049;4045:11;4010:74;:::i;4095:343::-;4161:6;4169;4222:2;4210:9;4201:7;4197:23;4193:32;4190:52;;;4238:1;4235;4228:12;4190:52;4277:9;4264:23;4327:4;4320:5;4316:16;4309:5;4306:27;4296:55;;4347:1;4344;4337:12;4296:55;4370:5;-1:-1:-1;4394:38:1;4428:2;4413:18;;4394:38;:::i;:::-;4384:48;;4095:343;;;;;:::o;4443:186::-;4502:6;4555:2;4543:9;4534:7;4530:23;4526:32;4523:52;;;4571:1;4568;4561:12;4523:52;4594:29;4613:9;4594:29;:::i;4634:221::-;4676:5;4729:3;4722:4;4714:6;4710:17;4706:27;4696:55;;4747:1;4744;4737:12;4696:55;4769:80;4845:3;4836:6;4823:20;4816:4;4808:6;4804:17;4769:80;:::i;4860:388::-;4937:6;4945;4998:2;4986:9;4977:7;4973:23;4969:32;4966:52;;;5014:1;5011;5004:12;4966:52;5050:9;5037:23;5027:33;;5111:2;5100:9;5096:18;5083:32;5138:18;5130:6;5127:30;5124:50;;;5170:1;5167;5160:12;5124:50;5193:49;5234:7;5225:6;5214:9;5210:22;5193:49;:::i;:::-;5183:59;;;4860:388;;;;;:::o;5253:347::-;5318:6;5326;5379:2;5367:9;5358:7;5354:23;5350:32;5347:52;;;5395:1;5392;5385:12;5347:52;5418:29;5437:9;5418:29;:::i;:::-;5408:39;;5497:2;5486:9;5482:18;5469:32;5544:5;5537:13;5530:21;5523:5;5520:32;5510:60;;5566:1;5563;5556:12;5510:60;5589:5;5579:15;;;5253:347;;;;;:::o;5790:537::-;5885:6;5893;5901;5909;5962:3;5950:9;5941:7;5937:23;5933:33;5930:53;;;5979:1;5976;5969:12;5930:53;6002:29;6021:9;6002:29;:::i;:::-;5992:39;;6050:38;6084:2;6073:9;6069:18;6050:38;:::i;:::-;6040:48;;6135:2;6124:9;6120:18;6107:32;6097:42;;6190:2;6179:9;6175:18;6162:32;6217:18;6209:6;6206:30;6203:50;;;6249:1;6246;6239:12;6203:50;6272:49;6313:7;6304:6;6293:9;6289:22;6272:49;:::i;:::-;6262:59;;;5790:537;;;;;;;:::o;6332:260::-;6400:6;6408;6461:2;6449:9;6440:7;6436:23;6432:32;6429:52;;;6477:1;6474;6467:12;6429:52;6500:29;6519:9;6500:29;:::i;6597:380::-;6676:1;6672:12;;;;6719;;;6740:61;;6794:4;6786:6;6782:17;6772:27;;6740:61;6847:2;6839:6;6836:14;6816:18;6813:38;6810:161;;;6893:10;6888:3;6884:20;6881:1;6874:31;6928:4;6925:1;6918:15;6956:4;6953:1;6946:15;6810:161;;6597:380;;;:::o;8222:127::-;8283:10;8278:3;8274:20;8271:1;8264:31;8314:4;8311:1;8304:15;8338:4;8335:1;8328:15;8354:125;8394:4;8422:1;8419;8416:8;8413:34;;;8427:18;;:::i;:::-;-1:-1:-1;8464:9:1;;8354:125::o;8484:128::-;8524:3;8555:1;8551:6;8548:1;8545:13;8542:39;;;8561:18;;:::i;:::-;-1:-1:-1;8597:9:1;;8484:128::o;8617:413::-;8819:2;8801:21;;;8858:2;8838:18;;;8831:30;8897:34;8892:2;8877:18;;8870:62;-1:-1:-1;;;8963:2:1;8948:18;;8941:47;9020:3;9005:19;;8617:413::o;9035:356::-;9237:2;9219:21;;;9256:18;;;9249:30;9315:34;9310:2;9295:18;;9288:62;9382:2;9367:18;;9035:356::o;10164:135::-;10203:3;-1:-1:-1;;10224:17:1;;10221:43;;;10244:18;;:::i;:::-;-1:-1:-1;10291:1:1;10280:13;;10164:135::o;11543:400::-;11745:2;11727:21;;;11784:2;11764:18;;;11757:30;11823:34;11818:2;11803:18;;11796:62;-1:-1:-1;;;11889:2:1;11874:18;;11867:34;11933:3;11918:19;;11543:400::o;11948:168::-;11988:7;12054:1;12050;12046:6;12042:14;12039:1;12036:21;12031:1;12024:9;12017:17;12013:45;12010:71;;;12061:18;;:::i;:::-;-1:-1:-1;12101:9:1;;11948:168::o;15077:470::-;15256:3;15294:6;15288:13;15310:53;15356:6;15351:3;15344:4;15336:6;15332:17;15310:53;:::i;:::-;15426:13;;15385:16;;;;15448:57;15426:13;15385:16;15482:4;15470:17;;15448:57;:::i;:::-;15521:20;;15077:470;-1:-1:-1;;;;15077:470:1:o;17975:414::-;18177:2;18159:21;;;18216:2;18196:18;;;18189:30;18255:34;18250:2;18235:18;;18228:62;-1:-1:-1;;;18321:2:1;18306:18;;18299:48;18379:3;18364:19;;17975:414::o;18394:127::-;18455:10;18450:3;18446:20;18443:1;18436:31;18486:4;18483:1;18476:15;18510:4;18507:1;18500:15;18526:120;18566:1;18592;18582:35;;18597:18;;:::i;:::-;-1:-1:-1;18631:9:1;;18526:120::o;18651:112::-;18683:1;18709;18699:35;;18714:18;;:::i;:::-;-1:-1:-1;18748:9:1;;18651:112::o;18768:127::-;18829:10;18824:3;18820:20;18817:1;18810:31;18860:4;18857:1;18850:15;18884:4;18881:1;18874:15;18900:489;-1:-1:-1;;;;;19169:15:1;;;19151:34;;19221:15;;19216:2;19201:18;;19194:43;19268:2;19253:18;;19246:34;;;19316:3;19311:2;19296:18;;19289:31;;;19094:4;;19337:46;;19363:19;;19355:6;19337:46;:::i;:::-;19329:54;18900:489;-1:-1:-1;;;;;;18900:489:1:o;19394:249::-;19463:6;19516:2;19504:9;19495:7;19491:23;19487:32;19484:52;;;19532:1;19529;19522:12;19484:52;19564:9;19558:16;19583:30;19607:5;19583:30;:::i

Swarm Source

ipfs://ca906a2a3341bab463472e3b26eb0596c568f8c3662eeb69f3921c1f66b2ff52
Loading...
Loading
Loading...
Loading
[ Download: CSV Export  ]
[ Download: CSV Export  ]

A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.