ETH Price: $3,401.26 (+6.55%)
Gas: 25 Gwei

Token

lil frens (LIL)
 

Overview

Max Total Supply

2,222 LIL

Holders

308

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Filtered by Token Holder
unclejesse.eth
Balance
3 LIL
0x0d55e98cc0a865b134af24e4f79d3974af8d6a19
Loading...
Loading
Loading...
Loading
Loading...
Loading

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

Contract Source Code Verified (Exact Match)

Contract Name:
LilFrens

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-04-27
*/

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


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

pragma solidity ^0.8.0;

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

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

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

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

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

// File: @openzeppelin/contracts/utils/cryptography/MerkleProof.sol


// OpenZeppelin Contracts v4.4.1 (utils/cryptography/MerkleProof.sol)

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.
 */
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 Merklee 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 = keccak256(abi.encodePacked(computedHash, proofElement));
            } else {
                // Hash(current element of the proof + current computed hash)
                computedHash = keccak256(abi.encodePacked(proofElement, computedHash));
            }
        }
        return computedHash;
    }
}

// File: @openzeppelin/contracts/security/ReentrancyGuard.sol



pragma solidity ^0.8.0;

/**
 * @dev Contract module that helps prevent reentrant calls to a function.
 *
 * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier
 * available, which can be applied to functions to make sure there are no nested
 * (reentrant) calls to them.
 *
 * Note that because there is a single `nonReentrant` guard, functions marked as
 * `nonReentrant` may not call one another. This can be worked around by making
 * those functions `private`, and then adding `external` `nonReentrant` entry
 * points to them.
 *
 * TIP: If you would like to learn more about reentrancy and alternative ways
 * to protect against it, check out our blog post
 * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul].
 */
abstract contract ReentrancyGuard {
    // Booleans are more expensive than uint256 or any type that takes up a full
    // word because each write operation emits an extra SLOAD to first read the
    // slot's contents, replace the bits taken up by the boolean, and then write
    // back. This is the compiler's defense against contract upgrades and
    // pointer aliasing, and it cannot be disabled.

    // The values being non-zero value makes deployment a bit more expensive,
    // but in exchange the refund on every call to nonReentrant will be lower in
    // amount. Since refunds are capped to a percentage of the total
    // transaction's gas, it is best to keep them low in cases like this one, to
    // increase the likelihood of the full refund coming into effect.
    uint256 private constant _NOT_ENTERED = 1;
    uint256 private constant _ENTERED = 2;

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

    /**
     * @dev Prevents a contract from calling itself, directly or indirectly.
     * Calling a `nonReentrant` function from another `nonReentrant`
     * function is not supported. It is possible to prevent this from happening
     * by making the `nonReentrant` function external, and make it call a
     * `private` function that does the actual work.
     */
    modifier nonReentrant() {
        // On the first call to nonReentrant, _notEntered will be true
        require(_status != _ENTERED, "ReentrancyGuard: reentrant call");

        // Any calls to nonReentrant after this point will fail
        _status = _ENTERED;

        _;

        // By storing the original value once again, a refund is triggered (see
        // https://eips.ethereum.org/EIPS/eip-2200)
        _status = _NOT_ENTERED;
    }
}

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



pragma solidity ^0.8.0;

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

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

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



pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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



pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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



pragma solidity ^0.8.0;

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

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



pragma solidity ^0.8.0;

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

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



pragma solidity ^0.8.0;


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

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



pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

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

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

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

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



pragma solidity ^0.8.0;


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

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

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

// File: @openzeppelin/contracts/utils/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/token/ERC721/ERC721.sol



pragma solidity ^0.8.0;








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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

    /**
     * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each
     * token will be the concatenation of the `baseURI` and the `tokenId`. Empty
     * by default, can be overriden in child contracts.
     */
    function _baseURI() internal view virtual returns (string memory) {
        return "";
    }

    /**
     * @dev See {IERC721-approve}.
     */
    function approve(address to, uint256 tokenId) public virtual override {
        address owner = ERC721.ownerOf(tokenId);
        require(to != owner, "ERC721: approval to current owner");

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public virtual override {
        require(operator != _msgSender(), "ERC721: approve to caller");

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

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);
    }

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

    /**
     * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address.
     * The call is not executed if the target address is not a contract.
     *
     * @param from address representing the previous owner of the given token ID
     * @param to target address that will receive the tokens
     * @param tokenId uint256 ID of the token to be transferred
     * @param _data bytes optional data to send along with the call
     * @return bool whether the call correctly returned the expected magic value
     */
    function _checkOnERC721Received(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) private returns (bool) {
        if (to.isContract()) {
            try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) {
                return retval == IERC721Receiver.onERC721Received.selector;
            } catch (bytes memory reason) {
                if (reason.length == 0) {
                    revert("ERC721: transfer to non ERC721Receiver implementer");
                } else {
                    assembly {
                        revert(add(32, reason), mload(reason))
                    }
                }
            }
        } else {
            return true;
        }
    }

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

// File: contracts/LilFrens.sol



pragma solidity ^0.8.0;







contract LilFrens is ERC721, Ownable, ReentrancyGuard {
    string public baseURI;

    uint256 public constant MAX_SUPPLY = 2222;

    uint256 public cost = 0.18 ether;
    uint256 public maxPerWallet = 2;

    // used to validate whitelists
    bytes32 public whitelistMerkleRoot;

    bool public isAllowListActive;
    bool public isMainSaleActive;

    address public editor;

    mapping(uint256 => string) internal tokenUris;
    mapping(address => uint256) internal walletCap;

    using Counters for Counters.Counter;
    Counters.Counter private _tokenSupply;

    constructor(string memory _baseURI) ERC721("lil frens", "LIL") {
        baseURI = _baseURI;
        isAllowListActive = false;
        isMainSaleActive = false;
        editor = msg.sender;
    }

    /**
     * @dev validates merkleProof
     */
    modifier isValidMerkleProof(bytes32[] calldata merkleProof, bytes32 root) {
        require(
            MerkleProof.verify(
                merkleProof,
                root,
                keccak256(abi.encodePacked(msg.sender))
            ),
            "Address does not exist in list"
        );
        _;
    }

    modifier isCorrectPayment(uint256 price, uint256 numberOfTokens) {
        require(
            price * numberOfTokens == msg.value,
            "Incorrect ETH value sent"
        );
        _;
    }

    modifier onlyEditor() {
        require(msg.sender == editor);
        _;
    }

    // ============ PUBLIC FUNCTIONS FOR MINTING ============

    /**
    * @dev mints 1 token per whitelisted address, does not charge a fee
    */
    function mintWhitelist(
        bytes32[] calldata merkleProof,
        uint256 numberOfTokens
    )
        public
        payable
        isValidMerkleProof(merkleProof, whitelistMerkleRoot)
        isCorrectPayment(cost, numberOfTokens)
        nonReentrant
    {
        require(isAllowListActive && !isMainSaleActive, "Allowlist sale must be active to mint tokens");
        require(numberOfTokens > 0, "Must mint at least 1 token.");
        require(walletCap[msg.sender] + numberOfTokens <= maxPerWallet, "Purchase would exceed max number of mints per wallet.");
        require(_tokenSupply.current() + numberOfTokens <= MAX_SUPPLY, "Purchase would exceed max number of tokens");

        for (uint256 i = 0; i < numberOfTokens; i++) {
            _tokenSupply.increment();
            _mint(msg.sender, _tokenSupply.current());
        }
        walletCap[msg.sender] += numberOfTokens;
    }

    /**
    * @dev mints specified # of tokens to sender address
    */
    function mint(
        uint256 numberOfTokens
    )
        public
        payable
        isCorrectPayment(cost, numberOfTokens)
        nonReentrant
    {
        require(!isAllowListActive && isMainSaleActive, "Main sale must be active to mint.");
        require(numberOfTokens > 0, "Must mint at least 1 token.");
        require(walletCap[msg.sender] + numberOfTokens <= maxPerWallet, "Purchase would exceed max number of mints per wallet.");
        require(_tokenSupply.current() + numberOfTokens <= MAX_SUPPLY, "Purchase would exceed max number of tokens");

        for (uint256 i = 0; i < numberOfTokens; i++) {
            _tokenSupply.increment();
            _mint(msg.sender, _tokenSupply.current());
        }
        walletCap[msg.sender] += numberOfTokens;
    }

     // ============ PUBLIC READ-ONLY FUNCTIONS ============
    function tokenURI(uint256 tokenId)
      public
      view
      virtual
      override
      returns (string memory)
    {
      require(_exists(tokenId), "ERC721Metadata: query for nonexistent token");
      
      // Custom tokenURI exists
      if (bytes(tokenUris[tokenId]).length != 0) {
        return tokenUris[tokenId];
      }
      else {
        return string(abi.encodePacked(baseURI, Strings.toString(tokenId), ".json"));
      }
    }

    function setTokenURI(uint256 _tokenId, string memory _uri) external onlyEditor {
        tokenUris[_tokenId] = _uri;
    }

    function totalSupply() public view returns (uint256) {
        return _tokenSupply.current();
    }

    // ============ OWNER-ONLY ADMIN FUNCTIONS ============
    // @dev Private mint function reserved for company.
    // @param _to The user receiving the tokens
    // @param _mintAmount The number of tokens to distribute
    function mintToAddress(address _to, uint256 _mintAmount) external onlyOwner {
        require(_mintAmount > 0, "You can only mint more than 0 tokens");
        require(_tokenSupply.current() + _mintAmount <= MAX_SUPPLY, "Can't mint more than max supply");
        for (uint256 i = 0; i < _mintAmount; i++) {
            _tokenSupply.increment();
            _mint(_to, _tokenSupply.current());
        }
    }

    function setEditor(address ed) external onlyOwner {
        editor = ed;
    }

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

    function setWhitelistMerkleRoot(bytes32 merkleRoot) external onlyOwner {
        whitelistMerkleRoot = merkleRoot;
    }

    function flipAllowListState() external onlyOwner {
        isAllowListActive = !isAllowListActive;
    }

    function flipMainSaleState() external onlyOwner {
        isMainSaleActive = !isMainSaleActive;
    }

    function setCost(uint256 _newCost) external onlyOwner {
        cost = _newCost;
    }

    /**
     * @dev withdraw funds for to specified account
     */
    function withdraw() public onlyOwner {
        uint256 balance = address(this).balance;
        payable(msg.sender).transfer(balance);
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_baseURI","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"cost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"editor","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"flipAllowListState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"flipMainSaleState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isAllowListActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isMainSaleActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPerWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"numberOfTokens","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mintToAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32[]","name":"merkleProof","type":"bytes32[]"},{"internalType":"uint256","name":"numberOfTokens","type":"uint256"}],"name":"mintWhitelist","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"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":"uint256","name":"_newCost","type":"uint256"}],"name":"setCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"ed","type":"address"}],"name":"setEditor","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"},{"internalType":"string","name":"_uri","type":"string"}],"name":"setTokenURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"merkleRoot","type":"bytes32"}],"name":"setWhitelistMerkleRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"whitelistMerkleRoot","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

608060405267027f7d0bdb9200006009556002600a553480156200002257600080fd5b5060405162002a0338038062002a038339810160408190526200004591620001f9565b60408051808201825260098152686c696c206672656e7360b81b60208083019182528351808501909452600384526213125360ea1b908401528151919291620000919160009162000153565b508051620000a790600190602084019062000153565b505050620000c4620000be620000fd60201b60201c565b62000101565b60016007558051620000de90600890602084019062000153565b5050600c80546001600160b01b03191633620100000217905562000328565b3390565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b8280546200016190620002d5565b90600052602060002090601f016020900481019282620001855760008555620001d0565b82601f10620001a057805160ff1916838001178555620001d0565b82800160010185558215620001d0579182015b82811115620001d0578251825591602001919060010190620001b3565b50620001de929150620001e2565b5090565b5b80821115620001de5760008155600101620001e3565b600060208083850312156200020d57600080fd5b82516001600160401b03808211156200022557600080fd5b818501915085601f8301126200023a57600080fd5b8151818111156200024f576200024f62000312565b604051601f8201601f19908116603f011681019083821181831017156200027a576200027a62000312565b8160405282815288868487010111156200029357600080fd5b600093505b82841015620002b7578484018601518185018701529285019262000298565b82841115620002c95760008684830101525b98975050505050505050565b600181811c90821680620002ea57607f821691505b602082108114156200030c57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052604160045260246000fd5b6126cb80620003386000396000f3fe60806040526004361061020f5760003560e01c80636c0360eb11610118578063a6d612f9116100a0578063bd32fb661161006f578063bd32fb66146105ac578063c87b56dd146105cc578063e985e9c5146105ec578063f2fde38b14610635578063feb309ad1461065557600080fd5b8063a6d612f914610544578063aa98e0c614610557578063b3b2cb7a1461056d578063b88d4fde1461058c57600080fd5b80638da5cb5b116100e75780638da5cb5b146104b857806395d89b41146104d6578063a0712d68146104eb578063a22cb465146104fe578063a464d2651461051e57600080fd5b80636c0360eb1461044e57806370a0823114610463578063715018a614610483578063825a229e1461049857600080fd5b806329fc6bae1161019b57806342842e0e1161016a57806342842e0e146103b857806344a0d68a146103d8578063453c2310146103f857806355f804b31461040e5780636352211e1461042e57600080fd5b806329fc6bae1461035e5780632aea3d231461037857806332cb6b0c1461038d5780633ccfd60b146103a357600080fd5b806313faede6116101e257806313faede6146102c5578063162094c4146102e957806318160ddd1461030957806321ca42361461031e57806323b872dd1461033e57600080fd5b806301ffc9a71461021457806306fdde0314610249578063081812fc1461026b578063095ea7b3146102a3575b600080fd5b34801561022057600080fd5b5061023461022f3660046121af565b61066a565b60405190151581526020015b60405180910390f35b34801561025557600080fd5b5061025e6106bc565b60405161024091906123a5565b34801561027757600080fd5b5061028b610286366004612196565b61074e565b6040516001600160a01b039091168152602001610240565b3480156102af57600080fd5b506102c36102be3660046120f1565b6107e8565b005b3480156102d157600080fd5b506102db60095481565b604051908152602001610240565b3480156102f557600080fd5b506102c361030436600461221e565b6108fe565b34801561031557600080fd5b506102db61093a565b34801561032a57600080fd5b506102c36103393660046120f1565b61094a565b34801561034a57600080fd5b506102c3610359366004611ffd565b610a72565b34801561036a57600080fd5b50600c546102349060ff1681565b34801561038457600080fd5b506102c3610aa3565b34801561039957600080fd5b506102db6108ae81565b3480156103af57600080fd5b506102c3610aea565b3480156103c457600080fd5b506102c36103d3366004611ffd565b610b47565b3480156103e457600080fd5b506102c36103f3366004612196565b610b62565b34801561040457600080fd5b506102db600a5481565b34801561041a57600080fd5b506102c36104293660046121e9565b610b91565b34801561043a57600080fd5b5061028b610449366004612196565b610bce565b34801561045a57600080fd5b5061025e610c45565b34801561046f57600080fd5b506102db61047e366004611faf565b610cd3565b34801561048f57600080fd5b506102c3610d5a565b3480156104a457600080fd5b506102c36104b3366004611faf565b610d90565b3480156104c457600080fd5b506006546001600160a01b031661028b565b3480156104e257600080fd5b5061025e610de4565b6102c36104f9366004612196565b610df3565b34801561050a57600080fd5b506102c36105193660046120b5565b61103a565b34801561052a57600080fd5b50600c5461028b906201000090046001600160a01b031681565b6102c361055236600461211b565b6110ff565b34801561056357600080fd5b506102db600b5481565b34801561057957600080fd5b50600c5461023490610100900460ff1681565b34801561059857600080fd5b506102c36105a7366004612039565b611419565b3480156105b857600080fd5b506102c36105c7366004612196565b611451565b3480156105d857600080fd5b5061025e6105e7366004612196565b611480565b3480156105f857600080fd5b50610234610607366004611fca565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561064157600080fd5b506102c3610650366004611faf565b6115f0565b34801561066157600080fd5b506102c361168b565b60006001600160e01b031982166380ac58cd60e01b148061069b57506001600160e01b03198216635b5e139f60e01b145b806106b657506301ffc9a760e01b6001600160e01b03198316145b92915050565b6060600080546106cb906125bd565b80601f01602080910402602001604051908101604052809291908181526020018280546106f7906125bd565b80156107445780601f1061071957610100808354040283529160200191610744565b820191906000526020600020905b81548152906001019060200180831161072757829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166107cc5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b60006107f382610bce565b9050806001600160a01b0316836001600160a01b031614156108615760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084016107c3565b336001600160a01b038216148061087d575061087d8133610607565b6108ef5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c000000000000000060648201526084016107c3565b6108f983836116c9565b505050565b600c546201000090046001600160a01b0316331461091b57600080fd5b6000828152600d6020908152604090912082516108f992840190611e62565b6000610945600f5490565b905090565b6006546001600160a01b031633146109745760405162461bcd60e51b81526004016107c3906124a9565b600081116109d05760405162461bcd60e51b8152602060048201526024808201527f596f752063616e206f6e6c79206d696e74206d6f7265207468616e203020746f6044820152636b656e7360e01b60648201526084016107c3565b6108ae816109dd600f5490565b6109e7919061252f565b1115610a355760405162461bcd60e51b815260206004820152601f60248201527f43616e2774206d696e74206d6f7265207468616e206d617820737570706c790060448201526064016107c3565b60005b818110156108f957610a4e600f80546001019055565b610a6083610a5b600f5490565b611737565b80610a6a816125f8565b915050610a38565b610a7c3382611879565b610a985760405162461bcd60e51b81526004016107c3906124de565b6108f9838383611970565b6006546001600160a01b03163314610acd5760405162461bcd60e51b81526004016107c3906124a9565b600c805461ff001981166101009182900460ff1615909102179055565b6006546001600160a01b03163314610b145760405162461bcd60e51b81526004016107c3906124a9565b6040514790339082156108fc029083906000818181858888f19350505050158015610b43573d6000803e3d6000fd5b5050565b6108f983838360405180602001604052806000815250611419565b6006546001600160a01b03163314610b8c5760405162461bcd60e51b81526004016107c3906124a9565b600955565b6006546001600160a01b03163314610bbb5760405162461bcd60e51b81526004016107c3906124a9565b8051610b43906008906020840190611e62565b6000818152600260205260408120546001600160a01b0316806106b65760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b60648201526084016107c3565b60088054610c52906125bd565b80601f0160208091040260200160405190810160405280929190818152602001828054610c7e906125bd565b8015610ccb5780601f10610ca057610100808354040283529160200191610ccb565b820191906000526020600020905b815481529060010190602001808311610cae57829003601f168201915b505050505081565b60006001600160a01b038216610d3e5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b60648201526084016107c3565b506001600160a01b031660009081526003602052604090205490565b6006546001600160a01b03163314610d845760405162461bcd60e51b81526004016107c3906124a9565b610d8e6000611b10565b565b6006546001600160a01b03163314610dba5760405162461bcd60e51b81526004016107c3906124a9565b600c80546001600160a01b03909216620100000262010000600160b01b0319909216919091179055565b6060600180546106cb906125bd565b6009548134610e02828461255b565b14610e4a5760405162461bcd60e51b8152602060048201526018602482015277125b98dbdc9c9958dd08115512081d985b1d59481cd95b9d60421b60448201526064016107c3565b60026007541415610e9d5760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0060448201526064016107c3565b6002600755600c5460ff16158015610ebc5750600c54610100900460ff165b610f125760405162461bcd60e51b815260206004820152602160248201527f4d61696e2073616c65206d7573742062652061637469766520746f206d696e746044820152601760f91b60648201526084016107c3565b60008311610f625760405162461bcd60e51b815260206004820152601b60248201527f4d757374206d696e74206174206c65617374203120746f6b656e2e000000000060448201526064016107c3565b600a54336000908152600e6020526040902054610f8090859061252f565b1115610f9e5760405162461bcd60e51b81526004016107c390612454565b6108ae83610fab600f5490565b610fb5919061252f565b1115610fd35760405162461bcd60e51b81526004016107c3906123b8565b60005b8381101561100b57610fec600f80546001019055565b610ff933610a5b600f5490565b80611003816125f8565b915050610fd6565b50336000908152600e60205260408120805485929061102b90849061252f565b90915550506001600755505050565b6001600160a01b0382163314156110935760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c65720000000000000060448201526064016107c3565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b8282600b54611176838380806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250506040516bffffffffffffffffffffffff193360601b166020820152859250603401905060405160208183030381529060405280519060200120611b62565b6111c25760405162461bcd60e51b815260206004820152601e60248201527f4164647265737320646f6573206e6f7420657869737420696e206c697374000060448201526064016107c3565b60095484346111d1828461255b565b146112195760405162461bcd60e51b8152602060048201526018602482015277125b98dbdc9c9958dd08115512081d985b1d59481cd95b9d60421b60448201526064016107c3565b6002600754141561126c5760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0060448201526064016107c3565b6002600755600c5460ff16801561128b5750600c54610100900460ff16155b6112ec5760405162461bcd60e51b815260206004820152602c60248201527f416c6c6f776c6973742073616c65206d7573742062652061637469766520746f60448201526b206d696e7420746f6b656e7360a01b60648201526084016107c3565b6000861161133c5760405162461bcd60e51b815260206004820152601b60248201527f4d757374206d696e74206174206c65617374203120746f6b656e2e000000000060448201526064016107c3565b600a54336000908152600e602052604090205461135a90889061252f565b11156113785760405162461bcd60e51b81526004016107c390612454565b6108ae86611385600f5490565b61138f919061252f565b11156113ad5760405162461bcd60e51b81526004016107c3906123b8565b60005b868110156113e5576113c6600f80546001019055565b6113d333610a5b600f5490565b806113dd816125f8565b9150506113b0565b50336000908152600e60205260408120805488929061140590849061252f565b909155505060016007555050505050505050565b6114233383611879565b61143f5760405162461bcd60e51b81526004016107c3906124de565b61144b84848484611b78565b50505050565b6006546001600160a01b0316331461147b5760405162461bcd60e51b81526004016107c3906124a9565b600b55565b6000818152600260205260409020546060906001600160a01b03166114fb5760405162461bcd60e51b815260206004820152602b60248201527f4552433732314d657461646174613a20717565727920666f72206e6f6e65786960448201526a39ba32b73a103a37b5b2b760a91b60648201526084016107c3565b6000828152600d602052604090208054611514906125bd565b1590506115b9576000828152600d602052604090208054611534906125bd565b80601f0160208091040260200160405190810160405280929190818152602001828054611560906125bd565b80156115ad5780601f10611582576101008083540402835291602001916115ad565b820191906000526020600020905b81548152906001019060200180831161159057829003601f168201915b50505050509050919050565b60086115c483611bab565b6040516020016115d59291906122ad565b6040516020818303038152906040529050919050565b919050565b6006546001600160a01b0316331461161a5760405162461bcd60e51b81526004016107c3906124a9565b6001600160a01b03811661167f5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016107c3565b61168881611b10565b50565b6006546001600160a01b031633146116b55760405162461bcd60e51b81526004016107c3906124a9565b600c805460ff19811660ff90911615179055565b600081815260046020526040902080546001600160a01b0319166001600160a01b03841690811790915581906116fe82610bce565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6001600160a01b03821661178d5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016107c3565b6000818152600260205260409020546001600160a01b0316156117f25760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016107c3565b6001600160a01b038216600090815260036020526040812080546001929061181b90849061252f565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b6000818152600260205260408120546001600160a01b03166118f25760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016107c3565b60006118fd83610bce565b9050806001600160a01b0316846001600160a01b031614806119385750836001600160a01b031661192d8461074e565b6001600160a01b0316145b8061196857506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b031661198382610bce565b6001600160a01b0316146119eb5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b60648201526084016107c3565b6001600160a01b038216611a4d5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b60648201526084016107c3565b611a586000826116c9565b6001600160a01b0383166000908152600360205260408120805460019290611a8190849061257a565b90915550506001600160a01b0382166000908152600360205260408120805460019290611aaf90849061252f565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600082611b6f8584611ca9565b14949350505050565b611b83848484611970565b611b8f84848484611d55565b61144b5760405162461bcd60e51b81526004016107c390612402565b606081611bcf5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611bf95780611be3816125f8565b9150611bf29050600a83612547565b9150611bd3565b60008167ffffffffffffffff811115611c1457611c14612669565b6040519080825280601f01601f191660200182016040528015611c3e576020820181803683370190505b5090505b841561196857611c5360018361257a565b9150611c60600a86612613565b611c6b90603061252f565b60f81b818381518110611c8057611c80612653565b60200101906001600160f81b031916908160001a905350611ca2600a86612547565b9450611c42565b600081815b8451811015611d4d576000858281518110611ccb57611ccb612653565b60200260200101519050808311611d0d576040805160208101859052908101829052606001604051602081830303815290604052805190602001209250611d3a565b60408051602081018390529081018490526060016040516020818303038152906040528051906020012092505b5080611d45816125f8565b915050611cae565b509392505050565b60006001600160a01b0384163b15611e5757604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611d99903390899088908890600401612368565b602060405180830381600087803b158015611db357600080fd5b505af1925050508015611de3575060408051601f3d908101601f19168201909252611de0918101906121cc565b60015b611e3d573d808015611e11576040519150601f19603f3d011682016040523d82523d6000602084013e611e16565b606091505b508051611e355760405162461bcd60e51b81526004016107c390612402565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611968565b506001949350505050565b828054611e6e906125bd565b90600052602060002090601f016020900481019282611e905760008555611ed6565b82601f10611ea957805160ff1916838001178555611ed6565b82800160010185558215611ed6579182015b82811115611ed6578251825591602001919060010190611ebb565b50611ee2929150611ee6565b5090565b5b80821115611ee25760008155600101611ee7565b600067ffffffffffffffff80841115611f1657611f16612669565b604051601f8501601f19908116603f01168101908282118183101715611f3e57611f3e612669565b81604052809350858152868686011115611f5757600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b03811681146115eb57600080fd5b600082601f830112611f9957600080fd5b611fa883833560208501611efb565b9392505050565b600060208284031215611fc157600080fd5b611fa882611f71565b60008060408385031215611fdd57600080fd5b611fe683611f71565b9150611ff460208401611f71565b90509250929050565b60008060006060848603121561201257600080fd5b61201b84611f71565b925061202960208501611f71565b9150604084013590509250925092565b6000806000806080858703121561204f57600080fd5b61205885611f71565b935061206660208601611f71565b925060408501359150606085013567ffffffffffffffff81111561208957600080fd5b8501601f8101871361209a57600080fd5b6120a987823560208401611efb565b91505092959194509250565b600080604083850312156120c857600080fd5b6120d183611f71565b9150602083013580151581146120e657600080fd5b809150509250929050565b6000806040838503121561210457600080fd5b61210d83611f71565b946020939093013593505050565b60008060006040848603121561213057600080fd5b833567ffffffffffffffff8082111561214857600080fd5b818601915086601f83011261215c57600080fd5b81358181111561216b57600080fd5b8760208260051b850101111561218057600080fd5b6020928301989097509590910135949350505050565b6000602082840312156121a857600080fd5b5035919050565b6000602082840312156121c157600080fd5b8135611fa88161267f565b6000602082840312156121de57600080fd5b8151611fa88161267f565b6000602082840312156121fb57600080fd5b813567ffffffffffffffff81111561221257600080fd5b61196884828501611f88565b6000806040838503121561223157600080fd5b82359150602083013567ffffffffffffffff81111561224f57600080fd5b61225b85828601611f88565b9150509250929050565b6000815180845261227d816020860160208601612591565b601f01601f19169290920160200192915050565b600081516122a3818560208601612591565b9290920192915050565b600080845481600182811c9150808316806122c957607f831692505b60208084108214156122e957634e487b7160e01b86526022600452602486fd5b8180156122fd576001811461230e5761233b565b60ff1986168952848901965061233b565b60008b81526020902060005b868110156123335781548b82015290850190830161231a565b505084890196505b50505050505061235f61234e8286612291565b64173539b7b760d91b815260050190565b95945050505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061239b90830184612265565b9695505050505050565b602081526000611fa86020830184612265565b6020808252602a908201527f507572636861736520776f756c6420657863656564206d6178206e756d626572604082015269206f6620746f6b656e7360b01b606082015260800190565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b60208082526035908201527f507572636861736520776f756c6420657863656564206d6178206e756d6265726040820152741037b31036b4b73a39903832b9103bb0b63632ba1760591b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b6000821982111561254257612542612627565b500190565b6000826125565761255661263d565b500490565b600081600019048311821515161561257557612575612627565b500290565b60008282101561258c5761258c612627565b500390565b60005b838110156125ac578181015183820152602001612594565b8381111561144b5750506000910152565b600181811c908216806125d157607f821691505b602082108114156125f257634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561260c5761260c612627565b5060010190565b6000826126225761262261263d565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b03198116811461168857600080fdfea2646970667358221220354f7c7801e853af936849149cceefc3ac3a4129fc1e67a919cce68d8e09a9e164736f6c6343000807003300000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d62383447417a376d596e427358397a51786b61776736394862416368444e794d314569716b51626d6a51684c2f00000000000000000000

Deployed Bytecode

0x60806040526004361061020f5760003560e01c80636c0360eb11610118578063a6d612f9116100a0578063bd32fb661161006f578063bd32fb66146105ac578063c87b56dd146105cc578063e985e9c5146105ec578063f2fde38b14610635578063feb309ad1461065557600080fd5b8063a6d612f914610544578063aa98e0c614610557578063b3b2cb7a1461056d578063b88d4fde1461058c57600080fd5b80638da5cb5b116100e75780638da5cb5b146104b857806395d89b41146104d6578063a0712d68146104eb578063a22cb465146104fe578063a464d2651461051e57600080fd5b80636c0360eb1461044e57806370a0823114610463578063715018a614610483578063825a229e1461049857600080fd5b806329fc6bae1161019b57806342842e0e1161016a57806342842e0e146103b857806344a0d68a146103d8578063453c2310146103f857806355f804b31461040e5780636352211e1461042e57600080fd5b806329fc6bae1461035e5780632aea3d231461037857806332cb6b0c1461038d5780633ccfd60b146103a357600080fd5b806313faede6116101e257806313faede6146102c5578063162094c4146102e957806318160ddd1461030957806321ca42361461031e57806323b872dd1461033e57600080fd5b806301ffc9a71461021457806306fdde0314610249578063081812fc1461026b578063095ea7b3146102a3575b600080fd5b34801561022057600080fd5b5061023461022f3660046121af565b61066a565b60405190151581526020015b60405180910390f35b34801561025557600080fd5b5061025e6106bc565b60405161024091906123a5565b34801561027757600080fd5b5061028b610286366004612196565b61074e565b6040516001600160a01b039091168152602001610240565b3480156102af57600080fd5b506102c36102be3660046120f1565b6107e8565b005b3480156102d157600080fd5b506102db60095481565b604051908152602001610240565b3480156102f557600080fd5b506102c361030436600461221e565b6108fe565b34801561031557600080fd5b506102db61093a565b34801561032a57600080fd5b506102c36103393660046120f1565b61094a565b34801561034a57600080fd5b506102c3610359366004611ffd565b610a72565b34801561036a57600080fd5b50600c546102349060ff1681565b34801561038457600080fd5b506102c3610aa3565b34801561039957600080fd5b506102db6108ae81565b3480156103af57600080fd5b506102c3610aea565b3480156103c457600080fd5b506102c36103d3366004611ffd565b610b47565b3480156103e457600080fd5b506102c36103f3366004612196565b610b62565b34801561040457600080fd5b506102db600a5481565b34801561041a57600080fd5b506102c36104293660046121e9565b610b91565b34801561043a57600080fd5b5061028b610449366004612196565b610bce565b34801561045a57600080fd5b5061025e610c45565b34801561046f57600080fd5b506102db61047e366004611faf565b610cd3565b34801561048f57600080fd5b506102c3610d5a565b3480156104a457600080fd5b506102c36104b3366004611faf565b610d90565b3480156104c457600080fd5b506006546001600160a01b031661028b565b3480156104e257600080fd5b5061025e610de4565b6102c36104f9366004612196565b610df3565b34801561050a57600080fd5b506102c36105193660046120b5565b61103a565b34801561052a57600080fd5b50600c5461028b906201000090046001600160a01b031681565b6102c361055236600461211b565b6110ff565b34801561056357600080fd5b506102db600b5481565b34801561057957600080fd5b50600c5461023490610100900460ff1681565b34801561059857600080fd5b506102c36105a7366004612039565b611419565b3480156105b857600080fd5b506102c36105c7366004612196565b611451565b3480156105d857600080fd5b5061025e6105e7366004612196565b611480565b3480156105f857600080fd5b50610234610607366004611fca565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561064157600080fd5b506102c3610650366004611faf565b6115f0565b34801561066157600080fd5b506102c361168b565b60006001600160e01b031982166380ac58cd60e01b148061069b57506001600160e01b03198216635b5e139f60e01b145b806106b657506301ffc9a760e01b6001600160e01b03198316145b92915050565b6060600080546106cb906125bd565b80601f01602080910402602001604051908101604052809291908181526020018280546106f7906125bd565b80156107445780601f1061071957610100808354040283529160200191610744565b820191906000526020600020905b81548152906001019060200180831161072757829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166107cc5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b60006107f382610bce565b9050806001600160a01b0316836001600160a01b031614156108615760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084016107c3565b336001600160a01b038216148061087d575061087d8133610607565b6108ef5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c000000000000000060648201526084016107c3565b6108f983836116c9565b505050565b600c546201000090046001600160a01b0316331461091b57600080fd5b6000828152600d6020908152604090912082516108f992840190611e62565b6000610945600f5490565b905090565b6006546001600160a01b031633146109745760405162461bcd60e51b81526004016107c3906124a9565b600081116109d05760405162461bcd60e51b8152602060048201526024808201527f596f752063616e206f6e6c79206d696e74206d6f7265207468616e203020746f6044820152636b656e7360e01b60648201526084016107c3565b6108ae816109dd600f5490565b6109e7919061252f565b1115610a355760405162461bcd60e51b815260206004820152601f60248201527f43616e2774206d696e74206d6f7265207468616e206d617820737570706c790060448201526064016107c3565b60005b818110156108f957610a4e600f80546001019055565b610a6083610a5b600f5490565b611737565b80610a6a816125f8565b915050610a38565b610a7c3382611879565b610a985760405162461bcd60e51b81526004016107c3906124de565b6108f9838383611970565b6006546001600160a01b03163314610acd5760405162461bcd60e51b81526004016107c3906124a9565b600c805461ff001981166101009182900460ff1615909102179055565b6006546001600160a01b03163314610b145760405162461bcd60e51b81526004016107c3906124a9565b6040514790339082156108fc029083906000818181858888f19350505050158015610b43573d6000803e3d6000fd5b5050565b6108f983838360405180602001604052806000815250611419565b6006546001600160a01b03163314610b8c5760405162461bcd60e51b81526004016107c3906124a9565b600955565b6006546001600160a01b03163314610bbb5760405162461bcd60e51b81526004016107c3906124a9565b8051610b43906008906020840190611e62565b6000818152600260205260408120546001600160a01b0316806106b65760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b60648201526084016107c3565b60088054610c52906125bd565b80601f0160208091040260200160405190810160405280929190818152602001828054610c7e906125bd565b8015610ccb5780601f10610ca057610100808354040283529160200191610ccb565b820191906000526020600020905b815481529060010190602001808311610cae57829003601f168201915b505050505081565b60006001600160a01b038216610d3e5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b60648201526084016107c3565b506001600160a01b031660009081526003602052604090205490565b6006546001600160a01b03163314610d845760405162461bcd60e51b81526004016107c3906124a9565b610d8e6000611b10565b565b6006546001600160a01b03163314610dba5760405162461bcd60e51b81526004016107c3906124a9565b600c80546001600160a01b03909216620100000262010000600160b01b0319909216919091179055565b6060600180546106cb906125bd565b6009548134610e02828461255b565b14610e4a5760405162461bcd60e51b8152602060048201526018602482015277125b98dbdc9c9958dd08115512081d985b1d59481cd95b9d60421b60448201526064016107c3565b60026007541415610e9d5760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0060448201526064016107c3565b6002600755600c5460ff16158015610ebc5750600c54610100900460ff165b610f125760405162461bcd60e51b815260206004820152602160248201527f4d61696e2073616c65206d7573742062652061637469766520746f206d696e746044820152601760f91b60648201526084016107c3565b60008311610f625760405162461bcd60e51b815260206004820152601b60248201527f4d757374206d696e74206174206c65617374203120746f6b656e2e000000000060448201526064016107c3565b600a54336000908152600e6020526040902054610f8090859061252f565b1115610f9e5760405162461bcd60e51b81526004016107c390612454565b6108ae83610fab600f5490565b610fb5919061252f565b1115610fd35760405162461bcd60e51b81526004016107c3906123b8565b60005b8381101561100b57610fec600f80546001019055565b610ff933610a5b600f5490565b80611003816125f8565b915050610fd6565b50336000908152600e60205260408120805485929061102b90849061252f565b90915550506001600755505050565b6001600160a01b0382163314156110935760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c65720000000000000060448201526064016107c3565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b8282600b54611176838380806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250506040516bffffffffffffffffffffffff193360601b166020820152859250603401905060405160208183030381529060405280519060200120611b62565b6111c25760405162461bcd60e51b815260206004820152601e60248201527f4164647265737320646f6573206e6f7420657869737420696e206c697374000060448201526064016107c3565b60095484346111d1828461255b565b146112195760405162461bcd60e51b8152602060048201526018602482015277125b98dbdc9c9958dd08115512081d985b1d59481cd95b9d60421b60448201526064016107c3565b6002600754141561126c5760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0060448201526064016107c3565b6002600755600c5460ff16801561128b5750600c54610100900460ff16155b6112ec5760405162461bcd60e51b815260206004820152602c60248201527f416c6c6f776c6973742073616c65206d7573742062652061637469766520746f60448201526b206d696e7420746f6b656e7360a01b60648201526084016107c3565b6000861161133c5760405162461bcd60e51b815260206004820152601b60248201527f4d757374206d696e74206174206c65617374203120746f6b656e2e000000000060448201526064016107c3565b600a54336000908152600e602052604090205461135a90889061252f565b11156113785760405162461bcd60e51b81526004016107c390612454565b6108ae86611385600f5490565b61138f919061252f565b11156113ad5760405162461bcd60e51b81526004016107c3906123b8565b60005b868110156113e5576113c6600f80546001019055565b6113d333610a5b600f5490565b806113dd816125f8565b9150506113b0565b50336000908152600e60205260408120805488929061140590849061252f565b909155505060016007555050505050505050565b6114233383611879565b61143f5760405162461bcd60e51b81526004016107c3906124de565b61144b84848484611b78565b50505050565b6006546001600160a01b0316331461147b5760405162461bcd60e51b81526004016107c3906124a9565b600b55565b6000818152600260205260409020546060906001600160a01b03166114fb5760405162461bcd60e51b815260206004820152602b60248201527f4552433732314d657461646174613a20717565727920666f72206e6f6e65786960448201526a39ba32b73a103a37b5b2b760a91b60648201526084016107c3565b6000828152600d602052604090208054611514906125bd565b1590506115b9576000828152600d602052604090208054611534906125bd565b80601f0160208091040260200160405190810160405280929190818152602001828054611560906125bd565b80156115ad5780601f10611582576101008083540402835291602001916115ad565b820191906000526020600020905b81548152906001019060200180831161159057829003601f168201915b50505050509050919050565b60086115c483611bab565b6040516020016115d59291906122ad565b6040516020818303038152906040529050919050565b919050565b6006546001600160a01b0316331461161a5760405162461bcd60e51b81526004016107c3906124a9565b6001600160a01b03811661167f5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016107c3565b61168881611b10565b50565b6006546001600160a01b031633146116b55760405162461bcd60e51b81526004016107c3906124a9565b600c805460ff19811660ff90911615179055565b600081815260046020526040902080546001600160a01b0319166001600160a01b03841690811790915581906116fe82610bce565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6001600160a01b03821661178d5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016107c3565b6000818152600260205260409020546001600160a01b0316156117f25760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016107c3565b6001600160a01b038216600090815260036020526040812080546001929061181b90849061252f565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b6000818152600260205260408120546001600160a01b03166118f25760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016107c3565b60006118fd83610bce565b9050806001600160a01b0316846001600160a01b031614806119385750836001600160a01b031661192d8461074e565b6001600160a01b0316145b8061196857506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b031661198382610bce565b6001600160a01b0316146119eb5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b60648201526084016107c3565b6001600160a01b038216611a4d5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b60648201526084016107c3565b611a586000826116c9565b6001600160a01b0383166000908152600360205260408120805460019290611a8190849061257a565b90915550506001600160a01b0382166000908152600360205260408120805460019290611aaf90849061252f565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600082611b6f8584611ca9565b14949350505050565b611b83848484611970565b611b8f84848484611d55565b61144b5760405162461bcd60e51b81526004016107c390612402565b606081611bcf5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611bf95780611be3816125f8565b9150611bf29050600a83612547565b9150611bd3565b60008167ffffffffffffffff811115611c1457611c14612669565b6040519080825280601f01601f191660200182016040528015611c3e576020820181803683370190505b5090505b841561196857611c5360018361257a565b9150611c60600a86612613565b611c6b90603061252f565b60f81b818381518110611c8057611c80612653565b60200101906001600160f81b031916908160001a905350611ca2600a86612547565b9450611c42565b600081815b8451811015611d4d576000858281518110611ccb57611ccb612653565b60200260200101519050808311611d0d576040805160208101859052908101829052606001604051602081830303815290604052805190602001209250611d3a565b60408051602081018390529081018490526060016040516020818303038152906040528051906020012092505b5080611d45816125f8565b915050611cae565b509392505050565b60006001600160a01b0384163b15611e5757604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611d99903390899088908890600401612368565b602060405180830381600087803b158015611db357600080fd5b505af1925050508015611de3575060408051601f3d908101601f19168201909252611de0918101906121cc565b60015b611e3d573d808015611e11576040519150601f19603f3d011682016040523d82523d6000602084013e611e16565b606091505b508051611e355760405162461bcd60e51b81526004016107c390612402565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611968565b506001949350505050565b828054611e6e906125bd565b90600052602060002090601f016020900481019282611e905760008555611ed6565b82601f10611ea957805160ff1916838001178555611ed6565b82800160010185558215611ed6579182015b82811115611ed6578251825591602001919060010190611ebb565b50611ee2929150611ee6565b5090565b5b80821115611ee25760008155600101611ee7565b600067ffffffffffffffff80841115611f1657611f16612669565b604051601f8501601f19908116603f01168101908282118183101715611f3e57611f3e612669565b81604052809350858152868686011115611f5757600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b03811681146115eb57600080fd5b600082601f830112611f9957600080fd5b611fa883833560208501611efb565b9392505050565b600060208284031215611fc157600080fd5b611fa882611f71565b60008060408385031215611fdd57600080fd5b611fe683611f71565b9150611ff460208401611f71565b90509250929050565b60008060006060848603121561201257600080fd5b61201b84611f71565b925061202960208501611f71565b9150604084013590509250925092565b6000806000806080858703121561204f57600080fd5b61205885611f71565b935061206660208601611f71565b925060408501359150606085013567ffffffffffffffff81111561208957600080fd5b8501601f8101871361209a57600080fd5b6120a987823560208401611efb565b91505092959194509250565b600080604083850312156120c857600080fd5b6120d183611f71565b9150602083013580151581146120e657600080fd5b809150509250929050565b6000806040838503121561210457600080fd5b61210d83611f71565b946020939093013593505050565b60008060006040848603121561213057600080fd5b833567ffffffffffffffff8082111561214857600080fd5b818601915086601f83011261215c57600080fd5b81358181111561216b57600080fd5b8760208260051b850101111561218057600080fd5b6020928301989097509590910135949350505050565b6000602082840312156121a857600080fd5b5035919050565b6000602082840312156121c157600080fd5b8135611fa88161267f565b6000602082840312156121de57600080fd5b8151611fa88161267f565b6000602082840312156121fb57600080fd5b813567ffffffffffffffff81111561221257600080fd5b61196884828501611f88565b6000806040838503121561223157600080fd5b82359150602083013567ffffffffffffffff81111561224f57600080fd5b61225b85828601611f88565b9150509250929050565b6000815180845261227d816020860160208601612591565b601f01601f19169290920160200192915050565b600081516122a3818560208601612591565b9290920192915050565b600080845481600182811c9150808316806122c957607f831692505b60208084108214156122e957634e487b7160e01b86526022600452602486fd5b8180156122fd576001811461230e5761233b565b60ff1986168952848901965061233b565b60008b81526020902060005b868110156123335781548b82015290850190830161231a565b505084890196505b50505050505061235f61234e8286612291565b64173539b7b760d91b815260050190565b95945050505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061239b90830184612265565b9695505050505050565b602081526000611fa86020830184612265565b6020808252602a908201527f507572636861736520776f756c6420657863656564206d6178206e756d626572604082015269206f6620746f6b656e7360b01b606082015260800190565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b60208082526035908201527f507572636861736520776f756c6420657863656564206d6178206e756d6265726040820152741037b31036b4b73a39903832b9103bb0b63632ba1760591b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b6000821982111561254257612542612627565b500190565b6000826125565761255661263d565b500490565b600081600019048311821515161561257557612575612627565b500290565b60008282101561258c5761258c612627565b500390565b60005b838110156125ac578181015183820152602001612594565b8381111561144b5750506000910152565b600181811c908216806125d157607f821691505b602082108114156125f257634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561260c5761260c612627565b5060010190565b6000826126225761262261263d565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b03198116811461168857600080fdfea2646970667358221220354f7c7801e853af936849149cceefc3ac3a4129fc1e67a919cce68d8e09a9e164736f6c63430008070033

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

00000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d62383447417a376d596e427358397a51786b61776736394862416368444e794d314569716b51626d6a51684c2f00000000000000000000

-----Decoded View---------------
Arg [0] : _baseURI (string): ipfs://Qmb84GAz7mYnBsX9zQxkawg69HbAchDNyM1EiqkQbmjQhL/

-----Encoded View---------------
4 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000020
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000036
Arg [2] : 697066733a2f2f516d62383447417a376d596e427358397a51786b6177673639
Arg [3] : 4862416368444e794d314569716b51626d6a51684c2f00000000000000000000


Deployed Bytecode Sourcemap

41449:5757:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29248:305;;;;;;;;;;-1:-1:-1;29248:305:0;;;;;:::i;:::-;;:::i;:::-;;;8643:14:1;;8636:22;8618:41;;8606:2;8591:18;29248:305:0;;;;;;;;30193:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;31752:221::-;;;;;;;;;;-1:-1:-1;31752:221:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;7941:32:1;;;7923:51;;7911:2;7896:18;31752:221:0;7777:203:1;31275:411:0;;;;;;;;;;-1:-1:-1;31275:411:0;;;;;:::i;:::-;;:::i;:::-;;41590:32;;;;;;;;;;;;;;;;;;;8816:25:1;;;8804:2;8789:18;41590:32:0;8670:177:1;45448:124:0;;;;;;;;;;-1:-1:-1;45448:124:0;;;;;:::i;:::-;;:::i;45580:101::-;;;;;;;;;;;;;:::i;45918:416::-;;;;;;;;;;-1:-1:-1;45918:416:0;;;;;:::i;:::-;;:::i;32642:339::-;;;;;;;;;;-1:-1:-1;32642:339:0;;;;;:::i;:::-;;:::i;41748:29::-;;;;;;;;;;-1:-1:-1;41748:29:0;;;;;;;;46782:103;;;;;;;;;;;;;:::i;41540:41::-;;;;;;;;;;;;41577:4;41540:41;;47060:143;;;;;;;;;;;;;:::i;33052:185::-;;;;;;;;;;-1:-1:-1;33052:185:0;;;;;:::i;:::-;;:::i;46893:88::-;;;;;;;;;;-1:-1:-1;46893:88:0;;;;;:::i;:::-;;:::i;41629:31::-;;;;;;;;;;;;;;;;46430:100;;;;;;;;;;-1:-1:-1;46430:100:0;;;;;:::i;:::-;;:::i;29887:239::-;;;;;;;;;;-1:-1:-1;29887:239:0;;;;;:::i;:::-;;:::i;41510:21::-;;;;;;;;;;;;;:::i;29617:208::-;;;;;;;;;;-1:-1:-1;29617:208:0;;;;;:::i;:::-;;:::i;8813:94::-;;;;;;;;;;;;;:::i;46342:80::-;;;;;;;;;;-1:-1:-1;46342:80:0;;;;;:::i;:::-;;:::i;8162:87::-;;;;;;;;;;-1:-1:-1;8235:6:0;;-1:-1:-1;;;;;8235:6:0;8162:87;;30362:104;;;;;;;;;;;;;:::i;44107:798::-;;;;;;:::i;:::-;;:::i;32045:295::-;;;;;;;;;;-1:-1:-1;32045:295:0;;;;;:::i;:::-;;:::i;41821:21::-;;;;;;;;;;-1:-1:-1;41821:21:0;;;;;;;-1:-1:-1;;;;;41821:21:0;;;43103:921;;;;;;:::i;:::-;;:::i;41705:34::-;;;;;;;;;;;;;;;;41784:28;;;;;;;;;;-1:-1:-1;41784:28:0;;;;;;;;;;;33308:328;;;;;;;;;;-1:-1:-1;33308:328:0;;;;;:::i;:::-;;:::i;46538:122::-;;;;;;;;;;-1:-1:-1;46538:122:0;;;;;:::i;:::-;;:::i;44975:465::-;;;;;;;;;;-1:-1:-1;44975:465:0;;;;;:::i;:::-;;:::i;32411:164::-;;;;;;;;;;-1:-1:-1;32411:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;32532:25:0;;;32508:4;32532:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;32411:164;9062:192;;;;;;;;;;-1:-1:-1;9062:192:0;;;;;:::i;:::-;;:::i;46668:106::-;;;;;;;;;;;;;:::i;29248:305::-;29350:4;-1:-1:-1;;;;;;29387:40:0;;-1:-1:-1;;;29387:40:0;;:105;;-1:-1:-1;;;;;;;29444:48:0;;-1:-1:-1;;;29444:48:0;29387:105;:158;;;-1:-1:-1;;;;;;;;;;20257:40:0;;;29509:36;29367:178;29248:305;-1:-1:-1;;29248:305:0:o;30193:100::-;30247:13;30280:5;30273:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30193:100;:::o;31752:221::-;31828:7;35235:16;;;:7;:16;;;;;;-1:-1:-1;;;;;35235:16:0;31848:73;;;;-1:-1:-1;;;31848:73:0;;16780:2:1;31848:73:0;;;16762:21:1;16819:2;16799:18;;;16792:30;16858:34;16838:18;;;16831:62;-1:-1:-1;;;16909:18:1;;;16902:42;16961:19;;31848:73:0;;;;;;;;;-1:-1:-1;31941:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;31941:24:0;;31752:221::o;31275:411::-;31356:13;31372:23;31387:7;31372:14;:23::i;:::-;31356:39;;31420:5;-1:-1:-1;;;;;31414:11:0;:2;-1:-1:-1;;;;;31414:11:0;;;31406:57;;;;-1:-1:-1;;;31406:57:0;;17964:2:1;31406:57:0;;;17946:21:1;18003:2;17983:18;;;17976:30;18042:34;18022:18;;;18015:62;-1:-1:-1;;;18093:18:1;;;18086:31;18134:19;;31406:57:0;17762:397:1;31406:57:0;7030:10;-1:-1:-1;;;;;31498:21:0;;;;:62;;-1:-1:-1;31523:37:0;31540:5;7030:10;32411:164;:::i;31523:37::-;31476:168;;;;-1:-1:-1;;;31476:168:0;;14339:2:1;31476:168:0;;;14321:21:1;14378:2;14358:18;;;14351:30;14417:34;14397:18;;;14390:62;14488:26;14468:18;;;14461:54;14532:19;;31476:168:0;14137:420:1;31476:168:0;31657:21;31666:2;31670:7;31657:8;:21::i;:::-;31345:341;31275:411;;:::o;45448:124::-;42913:6;;;;;-1:-1:-1;;;;;42913:6:0;42899:10;:20;42891:29;;;;;;45538:19:::1;::::0;;;:9:::1;:19;::::0;;;;;;;:26;;::::1;::::0;;::::1;::::0;::::1;:::i;45580:101::-:0;45624:7;45651:22;:12;964:14;;872:114;45651:22;45644:29;;45580:101;:::o;45918:416::-;8235:6;;-1:-1:-1;;;;;8235:6:0;7030:10;8382:23;8374:68;;;;-1:-1:-1;;;8374:68:0;;;;;;;:::i;:::-;46027:1:::1;46013:11;:15;46005:64;;;::::0;-1:-1:-1;;;46005:64:0;;11285:2:1;46005:64:0::1;::::0;::::1;11267:21:1::0;11324:2;11304:18;;;11297:30;11363:34;11343:18;;;11336:62;-1:-1:-1;;;11414:18:1;;;11407:34;11458:19;;46005:64:0::1;11083:400:1::0;46005:64:0::1;41577:4;46113:11;46088:22;:12;964:14:::0;;872:114;46088:22:::1;:36;;;;:::i;:::-;:50;;46080:94;;;::::0;-1:-1:-1;;;46080:94:0;;11690:2:1;46080:94:0::1;::::0;::::1;11672:21:1::0;11729:2;11709:18;;;11702:30;11768:33;11748:18;;;11741:61;11819:18;;46080:94:0::1;11488:355:1::0;46080:94:0::1;46190:9;46185:142;46209:11;46205:1;:15;46185:142;;;46242:24;:12;1083:19:::0;;1101:1;1083:19;;;994:127;46242:24:::1;46281:34;46287:3;46292:22;:12;964:14:::0;;872:114;46292:22:::1;46281:5;:34::i;:::-;46222:3:::0;::::1;::::0;::::1;:::i;:::-;;;;46185:142;;32642:339:::0;32837:41;7030:10;32870:7;32837:18;:41::i;:::-;32829:103;;;;-1:-1:-1;;;32829:103:0;;;;;;;:::i;:::-;32945:28;32955:4;32961:2;32965:7;32945:9;:28::i;46782:103::-;8235:6;;-1:-1:-1;;;;;8235:6:0;7030:10;8382:23;8374:68;;;;-1:-1:-1;;;8374:68:0;;;;;;;:::i;:::-;46861:16:::1;::::0;;-1:-1:-1;;46841:36:0;::::1;46861:16;::::0;;;::::1;;;46860:17;46841:36:::0;;::::1;;::::0;;46782:103::o;47060:143::-;8235:6;;-1:-1:-1;;;;;8235:6:0;7030:10;8382:23;8374:68;;;;-1:-1:-1;;;8374:68:0;;;;;;;:::i;:::-;47158:37:::1;::::0;47126:21:::1;::::0;47166:10:::1;::::0;47158:37;::::1;;;::::0;47126:21;;47108:15:::1;47158:37:::0;47108:15;47158:37;47126:21;47166:10;47158:37;::::1;;;;;;;;;;;;;::::0;::::1;;;;;;47097:106;47060:143::o:0;33052:185::-;33190:39;33207:4;33213:2;33217:7;33190:39;;;;;;;;;;;;:16;:39::i;46893:88::-;8235:6;;-1:-1:-1;;;;;8235:6:0;7030:10;8382:23;8374:68;;;;-1:-1:-1;;;8374:68:0;;;;;;;:::i;:::-;46958:4:::1;:15:::0;46893:88::o;46430:100::-;8235:6;;-1:-1:-1;;;;;8235:6:0;7030:10;8382:23;8374:68;;;;-1:-1:-1;;;8374:68:0;;;;;;;:::i;:::-;46504:18;;::::1;::::0;:7:::1;::::0;:18:::1;::::0;::::1;::::0;::::1;:::i;29887:239::-:0;29959:7;29995:16;;;:7;:16;;;;;;-1:-1:-1;;;;;29995:16:0;30030:19;30022:73;;;;-1:-1:-1;;;30022:73:0;;15175:2:1;30022:73:0;;;15157:21:1;15214:2;15194:18;;;15187:30;15253:34;15233:18;;;15226:62;-1:-1:-1;;;15304:18:1;;;15297:39;15353:19;;30022:73:0;14973:405:1;41510:21:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;29617:208::-;29689:7;-1:-1:-1;;;;;29717:19:0;;29709:74;;;;-1:-1:-1;;;29709:74:0;;14764:2:1;29709:74:0;;;14746:21:1;14803:2;14783:18;;;14776:30;14842:34;14822:18;;;14815:62;-1:-1:-1;;;14893:18:1;;;14886:40;14943:19;;29709:74:0;14562:406:1;29709:74:0;-1:-1:-1;;;;;;29801:16:0;;;;;:9;:16;;;;;;;29617:208::o;8813:94::-;8235:6;;-1:-1:-1;;;;;8235:6:0;7030:10;8382:23;8374:68;;;;-1:-1:-1;;;8374:68:0;;;;;;;:::i;:::-;8878:21:::1;8896:1;8878:9;:21::i;:::-;8813:94::o:0;46342:80::-;8235:6;;-1:-1:-1;;;;;8235:6:0;7030:10;8382:23;8374:68;;;;-1:-1:-1;;;8374:68:0;;;;;;;:::i;:::-;46403:6:::1;:11:::0;;-1:-1:-1;;;;;46403:11:0;;::::1;::::0;::::1;-1:-1:-1::0;;;;;;46403:11:0;;::::1;::::0;;;::::1;::::0;;46342:80::o;30362:104::-;30418:13;30451:7;30444:14;;;;;:::i;44107:798::-;44220:4;;44226:14;42769:9;42743:22;44226:14;44220:4;42743:22;:::i;:::-;:35;42721:109;;;;-1:-1:-1;;;42721:109:0;;18784:2:1;42721:109:0;;;18766:21:1;18823:2;18803:18;;;18796:30;-1:-1:-1;;;18842:18:1;;;18835:54;18906:18;;42721:109:0;18582:348:1;42721:109:0;5380:1:::1;5976:7;;:19;;5968:63;;;::::0;-1:-1:-1;;;5968:63:0;;19137:2:1;5968:63:0::1;::::0;::::1;19119:21:1::0;19176:2;19156:18;;;19149:30;19215:33;19195:18;;;19188:61;19266:18;;5968:63:0::1;18935:355:1::0;5968:63:0::1;5380:1;6109:7;:18:::0;44289:17:::2;::::0;::::2;;44288:18;:38:::0;::::2;;;-1:-1:-1::0;44310:16:0::2;::::0;::::2;::::0;::::2;;;44288:38;44280:84;;;::::0;-1:-1:-1;;;44280:84:0;;13578:2:1;44280:84:0::2;::::0;::::2;13560:21:1::0;13617:2;13597:18;;;13590:30;13656:34;13636:18;;;13629:62;-1:-1:-1;;;13707:18:1;;;13700:31;13748:19;;44280:84:0::2;13376:397:1::0;44280:84:0::2;44400:1;44383:14;:18;44375:58;;;::::0;-1:-1:-1;;;44375:58:0;;12050:2:1;44375:58:0::2;::::0;::::2;12032:21:1::0;12089:2;12069:18;;;12062:30;12128:29;12108:18;;;12101:57;12175:18;;44375:58:0::2;11848:351:1::0;44375:58:0::2;44494:12;::::0;44462:10:::2;44452:21;::::0;;;:9:::2;:21;::::0;;;;;:38:::2;::::0;44476:14;;44452:38:::2;:::i;:::-;:54;;44444:120;;;;-1:-1:-1::0;;;44444:120:0::2;;;;;;;:::i;:::-;41577:4;44608:14;44583:22;:12;964:14:::0;;872:114;44583:22:::2;:39;;;;:::i;:::-;:53;;44575:108;;;;-1:-1:-1::0;;;44575:108:0::2;;;;;;;:::i;:::-;44701:9;44696:152;44720:14;44716:1;:18;44696:152;;;44756:24;:12;1083:19:::0;;1101:1;1083:19;;;994:127;44756:24:::2;44795:41;44801:10;44813:22;:12;964:14:::0;;872:114;44795:41:::2;44736:3:::0;::::2;::::0;::::2;:::i;:::-;;;;44696:152;;;-1:-1:-1::0;44868:10:0::2;44858:21;::::0;;;:9:::2;:21;::::0;;;;:39;;44883:14;;44858:21;:39:::2;::::0;44883:14;;44858:39:::2;:::i;:::-;::::0;;;-1:-1:-1;;5336:1:0::1;6288:7;:22:::0;-1:-1:-1;;;44107:798:0:o;32045:295::-;-1:-1:-1;;;;;32148:24:0;;7030:10;32148:24;;32140:62;;;;-1:-1:-1;;;32140:62:0;;12811:2:1;32140:62:0;;;12793:21:1;12850:2;12830:18;;;12823:30;12889:27;12869:18;;;12862:55;12934:18;;32140:62:0;12609:349:1;32140:62:0;7030:10;32215:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;32215:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;32215:53:0;;;;;;;;;;32284:48;;8618:41:1;;;32215:42:0;;7030:10;32284:48;;8591:18:1;32284:48:0;;;;;;;32045:295;;:::o;43103:921::-;43268:11;;43281:19;;42415:144;42452:11;;42415:144;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;42515:28:0;;-1:-1:-1;;42532:10:0;6134:2:1;6130:15;6126:53;42515:28:0;;;6114:66:1;42482:4:0;;-1:-1:-1;6196:12:1;;;-1:-1:-1;42515:28:0;;;;;;;;;;;;42505:39;;;;;;42415:18;:144::i;:::-;42393:224;;;;-1:-1:-1;;;42393:224:0;;13980:2:1;42393:224:0;;;13962:21:1;14019:2;13999:18;;;13992:30;14058:32;14038:18;;;14031:60;14108:18;;42393:224:0;13778:354:1;42393:224:0;43328:4:::1;::::0;43334:14;42769:9:::1;42743:22;43334:14:::0;43328:4;42743:22:::1;:::i;:::-;:35;42721:109;;;::::0;-1:-1:-1;;;42721:109:0;;18784:2:1;42721:109:0::1;::::0;::::1;18766:21:1::0;18823:2;18803:18;;;18796:30;-1:-1:-1;;;18842:18:1;;;18835:54;18906:18;;42721:109:0::1;18582:348:1::0;42721:109:0::1;5380:1:::2;5976:7;;:19;;5968:63;;;::::0;-1:-1:-1;;;5968:63:0;;19137:2:1;5968:63:0::2;::::0;::::2;19119:21:1::0;19176:2;19156:18;;;19149:30;19215:33;19195:18;;;19188:61;19266:18;;5968:63:0::2;18935:355:1::0;5968:63:0::2;5380:1;6109:7;:18:::0;43396:17:::3;::::0;::::3;;:38:::0;::::3;;;-1:-1:-1::0;43418:16:0::3;::::0;::::3;::::0;::::3;;;43417:17;43396:38;43388:95;;;::::0;-1:-1:-1;;;43388:95:0;;10515:2:1;43388:95:0::3;::::0;::::3;10497:21:1::0;10554:2;10534:18;;;10527:30;10593:34;10573:18;;;10566:62;-1:-1:-1;;;10644:18:1;;;10637:42;10696:19;;43388:95:0::3;10313:408:1::0;43388:95:0::3;43519:1;43502:14;:18;43494:58;;;::::0;-1:-1:-1;;;43494:58:0;;12050:2:1;43494:58:0::3;::::0;::::3;12032:21:1::0;12089:2;12069:18;;;12062:30;12128:29;12108:18;;;12101:57;12175:18;;43494:58:0::3;11848:351:1::0;43494:58:0::3;43613:12;::::0;43581:10:::3;43571:21;::::0;;;:9:::3;:21;::::0;;;;;:38:::3;::::0;43595:14;;43571:38:::3;:::i;:::-;:54;;43563:120;;;;-1:-1:-1::0;;;43563:120:0::3;;;;;;;:::i;:::-;41577:4;43727:14;43702:22;:12;964:14:::0;;872:114;43702:22:::3;:39;;;;:::i;:::-;:53;;43694:108;;;;-1:-1:-1::0;;;43694:108:0::3;;;;;;;:::i;:::-;43820:9;43815:152;43839:14;43835:1;:18;43815:152;;;43875:24;:12;1083:19:::0;;1101:1;1083:19;;;994:127;43875:24:::3;43914:41;43920:10;43932:22;:12;964:14:::0;;872:114;43914:41:::3;43855:3:::0;::::3;::::0;::::3;:::i;:::-;;;;43815:152;;;-1:-1:-1::0;43987:10:0::3;43977:21;::::0;;;:9:::3;:21;::::0;;;;:39;;44002:14;;43977:21;:39:::3;::::0;44002:14;;43977:39:::3;:::i;:::-;::::0;;;-1:-1:-1;;5336:1:0::2;6288:7;:22:::0;-1:-1:-1;;;;;;;;43103:921:0:o;33308:328::-;33483:41;7030:10;33516:7;33483:18;:41::i;:::-;33475:103;;;;-1:-1:-1;;;33475:103:0;;;;;;;:::i;:::-;33589:39;33603:4;33609:2;33613:7;33622:5;33589:13;:39::i;:::-;33308:328;;;;:::o;46538:122::-;8235:6;;-1:-1:-1;;;;;8235:6:0;7030:10;8382:23;8374:68;;;;-1:-1:-1;;;8374:68:0;;;;;;;:::i;:::-;46620:19:::1;:32:::0;46538:122::o;44975:465::-;35211:4;35235:16;;;:7;:16;;;;;;45083:13;;-1:-1:-1;;;;;35235:16:0;45112:72;;;;-1:-1:-1;;;45112:72:0;;16368:2:1;45112:72:0;;;16350:21:1;16407:2;16387:18;;;16380:30;16446:34;16426:18;;;16419:62;-1:-1:-1;;;16497:18:1;;;16490:41;16548:19;;45112:72:0;16166:407:1;45112:72:0;45244:18;;;;:9;:18;;;;;45238:32;;;;;:::i;:::-;:37;;-1:-1:-1;45234:199:0;;45295:18;;;;:9;:18;;;;;45288:25;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44975:465;;;:::o;45234:199::-;45378:7;45387:25;45404:7;45387:16;:25::i;:::-;45361:61;;;;;;;;;:::i;:::-;;;;;;;;;;;;;45347:76;;44975:465;;;:::o;45234:199::-;44975:465;;;:::o;9062:192::-;8235:6;;-1:-1:-1;;;;;8235:6:0;7030:10;8382:23;8374:68;;;;-1:-1:-1;;;8374:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;9151:22:0;::::1;9143:73;;;::::0;-1:-1:-1;;;9143:73:0;;10108:2:1;9143:73:0::1;::::0;::::1;10090:21:1::0;10147:2;10127:18;;;10120:30;10186:34;10166:18;;;10159:62;-1:-1:-1;;;10237:18:1;;;10230:36;10283:19;;9143:73:0::1;9906:402:1::0;9143:73:0::1;9227:19;9237:8;9227:9;:19::i;:::-;9062:192:::0;:::o;46668:106::-;8235:6;;-1:-1:-1;;;;;8235:6:0;7030:10;8382:23;8374:68;;;;-1:-1:-1;;;8374:68:0;;;;;;;:::i;:::-;46749:17:::1;::::0;;-1:-1:-1;;46728:38:0;::::1;46749:17;::::0;;::::1;46748:18;46728:38;::::0;;46668:106::o;39128:174::-;39203:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;39203:29:0;-1:-1:-1;;;;;39203:29:0;;;;;;;;:24;;39257:23;39203:24;39257:14;:23::i;:::-;-1:-1:-1;;;;;39248:46:0;;;;;;;;;;;39128:174;;:::o;37124:382::-;-1:-1:-1;;;;;37204:16:0;;37196:61;;;;-1:-1:-1;;;37196:61:0;;15585:2:1;37196:61:0;;;15567:21:1;;;15604:18;;;15597:30;15663:34;15643:18;;;15636:62;15715:18;;37196:61:0;15383:356:1;37196:61:0;35211:4;35235:16;;;:7;:16;;;;;;-1:-1:-1;;;;;35235:16:0;:30;37268:58;;;;-1:-1:-1;;;37268:58:0;;10928:2:1;37268:58:0;;;10910:21:1;10967:2;10947:18;;;10940:30;11006;10986:18;;;10979:58;11054:18;;37268:58:0;10726:352:1;37268:58:0;-1:-1:-1;;;;;37397:13:0;;;;;;:9;:13;;;;;:18;;37414:1;;37397:13;:18;;37414:1;;37397:18;:::i;:::-;;;;-1:-1:-1;;37426:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;37426:21:0;-1:-1:-1;;;;;37426:21:0;;;;;;;;37465:33;;37426:16;;;37465:33;;37426:16;;37465:33;37124:382;;:::o;35440:348::-;35533:4;35235:16;;;:7;:16;;;;;;-1:-1:-1;;;;;35235:16:0;35550:73;;;;-1:-1:-1;;;35550:73:0;;13165:2:1;35550:73:0;;;13147:21:1;13204:2;13184:18;;;13177:30;13243:34;13223:18;;;13216:62;-1:-1:-1;;;13294:18:1;;;13287:42;13346:19;;35550:73:0;12963:408:1;35550:73:0;35634:13;35650:23;35665:7;35650:14;:23::i;:::-;35634:39;;35703:5;-1:-1:-1;;;;;35692:16:0;:7;-1:-1:-1;;;;;35692:16:0;;:51;;;;35736:7;-1:-1:-1;;;;;35712:31:0;:20;35724:7;35712:11;:20::i;:::-;-1:-1:-1;;;;;35712:31:0;;35692:51;:87;;;-1:-1:-1;;;;;;32532:25:0;;;32508:4;32532:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;35747:32;35684:96;35440:348;-1:-1:-1;;;;35440:348:0:o;38432:578::-;38591:4;-1:-1:-1;;;;;38564:31:0;:23;38579:7;38564:14;:23::i;:::-;-1:-1:-1;;;;;38564:31:0;;38556:85;;;;-1:-1:-1;;;38556:85:0;;17554:2:1;38556:85:0;;;17536:21:1;17593:2;17573:18;;;17566:30;17632:34;17612:18;;;17605:62;-1:-1:-1;;;17683:18:1;;;17676:39;17732:19;;38556:85:0;17352:405:1;38556:85:0;-1:-1:-1;;;;;38660:16:0;;38652:65;;;;-1:-1:-1;;;38652:65:0;;12406:2:1;38652:65:0;;;12388:21:1;12445:2;12425:18;;;12418:30;12484:34;12464:18;;;12457:62;-1:-1:-1;;;12535:18:1;;;12528:34;12579:19;;38652:65:0;12204:400:1;38652:65:0;38834:29;38851:1;38855:7;38834:8;:29::i;:::-;-1:-1:-1;;;;;38876:15:0;;;;;;:9;:15;;;;;:20;;38895:1;;38876:15;:20;;38895:1;;38876:20;:::i;:::-;;;;-1:-1:-1;;;;;;;38907:13:0;;;;;;:9;:13;;;;;:18;;38924:1;;38907:13;:18;;38924:1;;38907:18;:::i;:::-;;;;-1:-1:-1;;38936:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;38936:21:0;-1:-1:-1;;;;;38936:21:0;;;;;;;;;38975:27;;38936:16;;38975:27;;;;;;;38432:578;;;:::o;9262:173::-;9337:6;;;-1:-1:-1;;;;;9354:17:0;;;-1:-1:-1;;;;;;9354:17:0;;;;;;;9387:40;;9337:6;;;9354:17;9337:6;;9387:40;;9318:16;;9387:40;9307:128;9262:173;:::o;2373:190::-;2498:4;2551;2522:25;2535:5;2542:4;2522:12;:25::i;:::-;:33;;2373:190;-1:-1:-1;;;;2373:190:0:o;34518:315::-;34675:28;34685:4;34691:2;34695:7;34675:9;:28::i;:::-;34722:48;34745:4;34751:2;34755:7;34764:5;34722:22;:48::i;:::-;34714:111;;;;-1:-1:-1;;;34714:111:0;;;;;;;:::i;26157:723::-;26213:13;26434:10;26430:53;;-1:-1:-1;;26461:10:0;;;;;;;;;;;;-1:-1:-1;;;26461:10:0;;;;;26157:723::o;26430:53::-;26508:5;26493:12;26549:78;26556:9;;26549:78;;26582:8;;;;:::i;:::-;;-1:-1:-1;26605:10:0;;-1:-1:-1;26613:2:0;26605:10;;:::i;:::-;;;26549:78;;;26637:19;26669:6;26659:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;26659:17:0;;26637:39;;26687:154;26694:10;;26687:154;;26721:11;26731:1;26721:11;;:::i;:::-;;-1:-1:-1;26790:10:0;26798:2;26790:5;:10;:::i;:::-;26777:24;;:2;:24;:::i;:::-;26764:39;;26747:6;26754;26747:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;26747:56:0;;;;;;;;-1:-1:-1;26818:11:0;26827:2;26818:11;;:::i;:::-;;;26687:154;;2925:701;3008:7;3051:4;3008:7;3066:523;3090:5;:12;3086:1;:16;3066:523;;;3124:20;3147:5;3153:1;3147:8;;;;;;;;:::i;:::-;;;;;;;3124:31;;3190:12;3174;:28;3170:408;;3327:44;;;;;;6376:19:1;;;6411:12;;;6404:28;;;6448:12;;3327:44:0;;;;;;;;;;;;3317:55;;;;;;3302:70;;3170:408;;;3517:44;;;;;;6376:19:1;;;6411:12;;;6404:28;;;6448:12;;3517:44:0;;;;;;;;;;;;3507:55;;;;;;3492:70;;3170:408;-1:-1:-1;3104:3:0;;;;:::i;:::-;;;;3066:523;;;-1:-1:-1;3606:12:0;2925:701;-1:-1:-1;;;2925:701:0:o;39867:799::-;40022:4;-1:-1:-1;;;;;40043:13:0;;10531:20;10579:8;40039:620;;40079:72;;-1:-1:-1;;;40079:72:0;;-1:-1:-1;;;;;40079:36:0;;;;;:72;;7030:10;;40130:4;;40136:7;;40145:5;;40079:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;40079:72:0;;;;;;;;-1:-1:-1;;40079:72:0;;;;;;;;;;;;:::i;:::-;;;40075:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;40321:13:0;;40317:272;;40364:60;;-1:-1:-1;;;40364:60:0;;;;;;;:::i;40317:272::-;40539:6;40533:13;40524:6;40520:2;40516:15;40509:38;40075:529;-1:-1:-1;;;;;;40202:51:0;-1:-1:-1;;;40202:51:0;;-1:-1:-1;40195:58:0;;40039:620;-1:-1:-1;40643:4:0;39867:799;;;;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:631:1;78:5;108:18;149:2;141:6;138:14;135:40;;;155:18;;:::i;:::-;230:2;224:9;198:2;284:15;;-1:-1:-1;;280:24:1;;;306:2;276:33;272:42;260:55;;;330:18;;;350:22;;;327:46;324:72;;;376:18;;:::i;:::-;416:10;412:2;405:22;445:6;436:15;;475:6;467;460:22;515:3;506:6;501:3;497:16;494:25;491:45;;;532:1;529;522:12;491:45;582:6;577:3;570:4;562:6;558:17;545:44;637:1;630:4;621:6;613;609:19;605:30;598:41;;;;14:631;;;;;:::o;650:173::-;718:20;;-1:-1:-1;;;;;767:31:1;;757:42;;747:70;;813:1;810;803:12;828:221;871:5;924:3;917:4;909:6;905:17;901:27;891:55;;942:1;939;932:12;891:55;964:79;1039:3;1030:6;1017:20;1010:4;1002:6;998:17;964:79;:::i;:::-;955:88;828:221;-1:-1:-1;;;828:221:1:o;1054:186::-;1113:6;1166:2;1154:9;1145:7;1141:23;1137:32;1134:52;;;1182:1;1179;1172:12;1134:52;1205:29;1224:9;1205:29;:::i;1245:260::-;1313:6;1321;1374:2;1362:9;1353:7;1349:23;1345:32;1342:52;;;1390:1;1387;1380:12;1342:52;1413:29;1432:9;1413:29;:::i;:::-;1403:39;;1461:38;1495:2;1484:9;1480:18;1461:38;:::i;:::-;1451:48;;1245:260;;;;;:::o;1510:328::-;1587:6;1595;1603;1656:2;1644:9;1635:7;1631:23;1627:32;1624:52;;;1672:1;1669;1662:12;1624:52;1695:29;1714:9;1695:29;:::i;:::-;1685:39;;1743:38;1777:2;1766:9;1762:18;1743:38;:::i;:::-;1733:48;;1828:2;1817:9;1813:18;1800:32;1790:42;;1510:328;;;;;:::o;1843:666::-;1938:6;1946;1954;1962;2015:3;2003:9;1994:7;1990:23;1986:33;1983:53;;;2032:1;2029;2022:12;1983:53;2055:29;2074:9;2055:29;:::i;:::-;2045:39;;2103:38;2137:2;2126:9;2122:18;2103:38;:::i;:::-;2093:48;;2188:2;2177:9;2173:18;2160:32;2150:42;;2243:2;2232:9;2228:18;2215:32;2270:18;2262:6;2259:30;2256:50;;;2302:1;2299;2292:12;2256:50;2325:22;;2378:4;2370:13;;2366:27;-1:-1:-1;2356:55:1;;2407:1;2404;2397:12;2356:55;2430:73;2495:7;2490:2;2477:16;2472:2;2468;2464:11;2430:73;:::i;:::-;2420:83;;;1843:666;;;;;;;:::o;2514:347::-;2579:6;2587;2640:2;2628:9;2619:7;2615:23;2611:32;2608:52;;;2656:1;2653;2646:12;2608:52;2679:29;2698:9;2679:29;:::i;:::-;2669:39;;2758:2;2747:9;2743:18;2730:32;2805:5;2798:13;2791:21;2784:5;2781:32;2771:60;;2827:1;2824;2817:12;2771:60;2850:5;2840:15;;;2514:347;;;;;:::o;2866:254::-;2934:6;2942;2995:2;2983:9;2974:7;2970:23;2966:32;2963:52;;;3011:1;3008;3001:12;2963:52;3034:29;3053:9;3034:29;:::i;:::-;3024:39;3110:2;3095:18;;;;3082:32;;-1:-1:-1;;;2866:254:1:o;3125:689::-;3220:6;3228;3236;3289:2;3277:9;3268:7;3264:23;3260:32;3257:52;;;3305:1;3302;3295:12;3257:52;3345:9;3332:23;3374:18;3415:2;3407:6;3404:14;3401:34;;;3431:1;3428;3421:12;3401:34;3469:6;3458:9;3454:22;3444:32;;3514:7;3507:4;3503:2;3499:13;3495:27;3485:55;;3536:1;3533;3526:12;3485:55;3576:2;3563:16;3602:2;3594:6;3591:14;3588:34;;;3618:1;3615;3608:12;3588:34;3673:7;3666:4;3656:6;3653:1;3649:14;3645:2;3641:23;3637:34;3634:47;3631:67;;;3694:1;3691;3684:12;3631:67;3725:4;3717:13;;;;3749:6;;-1:-1:-1;3787:20:1;;;;3774:34;;3125:689;-1:-1:-1;;;;3125:689:1:o;3819:180::-;3878:6;3931:2;3919:9;3910:7;3906:23;3902:32;3899:52;;;3947:1;3944;3937:12;3899:52;-1:-1:-1;3970:23:1;;3819:180;-1:-1:-1;3819:180:1:o;4004:245::-;4062:6;4115:2;4103:9;4094:7;4090:23;4086:32;4083:52;;;4131:1;4128;4121:12;4083:52;4170:9;4157:23;4189:30;4213:5;4189:30;:::i;4254:249::-;4323:6;4376:2;4364:9;4355:7;4351:23;4347:32;4344:52;;;4392:1;4389;4382:12;4344:52;4424:9;4418:16;4443:30;4467:5;4443:30;:::i;4508:322::-;4577:6;4630:2;4618:9;4609:7;4605:23;4601:32;4598:52;;;4646:1;4643;4636:12;4598:52;4686:9;4673:23;4719:18;4711:6;4708:30;4705:50;;;4751:1;4748;4741:12;4705:50;4774;4816:7;4807:6;4796:9;4792:22;4774:50;:::i;5020:390::-;5098:6;5106;5159:2;5147:9;5138:7;5134:23;5130:32;5127:52;;;5175:1;5172;5165:12;5127:52;5211:9;5198:23;5188:33;;5272:2;5261:9;5257:18;5244:32;5299:18;5291:6;5288:30;5285:50;;;5331:1;5328;5321:12;5285:50;5354;5396:7;5387:6;5376:9;5372:22;5354:50;:::i;:::-;5344:60;;;5020:390;;;;;:::o;5415:257::-;5456:3;5494:5;5488:12;5521:6;5516:3;5509:19;5537:63;5593:6;5586:4;5581:3;5577:14;5570:4;5563:5;5559:16;5537:63;:::i;:::-;5654:2;5633:15;-1:-1:-1;;5629:29:1;5620:39;;;;5661:4;5616:50;;5415:257;-1:-1:-1;;5415:257:1:o;5677:185::-;5719:3;5757:5;5751:12;5772:52;5817:6;5812:3;5805:4;5798:5;5794:16;5772:52;:::i;:::-;5840:16;;;;;5677:185;-1:-1:-1;;5677:185:1:o;6471:1301::-;6748:3;6777:1;6810:6;6804:13;6840:3;6862:1;6890:9;6886:2;6882:18;6872:28;;6950:2;6939:9;6935:18;6972;6962:61;;7016:4;7008:6;7004:17;6994:27;;6962:61;7042:2;7090;7082:6;7079:14;7059:18;7056:38;7053:165;;;-1:-1:-1;;;7117:33:1;;7173:4;7170:1;7163:15;7203:4;7124:3;7191:17;7053:165;7234:18;7261:104;;;;7379:1;7374:320;;;;7227:467;;7261:104;-1:-1:-1;;7294:24:1;;7282:37;;7339:16;;;;-1:-1:-1;7261:104:1;;7374:320;19550:1;19543:14;;;19587:4;19574:18;;7469:1;7483:165;7497:6;7494:1;7491:13;7483:165;;;7575:14;;7562:11;;;7555:35;7618:16;;;;7512:10;;7483:165;;;7487:3;;7677:6;7672:3;7668:16;7661:23;;7227:467;;;;;;;7710:56;7735:30;7761:3;7753:6;7735:30;:::i;:::-;-1:-1:-1;;;5927:20:1;;5972:1;5963:11;;5867:113;7710:56;7703:63;6471:1301;-1:-1:-1;;;;;6471:1301:1:o;7985:488::-;-1:-1:-1;;;;;8254:15:1;;;8236:34;;8306:15;;8301:2;8286:18;;8279:43;8353:2;8338:18;;8331:34;;;8401:3;8396:2;8381:18;;8374:31;;;8179:4;;8422:45;;8447:19;;8439:6;8422:45;:::i;:::-;8414:53;7985:488;-1:-1:-1;;;;;;7985:488:1:o;8852:219::-;9001:2;8990:9;8983:21;8964:4;9021:44;9061:2;9050:9;9046:18;9038:6;9021:44;:::i;9076:406::-;9278:2;9260:21;;;9317:2;9297:18;;;9290:30;9356:34;9351:2;9336:18;;9329:62;-1:-1:-1;;;9422:2:1;9407:18;;9400:40;9472:3;9457:19;;9076:406::o;9487:414::-;9689:2;9671:21;;;9728:2;9708:18;;;9701:30;9767:34;9762:2;9747:18;;9740:62;-1:-1:-1;;;9833:2:1;9818:18;;9811:48;9891:3;9876:19;;9487:414::o;15744:417::-;15946:2;15928:21;;;15985:2;15965:18;;;15958:30;16024:34;16019:2;16004:18;;15997:62;-1:-1:-1;;;16090:2:1;16075:18;;16068:51;16151:3;16136:19;;15744:417::o;16991:356::-;17193:2;17175:21;;;17212:18;;;17205:30;17271:34;17266:2;17251:18;;17244:62;17338:2;17323:18;;16991:356::o;18164:413::-;18366:2;18348:21;;;18405:2;18385:18;;;18378:30;18444:34;18439:2;18424:18;;18417:62;-1:-1:-1;;;18510:2:1;18495:18;;18488:47;18567:3;18552:19;;18164:413::o;19603:128::-;19643:3;19674:1;19670:6;19667:1;19664:13;19661:39;;;19680:18;;:::i;:::-;-1:-1:-1;19716:9:1;;19603:128::o;19736:120::-;19776:1;19802;19792:35;;19807:18;;:::i;:::-;-1:-1:-1;19841:9:1;;19736:120::o;19861:168::-;19901:7;19967:1;19963;19959:6;19955:14;19952:1;19949:21;19944:1;19937:9;19930:17;19926:45;19923:71;;;19974:18;;:::i;:::-;-1:-1:-1;20014:9:1;;19861:168::o;20034:125::-;20074:4;20102:1;20099;20096:8;20093:34;;;20107:18;;:::i;:::-;-1:-1:-1;20144:9:1;;20034:125::o;20164:258::-;20236:1;20246:113;20260:6;20257:1;20254:13;20246:113;;;20336:11;;;20330:18;20317:11;;;20310:39;20282:2;20275:10;20246:113;;;20377:6;20374:1;20371:13;20368:48;;;-1:-1:-1;;20412:1:1;20394:16;;20387:27;20164:258::o;20427:380::-;20506:1;20502:12;;;;20549;;;20570:61;;20624:4;20616:6;20612:17;20602:27;;20570:61;20677:2;20669:6;20666:14;20646:18;20643:38;20640:161;;;20723:10;20718:3;20714:20;20711:1;20704:31;20758:4;20755:1;20748:15;20786:4;20783:1;20776:15;20640:161;;20427:380;;;:::o;20812:135::-;20851:3;-1:-1:-1;;20872:17:1;;20869:43;;;20892:18;;:::i;:::-;-1:-1:-1;20939:1:1;20928:13;;20812:135::o;20952:112::-;20984:1;21010;21000:35;;21015:18;;:::i;:::-;-1:-1:-1;21049:9:1;;20952:112::o;21069:127::-;21130:10;21125:3;21121:20;21118:1;21111:31;21161:4;21158:1;21151:15;21185:4;21182:1;21175:15;21201:127;21262:10;21257:3;21253:20;21250:1;21243:31;21293:4;21290:1;21283:15;21317:4;21314:1;21307:15;21333:127;21394:10;21389:3;21385:20;21382:1;21375:31;21425:4;21422:1;21415:15;21449:4;21446:1;21439:15;21465:127;21526:10;21521:3;21517:20;21514:1;21507:31;21557:4;21554:1;21547:15;21581:4;21578:1;21571:15;21597:131;-1:-1:-1;;;;;;21671:32:1;;21661:43;;21651:71;;21718:1;21715;21708:12

Swarm Source

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