ETH Price: $3,154.05 (+2.72%)
Gas: 2 Gwei

Token

Links Lynx Genesis (LLG)
 

Overview

Max Total Supply

1,143 LLG

Holders

70

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 LLG
0x69ba53a01c24774b5f867915ecf4e16f7515cacc
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:
LynxLinksGenesis

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, GNU GPLv3 license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-05-15
*/

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


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

pragma solidity ^0.8.0;

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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

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

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

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

// File: @openzeppelin/contracts/utils/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 (last updated v4.5.0) (utils/Address.sol)

pragma solidity ^0.8.1;

/**
 * @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
     * ====
     *
     * [IMPORTANT]
     * ====
     * You shouldn't rely on `isContract` to protect against flash loan attacks!
     *
     * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets
     * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract
     * constructor.
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize/address.code.length, which returns 0
        // for contracts in construction, since the code is only stored at the end
        // of the constructor execution.

        return account.code.length > 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 (last updated v4.6.0) (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 `IERC721Receiver.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 (last updated v4.6.0) (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`.
     *
     * 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;

    /**
     * @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 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 the account approved for `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function getApproved(uint256 tokenId) external view returns (address operator);

    /**
     * @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);
}

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


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

pragma solidity ^0.8.0;


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

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

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

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


// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC721/ERC721.sol)

pragma solidity ^0.8.0;








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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public virtual override {
        _setApprovalForAll(_msgSender(), operator, approved);
    }

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

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

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

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

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

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

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

        _afterTokenTransfer(address(0), to, tokenId);
    }

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

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

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

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

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

        _afterTokenTransfer(owner, address(0), tokenId);
    }

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

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);

        _afterTokenTransfer(from, to, tokenId);
    }

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

    /**
     * @dev Approve `operator` to operate on all of `owner` tokens
     *
     * Emits a {ApprovalForAll} event.
     */
    function _setApprovalForAll(
        address owner,
        address operator,
        bool approved
    ) internal virtual {
        require(owner != operator, "ERC721: approve to caller");
        _operatorApprovals[owner][operator] = approved;
        emit ApprovalForAll(owner, operator, approved);
    }

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

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

    /**
     * @dev Hook that is called after any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _afterTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {}
}

// File: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/utils/cryptography/MerkleProof.sol


// OpenZeppelin Contracts (last updated v4.6.0) (utils/cryptography/MerkleProof.sol)

pragma solidity ^0.8.0;

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

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

    function _efficientHash(bytes32 a, bytes32 b) private pure returns (bytes32 value) {
        /// @solidity memory-safe-assembly
        assembly {
            mstore(0x00, a)
            mstore(0x20, b)
            value := keccak256(0x00, 0x40)
        }
    }
}

// File: contracts/lynxContract.sol



/*
  _      _       _          _                        _   _ ______ _______ 
 | |    (_)     | |        | |                      | \ | |  ____|__   __|
 | |     _ _ __ | | _____  | |    _   _ _ __ __  __ |  \| | |__     | |   
 | |    | | '_ \| |/ / __| | |   | | | | '_ \\ \/ / | . ` |  __|    | |   
 | |____| | | | |   <\__ \ | |___| |_| | | | |>  <  | |\  | |       | |   
 |______|_|_| |_|_|\_\___/ |______\__, |_| |_/_/\_\ |_| \_|_|       |_|   
                                   __/ |                                  
                                  |___/                                    
*/

pragma solidity >=0.7.0 <0.9.0;





contract LynxLinksGenesis is ERC721, Ownable {
  using Strings for uint256;
  using Counters for Counters.Counter;

  Counters.Counter private supply;

  string public uriPrefix = "";
  string public uriSuffix = ".json";
  string public hiddenMetadataUri;
  
  uint256 public cost = 0.04 ether;
  uint256 public maxSupply = 5000;
  uint256 public maxMintAmountPerTx = 15;
  uint256 public nftPerAddressLimit = 15;
  
  bytes32 public merkleRoot;

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

  mapping(address => uint256) public addressMintedBalance;

  constructor() ERC721("Links Lynx Genesis", "LLG") {
    setHiddenMetadataUri("");
  }

  modifier mintCompliance(uint256 _mintAmount) {
    require(_mintAmount > 0 && _mintAmount <= maxMintAmountPerTx, "Invalid mint amount!");
    require(supply.current() + _mintAmount <= maxSupply, "Max supply exceeded!");

    _;
  }

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

  function WhitelistMint(bytes32[] calldata _merkleProof, uint256 _mintAmount) public payable mintCompliance(_mintAmount) {
    require(!paused, "Contract is paused!");
    require(publicMint == false);
    require(msg.value >= cost * _mintAmount, "Insufficient funds!");
    bytes32 leaf = keccak256(abi.encodePacked(msg.sender));
    require(MerkleProof.verify(_merkleProof, merkleRoot, leaf), "Invalid proof.");
    uint256 ownerMintedAmount = addressMintedBalance[msg.sender];
    require(ownerMintedAmount + _mintAmount <= nftPerAddressLimit, "max NFT per address exceeded");

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

  function Mint(uint256 _mintAmount) public payable mintCompliance(_mintAmount) {
    require(publicMint == true, "Public mint is not open");
    require(!paused, "Contract is paused!");
    require(msg.value >= cost * _mintAmount, "Insufficient funds!");
    uint256 ownerMintedAmount = addressMintedBalance[msg.sender];
    require(ownerMintedAmount + _mintAmount <= nftPerAddressLimit, "max NFT per address exceeded");

    _mintLoop(msg.sender, _mintAmount);
    addressMintedBalance[msg.sender] += _mintAmount;
  }
  
  function mintForAddress(uint256 _mintAmount, address _receiver) public mintCompliance(_mintAmount) onlyOwner {
    _mintLoop(_receiver, _mintAmount);
  }

  function walletOfOwner(address _owner) public view returns (uint256[] memory) {
    uint256 ownerTokenCount = balanceOf(_owner);
    uint256[] memory ownedTokenIds = new uint256[](ownerTokenCount);
    uint256 currentTokenId = 1;
    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 setCost(uint256 _cost) public onlyOwner {
    cost = _cost;
  }

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

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

  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 setPublicMint(bool _state) public onlyOwner {
    publicMint = _state;
  }

  function setmerkleRoot(bytes32 _merkleRoot) public onlyOwner {
    merkleRoot = _merkleRoot;
  }

  function setMaxSupply(uint256 _newSupply) public onlyOwner {
    maxSupply = _newSupply;
  }
  
  function setNftPerAddressLimit(uint256 _limit) public onlyOwner {
    nftPerAddressLimit = _limit;
  }

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

  function _mintLoop(address _receiver, uint256 _mintAmount) internal {
    for (uint256 i = 0; i < _mintAmount; i++) {
      supply.increment();
      _safeMint(_receiver, supply.current());
    }
  }

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

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":"uint256","name":"_mintAmount","type":"uint256"}],"name":"Mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"bytes32[]","name":"_merkleProof","type":"bytes32[]"},{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"WhitelistMint","outputs":[],"stateMutability":"payable","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":[],"name":"cost","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":[{"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":[],"name":"merkleRoot","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"},{"internalType":"address","name":"_receiver","type":"address"}],"name":"mintForAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"nftPerAddressLimit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"publicMint","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"uint256","name":"_cost","type":"uint256"}],"name":"setCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_hiddenMetadataUri","type":"string"}],"name":"setHiddenMetadataUri","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxMintAmountPerTx","type":"uint256"}],"name":"setMaxMintAmountPerTx","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newSupply","type":"uint256"}],"name":"setMaxSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_limit","type":"uint256"}],"name":"setNftPerAddressLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setPaused","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setPublicMint","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":"setmerkleRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uriPrefix","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uriSuffix","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"walletOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60a06040819052600060808190526200001b91600891620001f9565b5060408051808201909152600580825264173539b7b760d91b60209092019182526200004a91600991620001f9565b50668e1bc9bf040000600b55611388600c55600f600d819055600e556010805462ffffff191660011790553480156200008257600080fd5b5060408051808201825260128152714c696e6b73204c796e782047656e6573697360701b6020808301918252835180850190945260038452624c4c4760e81b908401528151919291620000d891600091620001f9565b508051620000ee906001906020840190620001f9565b5050506200010b620001056200012b60201b60201c565b6200012f565b604080516020810190915260008152620001259062000181565b620002dc565b3390565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6006546001600160a01b03163314620001e05760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640160405180910390fd5b8051620001f590600a906020840190620001f9565b5050565b82805462000207906200029f565b90600052602060002090601f0160209004810192826200022b576000855562000276565b82601f106200024657805160ff191683800117855562000276565b8280016001018555821562000276579182015b828111156200027657825182559160200191906001019062000259565b506200028492915062000288565b5090565b5b8082111562000284576000815560010162000289565b600181811c90821680620002b457607f821691505b60208210811415620002d657634e487b7160e01b600052602260045260246000fd5b50919050565b61292080620002ec6000396000f3fe6080604052600436106102725760003560e01c806362b99ad41161014f578063b071401b116100c1578063dd6cede71161007a578063dd6cede71461071b578063e0a808531461072e578063e858ad031461074e578063e985e9c51461076e578063efbd73f4146107b7578063f2fde38b146107d757600080fd5b8063b071401b1461066f578063b88d4fde1461068f578063ba7d2c76146106af578063c87b56dd146106c5578063d0eb26b0146106e5578063d5abeb011461070557600080fd5b80637ec4a659116101135780637ec4a659146105d15780638da5cb5b146105f157806394354fd01461060f57806395d89b4114610625578063a22cb4651461063a578063a45ba8e71461065a57600080fd5b806362b99ad4146105475780636352211e1461055c5780636f8b44b01461057c57806370a082311461059c578063715018a6146105bc57600080fd5b806323b872dd116101e8578063438b6300116101ac578063438b63001461048c57806344a0d68a146104b95780634fdd43cb146104d957806351830227146104f95780635503a0e8146105185780635c975abb1461052d57600080fd5b806323b872dd1461040157806326092b83146104215780632eb4a7ab146104415780633ccfd60b1461045757806342842e0e1461046c57600080fd5b80630e2d56cf1161023a5780630e2d56cf1461033b57806313faede61461035b57806316ba10e01461037f57806316c38b3c1461039f57806318160ddd146103bf57806318cae269146103d457600080fd5b806301ffc9a71461027757806306fdde03146102ac57806307883703146102ce578063081812fc146102e3578063095ea7b31461031b575b600080fd5b34801561028357600080fd5b50610297610292366004612426565b6107f7565b60405190151581526020015b60405180910390f35b3480156102b857600080fd5b506102c1610849565b6040516102a3919061263d565b6102e16102dc36600461240d565b6108db565b005b3480156102ef57600080fd5b506103036102fe36600461240d565b610adf565b6040516001600160a01b0390911681526020016102a3565b34801561032757600080fd5b506102e161033636600461234d565b610b74565b34801561034757600080fd5b506102e16103563660046123f2565b610c8a565b34801561036757600080fd5b50610371600b5481565b6040519081526020016102a3565b34801561038b57600080fd5b506102e161039a366004612460565b610cd0565b3480156103ab57600080fd5b506102e16103ba3660046123f2565b610d11565b3480156103cb57600080fd5b50610371610d4e565b3480156103e057600080fd5b506103716103ef36600461221d565b60116020526000908152604090205481565b34801561040d57600080fd5b506102e161041c36600461226b565b610d5e565b34801561042d57600080fd5b506010546102979062010000900460ff1681565b34801561044d57600080fd5b50610371600f5481565b34801561046357600080fd5b506102e1610d8f565b34801561047857600080fd5b506102e161048736600461226b565b610e2d565b34801561049857600080fd5b506104ac6104a736600461221d565b610e48565b6040516102a391906125f9565b3480156104c557600080fd5b506102e16104d436600461240d565b610f29565b3480156104e557600080fd5b506102e16104f4366004612460565b610f58565b34801561050557600080fd5b5060105461029790610100900460ff1681565b34801561052457600080fd5b506102c1610f95565b34801561053957600080fd5b506010546102979060ff1681565b34801561055357600080fd5b506102c1611023565b34801561056857600080fd5b5061030361057736600461240d565b611030565b34801561058857600080fd5b506102e161059736600461240d565b6110a7565b3480156105a857600080fd5b506103716105b736600461221d565b6110d6565b3480156105c857600080fd5b506102e161115d565b3480156105dd57600080fd5b506102e16105ec366004612460565b611193565b3480156105fd57600080fd5b506006546001600160a01b0316610303565b34801561061b57600080fd5b50610371600d5481565b34801561063157600080fd5b506102c16111d0565b34801561064657600080fd5b506102e1610655366004612323565b6111df565b34801561066657600080fd5b506102c16111ea565b34801561067b57600080fd5b506102e161068a36600461240d565b6111f7565b34801561069b57600080fd5b506102e16106aa3660046122a7565b611226565b3480156106bb57600080fd5b50610371600e5481565b3480156106d157600080fd5b506102c16106e036600461240d565b61125e565b3480156106f157600080fd5b506102e161070036600461240d565b6113dd565b34801561071157600080fd5b50610371600c5481565b6102e1610729366004612377565b61140c565b34801561073a57600080fd5b506102e16107493660046123f2565b61167a565b34801561075a57600080fd5b506102e161076936600461240d565b6116be565b34801561077a57600080fd5b50610297610789366004612238565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b3480156107c357600080fd5b506102e16107d23660046124a9565b6116ed565b3480156107e357600080fd5b506102e16107f236600461221d565b611785565b60006001600160e01b031982166380ac58cd60e01b148061082857506001600160e01b03198216635b5e139f60e01b145b8061084357506301ffc9a760e01b6001600160e01b03198316145b92915050565b60606000805461085890612812565b80601f016020809104026020016040519081016040528092919081815260200182805461088490612812565b80156108d15780601f106108a6576101008083540402835291602001916108d1565b820191906000526020600020905b8154815290600101906020018083116108b457829003601f168201915b5050505050905090565b806000811180156108ee5750600d548111155b6109135760405162461bcd60e51b815260040161090a906126a2565b60405180910390fd5b600c548161092060075490565b61092a9190612784565b11156109485760405162461bcd60e51b815260040161090a90612705565b60105462010000900460ff1615156001146109a55760405162461bcd60e51b815260206004820152601760248201527f5075626c6963206d696e74206973206e6f74206f70656e000000000000000000604482015260640161090a565b60105460ff16156109ee5760405162461bcd60e51b8152602060048201526013602482015272436f6e7472616374206973207061757365642160681b604482015260640161090a565b81600b546109fc91906127b0565b341015610a415760405162461bcd60e51b8152602060048201526013602482015272496e73756666696369656e742066756e64732160681b604482015260640161090a565b33600090815260116020526040902054600e54610a5e8483612784565b1115610aac5760405162461bcd60e51b815260206004820152601c60248201527f6d6178204e465420706572206164647265737320657863656564656400000000604482015260640161090a565b610ab6338461181d565b3360009081526011602052604081208054859290610ad5908490612784565b9091555050505050565b6000818152600260205260408120546001600160a01b0316610b585760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b606482015260840161090a565b506000908152600460205260409020546001600160a01b031690565b6000610b7f82611030565b9050806001600160a01b0316836001600160a01b03161415610bed5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b606482015260840161090a565b336001600160a01b0382161480610c095750610c098133610789565b610c7b5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606482015260840161090a565b610c85838361185a565b505050565b6006546001600160a01b03163314610cb45760405162461bcd60e51b815260040161090a906126d0565b60108054911515620100000262ff000019909216919091179055565b6006546001600160a01b03163314610cfa5760405162461bcd60e51b815260040161090a906126d0565b8051610d0d9060099060208401906120e2565b5050565b6006546001600160a01b03163314610d3b5760405162461bcd60e51b815260040161090a906126d0565b6010805460ff1916911515919091179055565b6000610d5960075490565b905090565b610d6833826118c8565b610d845760405162461bcd60e51b815260040161090a90612733565b610c858383836119bf565b6006546001600160a01b03163314610db95760405162461bcd60e51b815260040161090a906126d0565b6000610dcd6006546001600160a01b031690565b6001600160a01b03164760405160006040518083038185875af1925050503d8060008114610e17576040519150601f19603f3d011682016040523d82523d6000602084013e610e1c565b606091505b5050905080610e2a57600080fd5b50565b610c8583838360405180602001604052806000815250611226565b60606000610e55836110d6565b905060008167ffffffffffffffff811115610e7257610e726128be565b604051908082528060200260200182016040528015610e9b578160200160208202803683370190505b509050600160005b8381108015610eb45750600c548211155b15610f1f576000610ec483611030565b9050866001600160a01b0316816001600160a01b03161415610f0c5782848381518110610ef357610ef36128a8565b602090810291909101015281610f088161284d565b9250505b82610f168161284d565b93505050610ea3565b5090949350505050565b6006546001600160a01b03163314610f535760405162461bcd60e51b815260040161090a906126d0565b600b55565b6006546001600160a01b03163314610f825760405162461bcd60e51b815260040161090a906126d0565b8051610d0d90600a9060208401906120e2565b60098054610fa290612812565b80601f0160208091040260200160405190810160405280929190818152602001828054610fce90612812565b801561101b5780601f10610ff05761010080835404028352916020019161101b565b820191906000526020600020905b815481529060010190602001808311610ffe57829003601f168201915b505050505081565b60088054610fa290612812565b6000818152600260205260408120546001600160a01b0316806108435760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b606482015260840161090a565b6006546001600160a01b031633146110d15760405162461bcd60e51b815260040161090a906126d0565b600c55565b60006001600160a01b0382166111415760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b606482015260840161090a565b506001600160a01b031660009081526003602052604090205490565b6006546001600160a01b031633146111875760405162461bcd60e51b815260040161090a906126d0565b6111916000611b5b565b565b6006546001600160a01b031633146111bd5760405162461bcd60e51b815260040161090a906126d0565b8051610d0d9060089060208401906120e2565b60606001805461085890612812565b610d0d338383611bad565b600a8054610fa290612812565b6006546001600160a01b031633146112215760405162461bcd60e51b815260040161090a906126d0565b600d55565b61123033836118c8565b61124c5760405162461bcd60e51b815260040161090a90612733565b61125884848484611c7c565b50505050565b6000818152600260205260409020546060906001600160a01b03166112dd5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b606482015260840161090a565b601054610100900460ff1661137e57600a80546112f990612812565b80601f016020809104026020016040519081016040528092919081815260200182805461132590612812565b80156113725780601f1061134757610100808354040283529160200191611372565b820191906000526020600020905b81548152906001019060200180831161135557829003601f168201915b50505050509050919050565b6000611388611caf565b905060008151116113a857604051806020016040528060008152506113d6565b806113b284611cbe565b60096040516020016113c6939291906124f8565b6040516020818303038152906040525b9392505050565b6006546001600160a01b031633146114075760405162461bcd60e51b815260040161090a906126d0565b600e55565b8060008111801561141f5750600d548111155b61143b5760405162461bcd60e51b815260040161090a906126a2565b600c548161144860075490565b6114529190612784565b11156114705760405162461bcd60e51b815260040161090a90612705565b60105460ff16156114b95760405162461bcd60e51b8152602060048201526013602482015272436f6e7472616374206973207061757365642160681b604482015260640161090a565b60105462010000900460ff16156114cf57600080fd5b81600b546114dd91906127b0565b3410156115225760405162461bcd60e51b8152602060048201526013602482015272496e73756666696369656e742066756e64732160681b604482015260640161090a565b6040516bffffffffffffffffffffffff193360601b16602082015260009060340160405160208183030381529060405280519060200120905061159c85858080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525050600f549150849050611dbc565b6115d95760405162461bcd60e51b815260206004820152600e60248201526d24b73b30b634b210383937b7b31760911b604482015260640161090a565b33600090815260116020526040902054600e546115f68583612784565b11156116445760405162461bcd60e51b815260206004820152601c60248201527f6d6178204e465420706572206164647265737320657863656564656400000000604482015260640161090a565b61164e338561181d565b336000908152601160205260408120805486929061166d908490612784565b9091555050505050505050565b6006546001600160a01b031633146116a45760405162461bcd60e51b815260040161090a906126d0565b601080549115156101000261ff0019909216919091179055565b6006546001600160a01b031633146116e85760405162461bcd60e51b815260040161090a906126d0565b600f55565b816000811180156117005750600d548111155b61171c5760405162461bcd60e51b815260040161090a906126a2565b600c548161172960075490565b6117339190612784565b11156117515760405162461bcd60e51b815260040161090a90612705565b6006546001600160a01b0316331461177b5760405162461bcd60e51b815260040161090a906126d0565b610c85828461181d565b6006546001600160a01b031633146117af5760405162461bcd60e51b815260040161090a906126d0565b6001600160a01b0381166118145760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161090a565b610e2a81611b5b565b60005b81811015610c8557611836600780546001019055565b6118488361184360075490565b611dd2565b806118528161284d565b915050611820565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061188f82611030565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b03166119415760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b606482015260840161090a565b600061194c83611030565b9050806001600160a01b0316846001600160a01b0316148061199357506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b806119b75750836001600160a01b03166119ac84610adf565b6001600160a01b0316145b949350505050565b826001600160a01b03166119d282611030565b6001600160a01b031614611a365760405162461bcd60e51b815260206004820152602560248201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060448201526437bbb732b960d91b606482015260840161090a565b6001600160a01b038216611a985760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b606482015260840161090a565b611aa360008261185a565b6001600160a01b0383166000908152600360205260408120805460019290611acc9084906127cf565b90915550506001600160a01b0382166000908152600360205260408120805460019290611afa908490612784565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b816001600160a01b0316836001600160a01b03161415611c0f5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604482015260640161090a565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b611c878484846119bf565b611c9384848484611dec565b6112585760405162461bcd60e51b815260040161090a90612650565b60606008805461085890612812565b606081611ce25750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611d0c5780611cf68161284d565b9150611d059050600a8361279c565b9150611ce6565b60008167ffffffffffffffff811115611d2757611d276128be565b6040519080825280601f01601f191660200182016040528015611d51576020820181803683370190505b5090505b84156119b757611d666001836127cf565b9150611d73600a86612868565b611d7e906030612784565b60f81b818381518110611d9357611d936128a8565b60200101906001600160f81b031916908160001a905350611db5600a8661279c565b9450611d55565b600082611dc98584611ef9565b14949350505050565b610d0d828260405180602001604052806000815250611f6d565b60006001600160a01b0384163b15611eee57604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611e309033908990889088906004016125bc565b602060405180830381600087803b158015611e4a57600080fd5b505af1925050508015611e7a575060408051601f3d908101601f19168201909252611e7791810190612443565b60015b611ed4573d808015611ea8576040519150601f19603f3d011682016040523d82523d6000602084013e611ead565b606091505b508051611ecc5760405162461bcd60e51b815260040161090a90612650565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506119b7565b506001949350505050565b600081815b8451811015611f65576000858281518110611f1b57611f1b6128a8565b60200260200101519050808311611f415760008381526020829052604090209250611f52565b600081815260208490526040902092505b5080611f5d8161284d565b915050611efe565b509392505050565b611f778383611fa0565b611f846000848484611dec565b610c855760405162461bcd60e51b815260040161090a90612650565b6001600160a01b038216611ff65760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604482015260640161090a565b6000818152600260205260409020546001600160a01b03161561205b5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604482015260640161090a565b6001600160a01b0382166000908152600360205260408120805460019290612084908490612784565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b8280546120ee90612812565b90600052602060002090601f0160209004810192826121105760008555612156565b82601f1061212957805160ff1916838001178555612156565b82800160010185558215612156579182015b8281111561215657825182559160200191906001019061213b565b50612162929150612166565b5090565b5b808211156121625760008155600101612167565b600067ffffffffffffffff80841115612196576121966128be565b604051601f8501601f19908116603f011681019082821181831017156121be576121be6128be565b816040528093508581528686860111156121d757600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b038116811461220857600080fd5b919050565b8035801515811461220857600080fd5b60006020828403121561222f57600080fd5b6113d6826121f1565b6000806040838503121561224b57600080fd5b612254836121f1565b9150612262602084016121f1565b90509250929050565b60008060006060848603121561228057600080fd5b612289846121f1565b9250612297602085016121f1565b9150604084013590509250925092565b600080600080608085870312156122bd57600080fd5b6122c6856121f1565b93506122d4602086016121f1565b925060408501359150606085013567ffffffffffffffff8111156122f757600080fd5b8501601f8101871361230857600080fd5b6123178782356020840161217b565b91505092959194509250565b6000806040838503121561233657600080fd5b61233f836121f1565b91506122626020840161220d565b6000806040838503121561236057600080fd5b612369836121f1565b946020939093013593505050565b60008060006040848603121561238c57600080fd5b833567ffffffffffffffff808211156123a457600080fd5b818601915086601f8301126123b857600080fd5b8135818111156123c757600080fd5b8760208260051b85010111156123dc57600080fd5b6020928301989097509590910135949350505050565b60006020828403121561240457600080fd5b6113d68261220d565b60006020828403121561241f57600080fd5b5035919050565b60006020828403121561243857600080fd5b81356113d6816128d4565b60006020828403121561245557600080fd5b81516113d6816128d4565b60006020828403121561247257600080fd5b813567ffffffffffffffff81111561248957600080fd5b8201601f8101841361249a57600080fd5b6119b78482356020840161217b565b600080604083850312156124bc57600080fd5b82359150612262602084016121f1565b600081518084526124e48160208601602086016127e6565b601f01601f19169290920160200192915050565b60008451602061250b8285838a016127e6565b85519184019161251e8184848a016127e6565b8554920191600090600181811c908083168061253b57607f831692505b85831081141561255957634e487b7160e01b85526022600452602485fd5b80801561256d576001811461257e576125ab565b60ff198516885283880195506125ab565b60008b81526020902060005b858110156125a35781548a82015290840190880161258a565b505083880195505b50939b9a5050505050505050505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906125ef908301846124cc565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b8181101561263157835183529284019291840191600101612615565b50909695505050505050565b6020815260006113d660208301846124cc565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b602080825260149082015273496e76616c6964206d696e7420616d6f756e742160601b604082015260600190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b6020808252601490820152734d617820737570706c792065786365656465642160601b604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b600082198211156127975761279761287c565b500190565b6000826127ab576127ab612892565b500490565b60008160001904831182151516156127ca576127ca61287c565b500290565b6000828210156127e1576127e161287c565b500390565b60005b838110156128015781810151838201526020016127e9565b838111156112585750506000910152565b600181811c9082168061282657607f821691505b6020821081141561284757634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156128615761286161287c565b5060010190565b60008261287757612877612892565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610e2a57600080fdfea264697066735822122013648d9bd45e3bec5b9b8fa27c8530f8720ed28eca3e6120501ea01ddf754f3464736f6c63430008070033

Deployed Bytecode

0x6080604052600436106102725760003560e01c806362b99ad41161014f578063b071401b116100c1578063dd6cede71161007a578063dd6cede71461071b578063e0a808531461072e578063e858ad031461074e578063e985e9c51461076e578063efbd73f4146107b7578063f2fde38b146107d757600080fd5b8063b071401b1461066f578063b88d4fde1461068f578063ba7d2c76146106af578063c87b56dd146106c5578063d0eb26b0146106e5578063d5abeb011461070557600080fd5b80637ec4a659116101135780637ec4a659146105d15780638da5cb5b146105f157806394354fd01461060f57806395d89b4114610625578063a22cb4651461063a578063a45ba8e71461065a57600080fd5b806362b99ad4146105475780636352211e1461055c5780636f8b44b01461057c57806370a082311461059c578063715018a6146105bc57600080fd5b806323b872dd116101e8578063438b6300116101ac578063438b63001461048c57806344a0d68a146104b95780634fdd43cb146104d957806351830227146104f95780635503a0e8146105185780635c975abb1461052d57600080fd5b806323b872dd1461040157806326092b83146104215780632eb4a7ab146104415780633ccfd60b1461045757806342842e0e1461046c57600080fd5b80630e2d56cf1161023a5780630e2d56cf1461033b57806313faede61461035b57806316ba10e01461037f57806316c38b3c1461039f57806318160ddd146103bf57806318cae269146103d457600080fd5b806301ffc9a71461027757806306fdde03146102ac57806307883703146102ce578063081812fc146102e3578063095ea7b31461031b575b600080fd5b34801561028357600080fd5b50610297610292366004612426565b6107f7565b60405190151581526020015b60405180910390f35b3480156102b857600080fd5b506102c1610849565b6040516102a3919061263d565b6102e16102dc36600461240d565b6108db565b005b3480156102ef57600080fd5b506103036102fe36600461240d565b610adf565b6040516001600160a01b0390911681526020016102a3565b34801561032757600080fd5b506102e161033636600461234d565b610b74565b34801561034757600080fd5b506102e16103563660046123f2565b610c8a565b34801561036757600080fd5b50610371600b5481565b6040519081526020016102a3565b34801561038b57600080fd5b506102e161039a366004612460565b610cd0565b3480156103ab57600080fd5b506102e16103ba3660046123f2565b610d11565b3480156103cb57600080fd5b50610371610d4e565b3480156103e057600080fd5b506103716103ef36600461221d565b60116020526000908152604090205481565b34801561040d57600080fd5b506102e161041c36600461226b565b610d5e565b34801561042d57600080fd5b506010546102979062010000900460ff1681565b34801561044d57600080fd5b50610371600f5481565b34801561046357600080fd5b506102e1610d8f565b34801561047857600080fd5b506102e161048736600461226b565b610e2d565b34801561049857600080fd5b506104ac6104a736600461221d565b610e48565b6040516102a391906125f9565b3480156104c557600080fd5b506102e16104d436600461240d565b610f29565b3480156104e557600080fd5b506102e16104f4366004612460565b610f58565b34801561050557600080fd5b5060105461029790610100900460ff1681565b34801561052457600080fd5b506102c1610f95565b34801561053957600080fd5b506010546102979060ff1681565b34801561055357600080fd5b506102c1611023565b34801561056857600080fd5b5061030361057736600461240d565b611030565b34801561058857600080fd5b506102e161059736600461240d565b6110a7565b3480156105a857600080fd5b506103716105b736600461221d565b6110d6565b3480156105c857600080fd5b506102e161115d565b3480156105dd57600080fd5b506102e16105ec366004612460565b611193565b3480156105fd57600080fd5b506006546001600160a01b0316610303565b34801561061b57600080fd5b50610371600d5481565b34801561063157600080fd5b506102c16111d0565b34801561064657600080fd5b506102e1610655366004612323565b6111df565b34801561066657600080fd5b506102c16111ea565b34801561067b57600080fd5b506102e161068a36600461240d565b6111f7565b34801561069b57600080fd5b506102e16106aa3660046122a7565b611226565b3480156106bb57600080fd5b50610371600e5481565b3480156106d157600080fd5b506102c16106e036600461240d565b61125e565b3480156106f157600080fd5b506102e161070036600461240d565b6113dd565b34801561071157600080fd5b50610371600c5481565b6102e1610729366004612377565b61140c565b34801561073a57600080fd5b506102e16107493660046123f2565b61167a565b34801561075a57600080fd5b506102e161076936600461240d565b6116be565b34801561077a57600080fd5b50610297610789366004612238565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b3480156107c357600080fd5b506102e16107d23660046124a9565b6116ed565b3480156107e357600080fd5b506102e16107f236600461221d565b611785565b60006001600160e01b031982166380ac58cd60e01b148061082857506001600160e01b03198216635b5e139f60e01b145b8061084357506301ffc9a760e01b6001600160e01b03198316145b92915050565b60606000805461085890612812565b80601f016020809104026020016040519081016040528092919081815260200182805461088490612812565b80156108d15780601f106108a6576101008083540402835291602001916108d1565b820191906000526020600020905b8154815290600101906020018083116108b457829003601f168201915b5050505050905090565b806000811180156108ee5750600d548111155b6109135760405162461bcd60e51b815260040161090a906126a2565b60405180910390fd5b600c548161092060075490565b61092a9190612784565b11156109485760405162461bcd60e51b815260040161090a90612705565b60105462010000900460ff1615156001146109a55760405162461bcd60e51b815260206004820152601760248201527f5075626c6963206d696e74206973206e6f74206f70656e000000000000000000604482015260640161090a565b60105460ff16156109ee5760405162461bcd60e51b8152602060048201526013602482015272436f6e7472616374206973207061757365642160681b604482015260640161090a565b81600b546109fc91906127b0565b341015610a415760405162461bcd60e51b8152602060048201526013602482015272496e73756666696369656e742066756e64732160681b604482015260640161090a565b33600090815260116020526040902054600e54610a5e8483612784565b1115610aac5760405162461bcd60e51b815260206004820152601c60248201527f6d6178204e465420706572206164647265737320657863656564656400000000604482015260640161090a565b610ab6338461181d565b3360009081526011602052604081208054859290610ad5908490612784565b9091555050505050565b6000818152600260205260408120546001600160a01b0316610b585760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b606482015260840161090a565b506000908152600460205260409020546001600160a01b031690565b6000610b7f82611030565b9050806001600160a01b0316836001600160a01b03161415610bed5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b606482015260840161090a565b336001600160a01b0382161480610c095750610c098133610789565b610c7b5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606482015260840161090a565b610c85838361185a565b505050565b6006546001600160a01b03163314610cb45760405162461bcd60e51b815260040161090a906126d0565b60108054911515620100000262ff000019909216919091179055565b6006546001600160a01b03163314610cfa5760405162461bcd60e51b815260040161090a906126d0565b8051610d0d9060099060208401906120e2565b5050565b6006546001600160a01b03163314610d3b5760405162461bcd60e51b815260040161090a906126d0565b6010805460ff1916911515919091179055565b6000610d5960075490565b905090565b610d6833826118c8565b610d845760405162461bcd60e51b815260040161090a90612733565b610c858383836119bf565b6006546001600160a01b03163314610db95760405162461bcd60e51b815260040161090a906126d0565b6000610dcd6006546001600160a01b031690565b6001600160a01b03164760405160006040518083038185875af1925050503d8060008114610e17576040519150601f19603f3d011682016040523d82523d6000602084013e610e1c565b606091505b5050905080610e2a57600080fd5b50565b610c8583838360405180602001604052806000815250611226565b60606000610e55836110d6565b905060008167ffffffffffffffff811115610e7257610e726128be565b604051908082528060200260200182016040528015610e9b578160200160208202803683370190505b509050600160005b8381108015610eb45750600c548211155b15610f1f576000610ec483611030565b9050866001600160a01b0316816001600160a01b03161415610f0c5782848381518110610ef357610ef36128a8565b602090810291909101015281610f088161284d565b9250505b82610f168161284d565b93505050610ea3565b5090949350505050565b6006546001600160a01b03163314610f535760405162461bcd60e51b815260040161090a906126d0565b600b55565b6006546001600160a01b03163314610f825760405162461bcd60e51b815260040161090a906126d0565b8051610d0d90600a9060208401906120e2565b60098054610fa290612812565b80601f0160208091040260200160405190810160405280929190818152602001828054610fce90612812565b801561101b5780601f10610ff05761010080835404028352916020019161101b565b820191906000526020600020905b815481529060010190602001808311610ffe57829003601f168201915b505050505081565b60088054610fa290612812565b6000818152600260205260408120546001600160a01b0316806108435760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b606482015260840161090a565b6006546001600160a01b031633146110d15760405162461bcd60e51b815260040161090a906126d0565b600c55565b60006001600160a01b0382166111415760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b606482015260840161090a565b506001600160a01b031660009081526003602052604090205490565b6006546001600160a01b031633146111875760405162461bcd60e51b815260040161090a906126d0565b6111916000611b5b565b565b6006546001600160a01b031633146111bd5760405162461bcd60e51b815260040161090a906126d0565b8051610d0d9060089060208401906120e2565b60606001805461085890612812565b610d0d338383611bad565b600a8054610fa290612812565b6006546001600160a01b031633146112215760405162461bcd60e51b815260040161090a906126d0565b600d55565b61123033836118c8565b61124c5760405162461bcd60e51b815260040161090a90612733565b61125884848484611c7c565b50505050565b6000818152600260205260409020546060906001600160a01b03166112dd5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b606482015260840161090a565b601054610100900460ff1661137e57600a80546112f990612812565b80601f016020809104026020016040519081016040528092919081815260200182805461132590612812565b80156113725780601f1061134757610100808354040283529160200191611372565b820191906000526020600020905b81548152906001019060200180831161135557829003601f168201915b50505050509050919050565b6000611388611caf565b905060008151116113a857604051806020016040528060008152506113d6565b806113b284611cbe565b60096040516020016113c6939291906124f8565b6040516020818303038152906040525b9392505050565b6006546001600160a01b031633146114075760405162461bcd60e51b815260040161090a906126d0565b600e55565b8060008111801561141f5750600d548111155b61143b5760405162461bcd60e51b815260040161090a906126a2565b600c548161144860075490565b6114529190612784565b11156114705760405162461bcd60e51b815260040161090a90612705565b60105460ff16156114b95760405162461bcd60e51b8152602060048201526013602482015272436f6e7472616374206973207061757365642160681b604482015260640161090a565b60105462010000900460ff16156114cf57600080fd5b81600b546114dd91906127b0565b3410156115225760405162461bcd60e51b8152602060048201526013602482015272496e73756666696369656e742066756e64732160681b604482015260640161090a565b6040516bffffffffffffffffffffffff193360601b16602082015260009060340160405160208183030381529060405280519060200120905061159c85858080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525050600f549150849050611dbc565b6115d95760405162461bcd60e51b815260206004820152600e60248201526d24b73b30b634b210383937b7b31760911b604482015260640161090a565b33600090815260116020526040902054600e546115f68583612784565b11156116445760405162461bcd60e51b815260206004820152601c60248201527f6d6178204e465420706572206164647265737320657863656564656400000000604482015260640161090a565b61164e338561181d565b336000908152601160205260408120805486929061166d908490612784565b9091555050505050505050565b6006546001600160a01b031633146116a45760405162461bcd60e51b815260040161090a906126d0565b601080549115156101000261ff0019909216919091179055565b6006546001600160a01b031633146116e85760405162461bcd60e51b815260040161090a906126d0565b600f55565b816000811180156117005750600d548111155b61171c5760405162461bcd60e51b815260040161090a906126a2565b600c548161172960075490565b6117339190612784565b11156117515760405162461bcd60e51b815260040161090a90612705565b6006546001600160a01b0316331461177b5760405162461bcd60e51b815260040161090a906126d0565b610c85828461181d565b6006546001600160a01b031633146117af5760405162461bcd60e51b815260040161090a906126d0565b6001600160a01b0381166118145760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161090a565b610e2a81611b5b565b60005b81811015610c8557611836600780546001019055565b6118488361184360075490565b611dd2565b806118528161284d565b915050611820565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061188f82611030565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b03166119415760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b606482015260840161090a565b600061194c83611030565b9050806001600160a01b0316846001600160a01b0316148061199357506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b806119b75750836001600160a01b03166119ac84610adf565b6001600160a01b0316145b949350505050565b826001600160a01b03166119d282611030565b6001600160a01b031614611a365760405162461bcd60e51b815260206004820152602560248201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060448201526437bbb732b960d91b606482015260840161090a565b6001600160a01b038216611a985760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b606482015260840161090a565b611aa360008261185a565b6001600160a01b0383166000908152600360205260408120805460019290611acc9084906127cf565b90915550506001600160a01b0382166000908152600360205260408120805460019290611afa908490612784565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b816001600160a01b0316836001600160a01b03161415611c0f5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604482015260640161090a565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b611c878484846119bf565b611c9384848484611dec565b6112585760405162461bcd60e51b815260040161090a90612650565b60606008805461085890612812565b606081611ce25750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611d0c5780611cf68161284d565b9150611d059050600a8361279c565b9150611ce6565b60008167ffffffffffffffff811115611d2757611d276128be565b6040519080825280601f01601f191660200182016040528015611d51576020820181803683370190505b5090505b84156119b757611d666001836127cf565b9150611d73600a86612868565b611d7e906030612784565b60f81b818381518110611d9357611d936128a8565b60200101906001600160f81b031916908160001a905350611db5600a8661279c565b9450611d55565b600082611dc98584611ef9565b14949350505050565b610d0d828260405180602001604052806000815250611f6d565b60006001600160a01b0384163b15611eee57604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611e309033908990889088906004016125bc565b602060405180830381600087803b158015611e4a57600080fd5b505af1925050508015611e7a575060408051601f3d908101601f19168201909252611e7791810190612443565b60015b611ed4573d808015611ea8576040519150601f19603f3d011682016040523d82523d6000602084013e611ead565b606091505b508051611ecc5760405162461bcd60e51b815260040161090a90612650565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506119b7565b506001949350505050565b600081815b8451811015611f65576000858281518110611f1b57611f1b6128a8565b60200260200101519050808311611f415760008381526020829052604090209250611f52565b600081815260208490526040902092505b5080611f5d8161284d565b915050611efe565b509392505050565b611f778383611fa0565b611f846000848484611dec565b610c855760405162461bcd60e51b815260040161090a90612650565b6001600160a01b038216611ff65760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604482015260640161090a565b6000818152600260205260409020546001600160a01b03161561205b5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604482015260640161090a565b6001600160a01b0382166000908152600360205260408120805460019290612084908490612784565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b8280546120ee90612812565b90600052602060002090601f0160209004810192826121105760008555612156565b82601f1061212957805160ff1916838001178555612156565b82800160010185558215612156579182015b8281111561215657825182559160200191906001019061213b565b50612162929150612166565b5090565b5b808211156121625760008155600101612167565b600067ffffffffffffffff80841115612196576121966128be565b604051601f8501601f19908116603f011681019082821181831017156121be576121be6128be565b816040528093508581528686860111156121d757600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b038116811461220857600080fd5b919050565b8035801515811461220857600080fd5b60006020828403121561222f57600080fd5b6113d6826121f1565b6000806040838503121561224b57600080fd5b612254836121f1565b9150612262602084016121f1565b90509250929050565b60008060006060848603121561228057600080fd5b612289846121f1565b9250612297602085016121f1565b9150604084013590509250925092565b600080600080608085870312156122bd57600080fd5b6122c6856121f1565b93506122d4602086016121f1565b925060408501359150606085013567ffffffffffffffff8111156122f757600080fd5b8501601f8101871361230857600080fd5b6123178782356020840161217b565b91505092959194509250565b6000806040838503121561233657600080fd5b61233f836121f1565b91506122626020840161220d565b6000806040838503121561236057600080fd5b612369836121f1565b946020939093013593505050565b60008060006040848603121561238c57600080fd5b833567ffffffffffffffff808211156123a457600080fd5b818601915086601f8301126123b857600080fd5b8135818111156123c757600080fd5b8760208260051b85010111156123dc57600080fd5b6020928301989097509590910135949350505050565b60006020828403121561240457600080fd5b6113d68261220d565b60006020828403121561241f57600080fd5b5035919050565b60006020828403121561243857600080fd5b81356113d6816128d4565b60006020828403121561245557600080fd5b81516113d6816128d4565b60006020828403121561247257600080fd5b813567ffffffffffffffff81111561248957600080fd5b8201601f8101841361249a57600080fd5b6119b78482356020840161217b565b600080604083850312156124bc57600080fd5b82359150612262602084016121f1565b600081518084526124e48160208601602086016127e6565b601f01601f19169290920160200192915050565b60008451602061250b8285838a016127e6565b85519184019161251e8184848a016127e6565b8554920191600090600181811c908083168061253b57607f831692505b85831081141561255957634e487b7160e01b85526022600452602485fd5b80801561256d576001811461257e576125ab565b60ff198516885283880195506125ab565b60008b81526020902060005b858110156125a35781548a82015290840190880161258a565b505083880195505b50939b9a5050505050505050505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906125ef908301846124cc565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b8181101561263157835183529284019291840191600101612615565b50909695505050505050565b6020815260006113d660208301846124cc565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b602080825260149082015273496e76616c6964206d696e7420616d6f756e742160601b604082015260600190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b6020808252601490820152734d617820737570706c792065786365656465642160601b604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b600082198211156127975761279761287c565b500190565b6000826127ab576127ab612892565b500490565b60008160001904831182151516156127ca576127ca61287c565b500290565b6000828210156127e1576127e161287c565b500390565b60005b838110156128015781810151838201526020016127e9565b838111156112585750506000910152565b600181811c9082168061282657607f821691505b6020821081141561284757634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156128615761286161287c565b5060010190565b60008261287757612877612892565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610e2a57600080fdfea264697066735822122013648d9bd45e3bec5b9b8fa27c8530f8720ed28eca3e6120501ea01ddf754f3464736f6c63430008070033

Deployed Bytecode Sourcemap

42214:5149:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25612:305;;;;;;;;;;-1:-1:-1;25612:305:0;;;;;:::i;:::-;;:::i;:::-;;;9179:14:1;;9172:22;9154:41;;9142:2;9127:18;25612:305:0;;;;;;;;26557:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;43965:526::-;;;;;;:::i;:::-;;:::i;:::-;;28117:221;;;;;;;;;;-1:-1:-1;28117:221:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;7840:32:1;;;7822:51;;7810:2;7795:18;28117:221:0;7676:203:1;27640:411:0;;;;;;;;;;-1:-1:-1;27640:411:0;;;;;:::i;:::-;;:::i;46492:85::-;;;;;;;;;;-1:-1:-1;46492:85:0;;;;;:::i;:::-;;:::i;42485:32::-;;;;;;;;;;;;;;;;;;;9352:25:1;;;9340:2;9325:18;42485:32:0;9206:177:1;46302:100:0;;;;;;;;;;-1:-1:-1;46302:100:0;;;;;:::i;:::-;;:::i;46408:77::-;;;;;;;;;;-1:-1:-1;46408:77:0;;;;;:::i;:::-;;:::i;43177:89::-;;;;;;;;;;;;;:::i;42780:55::-;;;;;;;;;;-1:-1:-1;42780:55:0;;;;;:::i;:::-;;;;;;;;;;;;;;28867:339;;;;;;;;;;-1:-1:-1;28867:339:0;;;;;:::i;:::-;;:::i;42743:30::-;;;;;;;;;;-1:-1:-1;42743:30:0;;;;;;;;;;;42648:25;;;;;;;;;;;;;;;;46899:141;;;;;;;;;;;;;:::i;29277:185::-;;;;;;;;;;-1:-1:-1;29277:185:0;;;;;:::i;:::-;;:::i;44660:617::-;;;;;;;;;;-1:-1:-1;44660:617:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;45842:74::-;;;;;;;;;;-1:-1:-1;45842:74:0;;;;;:::i;:::-;;:::i;46058:132::-;;;;;;;;;;-1:-1:-1;46058:132:0;;;;;:::i;:::-;;:::i;42710:28::-;;;;;;;;;;-1:-1:-1;42710:28:0;;;;;;;;;;;42407:33;;;;;;;;;;;;;:::i;42680:25::-;;;;;;;;;;-1:-1:-1;42680:25:0;;;;;;;;42374:28;;;;;;;;;;;;;:::i;26251:239::-;;;;;;;;;;-1:-1:-1;26251:239:0;;;;;:::i;:::-;;:::i;46687:94::-;;;;;;;;;;-1:-1:-1;46687:94:0;;;;;:::i;:::-;;:::i;25981:208::-;;;;;;;;;;-1:-1:-1;25981:208:0;;;;;:::i;:::-;;:::i;6195:103::-;;;;;;;;;;;;;:::i;46196:100::-;;;;;;;;;;-1:-1:-1;46196:100:0;;;;;:::i;:::-;;:::i;5544:87::-;;;;;;;;;;-1:-1:-1;5617:6:0;;-1:-1:-1;;;;;5617:6:0;5544:87;;42558:38;;;;;;;;;;;;;;;;26726:104;;;;;;;;;;;;;:::i;28410:155::-;;;;;;;;;;-1:-1:-1;28410:155:0;;;;;:::i;:::-;;:::i;42445:31::-;;;;;;;;;;;;;:::i;45922:130::-;;;;;;;;;;-1:-1:-1;45922:130:0;;;;;:::i;:::-;;:::i;29533:328::-;;;;;;;;;;-1:-1:-1;29533:328:0;;;;;:::i;:::-;;:::i;42601:38::-;;;;;;;;;;;;;;;;45283:466;;;;;;;;;;-1:-1:-1;45283:466:0;;;;;:::i;:::-;;:::i;46789:104::-;;;;;;;;;;-1:-1:-1;46789:104:0;;;;;:::i;:::-;;:::i;42522:31::-;;;;;;;;;;;;;;;;43272:687;;;;;;:::i;:::-;;:::i;45755:81::-;;;;;;;;;;-1:-1:-1;45755:81:0;;;;;:::i;:::-;;:::i;46583:98::-;;;;;;;;;;-1:-1:-1;46583:98:0;;;;;:::i;:::-;;:::i;28636:164::-;;;;;;;;;;-1:-1:-1;28636:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;28757:25:0;;;28733:4;28757:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;28636:164;44499:155;;;;;;;;;;-1:-1:-1;44499:155:0;;;;;:::i;:::-;;:::i;6453:201::-;;;;;;;;;;-1:-1:-1;6453:201:0;;;;;:::i;:::-;;:::i;25612:305::-;25714:4;-1:-1:-1;;;;;;25751:40:0;;-1:-1:-1;;;25751:40:0;;:105;;-1:-1:-1;;;;;;;25808:48:0;;-1:-1:-1;;;25808:48:0;25751:105;:158;;;-1:-1:-1;;;;;;;;;;18460:40:0;;;25873:36;25731:178;25612:305;-1:-1:-1;;25612:305:0:o;26557:100::-;26611:13;26644:5;26637:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26557:100;:::o;43965:526::-;44030:11;43009:1;42995:11;:15;:52;;;;;43029:18;;43014:11;:33;;42995:52;42987:85;;;;-1:-1:-1;;;42987:85:0;;;;;;;:::i;:::-;;;;;;;;;43121:9;;43106:11;43087:16;:6;964:14;;872:114;43087:16;:30;;;;:::i;:::-;:43;;43079:76;;;;-1:-1:-1;;;43079:76:0;;;;;;;:::i;:::-;44058:10:::1;::::0;;;::::1;;;:18;;44072:4;44058:18;44050:54;;;::::0;-1:-1:-1;;;44050:54:0;;14875:2:1;44050:54:0::1;::::0;::::1;14857:21:1::0;14914:2;14894:18;;;14887:30;14953:25;14933:18;;;14926:53;14996:18;;44050:54:0::1;14673:347:1::0;44050:54:0::1;44120:6;::::0;::::1;;44119:7;44111:39;;;::::0;-1:-1:-1;;;44111:39:0;;12109:2:1;44111:39:0::1;::::0;::::1;12091:21:1::0;12148:2;12128:18;;;12121:30;-1:-1:-1;;;12167:18:1;;;12160:49;12226:18;;44111:39:0::1;11907:343:1::0;44111:39:0::1;44185:11;44178:4;;:18;;;;:::i;:::-;44165:9;:31;;44157:63;;;::::0;-1:-1:-1;;;44157:63:0;;18290:2:1;44157:63:0::1;::::0;::::1;18272:21:1::0;18329:2;18309:18;;;18302:30;-1:-1:-1;;;18348:18:1;;;18341:49;18407:18;;44157:63:0::1;18088:343:1::0;44157:63:0::1;44276:10;44227:25;44255:32:::0;;;:20:::1;:32;::::0;;;;;44337:18:::1;::::0;44302:31:::1;44322:11:::0;44255:32;44302:31:::1;:::i;:::-;:53;;44294:94;;;::::0;-1:-1:-1;;;44294:94:0;;11752:2:1;44294:94:0::1;::::0;::::1;11734:21:1::0;11791:2;11771:18;;;11764:30;11830;11810:18;;;11803:58;11878:18;;44294:94:0::1;11550:352:1::0;44294:94:0::1;44397:34;44407:10;44419:11;44397:9;:34::i;:::-;44459:10;44438:32;::::0;;;:20:::1;:32;::::0;;;;:47;;44474:11;;44438:32;:47:::1;::::0;44474:11;;44438:47:::1;:::i;:::-;::::0;;;-1:-1:-1;;;;;43965:526:0:o;28117:221::-;28193:7;31460:16;;;:7;:16;;;;;;-1:-1:-1;;;;;31460:16:0;28213:73;;;;-1:-1:-1;;;28213:73:0;;15588:2:1;28213:73:0;;;15570:21:1;15627:2;15607:18;;;15600:30;15666:34;15646:18;;;15639:62;-1:-1:-1;;;15717:18:1;;;15710:42;15769:19;;28213:73:0;15386:408:1;28213:73:0;-1:-1:-1;28306:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;28306:24:0;;28117:221::o;27640:411::-;27721:13;27737:23;27752:7;27737:14;:23::i;:::-;27721:39;;27785:5;-1:-1:-1;;;;;27779:11:0;:2;-1:-1:-1;;;;;27779:11:0;;;27771:57;;;;-1:-1:-1;;;27771:57:0;;16778:2:1;27771:57:0;;;16760:21:1;16817:2;16797:18;;;16790:30;16856:34;16836:18;;;16829:62;-1:-1:-1;;;16907:18:1;;;16900:31;16948:19;;27771:57:0;16576:397:1;27771:57:0;4348:10;-1:-1:-1;;;;;27863:21:0;;;;:62;;-1:-1:-1;27888:37:0;27905:5;4348:10;28636:164;:::i;27888:37::-;27841:168;;;;-1:-1:-1;;;27841:168:0;;13629:2:1;27841:168:0;;;13611:21:1;13668:2;13648:18;;;13641:30;13707:34;13687:18;;;13680:62;13778:26;13758:18;;;13751:54;13822:19;;27841:168:0;13427:420:1;27841:168:0;28022:21;28031:2;28035:7;28022:8;:21::i;:::-;27710:341;27640:411;;:::o;46492:85::-;5617:6;;-1:-1:-1;;;;;5617:6:0;4348:10;5764:23;5756:68;;;;-1:-1:-1;;;5756:68:0;;;;;;;:::i;:::-;46552:10:::1;:19:::0;;;::::1;;::::0;::::1;-1:-1:-1::0;;46552:19:0;;::::1;::::0;;;::::1;::::0;;46492:85::o;46302:100::-;5617:6;;-1:-1:-1;;;;;5617:6:0;4348:10;5764:23;5756:68;;;;-1:-1:-1;;;5756:68:0;;;;;;;:::i;:::-;46374:22;;::::1;::::0;:9:::1;::::0;:22:::1;::::0;::::1;::::0;::::1;:::i;:::-;;46302:100:::0;:::o;46408:77::-;5617:6;;-1:-1:-1;;;;;5617:6:0;4348:10;5764:23;5756:68;;;;-1:-1:-1;;;5756:68:0;;;;;;;:::i;:::-;46464:6:::1;:15:::0;;-1:-1:-1;;46464:15:0::1;::::0;::::1;;::::0;;;::::1;::::0;;46408:77::o;43177:89::-;43221:7;43244:16;:6;964:14;;872:114;43244:16;43237:23;;43177:89;:::o;28867:339::-;29062:41;4348:10;29095:7;29062:18;:41::i;:::-;29054:103;;;;-1:-1:-1;;;29054:103:0;;;;;;;:::i;:::-;29170:28;29180:4;29186:2;29190:7;29170:9;:28::i;46899:141::-;5617:6;;-1:-1:-1;;;;;5617:6:0;4348:10;5764:23;5756:68;;;;-1:-1:-1;;;5756:68:0;;;;;;;:::i;:::-;46948:7:::1;46969;5617:6:::0;;-1:-1:-1;;;;;5617:6:0;;5544:87;46969:7:::1;-1:-1:-1::0;;;;;46961:21:0::1;46990;46961:55;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46947:69;;;47031:2;47023:11;;;::::0;::::1;;46936:104;46899:141::o:0;29277:185::-;29415:39;29432:4;29438:2;29442:7;29415:39;;;;;;;;;;;;:16;:39::i;44660:617::-;44720:16;44745:23;44771:17;44781:6;44771:9;:17::i;:::-;44745:43;;44795:30;44842:15;44828:30;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;44828:30:0;-1:-1:-1;44795:63:0;-1:-1:-1;44890:1:0;44865:22;44934:309;44959:15;44941;:33;:64;;;;;44996:9;;44978:14;:27;;44941:64;44934:309;;;45016:25;45044:23;45052:14;45044:7;:23::i;:::-;45016:51;;45103:6;-1:-1:-1;;;;;45082:27:0;:17;-1:-1:-1;;;;;45082:27:0;;45078:131;;;45155:14;45122:13;45136:15;45122:30;;;;;;;;:::i;:::-;;;;;;;;;;:47;45182:17;;;;:::i;:::-;;;;45078:131;45219:16;;;;:::i;:::-;;;;45007:236;44934:309;;;-1:-1:-1;45258:13:0;;44660:617;-1:-1:-1;;;;44660:617:0:o;45842:74::-;5617:6;;-1:-1:-1;;;;;5617:6:0;4348:10;5764:23;5756:68;;;;-1:-1:-1;;;5756:68:0;;;;;;;:::i;:::-;45898:4:::1;:12:::0;45842:74::o;46058:132::-;5617:6;;-1:-1:-1;;;;;5617:6:0;4348:10;5764:23;5756:68;;;;-1:-1:-1;;;5756:68:0;;;;;;;:::i;:::-;46146:38;;::::1;::::0;:17:::1;::::0;:38:::1;::::0;::::1;::::0;::::1;:::i;42407:33::-:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;42374:28::-;;;;;;;:::i;26251:239::-;26323:7;26359:16;;;:7;:16;;;;;;-1:-1:-1;;;;;26359:16:0;26394:19;26386:73;;;;-1:-1:-1;;;26386:73:0;;14465:2:1;26386:73:0;;;14447:21:1;14504:2;14484:18;;;14477:30;14543:34;14523:18;;;14516:62;-1:-1:-1;;;14594:18:1;;;14587:39;14643:19;;26386:73:0;14263:405:1;46687:94:0;5617:6;;-1:-1:-1;;;;;5617:6:0;4348:10;5764:23;5756:68;;;;-1:-1:-1;;;5756:68:0;;;;;;;:::i;:::-;46753:9:::1;:22:::0;46687:94::o;25981:208::-;26053:7;-1:-1:-1;;;;;26081:19:0;;26073:74;;;;-1:-1:-1;;;26073:74:0;;14054:2:1;26073:74:0;;;14036:21:1;14093:2;14073:18;;;14066:30;14132:34;14112:18;;;14105:62;-1:-1:-1;;;14183:18:1;;;14176:40;14233:19;;26073:74:0;13852:406:1;26073:74:0;-1:-1:-1;;;;;;26165:16:0;;;;;:9;:16;;;;;;;25981:208::o;6195:103::-;5617:6;;-1:-1:-1;;;;;5617:6:0;4348:10;5764:23;5756:68;;;;-1:-1:-1;;;5756:68:0;;;;;;;:::i;:::-;6260:30:::1;6287:1;6260:18;:30::i;:::-;6195:103::o:0;46196:100::-;5617:6;;-1:-1:-1;;;;;5617:6:0;4348:10;5764:23;5756:68;;;;-1:-1:-1;;;5756:68:0;;;;;;;:::i;:::-;46268:22;;::::1;::::0;:9:::1;::::0;:22:::1;::::0;::::1;::::0;::::1;:::i;26726:104::-:0;26782:13;26815:7;26808:14;;;;;:::i;28410:155::-;28505:52;4348:10;28538:8;28548;28505:18;:52::i;42445:31::-;;;;;;;:::i;45922:130::-;5617:6;;-1:-1:-1;;;;;5617:6:0;4348:10;5764:23;5756:68;;;;-1:-1:-1;;;5756:68:0;;;;;;;:::i;:::-;46006:18:::1;:40:::0;45922:130::o;29533:328::-;29708:41;4348:10;29741:7;29708:18;:41::i;:::-;29700:103;;;;-1:-1:-1;;;29700:103:0;;;;;;;:::i;:::-;29814:39;29828:4;29834:2;29838:7;29847:5;29814:13;:39::i;:::-;29533:328;;;;:::o;45283:466::-;31436:4;31460:16;;;:7;:16;;;;;;45357:13;;-1:-1:-1;;;;;31460:16:0;45379:98;;;;-1:-1:-1;;;45379:98:0;;16362:2:1;45379:98:0;;;16344:21:1;16401:2;16381:18;;;16374:30;16440:34;16420:18;;;16413:62;-1:-1:-1;;;16491:18:1;;;16484:45;16546:19;;45379:98:0;16160:411:1;45379:98:0;45490:8;;;;;;;45486:64;;45525:17;45518:24;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45283:466;;;:::o;45486:64::-;45558:28;45589:10;:8;:10::i;:::-;45558:41;;45644:1;45619:14;45613:28;:32;:130;;;;;;;;;;;;;;;;;45681:14;45697:19;:8;:17;:19::i;:::-;45718:9;45664:64;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;45613:130;45606:137;45283:466;-1:-1:-1;;;45283:466:0:o;46789:104::-;5617:6;;-1:-1:-1;;;;;5617:6:0;4348:10;5764:23;5756:68;;;;-1:-1:-1;;;5756:68:0;;;;;;;:::i;:::-;46860:18:::1;:27:::0;46789:104::o;43272:687::-;43379:11;43009:1;42995:11;:15;:52;;;;;43029:18;;43014:11;:33;;42995:52;42987:85;;;;-1:-1:-1;;;42987:85:0;;;;;;;:::i;:::-;43121:9;;43106:11;43087:16;:6;964:14;;872:114;43087:16;:30;;;;:::i;:::-;:43;;43079:76;;;;-1:-1:-1;;;43079:76:0;;;;;;;:::i;:::-;43408:6:::1;::::0;::::1;;43407:7;43399:39;;;::::0;-1:-1:-1;;;43399:39:0;;12109:2:1;43399:39:0::1;::::0;::::1;12091:21:1::0;12148:2;12128:18;;;12121:30;-1:-1:-1;;;12167:18:1;;;12160:49;12226:18;;43399:39:0::1;11907:343:1::0;43399:39:0::1;43453:10;::::0;;;::::1;;;:19;43445:28;;;::::0;::::1;;43508:11;43501:4;;:18;;;;:::i;:::-;43488:9;:31;;43480:63;;;::::0;-1:-1:-1;;;43480:63:0;;18290:2:1;43480:63:0::1;::::0;::::1;18272:21:1::0;18329:2;18309:18;;;18302:30;-1:-1:-1;;;18348:18:1;;;18341:49;18407:18;;43480:63:0::1;18088:343:1::0;43480:63:0::1;43575:28;::::0;-1:-1:-1;;43592:10:0::1;5849:2:1::0;5845:15;5841:53;43575:28:0::1;::::0;::::1;5829:66:1::0;43550:12:0::1;::::0;5911::1;;43575:28:0::1;;;;;;;;;;;;43565:39;;;;;;43550:54;;43619:50;43638:12;;43619:50;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;::::0;;;;-1:-1:-1;;43652:10:0::1;::::0;;-1:-1:-1;43664:4:0;;-1:-1:-1;43619:18:0::1;:50::i;:::-;43611:77;;;::::0;-1:-1:-1;;;43611:77:0;;17947:2:1;43611:77:0::1;::::0;::::1;17929:21:1::0;17986:2;17966:18;;;17959:30;-1:-1:-1;;;18005:18:1;;;17998:44;18059:18;;43611:77:0::1;17745:338:1::0;43611:77:0::1;43744:10;43695:25;43723:32:::0;;;:20:::1;:32;::::0;;;;;43805:18:::1;::::0;43770:31:::1;43790:11:::0;43723:32;43770:31:::1;:::i;:::-;:53;;43762:94;;;::::0;-1:-1:-1;;;43762:94:0;;11752:2:1;43762:94:0::1;::::0;::::1;11734:21:1::0;11791:2;11771:18;;;11764:30;11830;11810:18;;;11803:58;11878:18;;43762:94:0::1;11550:352:1::0;43762:94:0::1;43865:34;43875:10;43887:11;43865:9;:34::i;:::-;43927:10;43906:32;::::0;;;:20:::1;:32;::::0;;;;:47;;43942:11;;43906:32;:47:::1;::::0;43942:11;;43906:47:::1;:::i;:::-;::::0;;;-1:-1:-1;;;;;;;;43272:687:0:o;45755:81::-;5617:6;;-1:-1:-1;;;;;5617:6:0;4348:10;5764:23;5756:68;;;;-1:-1:-1;;;5756:68:0;;;;;;;:::i;:::-;45813:8:::1;:17:::0;;;::::1;;;;-1:-1:-1::0;;45813:17:0;;::::1;::::0;;;::::1;::::0;;45755:81::o;46583:98::-;5617:6;;-1:-1:-1;;;;;5617:6:0;4348:10;5764:23;5756:68;;;;-1:-1:-1;;;5756:68:0;;;;;;;:::i;:::-;46651:10:::1;:24:::0;46583:98::o;44499:155::-;44585:11;43009:1;42995:11;:15;:52;;;;;43029:18;;43014:11;:33;;42995:52;42987:85;;;;-1:-1:-1;;;42987:85:0;;;;;;;:::i;:::-;43121:9;;43106:11;43087:16;:6;964:14;;872:114;43087:16;:30;;;;:::i;:::-;:43;;43079:76;;;;-1:-1:-1;;;43079:76:0;;;;;;;:::i;:::-;5617:6;;-1:-1:-1;;;;;5617:6:0;4348:10;5764:23:::1;5756:68;;;;-1:-1:-1::0;;;5756:68:0::1;;;;;;;:::i;:::-;44615:33:::2;44625:9;44636:11;44615:9;:33::i;6453:201::-:0;5617:6;;-1:-1:-1;;;;;5617:6:0;4348:10;5764:23;5756:68;;;;-1:-1:-1;;;5756:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;6542:22:0;::::1;6534:73;;;::::0;-1:-1:-1;;;6534:73:0;;10233:2:1;6534:73:0::1;::::0;::::1;10215:21:1::0;10272:2;10252:18;;;10245:30;10311:34;10291:18;;;10284:62;-1:-1:-1;;;10362:18:1;;;10355:36;10408:19;;6534:73:0::1;10031:402:1::0;6534:73:0::1;6618:28;6637:8;6618:18;:28::i;47046:204::-:0;47126:9;47121:124;47145:11;47141:1;:15;47121:124;;;47172:18;:6;1083:19;;1101:1;1083:19;;;994:127;47172:18;47199:38;47209:9;47220:16;:6;964:14;;872:114;47220:16;47199:9;:38::i;:::-;47158:3;;;;:::i;:::-;;;;47121:124;;35517:174;35592:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;35592:29:0;-1:-1:-1;;;;;35592:29:0;;;;;;;;:24;;35646:23;35592:24;35646:14;:23::i;:::-;-1:-1:-1;;;;;35637:46:0;;;;;;;;;;;35517:174;;:::o;31665:348::-;31758:4;31460:16;;;:7;:16;;;;;;-1:-1:-1;;;;;31460:16:0;31775:73;;;;-1:-1:-1;;;31775:73:0;;13216:2:1;31775:73:0;;;13198:21:1;13255:2;13235:18;;;13228:30;13294:34;13274:18;;;13267:62;-1:-1:-1;;;13345:18:1;;;13338:42;13397:19;;31775:73:0;13014:408:1;31775:73:0;31859:13;31875:23;31890:7;31875:14;:23::i;:::-;31859:39;;31928:5;-1:-1:-1;;;;;31917:16:0;:7;-1:-1:-1;;;;;31917:16:0;;:52;;;-1:-1:-1;;;;;;28757:25:0;;;28733:4;28757:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;31937:32;31917:87;;;;31997:7;-1:-1:-1;;;;;31973:31:0;:20;31985:7;31973:11;:20::i;:::-;-1:-1:-1;;;;;31973:31:0;;31917:87;31909:96;31665:348;-1:-1:-1;;;;31665:348:0:o;34774:625::-;34933:4;-1:-1:-1;;;;;34906:31:0;:23;34921:7;34906:14;:23::i;:::-;-1:-1:-1;;;;;34906:31:0;;34898:81;;;;-1:-1:-1;;;34898:81:0;;10640:2:1;34898:81:0;;;10622:21:1;10679:2;10659:18;;;10652:30;10718:34;10698:18;;;10691:62;-1:-1:-1;;;10769:18:1;;;10762:35;10814:19;;34898:81:0;10438:401:1;34898:81:0;-1:-1:-1;;;;;34998:16:0;;34990:65;;;;-1:-1:-1;;;34990:65:0;;12457:2:1;34990:65:0;;;12439:21:1;12496:2;12476:18;;;12469:30;12535:34;12515:18;;;12508:62;-1:-1:-1;;;12586:18:1;;;12579:34;12630:19;;34990:65:0;12255:400:1;34990:65:0;35172:29;35189:1;35193:7;35172:8;:29::i;:::-;-1:-1:-1;;;;;35214:15:0;;;;;;:9;:15;;;;;:20;;35233:1;;35214:15;:20;;35233:1;;35214:20;:::i;:::-;;;;-1:-1:-1;;;;;;;35245:13:0;;;;;;:9;:13;;;;;:18;;35262:1;;35245:13;:18;;35262:1;;35245:18;:::i;:::-;;;;-1:-1:-1;;35274:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;35274:21:0;-1:-1:-1;;;;;35274:21:0;;;;;;;;;35313:27;;35274:16;;35313:27;;;;;;;27710:341;27640:411;;:::o;6814:191::-;6907:6;;;-1:-1:-1;;;;;6924:17:0;;;-1:-1:-1;;;;;;6924:17:0;;;;;;;6957:40;;6907:6;;;6924:17;6907:6;;6957:40;;6888:16;;6957:40;6877:128;6814:191;:::o;35833:315::-;35988:8;-1:-1:-1;;;;;35979:17:0;:5;-1:-1:-1;;;;;35979:17:0;;;35971:55;;;;-1:-1:-1;;;35971:55:0;;12862:2:1;35971:55:0;;;12844:21:1;12901:2;12881:18;;;12874:30;12940:27;12920:18;;;12913:55;12985:18;;35971:55:0;12660:349:1;35971:55:0;-1:-1:-1;;;;;36037:25:0;;;;;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;:46;;-1:-1:-1;;36037:46:0;;;;;;;;;;36099:41;;9154::1;;;36099::0;;9127:18:1;36099:41:0;;;;;;;35833:315;;;:::o;30743:::-;30900:28;30910:4;30916:2;30920:7;30900:9;:28::i;:::-;30947:48;30970:4;30976:2;30980:7;30989:5;30947:22;:48::i;:::-;30939:111;;;;-1:-1:-1;;;30939:111:0;;;;;;;:::i;47256:104::-;47316:13;47345:9;47338:16;;;;;:::i;1830:723::-;1886:13;2107:10;2103:53;;-1:-1:-1;;2134:10:0;;;;;;;;;;;;-1:-1:-1;;;2134:10:0;;;;;1830:723::o;2103:53::-;2181:5;2166:12;2222:78;2229:9;;2222:78;;2255:8;;;;:::i;:::-;;-1:-1:-1;2278:10:0;;-1:-1:-1;2286:2:0;2278:10;;:::i;:::-;;;2222:78;;;2310:19;2342:6;2332:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;2332:17:0;;2310:39;;2360:154;2367:10;;2360:154;;2394:11;2404:1;2394:11;;:::i;:::-;;-1:-1:-1;2463:10:0;2471:2;2463:5;:10;:::i;:::-;2450:24;;:2;:24;:::i;:::-;2437:39;;2420:6;2427;2420:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;2420:56:0;;;;;;;;-1:-1:-1;2491:11:0;2500:2;2491:11;;:::i;:::-;;;2360:154;;40000:190;40125:4;40178;40149:25;40162:5;40169:4;40149:12;:25::i;:::-;:33;;40000:190;-1:-1:-1;;;;40000:190:0:o;32355:110::-;32431:26;32441:2;32445:7;32431:26;;;;;;;;;;;;:9;:26::i;36713:799::-;36868:4;-1:-1:-1;;;;;36889:13:0;;8540:19;:23;36885:620;;36925:72;;-1:-1:-1;;;36925:72:0;;-1:-1:-1;;;;;36925:36:0;;;;;:72;;4348:10;;36976:4;;36982:7;;36991:5;;36925:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;36925:72:0;;;;;;;;-1:-1:-1;;36925:72:0;;;;;;;;;;;;:::i;:::-;;;36921:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;37167:13:0;;37163:272;;37210:60;;-1:-1:-1;;;37210:60:0;;;;;;;:::i;37163:272::-;37385:6;37379:13;37370:6;37366:2;37362:15;37355:38;36921:529;-1:-1:-1;;;;;;37048:51:0;-1:-1:-1;;;37048:51:0;;-1:-1:-1;37041:58:0;;36885:620;-1:-1:-1;37489:4:0;36713:799;;;;;;:::o;40551:675::-;40634:7;40677:4;40634:7;40692:497;40716:5;:12;40712:1;:16;40692:497;;;40750:20;40773:5;40779:1;40773:8;;;;;;;;:::i;:::-;;;;;;;40750:31;;40816:12;40800;:28;40796:382;;41302:13;41396:15;;;41432:4;41425:15;;;41479:4;41463:21;;40928:57;;40796:382;;;41302:13;41396:15;;;41432:4;41425:15;;;41479:4;41463:21;;41105:57;;40796:382;-1:-1:-1;40730:3:0;;;;:::i;:::-;;;;40692:497;;;-1:-1:-1;41206:12:0;40551:675;-1:-1:-1;;;40551:675:0:o;32692:321::-;32822:18;32828:2;32832:7;32822:5;:18::i;:::-;32873:54;32904:1;32908:2;32912:7;32921:5;32873:22;:54::i;:::-;32851:154;;;;-1:-1:-1;;;32851:154:0;;;;;;;:::i;33349:439::-;-1:-1:-1;;;;;33429:16:0;;33421:61;;;;-1:-1:-1;;;33421:61:0;;15227:2:1;33421:61:0;;;15209:21:1;;;15246:18;;;15239:30;15305:34;15285:18;;;15278:62;15357:18;;33421:61:0;15025:356:1;33421:61:0;31436:4;31460:16;;;:7;:16;;;;;;-1:-1:-1;;;;;31460:16:0;:30;33493:58;;;;-1:-1:-1;;;33493:58:0;;11046:2:1;33493:58:0;;;11028:21:1;11085:2;11065:18;;;11058:30;11124;11104:18;;;11097:58;11172:18;;33493:58:0;10844:352:1;33493:58:0;-1:-1:-1;;;;;33622:13:0;;;;;;:9;:13;;;;;:18;;33639:1;;33622:13;:18;;33639:1;;33622:18;:::i;:::-;;;;-1:-1:-1;;33651:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;33651:21:0;-1:-1:-1;;;;;33651:21:0;;;;;;;;33690:33;;33651:16;;;33690:33;;33651:16;;33690:33;46374:22:::1;46302:100:::0;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:631:1;78:5;108:18;149:2;141:6;138:14;135:40;;;155:18;;:::i;:::-;230:2;224:9;198:2;284:15;;-1:-1:-1;;280:24:1;;;306:2;276:33;272:42;260:55;;;330:18;;;350:22;;;327:46;324:72;;;376:18;;:::i;:::-;416:10;412:2;405:22;445:6;436:15;;475:6;467;460:22;515:3;506:6;501:3;497:16;494:25;491:45;;;532:1;529;522:12;491:45;582:6;577:3;570:4;562:6;558:17;545:44;637:1;630:4;621:6;613;609:19;605:30;598:41;;;;14:631;;;;;:::o;650:173::-;718:20;;-1:-1:-1;;;;;767:31:1;;757:42;;747:70;;813:1;810;803:12;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:254::-;5247:6;5255;5308:2;5296:9;5287:7;5283:23;5279:32;5276:52;;;5324:1;5321;5314:12;5276:52;5360:9;5347:23;5337:33;;5389:38;5423:2;5412:9;5408:18;5389:38;:::i;5438:257::-;5479:3;5517:5;5511:12;5544:6;5539:3;5532:19;5560:63;5616:6;5609:4;5604:3;5600:14;5593:4;5586:5;5582:16;5560:63;:::i;:::-;5677:2;5656:15;-1:-1:-1;;5652:29:1;5643:39;;;;5684:4;5639:50;;5438:257;-1:-1:-1;;5438:257:1:o;5934:1527::-;6158:3;6196:6;6190:13;6222:4;6235:51;6279:6;6274:3;6269:2;6261:6;6257:15;6235:51;:::i;:::-;6349:13;;6308:16;;;;6371:55;6349:13;6308:16;6393:15;;;6371:55;:::i;:::-;6515:13;;6448:20;;;6488:1;;6575;6597:18;;;;6650;;;;6677:93;;6755:4;6745:8;6741:19;6729:31;;6677:93;6818:2;6808:8;6805:16;6785:18;6782:40;6779:167;;;-1:-1:-1;;;6845:33:1;;6901:4;6898:1;6891:15;6931:4;6852:3;6919:17;6779:167;6962:18;6989:110;;;;7113:1;7108:328;;;;6955:481;;6989:110;-1:-1:-1;;7024:24:1;;7010:39;;7069:20;;;;-1:-1:-1;6989:110:1;;7108:328;18691:1;18684:14;;;18728:4;18715:18;;7203:1;7217:169;7231:8;7228:1;7225:15;7217:169;;;7313:14;;7298:13;;;7291:37;7356:16;;;;7248:10;;7217:169;;;7221:3;;7417:8;7410:5;7406:20;7399:27;;6955:481;-1:-1:-1;7452:3:1;;5934:1527;-1:-1:-1;;;;;;;;;;;5934:1527:1:o;7884:488::-;-1:-1:-1;;;;;8153:15:1;;;8135:34;;8205:15;;8200:2;8185:18;;8178:43;8252:2;8237:18;;8230:34;;;8300:3;8295:2;8280:18;;8273:31;;;8078:4;;8321:45;;8346:19;;8338:6;8321:45;:::i;:::-;8313:53;7884:488;-1:-1:-1;;;;;;7884:488:1:o;8377:632::-;8548:2;8600:21;;;8670:13;;8573:18;;;8692:22;;;8519:4;;8548:2;8771:15;;;;8745:2;8730:18;;;8519:4;8814:169;8828:6;8825:1;8822:13;8814:169;;;8889:13;;8877:26;;8958:15;;;;8923:12;;;;8850:1;8843:9;8814:169;;;-1:-1:-1;9000:3:1;;8377:632;-1:-1:-1;;;;;;8377:632:1:o;9388:219::-;9537:2;9526:9;9519:21;9500:4;9557:44;9597:2;9586:9;9582:18;9574:6;9557:44;:::i;9612:414::-;9814:2;9796:21;;;9853:2;9833:18;;;9826:30;9892:34;9887:2;9872:18;;9865:62;-1:-1:-1;;;9958:2:1;9943:18;;9936:48;10016:3;10001:19;;9612:414::o;11201:344::-;11403:2;11385:21;;;11442:2;11422:18;;;11415:30;-1:-1:-1;;;11476:2:1;11461:18;;11454:50;11536:2;11521:18;;11201:344::o;15799:356::-;16001:2;15983:21;;;16020:18;;;16013:30;16079:34;16074:2;16059:18;;16052:62;16146:2;16131:18;;15799:356::o;16978:344::-;17180:2;17162:21;;;17219:2;17199:18;;;17192:30;-1:-1:-1;;;17253:2:1;17238:18;;17231:50;17313:2;17298:18;;16978:344::o;17327:413::-;17529:2;17511:21;;;17568:2;17548:18;;;17541:30;17607:34;17602:2;17587:18;;17580:62;-1:-1:-1;;;17673:2:1;17658:18;;17651:47;17730:3;17715:19;;17327:413::o;18744:128::-;18784:3;18815:1;18811:6;18808:1;18805:13;18802:39;;;18821:18;;:::i;:::-;-1:-1:-1;18857:9:1;;18744:128::o;18877:120::-;18917:1;18943;18933:35;;18948:18;;:::i;:::-;-1:-1:-1;18982:9:1;;18877:120::o;19002:168::-;19042:7;19108:1;19104;19100:6;19096:14;19093:1;19090:21;19085:1;19078:9;19071:17;19067:45;19064:71;;;19115:18;;:::i;:::-;-1:-1:-1;19155:9:1;;19002:168::o;19175:125::-;19215:4;19243:1;19240;19237:8;19234:34;;;19248:18;;:::i;:::-;-1:-1:-1;19285:9:1;;19175:125::o;19305:258::-;19377:1;19387:113;19401:6;19398:1;19395:13;19387:113;;;19477:11;;;19471:18;19458:11;;;19451:39;19423:2;19416:10;19387:113;;;19518:6;19515:1;19512:13;19509:48;;;-1:-1:-1;;19553:1:1;19535:16;;19528:27;19305:258::o;19568:380::-;19647:1;19643:12;;;;19690;;;19711:61;;19765:4;19757:6;19753:17;19743:27;;19711:61;19818:2;19810:6;19807:14;19787:18;19784:38;19781:161;;;19864:10;19859:3;19855:20;19852:1;19845:31;19899:4;19896:1;19889:15;19927:4;19924:1;19917:15;19781:161;;19568:380;;;:::o;19953:135::-;19992:3;-1:-1:-1;;20013:17:1;;20010:43;;;20033:18;;:::i;:::-;-1:-1:-1;20080:1:1;20069:13;;19953:135::o;20093:112::-;20125:1;20151;20141:35;;20156:18;;:::i;:::-;-1:-1:-1;20190:9:1;;20093:112::o;20210:127::-;20271:10;20266:3;20262:20;20259:1;20252:31;20302:4;20299:1;20292:15;20326:4;20323:1;20316:15;20342:127;20403:10;20398:3;20394:20;20391:1;20384:31;20434:4;20431:1;20424:15;20458:4;20455:1;20448:15;20474:127;20535:10;20530:3;20526:20;20523:1;20516:31;20566:4;20563:1;20556:15;20590:4;20587:1;20580:15;20606:127;20667:10;20662:3;20658:20;20655:1;20648:31;20698:4;20695:1;20688:15;20722:4;20719:1;20712:15;20738:131;-1:-1:-1;;;;;;20812:32:1;;20802:43;;20792:71;;20859:1;20856;20849:12

Swarm Source

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