ETH Price: $2,957.44 (+0.89%)
Gas: 3 Gwei

Token

Fundaes (FUNS)
 

Overview

Max Total Supply

2,222 FUNS

Holders

485

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
lynner.eth
Balance
5 FUNS
0xfde08538af13608e87d7a1bf62d52cf18f52ab6e
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

Fundaes is a community-driven collectibles NFT project consisting of 2222 FUNS. Fundae NFTs are made up with over 150 exciting traits of eyes, toppings, mouths, body and backgrounds.

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
Fundaes

Compiler Version
v0.8.12+commit.f00d7308

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-03-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 Fundaes is ERC721A, Ownable {
  using Strings for uint256;
  address public contractOwner;
  uint256 public presalePrice = 0.08 ether;
  uint256 public mintPrice = 0.08 ether;
  uint256 public supply = 2222;
  string private baseURI = "ipfs://QmSr3Jx7dSNXA7JCYpsVPpsQtLJxzyZJAYsTvF2jJdFpJv/";
  bytes32 public sweetMerkleRoot;
  bytes32 public ogMerkleRoot;
  bytes32 public giveawayMerkleRoot;
  uint8 public phase = 1;
  uint8 public maxBuy = 10;
  uint8 public ogMax = 5;
  uint8 public sweetlistMax = 3;
  uint8 public maxGiveaway = 3;

    
  mapping(address => bytes1) public manualSweetlist;
  mapping(address => uint8)  public walletBuys;

  constructor() ERC721A("Fundaes", "FUNS") {
    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);
    }
  }

  //Team Mint 
   function teamMint(uint8 quantity) external {
    require(phase != 0, "Sale has not started");
    require(totalSupply() + quantity <= supply, "You can't mint more then the total supply");

    require(manualSweetlist[msg.sender] >= 0x01, "No Team Mints!");
 
    manualSweetlist[msg.sender] = bytes1(uint8(manualSweetlist[msg.sender]) - quantity);

    _safeMint(msg.sender, quantity);

    }

    function giveawayMint(uint8 quantity, bytes32[] calldata _merkleProof) external payable {
        require(phase != 0, "Sale has not started");
        require(totalSupply() + quantity <= supply, "You can't mint more then the total supply");
        require(walletBuys[msg.sender] + quantity  <= maxGiveaway, "You can't mint more then the max giveaway amount");
    
        bytes32 leaf = keccak256(abi.encodePacked(msg.sender));
        require(MerkleProof.verify(_merkleProof, giveawayMerkleRoot, leaf), "Invalid proof!");

        walletBuys[msg.sender] += quantity;

        _safeMint(msg.sender, quantity);
    }


  function mint(uint256 quantity) external payable {
    require(phase >= 2, "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");

    _safeMint(msg.sender, quantity);
  }

  function sweetlistMint(uint8 _mintAmount, bytes32[] calldata _merkleProof) public payable {
    // Verify sweetlist requirements
    require(phase == 1, "Sale has not started");
    require(walletBuys[msg.sender] + _mintAmount <= sweetlistMax, "Max presale minted for this wallet!");
    require(msg.value >= presalePrice * _mintAmount, "Insufficient funds");
    
    bytes32 leaf = keccak256(abi.encodePacked(msg.sender));
    require(MerkleProof.verify(_merkleProof, sweetMerkleRoot, leaf), "Invalid proof!");

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

    function ogMint(uint8 _mintAmount, bytes32[] calldata _merkleProof) public payable {
    // Verify sweetlist requirements
    require(phase == 1, "Sale has not started");
    require(walletBuys[msg.sender] + _mintAmount <= ogMax, "Max presale minted for this wallet!");
    require(msg.value >= presalePrice * _mintAmount, "Insufficient funds");
    
    bytes32 leaf = keccak256(abi.encodePacked(msg.sender));
    require(MerkleProof.verify(_merkleProof, ogMerkleRoot, leaf), "Invalid proof!");

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

  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 setPresalePrice (uint256 _newPrice) external onlyOwner {
    presalePrice = _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 changeSweetRootHash(bytes32 _rootHash) external onlyOwner {
    sweetMerkleRoot = _rootHash;
  }

  function changeOGRootHash(bytes32 _rootHash) external onlyOwner {
    ogMerkleRoot = _rootHash;
  }

  function changeGiveawayRootHash(bytes32 _rootHash) external onlyOwner {
      giveawayMerkleRoot = _rootHash;
  }

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

  function sweetlist(address _user, bytes1 _status) external onlyOwner {
        manualSweetlist[_user] = _status;
    }

  function sweetlistAddress(address[] memory _user, bytes1 _status) external onlyOwner {
      for (uint256 i = 0; i < _user.length; i++) {
          manualSweetlist[_user[i]] = _status;
      }
  }

  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":"bytes32","name":"_rootHash","type":"bytes32"}],"name":"changeGiveawayRootHash","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_rootHash","type":"bytes32"}],"name":"changeOGRootHash","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_rootHash","type":"bytes32"}],"name":"changeSweetRootHash","outputs":[],"stateMutability":"nonpayable","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":[],"name":"giveawayMerkleRoot","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint8","name":"quantity","type":"uint8"},{"internalType":"bytes32[]","name":"_merkleProof","type":"bytes32[]"}],"name":"giveawayMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"manualSweetlist","outputs":[{"internalType":"bytes1","name":"","type":"bytes1"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxBuy","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxGiveaway","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"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":"ogMax","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"ogMerkleRoot","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint8","name":"_mintAmount","type":"uint8"},{"internalType":"bytes32[]","name":"_merkleProof","type":"bytes32[]"}],"name":"ogMint","outputs":[],"stateMutability":"payable","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":"presalePrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":[{"internalType":"uint256","name":"_newPrice","type":"uint256"}],"name":"setPresalePrice","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":"sweetMerkleRoot","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_user","type":"address"},{"internalType":"bytes1","name":"_status","type":"bytes1"}],"name":"sweetlist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"_user","type":"address[]"},{"internalType":"bytes1","name":"_status","type":"bytes1"}],"name":"sweetlistAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sweetlistMax","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint8","name":"_mintAmount","type":"uint8"},{"internalType":"bytes32[]","name":"_merkleProof","type":"bytes32[]"}],"name":"sweetlistMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint8","name":"quantity","type":"uint8"}],"name":"teamMint","outputs":[],"stateMutability":"nonpayable","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"}]

67011c37937e0800006009819055600a556108ae600b5560e060405260366080818152906200332f60a03980516200004091600c9160209091019062000142565b506010805464ffffffffff1916640303050a011790553480156200006357600080fd5b50604080518082018252600781526646756e6461657360c81b60208083019182528351808501909452600484526346554e5360e01b908401528151919291620000af9160019162000142565b508051620000c590600290602084019062000142565b5050600160005550620000d833620000f0565b600880546001600160a01b0319163317905562000225565b600780546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b8280546200015090620001e8565b90600052602060002090601f016020900481019282620001745760008555620001bf565b82601f106200018f57805160ff1916838001178555620001bf565b82800160010185558215620001bf579182015b82811115620001bf578251825591602001919060010190620001a2565b50620001cd929150620001d1565b5090565b5b80821115620001cd5760008155600101620001d2565b600181811c90821680620001fd57607f821691505b602082108114156200021f57634e487b7160e01b600052602260045260246000fd5b50919050565b6130fa80620002356000396000f3fe6080604052600436106103345760003560e01c8063714c5398116101ab578063b88d4fde116100f7578063dfcf15b011610095578063ec3ccec21161006f578063ec3ccec21461097b578063f2fde38b14610991578063f4a0a528146109b1578063f62ed197146109d157600080fd5b8063dfcf15b0146108ff578063e42a5cdc1461091f578063e985e9c51461093257600080fd5b8063c87b56dd116100d1578063c87b56dd1461086f578063ce606ee01461088f578063dbdf2dc0146108af578063dea96c98146108cf57600080fd5b8063b88d4fde146107e6578063bc4c9ffa14610806578063c03afb591461084f57600080fd5b806395d89b4111610164578063a69f235c1161013e578063a69f235c1461076c578063a98095fe1461078c578063b14f2a39146107ac578063b1c9fe6e146107cc57600080fd5b806395d89b4114610724578063a0712d6814610739578063a22cb4651461074c57600080fd5b8063714c539814610689578063715018a61461069e5780637b671780146106b3578063842e481c146106d357806387abdc2a146106e65780638da5cb5b1461070657600080fd5b80633ccfd60b1161028557806364342685116102235780636ecf2b7f116101fd5780636ecf2b7f146106145780636f9fb98a1461063557806370a082311461064a57806370db69d61461066a57600080fd5b806364342685146105cb5780636817c76c146105de5780636bd08049146105f457600080fd5b80634f6ccce71161025f5780634f6ccce71461054b57806355f804b31461056b5780635ae1250b1461058b5780636352211e146105ab57600080fd5b80633ccfd60b146104ef57806342842e0e146104f7578063459ba3ae1461051757600080fd5b8063095ea7b3116102f257806323b872dd116102cc57806323b872dd1461046f578063243fce681461048f5780632f745c59146104af5780633549345e146104cf57600080fd5b8063095ea7b3146104245780630a3025301461044457806318160ddd1461045a57600080fd5b80620e7fa81461033957806301ffc9a714610362578063047fc9aa14610392578063066e4940146103a857806306fdde03146103ca578063081812fc146103ec575b600080fd5b34801561034557600080fd5b5061034f60095481565b6040519081526020015b60405180910390f35b34801561036e57600080fd5b5061038261037d36600461274d565b6109e7565b6040519015158152602001610359565b34801561039e57600080fd5b5061034f600b5481565b3480156103b457600080fd5b506103c86103c3366004612771565b610a54565b005b3480156103d657600080fd5b506103df610a8c565b60405161035991906127e2565b3480156103f857600080fd5b5061040c610407366004612771565b610b1e565b6040516001600160a01b039091168152602001610359565b34801561043057600080fd5b506103c861043f36600461280a565b610ba9565b34801561045057600080fd5b5061034f600e5481565b34801561046657600080fd5b5061034f610cc1565b34801561047b57600080fd5b506103c861048a366004612836565b610cd7565b34801561049b57600080fd5b506103c86104aa366004612771565b610ce2565b3480156104bb57600080fd5b5061034f6104ca36600461280a565b610d11565b3480156104db57600080fd5b506103c86104ea366004612771565b610e88565b6103c8610eb7565b34801561050357600080fd5b506103c8610512366004612836565b610f44565b34801561052357600080fd5b5060105461053990640100000000900460ff1681565b60405160ff9091168152602001610359565b34801561055757600080fd5b5061034f610566366004612771565b610f5f565b34801561057757600080fd5b506103c8610586366004612914565b610fc7565b34801561059757600080fd5b506103c86105a6366004612771565b611008565b3480156105b757600080fd5b5061040c6105c6366004612771565b611037565b6103c86105d93660046129bd565b611049565b3480156105ea57600080fd5b5061034f600a5481565b34801561060057600080fd5b506103c861060f366004612771565b6111ea565b34801561062057600080fd5b50601054610539906301000000900460ff1681565b34801561064157600080fd5b5061034f611219565b34801561065657600080fd5b5061034f610665366004612a0f565b61124b565b34801561067657600080fd5b5060105461053990610100900460ff1681565b34801561069557600080fd5b506103df6112dc565b3480156106aa57600080fd5b506103c86112eb565b3480156106bf57600080fd5b506103c86106ce366004612a2c565b611321565b6103c86106e13660046129bd565b611424565b3480156106f257600080fd5b506010546105399062010000900460ff1681565b34801561071257600080fd5b506007546001600160a01b031661040c565b34801561073057600080fd5b506103df61153a565b6103c8610747366004612771565b611549565b34801561075857600080fd5b506103c8610767366004612a47565b611648565b34801561077857600080fd5b506103c8610787366004612a9d565b61170d565b34801561079857600080fd5b506103c86107a7366004612ad2565b611765565b3480156107b857600080fd5b506103c86107c7366004612a0f565b611805565b3480156107d857600080fd5b506010546105399060ff1681565b3480156107f257600080fd5b506103c8610801366004612b95565b611851565b34801561081257600080fd5b50610836610821366004612a0f565b60116020526000908152604090205460f81b81565b6040516001600160f81b03199091168152602001610359565b34801561085b57600080fd5b506103c861086a366004612a2c565b611884565b34801561087b57600080fd5b506103df61088a366004612771565b6118c4565b34801561089b57600080fd5b5060085461040c906001600160a01b031681565b3480156108bb57600080fd5b506103c86108ca366004612a2c565b611991565b3480156108db57600080fd5b506105396108ea366004612a0f565b60126020526000908152604090205460ff1681565b34801561090b57600080fd5b506103c861091a366004612c14565b6119d7565b6103c861092d3660046129bd565b611a4e565b34801561093e57600080fd5b5061038261094d366004612c5f565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b34801561098757600080fd5b5061034f600f5481565b34801561099d57600080fd5b506103c86109ac366004612a0f565b611bb3565b3480156109bd57600080fd5b506103c86109cc366004612771565b611c4b565b3480156109dd57600080fd5b5061034f600d5481565b60006001600160e01b031982166380ac58cd60e01b1480610a1857506001600160e01b03198216635b5e139f60e01b145b80610a3357506001600160e01b0319821663780e9d6360e01b145b80610a4e57506301ffc9a760e01b6001600160e01b03198316145b92915050565b6007546001600160a01b03163314610a875760405162461bcd60e51b8152600401610a7e90612c8d565b60405180910390fd5b600f55565b606060018054610a9b90612cc2565b80601f0160208091040260200160405190810160405280929190818152602001828054610ac790612cc2565b8015610b145780601f10610ae957610100808354040283529160200191610b14565b820191906000526020600020905b815481529060010190602001808311610af757829003601f168201915b5050505050905090565b6000610b2b826000541190565b610b8d5760405162461bcd60e51b815260206004820152602d60248201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560448201526c3c34b9ba32b73a103a37b5b2b760991b6064820152608401610a7e565b506000908152600560205260409020546001600160a01b031690565b6000610bb482611037565b9050806001600160a01b0316836001600160a01b03161415610c235760405162461bcd60e51b815260206004820152602260248201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60448201526132b960f11b6064820152608401610a7e565b336001600160a01b0382161480610c3f5750610c3f813361094d565b610cb15760405162461bcd60e51b815260206004820152603960248201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656420666f7220616c6c000000000000006064820152608401610a7e565b610cbc838383611c7a565b505050565b60006001600054610cd29190612d13565b905090565b610cbc838383611cd6565b6007546001600160a01b03163314610d0c5760405162461bcd60e51b8152600401610a7e90612c8d565b600d55565b6000610d1c8361124b565b8210610d755760405162461bcd60e51b815260206004820152602260248201527f455243373231413a206f776e657220696e646578206f7574206f6620626f756e604482015261647360f01b6064820152608401610a7e565b6000610d7f610cc1565b905060008060005b83811015610e28576000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b9091046001600160401b03169183019190915215610dd957805192505b876001600160a01b0316836001600160a01b03161415610e155786841415610e0757509350610a4e92505050565b83610e1181612d2a565b9450505b5080610e2081612d2a565b915050610d87565b5060405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060448201526d0deeedccae440c4f240d2dcc8caf60931b6064820152608401610a7e565b6007546001600160a01b03163314610eb25760405162461bcd60e51b8152600401610a7e90612c8d565b600955565b6007546001600160a01b03163314610ee15760405162461bcd60e51b8152600401610a7e90612c8d565b6008546040516000916001600160a01b03169047908381818185875af1925050503d8060008114610f2e576040519150601f19603f3d011682016040523d82523d6000602084013e610f33565b606091505b5050905080610f4157600080fd5b50565b610cbc83838360405180602001604052806000815250611851565b6000610f69610cc1565b8210610fc35760405162461bcd60e51b815260206004820152602360248201527f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f756044820152626e647360e81b6064820152608401610a7e565b5090565b6007546001600160a01b03163314610ff15760405162461bcd60e51b8152600401610a7e90612c8d565b805161100490600c9060208401906126a7565b5050565b6007546001600160a01b031633146110325760405162461bcd60e51b8152600401610a7e90612c8d565b600e55565b60006110428261201b565b5192915050565b60105460ff1660011461106e5760405162461bcd60e51b8152600401610a7e90612d45565b6010543360009081526012602052604090205460ff630100000090920482169161109a91869116612d73565b60ff1611156110bb5760405162461bcd60e51b8152600401610a7e90612d98565b8260ff166009546110cc9190612ddb565b3410156110eb5760405162461bcd60e51b8152600401610a7e90612dfa565b6040516001600160601b03193360601b16602082015260009060340160405160208183030381529060405280519060200120905061116083838080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525050600d5491508490506120fa565b61119d5760405162461bcd60e51b815260206004820152600e60248201526d496e76616c69642070726f6f662160901b6044820152606401610a7e565b33600090815260126020526040812080548692906111bf90849060ff16612d73565b92506101000a81548160ff021916908360ff1602179055506111e4338560ff16612110565b50505050565b6007546001600160a01b031633146112145760405162461bcd60e51b8152600401610a7e90612c8d565b600b55565b6007546000906001600160a01b031633146112465760405162461bcd60e51b8152600401610a7e90612c8d565b504790565b60006001600160a01b0382166112b75760405162461bcd60e51b815260206004820152602b60248201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b6064820152608401610a7e565b506001600160a01b03166000908152600460205260409020546001600160801b031690565b6060600c8054610a9b90612cc2565b6007546001600160a01b031633146113155760405162461bcd60e51b8152600401610a7e90612c8d565b61131f600061212a565b565b60105460ff166113435760405162461bcd60e51b8152600401610a7e90612d45565b600b548160ff16611352610cc1565b61135c9190612e26565b111561137a5760405162461bcd60e51b8152600401610a7e90612e3e565b33600090815260116020526040902054600160f81b60f89190911b6001600160f81b03191610156113de5760405162461bcd60e51b815260206004820152600e60248201526d4e6f205465616d204d696e74732160901b6044820152606401610a7e565b336000908152601160205260409020546113fc90829060ff16612e87565b336000818152601160205260409020805460ff191660ff938416179055610f41918316612110565b60105460ff166001146114495760405162461bcd60e51b8152600401610a7e90612d45565b6010543360009081526012602052604090205460ff6201000090920482169161147491869116612d73565b60ff1611156114955760405162461bcd60e51b8152600401610a7e90612d98565b8260ff166009546114a69190612ddb565b3410156114c55760405162461bcd60e51b8152600401610a7e90612dfa565b6040516001600160601b03193360601b16602082015260009060340160405160208183030381529060405280519060200120905061116083838080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525050600e5491508490506120fa565b606060028054610a9b90612cc2565b601054600260ff90911610156115715760405162461bcd60e51b8152600401610a7e90612d45565b600b548161157d610cc1565b6115879190612e26565b11156115a55760405162461bcd60e51b8152600401610a7e90612e3e565b6010543360009081526012602052604090205460ff6101009092048216916115cf91849116612e26565b11156116115760405162461bcd60e51b8152602060048201526011602482015270109d5e481b1a5b5a5d081c995858da1959607a1b6044820152606401610a7e565b80600a5461161f9190612ddb565b34101561163e5760405162461bcd60e51b8152600401610a7e90612dfa565b610f413382612110565b6001600160a01b0382163314156116a15760405162461bcd60e51b815260206004820152601a60248201527f455243373231413a20617070726f766520746f2063616c6c65720000000000006044820152606401610a7e565b3360008181526006602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6007546001600160a01b031633146117375760405162461bcd60e51b8152600401610a7e90612c8d565b6001600160a01b03919091166000908152601160205260409020805460ff191660f89290921c919091179055565b6007546001600160a01b0316331461178f5760405162461bcd60e51b8152600401610a7e90612c8d565b60005b8251811015610cbc5781601160008584815181106117b2576117b2612eaa565b60200260200101516001600160a01b03166001600160a01b0316815260200190815260200160002060006101000a81548160ff021916908360f81c021790555080806117fd90612d2a565b915050611792565b6007546001600160a01b0316331461182f5760405162461bcd60e51b8152600401610a7e90612c8d565b600880546001600160a01b0319166001600160a01b0392909216919091179055565b61185c848484611cd6565b6118688484848461217c565b6111e45760405162461bcd60e51b8152600401610a7e90612ec0565b6007546001600160a01b031633146118ae5760405162461bcd60e51b8152600401610a7e90612c8d565b6010805460ff191660ff92909216919091179055565b60606118d1826000541190565b6119355760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610a7e565b6000600c805461194490612cc2565b9050116119605760405180602001604052806000815250610a4e565b600c61196b8361227b565b60405160200161197c929190612f2f565b60405160208183030381529060405292915050565b6007546001600160a01b031633146119bb5760405162461bcd60e51b8152600401610a7e90612c8d565b6010805460ff9092166101000261ff0019909216919091179055565b6007546001600160a01b03163314611a015760405162461bcd60e51b8152600401610a7e90612c8d565b60005b828110156111e457611a3c848483818110611a2157611a21612eaa565b9050602002016020810190611a369190612a0f565b83612110565b80611a4681612d2a565b915050611a04565b60105460ff16611a705760405162461bcd60e51b8152600401610a7e90612d45565b600b548360ff16611a7f610cc1565b611a899190612e26565b1115611aa75760405162461bcd60e51b8152600401610a7e90612e3e565b6010543360009081526012602052604090205460ff640100000000909204821691611ad491869116612d73565b60ff161115611b3e5760405162461bcd60e51b815260206004820152603060248201527f596f752063616e2774206d696e74206d6f7265207468656e20746865206d617860448201526f0819da5d99585dd85e48185b5bdd5b9d60821b6064820152608401610a7e565b6040516001600160601b03193360601b16602082015260009060340160405160208183030381529060405280519060200120905061116083838080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525050600f5491508490506120fa565b6007546001600160a01b03163314611bdd5760405162461bcd60e51b8152600401610a7e90612c8d565b6001600160a01b038116611c425760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610a7e565b610f418161212a565b6007546001600160a01b03163314611c755760405162461bcd60e51b8152600401610a7e90612c8d565b600a55565b60008281526005602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6000611ce18261201b565b80519091506000906001600160a01b0316336001600160a01b03161480611d18575033611d0d84610b1e565b6001600160a01b0316145b80611d2a57508151611d2a903361094d565b905080611d945760405162461bcd60e51b815260206004820152603260248201527f455243373231413a207472616e736665722063616c6c6572206973206e6f74206044820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b6064820152608401610a7e565b846001600160a01b031682600001516001600160a01b031614611e085760405162461bcd60e51b815260206004820152602660248201527f455243373231413a207472616e736665722066726f6d20696e636f72726563746044820152651037bbb732b960d11b6064820152608401610a7e565b6001600160a01b038416611e6c5760405162461bcd60e51b815260206004820152602560248201527f455243373231413a207472616e7366657220746f20746865207a65726f206164604482015264647265737360d81b6064820152608401610a7e565b611e7c6000848460000151611c7a565b6001600160a01b03858116600090815260046020908152604080832080546fffffffffffffffffffffffffffffffff198082166001600160801b0392831660001901831617909255898616808652838620805493841693831660019081019093169390931790925582518084018452918252426001600160401b039081168386019081528a8752600390955292852091518254945196166001600160e01b031990941693909317600160a01b95909216949094021790925590611f40908590612e26565b6000818152600360205260409020549091506001600160a01b0316611fd157611f6a816000541190565b15611fd15760408051808201825284516001600160a01b0390811682526020808701516001600160401b039081168285019081526000878152600390935294909120925183549451909116600160a01b026001600160e01b03199094169116179190911790555b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b505050505050565b604080518082019091526000808252602082015261203a826000541190565b6120995760405162461bcd60e51b815260206004820152602a60248201527f455243373231413a206f776e657220717565727920666f72206e6f6e657869736044820152693a32b73a103a37b5b2b760b11b6064820152608401610a7e565b815b6000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b9091046001600160401b031691830191909152156120e7579392505050565b50806120f281612fea565b91505061209b565b6000826121078584612378565b14949350505050565b6110048282604051806020016040528060008152506123ec565b600780546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b60006001600160a01b0384163b1561226f57604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906121c0903390899088908890600401613001565b6020604051808303816000875af19250505080156121fb575060408051601f3d908101601f191682019092526121f89181019061303e565b60015b612255573d808015612229576040519150601f19603f3d011682016040523d82523d6000602084013e61222e565b606091505b50805161224d5760405162461bcd60e51b8152600401610a7e90612ec0565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050612273565b5060015b949350505050565b60608161229f5750506040805180820190915260018152600360fc1b602082015290565b8160005b81156122c957806122b381612d2a565b91506122c29050600a83613071565b91506122a3565b6000816001600160401b038111156122e3576122e3612877565b6040519080825280601f01601f19166020018201604052801561230d576020820181803683370190505b5090505b841561227357612322600183612d13565b915061232f600a86613085565b61233a906030612e26565b60f81b81838151811061234f5761234f612eaa565b60200101906001600160f81b031916908160001a905350612371600a86613071565b9450612311565b600081815b84518110156123e457600085828151811061239a5761239a612eaa565b602002602001015190508083116123c057600083815260208290526040902092506123d1565b600081815260208490526040902092505b50806123dc81612d2a565b91505061237d565b509392505050565b6000546001600160a01b03841661244f5760405162461bcd60e51b815260206004820152602160248201527f455243373231413a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b6064820152608401610a7e565b61245a816000541190565b156124a75760405162461bcd60e51b815260206004820152601d60248201527f455243373231413a20746f6b656e20616c7265616479206d696e7465640000006044820152606401610a7e565b600083116125035760405162461bcd60e51b815260206004820152602360248201527f455243373231413a207175616e74697479206d7573742062652067726561746560448201526207220360ec1b6064820152608401610a7e565b6001600160a01b0384166000908152600460209081526040918290208251808401845290546001600160801b038082168352600160801b909104169181019190915281518083019092528051909190819061255f908790613099565b6001600160801b0316815260200185836020015161257d9190613099565b6001600160801b039081169091526001600160a01b0380881660008181526004602090815260408083208751978301518716600160801b029790961696909617909455845180860186529182526001600160401b034281168386019081528883526003909552948120915182549451909516600160a01b026001600160e01b031990941694909216939093179190911790915582905b8581101561269c5760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4612660600088848861217c565b61267c5760405162461bcd60e51b8152600401610a7e90612ec0565b8161268681612d2a565b925050808061269490612d2a565b915050612613565b506000819055612013565b8280546126b390612cc2565b90600052602060002090601f0160209004810192826126d5576000855561271b565b82601f106126ee57805160ff191683800117855561271b565b8280016001018555821561271b579182015b8281111561271b578251825591602001919060010190612700565b50610fc39291505b80821115610fc35760008155600101612723565b6001600160e01b031981168114610f4157600080fd5b60006020828403121561275f57600080fd5b813561276a81612737565b9392505050565b60006020828403121561278357600080fd5b5035919050565b60005b838110156127a557818101518382015260200161278d565b838111156111e45750506000910152565b600081518084526127ce81602086016020860161278a565b601f01601f19169290920160200192915050565b60208152600061276a60208301846127b6565b6001600160a01b0381168114610f4157600080fd5b6000806040838503121561281d57600080fd5b8235612828816127f5565b946020939093013593505050565b60008060006060848603121561284b57600080fd5b8335612856816127f5565b92506020840135612866816127f5565b929592945050506040919091013590565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f191681016001600160401b03811182821017156128b5576128b5612877565b604052919050565b60006001600160401b038311156128d6576128d6612877565b6128e9601f8401601f191660200161288d565b90508281528383830111156128fd57600080fd5b828260208301376000602084830101529392505050565b60006020828403121561292657600080fd5b81356001600160401b0381111561293c57600080fd5b8201601f8101841361294d57600080fd5b612273848235602084016128bd565b803560ff8116811461296d57600080fd5b919050565b60008083601f84011261298457600080fd5b5081356001600160401b0381111561299b57600080fd5b6020830191508360208260051b85010111156129b657600080fd5b9250929050565b6000806000604084860312156129d257600080fd5b6129db8461295c565b925060208401356001600160401b038111156129f657600080fd5b612a0286828701612972565b9497909650939450505050565b600060208284031215612a2157600080fd5b813561276a816127f5565b600060208284031215612a3e57600080fd5b61276a8261295c565b60008060408385031215612a5a57600080fd5b8235612a65816127f5565b915060208301358015158114612a7a57600080fd5b809150509250929050565b80356001600160f81b03198116811461296d57600080fd5b60008060408385031215612ab057600080fd5b8235612abb816127f5565b9150612ac960208401612a85565b90509250929050565b60008060408385031215612ae557600080fd5b82356001600160401b0380821115612afc57600080fd5b818501915085601f830112612b1057600080fd5b8135602082821115612b2457612b24612877565b8160051b9250612b3581840161288d565b8281529284018101928181019089851115612b4f57600080fd5b948201945b84861015612b795785359350612b69846127f5565b8382529482019490820190612b54565b9650612b889050878201612a85565b9450505050509250929050565b60008060008060808587031215612bab57600080fd5b8435612bb6816127f5565b93506020850135612bc6816127f5565b92506040850135915060608501356001600160401b03811115612be857600080fd5b8501601f81018713612bf957600080fd5b612c08878235602084016128bd565b91505092959194509250565b600080600060408486031215612c2957600080fd5b83356001600160401b03811115612c3f57600080fd5b612c4b86828701612972565b909790965060209590950135949350505050565b60008060408385031215612c7257600080fd5b8235612c7d816127f5565b91506020830135612a7a816127f5565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600181811c90821680612cd657607f821691505b60208210811415612cf757634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b600082821015612d2557612d25612cfd565b500390565b6000600019821415612d3e57612d3e612cfd565b5060010190565b60208082526014908201527314d85b19481a185cc81b9bdd081cdd185c9d195960621b604082015260600190565b600060ff821660ff84168060ff03821115612d9057612d90612cfd565b019392505050565b60208082526023908201527f4d61782070726573616c65206d696e74656420666f7220746869732077616c6c60408201526265742160e81b606082015260800190565b6000816000190483118215151615612df557612df5612cfd565b500290565b602080825260129082015271496e73756666696369656e742066756e647360701b604082015260600190565b60008219821115612e3957612e39612cfd565b500190565b60208082526029908201527f596f752063616e2774206d696e74206d6f7265207468656e2074686520746f74604082015268616c20737570706c7960b81b606082015260800190565b600060ff821660ff841680821015612ea157612ea1612cfd565b90039392505050565b634e487b7160e01b600052603260045260246000fd5b60208082526033908201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260408201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b606082015260800190565b60008151612f2581856020860161278a565b9290920192915050565b600080845481600182811c915080831680612f4b57607f831692505b6020808410821415612f6b57634e487b7160e01b86526022600452602486fd5b818015612f7f5760018114612f9057612fbd565b60ff19861689528489019650612fbd565b60008b81526020902060005b86811015612fb55781548b820152908501908301612f9c565b505084890196505b505050505050612fe1612fd08286612f13565b64173539b7b760d91b815260050190565b95945050505050565b600081612ff957612ff9612cfd565b506000190190565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090613034908301846127b6565b9695505050505050565b60006020828403121561305057600080fd5b815161276a81612737565b634e487b7160e01b600052601260045260246000fd5b6000826130805761308061305b565b500490565b6000826130945761309461305b565b500690565b60006001600160801b038083168185168083038211156130bb576130bb612cfd565b0194935050505056fea26469706673582212200e4a0e37fcfc9fa226f9411e8f6158562999e8b9fcb6c19424e32407f5c2b0f664736f6c634300080c0033697066733a2f2f516d5372334a783764534e5841374a435970735650707351744c4a787a795a4a415973547646326a4a6446704a762f

Deployed Bytecode

0x6080604052600436106103345760003560e01c8063714c5398116101ab578063b88d4fde116100f7578063dfcf15b011610095578063ec3ccec21161006f578063ec3ccec21461097b578063f2fde38b14610991578063f4a0a528146109b1578063f62ed197146109d157600080fd5b8063dfcf15b0146108ff578063e42a5cdc1461091f578063e985e9c51461093257600080fd5b8063c87b56dd116100d1578063c87b56dd1461086f578063ce606ee01461088f578063dbdf2dc0146108af578063dea96c98146108cf57600080fd5b8063b88d4fde146107e6578063bc4c9ffa14610806578063c03afb591461084f57600080fd5b806395d89b4111610164578063a69f235c1161013e578063a69f235c1461076c578063a98095fe1461078c578063b14f2a39146107ac578063b1c9fe6e146107cc57600080fd5b806395d89b4114610724578063a0712d6814610739578063a22cb4651461074c57600080fd5b8063714c539814610689578063715018a61461069e5780637b671780146106b3578063842e481c146106d357806387abdc2a146106e65780638da5cb5b1461070657600080fd5b80633ccfd60b1161028557806364342685116102235780636ecf2b7f116101fd5780636ecf2b7f146106145780636f9fb98a1461063557806370a082311461064a57806370db69d61461066a57600080fd5b806364342685146105cb5780636817c76c146105de5780636bd08049146105f457600080fd5b80634f6ccce71161025f5780634f6ccce71461054b57806355f804b31461056b5780635ae1250b1461058b5780636352211e146105ab57600080fd5b80633ccfd60b146104ef57806342842e0e146104f7578063459ba3ae1461051757600080fd5b8063095ea7b3116102f257806323b872dd116102cc57806323b872dd1461046f578063243fce681461048f5780632f745c59146104af5780633549345e146104cf57600080fd5b8063095ea7b3146104245780630a3025301461044457806318160ddd1461045a57600080fd5b80620e7fa81461033957806301ffc9a714610362578063047fc9aa14610392578063066e4940146103a857806306fdde03146103ca578063081812fc146103ec575b600080fd5b34801561034557600080fd5b5061034f60095481565b6040519081526020015b60405180910390f35b34801561036e57600080fd5b5061038261037d36600461274d565b6109e7565b6040519015158152602001610359565b34801561039e57600080fd5b5061034f600b5481565b3480156103b457600080fd5b506103c86103c3366004612771565b610a54565b005b3480156103d657600080fd5b506103df610a8c565b60405161035991906127e2565b3480156103f857600080fd5b5061040c610407366004612771565b610b1e565b6040516001600160a01b039091168152602001610359565b34801561043057600080fd5b506103c861043f36600461280a565b610ba9565b34801561045057600080fd5b5061034f600e5481565b34801561046657600080fd5b5061034f610cc1565b34801561047b57600080fd5b506103c861048a366004612836565b610cd7565b34801561049b57600080fd5b506103c86104aa366004612771565b610ce2565b3480156104bb57600080fd5b5061034f6104ca36600461280a565b610d11565b3480156104db57600080fd5b506103c86104ea366004612771565b610e88565b6103c8610eb7565b34801561050357600080fd5b506103c8610512366004612836565b610f44565b34801561052357600080fd5b5060105461053990640100000000900460ff1681565b60405160ff9091168152602001610359565b34801561055757600080fd5b5061034f610566366004612771565b610f5f565b34801561057757600080fd5b506103c8610586366004612914565b610fc7565b34801561059757600080fd5b506103c86105a6366004612771565b611008565b3480156105b757600080fd5b5061040c6105c6366004612771565b611037565b6103c86105d93660046129bd565b611049565b3480156105ea57600080fd5b5061034f600a5481565b34801561060057600080fd5b506103c861060f366004612771565b6111ea565b34801561062057600080fd5b50601054610539906301000000900460ff1681565b34801561064157600080fd5b5061034f611219565b34801561065657600080fd5b5061034f610665366004612a0f565b61124b565b34801561067657600080fd5b5060105461053990610100900460ff1681565b34801561069557600080fd5b506103df6112dc565b3480156106aa57600080fd5b506103c86112eb565b3480156106bf57600080fd5b506103c86106ce366004612a2c565b611321565b6103c86106e13660046129bd565b611424565b3480156106f257600080fd5b506010546105399062010000900460ff1681565b34801561071257600080fd5b506007546001600160a01b031661040c565b34801561073057600080fd5b506103df61153a565b6103c8610747366004612771565b611549565b34801561075857600080fd5b506103c8610767366004612a47565b611648565b34801561077857600080fd5b506103c8610787366004612a9d565b61170d565b34801561079857600080fd5b506103c86107a7366004612ad2565b611765565b3480156107b857600080fd5b506103c86107c7366004612a0f565b611805565b3480156107d857600080fd5b506010546105399060ff1681565b3480156107f257600080fd5b506103c8610801366004612b95565b611851565b34801561081257600080fd5b50610836610821366004612a0f565b60116020526000908152604090205460f81b81565b6040516001600160f81b03199091168152602001610359565b34801561085b57600080fd5b506103c861086a366004612a2c565b611884565b34801561087b57600080fd5b506103df61088a366004612771565b6118c4565b34801561089b57600080fd5b5060085461040c906001600160a01b031681565b3480156108bb57600080fd5b506103c86108ca366004612a2c565b611991565b3480156108db57600080fd5b506105396108ea366004612a0f565b60126020526000908152604090205460ff1681565b34801561090b57600080fd5b506103c861091a366004612c14565b6119d7565b6103c861092d3660046129bd565b611a4e565b34801561093e57600080fd5b5061038261094d366004612c5f565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b34801561098757600080fd5b5061034f600f5481565b34801561099d57600080fd5b506103c86109ac366004612a0f565b611bb3565b3480156109bd57600080fd5b506103c86109cc366004612771565b611c4b565b3480156109dd57600080fd5b5061034f600d5481565b60006001600160e01b031982166380ac58cd60e01b1480610a1857506001600160e01b03198216635b5e139f60e01b145b80610a3357506001600160e01b0319821663780e9d6360e01b145b80610a4e57506301ffc9a760e01b6001600160e01b03198316145b92915050565b6007546001600160a01b03163314610a875760405162461bcd60e51b8152600401610a7e90612c8d565b60405180910390fd5b600f55565b606060018054610a9b90612cc2565b80601f0160208091040260200160405190810160405280929190818152602001828054610ac790612cc2565b8015610b145780601f10610ae957610100808354040283529160200191610b14565b820191906000526020600020905b815481529060010190602001808311610af757829003601f168201915b5050505050905090565b6000610b2b826000541190565b610b8d5760405162461bcd60e51b815260206004820152602d60248201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560448201526c3c34b9ba32b73a103a37b5b2b760991b6064820152608401610a7e565b506000908152600560205260409020546001600160a01b031690565b6000610bb482611037565b9050806001600160a01b0316836001600160a01b03161415610c235760405162461bcd60e51b815260206004820152602260248201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60448201526132b960f11b6064820152608401610a7e565b336001600160a01b0382161480610c3f5750610c3f813361094d565b610cb15760405162461bcd60e51b815260206004820152603960248201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656420666f7220616c6c000000000000006064820152608401610a7e565b610cbc838383611c7a565b505050565b60006001600054610cd29190612d13565b905090565b610cbc838383611cd6565b6007546001600160a01b03163314610d0c5760405162461bcd60e51b8152600401610a7e90612c8d565b600d55565b6000610d1c8361124b565b8210610d755760405162461bcd60e51b815260206004820152602260248201527f455243373231413a206f776e657220696e646578206f7574206f6620626f756e604482015261647360f01b6064820152608401610a7e565b6000610d7f610cc1565b905060008060005b83811015610e28576000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b9091046001600160401b03169183019190915215610dd957805192505b876001600160a01b0316836001600160a01b03161415610e155786841415610e0757509350610a4e92505050565b83610e1181612d2a565b9450505b5080610e2081612d2a565b915050610d87565b5060405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060448201526d0deeedccae440c4f240d2dcc8caf60931b6064820152608401610a7e565b6007546001600160a01b03163314610eb25760405162461bcd60e51b8152600401610a7e90612c8d565b600955565b6007546001600160a01b03163314610ee15760405162461bcd60e51b8152600401610a7e90612c8d565b6008546040516000916001600160a01b03169047908381818185875af1925050503d8060008114610f2e576040519150601f19603f3d011682016040523d82523d6000602084013e610f33565b606091505b5050905080610f4157600080fd5b50565b610cbc83838360405180602001604052806000815250611851565b6000610f69610cc1565b8210610fc35760405162461bcd60e51b815260206004820152602360248201527f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f756044820152626e647360e81b6064820152608401610a7e565b5090565b6007546001600160a01b03163314610ff15760405162461bcd60e51b8152600401610a7e90612c8d565b805161100490600c9060208401906126a7565b5050565b6007546001600160a01b031633146110325760405162461bcd60e51b8152600401610a7e90612c8d565b600e55565b60006110428261201b565b5192915050565b60105460ff1660011461106e5760405162461bcd60e51b8152600401610a7e90612d45565b6010543360009081526012602052604090205460ff630100000090920482169161109a91869116612d73565b60ff1611156110bb5760405162461bcd60e51b8152600401610a7e90612d98565b8260ff166009546110cc9190612ddb565b3410156110eb5760405162461bcd60e51b8152600401610a7e90612dfa565b6040516001600160601b03193360601b16602082015260009060340160405160208183030381529060405280519060200120905061116083838080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525050600d5491508490506120fa565b61119d5760405162461bcd60e51b815260206004820152600e60248201526d496e76616c69642070726f6f662160901b6044820152606401610a7e565b33600090815260126020526040812080548692906111bf90849060ff16612d73565b92506101000a81548160ff021916908360ff1602179055506111e4338560ff16612110565b50505050565b6007546001600160a01b031633146112145760405162461bcd60e51b8152600401610a7e90612c8d565b600b55565b6007546000906001600160a01b031633146112465760405162461bcd60e51b8152600401610a7e90612c8d565b504790565b60006001600160a01b0382166112b75760405162461bcd60e51b815260206004820152602b60248201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b6064820152608401610a7e565b506001600160a01b03166000908152600460205260409020546001600160801b031690565b6060600c8054610a9b90612cc2565b6007546001600160a01b031633146113155760405162461bcd60e51b8152600401610a7e90612c8d565b61131f600061212a565b565b60105460ff166113435760405162461bcd60e51b8152600401610a7e90612d45565b600b548160ff16611352610cc1565b61135c9190612e26565b111561137a5760405162461bcd60e51b8152600401610a7e90612e3e565b33600090815260116020526040902054600160f81b60f89190911b6001600160f81b03191610156113de5760405162461bcd60e51b815260206004820152600e60248201526d4e6f205465616d204d696e74732160901b6044820152606401610a7e565b336000908152601160205260409020546113fc90829060ff16612e87565b336000818152601160205260409020805460ff191660ff938416179055610f41918316612110565b60105460ff166001146114495760405162461bcd60e51b8152600401610a7e90612d45565b6010543360009081526012602052604090205460ff6201000090920482169161147491869116612d73565b60ff1611156114955760405162461bcd60e51b8152600401610a7e90612d98565b8260ff166009546114a69190612ddb565b3410156114c55760405162461bcd60e51b8152600401610a7e90612dfa565b6040516001600160601b03193360601b16602082015260009060340160405160208183030381529060405280519060200120905061116083838080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525050600e5491508490506120fa565b606060028054610a9b90612cc2565b601054600260ff90911610156115715760405162461bcd60e51b8152600401610a7e90612d45565b600b548161157d610cc1565b6115879190612e26565b11156115a55760405162461bcd60e51b8152600401610a7e90612e3e565b6010543360009081526012602052604090205460ff6101009092048216916115cf91849116612e26565b11156116115760405162461bcd60e51b8152602060048201526011602482015270109d5e481b1a5b5a5d081c995858da1959607a1b6044820152606401610a7e565b80600a5461161f9190612ddb565b34101561163e5760405162461bcd60e51b8152600401610a7e90612dfa565b610f413382612110565b6001600160a01b0382163314156116a15760405162461bcd60e51b815260206004820152601a60248201527f455243373231413a20617070726f766520746f2063616c6c65720000000000006044820152606401610a7e565b3360008181526006602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6007546001600160a01b031633146117375760405162461bcd60e51b8152600401610a7e90612c8d565b6001600160a01b03919091166000908152601160205260409020805460ff191660f89290921c919091179055565b6007546001600160a01b0316331461178f5760405162461bcd60e51b8152600401610a7e90612c8d565b60005b8251811015610cbc5781601160008584815181106117b2576117b2612eaa565b60200260200101516001600160a01b03166001600160a01b0316815260200190815260200160002060006101000a81548160ff021916908360f81c021790555080806117fd90612d2a565b915050611792565b6007546001600160a01b0316331461182f5760405162461bcd60e51b8152600401610a7e90612c8d565b600880546001600160a01b0319166001600160a01b0392909216919091179055565b61185c848484611cd6565b6118688484848461217c565b6111e45760405162461bcd60e51b8152600401610a7e90612ec0565b6007546001600160a01b031633146118ae5760405162461bcd60e51b8152600401610a7e90612c8d565b6010805460ff191660ff92909216919091179055565b60606118d1826000541190565b6119355760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610a7e565b6000600c805461194490612cc2565b9050116119605760405180602001604052806000815250610a4e565b600c61196b8361227b565b60405160200161197c929190612f2f565b60405160208183030381529060405292915050565b6007546001600160a01b031633146119bb5760405162461bcd60e51b8152600401610a7e90612c8d565b6010805460ff9092166101000261ff0019909216919091179055565b6007546001600160a01b03163314611a015760405162461bcd60e51b8152600401610a7e90612c8d565b60005b828110156111e457611a3c848483818110611a2157611a21612eaa565b9050602002016020810190611a369190612a0f565b83612110565b80611a4681612d2a565b915050611a04565b60105460ff16611a705760405162461bcd60e51b8152600401610a7e90612d45565b600b548360ff16611a7f610cc1565b611a899190612e26565b1115611aa75760405162461bcd60e51b8152600401610a7e90612e3e565b6010543360009081526012602052604090205460ff640100000000909204821691611ad491869116612d73565b60ff161115611b3e5760405162461bcd60e51b815260206004820152603060248201527f596f752063616e2774206d696e74206d6f7265207468656e20746865206d617860448201526f0819da5d99585dd85e48185b5bdd5b9d60821b6064820152608401610a7e565b6040516001600160601b03193360601b16602082015260009060340160405160208183030381529060405280519060200120905061116083838080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525050600f5491508490506120fa565b6007546001600160a01b03163314611bdd5760405162461bcd60e51b8152600401610a7e90612c8d565b6001600160a01b038116611c425760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610a7e565b610f418161212a565b6007546001600160a01b03163314611c755760405162461bcd60e51b8152600401610a7e90612c8d565b600a55565b60008281526005602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6000611ce18261201b565b80519091506000906001600160a01b0316336001600160a01b03161480611d18575033611d0d84610b1e565b6001600160a01b0316145b80611d2a57508151611d2a903361094d565b905080611d945760405162461bcd60e51b815260206004820152603260248201527f455243373231413a207472616e736665722063616c6c6572206973206e6f74206044820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b6064820152608401610a7e565b846001600160a01b031682600001516001600160a01b031614611e085760405162461bcd60e51b815260206004820152602660248201527f455243373231413a207472616e736665722066726f6d20696e636f72726563746044820152651037bbb732b960d11b6064820152608401610a7e565b6001600160a01b038416611e6c5760405162461bcd60e51b815260206004820152602560248201527f455243373231413a207472616e7366657220746f20746865207a65726f206164604482015264647265737360d81b6064820152608401610a7e565b611e7c6000848460000151611c7a565b6001600160a01b03858116600090815260046020908152604080832080546fffffffffffffffffffffffffffffffff198082166001600160801b0392831660001901831617909255898616808652838620805493841693831660019081019093169390931790925582518084018452918252426001600160401b039081168386019081528a8752600390955292852091518254945196166001600160e01b031990941693909317600160a01b95909216949094021790925590611f40908590612e26565b6000818152600360205260409020549091506001600160a01b0316611fd157611f6a816000541190565b15611fd15760408051808201825284516001600160a01b0390811682526020808701516001600160401b039081168285019081526000878152600390935294909120925183549451909116600160a01b026001600160e01b03199094169116179190911790555b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b505050505050565b604080518082019091526000808252602082015261203a826000541190565b6120995760405162461bcd60e51b815260206004820152602a60248201527f455243373231413a206f776e657220717565727920666f72206e6f6e657869736044820152693a32b73a103a37b5b2b760b11b6064820152608401610a7e565b815b6000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b9091046001600160401b031691830191909152156120e7579392505050565b50806120f281612fea565b91505061209b565b6000826121078584612378565b14949350505050565b6110048282604051806020016040528060008152506123ec565b600780546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b60006001600160a01b0384163b1561226f57604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906121c0903390899088908890600401613001565b6020604051808303816000875af19250505080156121fb575060408051601f3d908101601f191682019092526121f89181019061303e565b60015b612255573d808015612229576040519150601f19603f3d011682016040523d82523d6000602084013e61222e565b606091505b50805161224d5760405162461bcd60e51b8152600401610a7e90612ec0565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050612273565b5060015b949350505050565b60608161229f5750506040805180820190915260018152600360fc1b602082015290565b8160005b81156122c957806122b381612d2a565b91506122c29050600a83613071565b91506122a3565b6000816001600160401b038111156122e3576122e3612877565b6040519080825280601f01601f19166020018201604052801561230d576020820181803683370190505b5090505b841561227357612322600183612d13565b915061232f600a86613085565b61233a906030612e26565b60f81b81838151811061234f5761234f612eaa565b60200101906001600160f81b031916908160001a905350612371600a86613071565b9450612311565b600081815b84518110156123e457600085828151811061239a5761239a612eaa565b602002602001015190508083116123c057600083815260208290526040902092506123d1565b600081815260208490526040902092505b50806123dc81612d2a565b91505061237d565b509392505050565b6000546001600160a01b03841661244f5760405162461bcd60e51b815260206004820152602160248201527f455243373231413a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b6064820152608401610a7e565b61245a816000541190565b156124a75760405162461bcd60e51b815260206004820152601d60248201527f455243373231413a20746f6b656e20616c7265616479206d696e7465640000006044820152606401610a7e565b600083116125035760405162461bcd60e51b815260206004820152602360248201527f455243373231413a207175616e74697479206d7573742062652067726561746560448201526207220360ec1b6064820152608401610a7e565b6001600160a01b0384166000908152600460209081526040918290208251808401845290546001600160801b038082168352600160801b909104169181019190915281518083019092528051909190819061255f908790613099565b6001600160801b0316815260200185836020015161257d9190613099565b6001600160801b039081169091526001600160a01b0380881660008181526004602090815260408083208751978301518716600160801b029790961696909617909455845180860186529182526001600160401b034281168386019081528883526003909552948120915182549451909516600160a01b026001600160e01b031990941694909216939093179190911790915582905b8581101561269c5760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4612660600088848861217c565b61267c5760405162461bcd60e51b8152600401610a7e90612ec0565b8161268681612d2a565b925050808061269490612d2a565b915050612613565b506000819055612013565b8280546126b390612cc2565b90600052602060002090601f0160209004810192826126d5576000855561271b565b82601f106126ee57805160ff191683800117855561271b565b8280016001018555821561271b579182015b8281111561271b578251825591602001919060010190612700565b50610fc39291505b80821115610fc35760008155600101612723565b6001600160e01b031981168114610f4157600080fd5b60006020828403121561275f57600080fd5b813561276a81612737565b9392505050565b60006020828403121561278357600080fd5b5035919050565b60005b838110156127a557818101518382015260200161278d565b838111156111e45750506000910152565b600081518084526127ce81602086016020860161278a565b601f01601f19169290920160200192915050565b60208152600061276a60208301846127b6565b6001600160a01b0381168114610f4157600080fd5b6000806040838503121561281d57600080fd5b8235612828816127f5565b946020939093013593505050565b60008060006060848603121561284b57600080fd5b8335612856816127f5565b92506020840135612866816127f5565b929592945050506040919091013590565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f191681016001600160401b03811182821017156128b5576128b5612877565b604052919050565b60006001600160401b038311156128d6576128d6612877565b6128e9601f8401601f191660200161288d565b90508281528383830111156128fd57600080fd5b828260208301376000602084830101529392505050565b60006020828403121561292657600080fd5b81356001600160401b0381111561293c57600080fd5b8201601f8101841361294d57600080fd5b612273848235602084016128bd565b803560ff8116811461296d57600080fd5b919050565b60008083601f84011261298457600080fd5b5081356001600160401b0381111561299b57600080fd5b6020830191508360208260051b85010111156129b657600080fd5b9250929050565b6000806000604084860312156129d257600080fd5b6129db8461295c565b925060208401356001600160401b038111156129f657600080fd5b612a0286828701612972565b9497909650939450505050565b600060208284031215612a2157600080fd5b813561276a816127f5565b600060208284031215612a3e57600080fd5b61276a8261295c565b60008060408385031215612a5a57600080fd5b8235612a65816127f5565b915060208301358015158114612a7a57600080fd5b809150509250929050565b80356001600160f81b03198116811461296d57600080fd5b60008060408385031215612ab057600080fd5b8235612abb816127f5565b9150612ac960208401612a85565b90509250929050565b60008060408385031215612ae557600080fd5b82356001600160401b0380821115612afc57600080fd5b818501915085601f830112612b1057600080fd5b8135602082821115612b2457612b24612877565b8160051b9250612b3581840161288d565b8281529284018101928181019089851115612b4f57600080fd5b948201945b84861015612b795785359350612b69846127f5565b8382529482019490820190612b54565b9650612b889050878201612a85565b9450505050509250929050565b60008060008060808587031215612bab57600080fd5b8435612bb6816127f5565b93506020850135612bc6816127f5565b92506040850135915060608501356001600160401b03811115612be857600080fd5b8501601f81018713612bf957600080fd5b612c08878235602084016128bd565b91505092959194509250565b600080600060408486031215612c2957600080fd5b83356001600160401b03811115612c3f57600080fd5b612c4b86828701612972565b909790965060209590950135949350505050565b60008060408385031215612c7257600080fd5b8235612c7d816127f5565b91506020830135612a7a816127f5565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600181811c90821680612cd657607f821691505b60208210811415612cf757634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b600082821015612d2557612d25612cfd565b500390565b6000600019821415612d3e57612d3e612cfd565b5060010190565b60208082526014908201527314d85b19481a185cc81b9bdd081cdd185c9d195960621b604082015260600190565b600060ff821660ff84168060ff03821115612d9057612d90612cfd565b019392505050565b60208082526023908201527f4d61782070726573616c65206d696e74656420666f7220746869732077616c6c60408201526265742160e81b606082015260800190565b6000816000190483118215151615612df557612df5612cfd565b500290565b602080825260129082015271496e73756666696369656e742066756e647360701b604082015260600190565b60008219821115612e3957612e39612cfd565b500190565b60208082526029908201527f596f752063616e2774206d696e74206d6f7265207468656e2074686520746f74604082015268616c20737570706c7960b81b606082015260800190565b600060ff821660ff841680821015612ea157612ea1612cfd565b90039392505050565b634e487b7160e01b600052603260045260246000fd5b60208082526033908201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260408201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b606082015260800190565b60008151612f2581856020860161278a565b9290920192915050565b600080845481600182811c915080831680612f4b57607f831692505b6020808410821415612f6b57634e487b7160e01b86526022600452602486fd5b818015612f7f5760018114612f9057612fbd565b60ff19861689528489019650612fbd565b60008b81526020902060005b86811015612fb55781548b820152908501908301612f9c565b505084890196505b505050505050612fe1612fd08286612f13565b64173539b7b760d91b815260050190565b95945050505050565b600081612ff957612ff9612cfd565b506000190190565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090613034908301846127b6565b9695505050505050565b60006020828403121561305057600080fd5b815161276a81612737565b634e487b7160e01b600052601260045260246000fd5b6000826130805761308061305b565b500490565b6000826130945761309461305b565b500690565b60006001600160801b038083168185168083038211156130bb576130bb612cfd565b0194935050505056fea26469706673582212200e4a0e37fcfc9fa226f9411e8f6158562999e8b9fcb6c19424e32407f5c2b0f664736f6c634300080c0033

Deployed Bytecode Sourcemap

41404:5771:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41509:40;;;;;;;;;;;;;;;;;;;160:25:1;;;148:2;133:18;41509:40:0;;;;;;;;24333:372;;;;;;;;;;-1:-1:-1;24333:372:0;;;;;:::i;:::-;;:::i;:::-;;;747:14:1;;740:22;722:41;;710:2;695:18;24333:372:0;582:187:1;41596:28:0;;;;;;;;;;;;;;;;46328:115;;;;;;;;;;-1:-1:-1;46328:115:0;;;;;:::i;:::-;;:::i;:::-;;25960:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;27521:214::-;;;;;;;;;;-1:-1:-1;27521:214:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;2081:32:1;;;2063:51;;2051:2;2036:18;27521:214:0;1917:203:1;27042:413:0;;;;;;;;;;-1:-1:-1;27042:413:0;;;;;:::i;:::-;;:::i;41750:27::-;;;;;;;;;;;;;;;;22770:104;;;;;;;;;;;;;:::i;28397:162::-;;;;;;;;;;-1:-1:-1;28397:162:0;;;;;:::i;:::-;;:::i;46108:107::-;;;;;;;;;;-1:-1:-1;46108:107:0;;;;;:::i;:::-;;:::i;23438:823::-;;;;;;;;;;-1:-1:-1;23438:823:0;;;;;:::i;:::-;;:::i;45734:101::-;;;;;;;;;;-1:-1:-1;45734:101:0;;;;;:::i;:::-;;:::i;47017:153::-;;;:::i;28630:177::-;;;;;;;;;;-1:-1:-1;28630:177:0;;;;;:::i;:::-;;:::i;41937:28::-;;;;;;;;;;-1:-1:-1;41937:28:0;;;;;;;;;;;;;;3396:4:1;3384:17;;;3366:36;;3354:2;3339:18;41937:28:0;3224:184:1;22951:187:0;;;;;;;;;;-1:-1:-1;22951:187:0;;;;;:::i;:::-;;:::i;45533:94::-;;;;;;;;;;-1:-1:-1;45533:94:0;;;;;:::i;:::-;;:::i;46221:101::-;;;;;;;;;;-1:-1:-1;46221:101:0;;;;;:::i;:::-;;:::i;25769:124::-;;;;;;;;;;-1:-1:-1;25769:124:0;;;;;:::i;:::-;;:::i;44123:611::-;;;;;;:::i;:::-;;:::i;41554:37::-;;;;;;;;;;;;;;;;46013:89;;;;;;;;;;-1:-1:-1;46013:89:0;;;;;:::i;:::-;;:::i;41903:29::-;;;;;;;;;;-1:-1:-1;41903:29:0;;;;;;;;;;;46449:114;;;;;;;;;;;;;:::i;24769:221::-;;;;;;;;;;-1:-1:-1;24769:221:0;;;;;:::i;:::-;;:::i;41847:24::-;;;;;;;;;;-1:-1:-1;41847:24:0;;;;;;;;;;;45342:85;;;;;;;;;;;;;:::i;38034:103::-;;;;;;;;;;;;;:::i;42680:402::-;;;;;;;;;;-1:-1:-1;42680:402:0;;;;;:::i;:::-;;:::i;44742:594::-;;;;;;:::i;:::-;;:::i;41876:22::-;;;;;;;;;;-1:-1:-1;41876:22:0;;;;;;;;;;;37383:87;;;;;;;;;;-1:-1:-1;37456:6:0;;-1:-1:-1;;;;;37456:6:0;37383:87;;26129:104;;;;;;;;;;;;;:::i;43726:391::-;;;;;;:::i;:::-;;:::i;27807:288::-;;;;;;;;;;-1:-1:-1;27807:288:0;;;;;:::i;:::-;;:::i;46569:120::-;;;;;;;;;;-1:-1:-1;46569:120:0;;;;;:::i;:::-;;:::i;46695:200::-;;;;;;;;;;-1:-1:-1;46695:200:0;;;;;:::i;:::-;;:::i;46901:110::-;;;;;;;;;;-1:-1:-1;46901:110:0;;;;;:::i;:::-;;:::i;41820:22::-;;;;;;;;;;-1:-1:-1;41820:22:0;;;;;;;;28878:355;;;;;;;;;;-1:-1:-1;28878:355:0;;;;;:::i;:::-;;:::i;41978:49::-;;;;;;;;;;-1:-1:-1;41978:49:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;9415:26:1;;;9397:45;;9385:2;9370:18;41978:49:0;9253:195:1;45841:76:0;;;;;;;;;;-1:-1:-1;45841:76:0;;;;;:::i;:::-;;:::i;42169:288::-;;;;;;;;;;-1:-1:-1;42169:288:0;;;;;:::i;:::-;;:::i;41476:28::-;;;;;;;;;;-1:-1:-1;41476:28:0;;;;-1:-1:-1;;;;;41476:28:0;;;45923:84;;;;;;;;;;-1:-1:-1;45923:84:0;;;;;:::i;:::-;;:::i;42032:44::-;;;;;;;;;;-1:-1:-1;42032:44:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;42463:194;;;;;;;;;;-1:-1:-1;42463:194:0;;;;;:::i;:::-;;:::i;43090:628::-;;;;;;:::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;41782:33;;;;;;;;;;;;;;;;38292:201;;;;;;;;;;-1:-1:-1;38292:201:0;;;;;:::i;:::-;;:::i;45633:95::-;;;;;;;;;;-1:-1:-1;45633:95:0;;;;;:::i;:::-;;:::i;41715:30::-;;;;;;;;;;;;;;;;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;46328:115::-;37456:6;;-1:-1:-1;;;;;37456:6:0;20792:10;37603:23;37595:68;;;;-1:-1:-1;;;37595:68:0;;;;;;;:::i;:::-;;;;;;;;;46407:18:::1;:30:::0;46328:115::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;;11304:2:1;27609:74:0;;;11286:21:1;11343:2;11323:18;;;11316:30;11382:34;11362:18;;;11355:62;-1:-1:-1;;;11433:18:1;;;11426:43;11486:19;;27609:74:0;11102:409:1;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;;11718:2:1;27166:58:0;;;11700:21:1;11757:2;11737:18;;;11730:30;11796:34;11776:18;;;11769:62;-1:-1:-1;;;11847:18:1;;;11840:32;11889:19;;27166:58:0;11516: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;;12121:2:1;27237:169:0;;;12103:21:1;12160:2;12140:18;;;12133:30;12199:34;12179:18;;;12172:62;12270:27;12250:18;;;12243:55;12315:19;;27237:169:0;11919: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;46108:107::-;37456:6;;-1:-1:-1;;;;;37456:6:0;20792:10;37603:23;37595:68;;;;-1:-1:-1;;;37595:68:0;;;;;;;:::i;:::-;46182:15:::1;:27:::0;46108:107::o;23438:823::-;23527:7;23563:16;23573:5;23563:9;:16::i;:::-;23555:5;:24;23547:71;;;;-1:-1:-1;;;23547:71:0;;12809:2:1;23547:71:0;;;12791:21:1;12848:2;12828:18;;;12821:30;12887:34;12867:18;;;12860:62;-1:-1:-1;;;12938:18:1;;;12931:32;12980:19;;23547:71:0;12607: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;;;-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;;13352:2:1;24197:56:0;;;13334:21:1;13391:2;13371:18;;;13364:30;13430:34;13410:18;;;13403:62;-1:-1:-1;;;13481:18:1;;;13474:44;13535:19;;24197:56:0;13150:410:1;45734:101:0;37456:6;;-1:-1:-1;;;;;37456:6:0;20792:10;37603:23;37595:68;;;;-1:-1:-1;;;37595:68:0;;;;;;;:::i;:::-;45805:12:::1;:24:::0;45734:101::o;47017:153::-;37456:6;;-1:-1:-1;;;;;37456:6:0;20792:10;37603:23;37595:68;;;;-1:-1:-1;;;37595:68:0;;;;;;;:::i;:::-;47093:13:::1;::::0;47085:61:::1;::::0;47072:7:::1;::::0;-1:-1:-1;;;;;47093:13:0::1;::::0;47120:21:::1;::::0;47072:7;47085:61;47072:7;47085:61;47120:21;47093:13;47085:61:::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47071:75;;;47161:2;47153:11;;;::::0;::::1;;47064:106;47017: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;;13977:2:1;23038:69:0;;;13959:21:1;14016:2;13996:18;;;13989:30;14055:34;14035:18;;;14028:62;-1:-1:-1;;;14106:18:1;;;14099:33;14149:19;;23038:69:0;13775:399:1;23038:69:0;-1:-1:-1;23125:5:0;22951:187::o;45533:94::-;37456:6;;-1:-1:-1;;;;;37456:6:0;20792:10;37603:23;37595:68;;;;-1:-1:-1;;;37595:68:0;;;;;;;:::i;:::-;45603:18;;::::1;::::0;:7:::1;::::0;:18:::1;::::0;::::1;::::0;::::1;:::i;:::-;;45533:94:::0;:::o;46221:101::-;37456:6;;-1:-1:-1;;;;;37456:6:0;20792:10;37603:23;37595:68;;;;-1:-1:-1;;;37595:68:0;;;;;;;:::i;:::-;46292:12:::1;:24:::0;46221:101::o;25769:124::-;25833:7;25860:20;25872:7;25860:11;:20::i;:::-;:25;;25769:124;-1:-1:-1;;25769:124:0:o;44123:611::-;44266:5;;;;;:10;44258:43;;;;-1:-1:-1;;;44258:43:0;;;;;;;:::i;:::-;44356:12;;44327:10;44316:22;;;;:10;:22;;;;;;44356:12;;;;;;;;44316:36;;44341:11;;44316:22;:36;:::i;:::-;:52;;;;44308:100;;;;-1:-1:-1;;;44308:100:0;;;;;;;:::i;:::-;44451:11;44436:26;;:12;;:26;;;;:::i;:::-;44423:9;:39;;44415:70;;;;-1:-1:-1;;;44415:70:0;;;;;;;:::i;:::-;44523:28;;-1:-1:-1;;;;;;44540:10:0;15810:2:1;15806:15;15802:53;44523:28:0;;;15790:66:1;44498:12:0;;15872::1;;44523:28:0;;;;;;;;;;;;44513:39;;;;;;44498:54;;44567:55;44586:12;;44567:55;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;44600:15:0;;;-1:-1:-1;44617:4:0;;-1:-1:-1;44567:18:0;:55::i;:::-;44559:82;;;;-1:-1:-1;;;44559:82:0;;16097:2:1;44559:82:0;;;16079:21:1;16136:2;16116:18;;;16109:30;-1:-1:-1;;;16155:18:1;;;16148:44;16209:18;;44559:82:0;15895:338:1;44559:82:0;44661:10;44650:22;;;;:10;:22;;;;;:37;;44676:11;;44650:22;:37;;44676:11;;44650:37;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;44694:34;44704:10;44716:11;44694:34;;:9;:34::i;:::-;44213:521;44123:611;;;:::o;46013:89::-;37456:6;;-1:-1:-1;;;;;37456:6:0;20792:10;37603:23;37595:68;;;;-1:-1:-1;;;37595:68:0;;;;;;;:::i;:::-;46080:6:::1;:16:::0;46013:89::o;46449:114::-;37456:6;;46513:7;;-1:-1:-1;;;;;37456:6:0;20792:10;37603:23;37595:68;;;;-1:-1:-1;;;37595:68:0;;;;;;;:::i;:::-;-1:-1:-1;46536:21:0::1;46449:114:::0;:::o;24769:221::-;24833:7;-1:-1:-1;;;;;24861:19:0;;24853:75;;;;-1:-1:-1;;;24853:75:0;;16440:2:1;24853:75:0;;;16422:21:1;16479:2;16459:18;;;16452:30;16518:34;16498:18;;;16491:62;-1:-1:-1;;;16569:18:1;;;16562:41;16620:19;;24853:75:0;16238:407:1;24853:75:0;-1:-1:-1;;;;;;24954:19:0;;;;;:12;:19;;;;;:27;-1:-1:-1;;;;;24954:27:0;;24769:221::o;45342:85::-;45385:13;45414:7;45407: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;42680:402::-;42738:5;;;;42730:43;;;;-1:-1:-1;;;42730:43:0;;;;;;;:::i;:::-;42816:6;;42804:8;42788:24;;:13;:11;:13::i;:::-;:24;;;;:::i;:::-;:34;;42780:88;;;;-1:-1:-1;;;42780:88:0;;;;;;;:::i;:::-;42901:10;42885:27;;;;:15;:27;;;;;;-1:-1:-1;;;42885:35:0;:27;;;;-1:-1:-1;;;;;;42885:35:0;;;42877:62;;;;-1:-1:-1;;;42877:62:0;;17395:2:1;42877:62:0;;;17377:21:1;17434:2;17414:18;;;17407:30;-1:-1:-1;;;17453:18:1;;;17446:44;17507:18;;42877:62:0;17193:338:1;42877:62:0;43008:10;42992:27;;;;:15;:27;;;;;;42986:45;;43023:8;;42986:34;;:45;:::i;:::-;42965:10;42949:27;;;;:15;:27;;;;;:83;;-1:-1:-1;;42949:83:0;;;;;;;;43041:31;;;;:9;:31::i;44742:594::-;44878:5;;;;;:10;44870:43;;;;-1:-1:-1;;;44870:43:0;;;;;;;:::i;:::-;44968:5;;44939:10;44928:22;;;;:10;:22;;;;;;44968:5;;;;;;;;44928:36;;44953:11;;44928:22;:36;:::i;:::-;:45;;;;44920:93;;;;-1:-1:-1;;;44920:93:0;;;;;;;:::i;:::-;45056:11;45041:26;;:12;;:26;;;;:::i;:::-;45028:9;:39;;45020:70;;;;-1:-1:-1;;;45020:70:0;;;;;;;:::i;:::-;45128:28;;-1:-1:-1;;;;;;45145:10:0;15810:2:1;15806:15;15802:53;45128:28:0;;;15790:66:1;45103:12:0;;15872::1;;45128:28:0;;;;;;;;;;;;45118:39;;;;;;45103:54;;45172:52;45191:12;;45172:52;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;45205:12:0;;;-1:-1:-1;45219:4:0;;-1:-1:-1;45172:18:0;:52::i;26129:104::-;26185:13;26218:7;26211:14;;;;;:::i;43726:391::-;43790:5;;43799:1;43790:5;;;;:10;;43782:43;;;;-1:-1:-1;;;43782:43:0;;;;;;;:::i;:::-;43868:6;;43856:8;43840:13;:11;:13::i;:::-;:24;;;;:::i;:::-;:34;;43832:88;;;;-1:-1:-1;;;43832:88:0;;;;;;;:::i;:::-;43972:6;;43946:10;43935:22;;;;:10;:22;;;;;;43972:6;;;;;;;;43935:33;;43960:8;;43935:22;:33;:::i;:::-;:43;;43927:73;;;;-1:-1:-1;;;43927:73:0;;17938:2:1;43927:73:0;;;17920:21:1;17977:2;17957:18;;;17950:30;-1:-1:-1;;;17996:18:1;;;17989:47;18053:18;;43927:73:0;17736:341:1;43927:73:0;44040:8;44028:9;;:20;;;;:::i;:::-;44015:9;:33;;44007:64;;;;-1:-1:-1;;;44007:64:0;;;;;;;:::i;:::-;44080:31;44090:10;44102:8;44080:9;:31::i;27807:288::-;-1:-1:-1;;;;;27902:24:0;;20792:10;27902:24;;27894:63;;;;-1:-1:-1;;;27894:63:0;;18284:2:1;27894:63:0;;;18266:21:1;18323:2;18303:18;;;18296:30;18362:28;18342:18;;;18335:56;18408:18;;27894:63:0;18082: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;;722:41:1;;;27970:42:0;;20792:10;28039:48;;695:18:1;28039:48:0;;;;;;;27807:288;;:::o;46569:120::-;37456:6;;-1:-1:-1;;;;;37456:6:0;20792:10;37603:23;37595:68;;;;-1:-1:-1;;;37595:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;46649:22:0;;;::::1;;::::0;;;:15:::1;:22;::::0;;;;:32;;-1:-1:-1;;46649:32:0::1;;::::0;;;::::1;::::0;;;::::1;::::0;;46569:120::o;46695:200::-;37456:6;;-1:-1:-1;;;;;37456:6:0;20792:10;37603:23;37595:68;;;;-1:-1:-1;;;37595:68:0;;;;;;;:::i;:::-;46794:9:::1;46789:101;46813:5;:12;46809:1;:16;46789:101;;;46873:7;46845:15;:25;46861:5;46867:1;46861:8;;;;;;;;:::i;:::-;;;;;;;-1:-1:-1::0;;;;;46845:25:0::1;-1:-1:-1::0;;;;;46845:25:0::1;;;;;;;;;;;;;:35;;;;;;;;;;;;;;;;;;46827:3;;;;;:::i;:::-;;;;46789:101;;46901:110:::0;37456:6;;-1:-1:-1;;;;;37456:6:0;20792:10;37603:23;37595:68;;;;-1:-1:-1;;;37595:68:0;;;;;;;:::i;:::-;46979:13:::1;:26:::0;;-1:-1:-1;;;;;;46979:26:0::1;-1:-1:-1::0;;;;;46979:26:0;;;::::1;::::0;;;::::1;::::0;;46901: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;45841:76::-;37456:6;;-1:-1:-1;;;;;37456:6:0;20792:10;37603:23;37595:68;;;;-1:-1:-1;;;37595:68:0;;;;;;;:::i;:::-;45897:5:::1;:14:::0;;-1:-1:-1;;45897:14:0::1;;::::0;;;::::1;::::0;;;::::1;::::0;;45841:76::o;42169:288::-;42242:13;42272:16;42280:7;29545:4;29579:12;-1:-1:-1;29569:22:0;29488:111;42272:16;42264:76;;;;-1:-1:-1;;;42264:76:0;;19191:2:1;42264:76:0;;;19173:21:1;19230:2;19210:18;;;19203:30;19269:34;19249:18;;;19242:62;-1:-1:-1;;;19320:18:1;;;19313:45;19375:19;;42264:76:0;18989:411:1;42264:76:0;42380:1;42362:7;42356:21;;;;;:::i;:::-;;;:25;:95;;;;;;;;;;;;;;;;;42408:7;42417:18;:7;:16;:18::i;:::-;42391:54;;;;;;;;;:::i;:::-;;;;;;;;;;;;;42349:102;42169:288;-1:-1:-1;;42169:288:0:o;45923:84::-;37456:6;;-1:-1:-1;;;;;37456:6:0;20792:10;37603:23;37595:68;;;;-1:-1:-1;;;37595:68:0;;;;;;;:::i;:::-;45985:6:::1;:16:::0;;::::1;::::0;;::::1;;;-1:-1:-1::0;;45985:16:0;;::::1;::::0;;;::::1;::::0;;45923:84::o;42463:194::-;37456:6;;-1:-1:-1;;;;;37456:6:0;20792:10;37603:23;37595:68;;;;-1:-1:-1;;;37595:68:0;;;;;;;:::i;:::-;42565:6:::1;42560:92;42575:19:::0;;::::1;42560:92;;;42610:34;42620:10;;42631:1;42620:13;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;42635:8;42610:9;:34::i;:::-;42596:3:::0;::::1;::::0;::::1;:::i;:::-;;;;42560:92;;43090:628:::0;43197:5;;;;43189:43;;;;-1:-1:-1;;;43189:43:0;;;;;;;:::i;:::-;43279:6;;43267:8;43251:24;;:13;:11;:13::i;:::-;:24;;;;:::i;:::-;:34;;43243:88;;;;-1:-1:-1;;;43243:88:0;;;;;;;:::i;:::-;43388:11;;43361:10;43350:22;;;;:10;:22;;;;;;43388:11;;;;;;;;43350:33;;43375:8;;43350:22;:33;:::i;:::-;:49;;;;43342:110;;;;-1:-1:-1;;;43342:110:0;;21347:2:1;43342:110:0;;;21329:21:1;21386:2;21366:18;;;21359:30;21425:34;21405:18;;;21398:62;-1:-1:-1;;;21476:18:1;;;21469:46;21532:19;;43342:110:0;21145:412:1;43342:110:0;43494:28;;-1:-1:-1;;;;;;43511:10:0;15810:2:1;15806:15;15802:53;43494:28:0;;;15790:66:1;43469:12:0;;15872::1;;43494:28:0;;;;;;;;;;;;43484:39;;;;;;43469:54;;43542:58;43561:12;;43542:58;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;43575:18:0;;;-1:-1:-1;43595:4:0;;-1:-1:-1;43542:18:0;:58::i;38292:201::-;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;;21764:2:1;38373:73:0::1;::::0;::::1;21746:21:1::0;21803:2;21783:18;;;21776:30;21842:34;21822:18;;;21815:62;-1:-1:-1;;;21893:18:1;;;21886:36;21939:19;;38373:73:0::1;21562:402:1::0;38373:73:0::1;38457:28;38476:8;38457:18;:28::i;45633:95::-:0;37456:6;;-1:-1:-1;;;;;37456:6:0;20792:10;37603:23;37595:68;;;;-1:-1:-1;;;37595:68:0;;;;;;;:::i;:::-;45701:9:::1;:21:::0;45633: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;;22171:2:1;32011:80:0;;;22153:21:1;22210:2;22190:18;;;22183:30;22249:34;22229:18;;;22222:62;-1:-1:-1;;;22300:18:1;;;22293:48;22358:19;;32011:80:0;21969: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;;22590:2:1;32104:77:0;;;22572:21:1;22629:2;22609:18;;;22602:30;22668:34;22648:18;;;22641:62;-1:-1:-1;;;22719:18:1;;;22712:36;22765:19;;32104:77:0;22388:402:1;32104:77:0;-1:-1:-1;;;;;32200:16:0;;32192:66;;;;-1:-1:-1;;;32192:66:0;;22997:2:1;32192:66:0;;;22979:21:1;23036:2;23016:18;;;23009:30;23075:34;23055:18;;;23048:62;-1:-1:-1;;;23126:18:1;;;23119:35;23171:19;;32192:66:0;22795: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;-1:-1:-1;;;;;32755:43:0;;;;;;;;;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;;;;-1:-1:-1;;;;;33218:64:0;;;;;;;;;-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;;23403:2:1;25330:71:0;;;23385:21:1;23442:2;23422:18;;;23415:30;23481:34;23461:18;;;23454:62;-1:-1:-1;;;23532:18:1;;;23525:40;23582:19;;25330:71:0;23201: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;;;-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;;39910:190;40035:4;40088;40059:25;40072:5;40079:4;40059:12;:25::i;:::-;:33;;39910:190;-1:-1:-1;;;;39910:190:0:o;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;-1:-1:-1;;;;;900:17:0;;;;;;;:::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;;40461:675;40544:7;40587:4;40544:7;40602:497;40626:5;:12;40622:1;:16;40602:497;;;40660:20;40683:5;40689:1;40683:8;;;;;;;;:::i;:::-;;;;;;;40660:31;;40726:12;40710;:28;40706:382;;41212:13;41262:15;;;41298:4;41291:15;;;41345:4;41329:21;;40838:57;;40706:382;;;41212:13;41262:15;;;41298:4;41291:15;;;41345:4;41329:21;;41015:57;;40706:382;-1:-1:-1;40640:3:0;;;;:::i;:::-;;;;40602:497;;;-1:-1:-1;41116:12:0;40461:675;-1:-1:-1;;;40461:675:0:o;29988:1389::-;30111:20;30134:12;-1:-1:-1;;;;;30165:16:0;;30157:62;;;;-1:-1:-1;;;30157:62:0;;25504:2:1;30157:62:0;;;25486:21:1;25543:2;25523:18;;;25516:30;25582:34;25562:18;;;25555:62;-1:-1:-1;;;25633:18:1;;;25626:31;25674:19;;30157:62:0;25302: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;;25906:2:1;30355:64:0;;;25888:21:1;25945:2;25925:18;;;25918:30;25984:31;25964:18;;;25957:59;26033:18;;30355:64:0;25704:353:1;30355:64:0;30449:1;30438:8;:12;30430:60;;;;-1:-1:-1;;;30430:60:0;;26264:2:1;30430:60:0;;;26246:21:1;26303:2;26283:18;;;26276:30;26342:34;26322:18;;;26315:62;-1:-1:-1;;;26393:18:1;;;26386:33;26436:19;;30430:60:0;26062: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;;;;;;;;;;-1:-1:-1;;;;;30856:15:0;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;44123:611;-1:-1:-1;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;196:131:1;-1:-1:-1;;;;;;270:32:1;;260:43;;250:71;;317:1;314;307:12;332:245;390:6;443:2;431:9;422:7;418:23;414:32;411:52;;;459:1;456;449:12;411:52;498:9;485:23;517:30;541:5;517:30;:::i;:::-;566:5;332:245;-1:-1:-1;;;332:245:1:o;774:180::-;833:6;886:2;874:9;865:7;861:23;857:32;854:52;;;902:1;899;892:12;854:52;-1:-1:-1;925:23:1;;774:180;-1:-1:-1;774:180:1:o;959:258::-;1031:1;1041:113;1055:6;1052:1;1049:13;1041:113;;;1131:11;;;1125:18;1112:11;;;1105:39;1077:2;1070:10;1041:113;;;1172:6;1169:1;1166:13;1163:48;;;-1:-1:-1;;1207:1:1;1189:16;;1182:27;959:258::o;1222:269::-;1275:3;1313:5;1307:12;1340:6;1335:3;1328:19;1356:63;1412:6;1405:4;1400:3;1396:14;1389:4;1382:5;1378:16;1356:63;:::i;:::-;1473:2;1452:15;-1:-1:-1;;1448:29:1;1439:39;;;;1480:4;1435:50;;1222:269;-1:-1:-1;;1222:269:1:o;1496:231::-;1645:2;1634:9;1627:21;1608:4;1665:56;1717:2;1706:9;1702:18;1694:6;1665:56;:::i;2125:131::-;-1:-1:-1;;;;;2200:31:1;;2190:42;;2180:70;;2246:1;2243;2236:12;2261:315;2329:6;2337;2390:2;2378:9;2369:7;2365:23;2361:32;2358:52;;;2406:1;2403;2396:12;2358:52;2445:9;2432:23;2464:31;2489:5;2464:31;:::i;:::-;2514:5;2566:2;2551:18;;;;2538:32;;-1:-1:-1;;;2261:315:1:o;2763:456::-;2840:6;2848;2856;2909:2;2897:9;2888:7;2884:23;2880:32;2877:52;;;2925:1;2922;2915:12;2877:52;2964:9;2951:23;2983:31;3008:5;2983:31;:::i;:::-;3033:5;-1:-1:-1;3090:2:1;3075:18;;3062:32;3103:33;3062:32;3103:33;:::i;:::-;2763:456;;3155:7;;-1:-1:-1;;;3209:2:1;3194:18;;;;3181:32;;2763:456::o;3413:127::-;3474:10;3469:3;3465:20;3462:1;3455:31;3505:4;3502:1;3495:15;3529:4;3526:1;3519:15;3545:275;3616:2;3610:9;3681:2;3662:13;;-1:-1:-1;;3658:27:1;3646:40;;-1:-1:-1;;;;;3701:34:1;;3737:22;;;3698:62;3695:88;;;3763:18;;:::i;:::-;3799:2;3792:22;3545:275;;-1:-1:-1;3545:275:1:o;3825:407::-;3890:5;-1:-1:-1;;;;;3916:6:1;3913:30;3910:56;;;3946:18;;:::i;:::-;3984:57;4029:2;4008:15;;-1:-1:-1;;4004:29:1;4035:4;4000:40;3984:57;:::i;:::-;3975:66;;4064:6;4057:5;4050:21;4104:3;4095:6;4090:3;4086:16;4083:25;4080:45;;;4121:1;4118;4111:12;4080:45;4170:6;4165:3;4158:4;4151:5;4147:16;4134:43;4224:1;4217:4;4208:6;4201:5;4197:18;4193:29;4186:40;3825:407;;;;;:::o;4237:451::-;4306:6;4359:2;4347:9;4338:7;4334:23;4330:32;4327:52;;;4375:1;4372;4365:12;4327:52;4415:9;4402:23;-1:-1:-1;;;;;4440:6:1;4437:30;4434:50;;;4480:1;4477;4470:12;4434:50;4503:22;;4556:4;4548:13;;4544:27;-1:-1:-1;4534:55:1;;4585:1;4582;4575:12;4534:55;4608:74;4674:7;4669:2;4656:16;4651:2;4647;4643:11;4608:74;:::i;4693:156::-;4759:20;;4819:4;4808:16;;4798:27;;4788:55;;4839:1;4836;4829:12;4788:55;4693:156;;;:::o;4854:367::-;4917:8;4927:6;4981:3;4974:4;4966:6;4962:17;4958:27;4948:55;;4999:1;4996;4989:12;4948:55;-1:-1:-1;5022:20:1;;-1:-1:-1;;;;;5054:30:1;;5051:50;;;5097:1;5094;5087:12;5051:50;5134:4;5126:6;5122:17;5110:29;;5194:3;5187:4;5177:6;5174:1;5170:14;5162:6;5158:27;5154:38;5151:47;5148:67;;;5211:1;5208;5201:12;5148:67;4854:367;;;;;:::o;5226:507::-;5319:6;5327;5335;5388:2;5376:9;5367:7;5363:23;5359:32;5356:52;;;5404:1;5401;5394:12;5356:52;5427:27;5444:9;5427:27;:::i;:::-;5417:37;;5505:2;5494:9;5490:18;5477:32;-1:-1:-1;;;;;5524:6:1;5521:30;5518:50;;;5564:1;5561;5554:12;5518:50;5603:70;5665:7;5656:6;5645:9;5641:22;5603:70;:::i;:::-;5226:507;;5692:8;;-1:-1:-1;5577:96:1;;-1:-1:-1;;;;5226:507:1:o;5738:247::-;5797:6;5850:2;5838:9;5829:7;5825:23;5821:32;5818:52;;;5866:1;5863;5856:12;5818:52;5905:9;5892:23;5924:31;5949:5;5924:31;:::i;5990:182::-;6047:6;6100:2;6088:9;6079:7;6075:23;6071:32;6068:52;;;6116:1;6113;6106:12;6068:52;6139:27;6156:9;6139:27;:::i;6177:416::-;6242:6;6250;6303:2;6291:9;6282:7;6278:23;6274:32;6271:52;;;6319:1;6316;6309:12;6271:52;6358:9;6345:23;6377:31;6402:5;6377:31;:::i;:::-;6427:5;-1:-1:-1;6484:2:1;6469:18;;6456:32;6526:15;;6519:23;6507:36;;6497:64;;6557:1;6554;6547:12;6497:64;6580:7;6570:17;;;6177:416;;;;;:::o;6598:166::-;6665:20;;-1:-1:-1;;;;;;6714:25:1;;6704:36;;6694:64;;6754:1;6751;6744:12;6769:319;6836:6;6844;6897:2;6885:9;6876:7;6872:23;6868:32;6865:52;;;6913:1;6910;6903:12;6865:52;6952:9;6939:23;6971:31;6996:5;6971:31;:::i;:::-;7021:5;-1:-1:-1;7045:37:1;7078:2;7063:18;;7045:37;:::i;:::-;7035:47;;6769:319;;;;;:::o;7093:1095::-;7185:6;7193;7246:2;7234:9;7225:7;7221:23;7217:32;7214:52;;;7262:1;7259;7252:12;7214:52;7302:9;7289:23;-1:-1:-1;;;;;7372:2:1;7364:6;7361:14;7358:34;;;7388:1;7385;7378:12;7358:34;7426:6;7415:9;7411:22;7401:32;;7471:7;7464:4;7460:2;7456:13;7452:27;7442:55;;7493:1;7490;7483:12;7442:55;7529:2;7516:16;7551:4;7574:2;7570;7567:10;7564:36;;;7580:18;;:::i;:::-;7626:2;7623:1;7619:10;7609:20;;7649:28;7673:2;7669;7665:11;7649:28;:::i;:::-;7711:15;;;7781:11;;;7777:20;;;7742:12;;;;7809:19;;;7806:39;;;7841:1;7838;7831:12;7806:39;7865:11;;;;7885:217;7901:6;7896:3;7893:15;7885:217;;;7981:3;7968:17;7955:30;;7998:31;8023:5;7998:31;:::i;:::-;8042:18;;;7918:12;;;;8080;;;;7885:217;;;8121:5;-1:-1:-1;8145:37:1;;-1:-1:-1;8163:18:1;;;8145:37;:::i;:::-;8135:47;;;;;;7093:1095;;;;;:::o;8453:795::-;8548:6;8556;8564;8572;8625:3;8613:9;8604:7;8600:23;8596:33;8593:53;;;8642:1;8639;8632:12;8593:53;8681:9;8668:23;8700:31;8725:5;8700:31;:::i;:::-;8750:5;-1:-1:-1;8807:2:1;8792:18;;8779:32;8820:33;8779:32;8820:33;:::i;:::-;8872:7;-1:-1:-1;8926:2:1;8911:18;;8898:32;;-1:-1:-1;8981:2:1;8966:18;;8953:32;-1:-1:-1;;;;;8997:30:1;;8994:50;;;9040:1;9037;9030:12;8994:50;9063:22;;9116:4;9108:13;;9104:27;-1:-1:-1;9094:55:1;;9145:1;9142;9135:12;9094:55;9168:74;9234:7;9229:2;9216:16;9211:2;9207;9203:11;9168:74;:::i;:::-;9158:84;;;8453:795;;;;;;;:::o;9453:505::-;9548:6;9556;9564;9617:2;9605:9;9596:7;9592:23;9588:32;9585:52;;;9633:1;9630;9623:12;9585:52;9673:9;9660:23;-1:-1:-1;;;;;9698:6:1;9695:30;9692:50;;;9738:1;9735;9728:12;9692:50;9777:70;9839:7;9830:6;9819:9;9815:22;9777:70;:::i;:::-;9866:8;;9751:96;;-1:-1:-1;9948:2:1;9933:18;;;;9920:32;;9453:505;-1:-1:-1;;;;9453:505:1:o;9963:388::-;10031:6;10039;10092:2;10080:9;10071:7;10067:23;10063:32;10060:52;;;10108:1;10105;10098:12;10060:52;10147:9;10134:23;10166:31;10191:5;10166:31;:::i;:::-;10216:5;-1:-1:-1;10273:2:1;10258:18;;10245:32;10286:33;10245:32;10286:33;:::i;10356:356::-;10558:2;10540:21;;;10577:18;;;10570:30;10636:34;10631:2;10616:18;;10609:62;10703:2;10688:18;;10356:356::o;10717:380::-;10796:1;10792:12;;;;10839;;;10860:61;;10914:4;10906:6;10902:17;10892:27;;10860:61;10967:2;10959:6;10956:14;10936:18;10933:38;10930:161;;;11013:10;11008:3;11004:20;11001:1;10994:31;11048:4;11045:1;11038:15;11076:4;11073:1;11066:15;10930:161;;10717:380;;;:::o;12345:127::-;12406:10;12401:3;12397:20;12394:1;12387:31;12437:4;12434:1;12427:15;12461:4;12458:1;12451:15;12477:125;12517:4;12545:1;12542;12539:8;12536:34;;;12550:18;;:::i;:::-;-1:-1:-1;12587:9:1;;12477:125::o;13010:135::-;13049:3;-1:-1:-1;;13070:17:1;;13067:43;;;13090:18;;:::i;:::-;-1:-1:-1;13137:1:1;13126:13;;13010:135::o;14179:344::-;14381:2;14363:21;;;14420:2;14400:18;;;14393:30;-1:-1:-1;;;14454:2:1;14439:18;;14432:50;14514:2;14499:18;;14179:344::o;14528:204::-;14566:3;14602:4;14599:1;14595:12;14634:4;14631:1;14627:12;14669:3;14663:4;14659:14;14654:3;14651:23;14648:49;;;14677:18;;:::i;:::-;14713:13;;14528:204;-1:-1:-1;;;14528:204:1:o;14737:399::-;14939:2;14921:21;;;14978:2;14958:18;;;14951:30;15017:34;15012:2;14997:18;;14990:62;-1:-1:-1;;;15083:2:1;15068:18;;15061:33;15126:3;15111:19;;14737:399::o;15141:168::-;15181:7;15247:1;15243;15239:6;15235:14;15232:1;15229:21;15224:1;15217:9;15210:17;15206:45;15203:71;;;15254:18;;:::i;:::-;-1:-1:-1;15294:9:1;;15141:168::o;15314:342::-;15516:2;15498:21;;;15555:2;15535:18;;;15528:30;-1:-1:-1;;;15589:2:1;15574:18;;15567:48;15647:2;15632:18;;15314:342::o;16650:128::-;16690:3;16721:1;16717:6;16714:1;16711:13;16708:39;;;16727:18;;:::i;:::-;-1:-1:-1;16763:9:1;;16650:128::o;16783:405::-;16985:2;16967:21;;;17024:2;17004:18;;;16997:30;17063:34;17058:2;17043:18;;17036:62;-1:-1:-1;;;17129:2:1;17114:18;;17107:39;17178:3;17163:19;;16783:405::o;17536:195::-;17574:4;17611;17608:1;17604:12;17643:4;17640:1;17636:12;17668:3;17663;17660:12;17657:38;;;17675:18;;:::i;:::-;17712:13;;;17536:195;-1:-1:-1;;;17536:195:1:o;18437:127::-;18498:10;18493:3;18489:20;18486:1;18479:31;18529:4;18526:1;18519:15;18553:4;18550:1;18543:15;18569:415;18771:2;18753:21;;;18810:2;18790:18;;;18783:30;18849:34;18844:2;18829:18;;18822:62;-1:-1:-1;;;18915:2:1;18900:18;;18893:49;18974:3;18959:19;;18569:415::o;19531:185::-;19573:3;19611:5;19605:12;19626:52;19671:6;19666:3;19659:4;19652:5;19648:16;19626:52;:::i;:::-;19694:16;;;;;19531:185;-1:-1:-1;;19531:185:1:o;19839:1301::-;20116:3;20145:1;20178:6;20172:13;20208:3;20230:1;20258:9;20254:2;20250:18;20240:28;;20318:2;20307:9;20303:18;20340;20330:61;;20384:4;20376:6;20372:17;20362:27;;20330:61;20410:2;20458;20450:6;20447:14;20427:18;20424:38;20421:165;;;-1:-1:-1;;;20485:33:1;;20541:4;20538:1;20531:15;20571:4;20492:3;20559:17;20421:165;20602:18;20629:104;;;;20747:1;20742:320;;;;20595:467;;20629:104;-1:-1:-1;;20662:24:1;;20650:37;;20707:16;;;;-1:-1:-1;20629:104:1;;20742:320;19478:1;19471:14;;;19515:4;19502:18;;20837:1;20851:165;20865:6;20862:1;20859:13;20851:165;;;20943:14;;20930:11;;;20923:35;20986:16;;;;20880:10;;20851:165;;;20855:3;;21045:6;21040:3;21036:16;21029:23;;20595:467;;;;;;;21078:56;21103:30;21129:3;21121:6;21103:30;:::i;:::-;-1:-1:-1;;;19781:20:1;;19826:1;19817:11;;19721:113;21078:56;21071:63;19839:1301;-1:-1:-1;;;;;19839:1301:1:o;23612:136::-;23651:3;23679:5;23669:39;;23688:18;;:::i;:::-;-1:-1:-1;;;23724:18:1;;23612:136::o;24169:500::-;-1:-1:-1;;;;;24438:15:1;;;24420:34;;24490:15;;24485:2;24470:18;;24463:43;24537:2;24522:18;;24515:34;;;24585:3;24580:2;24565:18;;24558:31;;;24363:4;;24606:57;;24643:19;;24635:6;24606:57;:::i;:::-;24598:65;24169:500;-1:-1:-1;;;;;;24169:500:1:o;24674:249::-;24743:6;24796:2;24784:9;24775:7;24771:23;24767:32;24764:52;;;24812:1;24809;24802:12;24764:52;24844:9;24838:16;24863:30;24887:5;24863:30;:::i;24928:127::-;24989:10;24984:3;24980:20;24977:1;24970:31;25020:4;25017:1;25010:15;25044:4;25041:1;25034:15;25060:120;25100:1;25126;25116:35;;25131:18;;:::i;:::-;-1:-1:-1;25165:9:1;;25060:120::o;25185:112::-;25217:1;25243;25233:35;;25248:18;;:::i;:::-;-1:-1:-1;25282:9:1;;25185:112::o;26466:253::-;26506:3;-1:-1:-1;;;;;26595:2:1;26592:1;26588:10;26625:2;26622:1;26618:10;26656:3;26652:2;26648:12;26643:3;26640:21;26637:47;;;26664:18;;:::i;:::-;26700:13;;26466:253;-1:-1:-1;;;;26466:253:1:o

Swarm Source

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