ETH Price: $2,539.42 (+0.57%)

Token

Fruity Fools (FRUITYFOOLS)
 

Overview

Max Total Supply

3,000 FRUITYFOOLS

Holders

213

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
15 FRUITYFOOLS
0x819c156C094785d89993bbD24d948b3e8c95148b
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information
# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
FruityFools

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

// SPDX-License-Identifier: MIT
// File: @openzeppelin/contracts/utils/Strings.sol


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

pragma solidity ^0.8.0;

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;


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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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


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

pragma solidity ^0.8.0;

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

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

// File: erc721a/contracts/ERC721A.sol


// Creator: Chiru Labs

pragma solidity ^0.8.0;









/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
 * the Metadata and Enumerable extension. Built to optimize for lower gas during batch mints.
 *
 * Assumes serials are sequentially minted starting at 0 (e.g. 0, 1, 2, 3..).
 *
 * Does not support burning tokens to address(0).
 *
 * Assumes that an owner cannot have more than the 2**128 (max value of uint128) of supply
 */
contract ERC721A is Context, ERC165, IERC721, IERC721Metadata, IERC721Enumerable {
    using Address for address;
    using Strings for uint256;

    struct TokenOwnership {
        address addr;
        uint64 startTimestamp;
    }

    struct AddressData {
        uint128 balance;
        uint128 numberMinted;
    }

    uint256 internal _nextTokenId;

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

    // Mapping from token ID to ownership details
    // An empty struct value does not necessarily mean the token is unowned. See ownershipOf implementation for details.
    mapping(uint256 => TokenOwnership) internal _ownerships;

    // Mapping owner address to address data
    mapping(address => AddressData) private _addressData;

    // 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;

    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
        _nextTokenId = 1;
    }

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

    /**
     * @dev See {IERC721Enumerable-tokenByIndex}.
     */
    function tokenByIndex(uint256 index) public view override returns (uint256) {
        require(index < totalSupply(), 'ERC721A: global index out of bounds');
        return index;
    }

    /**
     * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}.
     * This read function is O(totalSupply). If calling from a separate contract, be sure to test gas first.
     * It may also degrade with extremely large collection sizes (e.g >> 10000), test for your use case.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) public view override returns (uint256) {
        require(index < balanceOf(owner), 'ERC721A: owner index out of bounds');
        uint256 numMintedSoFar = totalSupply();
        uint256 tokenIdsIdx = 0;
        address currOwnershipAddr = address(0);
        for (uint256 i = 0; i < numMintedSoFar; i++) {
            TokenOwnership memory ownership = _ownerships[i];
            if (ownership.addr != address(0)) {
                currOwnershipAddr = ownership.addr;
            }
            if (currOwnershipAddr == owner) {
                if (tokenIdsIdx == index) {
                    return i;
                }
                tokenIdsIdx++;
            }
        }
        revert('ERC721A: unable to get token of owner by index');
    }

    /**
     * @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 ||
            interfaceId == type(IERC721Enumerable).interfaceId ||
            super.supportsInterface(interfaceId);
    }

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

    function _numberMinted(address owner) internal view returns (uint256) {
        require(owner != address(0), 'ERC721A: number minted query for the zero address');
        return uint256(_addressData[owner].numberMinted);
    }

    function ownershipOf(uint256 tokenId) internal view returns (TokenOwnership memory) {
        require(_exists(tokenId), 'ERC721A: owner query for nonexistent token');

        for (uint256 curr = tokenId; ; curr--) {
            TokenOwnership memory ownership = _ownerships[curr];
            if (ownership.addr != address(0)) {
                return ownership;
            }
        }

        revert('ERC721A: unable to determine the owner of token');
    }

    /**
     * @dev See {IERC721-ownerOf}.
     */
    function ownerOf(uint256 tokenId) public view override returns (address) {
        return ownershipOf(tokenId).addr;
    }

    /**
     * @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 override {
        address owner = ERC721A.ownerOf(tokenId);
        require(to != owner, 'ERC721A: approval to current owner');

        require(
            _msgSender() == owner || isApprovedForAll(owner, _msgSender()),
            'ERC721A: approve caller is not owner nor approved for all'
        );

        _approve(to, tokenId, owner);
    }

    /**
     * @dev See {IERC721-getApproved}.
     */
    function getApproved(uint256 tokenId) public view override returns (address) {
        require(_exists(tokenId), 'ERC721A: approved query for nonexistent token');

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public override {
        require(operator != _msgSender(), 'ERC721A: 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 override {
        _transfer(from, to, tokenId);
    }

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

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) public override {
        _transfer(from, to, tokenId);
        require(
            _checkOnERC721Received(from, to, tokenId, _data),
            'ERC721A: 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`),
     */
    function _exists(uint256 tokenId) internal view returns (bool) {
        return tokenId < _nextTokenId;
    }

    function _safeMint(address to, uint256 quantity) internal {
        _safeMint(to, quantity, '');
    }

    /**
     * @dev Mints `quantity` tokens and transfers them to `to`.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `quantity` cannot be larger than the max batch size.
     *
     * Emits a {Transfer} event.
     */
    function _safeMint(
        address to,
        uint256 quantity,
        bytes memory _data
    ) internal {
        uint256 startTokenId = _nextTokenId;
        require(to != address(0), 'ERC721A: mint to the zero address');
        // We know if the first token in the batch doesn't exist, the other ones don't as well, because of serial ordering.
        require(!_exists(startTokenId), 'ERC721A: token already minted');
        require(quantity > 0, 'ERC721A: quantity must be greater 0');

        _beforeTokenTransfers(address(0), to, startTokenId, quantity);

        AddressData memory addressData = _addressData[to];
        _addressData[to] = AddressData(
            addressData.balance + uint128(quantity),
            addressData.numberMinted + uint128(quantity)
        );
        _ownerships[startTokenId] = TokenOwnership(to, uint64(block.timestamp));

        uint256 updatedIndex = startTokenId;

        for (uint256 i = 0; i < quantity; i++) {
            emit Transfer(address(0), to, updatedIndex);
            require(
                _checkOnERC721Received(address(0), to, updatedIndex, _data),
                'ERC721A: transfer to non ERC721Receiver implementer'
            );
            updatedIndex++;
        }

        _nextTokenId = updatedIndex;
        _afterTokenTransfers(address(0), to, startTokenId, quantity);
    }

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *
     * 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
    ) private {
        TokenOwnership memory prevOwnership = ownershipOf(tokenId);

        bool isApprovedOrOwner = (_msgSender() == prevOwnership.addr ||
            getApproved(tokenId) == _msgSender() ||
            isApprovedForAll(prevOwnership.addr, _msgSender()));

        require(isApprovedOrOwner, 'ERC721A: transfer caller is not owner nor approved');

        require(prevOwnership.addr == from, 'ERC721A: transfer from incorrect owner');
        require(to != address(0), 'ERC721A: transfer to the zero address');

        _beforeTokenTransfers(from, to, tokenId, 1);

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

        // Underflow of the sender's balance is impossible because we check for
        // ownership above and the recipient's balance can't realistically overflow.
        unchecked {
            _addressData[from].balance -= 1;
            _addressData[to].balance += 1;
        }

        _ownerships[tokenId] = TokenOwnership(to, uint64(block.timestamp));

        // If the ownership slot of tokenId+1 is not explicitly set, that means the transfer initiator owns it.
        // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls.
        uint256 nextTokenId = tokenId + 1;
        if (_ownerships[nextTokenId].addr == address(0)) {
            if (_exists(nextTokenId)) {
                _ownerships[nextTokenId] = TokenOwnership(prevOwnership.addr, prevOwnership.startTimestamp);
            }
        }

        emit Transfer(from, to, tokenId);
        _afterTokenTransfers(from, to, tokenId, 1);
    }

    /**
     * @dev Approve `to` to operate on `tokenId`
     *
     * Emits a {Approval} event.
     */
    function _approve(
        address to,
        uint256 tokenId,
        address owner
    ) private {
        _tokenApprovals[tokenId] = to;
        emit Approval(owner, 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(to).onERC721Received.selector;
            } catch (bytes memory reason) {
                if (reason.length == 0) {
                    revert('ERC721A: transfer to non ERC721Receiver implementer');
                } else {
                    assembly {
                        revert(add(32, reason), mload(reason))
                    }
                }
            }
        } else {
            return true;
        }
    }

    /**
     * @dev Hook that is called before a set of serially-ordered token ids are about to be transferred. This includes minting.
     *
     * startTokenId - the first token id to be transferred
     * quantity - the amount to be transferred
     *
     * 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`.
     */
    function _beforeTokenTransfers(
        address from,
        address to,
        uint256 startTokenId,
        uint256 quantity
    ) internal virtual {}

    /**
     * @dev Hook that is called after a set of serially-ordered token ids have been transferred. This includes
     * minting.
     *
     * startTokenId - the first token id to be transferred
     * quantity - the amount to be transferred
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero.
     * - `from` and `to` are never both zero.
     */
    function _afterTokenTransfers(
        address from,
        address to,
        uint256 startTokenId,
        uint256 quantity
    ) internal virtual {}
}

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

/**
 * @dev These functions deal with verification of Merkle Trees proofs.
 *
 * The proofs can be generated using the JavaScript library
 * https://github.com/miguelmota/merkletreejs[merkletreejs].
 * Note: the hashing algorithm should be keccak256 and pair sorting should be enabled.
 *
 * See `test/utils/cryptography/MerkleProof.test.js` for some examples.
 *
 * WARNING: You should avoid using leaf values that are 64 bytes long prior to
 * hashing, or use a hash function other than keccak256 for hashing leaves.
 * This is because the concatenation of a sorted pair of internal nodes in
 * the merkle tree could be reinterpreted as a leaf value.
 */
library MerkleProof {
    /**
     * @dev Returns true if a `leaf` can be proved to be a part of a Merkle tree
     * defined by `root`. For this, a `proof` must be provided, containing
     * sibling hashes on the branch from the leaf to the root of the tree. Each
     * pair of leaves and each pair of pre-images are assumed to be sorted.
     */
    function verify(
        bytes32[] memory proof,
        bytes32 root,
        bytes32 leaf
    ) internal pure returns (bool) {
        return processProof(proof, leaf) == root;
    }

    /**
     * @dev Returns the rebuilt hash obtained by traversing a Merkle tree up
     * from `leaf` using `proof`. A `proof` is valid if and only if the rebuilt
     * hash matches the root of the tree. When processing the proof, the pairs
     * of leafs & pre-images are assumed to be sorted.
     *
     * _Available since v4.4._
     */
    function processProof(bytes32[] memory proof, bytes32 leaf) internal pure returns (bytes32) {
        bytes32 computedHash = leaf;
        for (uint256 i = 0; i < proof.length; i++) {
            bytes32 proofElement = proof[i];
            if (computedHash <= proofElement) {
                // Hash(current computed hash + current element of the proof)
                computedHash = _efficientHash(computedHash, proofElement);
            } else {
                // Hash(current element of the proof + current computed hash)
                computedHash = _efficientHash(proofElement, computedHash);
            }
        }
        return computedHash;
    }

    function _efficientHash(bytes32 a, bytes32 b) private pure returns (bytes32 value) {
        assembly {
            mstore(0x00, a)
            mstore(0x20, b)
            value := keccak256(0x00, 0x40)
        }
    }
}


pragma solidity ^0.8.0;

contract FruityFools is ERC721A, Ownable {
  using Strings for uint256;
  address public contractOwner;
  uint256 public mintPrice = 0.0 ether;
  uint256 public supply = 3000;
  string private baseURI = "ipfs://bafybeibnle543zayemlrstyqeaxuylbwnblxurlajci5o3tz56nimin4tq/";
  uint8 public phase = 1;
  uint8 public maxBuy = 15;

  mapping(address => uint8)  public walletBuys;

  constructor() ERC721A("Fruity Fools", "FRUITYFOOLS") {
    contractOwner = msg.sender;
  }

  function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
    require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token");

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

  function mintForAddress(address[] calldata _addresses, uint256 quantity) public onlyOwner {
    for (uint i=0; i<_addresses.length; i++) {
      _safeMint(_addresses[i], quantity);
    }
  }

  function mint(uint8 quantity) external payable {
    require(phase >= 1, "Sale has not started");
    require(totalSupply() + quantity <= supply, "You can't mint more then the total supply");
    require(walletBuys[msg.sender] + quantity <= maxBuy, "Buy limit reached");
    require(msg.value >= mintPrice * quantity, "Insufficient funds");

    walletBuys[msg.sender] += quantity;
    _safeMint(msg.sender, quantity);
  }

  function getBaseURI() public view returns (string memory) {
    return baseURI;
  }

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

  function setBaseURI(string memory baseURI_) external onlyOwner {
    baseURI = baseURI_;
  }

  function setMintPrice (uint256 _newPrice) external onlyOwner {
    mintPrice = _newPrice;
  }

  function setPhase(uint8 _phase) public onlyOwner {
    phase = _phase;
  }

  function setMaxBuy(uint8 _maxBuy) external onlyOwner {
      maxBuy = _maxBuy;
  }

  function updateSupply(uint256 _supply) external onlyOwner {
      supply = _supply;
  }

  function getContractBalance () external view onlyOwner returns (uint256) {
    return address(this).balance;
  }

  function changeTreasury(address payable _newWallet) external onlyOwner {
    contractOwner = _newWallet;
  }

  function withdraw() external payable onlyOwner {
    (bool os, ) = payable(contractOwner).call{value: address(this).balance}("");
    require(os);
  }

}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address payable","name":"_newWallet","type":"address"}],"name":"changeTreasury","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"contractOwner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getBaseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getContractBalance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxBuy","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint8","name":"quantity","type":"uint8"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address[]","name":"_addresses","type":"address[]"},{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"mintForAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"mintPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"phase","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI_","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint8","name":"_maxBuy","type":"uint8"}],"name":"setMaxBuy","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newPrice","type":"uint256"}],"name":"setMintPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint8","name":"_phase","type":"uint8"}],"name":"setPhase","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"supply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_supply","type":"uint256"}],"name":"updateSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"walletBuys","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"payable","type":"function"}]

6000600955610bb8600a556101006040526043608081815290620026d360a03980516200003591600b916020909101906200013d565b50600c805461ffff1916610f011790553480156200005257600080fd5b50604080518082018252600c81526b46727569747920466f6f6c7360a01b60208083019182528351808501909452600b84526a465255495459464f4f4c5360a81b908401528151919291620000aa916001916200013d565b508051620000c09060029060208401906200013d565b5050600160005550620000d333620000eb565b600880546001600160a01b0319163317905562000220565b600780546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b8280546200014b90620001e3565b90600052602060002090601f0160209004810192826200016f5760008555620001ba565b82601f106200018a57805160ff1916838001178555620001ba565b82800160010185558215620001ba579182015b82811115620001ba5782518255916020019190600101906200019d565b50620001c8929150620001cc565b5090565b5b80821115620001c85760008155600101620001cd565b600181811c90821680620001f857607f821691505b602082108114156200021a57634e487b7160e01b600052602260045260246000fd5b50919050565b6124a380620002306000396000f3fe60806040526004361061020f5760003560e01c806370db69d611610118578063c03afb59116100a0578063dea96c981161006f578063dea96c98146105cc578063dfcf15b0146105fc578063e985e9c51461061c578063f2fde38b14610665578063f4a0a5281461068557600080fd5b8063c03afb591461054c578063c87b56dd1461056c578063ce606ee01461058c578063dbdf2dc0146105ac57600080fd5b806395d89b41116100e757806395d89b41146104bd578063a22cb465146104d2578063b14f2a39146104f2578063b1c9fe6e14610512578063b88d4fde1461052c57600080fd5b806370db69d614610444578063714c539814610475578063715018a61461048a5780638da5cb5b1461049f57600080fd5b806342842e0e1161019b5780636817c76c1161016a5780636817c76c146103c65780636bd08049146103dc5780636ecd2306146103fc5780636f9fb98a1461040f57806370a082311461042457600080fd5b806342842e0e146103465780634f6ccce71461036657806355f804b3146103865780636352211e146103a657600080fd5b8063095ea7b3116101e2578063095ea7b3146102c757806318160ddd146102e957806323b872dd146102fe5780632f745c591461031e5780633ccfd60b1461033e57600080fd5b806301ffc9a714610214578063047fc9aa1461024957806306fdde031461026d578063081812fc1461028f575b600080fd5b34801561022057600080fd5b5061023461022f366004611ff1565b6106a5565b60405190151581526020015b60405180910390f35b34801561025557600080fd5b5061025f600a5481565b604051908152602001610240565b34801561027957600080fd5b50610282610712565b60405161024091906121f0565b34801561029b57600080fd5b506102af6102aa366004612074565b6107a4565b6040516001600160a01b039091168152602001610240565b3480156102d357600080fd5b506102e76102e2366004611f4a565b610834565b005b3480156102f557600080fd5b5061025f61094c565b34801561030a57600080fd5b506102e7610319366004611e56565b610962565b34801561032a57600080fd5b5061025f610339366004611f4a565b61096d565b6102e7610ae5565b34801561035257600080fd5b506102e7610361366004611e56565b610b72565b34801561037257600080fd5b5061025f610381366004612074565b610b8d565b34801561039257600080fd5b506102e76103a136600461202b565b610bf5565b3480156103b257600080fd5b506102af6103c1366004612074565b610c36565b3480156103d257600080fd5b5061025f60095481565b3480156103e857600080fd5b506102e76103f7366004612074565b610c48565b6102e761040a36600461208d565b610c77565b34801561041b57600080fd5b5061025f610e4a565b34801561043057600080fd5b5061025f61043f366004611df9565b610e7c565b34801561045057600080fd5b50600c5461046390610100900460ff1681565b60405160ff9091168152602001610240565b34801561048157600080fd5b50610282610f0d565b34801561049657600080fd5b506102e7610f1c565b3480156104ab57600080fd5b506007546001600160a01b03166102af565b3480156104c957600080fd5b50610282610f52565b3480156104de57600080fd5b506102e76104ed366004611f17565b610f61565b3480156104fe57600080fd5b506102e761050d366004611df9565b611026565b34801561051e57600080fd5b50600c546104639060ff1681565b34801561053857600080fd5b506102e7610547366004611e97565b611072565b34801561055857600080fd5b506102e761056736600461208d565b6110ab565b34801561057857600080fd5b50610282610587366004612074565b6110eb565b34801561059857600080fd5b506008546102af906001600160a01b031681565b3480156105b857600080fd5b506102e76105c736600461208d565b6111b8565b3480156105d857600080fd5b506104636105e7366004611df9565b600d6020526000908152604090205460ff1681565b34801561060857600080fd5b506102e7610617366004611f76565b6111fe565b34801561062857600080fd5b50610234610637366004611e1d565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b34801561067157600080fd5b506102e7610680366004611df9565b611275565b34801561069157600080fd5b506102e76106a0366004612074565b61130d565b60006001600160e01b031982166380ac58cd60e01b14806106d657506001600160e01b03198216635b5e139f60e01b145b806106f157506001600160e01b0319821663780e9d6360e01b145b8061070c57506301ffc9a760e01b6001600160e01b03198316145b92915050565b60606001805461072190612380565b80601f016020809104026020016040519081016040528092919081815260200182805461074d90612380565b801561079a5780601f1061076f5761010080835404028352916020019161079a565b820191906000526020600020905b81548152906001019060200180831161077d57829003601f168201915b5050505050905090565b60006107b1826000541190565b6108185760405162461bcd60e51b815260206004820152602d60248201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560448201526c3c34b9ba32b73a103a37b5b2b760991b60648201526084015b60405180910390fd5b506000908152600560205260409020546001600160a01b031690565b600061083f82610c36565b9050806001600160a01b0316836001600160a01b031614156108ae5760405162461bcd60e51b815260206004820152602260248201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60448201526132b960f11b606482015260840161080f565b336001600160a01b03821614806108ca57506108ca8133610637565b61093c5760405162461bcd60e51b815260206004820152603960248201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000606482015260840161080f565b61094783838361133c565b505050565b6000600160005461095d9190612326565b905090565b610947838383611398565b600061097883610e7c565b82106109d15760405162461bcd60e51b815260206004820152602260248201527f455243373231413a206f776e657220696e646578206f7574206f6620626f756e604482015261647360f01b606482015260840161080f565b60006109db61094c565b905060008060005b83811015610a85576000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff169183019190915215610a3657805192505b876001600160a01b0316836001600160a01b03161415610a725786841415610a645750935061070c92505050565b83610a6e816123bb565b9450505b5080610a7d816123bb565b9150506109e3565b5060405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060448201526d0deeedccae440c4f240d2dcc8caf60931b606482015260840161080f565b6007546001600160a01b03163314610b0f5760405162461bcd60e51b815260040161080f90612203565b6008546040516000916001600160a01b03169047908381818185875af1925050503d8060008114610b5c576040519150601f19603f3d011682016040523d82523d6000602084013e610b61565b606091505b5050905080610b6f57600080fd5b50565b61094783838360405180602001604052806000815250611072565b6000610b9761094c565b8210610bf15760405162461bcd60e51b815260206004820152602360248201527f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f756044820152626e647360e81b606482015260840161080f565b5090565b6007546001600160a01b03163314610c1f5760405162461bcd60e51b815260040161080f90612203565b8051610c3290600b906020840190611cf3565b5050565b6000610c41826116df565b5192915050565b6007546001600160a01b03163314610c725760405162461bcd60e51b815260040161080f90612203565b600a55565b600c54600160ff9091161015610cc65760405162461bcd60e51b815260206004820152601460248201527314d85b19481a185cc81b9bdd081cdd185c9d195960621b604482015260640161080f565b600a548160ff16610cd561094c565b610cdf91906122b6565b1115610d3f5760405162461bcd60e51b815260206004820152602960248201527f596f752063616e2774206d696e74206d6f7265207468656e2074686520746f74604482015268616c20737570706c7960b81b606482015260840161080f565b600c54336000908152600d602052604090205460ff610100909204821691610d69918491166122ce565b60ff161115610dae5760405162461bcd60e51b8152602060048201526011602482015270109d5e481b1a5b5a5d081c995858da1959607a1b604482015260640161080f565b8060ff16600954610dbf9190612307565b341015610e035760405162461bcd60e51b8152602060048201526012602482015271496e73756666696369656e742066756e647360701b604482015260640161080f565b336000908152600d602052604081208054839290610e2590849060ff166122ce565b92506101000a81548160ff021916908360ff160217905550610b6f338260ff166117bf565b6007546000906001600160a01b03163314610e775760405162461bcd60e51b815260040161080f90612203565b504790565b60006001600160a01b038216610ee85760405162461bcd60e51b815260206004820152602b60248201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b606482015260840161080f565b506001600160a01b03166000908152600460205260409020546001600160801b031690565b6060600b805461072190612380565b6007546001600160a01b03163314610f465760405162461bcd60e51b815260040161080f90612203565b610f5060006117d9565b565b60606002805461072190612380565b6001600160a01b038216331415610fba5760405162461bcd60e51b815260206004820152601a60248201527f455243373231413a20617070726f766520746f2063616c6c6572000000000000604482015260640161080f565b3360008181526006602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6007546001600160a01b031633146110505760405162461bcd60e51b815260040161080f90612203565b600880546001600160a01b0319166001600160a01b0392909216919091179055565b61107d848484611398565b6110898484848461182b565b6110a55760405162461bcd60e51b815260040161080f90612238565b50505050565b6007546001600160a01b031633146110d55760405162461bcd60e51b815260040161080f90612203565b600c805460ff191660ff92909216919091179055565b60606110f8826000541190565b61115c5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b606482015260840161080f565b6000600b805461116b90612380565b905011611187576040518060200160405280600081525061070c565b600b61119283611939565b6040516020016111a39291906120f8565b60405160208183030381529060405292915050565b6007546001600160a01b031633146111e25760405162461bcd60e51b815260040161080f90612203565b600c805460ff9092166101000261ff0019909216919091179055565b6007546001600160a01b031633146112285760405162461bcd60e51b815260040161080f90612203565b60005b828110156110a55761126384848381811061124857611248612416565b905060200201602081019061125d9190611df9565b836117bf565b8061126d816123bb565b91505061122b565b6007546001600160a01b0316331461129f5760405162461bcd60e51b815260040161080f90612203565b6001600160a01b0381166113045760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161080f565b610b6f816117d9565b6007546001600160a01b031633146113375760405162461bcd60e51b815260040161080f90612203565b600955565b60008281526005602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b60006113a3826116df565b80519091506000906001600160a01b0316336001600160a01b031614806113da5750336113cf846107a4565b6001600160a01b0316145b806113ec575081516113ec9033610637565b9050806114565760405162461bcd60e51b815260206004820152603260248201527f455243373231413a207472616e736665722063616c6c6572206973206e6f74206044820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b606482015260840161080f565b846001600160a01b031682600001516001600160a01b0316146114ca5760405162461bcd60e51b815260206004820152602660248201527f455243373231413a207472616e736665722066726f6d20696e636f72726563746044820152651037bbb732b960d11b606482015260840161080f565b6001600160a01b03841661152e5760405162461bcd60e51b815260206004820152602560248201527f455243373231413a207472616e7366657220746f20746865207a65726f206164604482015264647265737360d81b606482015260840161080f565b61153e600084846000015161133c565b6001600160a01b03858116600090815260046020908152604080832080546fffffffffffffffffffffffffffffffff198082166001600160801b03928316600019018316179092558986168086528386208054938416938316600190810190931693909317909255825180840184529182524267ffffffffffffffff9081168386019081528a8752600390955292852091518254945196166001600160e01b031990941693909317600160a01b959092169490940217909255906116039085906122b6565b6000818152600360205260409020549091506001600160a01b03166116955761162d816000541190565b156116955760408051808201825284516001600160a01b03908116825260208087015167ffffffffffffffff9081168285019081526000878152600390935294909120925183549451909116600160a01b026001600160e01b03199094169116179190911790555b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b505050505050565b60408051808201909152600080825260208201526116fe826000541190565b61175d5760405162461bcd60e51b815260206004820152602a60248201527f455243373231413a206f776e657220717565727920666f72206e6f6e657869736044820152693a32b73a103a37b5b2b760b11b606482015260840161080f565b815b6000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff1691830191909152156117ac579392505050565b50806117b781612369565b91505061175f565b610c32828260405180602001604052806000815250611a37565b600780546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b60006001600160a01b0384163b1561192d57604051630a85bd0160e11b81526001600160a01b0385169063150b7a029061186f9033908990889088906004016121b3565b602060405180830381600087803b15801561188957600080fd5b505af19250505080156118b9575060408051601f3d908101601f191682019092526118b69181019061200e565b60015b611913573d8080156118e7576040519150601f19603f3d011682016040523d82523d6000602084013e6118ec565b606091505b50805161190b5760405162461bcd60e51b815260040161080f90612238565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611931565b5060015b949350505050565b60608161195d5750506040805180820190915260018152600360fc1b602082015290565b8160005b81156119875780611971816123bb565b91506119809050600a836122f3565b9150611961565b60008167ffffffffffffffff8111156119a2576119a261242c565b6040519080825280601f01601f1916602001820160405280156119cc576020820181803683370190505b5090505b8415611931576119e1600183612326565b91506119ee600a866123d6565b6119f99060306122b6565b60f81b818381518110611a0e57611a0e612416565b60200101906001600160f81b031916908160001a905350611a30600a866122f3565b94506119d0565b6000546001600160a01b038416611a9a5760405162461bcd60e51b815260206004820152602160248201527f455243373231413a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b606482015260840161080f565b611aa5816000541190565b15611af25760405162461bcd60e51b815260206004820152601d60248201527f455243373231413a20746f6b656e20616c7265616479206d696e746564000000604482015260640161080f565b60008311611b4e5760405162461bcd60e51b815260206004820152602360248201527f455243373231413a207175616e74697479206d7573742062652067726561746560448201526207220360ec1b606482015260840161080f565b6001600160a01b0384166000908152600460209081526040918290208251808401845290546001600160801b038082168352600160801b9091041691810191909152815180830190925280519091908190611baa90879061228b565b6001600160801b03168152602001858360200151611bc8919061228b565b6001600160801b039081169091526001600160a01b0380881660008181526004602090815260408083208751978301518716600160801b0297909616969096179094558451808601865291825267ffffffffffffffff4281168386019081528883526003909552948120915182549451909516600160a01b026001600160e01b031990941694909216939093179190911790915582905b85811015611ce85760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4611cac600088848861182b565b611cc85760405162461bcd60e51b815260040161080f90612238565b81611cd2816123bb565b9250508080611ce0906123bb565b915050611c5f565b5060008190556116d7565b828054611cff90612380565b90600052602060002090601f016020900481019282611d215760008555611d67565b82601f10611d3a57805160ff1916838001178555611d67565b82800160010185558215611d67579182015b82811115611d67578251825591602001919060010190611d4c565b50610bf19291505b80821115610bf15760008155600101611d6f565b600067ffffffffffffffff80841115611d9e57611d9e61242c565b604051601f8501601f19908116603f01168101908282118183101715611dc657611dc661242c565b81604052809350858152868686011115611ddf57600080fd5b858560208301376000602087830101525050509392505050565b600060208284031215611e0b57600080fd5b8135611e1681612442565b9392505050565b60008060408385031215611e3057600080fd5b8235611e3b81612442565b91506020830135611e4b81612442565b809150509250929050565b600080600060608486031215611e6b57600080fd5b8335611e7681612442565b92506020840135611e8681612442565b929592945050506040919091013590565b60008060008060808587031215611ead57600080fd5b8435611eb881612442565b93506020850135611ec881612442565b925060408501359150606085013567ffffffffffffffff811115611eeb57600080fd5b8501601f81018713611efc57600080fd5b611f0b87823560208401611d83565b91505092959194509250565b60008060408385031215611f2a57600080fd5b8235611f3581612442565b915060208301358015158114611e4b57600080fd5b60008060408385031215611f5d57600080fd5b8235611f6881612442565b946020939093013593505050565b600080600060408486031215611f8b57600080fd5b833567ffffffffffffffff80821115611fa357600080fd5b818601915086601f830112611fb757600080fd5b813581811115611fc657600080fd5b8760208260051b8501011115611fdb57600080fd5b6020928301989097509590910135949350505050565b60006020828403121561200357600080fd5b8135611e1681612457565b60006020828403121561202057600080fd5b8151611e1681612457565b60006020828403121561203d57600080fd5b813567ffffffffffffffff81111561205457600080fd5b8201601f8101841361206557600080fd5b61193184823560208401611d83565b60006020828403121561208657600080fd5b5035919050565b60006020828403121561209f57600080fd5b813560ff81168114611e1657600080fd5b600081518084526120c881602086016020860161233d565b601f01601f19169290920160200192915050565b600081516120ee81856020860161233d565b9290920192915050565b600080845481600182811c91508083168061211457607f831692505b602080841082141561213457634e487b7160e01b86526022600452602486fd5b818015612148576001811461215957612186565b60ff19861689528489019650612186565b60008b81526020902060005b8681101561217e5781548b820152908501908301612165565b505084890196505b5050505050506121aa61219982866120dc565b64173539b7b760d91b815260050190565b95945050505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906121e6908301846120b0565b9695505050505050565b602081526000611e1660208301846120b0565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526033908201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260408201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b606082015260800190565b60006001600160801b038083168185168083038211156122ad576122ad6123ea565b01949350505050565b600082198211156122c9576122c96123ea565b500190565b600060ff821660ff84168060ff038211156122eb576122eb6123ea565b019392505050565b60008261230257612302612400565b500490565b6000816000190483118215151615612321576123216123ea565b500290565b600082821015612338576123386123ea565b500390565b60005b83811015612358578181015183820152602001612340565b838111156110a55750506000910152565b600081612378576123786123ea565b506000190190565b600181811c9082168061239457607f821691505b602082108114156123b557634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156123cf576123cf6123ea565b5060010190565b6000826123e5576123e5612400565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160a01b0381168114610b6f57600080fd5b6001600160e01b031981168114610b6f57600080fdfea2646970667358221220e630a2828d8109fe5c69672e674df0106148f486e299d67bd5cc800127a5dbf364736f6c63430008070033697066733a2f2f62616679626569626e6c653534337a6179656d6c727374797165617875796c62776e626c7875726c616a6369356f33747a35366e696d696e3474712f

Deployed Bytecode

0x60806040526004361061020f5760003560e01c806370db69d611610118578063c03afb59116100a0578063dea96c981161006f578063dea96c98146105cc578063dfcf15b0146105fc578063e985e9c51461061c578063f2fde38b14610665578063f4a0a5281461068557600080fd5b8063c03afb591461054c578063c87b56dd1461056c578063ce606ee01461058c578063dbdf2dc0146105ac57600080fd5b806395d89b41116100e757806395d89b41146104bd578063a22cb465146104d2578063b14f2a39146104f2578063b1c9fe6e14610512578063b88d4fde1461052c57600080fd5b806370db69d614610444578063714c539814610475578063715018a61461048a5780638da5cb5b1461049f57600080fd5b806342842e0e1161019b5780636817c76c1161016a5780636817c76c146103c65780636bd08049146103dc5780636ecd2306146103fc5780636f9fb98a1461040f57806370a082311461042457600080fd5b806342842e0e146103465780634f6ccce71461036657806355f804b3146103865780636352211e146103a657600080fd5b8063095ea7b3116101e2578063095ea7b3146102c757806318160ddd146102e957806323b872dd146102fe5780632f745c591461031e5780633ccfd60b1461033e57600080fd5b806301ffc9a714610214578063047fc9aa1461024957806306fdde031461026d578063081812fc1461028f575b600080fd5b34801561022057600080fd5b5061023461022f366004611ff1565b6106a5565b60405190151581526020015b60405180910390f35b34801561025557600080fd5b5061025f600a5481565b604051908152602001610240565b34801561027957600080fd5b50610282610712565b60405161024091906121f0565b34801561029b57600080fd5b506102af6102aa366004612074565b6107a4565b6040516001600160a01b039091168152602001610240565b3480156102d357600080fd5b506102e76102e2366004611f4a565b610834565b005b3480156102f557600080fd5b5061025f61094c565b34801561030a57600080fd5b506102e7610319366004611e56565b610962565b34801561032a57600080fd5b5061025f610339366004611f4a565b61096d565b6102e7610ae5565b34801561035257600080fd5b506102e7610361366004611e56565b610b72565b34801561037257600080fd5b5061025f610381366004612074565b610b8d565b34801561039257600080fd5b506102e76103a136600461202b565b610bf5565b3480156103b257600080fd5b506102af6103c1366004612074565b610c36565b3480156103d257600080fd5b5061025f60095481565b3480156103e857600080fd5b506102e76103f7366004612074565b610c48565b6102e761040a36600461208d565b610c77565b34801561041b57600080fd5b5061025f610e4a565b34801561043057600080fd5b5061025f61043f366004611df9565b610e7c565b34801561045057600080fd5b50600c5461046390610100900460ff1681565b60405160ff9091168152602001610240565b34801561048157600080fd5b50610282610f0d565b34801561049657600080fd5b506102e7610f1c565b3480156104ab57600080fd5b506007546001600160a01b03166102af565b3480156104c957600080fd5b50610282610f52565b3480156104de57600080fd5b506102e76104ed366004611f17565b610f61565b3480156104fe57600080fd5b506102e761050d366004611df9565b611026565b34801561051e57600080fd5b50600c546104639060ff1681565b34801561053857600080fd5b506102e7610547366004611e97565b611072565b34801561055857600080fd5b506102e761056736600461208d565b6110ab565b34801561057857600080fd5b50610282610587366004612074565b6110eb565b34801561059857600080fd5b506008546102af906001600160a01b031681565b3480156105b857600080fd5b506102e76105c736600461208d565b6111b8565b3480156105d857600080fd5b506104636105e7366004611df9565b600d6020526000908152604090205460ff1681565b34801561060857600080fd5b506102e7610617366004611f76565b6111fe565b34801561062857600080fd5b50610234610637366004611e1d565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b34801561067157600080fd5b506102e7610680366004611df9565b611275565b34801561069157600080fd5b506102e76106a0366004612074565b61130d565b60006001600160e01b031982166380ac58cd60e01b14806106d657506001600160e01b03198216635b5e139f60e01b145b806106f157506001600160e01b0319821663780e9d6360e01b145b8061070c57506301ffc9a760e01b6001600160e01b03198316145b92915050565b60606001805461072190612380565b80601f016020809104026020016040519081016040528092919081815260200182805461074d90612380565b801561079a5780601f1061076f5761010080835404028352916020019161079a565b820191906000526020600020905b81548152906001019060200180831161077d57829003601f168201915b5050505050905090565b60006107b1826000541190565b6108185760405162461bcd60e51b815260206004820152602d60248201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560448201526c3c34b9ba32b73a103a37b5b2b760991b60648201526084015b60405180910390fd5b506000908152600560205260409020546001600160a01b031690565b600061083f82610c36565b9050806001600160a01b0316836001600160a01b031614156108ae5760405162461bcd60e51b815260206004820152602260248201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60448201526132b960f11b606482015260840161080f565b336001600160a01b03821614806108ca57506108ca8133610637565b61093c5760405162461bcd60e51b815260206004820152603960248201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000606482015260840161080f565b61094783838361133c565b505050565b6000600160005461095d9190612326565b905090565b610947838383611398565b600061097883610e7c565b82106109d15760405162461bcd60e51b815260206004820152602260248201527f455243373231413a206f776e657220696e646578206f7574206f6620626f756e604482015261647360f01b606482015260840161080f565b60006109db61094c565b905060008060005b83811015610a85576000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff169183019190915215610a3657805192505b876001600160a01b0316836001600160a01b03161415610a725786841415610a645750935061070c92505050565b83610a6e816123bb565b9450505b5080610a7d816123bb565b9150506109e3565b5060405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060448201526d0deeedccae440c4f240d2dcc8caf60931b606482015260840161080f565b6007546001600160a01b03163314610b0f5760405162461bcd60e51b815260040161080f90612203565b6008546040516000916001600160a01b03169047908381818185875af1925050503d8060008114610b5c576040519150601f19603f3d011682016040523d82523d6000602084013e610b61565b606091505b5050905080610b6f57600080fd5b50565b61094783838360405180602001604052806000815250611072565b6000610b9761094c565b8210610bf15760405162461bcd60e51b815260206004820152602360248201527f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f756044820152626e647360e81b606482015260840161080f565b5090565b6007546001600160a01b03163314610c1f5760405162461bcd60e51b815260040161080f90612203565b8051610c3290600b906020840190611cf3565b5050565b6000610c41826116df565b5192915050565b6007546001600160a01b03163314610c725760405162461bcd60e51b815260040161080f90612203565b600a55565b600c54600160ff9091161015610cc65760405162461bcd60e51b815260206004820152601460248201527314d85b19481a185cc81b9bdd081cdd185c9d195960621b604482015260640161080f565b600a548160ff16610cd561094c565b610cdf91906122b6565b1115610d3f5760405162461bcd60e51b815260206004820152602960248201527f596f752063616e2774206d696e74206d6f7265207468656e2074686520746f74604482015268616c20737570706c7960b81b606482015260840161080f565b600c54336000908152600d602052604090205460ff610100909204821691610d69918491166122ce565b60ff161115610dae5760405162461bcd60e51b8152602060048201526011602482015270109d5e481b1a5b5a5d081c995858da1959607a1b604482015260640161080f565b8060ff16600954610dbf9190612307565b341015610e035760405162461bcd60e51b8152602060048201526012602482015271496e73756666696369656e742066756e647360701b604482015260640161080f565b336000908152600d602052604081208054839290610e2590849060ff166122ce565b92506101000a81548160ff021916908360ff160217905550610b6f338260ff166117bf565b6007546000906001600160a01b03163314610e775760405162461bcd60e51b815260040161080f90612203565b504790565b60006001600160a01b038216610ee85760405162461bcd60e51b815260206004820152602b60248201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b606482015260840161080f565b506001600160a01b03166000908152600460205260409020546001600160801b031690565b6060600b805461072190612380565b6007546001600160a01b03163314610f465760405162461bcd60e51b815260040161080f90612203565b610f5060006117d9565b565b60606002805461072190612380565b6001600160a01b038216331415610fba5760405162461bcd60e51b815260206004820152601a60248201527f455243373231413a20617070726f766520746f2063616c6c6572000000000000604482015260640161080f565b3360008181526006602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6007546001600160a01b031633146110505760405162461bcd60e51b815260040161080f90612203565b600880546001600160a01b0319166001600160a01b0392909216919091179055565b61107d848484611398565b6110898484848461182b565b6110a55760405162461bcd60e51b815260040161080f90612238565b50505050565b6007546001600160a01b031633146110d55760405162461bcd60e51b815260040161080f90612203565b600c805460ff191660ff92909216919091179055565b60606110f8826000541190565b61115c5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b606482015260840161080f565b6000600b805461116b90612380565b905011611187576040518060200160405280600081525061070c565b600b61119283611939565b6040516020016111a39291906120f8565b60405160208183030381529060405292915050565b6007546001600160a01b031633146111e25760405162461bcd60e51b815260040161080f90612203565b600c805460ff9092166101000261ff0019909216919091179055565b6007546001600160a01b031633146112285760405162461bcd60e51b815260040161080f90612203565b60005b828110156110a55761126384848381811061124857611248612416565b905060200201602081019061125d9190611df9565b836117bf565b8061126d816123bb565b91505061122b565b6007546001600160a01b0316331461129f5760405162461bcd60e51b815260040161080f90612203565b6001600160a01b0381166113045760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161080f565b610b6f816117d9565b6007546001600160a01b031633146113375760405162461bcd60e51b815260040161080f90612203565b600955565b60008281526005602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b60006113a3826116df565b80519091506000906001600160a01b0316336001600160a01b031614806113da5750336113cf846107a4565b6001600160a01b0316145b806113ec575081516113ec9033610637565b9050806114565760405162461bcd60e51b815260206004820152603260248201527f455243373231413a207472616e736665722063616c6c6572206973206e6f74206044820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b606482015260840161080f565b846001600160a01b031682600001516001600160a01b0316146114ca5760405162461bcd60e51b815260206004820152602660248201527f455243373231413a207472616e736665722066726f6d20696e636f72726563746044820152651037bbb732b960d11b606482015260840161080f565b6001600160a01b03841661152e5760405162461bcd60e51b815260206004820152602560248201527f455243373231413a207472616e7366657220746f20746865207a65726f206164604482015264647265737360d81b606482015260840161080f565b61153e600084846000015161133c565b6001600160a01b03858116600090815260046020908152604080832080546fffffffffffffffffffffffffffffffff198082166001600160801b03928316600019018316179092558986168086528386208054938416938316600190810190931693909317909255825180840184529182524267ffffffffffffffff9081168386019081528a8752600390955292852091518254945196166001600160e01b031990941693909317600160a01b959092169490940217909255906116039085906122b6565b6000818152600360205260409020549091506001600160a01b03166116955761162d816000541190565b156116955760408051808201825284516001600160a01b03908116825260208087015167ffffffffffffffff9081168285019081526000878152600390935294909120925183549451909116600160a01b026001600160e01b03199094169116179190911790555b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b505050505050565b60408051808201909152600080825260208201526116fe826000541190565b61175d5760405162461bcd60e51b815260206004820152602a60248201527f455243373231413a206f776e657220717565727920666f72206e6f6e657869736044820152693a32b73a103a37b5b2b760b11b606482015260840161080f565b815b6000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff1691830191909152156117ac579392505050565b50806117b781612369565b91505061175f565b610c32828260405180602001604052806000815250611a37565b600780546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b60006001600160a01b0384163b1561192d57604051630a85bd0160e11b81526001600160a01b0385169063150b7a029061186f9033908990889088906004016121b3565b602060405180830381600087803b15801561188957600080fd5b505af19250505080156118b9575060408051601f3d908101601f191682019092526118b69181019061200e565b60015b611913573d8080156118e7576040519150601f19603f3d011682016040523d82523d6000602084013e6118ec565b606091505b50805161190b5760405162461bcd60e51b815260040161080f90612238565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611931565b5060015b949350505050565b60608161195d5750506040805180820190915260018152600360fc1b602082015290565b8160005b81156119875780611971816123bb565b91506119809050600a836122f3565b9150611961565b60008167ffffffffffffffff8111156119a2576119a261242c565b6040519080825280601f01601f1916602001820160405280156119cc576020820181803683370190505b5090505b8415611931576119e1600183612326565b91506119ee600a866123d6565b6119f99060306122b6565b60f81b818381518110611a0e57611a0e612416565b60200101906001600160f81b031916908160001a905350611a30600a866122f3565b94506119d0565b6000546001600160a01b038416611a9a5760405162461bcd60e51b815260206004820152602160248201527f455243373231413a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b606482015260840161080f565b611aa5816000541190565b15611af25760405162461bcd60e51b815260206004820152601d60248201527f455243373231413a20746f6b656e20616c7265616479206d696e746564000000604482015260640161080f565b60008311611b4e5760405162461bcd60e51b815260206004820152602360248201527f455243373231413a207175616e74697479206d7573742062652067726561746560448201526207220360ec1b606482015260840161080f565b6001600160a01b0384166000908152600460209081526040918290208251808401845290546001600160801b038082168352600160801b9091041691810191909152815180830190925280519091908190611baa90879061228b565b6001600160801b03168152602001858360200151611bc8919061228b565b6001600160801b039081169091526001600160a01b0380881660008181526004602090815260408083208751978301518716600160801b0297909616969096179094558451808601865291825267ffffffffffffffff4281168386019081528883526003909552948120915182549451909516600160a01b026001600160e01b031990941694909216939093179190911790915582905b85811015611ce85760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4611cac600088848861182b565b611cc85760405162461bcd60e51b815260040161080f90612238565b81611cd2816123bb565b9250508080611ce0906123bb565b915050611c5f565b5060008190556116d7565b828054611cff90612380565b90600052602060002090601f016020900481019282611d215760008555611d67565b82601f10611d3a57805160ff1916838001178555611d67565b82800160010185558215611d67579182015b82811115611d67578251825591602001919060010190611d4c565b50610bf19291505b80821115610bf15760008155600101611d6f565b600067ffffffffffffffff80841115611d9e57611d9e61242c565b604051601f8501601f19908116603f01168101908282118183101715611dc657611dc661242c565b81604052809350858152868686011115611ddf57600080fd5b858560208301376000602087830101525050509392505050565b600060208284031215611e0b57600080fd5b8135611e1681612442565b9392505050565b60008060408385031215611e3057600080fd5b8235611e3b81612442565b91506020830135611e4b81612442565b809150509250929050565b600080600060608486031215611e6b57600080fd5b8335611e7681612442565b92506020840135611e8681612442565b929592945050506040919091013590565b60008060008060808587031215611ead57600080fd5b8435611eb881612442565b93506020850135611ec881612442565b925060408501359150606085013567ffffffffffffffff811115611eeb57600080fd5b8501601f81018713611efc57600080fd5b611f0b87823560208401611d83565b91505092959194509250565b60008060408385031215611f2a57600080fd5b8235611f3581612442565b915060208301358015158114611e4b57600080fd5b60008060408385031215611f5d57600080fd5b8235611f6881612442565b946020939093013593505050565b600080600060408486031215611f8b57600080fd5b833567ffffffffffffffff80821115611fa357600080fd5b818601915086601f830112611fb757600080fd5b813581811115611fc657600080fd5b8760208260051b8501011115611fdb57600080fd5b6020928301989097509590910135949350505050565b60006020828403121561200357600080fd5b8135611e1681612457565b60006020828403121561202057600080fd5b8151611e1681612457565b60006020828403121561203d57600080fd5b813567ffffffffffffffff81111561205457600080fd5b8201601f8101841361206557600080fd5b61193184823560208401611d83565b60006020828403121561208657600080fd5b5035919050565b60006020828403121561209f57600080fd5b813560ff81168114611e1657600080fd5b600081518084526120c881602086016020860161233d565b601f01601f19169290920160200192915050565b600081516120ee81856020860161233d565b9290920192915050565b600080845481600182811c91508083168061211457607f831692505b602080841082141561213457634e487b7160e01b86526022600452602486fd5b818015612148576001811461215957612186565b60ff19861689528489019650612186565b60008b81526020902060005b8681101561217e5781548b820152908501908301612165565b505084890196505b5050505050506121aa61219982866120dc565b64173539b7b760d91b815260050190565b95945050505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906121e6908301846120b0565b9695505050505050565b602081526000611e1660208301846120b0565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526033908201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260408201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b606082015260800190565b60006001600160801b038083168185168083038211156122ad576122ad6123ea565b01949350505050565b600082198211156122c9576122c96123ea565b500190565b600060ff821660ff84168060ff038211156122eb576122eb6123ea565b019392505050565b60008261230257612302612400565b500490565b6000816000190483118215151615612321576123216123ea565b500290565b600082821015612338576123386123ea565b500390565b60005b83811015612358578181015183820152602001612340565b838111156110a55750506000910152565b600081612378576123786123ea565b506000190190565b600181811c9082168061239457607f821691505b602082108114156123b557634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156123cf576123cf6123ea565b5060010190565b6000826123e5576123e5612400565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160a01b0381168114610b6f57600080fd5b6001600160e01b031981168114610b6f57600080fdfea2646970667358221220e630a2828d8109fe5c69672e674df0106148f486e299d67bd5cc800127a5dbf364736f6c63430008070033

Deployed Bytecode Sourcemap

41404:2472:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24333:372;;;;;;;;;;-1:-1:-1;24333:372:0;;;;;:::i;:::-;;:::i;:::-;;;8620:14:1;;8613:22;8595:41;;8583:2;8568:18;24333:372:0;;;;;;;;41554:28;;;;;;;;;;;;;;;;;;;18528:25:1;;;18516:2;18501:18;41554:28:0;18382:177:1;25960:100:0;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;27521:214::-;;;;;;;;;;-1:-1:-1;27521:214:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;7918:32:1;;;7900:51;;7888:2;7873:18;27521:214:0;7754:203:1;27042:413:0;;;;;;;;;;-1:-1:-1;27042:413:0;;;;;:::i;:::-;;:::i;:::-;;22770:104;;;;;;;;;;;;;:::i;28397:162::-;;;;;;;;;;-1:-1:-1;28397:162:0;;;;;:::i;:::-;;:::i;23438:823::-;;;;;;;;;;-1:-1:-1;23438:823:0;;;;;:::i;:::-;;:::i;43718:153::-;;;:::i;28630:177::-;;;;;;;;;;-1:-1:-1;28630:177:0;;;;;:::i;:::-;;:::i;22951:187::-;;;;;;;;;;-1:-1:-1;22951:187:0;;;;;:::i;:::-;;:::i;43014:94::-;;;;;;;;;;-1:-1:-1;43014:94:0;;;;;:::i;:::-;;:::i;25769:124::-;;;;;;;;;;-1:-1:-1;25769:124:0;;;;;:::i;:::-;;:::i;41513:36::-;;;;;;;;;;;;;;;;43387:89;;;;;;;;;;-1:-1:-1;43387:89:0;;;;;:::i;:::-;;:::i;42387:430::-;;;;;;:::i;:::-;;:::i;43482:114::-;;;;;;;;;;;;;:::i;24769:221::-;;;;;;;;;;-1:-1:-1;24769:221:0;;;;;:::i;:::-;;:::i;41713:24::-;;;;;;;;;;-1:-1:-1;41713:24:0;;;;;;;;;;;;;;18736:4:1;18724:17;;;18706:36;;18694:2;18679:18;41713:24:0;18564:184:1;42823:85:0;;;;;;;;;;;;;:::i;38034:103::-;;;;;;;;;;;;;:::i;37383:87::-;;;;;;;;;;-1:-1:-1;37456:6:0;;-1:-1:-1;;;;;37456:6:0;37383:87;;26129:104;;;;;;;;;;;;;:::i;27807:288::-;;;;;;;;;;-1:-1:-1;27807:288:0;;;;;:::i;:::-;;:::i;43602:110::-;;;;;;;;;;-1:-1:-1;43602:110:0;;;;;:::i;:::-;;:::i;41686:22::-;;;;;;;;;;-1:-1:-1;41686:22:0;;;;;;;;28878:355;;;;;;;;;;-1:-1:-1;28878:355:0;;;;;:::i;:::-;;:::i;43215:76::-;;;;;;;;;;-1:-1:-1;43215:76:0;;;;;:::i;:::-;;:::i;41893:288::-;;;;;;;;;;-1:-1:-1;41893:288:0;;;;;:::i;:::-;;:::i;41480:28::-;;;;;;;;;;-1:-1:-1;41480:28:0;;;;-1:-1:-1;;;;;41480:28:0;;;43297:84;;;;;;;;;;-1:-1:-1;43297:84:0;;;;;:::i;:::-;;:::i;41744:44::-;;;;;;;;;;-1:-1:-1;41744:44:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;42187:194;;;;;;;;;;-1:-1:-1;42187:194:0;;;;;:::i;:::-;;:::i;28166:164::-;;;;;;;;;;-1:-1:-1;28166:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;28287:25:0;;;28263:4;28287:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;28166:164;38292:201;;;;;;;;;;-1:-1:-1;38292:201:0;;;;;:::i;:::-;;:::i;43114:95::-;;;;;;;;;;-1:-1:-1;43114:95:0;;;;;:::i;:::-;;:::i;24333:372::-;24435:4;-1:-1:-1;;;;;;24472:40:0;;-1:-1:-1;;;24472:40:0;;:105;;-1:-1:-1;;;;;;;24529:48:0;;-1:-1:-1;;;24529:48:0;24472:105;:172;;;-1:-1:-1;;;;;;;24594:50:0;;-1:-1:-1;;;24594:50:0;24472:172;:225;;;-1:-1:-1;;;;;;;;;;13230:40:0;;;24661:36;24452:245;24333:372;-1:-1:-1;;24333:372:0:o;25960:100::-;26014:13;26047:5;26040:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25960:100;:::o;27521:214::-;27589:7;27617:16;27625:7;29545:4;29579:12;-1:-1:-1;29569:22:0;29488:111;27617:16;27609:74;;;;-1:-1:-1;;;27609:74:0;;18170:2:1;27609:74:0;;;18152:21:1;18209:2;18189:18;;;18182:30;18248:34;18228:18;;;18221:62;-1:-1:-1;;;18299:18:1;;;18292:43;18352:19;;27609:74:0;;;;;;;;;-1:-1:-1;27703:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;27703:24:0;;27521:214::o;27042:413::-;27115:13;27131:24;27147:7;27131:15;:24::i;:::-;27115:40;;27180:5;-1:-1:-1;;;;;27174:11:0;:2;-1:-1:-1;;;;;27174:11:0;;;27166:58;;;;-1:-1:-1;;;27166:58:0;;15003:2:1;27166:58:0;;;14985:21:1;15042:2;15022:18;;;15015:30;15081:34;15061:18;;;15054:62;-1:-1:-1;;;15132:18:1;;;15125:32;15174:19;;27166:58:0;14801:398:1;27166:58:0;20792:10;-1:-1:-1;;;;;27259:21:0;;;;:62;;-1:-1:-1;27284:37:0;27301:5;20792:10;28166:164;:::i;27284:37::-;27237:169;;;;-1:-1:-1;;;27237:169:0;;11861:2:1;27237:169:0;;;11843:21:1;11900:2;11880:18;;;11873:30;11939:34;11919:18;;;11912:62;12010:27;11990:18;;;11983:55;12055:19;;27237:169:0;11659:421:1;27237:169:0;27419:28;27428:2;27432:7;27441:5;27419:8;:28::i;:::-;27104:351;27042:413;;:::o;22770:104::-;22823:7;22865:1;22850:12;;:16;;;;:::i;:::-;22843:23;;22770:104;:::o;28397:162::-;28523:28;28533:4;28539:2;28543:7;28523:9;:28::i;23438:823::-;23527:7;23563:16;23573:5;23563:9;:16::i;:::-;23555:5;:24;23547:71;;;;-1:-1:-1;;;23547:71:0;;9073:2:1;23547:71:0;;;9055:21:1;9112:2;9092:18;;;9085:30;9151:34;9131:18;;;9124:62;-1:-1:-1;;;9202:18:1;;;9195:32;9244:19;;23547:71:0;8871:398:1;23547:71:0;23629:22;23654:13;:11;:13::i;:::-;23629:38;;23678:19;23712:25;23766:9;23761:426;23785:14;23781:1;:18;23761:426;;;23821:31;23855:14;;;:11;:14;;;;;;;;;23821:48;;;;;;;;;-1:-1:-1;;;;;23821:48:0;;;;;-1:-1:-1;;;23821:48:0;;;;;;;;;;;;23888:28;23884:103;;23957:14;;;-1:-1:-1;23884:103:0;24026:5;-1:-1:-1;;;;;24005:26:0;:17;-1:-1:-1;;;;;24005:26:0;;24001:175;;;24071:5;24056:11;:20;24052:77;;;-1:-1:-1;24108:1:0;-1:-1:-1;24101:8:0;;-1:-1:-1;;;24101:8:0;24052:77;24147:13;;;;:::i;:::-;;;;24001:175;-1:-1:-1;23801:3:0;;;;:::i;:::-;;;;23761:426;;;-1:-1:-1;24197:56:0;;-1:-1:-1;;;24197:56:0;;16990:2:1;24197:56:0;;;16972:21:1;17029:2;17009:18;;;17002:30;17068:34;17048:18;;;17041:62;-1:-1:-1;;;17119:18:1;;;17112:44;17173:19;;24197:56:0;16788:410:1;43718:153:0;37456:6;;-1:-1:-1;;;;;37456:6:0;20792:10;37603:23;37595:68;;;;-1:-1:-1;;;37595:68:0;;;;;;;:::i;:::-;43794:13:::1;::::0;43786:61:::1;::::0;43773:7:::1;::::0;-1:-1:-1;;;;;43794:13:0::1;::::0;43821:21:::1;::::0;43773:7;43786:61;43773:7;43786:61;43821:21;43794:13;43786:61:::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43772:75;;;43862:2;43854:11;;;::::0;::::1;;43765:106;43718:153::o:0;28630:177::-;28760:39;28777:4;28783:2;28787:7;28760:39;;;;;;;;;;;;:16;:39::i;22951:187::-;23018:7;23054:13;:11;:13::i;:::-;23046:5;:21;23038:69;;;;-1:-1:-1;;;23038:69:0;;10294:2:1;23038:69:0;;;10276:21:1;10333:2;10313:18;;;10306:30;10372:34;10352:18;;;10345:62;-1:-1:-1;;;10423:18:1;;;10416:33;10466:19;;23038:69:0;10092:399:1;23038:69:0;-1:-1:-1;23125:5:0;22951:187::o;43014:94::-;37456:6;;-1:-1:-1;;;;;37456:6:0;20792:10;37603:23;37595:68;;;;-1:-1:-1;;;37595:68:0;;;;;;;:::i;:::-;43084:18;;::::1;::::0;:7:::1;::::0;:18:::1;::::0;::::1;::::0;::::1;:::i;:::-;;43014:94:::0;:::o;25769:124::-;25833:7;25860:20;25872:7;25860:11;:20::i;:::-;:25;;25769:124;-1:-1:-1;;25769:124:0:o;43387:89::-;37456:6;;-1:-1:-1;;;;;37456:6:0;20792:10;37603:23;37595:68;;;;-1:-1:-1;;;37595:68:0;;;;;;;:::i;:::-;43454:6:::1;:16:::0;43387:89::o;42387:430::-;42449:5;;42458:1;42449:5;;;;:10;;42441:43;;;;-1:-1:-1;;;42441:43:0;;17405:2:1;42441:43:0;;;17387:21:1;17444:2;17424:18;;;17417:30;-1:-1:-1;;;17463:18:1;;;17456:50;17523:18;;42441:43:0;17203:344:1;42441:43:0;42527:6;;42515:8;42499:24;;:13;:11;:13::i;:::-;:24;;;;:::i;:::-;:34;;42491:88;;;;-1:-1:-1;;;42491:88:0;;11451:2:1;42491:88:0;;;11433:21:1;11490:2;11470:18;;;11463:30;11529:34;11509:18;;;11502:62;-1:-1:-1;;;11580:18:1;;;11573:39;11629:19;;42491:88:0;11249:405:1;42491:88:0;42631:6;;42605:10;42594:22;;;;:10;:22;;;;;;42631:6;;;;;;;;42594:33;;42619:8;;42594:22;:33;:::i;:::-;:43;;;;42586:73;;;;-1:-1:-1;;;42586:73:0;;12287:2:1;42586:73:0;;;12269:21:1;12326:2;12306:18;;;12299:30;-1:-1:-1;;;12345:18:1;;;12338:47;12402:18;;42586:73:0;12085:341:1;42586:73:0;42699:8;42687:20;;:9;;:20;;;;:::i;:::-;42674:9;:33;;42666:64;;;;-1:-1:-1;;;42666:64:0;;11104:2:1;42666:64:0;;;11086:21:1;11143:2;11123:18;;;11116:30;-1:-1:-1;;;11162:18:1;;;11155:48;11220:18;;42666:64:0;10902:342:1;42666:64:0;42750:10;42739:22;;;;:10;:22;;;;;:34;;42765:8;;42739:22;:34;;42765:8;;42739:34;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;42780:31;42790:10;42802:8;42780:31;;:9;:31::i;43482:114::-;37456:6;;43546:7;;-1:-1:-1;;;;;37456:6:0;20792:10;37603:23;37595:68;;;;-1:-1:-1;;;37595:68:0;;;;;;;:::i;:::-;-1:-1:-1;43569:21:0::1;43482:114:::0;:::o;24769:221::-;24833:7;-1:-1:-1;;;;;24861:19:0;;24853:75;;;;-1:-1:-1;;;24853:75:0;;12633:2:1;24853:75:0;;;12615:21:1;12672:2;12652:18;;;12645:30;12711:34;12691:18;;;12684:62;-1:-1:-1;;;12762:18:1;;;12755:41;12813:19;;24853:75:0;12431:407:1;24853:75:0;-1:-1:-1;;;;;;24954:19:0;;;;;:12;:19;;;;;:27;-1:-1:-1;;;;;24954:27:0;;24769:221::o;42823:85::-;42866:13;42895:7;42888:14;;;;;:::i;38034:103::-;37456:6;;-1:-1:-1;;;;;37456:6:0;20792:10;37603:23;37595:68;;;;-1:-1:-1;;;37595:68:0;;;;;;;:::i;:::-;38099:30:::1;38126:1;38099:18;:30::i;:::-;38034:103::o:0;26129:104::-;26185:13;26218:7;26211:14;;;;;:::i;27807:288::-;-1:-1:-1;;;;;27902:24:0;;20792:10;27902:24;;27894:63;;;;-1:-1:-1;;;27894:63:0;;14229:2:1;27894:63:0;;;14211:21:1;14268:2;14248:18;;;14241:30;14307:28;14287:18;;;14280:56;14353:18;;27894:63:0;14027:350:1;27894:63:0;20792:10;27970:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;27970:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;27970:53:0;;;;;;;;;;28039:48;;8595:41:1;;;27970:42:0;;20792:10;28039:48;;8568:18:1;28039:48:0;;;;;;;27807:288;;:::o;43602:110::-;37456:6;;-1:-1:-1;;;;;37456:6:0;20792:10;37603:23;37595:68;;;;-1:-1:-1;;;37595:68:0;;;;;;;:::i;:::-;43680:13:::1;:26:::0;;-1:-1:-1;;;;;;43680:26:0::1;-1:-1:-1::0;;;;;43680:26:0;;;::::1;::::0;;;::::1;::::0;;43602:110::o;28878:355::-;29037:28;29047:4;29053:2;29057:7;29037:9;:28::i;:::-;29098:48;29121:4;29127:2;29131:7;29140:5;29098:22;:48::i;:::-;29076:149;;;;-1:-1:-1;;;29076:149:0;;;;;;;:::i;:::-;28878:355;;;;:::o;43215:76::-;37456:6;;-1:-1:-1;;;;;37456:6:0;20792:10;37603:23;37595:68;;;;-1:-1:-1;;;37595:68:0;;;;;;;:::i;:::-;43271:5:::1;:14:::0;;-1:-1:-1;;43271:14:0::1;;::::0;;;::::1;::::0;;;::::1;::::0;;43215:76::o;41893:288::-;41966:13;41996:16;42004:7;29545:4;29579:12;-1:-1:-1;29569:22:0;29488:111;41996:16;41988:76;;;;-1:-1:-1;;;41988:76:0;;13813:2:1;41988:76:0;;;13795:21:1;13852:2;13832:18;;;13825:30;13891:34;13871:18;;;13864:62;-1:-1:-1;;;13942:18:1;;;13935:45;13997:19;;41988:76:0;13611:411:1;41988:76:0;42104:1;42086:7;42080:21;;;;;:::i;:::-;;;:25;:95;;;;;;;;;;;;;;;;;42132:7;42141:18;:7;:16;:18::i;:::-;42115:54;;;;;;;;;:::i;:::-;;;;;;;;;;;;;42073:102;41893:288;-1:-1:-1;;41893:288:0:o;43297:84::-;37456:6;;-1:-1:-1;;;;;37456:6:0;20792:10;37603:23;37595:68;;;;-1:-1:-1;;;37595:68:0;;;;;;;:::i;:::-;43359:6:::1;:16:::0;;::::1;::::0;;::::1;;;-1:-1:-1::0;;43359:16:0;;::::1;::::0;;;::::1;::::0;;43297:84::o;42187:194::-;37456:6;;-1:-1:-1;;;;;37456:6:0;20792:10;37603:23;37595:68;;;;-1:-1:-1;;;37595:68:0;;;;;;;:::i;:::-;42289:6:::1;42284:92;42299:19:::0;;::::1;42284:92;;;42334:34;42344:10;;42355:1;42344:13;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;42359:8;42334:9;:34::i;:::-;42320:3:::0;::::1;::::0;::::1;:::i;:::-;;;;42284:92;;38292:201:::0;37456:6;;-1:-1:-1;;;;;37456:6:0;20792:10;37603:23;37595:68;;;;-1:-1:-1;;;37595:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;38381:22:0;::::1;38373:73;;;::::0;-1:-1:-1;;;38373:73:0;;9476:2:1;38373:73:0::1;::::0;::::1;9458:21:1::0;9515:2;9495:18;;;9488:30;9554:34;9534:18;;;9527:62;-1:-1:-1;;;9605:18:1;;;9598:36;9651:19;;38373:73:0::1;9274:402:1::0;38373:73:0::1;38457:28;38476:8;38457:18;:28::i;43114:95::-:0;37456:6;;-1:-1:-1;;;;;37456:6:0;20792:10;37603:23;37595:68;;;;-1:-1:-1;;;37595:68:0;;;;;;;:::i;:::-;43182:9:::1;:21:::0;43114:95::o;33532:196::-;33647:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;33647:29:0;-1:-1:-1;;;;;33647:29:0;;;;;;;;;33692:28;;33647:24;;33692:28;;;;;;;33532:196;;;:::o;31631:1783::-;31746:35;31784:20;31796:7;31784:11;:20::i;:::-;31859:18;;31746:58;;-1:-1:-1;31817:22:0;;-1:-1:-1;;;;;31843:34:0;20792:10;-1:-1:-1;;;;;31843:34:0;;:87;;;-1:-1:-1;20792:10:0;31894:20;31906:7;31894:11;:20::i;:::-;-1:-1:-1;;;;;31894:36:0;;31843:87;:154;;;-1:-1:-1;31964:18:0;;31947:50;;20792:10;28166:164;:::i;31947:50::-;31817:181;;32019:17;32011:80;;;;-1:-1:-1;;;32011:80:0;;14584:2:1;32011:80:0;;;14566:21:1;14623:2;14603:18;;;14596:30;14662:34;14642:18;;;14635:62;-1:-1:-1;;;14713:18:1;;;14706:48;14771:19;;32011:80:0;14382:414:1;32011:80:0;32134:4;-1:-1:-1;;;;;32112:26:0;:13;:18;;;-1:-1:-1;;;;;32112:26:0;;32104:77;;;;-1:-1:-1;;;32104:77:0;;13045:2:1;32104:77:0;;;13027:21:1;13084:2;13064:18;;;13057:30;13123:34;13103:18;;;13096:62;-1:-1:-1;;;13174:18:1;;;13167:36;13220:19;;32104:77:0;12843:402:1;32104:77:0;-1:-1:-1;;;;;32200:16:0;;32192:66;;;;-1:-1:-1;;;32192:66:0;;10698:2:1;32192:66:0;;;10680:21:1;10737:2;10717:18;;;10710:30;10776:34;10756:18;;;10749:62;-1:-1:-1;;;10827:18:1;;;10820:35;10872:19;;32192:66:0;10496:401:1;32192:66:0;32379:49;32396:1;32400:7;32409:13;:18;;;32379:8;:49::i;:::-;-1:-1:-1;;;;;32633:18:0;;;;;;;:12;:18;;;;;;;;:31;;-1:-1:-1;;32633:31:0;;;-1:-1:-1;;;;;32633:31:0;;;-1:-1:-1;;32633:31:0;;;;;;;32679:16;;;;;;;;;:29;;;;;;;;-1:-1:-1;32679:29:0;;;;;;;;;;;;;32755:43;;;;;;;;;;32781:15;32755:43;;;;;;;;;;32732:20;;;:11;:20;;;;;;:66;;;;;;;;-1:-1:-1;;;;;;32732:66:0;;;;;;;-1:-1:-1;;;32732:66:0;;;;;;;;;;;;32633:18;33060:11;;32732:20;;33060:11;:::i;:::-;33127:1;33086:24;;;:11;:24;;;;;:29;33038:33;;-1:-1:-1;;;;;;33086:29:0;33082:227;;33150:20;33158:11;29545:4;29579:12;-1:-1:-1;29569:22:0;29488:111;33150:20;33146:152;;;33218:64;;;;;;;;33233:18;;-1:-1:-1;;;;;33218:64:0;;;;;;33253:28;;;;33218:64;;;;;;;;;;-1:-1:-1;33191:24:0;;;:11;:24;;;;;;;:91;;;;;;;;;-1:-1:-1;;;33191:91:0;-1:-1:-1;;;;;;33191:91:0;;;;;;;;;;;;33146:152;33345:7;33341:2;-1:-1:-1;;;;;33326:27:0;33335:4;-1:-1:-1;;;;;33326:27:0;;;;;;;;;;;33364:42;31735:1679;;;31631:1783;;;:::o;25235:472::-;-1:-1:-1;;;;;;;;;;;;;;;;;25338:16:0;25346:7;29545:4;29579:12;-1:-1:-1;29569:22:0;29488:111;25338:16;25330:71;;;;-1:-1:-1;;;25330:71:0;;9883:2:1;25330:71:0;;;9865:21:1;9922:2;9902:18;;;9895:30;9961:34;9941:18;;;9934:62;-1:-1:-1;;;10012:18:1;;;10005:40;10062:19;;25330:71:0;9681:406:1;25330:71:0;25434:7;25414:216;25468:31;25502:17;;;:11;:17;;;;;;;;;25468:51;;;;;;;;;-1:-1:-1;;;;;25468:51:0;;;;;-1:-1:-1;;;25468:51:0;;;;;;;;;;;;25538:28;25534:85;;25594:9;25235:472;-1:-1:-1;;;25235:472:0:o;25534:85::-;-1:-1:-1;25445:6:0;;;;:::i;:::-;;;;25414:216;;29607:104;29676:27;29686:2;29690:8;29676:27;;;;;;;;;;;;:9;:27::i;38653:191::-;38746:6;;;-1:-1:-1;;;;;38763:17:0;;;-1:-1:-1;;;;;;38763:17:0;;;;;;;38796:40;;38746:6;;;38763:17;38746:6;;38796:40;;38727:16;;38796:40;38716:128;38653:191;:::o;34293:804::-;34448:4;-1:-1:-1;;;;;34469:13:0;;3300:20;3348:8;34465:625;;34505:72;;-1:-1:-1;;;34505:72:0;;-1:-1:-1;;;;;34505:36:0;;;;;:72;;20792:10;;34556:4;;34562:7;;34571:5;;34505:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;34505:72:0;;;;;;;;-1:-1:-1;;34505:72:0;;;;;;;;;;;;:::i;:::-;;;34501:534;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;34751:13:0;;34747:273;;34794:61;;-1:-1:-1;;;34794:61:0;;;;;;;:::i;34747:273::-;34970:6;34964:13;34955:6;34951:2;34947:15;34940:38;34501:534;-1:-1:-1;;;;;;34628:55:0;-1:-1:-1;;;34628:55:0;;-1:-1:-1;34621:62:0;;34465:625;-1:-1:-1;35074:4:0;34465:625;34293:804;;;;;;:::o;398:723::-;454:13;675:10;671:53;;-1:-1:-1;;702:10:0;;;;;;;;;;;;-1:-1:-1;;;702:10:0;;;;;398:723::o;671:53::-;749:5;734:12;790:78;797:9;;790:78;;823:8;;;;:::i;:::-;;-1:-1:-1;846:10:0;;-1:-1:-1;854:2:0;846:10;;:::i;:::-;;;790:78;;;878:19;910:6;900:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;900:17:0;;878:39;;928:154;935:10;;928:154;;962:11;972:1;962:11;;:::i;:::-;;-1:-1:-1;1031:10:0;1039:2;1031:5;:10;:::i;:::-;1018:24;;:2;:24;:::i;:::-;1005:39;;988:6;995;988:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;988:56:0;;;;;;;;-1:-1:-1;1059:11:0;1068:2;1059:11;;:::i;:::-;;;928:154;;29988:1389;30111:20;30134:12;-1:-1:-1;;;;;30165:16:0;;30157:62;;;;-1:-1:-1;;;30157:62:0;;16588:2:1;30157:62:0;;;16570:21:1;16627:2;16607:18;;;16600:30;16666:34;16646:18;;;16639:62;-1:-1:-1;;;16717:18:1;;;16710:31;16758:19;;30157:62:0;16386:397:1;30157:62:0;30364:21;30372:12;29545:4;29579:12;-1:-1:-1;29569:22:0;29488:111;30364:21;30363:22;30355:64;;;;-1:-1:-1;;;30355:64:0;;16230:2:1;30355:64:0;;;16212:21:1;16269:2;16249:18;;;16242:30;16308:31;16288:18;;;16281:59;16357:18;;30355:64:0;16028:353:1;30355:64:0;30449:1;30438:8;:12;30430:60;;;;-1:-1:-1;;;30430:60:0;;15406:2:1;30430:60:0;;;15388:21:1;15445:2;15425:18;;;15418:30;15484:34;15464:18;;;15457:62;-1:-1:-1;;;15535:18:1;;;15528:33;15578:19;;30430:60:0;15204:399:1;30430:60:0;-1:-1:-1;;;;;30610:16:0;;30577:30;30610:16;;;:12;:16;;;;;;;;;30577:49;;;;;;;;;-1:-1:-1;;;;;30577:49:0;;;;;-1:-1:-1;;;30577:49:0;;;;;;;;;;;30656:135;;;;;;;;30682:19;;30577:49;;30656:135;;;30682:39;;30712:8;;30682:39;:::i;:::-;-1:-1:-1;;;;;30656:135:0;;;;;30771:8;30736:11;:24;;;:44;;;;:::i;:::-;-1:-1:-1;;;;;30656:135:0;;;;;;-1:-1:-1;;;;;30637:16:0;;;;;;;:12;:16;;;;;;;;:154;;;;;;;;-1:-1:-1;;;30637:154:0;;;;;;;;;;;;30830:43;;;;;;;;;;;30856:15;30830:43;;;;;;;;30802:25;;;:11;:25;;;;;;:71;;;;;;;;;-1:-1:-1;;;30802:71:0;-1:-1:-1;;;;;;30802:71:0;;;;;;;;;;;;;;;;;;30814:12;;30934:325;30958:8;30954:1;:12;30934:325;;;30993:38;;31018:12;;-1:-1:-1;;;;;30993:38:0;;;31010:1;;30993:38;;31010:1;;30993:38;31072:59;31103:1;31107:2;31111:12;31125:5;31072:22;:59::i;:::-;31046:172;;;;-1:-1:-1;;;31046:172:0;;;;;;;:::i;:::-;31233:14;;;;:::i;:::-;;;;30968:3;;;;;:::i;:::-;;;;30934:325;;;-1:-1:-1;31271:12:0;:27;;;31309:60;28878:355;-1:-1:-1;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14:631:1;78:5;108:18;149:2;141:6;138:14;135:40;;;155:18;;:::i;:::-;230:2;224:9;198:2;284:15;;-1:-1:-1;;280:24:1;;;306:2;276:33;272:42;260:55;;;330:18;;;350:22;;;327:46;324:72;;;376:18;;:::i;:::-;416:10;412:2;405:22;445:6;436:15;;475:6;467;460:22;515:3;506:6;501:3;497:16;494:25;491:45;;;532:1;529;522:12;491:45;582:6;577:3;570:4;562:6;558:17;545:44;637:1;630:4;621:6;613;609:19;605:30;598:41;;;;14:631;;;;;:::o;650:247::-;709:6;762:2;750:9;741:7;737:23;733:32;730:52;;;778:1;775;768:12;730:52;817:9;804:23;836:31;861:5;836:31;:::i;:::-;886:5;650:247;-1:-1:-1;;;650:247:1:o;1162:388::-;1230:6;1238;1291:2;1279:9;1270:7;1266:23;1262:32;1259:52;;;1307:1;1304;1297:12;1259:52;1346:9;1333:23;1365:31;1390:5;1365:31;:::i;:::-;1415:5;-1:-1:-1;1472:2:1;1457:18;;1444:32;1485:33;1444:32;1485:33;:::i;:::-;1537:7;1527:17;;;1162:388;;;;;:::o;1555:456::-;1632:6;1640;1648;1701:2;1689:9;1680:7;1676:23;1672:32;1669:52;;;1717:1;1714;1707:12;1669:52;1756:9;1743:23;1775:31;1800:5;1775:31;:::i;:::-;1825:5;-1:-1:-1;1882:2:1;1867:18;;1854:32;1895:33;1854:32;1895:33;:::i;:::-;1555:456;;1947:7;;-1:-1:-1;;;2001:2:1;1986:18;;;;1973:32;;1555:456::o;2016:794::-;2111:6;2119;2127;2135;2188:3;2176:9;2167:7;2163:23;2159:33;2156:53;;;2205:1;2202;2195:12;2156:53;2244:9;2231:23;2263:31;2288:5;2263:31;:::i;:::-;2313:5;-1:-1:-1;2370:2:1;2355:18;;2342:32;2383:33;2342:32;2383:33;:::i;:::-;2435:7;-1:-1:-1;2489:2:1;2474:18;;2461:32;;-1:-1:-1;2544:2:1;2529:18;;2516:32;2571:18;2560:30;;2557:50;;;2603:1;2600;2593:12;2557:50;2626:22;;2679:4;2671:13;;2667:27;-1:-1:-1;2657:55:1;;2708:1;2705;2698:12;2657:55;2731:73;2796:7;2791:2;2778:16;2773:2;2769;2765:11;2731:73;:::i;:::-;2721:83;;;2016:794;;;;;;;:::o;2815:416::-;2880:6;2888;2941:2;2929:9;2920:7;2916:23;2912:32;2909:52;;;2957:1;2954;2947:12;2909:52;2996:9;2983:23;3015:31;3040:5;3015:31;:::i;:::-;3065:5;-1:-1:-1;3122:2:1;3107:18;;3094:32;3164:15;;3157:23;3145:36;;3135:64;;3195:1;3192;3185:12;3236:315;3304:6;3312;3365:2;3353:9;3344:7;3340:23;3336:32;3333:52;;;3381:1;3378;3371:12;3333:52;3420:9;3407:23;3439:31;3464:5;3439:31;:::i;:::-;3489:5;3541:2;3526:18;;;;3513:32;;-1:-1:-1;;;3236:315:1:o;3556:689::-;3651:6;3659;3667;3720:2;3708:9;3699:7;3695:23;3691:32;3688:52;;;3736:1;3733;3726:12;3688:52;3776:9;3763:23;3805:18;3846:2;3838:6;3835:14;3832:34;;;3862:1;3859;3852:12;3832:34;3900:6;3889:9;3885:22;3875:32;;3945:7;3938:4;3934:2;3930:13;3926:27;3916:55;;3967:1;3964;3957:12;3916:55;4007:2;3994:16;4033:2;4025:6;4022:14;4019:34;;;4049:1;4046;4039:12;4019:34;4104:7;4097:4;4087:6;4084:1;4080:14;4076:2;4072:23;4068:34;4065:47;4062:67;;;4125:1;4122;4115:12;4062:67;4156:4;4148:13;;;;4180:6;;-1:-1:-1;4218:20:1;;;;4205:34;;3556:689;-1:-1:-1;;;;3556:689:1:o;4250:245::-;4308:6;4361:2;4349:9;4340:7;4336:23;4332:32;4329:52;;;4377:1;4374;4367:12;4329:52;4416:9;4403:23;4435:30;4459:5;4435:30;:::i;4500:249::-;4569:6;4622:2;4610:9;4601:7;4597:23;4593:32;4590:52;;;4638:1;4635;4628:12;4590:52;4670:9;4664:16;4689:30;4713:5;4689:30;:::i;4754:450::-;4823:6;4876:2;4864:9;4855:7;4851:23;4847:32;4844:52;;;4892:1;4889;4882:12;4844:52;4932:9;4919:23;4965:18;4957:6;4954:30;4951:50;;;4997:1;4994;4987:12;4951:50;5020:22;;5073:4;5065:13;;5061:27;-1:-1:-1;5051:55:1;;5102:1;5099;5092:12;5051:55;5125:73;5190:7;5185:2;5172:16;5167:2;5163;5159:11;5125:73;:::i;5209:180::-;5268:6;5321:2;5309:9;5300:7;5296:23;5292:32;5289:52;;;5337:1;5334;5327:12;5289:52;-1:-1:-1;5360:23:1;;5209:180;-1:-1:-1;5209:180:1:o;5394:269::-;5451:6;5504:2;5492:9;5483:7;5479:23;5475:32;5472:52;;;5520:1;5517;5510:12;5472:52;5559:9;5546:23;5609:4;5602:5;5598:16;5591:5;5588:27;5578:55;;5629:1;5626;5619:12;5668:257;5709:3;5747:5;5741:12;5774:6;5769:3;5762:19;5790:63;5846:6;5839:4;5834:3;5830:14;5823:4;5816:5;5812:16;5790:63;:::i;:::-;5907:2;5886:15;-1:-1:-1;;5882:29:1;5873:39;;;;5914:4;5869:50;;5668:257;-1:-1:-1;;5668:257:1:o;5930:185::-;5972:3;6010:5;6004:12;6025:52;6070:6;6065:3;6058:4;6051:5;6047:16;6025:52;:::i;:::-;6093:16;;;;;5930:185;-1:-1:-1;;5930:185:1:o;6238:1301::-;6515:3;6544:1;6577:6;6571:13;6607:3;6629:1;6657:9;6653:2;6649:18;6639:28;;6717:2;6706:9;6702:18;6739;6729:61;;6783:4;6775:6;6771:17;6761:27;;6729:61;6809:2;6857;6849:6;6846:14;6826:18;6823:38;6820:165;;;-1:-1:-1;;;6884:33:1;;6940:4;6937:1;6930:15;6970:4;6891:3;6958:17;6820:165;7001:18;7028:104;;;;7146:1;7141:320;;;;6994:467;;7028:104;-1:-1:-1;;7061:24:1;;7049:37;;7106:16;;;;-1:-1:-1;7028:104:1;;7141:320;18826:1;18819:14;;;18863:4;18850:18;;7236:1;7250:165;7264:6;7261:1;7258:13;7250:165;;;7342:14;;7329:11;;;7322:35;7385:16;;;;7279:10;;7250:165;;;7254:3;;7444:6;7439:3;7435:16;7428:23;;6994:467;;;;;;;7477:56;7502:30;7528:3;7520:6;7502:30;:::i;:::-;-1:-1:-1;;;6180:20:1;;6225:1;6216:11;;6120:113;7477:56;7470:63;6238:1301;-1:-1:-1;;;;;6238:1301:1:o;7962:488::-;-1:-1:-1;;;;;8231:15:1;;;8213:34;;8283:15;;8278:2;8263:18;;8256:43;8330:2;8315:18;;8308:34;;;8378:3;8373:2;8358:18;;8351:31;;;8156:4;;8399:45;;8424:19;;8416:6;8399:45;:::i;:::-;8391:53;7962:488;-1:-1:-1;;;;;;7962:488:1:o;8647:219::-;8796:2;8785:9;8778:21;8759:4;8816:44;8856:2;8845:9;8841:18;8833:6;8816:44;:::i;13250:356::-;13452:2;13434:21;;;13471:18;;;13464:30;13530:34;13525:2;13510:18;;13503:62;13597:2;13582:18;;13250:356::o;15608:415::-;15810:2;15792:21;;;15849:2;15829:18;;;15822:30;15888:34;15883:2;15868:18;;15861:62;-1:-1:-1;;;15954:2:1;15939:18;;15932:49;16013:3;15998:19;;15608:415::o;18879:253::-;18919:3;-1:-1:-1;;;;;19008:2:1;19005:1;19001:10;19038:2;19035:1;19031:10;19069:3;19065:2;19061:12;19056:3;19053:21;19050:47;;;19077:18;;:::i;:::-;19113:13;;18879:253;-1:-1:-1;;;;18879:253:1:o;19137:128::-;19177:3;19208:1;19204:6;19201:1;19198:13;19195:39;;;19214:18;;:::i;:::-;-1:-1:-1;19250:9:1;;19137:128::o;19270:204::-;19308:3;19344:4;19341:1;19337:12;19376:4;19373:1;19369:12;19411:3;19405:4;19401:14;19396:3;19393:23;19390:49;;;19419:18;;:::i;:::-;19455:13;;19270:204;-1:-1:-1;;;19270:204:1:o;19479:120::-;19519:1;19545;19535:35;;19550:18;;:::i;:::-;-1:-1:-1;19584:9:1;;19479:120::o;19604:168::-;19644:7;19710:1;19706;19702:6;19698:14;19695:1;19692:21;19687:1;19680:9;19673:17;19669:45;19666:71;;;19717:18;;:::i;:::-;-1:-1:-1;19757:9:1;;19604:168::o;19777:125::-;19817:4;19845:1;19842;19839:8;19836:34;;;19850:18;;:::i;:::-;-1:-1:-1;19887:9:1;;19777:125::o;19907:258::-;19979:1;19989:113;20003:6;20000:1;19997:13;19989:113;;;20079:11;;;20073:18;20060:11;;;20053:39;20025:2;20018:10;19989:113;;;20120:6;20117:1;20114:13;20111:48;;;-1:-1:-1;;20155:1:1;20137:16;;20130:27;19907:258::o;20170:136::-;20209:3;20237:5;20227:39;;20246:18;;:::i;:::-;-1:-1:-1;;;20282:18:1;;20170:136::o;20311:380::-;20390:1;20386:12;;;;20433;;;20454:61;;20508:4;20500:6;20496:17;20486:27;;20454:61;20561:2;20553:6;20550:14;20530:18;20527:38;20524:161;;;20607:10;20602:3;20598:20;20595:1;20588:31;20642:4;20639:1;20632:15;20670:4;20667:1;20660:15;20524:161;;20311:380;;;:::o;20696:135::-;20735:3;-1:-1:-1;;20756:17:1;;20753:43;;;20776:18;;:::i;:::-;-1:-1:-1;20823:1:1;20812:13;;20696:135::o;20836:112::-;20868:1;20894;20884:35;;20899:18;;:::i;:::-;-1:-1:-1;20933:9:1;;20836:112::o;20953:127::-;21014:10;21009:3;21005:20;21002:1;20995:31;21045:4;21042:1;21035:15;21069:4;21066:1;21059:15;21085:127;21146:10;21141:3;21137:20;21134:1;21127:31;21177:4;21174:1;21167:15;21201:4;21198:1;21191:15;21217:127;21278:10;21273:3;21269:20;21266:1;21259:31;21309:4;21306:1;21299:15;21333:4;21330:1;21323:15;21349:127;21410:10;21405:3;21401:20;21398:1;21391:31;21441:4;21438:1;21431:15;21465:4;21462:1;21455:15;21481:131;-1:-1:-1;;;;;21556:31:1;;21546:42;;21536:70;;21602:1;21599;21592:12;21617:131;-1:-1:-1;;;;;;21691:32:1;;21681:43;;21671:71;;21738:1;21735;21728:12

Swarm Source

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