ETH Price: $3,489.05 (+0.50%)
Gas: 4 Gwei

Token

LarvaKarens (KAREN)
 

Overview

Max Total Supply

5,001 KAREN

Holders

957

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 KAREN
0x7459C91bddDB9a991faaE51a4a5beF09f953259A
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:
LarvaKarens

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-02-17
*/

// SPDX-License-Identifier: MIT
/*
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
@@@   @@@@   @@@@@@  @@@@@@@        @@@@@        @@   @@@@@@@  @@          @@@@@@@@@@@@@@@
@@@   @@@   @@@@@@  @  @@@@@  @@@@@@  @@@  @@@@@@@@  @  @@@@@  @@  @@@@@@@@@@@@@@@@@@@@@@@
@@@   @@   @@@@@@  @@@  @@@@  @@@@@@@  @@  @@@@@@@@  @@  @@@@  @@  @@@@@@@@@@@@@@@@@@@@@@@
@@@   @   @@@@@@  @@@@@  @@@  @@@@@@@  @@  @@@@@@@@  @@@  @@@  @@  @@@@@@@@@@@@@@@@@@@@@@@
@@@     @@@@@@@  @@@@@@@  @@  @@@@@@  @@@      @@@@  @@@@  @@  @@          @@@@@@@@@@@@@@@
@@@   @   @@@@@           @@         @@@@  @@@@@@@@  @@@@@  @  @@@@@@@@@@  @@@@@@@@@@@@@@@
@@@   @@   @@@@  @@@@@@@  @@  @@@@  @@@@@  @@@@@@@@  @@@@@@    @@@@@@@@@@  @@@@@@@@@@@@@@@
@@@   @@@   @@@  @@@@@@@  @@  @@@@@  @@@@  @@@@@@@@  @@@@@@@@  @@@@@@@@@@  @@@@@@@@@@@@@@@
@@@   @@@@   @@  @@@@@@@  @@  @@@@@@  @@@  @@@@@@@@  @@@@@@@@  @@@@@@@@@@  @@@@@@@@@@@@@@@
@@@   @@@@@   @  @@@@@@@  @@  @@@@@@@  @@        @@  @@@@@@@@  @@          @@@@@@@@@@@@@@@
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
*/
//Smart contract by ScecarelloGuy

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

pragma solidity ^0.8.0;

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;


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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

// File: contracts/LowerGas.sol


// Creator: Chiru Labs


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

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

pragma solidity ^0.8.0;










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

    struct TokenOwnership {
        address addr;
        uint64 startTimestamp;
    }

    struct AddressData {
        uint128 balance;
        uint128 numberMinted;
    }

    uint256 internal currentIndex = 0;

    uint256 internal immutable maxBatchSize;

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

    /**
     * @dev
     * `maxBatchSize` refers to how much a minter can mint at a time.
     */
    constructor(
        string memory name_,
        string memory symbol_,
        uint256 maxBatchSize_
    ) {
        require(maxBatchSize_ > 0, 'ERC721A: max batch size must be nonzero');
        _name = name_;
        _symbol = symbol_;
        maxBatchSize = maxBatchSize_;
    }

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

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

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

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

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

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

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

        uint256 lowestTokenToCheck;
        if (tokenId >= maxBatchSize) {
            lowestTokenToCheck = tokenId - maxBatchSize + 1;
        }

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId, owner);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

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

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

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) public override {
        _transfer(from, to, tokenId);
        require(
            _checkOnERC721Received(from, to, tokenId, _data),
            'ERC721A: transfer to non ERC721Receiver implementer'
        );
    }

    /**
     * @dev Returns whether `tokenId` exists.
     *
     * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}.
     *
     * Tokens start existing when they are minted (`_mint`),
     */
    function _exists(uint256 tokenId) internal view returns (bool) {
        return tokenId < currentIndex;
    }

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

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

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

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

        uint256 updatedIndex = startTokenId;

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

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

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     *
     * Emits a {Transfer} event.
     */
    function _transfer(
        address from,
        address to,
        uint256 tokenId
    ) private {
        TokenOwnership memory prevOwnership = ownershipOf(tokenId);

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

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

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

        _beforeTokenTransfers(from, to, tokenId, 1);

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

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

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

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

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

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

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

    /**
     * @dev Hook that is called before a set of serially-ordered token ids are about to be transferred. This includes minting.
     *
     * startTokenId - the first token id to be transferred
     * quantity - the amount to be transferred
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be
     * transferred to `to`.
     * - When `from` is zero, `tokenId` will be minted for `to`.
     */
    function _beforeTokenTransfers(
        address from,
        address to,
        uint256 startTokenId,
        uint256 quantity
    ) internal virtual {}

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

interface HolderC {
    
    function balanceOf(address owner) external view returns (uint256 balance);
}

pragma solidity ^0.8.0;

contract LarvaKarens is ERC721A, Ownable {
  using Strings for uint256;

  string private uriPrefix = "";
  string private uriSuffix = ".json";
  string public hiddenMetadataUri;
  
  uint256 public price = 0.0169 ether; 
  uint256 public maxSupply = 5001; 
  uint256 public maxMintAmountPerTx = 50; 
  uint256 public nftPerAddressLimitWl = 20; 
  

  bool public paused = true;
  bool public revealed = true;
  bool public onlyWhitelisted = false;

  bytes32 public whitelistMerkleRoot;
  mapping(address => uint256) public addressMintedBalance;

  HolderC public holderc;

  constructor() ERC721A("LarvaKarens", "KAREN", maxMintAmountPerTx) {
    setHiddenMetadataUri("");
  }

  /**
    * @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 mintCompliance(uint256 _mintAmount) {
    require(_mintAmount > 0 && _mintAmount <= maxMintAmountPerTx, "Invalid mint amount!");
    require(currentIndex + _mintAmount <= maxSupply, "Max supply exceeded!");
    _;
  }


  function mint(uint256 _mintAmount) public payable mintCompliance(_mintAmount)
   {
    require(!paused, "The contract is paused!");
    require(!onlyWhitelisted, "Presale is on");
    require(msg.value >= price * _mintAmount, "Insufficient funds!");

    _safeMint(msg.sender, _mintAmount);
  }

  function mintHolder(uint256 _mintAmount) public payable mintCompliance(_mintAmount) {
    uint256 ownerMintedCount = addressMintedBalance[msg.sender];
    require(!paused, "The contract is paused!");
    require(onlyWhitelisted, "Presale has ended");
    require(holderc.balanceOf(msg.sender) > 0 , "you are not a holder");
    require(ownerMintedCount + _mintAmount <= nftPerAddressLimitWl, "max NFT per address exceeded");
    require(msg.value >= price * _mintAmount, "Insufficient funds!");

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

  function mintWhitelist(bytes32[] calldata merkleProof, uint256 _mintAmount) public payable isValidMerkleProof(merkleProof, whitelistMerkleRoot){
    uint256 ownerMintedCount = addressMintedBalance[msg.sender];
    
    require(!paused, "The contract is paused!");
    require(onlyWhitelisted, "Presale has ended");
    require(ownerMintedCount + _mintAmount <= nftPerAddressLimitWl, "max NFT per address exceeded");
    require(msg.value >= price * _mintAmount, "Insufficient funds!");
    
    addressMintedBalance[msg.sender]+=_mintAmount;
    
    _safeMint(msg.sender, _mintAmount);
  }
  
  function NftToAddress(address _to, uint256 _mintAmount) public mintCompliance(_mintAmount) onlyOwner {
    _safeMint(_to, _mintAmount);
  }

 
  function walletOfOwner(address _owner)
    public
    view
    returns (uint256[] memory)
  {
    uint256 ownerTokenCount = balanceOf(_owner);
    uint256[] memory ownedTokenIds = new uint256[](ownerTokenCount);
    uint256 currentTokenId = 0;
    uint256 ownedTokenIndex = 0;

    while (ownedTokenIndex < ownerTokenCount && currentTokenId <= maxSupply) {
      address currentTokenOwner = ownerOf(currentTokenId);

      if (currentTokenOwner == _owner) {
        ownedTokenIds[ownedTokenIndex] = currentTokenId;

        ownedTokenIndex++;
      }

      currentTokenId++;
    }

    return ownedTokenIds;
  }

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

    if (revealed == false) {
      return hiddenMetadataUri;
    }

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

  function setRevealed(bool _state) public onlyOwner {
    revealed = _state;
  }

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

  function setOnlyWhitelisted(bool _state) public onlyOwner {
    onlyWhitelisted = _state;
  }

  function setPrice(uint256 _price) public onlyOwner {
    price = _price;

  }

  function setHolderC(address _address) public {
    holderc = HolderC(_address);
  }

  function setHiddenMetadataUri(string memory _hiddenMetadataUri) public onlyOwner {
    hiddenMetadataUri = _hiddenMetadataUri;
  }

  function setNftPerAddressLimitWl(uint256 _limit) public onlyOwner {
    nftPerAddressLimitWl = _limit;
  }

  function setUriPrefix(string memory _uriPrefix) public onlyOwner {
    uriPrefix = _uriPrefix;
  }

  function setUriSuffix(string memory _uriSuffix) public onlyOwner {
    uriSuffix = _uriSuffix;
  }

  function setPaused(bool _state) public onlyOwner {
    paused = _state;
  }

  function _mintLoop(address _receiver, uint256 _mintAmount) internal {
      _safeMint(_receiver, _mintAmount);
  }

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

    function setMaxMintAmountPerTx(uint256 _maxMintAmountPerTx) public onlyOwner {
    maxMintAmountPerTx = _maxMintAmountPerTx;

  }

    function setMaxSupply(uint256 _maxSupply) public onlyOwner {
    maxSupply = _maxSupply;

  }

  // withdrawall addresses
  address t1 = 0x9191c1F39Be40bbA3B4d57c023da85A500a02DDb; //SheepLedger
  address t2 = 0x9e9E6D6aC9E59410E4AbAbB13475C5d54e5356ad; //VitoLedger
  address t3 = 0x251216Dd3473EA5fCdBaFFd0dD0826017F8E1B24; //Banana
  address t4 = 0xed124a7fAf7a6B54741EDADc6BE7D1E60C76787d; //Rice
  address t5 = 0xA05e5B6B5199735e157bCCa08f3CA680cACC4764; //Tuna
  address t6 = 0x1B65a9816EF95229ACC3384E67956A7dFaB2b87c; //Chads Treasury
  address t7 = 0x422605D2f4Ac07b2e8Ee9E09045B64947cDEC17D; //DBDAO

  function withdrawall() public onlyOwner {
        uint256 _balance = address(this).balance;
        

        require(payable(t1).send(_balance * 22 / 100 ));
        require(payable(t2).send(_balance * 22 / 100 ));
        require(payable(t3).send(_balance * 22 / 100 ));
        require(payable(t4).send(_balance * 11 / 100 ));
        require(payable(t5).send(_balance * 11 / 100 ));
        require(payable(t6).send(_balance * 7 / 100 ));
        require(payable(t7).send(_balance * 5 / 100 ));
  }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"NftToAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"addressMintedBalance","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":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"hiddenMetadataUri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"holderc","outputs":[{"internalType":"contract HolderC","name":"","type":"address"}],"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":"maxMintAmountPerTx","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mintHolder","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"bytes32[]","name":"merkleProof","type":"bytes32[]"},{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mintWhitelist","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"nftPerAddressLimitWl","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"onlyWhitelisted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","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":"_hiddenMetadataUri","type":"string"}],"name":"setHiddenMetadataUri","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"}],"name":"setHolderC","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxMintAmountPerTx","type":"uint256"}],"name":"setMaxMintAmountPerTx","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxSupply","type":"uint256"}],"name":"setMaxSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_limit","type":"uint256"}],"name":"setNftPerAddressLimitWl","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setOnlyWhitelisted","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setPaused","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_price","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setRevealed","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uriPrefix","type":"string"}],"name":"setUriPrefix","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uriSuffix","type":"string"}],"name":"setUriSuffix","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":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"walletOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"whitelistMerkleRoot","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdrawall","outputs":[],"stateMutability":"nonpayable","type":"function"}]

600080805560c0604081905260a08290526200001f916008919062000336565b5060408051808201909152600580825264173539b7b760d91b60209092019182526200004e9160099162000336565b50663c0a75e0b44000600b55611389600c556032600d556014600e819055600f805462ffffff1916610101179055601380546001600160a01b0319908116739191c1f39be40bba3b4d57c023da85a500a02ddb1790915581548116739e9e6d6ac9e59410e4ababb13475c5d54e5356ad1790915560158054821673251216dd3473ea5fcdbaffd0dd0826017f8e1b2417905560168054821673ed124a7faf7a6b54741edadc6be7d1e60c76787d17905560178054821673a05e5b6b5199735e157bcca08f3ca680cacc4764179055601880548216731b65a9816ef95229acc3384e67956a7dfab2b87c1790556019805490911673422605d2f4ac07b2e8ee9e09045b64947cdec17d1790553480156200016657600080fd5b506040518060400160405280600b81526020016a4c617276614b6172656e7360a81b8152506040518060400160405280600581526020016425a0a922a760d91b815250600d5460008111620002125760405162461bcd60e51b815260206004820152602760248201527f455243373231413a206d61782062617463682073697a65206d757374206265206044820152666e6f6e7a65726f60c81b60648201526084015b60405180910390fd5b82516200022790600190602086019062000336565b5081516200023d90600290602085019062000336565b50608052506200024f9050336200026f565b6040805160208101909152600081526200026990620002c1565b62000419565b600780546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6007546001600160a01b031633146200031d5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640162000209565b80516200033290600a90602084019062000336565b5050565b8280546200034490620003dc565b90600052602060002090601f016020900481019282620003685760008555620003b3565b82601f106200038357805160ff1916838001178555620003b3565b82800160010185558215620003b3579182015b82811115620003b357825182559160200191906001019062000396565b50620003c1929150620003c5565b5090565b5b80821115620003c15760008155600101620003c6565b600181811c90821680620003f157607f821691505b602082108114156200041357634e487b7160e01b600052602260045260246000fd5b50919050565b60805161311962000443600039600081816121420152818161216c01526125aa01526131196000f3fe6080604052600436106102935760003560e01c806370a082311161015a578063a6d612f9116100c1578063d5abeb011161007a578063d5abeb01146107c6578063e0a80853146107dc578063e2dfc039146107fc578063e985e9c51461081c578063f2fde38b14610865578063f66c72811461088557600080fd5b8063a6d612f91461071d578063aa98e0c614610730578063b071401b14610746578063b88d4fde14610766578063bd32fb6614610786578063c87b56dd146107a657600080fd5b806395d89b411161011357806395d89b411461068a5780639c70b5121461069f578063a035b1fe146106bf578063a0712d68146106d5578063a22cb465146106e8578063a45ba8e71461070857600080fd5b806370a08231146105e1578063715018a6146106015780637ec4a659146106165780638da5cb5b1461063657806391b7f5ed1461065457806394354fd01461067457600080fd5b80632f745c59116101fe5780634f6ccce7116101b75780634f6ccce7146105285780634fdd43cb1461054857806351830227146105685780635c975abb146105875780636352211e146105a15780636f8b44b0146105c157600080fd5b80632f745c591461044b578063388960a71461046b5780633c952764146104a857806342842e0e146104c8578063438b6300146104e85780634b3ea9341461051557600080fd5b806316c38b3c1161025057806316c38b3c1461038957806318160ddd146103a957806318cae269146103c85780632063064e146103f557806323b872dd1461040b5780632cdf09ba1461042b57600080fd5b806301ffc9a71461029857806306fdde03146102cd578063081812fc146102ef578063095ea7b3146103275780630c6beda21461034957806316ba10e014610369575b600080fd5b3480156102a457600080fd5b506102b86102b3366004612bd3565b61089a565b60405190151581526020015b60405180910390f35b3480156102d957600080fd5b506102e2610907565b6040516102c49190612de0565b3480156102fb57600080fd5b5061030f61030a366004612bba565b610999565b6040516001600160a01b0390911681526020016102c4565b34801561033357600080fd5b50610347610342366004612afa565b610a29565b005b34801561035557600080fd5b50610347610364366004612afa565b610b41565b34801561037557600080fd5b50610347610384366004612c0d565b610bd3565b34801561039557600080fd5b506103476103a4366004612b9f565b610c14565b3480156103b557600080fd5b506000545b6040519081526020016102c4565b3480156103d457600080fd5b506103ba6103e33660046129ca565b60116020526000908152604090205481565b34801561040157600080fd5b506103ba600e5481565b34801561041757600080fd5b50610347610426366004612a18565b610c51565b34801561043757600080fd5b5060125461030f906001600160a01b031681565b34801561045757600080fd5b506103ba610466366004612afa565b610c5c565b34801561047757600080fd5b506103476104863660046129ca565b601280546001600160a01b0319166001600160a01b0392909216919091179055565b3480156104b457600080fd5b506103476104c3366004612b9f565b610dca565b3480156104d457600080fd5b506103476104e3366004612a18565b610e10565b3480156104f457600080fd5b506105086105033660046129ca565b610e2b565b6040516102c49190612d9c565b610347610523366004612bba565b610f0b565b34801561053457600080fd5b506103ba610543366004612bba565b61115f565b34801561055457600080fd5b50610347610563366004612c0d565b6111c1565b34801561057457600080fd5b50600f546102b890610100900460ff1681565b34801561059357600080fd5b50600f546102b89060ff1681565b3480156105ad57600080fd5b5061030f6105bc366004612bba565b6111fe565b3480156105cd57600080fd5b506103476105dc366004612bba565b611210565b3480156105ed57600080fd5b506103ba6105fc3660046129ca565b61123f565b34801561060d57600080fd5b506103476112d0565b34801561062257600080fd5b50610347610631366004612c0d565b611306565b34801561064257600080fd5b506007546001600160a01b031661030f565b34801561066057600080fd5b5061034761066f366004612bba565b611343565b34801561068057600080fd5b506103ba600d5481565b34801561069657600080fd5b506102e2611372565b3480156106ab57600080fd5b50600f546102b89062010000900460ff1681565b3480156106cb57600080fd5b506103ba600b5481565b6103476106e3366004612bba565b611381565b3480156106f457600080fd5b50610347610703366004612ad0565b611482565b34801561071457600080fd5b506102e2611547565b61034761072b366004612b24565b6115d5565b34801561073c57600080fd5b506103ba60105481565b34801561075257600080fd5b50610347610761366004612bba565b6117d7565b34801561077257600080fd5b50610347610781366004612a54565b611806565b34801561079257600080fd5b506103476107a1366004612bba565b61183f565b3480156107b257600080fd5b506102e26107c1366004612bba565b61186e565b3480156107d257600080fd5b506103ba600c5481565b3480156107e857600080fd5b506103476107f7366004612b9f565b6119df565b34801561080857600080fd5b50610347610817366004612bba565b611a23565b34801561082857600080fd5b506102b86108373660046129e5565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b34801561087157600080fd5b506103476108803660046129ca565b611a52565b34801561089157600080fd5b50610347611aed565b60006001600160e01b031982166380ac58cd60e01b14806108cb57506001600160e01b03198216635b5e139f60e01b145b806108e657506001600160e01b0319821663780e9d6360e01b145b8061090157506301ffc9a760e01b6001600160e01b03198316145b92915050565b6060600180546109169061300b565b80601f01602080910402602001604051908101604052809291908181526020018280546109429061300b565b801561098f5780601f106109645761010080835404028352916020019161098f565b820191906000526020600020905b81548152906001019060200180831161097257829003601f168201915b5050505050905090565b60006109a6826000541190565b610a0d5760405162461bcd60e51b815260206004820152602d60248201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560448201526c3c34b9ba32b73a103a37b5b2b760991b60648201526084015b60405180910390fd5b506000908152600560205260409020546001600160a01b031690565b6000610a34826111fe565b9050806001600160a01b0316836001600160a01b03161415610aa35760405162461bcd60e51b815260206004820152602260248201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60448201526132b960f11b6064820152608401610a04565b336001600160a01b0382161480610abf5750610abf8133610837565b610b315760405162461bcd60e51b815260206004820152603960248201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656420666f7220616c6c000000000000006064820152608401610a04565b610b3c838383611d03565b505050565b80600081118015610b545750600d548111155b610b705760405162461bcd60e51b8152600401610a0490612df3565b600c5481600054610b819190612f66565b1115610b9f5760405162461bcd60e51b8152600401610a0490612e8d565b6007546001600160a01b03163314610bc95760405162461bcd60e51b8152600401610a0490612e21565b610b3c8383611d5f565b6007546001600160a01b03163314610bfd5760405162461bcd60e51b8152600401610a0490612e21565b8051610c10906009906020840190612898565b5050565b6007546001600160a01b03163314610c3e5760405162461bcd60e51b8152600401610a0490612e21565b600f805460ff1916911515919091179055565b610b3c838383611d79565b6000610c678361123f565b8210610cc05760405162461bcd60e51b815260206004820152602260248201527f455243373231413a206f776e657220696e646578206f7574206f6620626f756e604482015261647360f01b6064820152608401610a04565b600080549080805b83811015610d6a576000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff169183019190915215610d1b57805192505b876001600160a01b0316836001600160a01b03161415610d575786841415610d495750935061090192505050565b83610d5381613046565b9450505b5080610d6281613046565b915050610cc8565b5060405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060448201526d0deeedccae440c4f240d2dcc8caf60931b6064820152608401610a04565b6007546001600160a01b03163314610df45760405162461bcd60e51b8152600401610a0490612e21565b600f8054911515620100000262ff000019909216919091179055565b610b3c83838360405180602001604052806000815250611806565b60606000610e388361123f565b905060008167ffffffffffffffff811115610e5557610e556130b7565b604051908082528060200260200182016040528015610e7e578160200160208202803683370190505b5090506000805b8381108015610e965750600c548211155b15610f01576000610ea6836111fe565b9050866001600160a01b0316816001600160a01b03161415610eee5782848381518110610ed557610ed56130a1565b602090810291909101015281610eea81613046565b9250505b82610ef881613046565b93505050610e85565b5090949350505050565b80600081118015610f1e5750600d548111155b610f3a5760405162461bcd60e51b8152600401610a0490612df3565b600c5481600054610f4b9190612f66565b1115610f695760405162461bcd60e51b8152600401610a0490612e8d565b33600090815260116020526040902054600f5460ff1615610f9c5760405162461bcd60e51b8152600401610a0490612e56565b600f5462010000900460ff16610fe85760405162461bcd60e51b8152602060048201526011602482015270141c995cd85b19481a185cc8195b991959607a1b6044820152606401610a04565b6012546040516370a0823160e01b81523360048201526000916001600160a01b0316906370a082319060240160206040518083038186803b15801561102c57600080fd5b505afa158015611040573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906110649190612c56565b116110a85760405162461bcd60e51b81526020600482015260146024820152733cb7ba9030b932903737ba1030903437b63232b960611b6044820152606401610a04565b600e546110b58483612f66565b11156111035760405162461bcd60e51b815260206004820152601c60248201527f6d6178204e4654207065722061646472657373206578636565646564000000006044820152606401610a04565b82600b546111119190612f92565b3410156111305760405162461bcd60e51b8152600401610a0490612f0e565b336000908152601160205260408120805485929061114f908490612f66565b90915550610b3c90503384611d5f565b6000805482106111bd5760405162461bcd60e51b815260206004820152602360248201527f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f756044820152626e647360e81b6064820152608401610a04565b5090565b6007546001600160a01b031633146111eb5760405162461bcd60e51b8152600401610a0490612e21565b8051610c1090600a906020840190612898565b6000611209826120c0565b5192915050565b6007546001600160a01b0316331461123a5760405162461bcd60e51b8152600401610a0490612e21565b600c55565b60006001600160a01b0382166112ab5760405162461bcd60e51b815260206004820152602b60248201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b6064820152608401610a04565b506001600160a01b03166000908152600460205260409020546001600160801b031690565b6007546001600160a01b031633146112fa5760405162461bcd60e51b8152600401610a0490612e21565b611304600061226a565b565b6007546001600160a01b031633146113305760405162461bcd60e51b8152600401610a0490612e21565b8051610c10906008906020840190612898565b6007546001600160a01b0316331461136d5760405162461bcd60e51b8152600401610a0490612e21565b600b55565b6060600280546109169061300b565b806000811180156113945750600d548111155b6113b05760405162461bcd60e51b8152600401610a0490612df3565b600c54816000546113c19190612f66565b11156113df5760405162461bcd60e51b8152600401610a0490612e8d565b600f5460ff16156114025760405162461bcd60e51b8152600401610a0490612e56565b600f5462010000900460ff161561144b5760405162461bcd60e51b815260206004820152600d60248201526c283932b9b0b6329034b99037b760991b6044820152606401610a04565b81600b546114599190612f92565b3410156114785760405162461bcd60e51b8152600401610a0490612f0e565b610c103383611d5f565b6001600160a01b0382163314156114db5760405162461bcd60e51b815260206004820152601a60248201527f455243373231413a20617070726f766520746f2063616c6c65720000000000006044820152606401610a04565b3360008181526006602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b600a80546115549061300b565b80601f01602080910402602001604051908101604052809291908181526020018280546115809061300b565b80156115cd5780601f106115a2576101008083540402835291602001916115cd565b820191906000526020600020905b8154815290600101906020018083116115b057829003601f168201915b505050505081565b828260105461164c838380806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250506040516bffffffffffffffffffffffff193360601b1660208201528592506034019050604051602081830303815290604052805190602001206122bc565b6116985760405162461bcd60e51b815260206004820152601e60248201527f4164647265737320646f6573206e6f7420657869737420696e206c69737400006044820152606401610a04565b33600090815260116020526040902054600f5460ff16156116cb5760405162461bcd60e51b8152600401610a0490612e56565b600f5462010000900460ff166117175760405162461bcd60e51b8152602060048201526011602482015270141c995cd85b19481a185cc8195b991959607a1b6044820152606401610a04565b600e546117248683612f66565b11156117725760405162461bcd60e51b815260206004820152601c60248201527f6d6178204e4654207065722061646472657373206578636565646564000000006044820152606401610a04565b84600b546117809190612f92565b34101561179f5760405162461bcd60e51b8152600401610a0490612f0e565b33600090815260116020526040812080548792906117be908490612f66565b909155506117ce90503386611d5f565b50505050505050565b6007546001600160a01b031633146118015760405162461bcd60e51b8152600401610a0490612e21565b600d55565b611811848484611d79565b61181d848484846122d2565b6118395760405162461bcd60e51b8152600401610a0490612ebb565b50505050565b6007546001600160a01b031633146118695760405162461bcd60e51b8152600401610a0490612e21565b601055565b606061187b826000541190565b6118df5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610a04565b600f54610100900460ff1661198057600a80546118fb9061300b565b80601f01602080910402602001604051908101604052809291908181526020018280546119279061300b565b80156119745780601f1061194957610100808354040283529160200191611974565b820191906000526020600020905b81548152906001019060200180831161195757829003601f168201915b50505050509050919050565b600061198a6123e0565b905060008151116119aa57604051806020016040528060008152506119d8565b806119b4846123ef565b60096040516020016119c893929190612c9b565b6040516020818303038152906040525b9392505050565b6007546001600160a01b03163314611a095760405162461bcd60e51b8152600401610a0490612e21565b600f80549115156101000261ff0019909216919091179055565b6007546001600160a01b03163314611a4d5760405162461bcd60e51b8152600401610a0490612e21565b600e55565b6007546001600160a01b03163314611a7c5760405162461bcd60e51b8152600401610a0490612e21565b6001600160a01b038116611ae15760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610a04565b611aea8161226a565b50565b6007546001600160a01b03163314611b175760405162461bcd60e51b8152600401610a0490612e21565b60135447906001600160a01b03166108fc6064611b35846016612f92565b611b3f9190612f7e565b6040518115909202916000818181858888f19350505050611b5f57600080fd5b6014546001600160a01b03166108fc6064611b7b846016612f92565b611b859190612f7e565b6040518115909202916000818181858888f19350505050611ba557600080fd5b6015546001600160a01b03166108fc6064611bc1846016612f92565b611bcb9190612f7e565b6040518115909202916000818181858888f19350505050611beb57600080fd5b6016546001600160a01b03166108fc6064611c0784600b612f92565b611c119190612f7e565b6040518115909202916000818181858888f19350505050611c3157600080fd5b6017546001600160a01b03166108fc6064611c4d84600b612f92565b611c579190612f7e565b6040518115909202916000818181858888f19350505050611c7757600080fd5b6018546001600160a01b03166108fc6064611c93846007612f92565b611c9d9190612f7e565b6040518115909202916000818181858888f19350505050611cbd57600080fd5b6019546001600160a01b03166108fc6064611cd9846005612f92565b611ce39190612f7e565b6040518115909202916000818181858888f19350505050611aea57600080fd5b60008281526005602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b610c108282604051806020016040528060008152506124ed565b6000611d84826120c0565b80519091506000906001600160a01b0316336001600160a01b03161480611dbb575033611db084610999565b6001600160a01b0316145b80611dcd57508151611dcd9033610837565b905080611e375760405162461bcd60e51b815260206004820152603260248201527f455243373231413a207472616e736665722063616c6c6572206973206e6f74206044820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b6064820152608401610a04565b846001600160a01b031682600001516001600160a01b031614611eab5760405162461bcd60e51b815260206004820152602660248201527f455243373231413a207472616e736665722066726f6d20696e636f72726563746044820152651037bbb732b960d11b6064820152608401610a04565b6001600160a01b038416611f0f5760405162461bcd60e51b815260206004820152602560248201527f455243373231413a207472616e7366657220746f20746865207a65726f206164604482015264647265737360d81b6064820152608401610a04565b611f1f6000848460000151611d03565b6001600160a01b03858116600090815260046020908152604080832080546fffffffffffffffffffffffffffffffff198082166001600160801b03928316600019018316179092558986168086528386208054938416938316600190810190931693909317909255825180840184529182524267ffffffffffffffff9081168386019081528a8752600390955292852091518254945196166001600160e01b031990941693909317600160a01b95909216949094021790925590611fe4908590612f66565b6000818152600360205260409020549091506001600160a01b03166120765761200e816000541190565b156120765760408051808201825284516001600160a01b03908116825260208087015167ffffffffffffffff9081168285019081526000878152600390935294909120925183549451909116600160a01b026001600160e01b03199094169116179190911790555b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b505050505050565b60408051808201909152600080825260208201526120df826000541190565b61213e5760405162461bcd60e51b815260206004820152602a60248201527f455243373231413a206f776e657220717565727920666f72206e6f6e657869736044820152693a32b73a103a37b5b2b760b11b6064820152608401610a04565b60007f0000000000000000000000000000000000000000000000000000000000000000831061219f576121917f000000000000000000000000000000000000000000000000000000000000000084612fb1565b61219c906001612f66565b90505b825b818110612209576000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff1691830191909152156121f657949350505050565b508061220181612ff4565b9150506121a1565b5060405162461bcd60e51b815260206004820152602f60248201527f455243373231413a20756e61626c6520746f2064657465726d696e652074686560448201526e1037bbb732b91037b3103a37b5b2b760891b6064820152608401610a04565b600780546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6000826122c98584612824565b14949350505050565b60006001600160a01b0384163b156123d457604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290612316903390899088908890600401612d5f565b602060405180830381600087803b15801561233057600080fd5b505af1925050508015612360575060408051601f3d908101601f1916820190925261235d91810190612bf0565b60015b6123ba573d80801561238e576040519150601f19603f3d011682016040523d82523d6000602084013e612393565b606091505b5080516123b25760405162461bcd60e51b8152600401610a0490612ebb565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506123d8565b5060015b949350505050565b6060600880546109169061300b565b6060816124135750506040805180820190915260018152600360fc1b602082015290565b8160005b811561243d578061242781613046565b91506124369050600a83612f7e565b9150612417565b60008167ffffffffffffffff811115612458576124586130b7565b6040519080825280601f01601f191660200182016040528015612482576020820181803683370190505b5090505b84156123d857612497600183612fb1565b91506124a4600a86613061565b6124af906030612f66565b60f81b8183815181106124c4576124c46130a1565b60200101906001600160f81b031916908160001a9053506124e6600a86612f7e565b9450612486565b6000546001600160a01b0384166125505760405162461bcd60e51b815260206004820152602160248201527f455243373231413a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b6064820152608401610a04565b61255b816000541190565b156125a85760405162461bcd60e51b815260206004820152601d60248201527f455243373231413a20746f6b656e20616c7265616479206d696e7465640000006044820152606401610a04565b7f00000000000000000000000000000000000000000000000000000000000000008311156126235760405162461bcd60e51b815260206004820152602260248201527f455243373231413a207175616e7469747920746f206d696e7420746f6f2068696044820152610ced60f31b6064820152608401610a04565b6000831161267f5760405162461bcd60e51b815260206004820152602360248201527f455243373231413a207175616e74697479206d7573742062652067726561746560448201526207220360ec1b6064820152608401610a04565b6001600160a01b0384166000908152600460209081526040918290208251808401845290546001600160801b038082168352600160801b90910416918101919091528151808301909252805190919081906126db908790612f3b565b6001600160801b031681526020018583602001516126f99190612f3b565b6001600160801b039081169091526001600160a01b0380881660008181526004602090815260408083208751978301518716600160801b0297909616969096179094558451808601865291825267ffffffffffffffff4281168386019081528883526003909552948120915182549451909516600160a01b026001600160e01b031990941694909216939093179190911790915582905b858110156128195760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a46127dd60008884886122d2565b6127f95760405162461bcd60e51b8152600401610a0490612ebb565b8161280381613046565b925050808061281190613046565b915050612790565b5060008190556120b8565b600081815b8451811015612890576000858281518110612846576128466130a1565b6020026020010151905080831161286c576000838152602082905260409020925061287d565b600081815260208490526040902092505b508061288881613046565b915050612829565b509392505050565b8280546128a49061300b565b90600052602060002090601f0160209004810192826128c6576000855561290c565b82601f106128df57805160ff191683800117855561290c565b8280016001018555821561290c579182015b8281111561290c5782518255916020019190600101906128f1565b506111bd9291505b808211156111bd5760008155600101612914565b600067ffffffffffffffff80841115612943576129436130b7565b604051601f8501601f19908116603f0116810190828211818310171561296b5761296b6130b7565b8160405280935085815286868601111561298457600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b03811681146129b557600080fd5b919050565b803580151581146129b557600080fd5b6000602082840312156129dc57600080fd5b6119d88261299e565b600080604083850312156129f857600080fd5b612a018361299e565b9150612a0f6020840161299e565b90509250929050565b600080600060608486031215612a2d57600080fd5b612a368461299e565b9250612a446020850161299e565b9150604084013590509250925092565b60008060008060808587031215612a6a57600080fd5b612a738561299e565b9350612a816020860161299e565b925060408501359150606085013567ffffffffffffffff811115612aa457600080fd5b8501601f81018713612ab557600080fd5b612ac487823560208401612928565b91505092959194509250565b60008060408385031215612ae357600080fd5b612aec8361299e565b9150612a0f602084016129ba565b60008060408385031215612b0d57600080fd5b612b168361299e565b946020939093013593505050565b600080600060408486031215612b3957600080fd5b833567ffffffffffffffff80821115612b5157600080fd5b818601915086601f830112612b6557600080fd5b813581811115612b7457600080fd5b8760208260051b8501011115612b8957600080fd5b6020928301989097509590910135949350505050565b600060208284031215612bb157600080fd5b6119d8826129ba565b600060208284031215612bcc57600080fd5b5035919050565b600060208284031215612be557600080fd5b81356119d8816130cd565b600060208284031215612c0257600080fd5b81516119d8816130cd565b600060208284031215612c1f57600080fd5b813567ffffffffffffffff811115612c3657600080fd5b8201601f81018413612c4757600080fd5b6123d884823560208401612928565b600060208284031215612c6857600080fd5b5051919050565b60008151808452612c87816020860160208601612fc8565b601f01601f19169290920160200192915050565b600084516020612cae8285838a01612fc8565b855191840191612cc18184848a01612fc8565b8554920191600090600181811c9080831680612cde57607f831692505b858310811415612cfc57634e487b7160e01b85526022600452602485fd5b808015612d105760018114612d2157612d4e565b60ff19851688528388019550612d4e565b60008b81526020902060005b85811015612d465781548a820152908401908801612d2d565b505083880195505b50939b9a5050505050505050505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612d9290830184612c6f565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b81811015612dd457835183529284019291840191600101612db8565b50909695505050505050565b6020815260006119d86020830184612c6f565b602080825260149082015273496e76616c6964206d696e7420616d6f756e742160601b604082015260600190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526017908201527f54686520636f6e74726163742069732070617573656421000000000000000000604082015260600190565b6020808252601490820152734d617820737570706c792065786365656465642160601b604082015260600190565b60208082526033908201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260408201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b606082015260800190565b602080825260139082015272496e73756666696369656e742066756e64732160681b604082015260600190565b60006001600160801b03808316818516808303821115612f5d57612f5d613075565b01949350505050565b60008219821115612f7957612f79613075565b500190565b600082612f8d57612f8d61308b565b500490565b6000816000190483118215151615612fac57612fac613075565b500290565b600082821015612fc357612fc3613075565b500390565b60005b83811015612fe3578181015183820152602001612fcb565b838111156118395750506000910152565b60008161300357613003613075565b506000190190565b600181811c9082168061301f57607f821691505b6020821081141561304057634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561305a5761305a613075565b5060010190565b6000826130705761307061308b565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114611aea57600080fdfea2646970667358221220c98770d18da9888c2c3365994bd053756885b0e495c86ac5c4500bf8872286bd64736f6c63430008070033

Deployed Bytecode

0x6080604052600436106102935760003560e01c806370a082311161015a578063a6d612f9116100c1578063d5abeb011161007a578063d5abeb01146107c6578063e0a80853146107dc578063e2dfc039146107fc578063e985e9c51461081c578063f2fde38b14610865578063f66c72811461088557600080fd5b8063a6d612f91461071d578063aa98e0c614610730578063b071401b14610746578063b88d4fde14610766578063bd32fb6614610786578063c87b56dd146107a657600080fd5b806395d89b411161011357806395d89b411461068a5780639c70b5121461069f578063a035b1fe146106bf578063a0712d68146106d5578063a22cb465146106e8578063a45ba8e71461070857600080fd5b806370a08231146105e1578063715018a6146106015780637ec4a659146106165780638da5cb5b1461063657806391b7f5ed1461065457806394354fd01461067457600080fd5b80632f745c59116101fe5780634f6ccce7116101b75780634f6ccce7146105285780634fdd43cb1461054857806351830227146105685780635c975abb146105875780636352211e146105a15780636f8b44b0146105c157600080fd5b80632f745c591461044b578063388960a71461046b5780633c952764146104a857806342842e0e146104c8578063438b6300146104e85780634b3ea9341461051557600080fd5b806316c38b3c1161025057806316c38b3c1461038957806318160ddd146103a957806318cae269146103c85780632063064e146103f557806323b872dd1461040b5780632cdf09ba1461042b57600080fd5b806301ffc9a71461029857806306fdde03146102cd578063081812fc146102ef578063095ea7b3146103275780630c6beda21461034957806316ba10e014610369575b600080fd5b3480156102a457600080fd5b506102b86102b3366004612bd3565b61089a565b60405190151581526020015b60405180910390f35b3480156102d957600080fd5b506102e2610907565b6040516102c49190612de0565b3480156102fb57600080fd5b5061030f61030a366004612bba565b610999565b6040516001600160a01b0390911681526020016102c4565b34801561033357600080fd5b50610347610342366004612afa565b610a29565b005b34801561035557600080fd5b50610347610364366004612afa565b610b41565b34801561037557600080fd5b50610347610384366004612c0d565b610bd3565b34801561039557600080fd5b506103476103a4366004612b9f565b610c14565b3480156103b557600080fd5b506000545b6040519081526020016102c4565b3480156103d457600080fd5b506103ba6103e33660046129ca565b60116020526000908152604090205481565b34801561040157600080fd5b506103ba600e5481565b34801561041757600080fd5b50610347610426366004612a18565b610c51565b34801561043757600080fd5b5060125461030f906001600160a01b031681565b34801561045757600080fd5b506103ba610466366004612afa565b610c5c565b34801561047757600080fd5b506103476104863660046129ca565b601280546001600160a01b0319166001600160a01b0392909216919091179055565b3480156104b457600080fd5b506103476104c3366004612b9f565b610dca565b3480156104d457600080fd5b506103476104e3366004612a18565b610e10565b3480156104f457600080fd5b506105086105033660046129ca565b610e2b565b6040516102c49190612d9c565b610347610523366004612bba565b610f0b565b34801561053457600080fd5b506103ba610543366004612bba565b61115f565b34801561055457600080fd5b50610347610563366004612c0d565b6111c1565b34801561057457600080fd5b50600f546102b890610100900460ff1681565b34801561059357600080fd5b50600f546102b89060ff1681565b3480156105ad57600080fd5b5061030f6105bc366004612bba565b6111fe565b3480156105cd57600080fd5b506103476105dc366004612bba565b611210565b3480156105ed57600080fd5b506103ba6105fc3660046129ca565b61123f565b34801561060d57600080fd5b506103476112d0565b34801561062257600080fd5b50610347610631366004612c0d565b611306565b34801561064257600080fd5b506007546001600160a01b031661030f565b34801561066057600080fd5b5061034761066f366004612bba565b611343565b34801561068057600080fd5b506103ba600d5481565b34801561069657600080fd5b506102e2611372565b3480156106ab57600080fd5b50600f546102b89062010000900460ff1681565b3480156106cb57600080fd5b506103ba600b5481565b6103476106e3366004612bba565b611381565b3480156106f457600080fd5b50610347610703366004612ad0565b611482565b34801561071457600080fd5b506102e2611547565b61034761072b366004612b24565b6115d5565b34801561073c57600080fd5b506103ba60105481565b34801561075257600080fd5b50610347610761366004612bba565b6117d7565b34801561077257600080fd5b50610347610781366004612a54565b611806565b34801561079257600080fd5b506103476107a1366004612bba565b61183f565b3480156107b257600080fd5b506102e26107c1366004612bba565b61186e565b3480156107d257600080fd5b506103ba600c5481565b3480156107e857600080fd5b506103476107f7366004612b9f565b6119df565b34801561080857600080fd5b50610347610817366004612bba565b611a23565b34801561082857600080fd5b506102b86108373660046129e5565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b34801561087157600080fd5b506103476108803660046129ca565b611a52565b34801561089157600080fd5b50610347611aed565b60006001600160e01b031982166380ac58cd60e01b14806108cb57506001600160e01b03198216635b5e139f60e01b145b806108e657506001600160e01b0319821663780e9d6360e01b145b8061090157506301ffc9a760e01b6001600160e01b03198316145b92915050565b6060600180546109169061300b565b80601f01602080910402602001604051908101604052809291908181526020018280546109429061300b565b801561098f5780601f106109645761010080835404028352916020019161098f565b820191906000526020600020905b81548152906001019060200180831161097257829003601f168201915b5050505050905090565b60006109a6826000541190565b610a0d5760405162461bcd60e51b815260206004820152602d60248201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560448201526c3c34b9ba32b73a103a37b5b2b760991b60648201526084015b60405180910390fd5b506000908152600560205260409020546001600160a01b031690565b6000610a34826111fe565b9050806001600160a01b0316836001600160a01b03161415610aa35760405162461bcd60e51b815260206004820152602260248201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60448201526132b960f11b6064820152608401610a04565b336001600160a01b0382161480610abf5750610abf8133610837565b610b315760405162461bcd60e51b815260206004820152603960248201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656420666f7220616c6c000000000000006064820152608401610a04565b610b3c838383611d03565b505050565b80600081118015610b545750600d548111155b610b705760405162461bcd60e51b8152600401610a0490612df3565b600c5481600054610b819190612f66565b1115610b9f5760405162461bcd60e51b8152600401610a0490612e8d565b6007546001600160a01b03163314610bc95760405162461bcd60e51b8152600401610a0490612e21565b610b3c8383611d5f565b6007546001600160a01b03163314610bfd5760405162461bcd60e51b8152600401610a0490612e21565b8051610c10906009906020840190612898565b5050565b6007546001600160a01b03163314610c3e5760405162461bcd60e51b8152600401610a0490612e21565b600f805460ff1916911515919091179055565b610b3c838383611d79565b6000610c678361123f565b8210610cc05760405162461bcd60e51b815260206004820152602260248201527f455243373231413a206f776e657220696e646578206f7574206f6620626f756e604482015261647360f01b6064820152608401610a04565b600080549080805b83811015610d6a576000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff169183019190915215610d1b57805192505b876001600160a01b0316836001600160a01b03161415610d575786841415610d495750935061090192505050565b83610d5381613046565b9450505b5080610d6281613046565b915050610cc8565b5060405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060448201526d0deeedccae440c4f240d2dcc8caf60931b6064820152608401610a04565b6007546001600160a01b03163314610df45760405162461bcd60e51b8152600401610a0490612e21565b600f8054911515620100000262ff000019909216919091179055565b610b3c83838360405180602001604052806000815250611806565b60606000610e388361123f565b905060008167ffffffffffffffff811115610e5557610e556130b7565b604051908082528060200260200182016040528015610e7e578160200160208202803683370190505b5090506000805b8381108015610e965750600c548211155b15610f01576000610ea6836111fe565b9050866001600160a01b0316816001600160a01b03161415610eee5782848381518110610ed557610ed56130a1565b602090810291909101015281610eea81613046565b9250505b82610ef881613046565b93505050610e85565b5090949350505050565b80600081118015610f1e5750600d548111155b610f3a5760405162461bcd60e51b8152600401610a0490612df3565b600c5481600054610f4b9190612f66565b1115610f695760405162461bcd60e51b8152600401610a0490612e8d565b33600090815260116020526040902054600f5460ff1615610f9c5760405162461bcd60e51b8152600401610a0490612e56565b600f5462010000900460ff16610fe85760405162461bcd60e51b8152602060048201526011602482015270141c995cd85b19481a185cc8195b991959607a1b6044820152606401610a04565b6012546040516370a0823160e01b81523360048201526000916001600160a01b0316906370a082319060240160206040518083038186803b15801561102c57600080fd5b505afa158015611040573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906110649190612c56565b116110a85760405162461bcd60e51b81526020600482015260146024820152733cb7ba9030b932903737ba1030903437b63232b960611b6044820152606401610a04565b600e546110b58483612f66565b11156111035760405162461bcd60e51b815260206004820152601c60248201527f6d6178204e4654207065722061646472657373206578636565646564000000006044820152606401610a04565b82600b546111119190612f92565b3410156111305760405162461bcd60e51b8152600401610a0490612f0e565b336000908152601160205260408120805485929061114f908490612f66565b90915550610b3c90503384611d5f565b6000805482106111bd5760405162461bcd60e51b815260206004820152602360248201527f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f756044820152626e647360e81b6064820152608401610a04565b5090565b6007546001600160a01b031633146111eb5760405162461bcd60e51b8152600401610a0490612e21565b8051610c1090600a906020840190612898565b6000611209826120c0565b5192915050565b6007546001600160a01b0316331461123a5760405162461bcd60e51b8152600401610a0490612e21565b600c55565b60006001600160a01b0382166112ab5760405162461bcd60e51b815260206004820152602b60248201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b6064820152608401610a04565b506001600160a01b03166000908152600460205260409020546001600160801b031690565b6007546001600160a01b031633146112fa5760405162461bcd60e51b8152600401610a0490612e21565b611304600061226a565b565b6007546001600160a01b031633146113305760405162461bcd60e51b8152600401610a0490612e21565b8051610c10906008906020840190612898565b6007546001600160a01b0316331461136d5760405162461bcd60e51b8152600401610a0490612e21565b600b55565b6060600280546109169061300b565b806000811180156113945750600d548111155b6113b05760405162461bcd60e51b8152600401610a0490612df3565b600c54816000546113c19190612f66565b11156113df5760405162461bcd60e51b8152600401610a0490612e8d565b600f5460ff16156114025760405162461bcd60e51b8152600401610a0490612e56565b600f5462010000900460ff161561144b5760405162461bcd60e51b815260206004820152600d60248201526c283932b9b0b6329034b99037b760991b6044820152606401610a04565b81600b546114599190612f92565b3410156114785760405162461bcd60e51b8152600401610a0490612f0e565b610c103383611d5f565b6001600160a01b0382163314156114db5760405162461bcd60e51b815260206004820152601a60248201527f455243373231413a20617070726f766520746f2063616c6c65720000000000006044820152606401610a04565b3360008181526006602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b600a80546115549061300b565b80601f01602080910402602001604051908101604052809291908181526020018280546115809061300b565b80156115cd5780601f106115a2576101008083540402835291602001916115cd565b820191906000526020600020905b8154815290600101906020018083116115b057829003601f168201915b505050505081565b828260105461164c838380806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250506040516bffffffffffffffffffffffff193360601b1660208201528592506034019050604051602081830303815290604052805190602001206122bc565b6116985760405162461bcd60e51b815260206004820152601e60248201527f4164647265737320646f6573206e6f7420657869737420696e206c69737400006044820152606401610a04565b33600090815260116020526040902054600f5460ff16156116cb5760405162461bcd60e51b8152600401610a0490612e56565b600f5462010000900460ff166117175760405162461bcd60e51b8152602060048201526011602482015270141c995cd85b19481a185cc8195b991959607a1b6044820152606401610a04565b600e546117248683612f66565b11156117725760405162461bcd60e51b815260206004820152601c60248201527f6d6178204e4654207065722061646472657373206578636565646564000000006044820152606401610a04565b84600b546117809190612f92565b34101561179f5760405162461bcd60e51b8152600401610a0490612f0e565b33600090815260116020526040812080548792906117be908490612f66565b909155506117ce90503386611d5f565b50505050505050565b6007546001600160a01b031633146118015760405162461bcd60e51b8152600401610a0490612e21565b600d55565b611811848484611d79565b61181d848484846122d2565b6118395760405162461bcd60e51b8152600401610a0490612ebb565b50505050565b6007546001600160a01b031633146118695760405162461bcd60e51b8152600401610a0490612e21565b601055565b606061187b826000541190565b6118df5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610a04565b600f54610100900460ff1661198057600a80546118fb9061300b565b80601f01602080910402602001604051908101604052809291908181526020018280546119279061300b565b80156119745780601f1061194957610100808354040283529160200191611974565b820191906000526020600020905b81548152906001019060200180831161195757829003601f168201915b50505050509050919050565b600061198a6123e0565b905060008151116119aa57604051806020016040528060008152506119d8565b806119b4846123ef565b60096040516020016119c893929190612c9b565b6040516020818303038152906040525b9392505050565b6007546001600160a01b03163314611a095760405162461bcd60e51b8152600401610a0490612e21565b600f80549115156101000261ff0019909216919091179055565b6007546001600160a01b03163314611a4d5760405162461bcd60e51b8152600401610a0490612e21565b600e55565b6007546001600160a01b03163314611a7c5760405162461bcd60e51b8152600401610a0490612e21565b6001600160a01b038116611ae15760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610a04565b611aea8161226a565b50565b6007546001600160a01b03163314611b175760405162461bcd60e51b8152600401610a0490612e21565b60135447906001600160a01b03166108fc6064611b35846016612f92565b611b3f9190612f7e565b6040518115909202916000818181858888f19350505050611b5f57600080fd5b6014546001600160a01b03166108fc6064611b7b846016612f92565b611b859190612f7e565b6040518115909202916000818181858888f19350505050611ba557600080fd5b6015546001600160a01b03166108fc6064611bc1846016612f92565b611bcb9190612f7e565b6040518115909202916000818181858888f19350505050611beb57600080fd5b6016546001600160a01b03166108fc6064611c0784600b612f92565b611c119190612f7e565b6040518115909202916000818181858888f19350505050611c3157600080fd5b6017546001600160a01b03166108fc6064611c4d84600b612f92565b611c579190612f7e565b6040518115909202916000818181858888f19350505050611c7757600080fd5b6018546001600160a01b03166108fc6064611c93846007612f92565b611c9d9190612f7e565b6040518115909202916000818181858888f19350505050611cbd57600080fd5b6019546001600160a01b03166108fc6064611cd9846005612f92565b611ce39190612f7e565b6040518115909202916000818181858888f19350505050611aea57600080fd5b60008281526005602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b610c108282604051806020016040528060008152506124ed565b6000611d84826120c0565b80519091506000906001600160a01b0316336001600160a01b03161480611dbb575033611db084610999565b6001600160a01b0316145b80611dcd57508151611dcd9033610837565b905080611e375760405162461bcd60e51b815260206004820152603260248201527f455243373231413a207472616e736665722063616c6c6572206973206e6f74206044820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b6064820152608401610a04565b846001600160a01b031682600001516001600160a01b031614611eab5760405162461bcd60e51b815260206004820152602660248201527f455243373231413a207472616e736665722066726f6d20696e636f72726563746044820152651037bbb732b960d11b6064820152608401610a04565b6001600160a01b038416611f0f5760405162461bcd60e51b815260206004820152602560248201527f455243373231413a207472616e7366657220746f20746865207a65726f206164604482015264647265737360d81b6064820152608401610a04565b611f1f6000848460000151611d03565b6001600160a01b03858116600090815260046020908152604080832080546fffffffffffffffffffffffffffffffff198082166001600160801b03928316600019018316179092558986168086528386208054938416938316600190810190931693909317909255825180840184529182524267ffffffffffffffff9081168386019081528a8752600390955292852091518254945196166001600160e01b031990941693909317600160a01b95909216949094021790925590611fe4908590612f66565b6000818152600360205260409020549091506001600160a01b03166120765761200e816000541190565b156120765760408051808201825284516001600160a01b03908116825260208087015167ffffffffffffffff9081168285019081526000878152600390935294909120925183549451909116600160a01b026001600160e01b03199094169116179190911790555b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b505050505050565b60408051808201909152600080825260208201526120df826000541190565b61213e5760405162461bcd60e51b815260206004820152602a60248201527f455243373231413a206f776e657220717565727920666f72206e6f6e657869736044820152693a32b73a103a37b5b2b760b11b6064820152608401610a04565b60007f0000000000000000000000000000000000000000000000000000000000000032831061219f576121917f000000000000000000000000000000000000000000000000000000000000003284612fb1565b61219c906001612f66565b90505b825b818110612209576000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff1691830191909152156121f657949350505050565b508061220181612ff4565b9150506121a1565b5060405162461bcd60e51b815260206004820152602f60248201527f455243373231413a20756e61626c6520746f2064657465726d696e652074686560448201526e1037bbb732b91037b3103a37b5b2b760891b6064820152608401610a04565b600780546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6000826122c98584612824565b14949350505050565b60006001600160a01b0384163b156123d457604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290612316903390899088908890600401612d5f565b602060405180830381600087803b15801561233057600080fd5b505af1925050508015612360575060408051601f3d908101601f1916820190925261235d91810190612bf0565b60015b6123ba573d80801561238e576040519150601f19603f3d011682016040523d82523d6000602084013e612393565b606091505b5080516123b25760405162461bcd60e51b8152600401610a0490612ebb565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506123d8565b5060015b949350505050565b6060600880546109169061300b565b6060816124135750506040805180820190915260018152600360fc1b602082015290565b8160005b811561243d578061242781613046565b91506124369050600a83612f7e565b9150612417565b60008167ffffffffffffffff811115612458576124586130b7565b6040519080825280601f01601f191660200182016040528015612482576020820181803683370190505b5090505b84156123d857612497600183612fb1565b91506124a4600a86613061565b6124af906030612f66565b60f81b8183815181106124c4576124c46130a1565b60200101906001600160f81b031916908160001a9053506124e6600a86612f7e565b9450612486565b6000546001600160a01b0384166125505760405162461bcd60e51b815260206004820152602160248201527f455243373231413a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b6064820152608401610a04565b61255b816000541190565b156125a85760405162461bcd60e51b815260206004820152601d60248201527f455243373231413a20746f6b656e20616c7265616479206d696e7465640000006044820152606401610a04565b7f00000000000000000000000000000000000000000000000000000000000000328311156126235760405162461bcd60e51b815260206004820152602260248201527f455243373231413a207175616e7469747920746f206d696e7420746f6f2068696044820152610ced60f31b6064820152608401610a04565b6000831161267f5760405162461bcd60e51b815260206004820152602360248201527f455243373231413a207175616e74697479206d7573742062652067726561746560448201526207220360ec1b6064820152608401610a04565b6001600160a01b0384166000908152600460209081526040918290208251808401845290546001600160801b038082168352600160801b90910416918101919091528151808301909252805190919081906126db908790612f3b565b6001600160801b031681526020018583602001516126f99190612f3b565b6001600160801b039081169091526001600160a01b0380881660008181526004602090815260408083208751978301518716600160801b0297909616969096179094558451808601865291825267ffffffffffffffff4281168386019081528883526003909552948120915182549451909516600160a01b026001600160e01b031990941694909216939093179190911790915582905b858110156128195760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a46127dd60008884886122d2565b6127f95760405162461bcd60e51b8152600401610a0490612ebb565b8161280381613046565b925050808061281190613046565b915050612790565b5060008190556120b8565b600081815b8451811015612890576000858281518110612846576128466130a1565b6020026020010151905080831161286c576000838152602082905260409020925061287d565b600081815260208490526040902092505b508061288881613046565b915050612829565b509392505050565b8280546128a49061300b565b90600052602060002090601f0160209004810192826128c6576000855561290c565b82601f106128df57805160ff191683800117855561290c565b8280016001018555821561290c579182015b8281111561290c5782518255916020019190600101906128f1565b506111bd9291505b808211156111bd5760008155600101612914565b600067ffffffffffffffff80841115612943576129436130b7565b604051601f8501601f19908116603f0116810190828211818310171561296b5761296b6130b7565b8160405280935085815286868601111561298457600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b03811681146129b557600080fd5b919050565b803580151581146129b557600080fd5b6000602082840312156129dc57600080fd5b6119d88261299e565b600080604083850312156129f857600080fd5b612a018361299e565b9150612a0f6020840161299e565b90509250929050565b600080600060608486031215612a2d57600080fd5b612a368461299e565b9250612a446020850161299e565b9150604084013590509250925092565b60008060008060808587031215612a6a57600080fd5b612a738561299e565b9350612a816020860161299e565b925060408501359150606085013567ffffffffffffffff811115612aa457600080fd5b8501601f81018713612ab557600080fd5b612ac487823560208401612928565b91505092959194509250565b60008060408385031215612ae357600080fd5b612aec8361299e565b9150612a0f602084016129ba565b60008060408385031215612b0d57600080fd5b612b168361299e565b946020939093013593505050565b600080600060408486031215612b3957600080fd5b833567ffffffffffffffff80821115612b5157600080fd5b818601915086601f830112612b6557600080fd5b813581811115612b7457600080fd5b8760208260051b8501011115612b8957600080fd5b6020928301989097509590910135949350505050565b600060208284031215612bb157600080fd5b6119d8826129ba565b600060208284031215612bcc57600080fd5b5035919050565b600060208284031215612be557600080fd5b81356119d8816130cd565b600060208284031215612c0257600080fd5b81516119d8816130cd565b600060208284031215612c1f57600080fd5b813567ffffffffffffffff811115612c3657600080fd5b8201601f81018413612c4757600080fd5b6123d884823560208401612928565b600060208284031215612c6857600080fd5b5051919050565b60008151808452612c87816020860160208601612fc8565b601f01601f19169290920160200192915050565b600084516020612cae8285838a01612fc8565b855191840191612cc18184848a01612fc8565b8554920191600090600181811c9080831680612cde57607f831692505b858310811415612cfc57634e487b7160e01b85526022600452602485fd5b808015612d105760018114612d2157612d4e565b60ff19851688528388019550612d4e565b60008b81526020902060005b85811015612d465781548a820152908401908801612d2d565b505083880195505b50939b9a5050505050505050505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612d9290830184612c6f565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b81811015612dd457835183529284019291840191600101612db8565b50909695505050505050565b6020815260006119d86020830184612c6f565b602080825260149082015273496e76616c6964206d696e7420616d6f756e742160601b604082015260600190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526017908201527f54686520636f6e74726163742069732070617573656421000000000000000000604082015260600190565b6020808252601490820152734d617820737570706c792065786365656465642160601b604082015260600190565b60208082526033908201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260408201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b606082015260800190565b602080825260139082015272496e73756666696369656e742066756e64732160681b604082015260600190565b60006001600160801b03808316818516808303821115612f5d57612f5d613075565b01949350505050565b60008219821115612f7957612f79613075565b500190565b600082612f8d57612f8d61308b565b500490565b6000816000190483118215151615612fac57612fac613075565b500290565b600082821015612fc357612fc3613075565b500390565b60005b83811015612fe3578181015183820152602001612fcb565b838111156118395750506000910152565b60008161300357613003613075565b506000190190565b600181811c9082168061301f57607f821691505b6020821081141561304057634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561305a5761305a613075565b5060010190565b6000826130705761307061308b565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114611aea57600080fdfea2646970667358221220c98770d18da9888c2c3365994bd053756885b0e495c86ac5c4500bf8872286bd64736f6c63430008070033

Deployed Bytecode Sourcemap

42867:6662:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30480:372;;;;;;;;;;-1:-1:-1;30480:372:0;;;;;:::i;:::-;;:::i;:::-;;;8899:14:1;;8892:22;8874:41;;8862:2;8847:18;30480:372:0;;;;;;;;32285:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;33846:214::-;;;;;;;;;;-1:-1:-1;33846:214:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;7560:32:1;;;7542:51;;7530:2;7515:18;33846:214:0;7396:203:1;33367:413:0;;;;;;;;;;-1:-1:-1;33367:413:0;;;;;:::i;:::-;;:::i;:::-;;45681:141;;;;;;;;;;-1:-1:-1;45681:141:0;;;;;:::i;:::-;;:::i;47817:100::-;;;;;;;;;;-1:-1:-1;47817:100:0;;;;;:::i;:::-;;:::i;47923:77::-;;;;;;;;;;-1:-1:-1;47923:77:0;;;;;:::i;:::-;;:::i;28921:100::-;;;;;;;;;;-1:-1:-1;28974:7:0;29001:12;28921:100;;;9072:25:1;;;9060:2;9045:18;28921:100:0;8926:177:1;43375:55:0;;;;;;;;;;-1:-1:-1;43375:55:0;;;;;:::i;:::-;;;;;;;;;;;;;;43180:40;;;;;;;;;;;;;;;;34722:162;;;;;;;;;;-1:-1:-1;34722:162:0;;;;;:::i;:::-;;:::i;43437:22::-;;;;;;;;;;-1:-1:-1;43437:22:0;;;;-1:-1:-1;;;;;43437:22:0;;;29585:823;;;;;;;;;;-1:-1:-1;29585:823:0;;;;;:::i;:::-;;:::i;47368:85::-;;;;;;;;;;-1:-1:-1;47368:85:0;;;;;:::i;:::-;47420:7;:27;;-1:-1:-1;;;;;;47420:27:0;-1:-1:-1;;;;;47420:27:0;;;;;;;;;;47368:85;47181:95;;;;;;;;;;-1:-1:-1;47181:95:0;;;;;:::i;:::-;;:::i;34955:177::-;;;;;;;;;;-1:-1:-1;34955:177:0;;;;;:::i;:::-;;:::i;45831:635::-;;;;;;;;;;-1:-1:-1;45831:635:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;44466:600::-;;;;;;:::i;:::-;;:::i;29098:187::-;;;;;;;;;;-1:-1:-1;29098:187:0;;;;;:::i;:::-;;:::i;47459:132::-;;;;;;;;;;-1:-1:-1;47459:132:0;;;;;:::i;:::-;;:::i;43262:27::-;;;;;;;;;;-1:-1:-1;43262:27:0;;;;;;;;;;;43232:25;;;;;;;;;;-1:-1:-1;43232:25:0;;;;;;;;32094:124;;;;;;;;;;-1:-1:-1;32094:124:0;;;;;:::i;:::-;;:::i;48386:96::-;;;;;;;;;;-1:-1:-1;48386:96:0;;;;;:::i;:::-;;:::i;30916:221::-;;;;;;;;;;-1:-1:-1;30916:221:0;;;;;:::i;:::-;;:::i;5856:103::-;;;;;;;;;;;;;:::i;47711:100::-;;;;;;;;;;-1:-1:-1;47711:100:0;;;;;:::i;:::-;;:::i;5205:87::-;;;;;;;;;;-1:-1:-1;5278:6:0;;-1:-1:-1;;;;;5278:6:0;5205:87;;47282:80;;;;;;;;;;-1:-1:-1;47282:80:0;;;;;:::i;:::-;;:::i;43136:38::-;;;;;;;;;;;;;;;;32454:104;;;;;;;;;;;;;:::i;43294:35::-;;;;;;;;;;-1:-1:-1;43294:35:0;;;;;;;;;;;43058;;;;;;;;;;;;;;;;44159:301;;;;;;:::i;:::-;;:::i;34132:288::-;;;;;;;;;;-1:-1:-1;34132:288:0;;;;;:::i;:::-;;:::i;43018:31::-;;;;;;;;;;;;;:::i;45072:601::-;;;;;;:::i;:::-;;:::i;43336:34::-;;;;;;;;;;;;;;;;48246:132;;;;;;;;;;-1:-1:-1;48246:132:0;;;;;:::i;:::-;;:::i;35203:355::-;;;;;;;;;;-1:-1:-1;35203:355:0;;;;;:::i;:::-;;:::i;47059:116::-;;;;;;;;;;-1:-1:-1;47059:116:0;;;;;:::i;:::-;;:::i;46472:494::-;;;;;;;;;;-1:-1:-1;46472:494:0;;;;;:::i;:::-;;:::i;43099:31::-;;;;;;;;;;;;;;;;46972:81;;;;;;;;;;-1:-1:-1;46972:81:0;;;;;:::i;:::-;;:::i;47597:108::-;;;;;;;;;;-1:-1:-1;47597:108:0;;;;;:::i;:::-;;:::i;34491:164::-;;;;;;;;;;-1:-1:-1;34491:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;34612:25:0;;;34588:4;34612:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;34491:164;6114:201;;;;;;;;;;-1:-1:-1;6114:201:0;;;;;:::i;:::-;;:::i;49013:513::-;;;;;;;;;;;;;:::i;30480:372::-;30582:4;-1:-1:-1;;;;;;30619:40:0;;-1:-1:-1;;;30619:40:0;;:105;;-1:-1:-1;;;;;;;30676:48:0;;-1:-1:-1;;;30676:48:0;30619:105;:172;;;-1:-1:-1;;;;;;;30741:50:0;;-1:-1:-1;;;30741:50:0;30619:172;:225;;;-1:-1:-1;;;;;;;;;;17746:40:0;;;30808:36;30599:245;30480:372;-1:-1:-1;;30480:372:0:o;32285:100::-;32339:13;32372:5;32365:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32285:100;:::o;33846:214::-;33914:7;33942:16;33950:7;35870:4;35904:12;-1:-1:-1;35894:22:0;35813:111;33942:16;33934:74;;;;-1:-1:-1;;;33934:74:0;;20206:2:1;33934:74:0;;;20188:21:1;20245:2;20225:18;;;20218:30;20284:34;20264:18;;;20257:62;-1:-1:-1;;;20335:18:1;;;20328:43;20388:19;;33934:74:0;;;;;;;;;-1:-1:-1;34028:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;34028:24:0;;33846:214::o;33367:413::-;33440:13;33456:24;33472:7;33456:15;:24::i;:::-;33440:40;;33505:5;-1:-1:-1;;;;;33499:11:0;:2;-1:-1:-1;;;;;33499:11:0;;;33491:58;;;;-1:-1:-1;;;33491:58:0;;17039:2:1;33491:58:0;;;17021:21:1;17078:2;17058:18;;;17051:30;17117:34;17097:18;;;17090:62;-1:-1:-1;;;17168:18:1;;;17161:32;17210:19;;33491:58:0;16837:398:1;33491:58:0;4009:10;-1:-1:-1;;;;;33584:21:0;;;;:62;;-1:-1:-1;33609:37:0;33626:5;4009:10;34491:164;:::i;33609:37::-;33562:169;;;;-1:-1:-1;;;33562:169:0;;13200:2:1;33562:169:0;;;13182:21:1;13239:2;13219:18;;;13212:30;13278:34;13258:18;;;13251:62;13349:27;13329:18;;;13322:55;13394:19;;33562:169:0;12998:421:1;33562:169:0;33744:28;33753:2;33757:7;33766:5;33744:8;:28::i;:::-;33429:351;33367:413;;:::o;45681:141::-;45759:11;43995:1;43981:11;:15;:52;;;;;44015:18;;44000:11;:33;;43981:52;43973:85;;;;-1:-1:-1;;;43973:85:0;;;;;;;:::i;:::-;44103:9;;44088:11;44073:12;;:26;;;;:::i;:::-;:39;;44065:72;;;;-1:-1:-1;;;44065:72:0;;;;;;;:::i;:::-;5278:6;;-1:-1:-1;;;;;5278:6:0;4009:10;5425:23:::1;5417:68;;;;-1:-1:-1::0;;;5417:68:0::1;;;;;;;:::i;:::-;45789:27:::2;45799:3;45804:11;45789:9;:27::i;47817:100::-:0;5278:6;;-1:-1:-1;;;;;5278:6:0;4009:10;5425:23;5417:68;;;;-1:-1:-1;;;5417:68:0;;;;;;;:::i;:::-;47889:22;;::::1;::::0;:9:::1;::::0;:22:::1;::::0;::::1;::::0;::::1;:::i;:::-;;47817:100:::0;:::o;47923:77::-;5278:6;;-1:-1:-1;;;;;5278:6:0;4009:10;5425:23;5417:68;;;;-1:-1:-1;;;5417:68:0;;;;;;;:::i;:::-;47979:6:::1;:15:::0;;-1:-1:-1;;47979:15:0::1;::::0;::::1;;::::0;;;::::1;::::0;;47923:77::o;34722:162::-;34848:28;34858:4;34864:2;34868:7;34848:9;:28::i;29585:823::-;29674:7;29710:16;29720:5;29710:9;:16::i;:::-;29702:5;:24;29694:71;;;;-1:-1:-1;;;29694:71:0;;10104:2:1;29694:71:0;;;10086:21:1;10143:2;10123:18;;;10116:30;10182:34;10162:18;;;10155:62;-1:-1:-1;;;10233:18:1;;;10226:32;10275:19;;29694:71:0;9902:398:1;29694:71:0;29776:22;29001:12;;;29776:22;;29908:426;29932:14;29928:1;:18;29908:426;;;29968:31;30002:14;;;:11;:14;;;;;;;;;29968:48;;;;;;;;;-1:-1:-1;;;;;29968:48:0;;;;;-1:-1:-1;;;29968:48:0;;;;;;;;;;;;30035:28;30031:103;;30104:14;;;-1:-1:-1;30031:103:0;30173:5;-1:-1:-1;;;;;30152:26:0;:17;-1:-1:-1;;;;;30152:26:0;;30148:175;;;30218:5;30203:11;:20;30199:77;;;-1:-1:-1;30255:1:0;-1:-1:-1;30248:8:0;;-1:-1:-1;;;30248:8:0;30199:77;30294:13;;;;:::i;:::-;;;;30148:175;-1:-1:-1;29948:3:0;;;;:::i;:::-;;;;29908:426;;;-1:-1:-1;30344:56:0;;-1:-1:-1;;;30344:56:0;;19375:2:1;30344:56:0;;;19357:21:1;19414:2;19394:18;;;19387:30;19453:34;19433:18;;;19426:62;-1:-1:-1;;;19504:18:1;;;19497:44;19558:19;;30344:56:0;19173:410:1;47181:95:0;5278:6;;-1:-1:-1;;;;;5278:6:0;4009:10;5425:23;5417:68;;;;-1:-1:-1;;;5417:68:0;;;;;;;:::i;:::-;47246:15:::1;:24:::0;;;::::1;;::::0;::::1;-1:-1:-1::0;;47246:24:0;;::::1;::::0;;;::::1;::::0;;47181:95::o;34955:177::-;35085:39;35102:4;35108:2;35112:7;35085:39;;;;;;;;;;;;:16;:39::i;45831:635::-;45906:16;45934:23;45960:17;45970:6;45960:9;:17::i;:::-;45934:43;;45984:30;46031:15;46017:30;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;46017:30:0;;45984:63;;46054:22;46087:23;46123:309;46148:15;46130;:33;:64;;;;;46185:9;;46167:14;:27;;46130:64;46123:309;;;46205:25;46233:23;46241:14;46233:7;:23::i;:::-;46205:51;;46292:6;-1:-1:-1;;;;;46271:27:0;:17;-1:-1:-1;;;;;46271:27:0;;46267:131;;;46344:14;46311:13;46325:15;46311:30;;;;;;;;:::i;:::-;;;;;;;;;;:47;46371:17;;;;:::i;:::-;;;;46267:131;46408:16;;;;:::i;:::-;;;;46196:236;46123:309;;;-1:-1:-1;46447:13:0;;45831:635;-1:-1:-1;;;;45831:635:0:o;44466:600::-;44537:11;43995:1;43981:11;:15;:52;;;;;44015:18;;44000:11;:33;;43981:52;43973:85;;;;-1:-1:-1;;;43973:85:0;;;;;;;:::i;:::-;44103:9;;44088:11;44073:12;;:26;;;;:::i;:::-;:39;;44065:72;;;;-1:-1:-1;;;44065:72:0;;;;;;;:::i;:::-;44605:10:::1;44557:24;44584:32:::0;;;:20:::1;:32;::::0;;;;;44632:6:::1;::::0;::::1;;44631:7;44623:43;;;;-1:-1:-1::0;;;44623:43:0::1;;;;;;;:::i;:::-;44681:15;::::0;;;::::1;;;44673:45;;;::::0;-1:-1:-1;;;44673:45:0;;9758:2:1;44673:45:0::1;::::0;::::1;9740:21:1::0;9797:2;9777:18;;;9770:30;-1:-1:-1;;;9816:18:1;;;9809:47;9873:18;;44673:45:0::1;9556:341:1::0;44673:45:0::1;44733:7;::::0;:29:::1;::::0;-1:-1:-1;;;44733:29:0;;44751:10:::1;44733:29;::::0;::::1;7542:51:1::0;44765:1:0::1;::::0;-1:-1:-1;;;;;44733:7:0::1;::::0;:17:::1;::::0;7515:18:1;;44733:29:0::1;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:33;44725:67;;;::::0;-1:-1:-1;;;44725:67:0;;14787:2:1;44725:67:0::1;::::0;::::1;14769:21:1::0;14826:2;14806:18;;;14799:30;-1:-1:-1;;;14845:18:1;;;14838:50;14905:18;;44725:67:0::1;14585:344:1::0;44725:67:0::1;44841:20;::::0;44807:30:::1;44826:11:::0;44807:16;:30:::1;:::i;:::-;:54;;44799:95;;;::::0;-1:-1:-1;;;44799:95:0;;11674:2:1;44799:95:0::1;::::0;::::1;11656:21:1::0;11713:2;11693:18;;;11686:30;11752;11732:18;;;11725:58;11800:18;;44799:95:0::1;11472:352:1::0;44799:95:0::1;44930:11;44922:5;;:19;;;;:::i;:::-;44909:9;:32;;44901:64;;;;-1:-1:-1::0;;;44901:64:0::1;;;;;;;:::i;:::-;44995:10;44974:32;::::0;;;:20:::1;:32;::::0;;;;:45;;45008:11;;44974:32;:45:::1;::::0;45008:11;;44974:45:::1;:::i;:::-;::::0;;;-1:-1:-1;45026:34:0::1;::::0;-1:-1:-1;45036:10:0::1;45048:11:::0;45026:9:::1;:34::i;29098:187::-:0;29165:7;29001:12;;29193:5;:21;29185:69;;;;-1:-1:-1;;;29185:69:0;;12031:2:1;29185:69:0;;;12013:21:1;12070:2;12050:18;;;12043:30;12109:34;12089:18;;;12082:62;-1:-1:-1;;;12160:18:1;;;12153:33;12203:19;;29185:69:0;11829:399:1;29185:69:0;-1:-1:-1;29272:5:0;29098:187::o;47459:132::-;5278:6;;-1:-1:-1;;;;;5278:6:0;4009:10;5425:23;5417:68;;;;-1:-1:-1;;;5417:68:0;;;;;;;:::i;:::-;47547:38;;::::1;::::0;:17:::1;::::0;:38:::1;::::0;::::1;::::0;::::1;:::i;32094:124::-:0;32158:7;32185:20;32197:7;32185:11;:20::i;:::-;:25;;32094:124;-1:-1:-1;;32094:124:0:o;48386:96::-;5278:6;;-1:-1:-1;;;;;5278:6:0;4009:10;5425:23;5417:68;;;;-1:-1:-1;;;5417:68:0;;;;;;;:::i;:::-;48452:9:::1;:22:::0;48386:96::o;30916:221::-;30980:7;-1:-1:-1;;;;;31008:19:0;;31000:75;;;;-1:-1:-1;;;31000:75:0;;13968:2:1;31000:75:0;;;13950:21:1;14007:2;13987:18;;;13980:30;14046:34;14026:18;;;14019:62;-1:-1:-1;;;14097:18:1;;;14090:41;14148:19;;31000:75:0;13766:407:1;31000:75:0;-1:-1:-1;;;;;;31101:19:0;;;;;:12;:19;;;;;:27;-1:-1:-1;;;;;31101:27:0;;30916:221::o;5856:103::-;5278:6;;-1:-1:-1;;;;;5278:6:0;4009:10;5425:23;5417:68;;;;-1:-1:-1;;;5417:68:0;;;;;;;:::i;:::-;5921:30:::1;5948:1;5921:18;:30::i;:::-;5856:103::o:0;47711:100::-;5278:6;;-1:-1:-1;;;;;5278:6:0;4009:10;5425:23;5417:68;;;;-1:-1:-1;;;5417:68:0;;;;;;;:::i;:::-;47783:22;;::::1;::::0;:9:::1;::::0;:22:::1;::::0;::::1;::::0;::::1;:::i;47282:80::-:0;5278:6;;-1:-1:-1;;;;;5278:6:0;4009:10;5425:23;5417:68;;;;-1:-1:-1;;;5417:68:0;;;;;;;:::i;:::-;47340:5:::1;:14:::0;47282:80::o;32454:104::-;32510:13;32543:7;32536:14;;;;;:::i;44159:301::-;44224:11;43995:1;43981:11;:15;:52;;;;;44015:18;;44000:11;:33;;43981:52;43973:85;;;;-1:-1:-1;;;43973:85:0;;;;;;;:::i;:::-;44103:9;;44088:11;44073:12;;:26;;;;:::i;:::-;:39;;44065:72;;;;-1:-1:-1;;;44065:72:0;;;;;;;:::i;:::-;44257:6:::1;::::0;::::1;;44256:7;44248:43;;;;-1:-1:-1::0;;;44248:43:0::1;;;;;;;:::i;:::-;44307:15;::::0;;;::::1;;;44306:16;44298:42;;;::::0;-1:-1:-1;;;44298:42:0;;13626:2:1;44298:42:0::1;::::0;::::1;13608:21:1::0;13665:2;13645:18;;;13638:30;-1:-1:-1;;;13684:18:1;;;13677:43;13737:18;;44298:42:0::1;13424:337:1::0;44298:42:0::1;44376:11;44368:5;;:19;;;;:::i;:::-;44355:9;:32;;44347:64;;;;-1:-1:-1::0;;;44347:64:0::1;;;;;;;:::i;:::-;44420:34;44430:10;44442:11;44420:9;:34::i;34132:288::-:0;-1:-1:-1;;;;;34227:24:0;;4009:10;34227:24;;34219:63;;;;-1:-1:-1;;;34219:63:0;;16265:2:1;34219:63:0;;;16247:21:1;16304:2;16284:18;;;16277:30;16343:28;16323:18;;;16316:56;16389:18;;34219:63:0;16063:350:1;34219:63:0;4009:10;34295:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;34295:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;34295:53:0;;;;;;;;;;34364:48;;8874:41:1;;;34295:42:0;;4009:10;34364:48;;8847:18:1;34364:48:0;;;;;;;34132:288;;:::o;43018:31::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;45072:601::-;45182:11;;45195:19;;43723:128;43756:11;;43723:128;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;43811:28:0;;-1:-1:-1;;43828:10:0;5779:2:1;5775:15;5771:53;43811:28:0;;;5759:66:1;43782:4:0;;-1:-1:-1;5841:12:1;;;-1:-1:-1;43811:28:0;;;;;;;;;;;;43801:39;;;;;;43723:18;:128::i;:::-;43705:196;;;;-1:-1:-1;;;43705:196:0;;12841:2:1;43705:196:0;;;12823:21:1;12880:2;12860:18;;;12853:30;12919:32;12899:18;;;12892:60;12969:18;;43705:196:0;12639:354:1;43705:196:0;45270:10:::1;45222:24;45249:32:::0;;;:20:::1;:32;::::0;;;;;45303:6:::1;::::0;::::1;;45302:7;45294:43;;;;-1:-1:-1::0;;;45294:43:0::1;;;;;;;:::i;:::-;45352:15;::::0;;;::::1;;;45344:45;;;::::0;-1:-1:-1;;;45344:45:0;;9758:2:1;45344:45:0::1;::::0;::::1;9740:21:1::0;9797:2;9777:18;;;9770:30;-1:-1:-1;;;9816:18:1;;;9809:47;9873:18;;45344:45:0::1;9556:341:1::0;45344:45:0::1;45438:20;::::0;45404:30:::1;45423:11:::0;45404:16;:30:::1;:::i;:::-;:54;;45396:95;;;::::0;-1:-1:-1;;;45396:95:0;;11674:2:1;45396:95:0::1;::::0;::::1;11656:21:1::0;11713:2;11693:18;;;11686:30;11752;11732:18;;;11725:58;11800:18;;45396:95:0::1;11472:352:1::0;45396:95:0::1;45527:11;45519:5;;:19;;;;:::i;:::-;45506:9;:32;;45498:64;;;;-1:-1:-1::0;;;45498:64:0::1;;;;;;;:::i;:::-;45596:10;45575:32;::::0;;;:20:::1;:32;::::0;;;;:45;;45609:11;;45575:32;:45:::1;::::0;45609:11;;45575:45:::1;:::i;:::-;::::0;;;-1:-1:-1;45633:34:0::1;::::0;-1:-1:-1;45643:10:0::1;45655:11:::0;45633:9:::1;:34::i;:::-;45215:458;45072:601:::0;;;;;;:::o;48246:132::-;5278:6;;-1:-1:-1;;;;;5278:6:0;4009:10;5425:23;5417:68;;;;-1:-1:-1;;;5417:68:0;;;;;;;:::i;:::-;48330:18:::1;:40:::0;48246:132::o;35203:355::-;35362:28;35372:4;35378:2;35382:7;35362:9;:28::i;:::-;35423:48;35446:4;35452:2;35456:7;35465:5;35423:22;:48::i;:::-;35401:149;;;;-1:-1:-1;;;35401:149:0;;;;;;;:::i;:::-;35203:355;;;;:::o;47059:116::-;5278:6;;-1:-1:-1;;;;;5278:6:0;4009:10;5425:23;5417:68;;;;-1:-1:-1;;;5417:68:0;;;;;;;:::i;:::-;47137:19:::1;:32:::0;47059:116::o;46472:494::-;46571:13;46612:17;46620:8;35870:4;35904:12;-1:-1:-1;35894:22:0;35813:111;46612:17;46596:98;;;;-1:-1:-1;;;46596:98:0;;15849:2:1;46596:98:0;;;15831:21:1;15888:2;15868:18;;;15861:30;15927:34;15907:18;;;15900:62;-1:-1:-1;;;15978:18:1;;;15971:45;16033:19;;46596:98:0;15647:411:1;46596:98:0;46707:8;;;;;;;46703:64;;46742:17;46735:24;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46472:494;;;:::o;46703:64::-;46775:28;46806:10;:8;:10::i;:::-;46775:41;;46861:1;46836:14;46830:28;:32;:130;;;;;;;;;;;;;;;;;46898:14;46914:19;:8;:17;:19::i;:::-;46935:9;46881:64;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;46830:130;46823:137;46472:494;-1:-1:-1;;;46472:494:0:o;46972:81::-;5278:6;;-1:-1:-1;;;;;5278:6:0;4009:10;5425:23;5417:68;;;;-1:-1:-1;;;5417:68:0;;;;;;;:::i;:::-;47030:8:::1;:17:::0;;;::::1;;;;-1:-1:-1::0;;47030:17:0;;::::1;::::0;;;::::1;::::0;;46972:81::o;47597:108::-;5278:6;;-1:-1:-1;;;;;5278:6:0;4009:10;5425:23;5417:68;;;;-1:-1:-1;;;5417:68:0;;;;;;;:::i;:::-;47670:20:::1;:29:::0;47597:108::o;6114:201::-;5278:6;;-1:-1:-1;;;;;5278:6:0;4009:10;5425:23;5417:68;;;;-1:-1:-1;;;5417:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;6203:22:0;::::1;6195:73;;;::::0;-1:-1:-1;;;6195:73:0;;10507:2:1;6195:73:0::1;::::0;::::1;10489:21:1::0;10546:2;10526:18;;;10519:30;10585:34;10565:18;;;10558:62;-1:-1:-1;;;10636:18:1;;;10629:36;10682:19;;6195:73:0::1;10305:402:1::0;6195:73:0::1;6279:28;6298:8;6279:18;:28::i;:::-;6114:201:::0;:::o;49013:513::-;5278:6;;-1:-1:-1;;;;;5278:6:0;4009:10;5425:23;5417:68;;;;-1:-1:-1;;;5417:68:0;;;;;;;:::i;:::-;49143:2:::1;::::0;49083:21:::1;::::0;-1:-1:-1;;;;;49143:2:0::1;49135:38;49168:3;49152:13;49083:21:::0;49163:2:::1;49152:13;:::i;:::-;:19;;;;:::i;:::-;49135:38;::::0;;::::1;::::0;;::::1;::::0;::::1;::::0;;;;;;::::1;;;;;;49127:47;;;::::0;::::1;;49201:2;::::0;-1:-1:-1;;;;;49201:2:0::1;49193:38;49226:3;49210:13;:8:::0;49221:2:::1;49210:13;:::i;:::-;:19;;;;:::i;:::-;49193:38;::::0;;::::1;::::0;;::::1;::::0;::::1;::::0;;;;;;::::1;;;;;;49185:47;;;::::0;::::1;;49259:2;::::0;-1:-1:-1;;;;;49259:2:0::1;49251:38;49284:3;49268:13;:8:::0;49279:2:::1;49268:13;:::i;:::-;:19;;;;:::i;:::-;49251:38;::::0;;::::1;::::0;;::::1;::::0;::::1;::::0;;;;;;::::1;;;;;;49243:47;;;::::0;::::1;;49317:2;::::0;-1:-1:-1;;;;;49317:2:0::1;49309:38;49342:3;49326:13;:8:::0;49337:2:::1;49326:13;:::i;:::-;:19;;;;:::i;:::-;49309:38;::::0;;::::1;::::0;;::::1;::::0;::::1;::::0;;;;;;::::1;;;;;;49301:47;;;::::0;::::1;;49375:2;::::0;-1:-1:-1;;;;;49375:2:0::1;49367:38;49400:3;49384:13;:8:::0;49395:2:::1;49384:13;:::i;:::-;:19;;;;:::i;:::-;49367:38;::::0;;::::1;::::0;;::::1;::::0;::::1;::::0;;;;;;::::1;;;;;;49359:47;;;::::0;::::1;;49433:2;::::0;-1:-1:-1;;;;;49433:2:0::1;49425:37;49457:3;49442:12;:8:::0;49453:1:::1;49442:12;:::i;:::-;:18;;;;:::i;:::-;49425:37;::::0;;::::1;::::0;;::::1;::::0;::::1;::::0;;;;;;::::1;;;;;;49417:46;;;::::0;::::1;;49490:2;::::0;-1:-1:-1;;;;;49490:2:0::1;49482:37;49514:3;49499:12;:8:::0;49510:1:::1;49499:12;:::i;:::-;:18;;;;:::i;:::-;49482:37;::::0;;::::1;::::0;;::::1;::::0;::::1;::::0;;;;;;::::1;;;;;;49474:46;;;::::0;::::1;39939:196:::0;40054:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;40054:29:0;-1:-1:-1;;;;;40054:29:0;;;;;;;;;40099:28;;40054:24;;40099:28;;;;;;;39939:196;;;:::o;35932:104::-;36001:27;36011:2;36015:8;36001:27;;;;;;;;;;;;:9;:27::i;38038:1783::-;38153:35;38191:20;38203:7;38191:11;:20::i;:::-;38266:18;;38153:58;;-1:-1:-1;38224:22:0;;-1:-1:-1;;;;;38250:34:0;4009:10;-1:-1:-1;;;;;38250:34:0;;:87;;;-1:-1:-1;4009:10:0;38301:20;38313:7;38301:11;:20::i;:::-;-1:-1:-1;;;;;38301:36:0;;38250:87;:154;;;-1:-1:-1;38371:18:0;;38354:50;;4009:10;34491:164;:::i;38354:50::-;38224:181;;38426:17;38418:80;;;;-1:-1:-1;;;38418:80:0;;16620:2:1;38418:80:0;;;16602:21:1;16659:2;16639:18;;;16632:30;16698:34;16678:18;;;16671:62;-1:-1:-1;;;16749:18:1;;;16742:48;16807:19;;38418:80:0;16418:414:1;38418:80:0;38541:4;-1:-1:-1;;;;;38519:26:0;:13;:18;;;-1:-1:-1;;;;;38519:26:0;;38511:77;;;;-1:-1:-1;;;38511:77:0;;14380:2:1;38511:77:0;;;14362:21:1;14419:2;14399:18;;;14392:30;14458:34;14438:18;;;14431:62;-1:-1:-1;;;14509:18:1;;;14502:36;14555:19;;38511:77:0;14178:402:1;38511:77:0;-1:-1:-1;;;;;38607:16:0;;38599:66;;;;-1:-1:-1;;;38599:66:0;;12435:2:1;38599:66:0;;;12417:21:1;12474:2;12454:18;;;12447:30;12513:34;12493:18;;;12486:62;-1:-1:-1;;;12564:18:1;;;12557:35;12609:19;;38599:66:0;12233:401:1;38599:66:0;38786:49;38803:1;38807:7;38816:13;:18;;;38786:8;:49::i;:::-;-1:-1:-1;;;;;39040:18:0;;;;;;;:12;:18;;;;;;;;:31;;-1:-1:-1;;39040:31:0;;;-1:-1:-1;;;;;39040:31:0;;;-1:-1:-1;;39040:31:0;;;;;;;39086:16;;;;;;;;;:29;;;;;;;;-1:-1:-1;39086:29:0;;;;;;;;;;;;;39162:43;;;;;;;;;;39188:15;39162:43;;;;;;;;;;39139:20;;;:11;:20;;;;;;:66;;;;;;;;-1:-1:-1;;;;;;39139:66:0;;;;;;;-1:-1:-1;;;39139:66:0;;;;;;;;;;;;39040:18;39467:11;;39139:20;;39467:11;:::i;:::-;39534:1;39493:24;;;:11;:24;;;;;:29;39445:33;;-1:-1:-1;;;;;;39493:29:0;39489:227;;39557:20;39565:11;35870:4;35904:12;-1:-1:-1;35894:22:0;35813:111;39557:20;39553:152;;;39625:64;;;;;;;;39640:18;;-1:-1:-1;;;;;39625:64:0;;;;;;39660:28;;;;39625:64;;;;;;;;;;-1:-1:-1;39598:24:0;;;:11;:24;;;;;;;:91;;;;;;;;;-1:-1:-1;;;39598:91:0;-1:-1:-1;;;;;;39598:91:0;;;;;;;;;;;;39553:152;39752:7;39748:2;-1:-1:-1;;;;;39733:27:0;39742:4;-1:-1:-1;;;;;39733:27:0;;;;;;;;;;;39771:42;38142:1679;;;38038:1783;;;:::o;31382:650::-;-1:-1:-1;;;;;;;;;;;;;;;;;31485:16:0;31493:7;35870:4;35904:12;-1:-1:-1;35894:22:0;35813:111;31485:16;31477:71;;;;-1:-1:-1;;;31477:71:0;;10914:2:1;31477:71:0;;;10896:21:1;10953:2;10933:18;;;10926:30;10992:34;10972:18;;;10965:62;-1:-1:-1;;;11043:18:1;;;11036:40;11093:19;;31477:71:0;10712:406:1;31477:71:0;31561:26;31613:12;31602:7;:23;31598:103;;31663:22;31673:12;31663:7;:22;:::i;:::-;:26;;31688:1;31663:26;:::i;:::-;31642:47;;31598:103;31733:7;31713:242;31750:18;31742:4;:26;31713:242;;31793:31;31827:17;;;:11;:17;;;;;;;;;31793:51;;;;;;;;;-1:-1:-1;;;;;31793:51:0;;;;;-1:-1:-1;;;31793:51:0;;;;;;;;;;;;31863:28;31859:85;;31919:9;31382:650;-1:-1:-1;;;;31382:650:0:o;31859:85::-;-1:-1:-1;31770:6:0;;;;:::i;:::-;;;;31713:242;;;-1:-1:-1;31967:57:0;;-1:-1:-1;;;31967:57:0;;19790:2:1;31967:57:0;;;19772:21:1;19829:2;19809:18;;;19802:30;19868:34;19848:18;;;19841:62;-1:-1:-1;;;19919:18:1;;;19912:45;19974:19;;31967:57:0;19588:411:1;6475:191:0;6568:6;;;-1:-1:-1;;;;;6585:17:0;;;-1:-1:-1;;;;;;6585:17:0;;;;;;;6618:40;;6568:6;;;6585:17;6568:6;;6618:40;;6549:16;;6618:40;6538:128;6475:191;:::o;25376:190::-;25501:4;25554;25525:25;25538:5;25545:4;25525:12;:25::i;:::-;:33;;25376:190;-1:-1:-1;;;;25376:190:0:o;40700:804::-;40855:4;-1:-1:-1;;;;;40876:13:0;;7816:20;7864:8;40872:625;;40912:72;;-1:-1:-1;;;40912:72:0;;-1:-1:-1;;;;;40912:36:0;;;;;:72;;4009:10;;40963:4;;40969:7;;40978:5;;40912:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;40912:72:0;;;;;;;;-1:-1:-1;;40912:72:0;;;;;;;;;;;;:::i;:::-;;;40908:534;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;41158:13:0;;41154:273;;41201:61;;-1:-1:-1;;;41201:61:0;;;;;;;:::i;41154:273::-;41377:6;41371:13;41362:6;41358:2;41354:15;41347:38;40908:534;-1:-1:-1;;;;;;41035:55:0;-1:-1:-1;;;41035:55:0;;-1:-1:-1;41028:62:0;;40872:625;-1:-1:-1;41481:4:0;40872:625;40700:804;;;;;;:::o;48128:110::-;48188:13;48217:9;48210:16;;;;;:::i;1491:723::-;1547:13;1768:10;1764:53;;-1:-1:-1;;1795:10:0;;;;;;;;;;;;-1:-1:-1;;;1795:10:0;;;;;1491:723::o;1764:53::-;1842:5;1827:12;1883:78;1890:9;;1883:78;;1916:8;;;;:::i;:::-;;-1:-1:-1;1939:10:0;;-1:-1:-1;1947:2:0;1939:10;;:::i;:::-;;;1883:78;;;1971:19;2003:6;1993:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;1993:17:0;;1971:39;;2021:154;2028:10;;2021:154;;2055:11;2065:1;2055:11;;:::i;:::-;;-1:-1:-1;2124:10:0;2132:2;2124:5;:10;:::i;:::-;2111:24;;:2;:24;:::i;:::-;2098:39;;2081:6;2088;2081:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;2081:56:0;;;;;;;;-1:-1:-1;2152:11:0;2161:2;2152:11;;:::i;:::-;;;2021:154;;36313:1471;36436:20;36459:12;-1:-1:-1;;;;;36490:16:0;;36482:62;;;;-1:-1:-1;;;36482:62:0;;18973:2:1;36482:62:0;;;18955:21:1;19012:2;18992:18;;;18985:30;19051:34;19031:18;;;19024:62;-1:-1:-1;;;19102:18:1;;;19095:31;19143:19;;36482:62:0;18771:397:1;36482:62:0;36689:21;36697:12;35870:4;35904:12;-1:-1:-1;35894:22:0;35813:111;36689:21;36688:22;36680:64;;;;-1:-1:-1;;;36680:64:0;;18615:2:1;36680:64:0;;;18597:21:1;18654:2;18634:18;;;18627:30;18693:31;18673:18;;;18666:59;18742:18;;36680:64:0;18413:353:1;36680:64:0;36775:12;36763:8;:24;;36755:71;;;;-1:-1:-1;;;36755:71:0;;20620:2:1;36755:71:0;;;20602:21:1;20659:2;20639:18;;;20632:30;20698:34;20678:18;;;20671:62;-1:-1:-1;;;20749:18:1;;;20742:32;20791:19;;36755:71:0;20418:398:1;36755:71:0;36856:1;36845:8;:12;36837:60;;;;-1:-1:-1;;;36837:60:0;;17791:2:1;36837:60:0;;;17773:21:1;17830:2;17810:18;;;17803:30;17869:34;17849:18;;;17842:62;-1:-1:-1;;;17920:18:1;;;17913:33;17963:19;;36837:60:0;17589:399:1;36837:60:0;-1:-1:-1;;;;;37017:16:0;;36984:30;37017:16;;;:12;:16;;;;;;;;;36984:49;;;;;;;;;-1:-1:-1;;;;;36984:49:0;;;;;-1:-1:-1;;;36984:49:0;;;;;;;;;;;37063:135;;;;;;;;37089:19;;36984:49;;37063:135;;;37089:39;;37119:8;;37089:39;:::i;:::-;-1:-1:-1;;;;;37063:135:0;;;;;37178:8;37143:11;:24;;;:44;;;;:::i;:::-;-1:-1:-1;;;;;37063:135:0;;;;;;-1:-1:-1;;;;;37044:16:0;;;;;;;:12;:16;;;;;;;;:154;;;;;;;;-1:-1:-1;;;37044:154:0;;;;;;;;;;;;37237:43;;;;;;;;;;;37263:15;37237:43;;;;;;;;37209:25;;;:11;:25;;;;;;:71;;;;;;;;;-1:-1:-1;;;37209:71:0;-1:-1:-1;;;;;;37209:71:0;;;;;;;;;;;;;;;;;;37221:12;;37341:325;37365:8;37361:1;:12;37341:325;;;37400:38;;37425:12;;-1:-1:-1;;;;;37400:38:0;;;37417:1;;37400:38;;37417:1;;37400:38;37479:59;37510:1;37514:2;37518:12;37532:5;37479:22;:59::i;:::-;37453:172;;;;-1:-1:-1;;;37453:172:0;;;;;;;:::i;:::-;37640:14;;;;:::i;:::-;;;;37375:3;;;;;:::i;:::-;;;;37341:325;;;-1:-1:-1;37678:12:0;:27;;;37716:60;35203:355;25928:675;26011:7;26054:4;26011:7;26069:497;26093:5;:12;26089:1;:16;26069:497;;;26127:20;26150:5;26156:1;26150:8;;;;;;;;:::i;:::-;;;;;;;26127:31;;26193:12;26177;:28;26173:382;;26679:13;26729:15;;;26765:4;26758:15;;;26812:4;26796:21;;26305:57;;26173:382;;;26679:13;26729:15;;;26765:4;26758:15;;;26812:4;26796:21;;26482:57;;26173:382;-1:-1:-1;26107:3:0;;;;:::i;:::-;;;;26069:497;;;-1:-1:-1;26583:12:0;25928:675;-1:-1:-1;;;25928:675:0:o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14:631:1;78:5;108:18;149:2;141:6;138:14;135:40;;;155:18;;:::i;:::-;230:2;224:9;198:2;284:15;;-1:-1:-1;;280:24:1;;;306:2;276:33;272:42;260:55;;;330:18;;;350:22;;;327:46;324:72;;;376:18;;:::i;:::-;416:10;412:2;405:22;445:6;436:15;;475:6;467;460:22;515:3;506:6;501:3;497:16;494:25;491:45;;;532:1;529;522:12;491:45;582:6;577:3;570:4;562:6;558:17;545:44;637:1;630:4;621:6;613;609:19;605:30;598:41;;;;14:631;;;;;:::o;650:173::-;718:20;;-1:-1:-1;;;;;767:31:1;;757:42;;747:70;;813:1;810;803:12;747:70;650:173;;;:::o;828:160::-;893:20;;949:13;;942:21;932:32;;922:60;;978:1;975;968:12;993:186;1052:6;1105:2;1093:9;1084:7;1080:23;1076:32;1073:52;;;1121:1;1118;1111:12;1073:52;1144:29;1163:9;1144:29;:::i;1184:260::-;1252:6;1260;1313:2;1301:9;1292:7;1288:23;1284:32;1281:52;;;1329:1;1326;1319:12;1281:52;1352:29;1371:9;1352:29;:::i;:::-;1342:39;;1400:38;1434:2;1423:9;1419:18;1400:38;:::i;:::-;1390:48;;1184:260;;;;;:::o;1449:328::-;1526:6;1534;1542;1595:2;1583:9;1574:7;1570:23;1566:32;1563:52;;;1611:1;1608;1601:12;1563:52;1634:29;1653:9;1634:29;:::i;:::-;1624:39;;1682:38;1716:2;1705:9;1701:18;1682:38;:::i;:::-;1672:48;;1767:2;1756:9;1752:18;1739:32;1729:42;;1449:328;;;;;:::o;1782:666::-;1877:6;1885;1893;1901;1954:3;1942:9;1933:7;1929:23;1925:33;1922:53;;;1971:1;1968;1961:12;1922:53;1994:29;2013:9;1994:29;:::i;:::-;1984:39;;2042:38;2076:2;2065:9;2061:18;2042:38;:::i;:::-;2032:48;;2127:2;2116:9;2112:18;2099:32;2089:42;;2182:2;2171:9;2167:18;2154:32;2209:18;2201:6;2198:30;2195:50;;;2241:1;2238;2231:12;2195:50;2264:22;;2317:4;2309:13;;2305:27;-1:-1:-1;2295:55:1;;2346:1;2343;2336:12;2295:55;2369:73;2434:7;2429:2;2416:16;2411:2;2407;2403:11;2369:73;:::i;:::-;2359:83;;;1782:666;;;;;;;:::o;2453:254::-;2518:6;2526;2579:2;2567:9;2558:7;2554:23;2550:32;2547:52;;;2595:1;2592;2585:12;2547:52;2618:29;2637:9;2618:29;:::i;:::-;2608:39;;2666:35;2697:2;2686:9;2682:18;2666:35;:::i;2712:254::-;2780:6;2788;2841:2;2829:9;2820:7;2816:23;2812:32;2809:52;;;2857:1;2854;2847:12;2809:52;2880:29;2899:9;2880:29;:::i;:::-;2870:39;2956:2;2941:18;;;;2928:32;;-1:-1:-1;;;2712:254:1:o;2971:689::-;3066:6;3074;3082;3135:2;3123:9;3114:7;3110:23;3106:32;3103:52;;;3151:1;3148;3141:12;3103:52;3191:9;3178:23;3220:18;3261:2;3253:6;3250:14;3247:34;;;3277:1;3274;3267:12;3247:34;3315:6;3304:9;3300:22;3290:32;;3360:7;3353:4;3349:2;3345:13;3341:27;3331:55;;3382:1;3379;3372:12;3331:55;3422:2;3409:16;3448:2;3440:6;3437:14;3434:34;;;3464:1;3461;3454:12;3434:34;3519:7;3512:4;3502:6;3499:1;3495:14;3491:2;3487:23;3483:34;3480:47;3477:67;;;3540:1;3537;3530:12;3477:67;3571:4;3563:13;;;;3595:6;;-1:-1:-1;3633:20:1;;;;3620:34;;2971:689;-1:-1:-1;;;;2971:689:1:o;3665:180::-;3721:6;3774:2;3762:9;3753:7;3749:23;3745:32;3742:52;;;3790:1;3787;3780:12;3742:52;3813:26;3829:9;3813:26;:::i;3850:180::-;3909:6;3962:2;3950:9;3941:7;3937:23;3933:32;3930:52;;;3978:1;3975;3968:12;3930:52;-1:-1:-1;4001:23:1;;3850:180;-1:-1:-1;3850:180:1:o;4035:245::-;4093:6;4146:2;4134:9;4125:7;4121:23;4117:32;4114:52;;;4162:1;4159;4152:12;4114:52;4201:9;4188:23;4220:30;4244:5;4220:30;:::i;4285:249::-;4354:6;4407:2;4395:9;4386:7;4382:23;4378:32;4375:52;;;4423:1;4420;4413:12;4375:52;4455:9;4449:16;4474:30;4498:5;4474:30;:::i;4539:450::-;4608:6;4661:2;4649:9;4640:7;4636:23;4632:32;4629:52;;;4677:1;4674;4667:12;4629:52;4717:9;4704:23;4750:18;4742:6;4739:30;4736:50;;;4782:1;4779;4772:12;4736:50;4805:22;;4858:4;4850:13;;4846:27;-1:-1:-1;4836:55:1;;4887:1;4884;4877:12;4836:55;4910:73;4975:7;4970:2;4957:16;4952:2;4948;4944:11;4910:73;:::i;5179:184::-;5249:6;5302:2;5290:9;5281:7;5277:23;5273:32;5270:52;;;5318:1;5315;5308:12;5270:52;-1:-1:-1;5341:16:1;;5179:184;-1:-1:-1;5179:184:1:o;5368:257::-;5409:3;5447:5;5441:12;5474:6;5469:3;5462:19;5490:63;5546:6;5539:4;5534:3;5530:14;5523:4;5516:5;5512:16;5490:63;:::i;:::-;5607:2;5586:15;-1:-1:-1;;5582:29:1;5573:39;;;;5614:4;5569:50;;5368:257;-1:-1:-1;;5368:257:1:o;5864:1527::-;6088:3;6126:6;6120:13;6152:4;6165:51;6209:6;6204:3;6199:2;6191:6;6187:15;6165:51;:::i;:::-;6279:13;;6238:16;;;;6301:55;6279:13;6238:16;6323:15;;;6301:55;:::i;:::-;6445:13;;6378:20;;;6418:1;;6505;6527:18;;;;6580;;;;6607:93;;6685:4;6675:8;6671:19;6659:31;;6607:93;6748:2;6738:8;6735:16;6715:18;6712:40;6709:167;;;-1:-1:-1;;;6775:33:1;;6831:4;6828:1;6821:15;6861:4;6782:3;6849:17;6709:167;6892:18;6919:110;;;;7043:1;7038:328;;;;6885:481;;6919:110;-1:-1:-1;;6954:24:1;;6940:39;;6999:20;;;;-1:-1:-1;6919:110:1;;7038:328;21424:1;21417:14;;;21461:4;21448:18;;7133:1;7147:169;7161:8;7158:1;7155:15;7147:169;;;7243:14;;7228:13;;;7221:37;7286:16;;;;7178:10;;7147:169;;;7151:3;;7347:8;7340:5;7336:20;7329:27;;6885:481;-1:-1:-1;7382:3:1;;5864:1527;-1:-1:-1;;;;;;;;;;;5864:1527:1:o;7604:488::-;-1:-1:-1;;;;;7873:15:1;;;7855:34;;7925:15;;7920:2;7905:18;;7898:43;7972:2;7957:18;;7950:34;;;8020:3;8015:2;8000:18;;7993:31;;;7798:4;;8041:45;;8066:19;;8058:6;8041:45;:::i;:::-;8033:53;7604:488;-1:-1:-1;;;;;;7604:488:1:o;8097:632::-;8268:2;8320:21;;;8390:13;;8293:18;;;8412:22;;;8239:4;;8268:2;8491:15;;;;8465:2;8450:18;;;8239:4;8534:169;8548:6;8545:1;8542:13;8534:169;;;8609:13;;8597:26;;8678:15;;;;8643:12;;;;8570:1;8563:9;8534:169;;;-1:-1:-1;8720:3:1;;8097:632;-1:-1:-1;;;;;;8097:632:1:o;9332:219::-;9481:2;9470:9;9463:21;9444:4;9501:44;9541:2;9530:9;9526:18;9518:6;9501:44;:::i;11123:344::-;11325:2;11307:21;;;11364:2;11344:18;;;11337:30;-1:-1:-1;;;11398:2:1;11383:18;;11376:50;11458:2;11443:18;;11123:344::o;14934:356::-;15136:2;15118:21;;;15155:18;;;15148:30;15214:34;15209:2;15194:18;;15187:62;15281:2;15266:18;;14934:356::o;15295:347::-;15497:2;15479:21;;;15536:2;15516:18;;;15509:30;15575:25;15570:2;15555:18;;15548:53;15633:2;15618:18;;15295:347::o;17240:344::-;17442:2;17424:21;;;17481:2;17461:18;;;17454:30;-1:-1:-1;;;17515:2:1;17500:18;;17493:50;17575:2;17560:18;;17240:344::o;17993:415::-;18195:2;18177:21;;;18234:2;18214:18;;;18207:30;18273:34;18268:2;18253:18;;18246:62;-1:-1:-1;;;18339:2:1;18324:18;;18317:49;18398:3;18383:19;;17993:415::o;20821:343::-;21023:2;21005:21;;;21062:2;21042:18;;;21035:30;-1:-1:-1;;;21096:2:1;21081:18;;21074:49;21155:2;21140:18;;20821:343::o;21477:253::-;21517:3;-1:-1:-1;;;;;21606:2:1;21603:1;21599:10;21636:2;21633:1;21629:10;21667:3;21663:2;21659:12;21654:3;21651:21;21648:47;;;21675:18;;:::i;:::-;21711:13;;21477:253;-1:-1:-1;;;;21477:253:1:o;21735:128::-;21775:3;21806:1;21802:6;21799:1;21796:13;21793:39;;;21812:18;;:::i;:::-;-1:-1:-1;21848:9:1;;21735:128::o;21868:120::-;21908:1;21934;21924:35;;21939:18;;:::i;:::-;-1:-1:-1;21973:9:1;;21868:120::o;21993:168::-;22033:7;22099:1;22095;22091:6;22087:14;22084:1;22081:21;22076:1;22069:9;22062:17;22058:45;22055:71;;;22106:18;;:::i;:::-;-1:-1:-1;22146:9:1;;21993:168::o;22166:125::-;22206:4;22234:1;22231;22228:8;22225:34;;;22239:18;;:::i;:::-;-1:-1:-1;22276:9:1;;22166:125::o;22296:258::-;22368:1;22378:113;22392:6;22389:1;22386:13;22378:113;;;22468:11;;;22462:18;22449:11;;;22442:39;22414:2;22407:10;22378:113;;;22509:6;22506:1;22503:13;22500:48;;;-1:-1:-1;;22544:1:1;22526:16;;22519:27;22296:258::o;22559:136::-;22598:3;22626:5;22616:39;;22635:18;;:::i;:::-;-1:-1:-1;;;22671:18:1;;22559:136::o;22700:380::-;22779:1;22775:12;;;;22822;;;22843:61;;22897:4;22889:6;22885:17;22875:27;;22843:61;22950:2;22942:6;22939:14;22919:18;22916:38;22913:161;;;22996:10;22991:3;22987:20;22984:1;22977:31;23031:4;23028:1;23021:15;23059:4;23056:1;23049:15;22913:161;;22700:380;;;:::o;23085:135::-;23124:3;-1:-1:-1;;23145:17:1;;23142:43;;;23165:18;;:::i;:::-;-1:-1:-1;23212:1:1;23201:13;;23085:135::o;23225:112::-;23257:1;23283;23273:35;;23288:18;;:::i;:::-;-1:-1:-1;23322:9:1;;23225:112::o;23342:127::-;23403:10;23398:3;23394:20;23391:1;23384:31;23434:4;23431:1;23424:15;23458:4;23455:1;23448:15;23474:127;23535:10;23530:3;23526:20;23523:1;23516:31;23566:4;23563:1;23556:15;23590:4;23587:1;23580:15;23606:127;23667:10;23662:3;23658:20;23655:1;23648:31;23698:4;23695:1;23688:15;23722:4;23719:1;23712:15;23738:127;23799:10;23794:3;23790:20;23787:1;23780:31;23830:4;23827:1;23820:15;23854:4;23851:1;23844:15;23870:131;-1:-1:-1;;;;;;23944:32:1;;23934:43;;23924:71;;23991:1;23988;23981:12

Swarm Source

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